@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | {
|
| 125 | 125 | global $wpdb; |
| 126 | 126 | |
| 127 | - $rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC");
|
|
| 127 | + $rows = $wpdb->get_results("SELECT Country,ISO2 FROM ".GEODIR_COUNTRIES_TABLE." ORDER BY Country ASC");
|
|
| 128 | 128 | |
| 129 | 129 | $ISO2 = array(); |
| 130 | 130 | $countries = array(); |
@@ -136,11 +136,11 @@ discard block |
||
| 136 | 136 | |
| 137 | 137 | asort($countries); |
| 138 | 138 | |
| 139 | - $out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>';
|
|
| 139 | + $out_put = '<option '.selected('', $post_country, false).' value="">'.__('Select Country', 'geodirectory').'</option>';
|
|
| 140 | 140 | foreach ($countries as $country => $name) {
|
| 141 | 141 | $ccode = $ISO2[$country]; |
| 142 | 142 | |
| 143 | - $out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>'; |
|
| 143 | + $out_put .= '<option '.selected($post_country, $country, false).' value="'.esc_attr($country).'" data-country_code="'.$ccode.'">'.$name.'</option>'; |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | echo $out_put; |
@@ -182,10 +182,10 @@ discard block |
||
| 182 | 182 | if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') {
|
| 183 | 183 | |
| 184 | 184 | foreach ($posttype as $posttypeobj) {
|
| 185 | - $post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location |
|
| 185 | + $post_locations = '['.$default_location->city_slug.'],['.$default_location->region_slug.'],['.$default_location->country_slug.']'; // set all overall post location |
|
| 186 | 186 | |
| 187 | 187 | $sql = $wpdb->prepare( |
| 188 | - "UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)", |
|
| 188 | + "UPDATE ".$plugin_prefix.$posttypeobj."_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)", |
|
| 189 | 189 | array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations) |
| 190 | 190 | ); |
| 191 | 191 | $wpdb->query($sql); |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | * |
| 234 | 234 | * @since 1.0.0 |
| 235 | 235 | */ |
| 236 | - $geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0,
|
|
| 236 | + $geodir_location = (object) apply_filters('geodir_add_new_location', array('location_id' => 0,
|
|
| 237 | 237 | 'country' => $location_country, |
| 238 | 238 | 'region' => $location_region, |
| 239 | 239 | 'city' => $location_city, |
@@ -248,11 +248,11 @@ discard block |
||
| 248 | 248 | |
| 249 | 249 | if ($geodir_location->country) {
|
| 250 | 250 | |
| 251 | - $get_country = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country=%s", array($geodir_location->country)));
|
|
| 251 | + $get_country = $wpdb->get_var($wpdb->prepare("SELECT Country FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country=%s", array($geodir_location->country)));
|
|
| 252 | 252 | |
| 253 | 253 | if (empty($get_country)) {
|
| 254 | 254 | |
| 255 | - $wpdb->query($wpdb->prepare("INSERT INTO " . GEODIR_COUNTRIES_TABLE . " (Country, Title) VALUES (%s,%s)", array($geodir_location->country, $geodir_location->country)));
|
|
| 255 | + $wpdb->query($wpdb->prepare("INSERT INTO ".GEODIR_COUNTRIES_TABLE." (Country, Title) VALUES (%s,%s)", array($geodir_location->country, $geodir_location->country)));
|
|
| 256 | 256 | |
| 257 | 257 | } |
| 258 | 258 | |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | */ |
| 294 | 294 | function geodir_get_address_by_lat_lan($lat, $lng) |
| 295 | 295 | {
|
| 296 | - $url = 'http://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng) ; |
|
| 296 | + $url = 'http://maps.googleapis.com/maps/api/geocode/json?latlng='.trim($lat).','.trim($lng); |
|
| 297 | 297 | |
| 298 | 298 | $ch = curl_init(); |
| 299 | 299 | curl_setopt($ch, CURLOPT_URL, $url); |
@@ -386,7 +386,7 @@ discard block |
||
| 386 | 386 | * @param string $location_array_from Source type of location terms. Default session. |
| 387 | 387 | * @param string $gd_post_type WP post type. |
| 388 | 388 | */ |
| 389 | - $location_array = apply_filters( 'geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type ); |
|
| 389 | + $location_array = apply_filters('geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type);
|
|
| 390 | 390 | |
| 391 | 391 | return $location_array; |
| 392 | 392 | |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | */ |
| 433 | 433 | function geodir_get_osm_address_by_lat_lan($lat, $lng) {
|
| 434 | 434 | $url = is_ssl() ? 'https:' : 'http:'; |
| 435 | - $url .= '//nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email');
|
|
| 435 | + $url .= '//nominatim.openstreetmap.org/reverse?format=json&lat='.trim($lat).'&lon='.trim($lng).'&zoom=16&addressdetails=1&email='.get_option('admin_email');
|
|
| 436 | 436 | |
| 437 | 437 | $ch = curl_init(); |
| 438 | 438 | curl_setopt($ch, CURLOPT_URL, $url); |
@@ -446,9 +446,9 @@ discard block |
||
| 446 | 446 | |
| 447 | 447 | if (!empty($data) && !empty($data->address)) {
|
| 448 | 448 | $address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb');
|
| 449 | - $formatted_address = (array)$data->address; |
|
| 449 | + $formatted_address = (array) $data->address; |
|
| 450 | 450 | |
| 451 | - foreach ( $data->address as $key => $value ) {
|
|
| 451 | + foreach ($data->address as $key => $value) {
|
|
| 452 | 452 | if (!in_array($key, $address_fields)) {
|
| 453 | 453 | unset($formatted_address[$key]); |
| 454 | 454 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | $post_meta = array(); |
| 13 | 13 | |
| 14 | 14 | if (geodir_dummy_folder_exists()) |
| 15 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 15 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy"; |
|
| 16 | 16 | else |
| 17 | 17 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy'; |
| 18 | 18 | |
@@ -46,31 +46,31 @@ discard block |
||
| 46 | 46 | function geodir_admin_styles() |
| 47 | 47 | {
|
| 48 | 48 | |
| 49 | - wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 49 | + wp_register_style('geodirectory-admin-css', geodir_plugin_url().'/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | 50 | wp_enqueue_style('geodirectory-admin-css');
|
| 51 | 51 | |
| 52 | - wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 52 | + wp_register_style('geodirectory-frontend-style', geodir_plugin_url().'/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | 53 | wp_enqueue_style('geodirectory-frontend-style');
|
| 54 | 54 | |
| 55 | - wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 55 | + wp_register_style('geodir-chosen-style', geodir_plugin_url().'/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | 56 | wp_enqueue_style('geodir-chosen-style');
|
| 57 | 57 | |
| 58 | - wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 58 | + wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url().'/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 59 | 59 | wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
| 60 | 60 | |
| 61 | - wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 61 | + wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url().'/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 62 | 62 | wp_enqueue_style('geodirectory-jquery-ui-css');
|
| 63 | 63 | |
| 64 | - wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 64 | + wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url().'/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 65 | 65 | wp_enqueue_style('geodirectory-custom-fields-css');
|
| 66 | 66 | |
| 67 | - wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 67 | + wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url().'/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 68 | 68 | wp_enqueue_style('geodirectory-pluplodar-css');
|
| 69 | 69 | |
| 70 | - wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 70 | + wp_register_style('geodir-rating-style', geodir_plugin_url().'/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 71 | 71 | wp_enqueue_style('geodir-rating-style');
|
| 72 | 72 | |
| 73 | - wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 73 | + wp_register_style('geodir-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 74 | 74 | wp_enqueue_style('geodir-rtl-style');
|
| 75 | 75 | |
| 76 | 76 | } |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
| 90 | 90 | wp_enqueue_style('font-awesome');
|
| 91 | 91 | |
| 92 | - wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 92 | + wp_register_script('geodirectory-admin', geodir_plugin_url().'/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 93 | 93 | wp_enqueue_script('geodirectory-admin');
|
| 94 | 94 | |
| 95 | 95 | } |
@@ -108,60 +108,60 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | wp_enqueue_script('jquery');
|
| 110 | 110 | |
| 111 | - wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 111 | + wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 112 | 112 | |
| 113 | - wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 113 | + wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 114 | 114 | wp_enqueue_script('chosen');
|
| 115 | 115 | |
| 116 | - wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 116 | + wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 117 | 117 | wp_enqueue_script('geodirectory-choose-ajax');
|
| 118 | 118 | |
| 119 | 119 | if (isset($_REQUEST['listing_type'])) {
|
| 120 | - wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 120 | + wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url().'/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | wp_enqueue_script('geodirectory-custom-fields-script');
|
| 124 | - $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 124 | + $plugin_path = geodir_plugin_url().'/geodirectory-functions/cat-meta-functions'; |
|
| 125 | 125 | |
| 126 | - wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 126 | + wp_enqueue_script('tax-meta-clss', $plugin_path.'/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 127 | 127 | |
| 128 | 128 | if (in_array($geodir_map_name, array('auto', 'google'))) {
|
| 129 | - $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 130 | - $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 129 | + $map_lang = "&language=".geodir_get_map_default_language(); |
|
| 130 | + $map_key = "&key=".geodir_get_map_api_key(); |
|
| 131 | 131 | /** This filter is documented in geodirectory_template_tags.php */ |
| 132 | 132 | $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
| 133 | - wp_enqueue_script('geodirectory-googlemap-script', '//maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 133 | + wp_enqueue_script('geodirectory-googlemap-script', '//maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
|
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | if ($geodir_map_name == 'osm') {
|
| 137 | 137 | // Leaflet OpenStreetMap |
| 138 | - wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 138 | + wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 139 | 139 | wp_enqueue_style('geodirectory-leaflet-style');
|
| 140 | 140 | |
| 141 | - wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 141 | + wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 142 | 142 | wp_enqueue_script('geodirectory-leaflet-script');
|
| 143 | 143 | |
| 144 | - wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 144 | + wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 145 | 145 | wp_enqueue_script('geodirectory-leaflet-geo-script');
|
| 146 | 146 | } |
| 147 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 147 | + wp_enqueue_script('jquery-ui-autocomplete');
|
|
| 148 | 148 | |
| 149 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 149 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
|
|
| 150 | 150 | wp_enqueue_script('geodirectory-goMap-script');
|
| 151 | 151 | |
| 152 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 152 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 153 | 153 | wp_enqueue_script('geodirectory-goMap-script');
|
| 154 | 154 | |
| 155 | 155 | // font awesome rating script |
| 156 | 156 | if (get_option('geodir_reviewrating_enable_font_awesome')) {
|
| 157 | - wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 157 | + wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 158 | 158 | wp_enqueue_script('geodir-barrating-js');
|
| 159 | 159 | } else { // default rating script
|
| 160 | - wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
|
|
| 160 | + wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
|
|
| 161 | 161 | wp_enqueue_script('geodir-jRating-js');
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | - wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js', array(), GEODIRECTORY_VERSION);
|
|
| 164 | + wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.js', array(), GEODIRECTORY_VERSION);
|
|
| 165 | 165 | wp_enqueue_script('geodir-on-document-load');
|
| 166 | 166 | |
| 167 | 167 | |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | wp_enqueue_script('plupload-all');
|
| 170 | 170 | wp_enqueue_script('jquery-ui-sortable');
|
| 171 | 171 | |
| 172 | - wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 172 | + wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 173 | 173 | wp_enqueue_script('geodirectory-plupload-script');
|
| 174 | 174 | |
| 175 | 175 | // SCRIPT FOR UPLOAD END |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
| 224 | 224 | |
| 225 | 225 | |
| 226 | - wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 226 | + wp_register_script('geodirectory-admin-script', geodir_plugin_url().'/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 227 | 227 | wp_enqueue_script('geodirectory-admin-script');
|
| 228 | 228 | |
| 229 | 229 | wp_enqueue_style('farbtastic');
|
@@ -231,10 +231,10 @@ discard block |
||
| 231 | 231 | |
| 232 | 232 | $screen = get_current_screen(); |
| 233 | 233 | if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
| 234 | - wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 234 | + wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - $ajax_cons_data = array('url' => __(get_option('siteurl') . '?geodir_ajax=true'));
|
|
| 237 | + $ajax_cons_data = array('url' => __(get_option('siteurl').'?geodir_ajax=true'));
|
|
| 238 | 238 | wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
| 239 | 239 | |
| 240 | 240 | } |
@@ -257,7 +257,7 @@ discard block |
||
| 257 | 257 | |
| 258 | 258 | if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
| 259 | 259 | |
| 260 | - add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 260 | + add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url().'/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 261 | 261 | |
| 262 | 262 | |
| 263 | 263 | } |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | $geodir_menu_order[] = 'separator-geodirectory'; |
| 292 | 292 | if (!empty($post_types)) {
|
| 293 | 293 | foreach ($post_types as $post_type) {
|
| 294 | - $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 294 | + $geodir_menu_order[] = 'edit.php?post_type='.$post_type; |
|
| 295 | 295 | } |
| 296 | 296 | } |
| 297 | 297 | $geodir_menu_order[] = $item; |
@@ -334,8 +334,8 @@ discard block |
||
| 334 | 334 | {
|
| 335 | 335 | if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
| 336 | 336 | echo '<div id="message" class="updated fade"> |
| 337 | - <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
|
|
| 338 | - <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
|
|
| 337 | + <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory').' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">'.__('Support us by leaving a rating!', 'geodirectory').'</a></p>
|
|
| 338 | + <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory').'</strong></p>
|
|
| 339 | 339 | </div>'; |
| 340 | 340 | |
| 341 | 341 | } |
@@ -343,7 +343,7 @@ discard block |
||
| 343 | 343 | if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
| 344 | 344 | switch ($_REQUEST['msg']) {
|
| 345 | 345 | case 'success': |
| 346 | - echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 346 | + echo '<div id="message" class="updated fade"><p><strong>'.__('Your settings have been saved.', 'geodirectory').'</strong></p></div>';
|
|
| 347 | 347 | flush_rewrite_rules(false); |
| 348 | 348 | |
| 349 | 349 | break; |
@@ -351,30 +351,30 @@ discard block |
||
| 351 | 351 | $gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : ''; |
| 352 | 352 | |
| 353 | 353 | if ($gderr == 21) |
| 354 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 354 | + echo '<div id="message" class="error fade"><p><strong>'.__('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory').'</strong></p></div>';
|
|
| 355 | 355 | else |
| 356 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 356 | + echo '<div id="message" class="error fade"><p><strong>'.__('Error: Your settings have not been saved, please try again.', 'geodirectory').'</strong></p></div>';
|
|
| 357 | 357 | break; |
| 358 | 358 | } |
| 359 | 359 | } |
| 360 | 360 | |
| 361 | 361 | $geodir_load_map = get_option('geodir_load_map');
|
| 362 | 362 | $need_map_key = false; |
| 363 | - if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 363 | + if ($geodir_load_map == '' || $geodir_load_map == 'google' || $geodir_load_map == 'auto') {
|
|
| 364 | 364 | $need_map_key = true; |
| 365 | 365 | } |
| 366 | 366 | |
| 367 | 367 | if (!geodir_get_map_api_key() && $need_map_key) {
|
| 368 | - echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 368 | + echo '<div class="error"><p><strong>'.sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings').'\'>', '</a>').'</strong></p></div>';
|
|
| 369 | 369 | } |
| 370 | 370 | |
| 371 | 371 | if (!geodir_is_default_location_set()) {
|
| 372 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 372 | + echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>';
|
|
| 373 | 373 | |
| 374 | 374 | } |
| 375 | 375 | |
| 376 | 376 | if (!function_exists('curl_init')) {
|
| 377 | - echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 377 | + echo '<div class="error"><p><strong>'.__('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory').'</strong></p></div>';
|
|
| 378 | 378 | |
| 379 | 379 | } |
| 380 | 380 | |
@@ -394,18 +394,18 @@ discard block |
||
| 394 | 394 | function geodir_handle_option_form_submit($current_tab) |
| 395 | 395 | {
|
| 396 | 396 | global $geodir_settings; |
| 397 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 397 | + if (file_exists(dirname(__FILE__).'/option-pages/'.$current_tab.'_array.php')) {
|
|
| 398 | 398 | /** |
| 399 | 399 | * Contains settings array for current tab. |
| 400 | 400 | * |
| 401 | 401 | * @since 1.0.0 |
| 402 | 402 | * @package GeoDirectory |
| 403 | 403 | */ |
| 404 | - include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 404 | + include_once('option-pages/'.$current_tab.'_array.php');
|
|
| 405 | 405 | } |
| 406 | 406 | if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
| 407 | 407 | if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
| 408 | - if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 408 | + if (!wp_verify_nonce($_REQUEST['_wpnonce-'.$current_tab], 'geodir-settings-'.$current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 409 | 409 | |
| 410 | 410 | /** |
| 411 | 411 | * Fires before updating geodirectory admin settings. |
@@ -438,13 +438,13 @@ discard block |
||
| 438 | 438 | * @param string $current_tab The current settings tab name. |
| 439 | 439 | * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
| 440 | 440 | */ |
| 441 | - do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 441 | + do_action('geodir_update_options_'.$current_tab, $geodir_settings[$current_tab]);
|
|
| 442 | 442 | |
| 443 | 443 | flush_rewrite_rules(false); |
| 444 | 444 | |
| 445 | 445 | $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
| 446 | 446 | |
| 447 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 447 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$_REQUEST['active_tab'].'&msg=success');
|
|
| 448 | 448 | |
| 449 | 449 | wp_redirect($redirect_url); |
| 450 | 450 | exit(); |
@@ -454,7 +454,7 @@ discard block |
||
| 454 | 454 | } |
| 455 | 455 | |
| 456 | 456 | |
| 457 | -if (!function_exists('geodir_autoinstall_admin_header') && (get_option('geodir_installed') || defined( 'GD_TESTING_MODE' ))) {
|
|
| 457 | +if (!function_exists('geodir_autoinstall_admin_header') && (get_option('geodir_installed') || defined('GD_TESTING_MODE'))) {
|
|
| 458 | 458 | /** |
| 459 | 459 | * GeoDirectory dummy data installation. |
| 460 | 460 | * |
@@ -470,18 +470,18 @@ discard block |
||
| 470 | 470 | global $wpdb, $plugin_prefix; |
| 471 | 471 | |
| 472 | 472 | if (!geodir_is_default_location_set()) {
|
| 473 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will help to set location of all dummy data.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 473 | + echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will help to set location of all dummy data.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>';
|
|
| 474 | 474 | } else {
|
| 475 | 475 | |
| 476 | - $geodir_url = admin_url() . 'admin.php?page=geodirectory&tab=general_settings&active_tab='; |
|
| 476 | + $geodir_url = admin_url().'admin.php?page=geodirectory&tab=general_settings&active_tab='; |
|
| 477 | 477 | |
| 478 | - $post_counts = $wpdb->get_var("SELECT count(post_id) FROM " . $plugin_prefix . $post_type . "_detail WHERE post_dummy='1'");
|
|
| 478 | + $post_counts = $wpdb->get_var("SELECT count(post_id) FROM ".$plugin_prefix.$post_type."_detail WHERE post_dummy='1'");
|
|
| 479 | 479 | |
| 480 | 480 | if ($post_counts > 0) {
|
| 481 | 481 | $nonce = wp_create_nonce('geodir_dummy_posts_delete_noncename');
|
| 482 | 482 | |
| 483 | - $dummy_msg = '<div id="" class="geodir_auto_install updated highlight fade"><p><b>' . SAMPLE_DATA_SHOW_MSG . '</b><br /><a id="geodir_dummy_delete" class="button_delete" onclick="geodir_autoinstall(this,\'geodir_dummy_delete\',\'' . $nonce . '\',\'' . $post_type . '\')" href="javascript:void(0);" redirect_to="' . $geodir_url . '" >' . DELETE_BTN_SAMPLE_MSG . '</a></p></div>'; |
|
| 484 | - $dummy_msg .= '<div id="" style="display:none;" class="geodir_show_progress updated highlight fade"><p><b>' . GEODIR_SAMPLE_DATA_DELETE_MSG . '</b><br><img src="' . geodir_plugin_url() . '/geodirectory-assets/images/loadingAnimation.gif" /></p></div>'; |
|
| 483 | + $dummy_msg = '<div id="" class="geodir_auto_install updated highlight fade"><p><b>'.SAMPLE_DATA_SHOW_MSG.'</b><br /><a id="geodir_dummy_delete" class="button_delete" onclick="geodir_autoinstall(this,\'geodir_dummy_delete\',\''.$nonce.'\',\''.$post_type.'\')" href="javascript:void(0);" redirect_to="'.$geodir_url.'" >'.DELETE_BTN_SAMPLE_MSG.'</a></p></div>'; |
|
| 484 | + $dummy_msg .= '<div id="" style="display:none;" class="geodir_show_progress updated highlight fade"><p><b>'.GEODIR_SAMPLE_DATA_DELETE_MSG.'</b><br><img src="'.geodir_plugin_url().'/geodirectory-assets/images/loadingAnimation.gif" /></p></div>'; |
|
| 485 | 485 | } else {
|
| 486 | 486 | $options_list = ''; |
| 487 | 487 | for ($option = 1; $option <= 30; $option++) {
|
@@ -489,13 +489,13 @@ discard block |
||
| 489 | 489 | if ($option == 10) |
| 490 | 490 | $selected = 'selected="selected"'; |
| 491 | 491 | |
| 492 | - $options_list .= '<option ' . $selected . ' value="' . $option . '">' . $option . '</option>'; |
|
| 492 | + $options_list .= '<option '.$selected.' value="'.$option.'">'.$option.'</option>'; |
|
| 493 | 493 | } |
| 494 | 494 | |
| 495 | 495 | $nonce = wp_create_nonce('geodir_dummy_posts_insert_noncename');
|
| 496 | 496 | |
| 497 | - $dummy_msg = '<div id="" class="geodir_auto_install updated highlight fade"><p><b>' . AUTO_INSATALL_MSG . '</b><br /><select class="selected_sample_data">' . $options_list . '</select><a id="geodir_dummy_insert" class="button_insert" href="javascript:void(0);" onclick="geodir_autoinstall(this,\'geodir_dummy_insert\',\'' . $nonce . '\',\'' . $post_type . '\')" redirect_to="' . $geodir_url . '" >' . INSERT_BTN_SAMPLE_MSG . '</a></p></div>'; |
|
| 498 | - $dummy_msg .= '<div id="" style="display:none;" class="geodir_show_progress updated highlight fade"><p><b>' . GEODIR_SAMPLE_DATA_IMPORT_MSG . '</b><br><img src="' . geodir_plugin_url() . '/geodirectory-assets/images/loadingAnimation.gif" /><br><span class="dummy_post_inserted"></span></div>'; |
|
| 497 | + $dummy_msg = '<div id="" class="geodir_auto_install updated highlight fade"><p><b>'.AUTO_INSATALL_MSG.'</b><br /><select class="selected_sample_data">'.$options_list.'</select><a id="geodir_dummy_insert" class="button_insert" href="javascript:void(0);" onclick="geodir_autoinstall(this,\'geodir_dummy_insert\',\''.$nonce.'\',\''.$post_type.'\')" redirect_to="'.$geodir_url.'" >'.INSERT_BTN_SAMPLE_MSG.'</a></p></div>'; |
|
| 498 | + $dummy_msg .= '<div id="" style="display:none;" class="geodir_show_progress updated highlight fade"><p><b>'.GEODIR_SAMPLE_DATA_IMPORT_MSG.'</b><br><img src="'.geodir_plugin_url().'/geodirectory-assets/images/loadingAnimation.gif" /><br><span class="dummy_post_inserted"></span></div>'; |
|
| 499 | 499 | |
| 500 | 500 | } |
| 501 | 501 | echo $dummy_msg; |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | ?> |
| 510 | 510 | <script type="text/javascript"> |
| 511 | 511 | var geocoder = window.gdMaps == 'google' ? new google.maps.Geocoder() : null; |
| 512 | - var CITY_ADDRESS = '<?php echo addslashes( $city . ',' . $region . ',' . $country );?>'; |
|
| 512 | + var CITY_ADDRESS = '<?php echo addslashes($city.','.$region.','.$country); ?>'; |
|
| 513 | 513 | var bound_lat_lng; |
| 514 | 514 | var latlng = ['<?php echo $city_latitude; ?>', <?php echo $city_longitude; ?>]; |
| 515 | 515 | var lat = <?php echo $city_latitude; ?>; |
@@ -539,7 +539,7 @@ discard block |
||
| 539 | 539 | return x.replace(" ", '');
|
| 540 | 540 | }); // remove spaces from lat/lon |
| 541 | 541 | } else {
|
| 542 | - alert("<?php _e('Geocode was not successful for the following reason:','geodirectory');?> " + status);
|
|
| 542 | + alert("<?php _e('Geocode was not successful for the following reason:', 'geodirectory'); ?> " + status);
|
|
| 543 | 543 | } |
| 544 | 544 | }); |
| 545 | 545 | } else if (window.gdMaps == 'osm') {
|
@@ -564,7 +564,7 @@ discard block |
||
| 564 | 564 | var total_dummy_post_count = jQuery('#sub_' + active_tab).find('.selected_sample_data').val();
|
| 565 | 565 | |
| 566 | 566 | if (id == 'geodir_dummy_delete') {
|
| 567 | - if (confirm('<?php _e('Are you sure you want to delete dummy data?' , 'geodirectory'); ?>')) {
|
|
| 567 | + if (confirm('<?php _e('Are you sure you want to delete dummy data?', 'geodirectory'); ?>')) {
|
|
| 568 | 568 | jQuery('#sub_' + active_tab).find('.geodir_auto_install').hide();
|
| 569 | 569 | jQuery('#sub_' + active_tab).find('.geodir_show_progress').show();
|
| 570 | 570 | jQuery.post('<?php echo geodir_get_ajax_url(); ?>&geodir_autofill=' + id + '&posttype=' + posttype + '&_wpnonce=' + nonce,
|
@@ -585,7 +585,7 @@ discard block |
||
| 585 | 585 | var post_url = '<?php echo geodir_get_ajax_url(); ?>&geodir_autofill=' + id + '&posttype=' + posttype + '&insert_dummy_post_index=' + dummy_post_index + '&city_bound_lat1=' + bound_lat_lng[0] + '&city_bound_lng1=' + bound_lat_lng[1] + '&city_bound_lat2=' + bound_lat_lng[2] + '&city_bound_lng2=' + bound_lat_lng[3] + '&_wpnonce=' + nonce; |
| 586 | 586 | |
| 587 | 587 | jQuery.post( post_url, function (data) {
|
| 588 | - jQuery(obj).closest('form').find('.dummy_post_inserted').html('<?php _e('Dummy post(s) inserted:','geodirectory');?> ' + dummy_post_index + ' <?php _e('of' ,'geodirectory'); ?> ' + total_dummy_post_count + '');
|
|
| 588 | + jQuery(obj).closest('form').find('.dummy_post_inserted').html('<?php _e('Dummy post(s) inserted:', 'geodirectory'); ?> ' + dummy_post_index + ' <?php _e('of', 'geodirectory'); ?> ' + total_dummy_post_count + '');
|
|
| 589 | 589 | |
| 590 | 590 | dummy_post_index++; |
| 591 | 591 | |
@@ -626,7 +626,7 @@ discard block |
||
| 626 | 626 | * @package GeoDirectory |
| 627 | 627 | */ |
| 628 | 628 | include_once('place_dummy_post.php');
|
| 629 | - delete_transient( 'cached_dummy_images' ); |
|
| 629 | + delete_transient('cached_dummy_images');
|
|
| 630 | 630 | |
| 631 | 631 | } |
| 632 | 632 | |
@@ -643,7 +643,7 @@ discard block |
||
| 643 | 643 | global $wpdb, $plugin_prefix; |
| 644 | 644 | |
| 645 | 645 | |
| 646 | - $post_ids = $wpdb->get_results("SELECT post_id FROM " . $plugin_prefix . "gd_place_detail WHERE post_dummy='1'");
|
|
| 646 | + $post_ids = $wpdb->get_results("SELECT post_id FROM ".$plugin_prefix."gd_place_detail WHERE post_dummy='1'");
|
|
| 647 | 647 | |
| 648 | 648 | |
| 649 | 649 | foreach ($post_ids as $post_ids_obj) {
|
@@ -651,7 +651,7 @@ discard block |
||
| 651 | 651 | } |
| 652 | 652 | |
| 653 | 653 | //double check posts are deleted |
| 654 | - $wpdb->get_results("DELETE FROM " . $plugin_prefix . "gd_place_detail WHERE post_dummy='1'");
|
|
| 654 | + $wpdb->get_results("DELETE FROM ".$plugin_prefix."gd_place_detail WHERE post_dummy='1'");
|
|
| 655 | 655 | } |
| 656 | 656 | |
| 657 | 657 | /** |
@@ -689,14 +689,14 @@ discard block |
||
| 689 | 689 | |
| 690 | 690 | |
| 691 | 691 | if (geodir_dummy_folder_exists()) |
| 692 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 692 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy/cat_icon"; |
|
| 693 | 693 | else |
| 694 | 694 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
| 695 | 695 | |
| 696 | 696 | $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url);
|
| 697 | 697 | |
| 698 | 698 | $catname = str_replace(' ', '_', $catname);
|
| 699 | - $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png");
|
|
| 699 | + $uploaded = (array) fetch_remote_file("$dummy_image_url/".$catname.".png");
|
|
| 700 | 700 | |
| 701 | 701 | if (empty($uploaded['error'])) {
|
| 702 | 702 | $new_path = $uploaded['file']; |
@@ -706,7 +706,7 @@ discard block |
||
| 706 | 706 | $wp_filetype = wp_check_filetype(basename($new_path), null); |
| 707 | 707 | |
| 708 | 708 | $attachment = array( |
| 709 | - 'guid' => $uploads['baseurl'] . '/' . basename($new_path), |
|
| 709 | + 'guid' => $uploads['baseurl'].'/'.basename($new_path), |
|
| 710 | 710 | 'post_mime_type' => $wp_filetype['type'], |
| 711 | 711 | 'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)),
|
| 712 | 712 | 'post_content' => '', |
@@ -716,7 +716,7 @@ discard block |
||
| 716 | 716 | |
| 717 | 717 | // you must first include the image.php file |
| 718 | 718 | // for the function wp_generate_attachment_metadata() to work |
| 719 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 719 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 720 | 720 | $attach_data = wp_generate_attachment_metadata($attach_id, $new_path); |
| 721 | 721 | wp_update_attachment_metadata($attach_id, $attach_data); |
| 722 | 722 | |
@@ -733,14 +733,14 @@ discard block |
||
| 733 | 733 | $last_catid = wp_insert_term($catname, 'gd_placecategory'); |
| 734 | 734 | |
| 735 | 735 | if (geodir_dummy_folder_exists()) |
| 736 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 736 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy/cat_icon"; |
|
| 737 | 737 | else |
| 738 | 738 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
| 739 | 739 | |
| 740 | 740 | $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url);
|
| 741 | 741 | |
| 742 | 742 | $catname = str_replace(' ', '_', $catname);
|
| 743 | - $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png");
|
|
| 743 | + $uploaded = (array) fetch_remote_file("$dummy_image_url/".$catname.".png");
|
|
| 744 | 744 | |
| 745 | 745 | if (empty($uploaded['error'])) {
|
| 746 | 746 | $new_path = $uploaded['file']; |
@@ -750,7 +750,7 @@ discard block |
||
| 750 | 750 | $wp_filetype = wp_check_filetype(basename($new_path), null); |
| 751 | 751 | |
| 752 | 752 | $attachment = array( |
| 753 | - 'guid' => $uploads['baseurl'] . '/' . basename($new_path), |
|
| 753 | + 'guid' => $uploads['baseurl'].'/'.basename($new_path), |
|
| 754 | 754 | 'post_mime_type' => $wp_filetype['type'], |
| 755 | 755 | 'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)),
|
| 756 | 756 | 'post_content' => '', |
@@ -762,7 +762,7 @@ discard block |
||
| 762 | 762 | |
| 763 | 763 | // you must first include the image.php file |
| 764 | 764 | // for the function wp_generate_attachment_metadata() to work |
| 765 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 765 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 766 | 766 | $attach_data = wp_generate_attachment_metadata($attach_id, $new_path); |
| 767 | 767 | wp_update_attachment_metadata($attach_id, $attach_data); |
| 768 | 768 | |
@@ -804,18 +804,18 @@ discard block |
||
| 804 | 804 | |
| 805 | 805 | elseif (isset($value['type']) && $value['type'] == 'image_width') : |
| 806 | 806 | |
| 807 | - if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 808 | - update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 809 | - update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 810 | - if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 811 | - update_option($value['id'] . '_crop', 1); |
|
| 807 | + if (isset($value['id']) && isset($_POST[$value['id'].'_width'])) {
|
|
| 808 | + update_option($value['id'].'_width', $_POST[$value['id'].'_width']); |
|
| 809 | + update_option($value['id'].'_height', $_POST[$value['id'].'_height']); |
|
| 810 | + if (isset($_POST[$value['id'].'_crop'])) : |
|
| 811 | + update_option($value['id'].'_crop', 1); |
|
| 812 | 812 | else : |
| 813 | - update_option($value['id'] . '_crop', 0); |
|
| 813 | + update_option($value['id'].'_crop', 0); |
|
| 814 | 814 | endif; |
| 815 | 815 | } else {
|
| 816 | - update_option($value['id'] . '_width', $value['std']); |
|
| 817 | - update_option($value['id'] . '_height', $value['std']); |
|
| 818 | - update_option($value['id'] . '_crop', 1); |
|
| 816 | + update_option($value['id'].'_width', $value['std']); |
|
| 817 | + update_option($value['id'].'_height', $value['std']); |
|
| 818 | + update_option($value['id'].'_crop', 1); |
|
| 819 | 819 | } |
| 820 | 820 | |
| 821 | 821 | elseif (isset($value['type']) && $value['type'] == 'map') : |
@@ -857,12 +857,12 @@ discard block |
||
| 857 | 857 | elseif (isset($value['type']) && $value['type'] == 'file') : |
| 858 | 858 | |
| 859 | 859 | |
| 860 | - if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 860 | + if (isset($_POST[$value['id'].'_remove']) && $_POST[$value['id'].'_remove']) {// if remove is set then remove the file
|
|
| 861 | 861 | |
| 862 | 862 | if (get_option($value['id'])) {
|
| 863 | 863 | $image_name_arr = explode('/', get_option($value['id']));
|
| 864 | 864 | $noimg_name = end($image_name_arr); |
| 865 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 865 | + $img_path = $uploads['path'].'/'.$noimg_name; |
|
| 866 | 866 | if (file_exists($img_path)) |
| 867 | 867 | unlink($img_path); |
| 868 | 868 | } |
@@ -890,7 +890,7 @@ discard block |
||
| 890 | 890 | if (get_option($value['id'])) {
|
| 891 | 891 | $image_name_arr = explode('/', get_option($value['id']));
|
| 892 | 892 | $noimg_name = end($image_name_arr); |
| 893 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 893 | + $img_path = $uploads['path'].'/'.$noimg_name; |
|
| 894 | 894 | if (file_exists($img_path)) |
| 895 | 895 | unlink($img_path); |
| 896 | 896 | } |
@@ -911,7 +911,7 @@ discard block |
||
| 911 | 911 | // same menu setting per theme. |
| 912 | 912 | if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
| 913 | 913 | $theme = wp_get_theme(); |
| 914 | - update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 914 | + update_option('geodir_theme_location_nav_'.$theme->name, $_POST[$value['id']]);
|
|
| 915 | 915 | } |
| 916 | 916 | |
| 917 | 917 | if (isset($value['id']) && isset($_POST[$value['id']])) {
|
@@ -981,8 +981,8 @@ discard block |
||
| 981 | 981 | |
| 982 | 982 | $listing_slug = $geodir_posttype_info['labels']['singular_name']; |
| 983 | 983 | |
| 984 | - $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 985 | - 'label' => __(ucfirst($listing_slug) . ' Settings', 'geodirectory'), |
|
| 984 | + $tabs[$geodir_post_type.'_fields_settings'] = array( |
|
| 985 | + 'label' => __(ucfirst($listing_slug).' Settings', 'geodirectory'), |
|
| 986 | 986 | 'subtabs' => array( |
| 987 | 987 | array('subtab' => 'custom_fields',
|
| 988 | 988 | 'label' => __('Custom Fields', 'geodirectory'),
|
@@ -1015,7 +1015,7 @@ discard block |
||
| 1015 | 1015 | */ |
| 1016 | 1016 | function geodir_tools_setting_tab($tabs) |
| 1017 | 1017 | {
|
| 1018 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 1018 | + wp_enqueue_script('jquery-ui-progressbar');
|
|
| 1019 | 1019 | $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
| 1020 | 1020 | return $tabs; |
| 1021 | 1021 | } |
@@ -1049,7 +1049,7 @@ discard block |
||
| 1049 | 1049 | */ |
| 1050 | 1050 | function geodir_extend_geodirectory_setting_tab($tabs) |
| 1051 | 1051 | {
|
| 1052 | - $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'http://wpgeodirectory.com', 'target' => '_blank');
|
|
| 1052 | + $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory').' <i class="fa fa-plug"></i>', 'url' => 'http://wpgeodirectory.com', 'target' => '_blank');
|
|
| 1053 | 1053 | return $tabs; |
| 1054 | 1054 | } |
| 1055 | 1055 | |
@@ -1109,8 +1109,8 @@ discard block |
||
| 1109 | 1109 | _e('Unknown', 'geodirectory');
|
| 1110 | 1110 | } else {
|
| 1111 | 1111 | /* If there is a city id, append 'city name' to the text string. */ |
| 1112 | - $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 1113 | - echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 1112 | + $add_location_id = $location_id > 0 ? ' ('.$location_id.')' : '';
|
|
| 1113 | + echo(__($location->country, 'geodirectory').'-'.$location->region.'-'.$location->city.$add_location_id); |
|
| 1114 | 1114 | } |
| 1115 | 1115 | break; |
| 1116 | 1116 | |
@@ -1128,14 +1128,14 @@ discard block |
||
| 1128 | 1128 | $expire_class = 'expire_over'; |
| 1129 | 1129 | } |
| 1130 | 1130 | $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
| 1131 | - $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 1131 | + $date_diff_text = '<br /><span class="'.$expire_class.'">('.$date_diff.' '.$state.')</span>';
|
|
| 1132 | 1132 | } |
| 1133 | 1133 | /* If no expire_date is found, output a default message. */ |
| 1134 | 1134 | if (empty($expire_date)) |
| 1135 | 1135 | echo __('Unknown', 'geodirectory');
|
| 1136 | 1136 | /* If there is a expire_date, append 'days left' to the text string. */ |
| 1137 | 1137 | else |
| 1138 | - echo $expire_date . $date_diff_text; |
|
| 1138 | + echo $expire_date.$date_diff_text; |
|
| 1139 | 1139 | break; |
| 1140 | 1140 | |
| 1141 | 1141 | /* If displaying the 'categorys' column. */ |
@@ -1202,7 +1202,7 @@ discard block |
||
| 1202 | 1202 | function geodir_post_information_save($post_id, $post) {
|
| 1203 | 1203 | global $wpdb, $current_user; |
| 1204 | 1204 | |
| 1205 | - if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 1205 | + if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) {
|
|
| 1206 | 1206 | return; |
| 1207 | 1207 | } |
| 1208 | 1208 | |
@@ -1270,7 +1270,7 @@ discard block |
||
| 1270 | 1270 | $tab_id = $value['id']; |
| 1271 | 1271 | |
| 1272 | 1272 | if (isset($value['desc']) && $value['desc']) |
| 1273 | - $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 1273 | + $desc = '<span style=" text-transform:none;">:- '.$value['desc'].'</span>'; |
|
| 1274 | 1274 | |
| 1275 | 1275 | if (isset($value['name']) && $value['name']) {
|
| 1276 | 1276 | if ($first_title === true) {
|
@@ -1278,9 +1278,9 @@ discard block |
||
| 1278 | 1278 | } else {
|
| 1279 | 1279 | echo '</div>'; |
| 1280 | 1280 | } |
| 1281 | - echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 1281 | + echo '<dd id="'.trim($tab_id).'" class="geodir_option_tabs" ><a href="javascript:void(0);">'.$value['name'].'</a></dd>'; |
|
| 1282 | 1282 | |
| 1283 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 1283 | + echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 1284 | 1284 | } |
| 1285 | 1285 | |
| 1286 | 1286 | /** |
@@ -1290,21 +1290,21 @@ discard block |
||
| 1290 | 1290 | * |
| 1291 | 1291 | * @since 1.0.0 |
| 1292 | 1292 | */ |
| 1293 | - do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 1293 | + do_action('geodir_settings_'.sanitize_title($value['id']));
|
|
| 1294 | 1294 | break; |
| 1295 | 1295 | |
| 1296 | 1296 | case 'no_tabs': |
| 1297 | 1297 | |
| 1298 | 1298 | echo '<div class="inner_content_tab_main">'; |
| 1299 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 1299 | + echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 1300 | 1300 | |
| 1301 | 1301 | break; |
| 1302 | 1302 | |
| 1303 | 1303 | case 'sectionstart': |
| 1304 | 1304 | if (isset($value['desc']) && $value['desc']) |
| 1305 | - $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 1305 | + $desc = '<span style=" text-transform:none;"> - '.$value['desc'].'</span>'; |
|
| 1306 | 1306 | if (isset($value['name']) && $value['name']) |
| 1307 | - echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 1307 | + echo '<h3>'.$value['name'].$desc.'</h3>'; |
|
| 1308 | 1308 | /** |
| 1309 | 1309 | * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
| 1310 | 1310 | * |
@@ -1312,8 +1312,8 @@ discard block |
||
| 1312 | 1312 | * |
| 1313 | 1313 | * @since 1.0.0 |
| 1314 | 1314 | */ |
| 1315 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 1316 | - echo '<table class="form-table">' . "\n\n"; |
|
| 1315 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_start');
|
|
| 1316 | + echo '<table class="form-table">'."\n\n"; |
|
| 1317 | 1317 | |
| 1318 | 1318 | break; |
| 1319 | 1319 | case 'sectionend': |
@@ -1324,7 +1324,7 @@ discard block |
||
| 1324 | 1324 | * |
| 1325 | 1325 | * @since 1.0.0 |
| 1326 | 1326 | */ |
| 1327 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 1327 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_end');
|
|
| 1328 | 1328 | echo '</table>'; |
| 1329 | 1329 | /** |
| 1330 | 1330 | * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
@@ -1333,7 +1333,7 @@ discard block |
||
| 1333 | 1333 | * |
| 1334 | 1334 | * @since 1.0.0 |
| 1335 | 1335 | */ |
| 1336 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 1336 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_after');
|
|
| 1337 | 1337 | break; |
| 1338 | 1338 | case 'text': |
| 1339 | 1339 | ?> |
@@ -1342,7 +1342,7 @@ discard block |
||
| 1342 | 1342 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1343 | 1343 | id="<?php echo esc_attr($value['id']); ?>" |
| 1344 | 1344 | type="<?php echo esc_attr($value['type']); ?>" |
| 1345 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1345 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1346 | 1346 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1347 | 1347 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1348 | 1348 | echo esc_attr(stripslashes(get_option($value['id']))); |
@@ -1359,7 +1359,7 @@ discard block |
||
| 1359 | 1359 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1360 | 1360 | id="<?php echo esc_attr($value['id']); ?>" |
| 1361 | 1361 | type="<?php echo esc_attr($value['type']); ?>" |
| 1362 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1362 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1363 | 1363 | style="<?php echo esc_attr($value['css']); ?>" |
| 1364 | 1364 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1365 | 1365 | echo esc_attr(stripslashes(get_option($value['id']))); |
@@ -1405,17 +1405,17 @@ discard block |
||
| 1405 | 1405 | <?php _e('Width', 'geodirectory'); ?> <input
|
| 1406 | 1406 | name="<?php echo esc_attr($value['id']); ?>_width" |
| 1407 | 1407 | id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3" |
| 1408 | - value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1408 | + value="<?php if ($size = get_option($value['id'].'_width')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1409 | 1409 | |
| 1410 | 1410 | <?php _e('Height', 'geodirectory'); ?> <input
|
| 1411 | 1411 | name="<?php echo esc_attr($value['id']); ?>_height" |
| 1412 | 1412 | id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3" |
| 1413 | - value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1413 | + value="<?php if ($size = get_option($value['id'].'_height')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1414 | 1414 | |
| 1415 | 1415 | <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
|
| 1416 | 1416 | name="<?php echo esc_attr($value['id']); ?>_crop" |
| 1417 | 1417 | id="<?php echo esc_attr($value['id']); ?>_crop" |
| 1418 | - type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label> |
|
| 1418 | + type="checkbox" <?php if (get_option($value['id'].'_crop') != '') checked(get_option($value['id'].'_crop'), 1); else checked(1); ?> /></label> |
|
| 1419 | 1419 | |
| 1420 | 1420 | <span class="description"><?php echo $value['desc'] ?></span></td> |
| 1421 | 1421 | </tr><?php |
@@ -1465,7 +1465,7 @@ discard block |
||
| 1465 | 1465 | id="<?php echo esc_attr($value['id']); ?>" |
| 1466 | 1466 | style="<?php echo esc_attr($value['css']); ?>" |
| 1467 | 1467 | class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
| 1468 | - data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>" |
|
| 1468 | + data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text']; ?>" |
|
| 1469 | 1469 | option-ajaxchosen="false"> |
| 1470 | 1470 | <?php |
| 1471 | 1471 | foreach ($value['options'] as $key => $val) {
|
@@ -1476,7 +1476,7 @@ discard block |
||
| 1476 | 1476 | } else {
|
| 1477 | 1477 | ?> |
| 1478 | 1478 | <option |
| 1479 | - value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option> |
|
| 1479 | + value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values))); ?>><?php echo ucfirst($val) ?></option> |
|
| 1480 | 1480 | <?php |
| 1481 | 1481 | } |
| 1482 | 1482 | } |
@@ -1511,7 +1511,7 @@ discard block |
||
| 1511 | 1511 | ?> |
| 1512 | 1512 | |
| 1513 | 1513 | <tr valign="top"> |
| 1514 | - <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
|
|
| 1514 | + <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory'); ?></th>
|
|
| 1515 | 1515 | <td width="60%"> |
| 1516 | 1516 | <select name="geodir_default_map_language" style="width:60%"> |
| 1517 | 1517 | <?php |
@@ -1593,7 +1593,7 @@ discard block |
||
| 1593 | 1593 | |
| 1594 | 1594 | <tr valign="top"> |
| 1595 | 1595 | <th class="titledesc" |
| 1596 | - width="40%"><?php _e('Default post type search on map', 'geodirectory');?></th>
|
|
| 1596 | + width="40%"><?php _e('Default post type search on map', 'geodirectory'); ?></th>
|
|
| 1597 | 1597 | <td width="60%"> |
| 1598 | 1598 | <select name="geodir_default_map_search_pt" style="width:60%"> |
| 1599 | 1599 | <?php |
@@ -1634,7 +1634,7 @@ discard block |
||
| 1634 | 1634 | $cat_display = 'checkbox'; |
| 1635 | 1635 | $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
| 1636 | 1636 | $gd_cats = get_option('geodir_exclude_cat_on_map');
|
| 1637 | - $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1637 | + $gd_cats_upgrade = (int) get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1638 | 1638 | $count = 1; |
| 1639 | 1639 | ?> |
| 1640 | 1640 | <table width="70%" class="widefat"> |
@@ -1663,7 +1663,7 @@ discard block |
||
| 1663 | 1663 | name="home_map_post_types[]" |
| 1664 | 1664 | id="<?php echo esc_attr($value['id']); ?>" |
| 1665 | 1665 | value="<?php echo $key; ?>" |
| 1666 | - class="map_post_type" <?php echo $checked;?> /> |
|
| 1666 | + class="map_post_type" <?php echo $checked; ?> /> |
|
| 1667 | 1667 | <?php echo $post_types_obj->labels->singular_name; ?></td> |
| 1668 | 1668 | <td width="40%"> |
| 1669 | 1669 | <div class="home_map_category" style="overflow:auto;width:200px;height:100px;" |
@@ -1721,12 +1721,12 @@ discard block |
||
| 1721 | 1721 | ?> |
| 1722 | 1722 | <fieldset> |
| 1723 | 1723 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1724 | - <label for="<?php echo $value['id'];?>"> |
|
| 1724 | + <label for="<?php echo $value['id']; ?>"> |
|
| 1725 | 1725 | <input name="<?php echo esc_attr($value['id']); ?>" |
| 1726 | - id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio" |
|
| 1726 | + id="<?php echo esc_attr($value['id'].$value['value']); ?>" type="radio" |
|
| 1727 | 1727 | value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
|
| 1728 | 1728 | echo 'checked="checked"'; |
| 1729 | - }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1729 | + }elseif (get_option($value['id']) == '' && $value['std'] == $value['value']) {echo 'checked="checked"'; } ?> />
|
|
| 1730 | 1730 | <?php echo $value['desc']; ?></label><br> |
| 1731 | 1731 | </fieldset> |
| 1732 | 1732 | <?php |
@@ -1746,9 +1746,9 @@ discard block |
||
| 1746 | 1746 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1747 | 1747 | <td class="forminp"> |
| 1748 | 1748 | <textarea |
| 1749 | - <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>" |
|
| 1749 | + <?php if (isset($value['args'])) echo $value['args'].' '; ?>name="<?php echo esc_attr($value['id']); ?>" |
|
| 1750 | 1750 | id="<?php echo esc_attr($value['id']); ?>" |
| 1751 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1751 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1752 | 1752 | style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span |
| 1753 | 1753 | class="description"><?php echo $value['desc'] ?></span> |
| 1754 | 1754 | |
@@ -1793,7 +1793,7 @@ discard block |
||
| 1793 | 1793 | } |
| 1794 | 1794 | } |
| 1795 | 1795 | // |
| 1796 | - $page_setting = (int)get_option($value['id']); |
|
| 1796 | + $page_setting = (int) get_option($value['id']); |
|
| 1797 | 1797 | |
| 1798 | 1798 | $args = array('name' => $value['id'],
|
| 1799 | 1799 | 'id' => $value['id'], |
@@ -1810,7 +1810,7 @@ discard block |
||
| 1810 | 1810 | <tr valign="top" class="single_select_page"> |
| 1811 | 1811 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1812 | 1812 | <td class="forminp"> |
| 1813 | - <?php echo str_replace(' id=', " data-placeholder='" . __('Select a page...', 'geodirectory') . "' style='" . $value['css'] . "' class='" . $value['class'] . "' " . $disabled . " id=", wp_dropdown_pages($args)); ?>
|
|
| 1813 | + <?php echo str_replace(' id=', " data-placeholder='".__('Select a page...', 'geodirectory')."' style='".$value['css']."' class='".$value['class']."' ".$disabled." id=", wp_dropdown_pages($args)); ?>
|
|
| 1814 | 1814 | <span class="description"><?php echo $value['desc'] ?></span> |
| 1815 | 1815 | </td> |
| 1816 | 1816 | </tr><?php |
@@ -1819,7 +1819,7 @@ discard block |
||
| 1819 | 1819 | } |
| 1820 | 1820 | break; |
| 1821 | 1821 | case 'single_select_country' : |
| 1822 | - $country_setting = (string)get_option($value['id']); |
|
| 1822 | + $country_setting = (string) get_option($value['id']); |
|
| 1823 | 1823 | if (strstr($country_setting, ':')) : |
| 1824 | 1824 | $country = current(explode(':', $country_setting));
|
| 1825 | 1825 | $state = end(explode(':', $country_setting));
|
@@ -1842,7 +1842,7 @@ discard block |
||
| 1842 | 1842 | case 'multi_select_countries' : |
| 1843 | 1843 | $countries = $geodirectory->countries->countries; |
| 1844 | 1844 | asort($countries); |
| 1845 | - $selections = (array)get_option($value['id']); |
|
| 1845 | + $selections = (array) get_option($value['id']); |
|
| 1846 | 1846 | ?> |
| 1847 | 1847 | <tr valign="top"> |
| 1848 | 1848 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
@@ -1852,7 +1852,7 @@ discard block |
||
| 1852 | 1852 | title="Country" class="chosen_select"> |
| 1853 | 1853 | <?php |
| 1854 | 1854 | if ($countries) foreach ($countries as $key => $val) : |
| 1855 | - echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1855 | + echo '<option value="'.$key.'" '.selected(in_array($key, $selections), true, false).'>'.$val.'</option>'; |
|
| 1856 | 1856 | endforeach; |
| 1857 | 1857 | ?> |
| 1858 | 1858 | </select> |
@@ -1864,8 +1864,8 @@ discard block |
||
| 1864 | 1864 | break; |
| 1865 | 1865 | |
| 1866 | 1866 | case 'google_analytics' : |
| 1867 | - $selections = (array)get_option($value['id']); |
|
| 1868 | - if(get_option('geodir_ga_client_id') && get_option('geodir_ga_client_secret') ) {
|
|
| 1867 | + $selections = (array) get_option($value['id']); |
|
| 1868 | + if (get_option('geodir_ga_client_id') && get_option('geodir_ga_client_secret')) {
|
|
| 1869 | 1869 | ?> |
| 1870 | 1870 | <tr valign="top"> |
| 1871 | 1871 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
@@ -1876,20 +1876,20 @@ discard block |
||
| 1876 | 1876 | |
| 1877 | 1877 | $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
| 1878 | 1878 | $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
| 1879 | - $state = "&state=123";//any string |
|
| 1880 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1879 | + $state = "&state=123"; //any string |
|
| 1880 | + $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback";
|
|
| 1881 | 1881 | $response_type = "&response_type=code"; |
| 1882 | 1882 | $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
| 1883 | 1883 | $access_type = "&access_type=offline"; |
| 1884 | 1884 | $approval_prompt = "&approval_prompt=force"; |
| 1885 | 1885 | |
| 1886 | - $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1886 | + $auth_url = $oAuthURL.$scope.$state.$redirect_uri.$response_type.$client_id.$access_type.$approval_prompt; |
|
| 1887 | 1887 | |
| 1888 | 1888 | |
| 1889 | 1889 | ?> |
| 1890 | 1890 | <script> |
| 1891 | 1891 | function gd_ga_popup() {
|
| 1892 | - var win = window.open("<?php echo $auth_url;?>", "Google Analytics", "");
|
|
| 1892 | + var win = window.open("<?php echo $auth_url; ?>", "Google Analytics", "");
|
|
| 1893 | 1893 | var pollTimer = window.setInterval(function () {
|
| 1894 | 1894 | if (win.closed !== false) { // !== is required for compatibility with Opera
|
| 1895 | 1895 | window.clearInterval(pollTimer); |
@@ -1911,7 +1911,7 @@ discard block |
||
| 1911 | 1911 | } else {
|
| 1912 | 1912 | ?> |
| 1913 | 1913 | <span class="button-primary" |
| 1914 | - onclick="gd_ga_popup();"><?php _e('Authorize', 'geodirectory');?></span>
|
|
| 1914 | + onclick="gd_ga_popup();"><?php _e('Authorize', 'geodirectory'); ?></span>
|
|
| 1915 | 1915 | <?php |
| 1916 | 1916 | } |
| 1917 | 1917 | ?> |
@@ -1982,9 +1982,9 @@ discard block |
||
| 1982 | 1982 | |
| 1983 | 1983 | <?php if (isset($_REQUEST['active_tab']) && $_REQUEST['active_tab'] != '') { ?>
|
| 1984 | 1984 | jQuery('.geodir_option_tabs').removeClass('gd-tab-active');
|
| 1985 | - jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').addClass('gd-tab-active');
|
|
| 1985 | + jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').addClass('gd-tab-active');
|
|
| 1986 | 1986 | jQuery('.gd-content-heading').hide();
|
| 1987 | - jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').show();
|
|
| 1987 | + jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').show();
|
|
| 1988 | 1988 | <?php } ?> |
| 1989 | 1989 | }); |
| 1990 | 1990 | </script> |
@@ -2070,7 +2070,7 @@ discard block |
||
| 2070 | 2070 | wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
| 2071 | 2071 | |
| 2072 | 2072 | if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
| 2073 | - echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 2073 | + echo '<h4>'.__('Featured Image', 'geodirectory').'</h4>';
|
|
| 2074 | 2074 | geodir_show_featured_image($post_id, 'thumbnail'); |
| 2075 | 2075 | } |
| 2076 | 2076 | |
@@ -2081,13 +2081,13 @@ discard block |
||
| 2081 | 2081 | |
| 2082 | 2082 | <h5 class="form_title"> |
| 2083 | 2083 | <?php if ($image_limit != 0 && $image_limit == 1) {
|
| 2084 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 2084 | + echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
|
|
| 2085 | 2085 | } ?> |
| 2086 | 2086 | <?php if ($image_limit != 0 && $image_limit > 1) {
|
| 2087 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 2087 | + echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
|
|
| 2088 | 2088 | } ?> |
| 2089 | 2089 | <?php if ($image_limit == 0) {
|
| 2090 | - echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 2090 | + echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
|
|
| 2091 | 2091 | } ?> |
| 2092 | 2092 | </h5> |
| 2093 | 2093 | |
@@ -2126,10 +2126,10 @@ discard block |
||
| 2126 | 2126 | <div |
| 2127 | 2127 | class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>" |
| 2128 | 2128 | id="<?php echo $id; ?>plupload-upload-ui"> |
| 2129 | - <h4><?php _e('Drop files to upload', 'geodirectory');?></h4>
|
|
| 2129 | + <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4>
|
|
| 2130 | 2130 | <input id="<?php echo $id; ?>plupload-browse-button" type="button" |
| 2131 | 2131 | value="<?php _e('Select Files', 'geodirectory'); ?>" class="button"/>
|
| 2132 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span> |
|
| 2132 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span> |
|
| 2133 | 2133 | <?php if ($width && $height): ?> |
| 2134 | 2134 | <span class="plupload-resize"></span> |
| 2135 | 2135 | <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span> |
@@ -2141,7 +2141,7 @@ discard block |
||
| 2141 | 2141 | id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;"> |
| 2142 | 2142 | </div> |
| 2143 | 2143 | <span |
| 2144 | - id="upload-msg"><?php _e('Please drag & drop the images to rearrange the order', 'geodirectory');?></span>
|
|
| 2144 | + id="upload-msg"><?php _e('Please drag & drop the images to rearrange the order', 'geodirectory'); ?></span>
|
|
| 2145 | 2145 | <span id="<?php echo $id; ?>upload-error" style="display:none"></span> |
| 2146 | 2146 | </div> |
| 2147 | 2147 | |
@@ -2351,9 +2351,9 @@ discard block |
||
| 2351 | 2351 | $plugin = 'avada-nag'; |
| 2352 | 2352 | $timestamp = 'avada-nag1234'; |
| 2353 | 2353 | $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
| 2354 | - echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2355 | - echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2356 | - echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2354 | + echo '<div id="'.$timestamp.'" class="error">'; |
|
| 2355 | + echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\''.$plugin.'\',\''.$timestamp.'\');" ><i class="fa fa-times"></i></span>'; |
|
| 2356 | + echo "<img class='gd-icon-noti' src='".plugin_dir_url('')."geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2357 | 2357 | echo "<p>$message</p>"; |
| 2358 | 2358 | echo "</div>"; |
| 2359 | 2359 | |
@@ -2486,7 +2486,7 @@ discard block |
||
| 2486 | 2486 | |
| 2487 | 2487 | // Don't allow same slug url for listing and location |
| 2488 | 2488 | if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
|
| 2489 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
|
|
| 2489 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab.'&msg=fail&gderr=21');
|
|
| 2490 | 2490 | wp_redirect($redirect_url); |
| 2491 | 2491 | exit; |
| 2492 | 2492 | } |
@@ -2498,7 +2498,7 @@ discard block |
||
| 2498 | 2498 | $default_language = $sitepress->get_default_language(); |
| 2499 | 2499 | |
| 2500 | 2500 | if ($current_language != 'all' && $current_language != $default_language) {
|
| 2501 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab);
|
|
| 2501 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab);
|
|
| 2502 | 2502 | wp_redirect($redirect_url); |
| 2503 | 2503 | exit; |
| 2504 | 2504 | } |
@@ -2519,11 +2519,11 @@ discard block |
||
| 2519 | 2519 | function geodir_hide_admin_preview_button() {
|
| 2520 | 2520 | global $post_type; |
| 2521 | 2521 | $post_types = geodir_get_posttypes(); |
| 2522 | - if(in_array($post_type, $post_types)) |
|
| 2522 | + if (in_array($post_type, $post_types)) |
|
| 2523 | 2523 | echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
| 2524 | 2524 | } |
| 2525 | -add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' ); |
|
| 2526 | -add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' ); |
|
| 2525 | +add_action('admin_head-post-new.php', 'geodir_hide_admin_preview_button');
|
|
| 2526 | +add_action('admin_head-post.php', 'geodir_hide_admin_preview_button');
|
|
| 2527 | 2527 | |
| 2528 | 2528 | /** |
| 2529 | 2529 | * Add the tab in left sidebar menu fro import & export page. |
@@ -2533,8 +2533,8 @@ discard block |
||
| 2533 | 2533 | * |
| 2534 | 2534 | * @return array Array of tab data. |
| 2535 | 2535 | */ |
| 2536 | -function geodir_import_export_tab( $tabs ) {
|
|
| 2537 | - $tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) ); |
|
| 2536 | +function geodir_import_export_tab($tabs) {
|
|
| 2537 | + $tabs['import_export'] = array('label' => __('Import & Export', 'geodirectory'));
|
|
| 2538 | 2538 | return $tabs; |
| 2539 | 2539 | } |
| 2540 | 2540 | |
@@ -2548,8 +2548,8 @@ discard block |
||
| 2548 | 2548 | * @return string Html content. |
| 2549 | 2549 | */ |
| 2550 | 2550 | function geodir_import_export_page() {
|
| 2551 | - $nonce = wp_create_nonce( 'geodir_import_export_nonce' ); |
|
| 2552 | - $gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv'; |
|
| 2551 | + $nonce = wp_create_nonce('geodir_import_export_nonce');
|
|
| 2552 | + $gd_cats_sample_csv = geodir_plugin_url().'/geodirectory-assets/gd_sample_categories.csv'; |
|
| 2553 | 2553 | /** |
| 2554 | 2554 | * Filter sample category data csv file url. |
| 2555 | 2555 | * |
@@ -2558,9 +2558,9 @@ discard block |
||
| 2558 | 2558 | * |
| 2559 | 2559 | * @param string $gd_cats_sample_csv Sample category data csv file url. |
| 2560 | 2560 | */ |
| 2561 | - $gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv ); |
|
| 2561 | + $gd_cats_sample_csv = apply_filters('geodir_export_cats_sample_csv', $gd_cats_sample_csv);
|
|
| 2562 | 2562 | |
| 2563 | - $gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv'; |
|
| 2563 | + $gd_posts_sample_csv = geodir_plugin_url().'/geodirectory-assets/place_listing.csv'; |
|
| 2564 | 2564 | /** |
| 2565 | 2565 | * Filter sample post data csv file url. |
| 2566 | 2566 | * |
@@ -2569,15 +2569,15 @@ discard block |
||
| 2569 | 2569 | * |
| 2570 | 2570 | * @param string $gd_posts_sample_csv Sample post data csv file url. |
| 2571 | 2571 | */ |
| 2572 | - $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2572 | + $gd_posts_sample_csv = apply_filters('geodir_export_posts_sample_csv', $gd_posts_sample_csv);
|
|
| 2573 | 2573 | |
| 2574 | - $gd_posttypes = geodir_get_posttypes( 'array' ); |
|
| 2574 | + $gd_posttypes = geodir_get_posttypes('array');
|
|
| 2575 | 2575 | |
| 2576 | 2576 | $gd_posttypes_option = ''; |
| 2577 | - foreach ( $gd_posttypes as $gd_posttype => $row ) {
|
|
| 2578 | - $gd_posttypes_option .= '<option value="' . $gd_posttype . '" data-cats="' . (int)geodir_get_terms_count( $gd_posttype ) . '" data-posts="' . (int)geodir_get_posts_count( $gd_posttype ) . '">' . __( $row['labels']['name'], 'geodirectory' ) . '</option>'; |
|
| 2577 | + foreach ($gd_posttypes as $gd_posttype => $row) {
|
|
| 2578 | + $gd_posttypes_option .= '<option value="'.$gd_posttype.'" data-cats="'.(int) geodir_get_terms_count($gd_posttype).'" data-posts="'.(int) geodir_get_posts_count($gd_posttype).'">'.__($row['labels']['name'], 'geodirectory').'</option>'; |
|
| 2579 | 2579 | } |
| 2580 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 2580 | + wp_enqueue_script('jquery-ui-progressbar');
|
|
| 2581 | 2581 | |
| 2582 | 2582 | $gd_chunksize_options = array(); |
| 2583 | 2583 | $gd_chunksize_options[100] = 100; |
@@ -2599,49 +2599,49 @@ discard block |
||
| 2599 | 2599 | * |
| 2600 | 2600 | * @param string $gd_chunksize_options Entries options. |
| 2601 | 2601 | */ |
| 2602 | - $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2602 | + $gd_chunksize_options = apply_filters('geodir_export_csv_chunksize_options', $gd_chunksize_options);
|
|
| 2603 | 2603 | |
| 2604 | 2604 | $gd_chunksize_option = ''; |
| 2605 | 2605 | foreach ($gd_chunksize_options as $value => $title) {
|
| 2606 | - $gd_chunksize_option .= '<option value="' . $value . '" ' . selected($value, 5000, false) . '>' . $title . '</option>'; |
|
| 2606 | + $gd_chunksize_option .= '<option value="'.$value.'" '.selected($value, 5000, false).'>'.$title.'</option>'; |
|
| 2607 | 2607 | } |
| 2608 | 2608 | |
| 2609 | 2609 | $uploads = wp_upload_dir(); |
| 2610 | 2610 | ?> |
| 2611 | 2611 | </form> |
| 2612 | 2612 | <div class="inner_content_tab_main gd-import-export"> |
| 2613 | - <h3><?php _e( 'GD Import & Export CSV', 'geodirectory' ) ;?></h3> |
|
| 2614 | - <span class="description"><?php _e( 'Import & export csv for GD listings & categories.', 'geodirectory' ) ;?></span> |
|
| 2613 | + <h3><?php _e('GD Import & Export CSV', 'geodirectory'); ?></h3>
|
|
| 2614 | + <span class="description"><?php _e('Import & export csv for GD listings & categories.', 'geodirectory'); ?></span>
|
|
| 2615 | 2615 | <div class="gd-content-heading"> |
| 2616 | 2616 | |
| 2617 | 2617 | <?php |
| 2618 | 2618 | ini_set('max_execution_time', 999999);
|
| 2619 | - $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2619 | + $ini_max_execution_time_check = @ini_get('max_execution_time');
|
|
| 2620 | 2620 | ini_restore('max_execution_time');
|
| 2621 | 2621 | |
| 2622 | - if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2622 | + if ($ini_max_execution_time_check != 999999) { // only show these setting to the user if we can't change the ini setting
|
|
| 2623 | 2623 | ?> |
| 2624 | 2624 | <div id="gd_ie_reqs" class="metabox-holder"> |
| 2625 | 2625 | <div class="meta-box-sortables ui-sortable"> |
| 2626 | 2626 | <div class="postbox"> |
| 2627 | - <h3 class="hndle"><span style='vertical-align:top;'><?php echo __( 'PHP Requirements for GD Import & Export CSV', 'geodirectory' );?></span></h3> |
|
| 2627 | + <h3 class="hndle"><span style='vertical-align:top;'><?php echo __('PHP Requirements for GD Import & Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2628 | 2628 | <div class="inside"> |
| 2629 | - <span class="description"><?php echo __( 'Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory' );?></span> |
|
| 2629 | + <span class="description"><?php echo __('Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory'); ?></span>
|
|
| 2630 | 2630 | <table class="form-table"> |
| 2631 | 2631 | <thead> |
| 2632 | 2632 | <tr> |
| 2633 | - <th><?php _e( 'PHP Settings', 'geodirectory' );?></th><th><?php _e( 'Current Value', 'geodirectory' );?></th><th><?php _e( 'Recommended Value', 'geodirectory' );?></th> |
|
| 2633 | + <th><?php _e('PHP Settings', 'geodirectory'); ?></th><th><?php _e('Current Value', 'geodirectory'); ?></th><th><?php _e('Recommended Value', 'geodirectory'); ?></th>
|
|
| 2634 | 2634 | </tr> |
| 2635 | 2635 | </thead> |
| 2636 | 2636 | <tbody> |
| 2637 | 2637 | <tr> |
| 2638 | - <td>max_input_time</td><td><?php echo @ini_get( 'max_input_time' );?></td><td>3000</td> |
|
| 2638 | + <td>max_input_time</td><td><?php echo @ini_get('max_input_time'); ?></td><td>3000</td>
|
|
| 2639 | 2639 | </tr> |
| 2640 | 2640 | <tr> |
| 2641 | - <td>max_execution_time</td><td><?php echo @ini_get( 'max_execution_time' );?></td><td>3000</td> |
|
| 2641 | + <td>max_execution_time</td><td><?php echo @ini_get('max_execution_time'); ?></td><td>3000</td>
|
|
| 2642 | 2642 | </tr> |
| 2643 | 2643 | <tr> |
| 2644 | - <td>memory_limit</td><td><?php echo @ini_get( 'memory_limit' );?></td><td>256M</td> |
|
| 2644 | + <td>memory_limit</td><td><?php echo @ini_get('memory_limit'); ?></td><td>256M</td>
|
|
| 2645 | 2645 | </tr> |
| 2646 | 2646 | </tbody> |
| 2647 | 2647 | </table> |
@@ -2653,21 +2653,21 @@ discard block |
||
| 2653 | 2653 | <div id="gd_ie_imposts" class="metabox-holder"> |
| 2654 | 2654 | <div class="meta-box-sortables ui-sortable"> |
| 2655 | 2655 | <div id="gd_ie_im_posts" class="postbox gd-hndle-pbox"> |
| 2656 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Listings: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2657 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Import CSV', 'geodirectory' );?></span></h3> |
|
| 2656 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Listings: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2657 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Import CSV', 'geodirectory'); ?></span></h3>
|
|
| 2658 | 2658 | <div class="inside"> |
| 2659 | 2659 | <table class="form-table"> |
| 2660 | 2660 | <tbody> |
| 2661 | 2661 | <tr> |
| 2662 | 2662 | <td class="gd-imex-box"> |
| 2663 | 2663 | <div class="gd-im-choices"> |
| 2664 | - <p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e( 'Update listing if post with post_id already exists.', 'geodirectory' );?></label></p> |
|
| 2665 | - <p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e( 'Ignore listing if post with post_id already exists.', 'geodirectory' );?></label></p> |
|
| 2664 | + <p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e('Update listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
|
|
| 2665 | + <p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e('Ignore listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
|
|
| 2666 | 2666 | </div> |
| 2667 | 2667 | <div class="plupload-upload-uic hide-if-no-js" id="gd_im_postplupload-upload-ui"> |
| 2668 | 2668 | <input type="text" readonly="readonly" name="gd_im_post_file" class="gd-imex-file gd_im_post_file" id="gd_im_post" onclick="jQuery('#gd_im_postplupload-browse-button').trigger('click');" />
|
| 2669 | - <input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample"> |
|
| 2670 | - <input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv;?>" /> |
|
| 2669 | + <input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
|
|
| 2670 | + <input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv; ?>" /> |
|
| 2671 | 2671 | <?php |
| 2672 | 2672 | /** |
| 2673 | 2673 | * Called just after the sample CSV download link. |
@@ -2676,7 +2676,7 @@ discard block |
||
| 2676 | 2676 | */ |
| 2677 | 2677 | do_action('geodir_sample_csv_download_link');
|
| 2678 | 2678 | ?> |
| 2679 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_postpluploadan' ); ?>"></span> |
|
| 2679 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_postpluploadan'); ?>"></span>
|
|
| 2680 | 2680 | <div class="filelist"></div> |
| 2681 | 2681 | </div> |
| 2682 | 2682 | <span id="gd_im_catupload-error" style="display:none"></span> |
@@ -2694,7 +2694,7 @@ discard block |
||
| 2694 | 2694 | <input type="hidden" id="gd_terminateaction" value="continue"/> |
| 2695 | 2695 | </div> |
| 2696 | 2696 | <div class="gd-import-progress" id="gd-import-progress" style="display:none"> |
| 2697 | - <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
|
|
| 2697 | + <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
|
|
| 2698 | 2698 | id="gd-import-done">0</font> / <font id="gd-import-total">0</font> ( <font |
| 2699 | 2699 | id="gd-import-perc">0%</font> ) |
| 2700 | 2700 | <div class="gd-fileprogress"></div> |
@@ -2706,10 +2706,10 @@ discard block |
||
| 2706 | 2706 | <div class="gd-imex-btns" style="display:none;"> |
| 2707 | 2707 | <input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/> |
| 2708 | 2708 | <input onclick="gd_imex_PrepareImport(this, 'post')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" /> |
| 2709 | - <input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/> |
|
| 2710 | - <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
|
|
| 2709 | + <input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
|
|
| 2710 | + <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
|
|
| 2711 | 2711 | <div id="gd_process_data" style="display:none"> |
| 2712 | - <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
|
|
| 2712 | + <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
|
|
| 2713 | 2713 | </div> |
| 2714 | 2714 | </div> |
| 2715 | 2715 | </td> |
@@ -2723,30 +2723,30 @@ discard block |
||
| 2723 | 2723 | <div id="gd_ie_excategs" class="metabox-holder"> |
| 2724 | 2724 | <div class="meta-box-sortables ui-sortable"> |
| 2725 | 2725 | <div id="gd_ie_ex_posts" class="postbox gd-hndle-pbox"> |
| 2726 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - Listings: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2727 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Export CSV', 'geodirectory' );?></span></h3> |
|
| 2726 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - Listings: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2727 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2728 | 2728 | <div class="inside"> |
| 2729 | 2729 | <table class="form-table"> |
| 2730 | 2730 | <tbody> |
| 2731 | 2731 | <tr> |
| 2732 | 2732 | <td class="fld"><label for="gd_post_type"> |
| 2733 | - <?php _e( 'Post Type:', 'geodirectory' );?> |
|
| 2733 | + <?php _e('Post Type:', 'geodirectory'); ?>
|
|
| 2734 | 2734 | </label></td> |
| 2735 | 2735 | <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"> |
| 2736 | - <?php echo $gd_posttypes_option;?> |
|
| 2736 | + <?php echo $gd_posttypes_option; ?> |
|
| 2737 | 2737 | </select></td> |
| 2738 | 2738 | </tr> |
| 2739 | 2739 | <tr> |
| 2740 | - <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td> |
|
| 2741 | - <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td> |
|
| 2740 | + <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
|
|
| 2741 | + <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
|
|
| 2742 | 2742 | </tr> |
| 2743 | 2743 | <tr class="gd-imex-dates"> |
| 2744 | - <td class="fld"><label><?php _e( 'Published Date:', 'geodirectory' );?></label></td> |
|
| 2745 | - <td><label><span class="label-responsive"><?php _e( 'Start date:', 'geodirectory' );?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e( 'End date:', 'geodirectory' );?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td> |
|
| 2744 | + <td class="fld"><label><?php _e('Published Date:', 'geodirectory'); ?></label></td>
|
|
| 2745 | + <td><label><span class="label-responsive"><?php _e('Start date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e('End date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
|
|
| 2746 | 2746 | </tr> |
| 2747 | 2747 | <tr> |
| 2748 | 2748 | <td class="fld" style="vertical-align:top"><label> |
| 2749 | - <?php _e( 'Progress:', 'geodirectory' );?> |
|
| 2749 | + <?php _e('Progress:', 'geodirectory'); ?>
|
|
| 2750 | 2750 | </label></td> |
| 2751 | 2751 | <td><div id='gd_progressbar_box'> |
| 2752 | 2752 | <div id="gd_progressbar" class="gd_progressbar"> |
@@ -2754,13 +2754,13 @@ discard block |
||
| 2754 | 2754 | </div> |
| 2755 | 2755 | </div> |
| 2756 | 2756 | <p style="display:inline-block"> |
| 2757 | - <?php _e( 'Elapsed Time:', 'geodirectory' );?> |
|
| 2757 | + <?php _e('Elapsed Time:', 'geodirectory'); ?>
|
|
| 2758 | 2758 | </p> |
| 2759 | 2759 | |
| 2760 | 2760 | <p id="gd_timer" class="gd_timer">00:00:00</p></td> |
| 2761 | 2761 | </tr> |
| 2762 | 2762 | <tr class="gd-ie-actions"> |
| 2763 | - <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit"> |
|
| 2763 | + <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
|
|
| 2764 | 2764 | </td> |
| 2765 | 2765 | <td id="gd_ie_ex_files" class="gd-ie-files"></td> |
| 2766 | 2766 | </tr> |
@@ -2773,21 +2773,21 @@ discard block |
||
| 2773 | 2773 | <div id="gd_ie_imcategs" class="metabox-holder"> |
| 2774 | 2774 | <div class="meta-box-sortables ui-sortable"> |
| 2775 | 2775 | <div id="gd_ie_imcats" class="postbox gd-hndle-pbox"> |
| 2776 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2777 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Import CSV', 'geodirectory' );?></span></h3> |
|
| 2776 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2777 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Import CSV', 'geodirectory'); ?></span></h3>
|
|
| 2778 | 2778 | <div class="inside"> |
| 2779 | 2779 | <table class="form-table"> |
| 2780 | 2780 | <tbody> |
| 2781 | 2781 | <tr> |
| 2782 | 2782 | <td class="gd-imex-box"> |
| 2783 | 2783 | <div class="gd-im-choices"> |
| 2784 | - <p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e( 'Update item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p> |
|
| 2785 | - <p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e( 'Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p> |
|
| 2784 | + <p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e('Update item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
|
|
| 2785 | + <p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e('Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
|
|
| 2786 | 2786 | </div> |
| 2787 | 2787 | <div class="plupload-upload-uic hide-if-no-js" id="gd_im_catplupload-upload-ui"> |
| 2788 | 2788 | <input type="text" readonly="readonly" name="gd_im_cat_file" class="gd-imex-file gd_im_cat_file" id="gd_im_cat" onclick="jQuery('#gd_im_catplupload-browse-button').trigger('click');" />
|
| 2789 | - <input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample"> |
|
| 2790 | - <input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv;?>" /> |
|
| 2789 | + <input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
|
|
| 2790 | + <input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv; ?>" /> |
|
| 2791 | 2791 | <?php |
| 2792 | 2792 | /** |
| 2793 | 2793 | * Called just after the sample CSV download link. |
@@ -2797,7 +2797,7 @@ discard block |
||
| 2797 | 2797 | */ |
| 2798 | 2798 | do_action('geodir_sample_cats_csv_download_link');
|
| 2799 | 2799 | ?> |
| 2800 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_catpluploadan' ); ?>"></span> |
|
| 2800 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_catpluploadan'); ?>"></span>
|
|
| 2801 | 2801 | <div class="filelist"></div> |
| 2802 | 2802 | </div> |
| 2803 | 2803 | <span id="gd_im_catupload-error" style="display:none"></span> |
@@ -2814,7 +2814,7 @@ discard block |
||
| 2814 | 2814 | <input type="hidden" id="gd_terminateaction" value="continue"/> |
| 2815 | 2815 | </div> |
| 2816 | 2816 | <div class="gd-import-progress" id="gd-import-progress" style="display:none"> |
| 2817 | - <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
|
|
| 2817 | + <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
|
|
| 2818 | 2818 | id="gd-import-done">0</font> / <font id="gd-import-total">0</font> ( <font |
| 2819 | 2819 | id="gd-import-perc">0%</font> ) |
| 2820 | 2820 | <div class="gd-fileprogress"></div> |
@@ -2826,10 +2826,10 @@ discard block |
||
| 2826 | 2826 | <div class="gd-imex-btns" style="display:none;"> |
| 2827 | 2827 | <input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/> |
| 2828 | 2828 | <input onclick="gd_imex_PrepareImport(this, 'cat')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" /> |
| 2829 | - <input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/> |
|
| 2830 | - <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
|
|
| 2829 | + <input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
|
|
| 2830 | + <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
|
|
| 2831 | 2831 | <div id="gd_process_data" style="display:none"> |
| 2832 | - <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
|
|
| 2832 | + <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
|
|
| 2833 | 2833 | </div> |
| 2834 | 2834 | </div> |
| 2835 | 2835 | </td> |
@@ -2843,26 +2843,26 @@ discard block |
||
| 2843 | 2843 | <div id="gd_ie_excategs" class="metabox-holder"> |
| 2844 | 2844 | <div class="meta-box-sortables ui-sortable"> |
| 2845 | 2845 | <div id="gd_ie_ex_cats" class="postbox gd-hndle-pbox"> |
| 2846 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2847 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Export CSV', 'geodirectory' );?></span></h3> |
|
| 2846 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2847 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2848 | 2848 | <div class="inside"> |
| 2849 | 2849 | <table class="form-table"> |
| 2850 | 2850 | <tbody> |
| 2851 | 2851 | <tr> |
| 2852 | - <td class="fld"><label for="gd_post_type"><?php _e( 'Post Type:', 'geodirectory' );?></label></td> |
|
| 2853 | - <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option;?></select></td> |
|
| 2852 | + <td class="fld"><label for="gd_post_type"><?php _e('Post Type:', 'geodirectory'); ?></label></td>
|
|
| 2853 | + <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option; ?></select></td> |
|
| 2854 | 2854 | </tr> |
| 2855 | 2855 | <tr> |
| 2856 | - <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td> |
|
| 2857 | - <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td> |
|
| 2856 | + <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
|
|
| 2857 | + <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
|
|
| 2858 | 2858 | </tr> |
| 2859 | 2859 | <tr> |
| 2860 | - <td class="fld" style="vertical-align:top"><label><?php _e( 'Progress:', 'geodirectory' );?></label></td> |
|
| 2861 | - <td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e( 'Elapsed Time:', 'geodirectory' );?></p> <p id="gd_timer" class="gd_timer">00:00:00</p></td> |
|
| 2860 | + <td class="fld" style="vertical-align:top"><label><?php _e('Progress:', 'geodirectory'); ?></label></td>
|
|
| 2861 | + <td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e('Elapsed Time:', 'geodirectory'); ?></p> <p id="gd_timer" class="gd_timer">00:00:00</p></td>
|
|
| 2862 | 2862 | </tr> |
| 2863 | 2863 | <tr class="gd-ie-actions"> |
| 2864 | 2864 | <td style="vertical-align:top"> |
| 2865 | - <input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit"> |
|
| 2865 | + <input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
|
|
| 2866 | 2866 | </td> |
| 2867 | 2867 | <td id="gd_ie_ex_files" class="gd-ie-files"></td> |
| 2868 | 2868 | </tr> |
@@ -2884,7 +2884,7 @@ discard block |
||
| 2884 | 2884 | * @param array $gd_chunksize_options File chunk size options. |
| 2885 | 2885 | * @param string $nonce Wordpress security token for GD import & export. |
| 2886 | 2886 | */ |
| 2887 | - do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce ); |
|
| 2887 | + do_action('geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce);
|
|
| 2888 | 2888 | ?> |
| 2889 | 2889 | </div> |
| 2890 | 2890 | </div> |
@@ -2903,7 +2903,7 @@ discard block |
||
| 2903 | 2903 | jQuery.ajax({
|
| 2904 | 2904 | url: ajaxurl, |
| 2905 | 2905 | type: "POST", |
| 2906 | - data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce;?>', |
|
| 2906 | + data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce; ?>', |
|
| 2907 | 2907 | dataType: 'json', |
| 2908 | 2908 | cache: false, |
| 2909 | 2909 | success: function(data) {
|
@@ -2955,7 +2955,7 @@ discard block |
||
| 2955 | 2955 | |
| 2956 | 2956 | jQuery(cont).find('.filelist .file').remove();
|
| 2957 | 2957 | |
| 2958 | - jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr( PLZ_SELECT_CSV_FILE );?></p>");
|
|
| 2958 | + jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr(PLZ_SELECT_CSV_FILE); ?></p>");
|
|
| 2959 | 2959 | jQuery('#gd-import-msg', cont).show();
|
| 2960 | 2960 | |
| 2961 | 2961 | return false; |
@@ -3014,7 +3014,7 @@ discard block |
||
| 3014 | 3014 | jQuery.ajax({
|
| 3015 | 3015 | url: ajaxurl, |
| 3016 | 3016 | type: "POST", |
| 3017 | - data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce;?>', |
|
| 3017 | + data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce; ?>', |
|
| 3018 | 3018 | dataType : 'json', |
| 3019 | 3019 | cache: false, |
| 3020 | 3020 | success: function (data) {
|
@@ -3203,27 +3203,27 @@ discard block |
||
| 3203 | 3203 | |
| 3204 | 3204 | var gdMsg = '<p></p>'; |
| 3205 | 3205 | if ( processed > 0 ) {
|
| 3206 | - var msgParse = '<p><?php echo addslashes( sprintf( __( 'Total %s item(s) found.', 'geodirectory' ), '%s' ) );?></p>'; |
|
| 3206 | + var msgParse = '<p><?php echo addslashes(sprintf(__('Total %s item(s) found.', 'geodirectory'), '%s')); ?></p>';
|
|
| 3207 | 3207 | msgParse = msgParse.replace("%s", processed);
|
| 3208 | 3208 | gdMsg += msgParse; |
| 3209 | 3209 | } |
| 3210 | 3210 | |
| 3211 | 3211 | if ( updated > 0 ) {
|
| 3212 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) updated.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 3212 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) updated.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 3213 | 3213 | msgParse = msgParse.replace("%s", updated);
|
| 3214 | 3214 | msgParse = msgParse.replace("%d", processed);
|
| 3215 | 3215 | gdMsg += msgParse; |
| 3216 | 3216 | } |
| 3217 | 3217 | |
| 3218 | 3218 | if ( created > 0 ) {
|
| 3219 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) added.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 3219 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) added.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 3220 | 3220 | msgParse = msgParse.replace("%s", created);
|
| 3221 | 3221 | msgParse = msgParse.replace("%d", processed);
|
| 3222 | 3222 | gdMsg += msgParse; |
| 3223 | 3223 | } |
| 3224 | 3224 | |
| 3225 | 3225 | if ( skipped > 0 ) {
|
| 3226 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) ignored due to already exists.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 3226 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) ignored due to already exists.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 3227 | 3227 | msgParse = msgParse.replace("%s", skipped);
|
| 3228 | 3228 | msgParse = msgParse.replace("%d", processed);
|
| 3229 | 3229 | gdMsg += msgParse; |
@@ -3233,17 +3233,17 @@ discard block |
||
| 3233 | 3233 | if (type=='loc') {
|
| 3234 | 3234 | invalid_addr = invalid; |
| 3235 | 3235 | } |
| 3236 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 3236 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 3237 | 3237 | msgParse = msgParse.replace("%s", invalid_addr);
|
| 3238 | 3238 | msgParse = msgParse.replace("%d", total);
|
| 3239 | 3239 | gdMsg += msgParse; |
| 3240 | 3240 | } |
| 3241 | 3241 | |
| 3242 | 3242 | if (invalid > 0 && type!='loc') {
|
| 3243 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 3243 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 3244 | 3244 | |
| 3245 | 3245 | if (type=='hood') {
|
| 3246 | - msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 3246 | + msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 3247 | 3247 | } |
| 3248 | 3248 | msgParse = msgParse.replace("%s", invalid);
|
| 3249 | 3249 | msgParse = msgParse.replace("%d", total);
|
@@ -3251,7 +3251,7 @@ discard block |
||
| 3251 | 3251 | } |
| 3252 | 3252 | |
| 3253 | 3253 | if (images > 0) {
|
| 3254 | - gdMsg += '<p><?php echo addslashes( sprintf( CSV_TRANSFER_IMG_FOLDER, $uploads['subdir'] ) );?></p>'; |
|
| 3254 | + gdMsg += '<p><?php echo addslashes(sprintf(CSV_TRANSFER_IMG_FOLDER, $uploads['subdir'])); ?></p>'; |
|
| 3255 | 3255 | } |
| 3256 | 3256 | gdMsg += '<p></p>'; |
| 3257 | 3257 | jQuery('#gd-import-msg', cont).find('#message').removeClass('error').addClass('updated').html(gdMsg);
|
@@ -3415,9 +3415,9 @@ discard block |
||
| 3415 | 3415 | if (typeof filters !== 'undefined' && filters && doFilter) {
|
| 3416 | 3416 | getTotal = true; |
| 3417 | 3417 | attach += '&_c=1'; |
| 3418 | - gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Preparing...', 'geodirectory' ) );?>'); |
|
| 3418 | + gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Preparing...', 'geodirectory')); ?>');
|
|
| 3419 | 3419 | } else {
|
| 3420 | - gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>'); |
|
| 3420 | + gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3421 | 3421 | } |
| 3422 | 3422 | jQuery(el).find('#gd_timer').text('00:00:01');
|
| 3423 | 3423 | jQuery('#gd_ie_ex_files', el).html('');
|
@@ -3426,7 +3426,7 @@ discard block |
||
| 3426 | 3426 | jQuery.ajax({
|
| 3427 | 3427 | url: ajaxurl, |
| 3428 | 3428 | type: "POST", |
| 3429 | - data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page + attach, |
|
| 3429 | + data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page + attach, |
|
| 3430 | 3430 | dataType : 'json', |
| 3431 | 3431 | cache: false, |
| 3432 | 3432 | beforeSend: function (jqXHR, settings) {},
|
@@ -3451,11 +3451,11 @@ discard block |
||
| 3451 | 3451 | } else {
|
| 3452 | 3452 | if (pages < page || pages == page) {
|
| 3453 | 3453 | window.clearInterval(timer_posts); |
| 3454 | - gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
|
|
| 3454 | + gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
|
|
| 3455 | 3455 | } else {
|
| 3456 | 3456 | var percentage = Math.round(((page * chunk_size) / total_posts) * 100); |
| 3457 | 3457 | percentage = percentage > 100 ? 100 : percentage; |
| 3458 | - gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
|
|
| 3458 | + gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3459 | 3459 | } |
| 3460 | 3460 | if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
|
| 3461 | 3461 | var obj_files = data.files; |
@@ -3486,7 +3486,7 @@ discard block |
||
| 3486 | 3486 | |
| 3487 | 3487 | function gd_process_export_cats(el, post_type, total_cats, chunk_size, pages, page) {
|
| 3488 | 3488 | if (page < 2) {
|
| 3489 | - gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>'); |
|
| 3489 | + gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3490 | 3490 | jQuery(el).find('#gd_timer').text('00:00:01');
|
| 3491 | 3491 | jQuery('#gd_ie_ex_files', el).html('');
|
| 3492 | 3492 | } |
@@ -3494,7 +3494,7 @@ discard block |
||
| 3494 | 3494 | jQuery.ajax({
|
| 3495 | 3495 | url: ajaxurl, |
| 3496 | 3496 | type: "POST", |
| 3497 | - data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page, |
|
| 3497 | + data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page, |
|
| 3498 | 3498 | dataType : 'json', |
| 3499 | 3499 | cache: false, |
| 3500 | 3500 | beforeSend: function (jqXHR, settings) {},
|
@@ -3508,11 +3508,11 @@ discard block |
||
| 3508 | 3508 | } else {
|
| 3509 | 3509 | if (pages < page || pages == page) {
|
| 3510 | 3510 | window.clearInterval(timer_cats); |
| 3511 | - gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
|
|
| 3511 | + gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
|
|
| 3512 | 3512 | } else {
|
| 3513 | 3513 | var percentage = Math.round(((page * chunk_size) / total_cats) * 100); |
| 3514 | 3514 | percentage = percentage > 100 ? 100 : percentage; |
| 3515 | - gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e( 'Exporting...', 'geodirectory' );?>');
|
|
| 3515 | + gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e('Exporting...', 'geodirectory'); ?>');
|
|
| 3516 | 3516 | } |
| 3517 | 3517 | if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
|
| 3518 | 3518 | var obj_files = data.files; |
@@ -3569,13 +3569,13 @@ discard block |
||
| 3569 | 3569 | function geodir_init_filesystem() |
| 3570 | 3570 | {
|
| 3571 | 3571 | |
| 3572 | - if(!function_exists('get_filesystem_method')){
|
|
| 3572 | + if (!function_exists('get_filesystem_method')) {
|
|
| 3573 | 3573 | require_once(ABSPATH."/wp-admin/includes/file.php"); |
| 3574 | 3574 | } |
| 3575 | 3575 | $access_type = get_filesystem_method(); |
| 3576 | 3576 | if ($access_type === 'direct') {
|
| 3577 | 3577 | /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
| 3578 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3578 | + $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array()); |
|
| 3579 | 3579 | |
| 3580 | 3580 | /* initialize the API */ |
| 3581 | 3581 | if (!WP_Filesystem($creds)) {
|
@@ -3588,7 +3588,7 @@ discard block |
||
| 3588 | 3588 | return $wp_filesystem; |
| 3589 | 3589 | /* do our file manipulations below */ |
| 3590 | 3590 | } elseif (defined('FTP_USER')) {
|
| 3591 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3591 | + $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array()); |
|
| 3592 | 3592 | |
| 3593 | 3593 | /* initialize the API */ |
| 3594 | 3594 | if (!WP_Filesystem($creds)) {
|
@@ -3623,7 +3623,7 @@ discard block |
||
| 3623 | 3623 | * @package GeoDirectory |
| 3624 | 3624 | */ |
| 3625 | 3625 | function geodir_filesystem_notice() |
| 3626 | -{ if ( defined( 'DOING_AJAX' ) ){return;}
|
|
| 3626 | +{ if (defined('DOING_AJAX')) {return; }
|
|
| 3627 | 3627 | $access_type = get_filesystem_method(); |
| 3628 | 3628 | if ($access_type === 'direct') {
|
| 3629 | 3629 | } elseif (!defined('FTP_USER')) {
|
@@ -3660,64 +3660,64 @@ discard block |
||
| 3660 | 3660 | // try to set higher limits for import |
| 3661 | 3661 | $max_input_time = ini_get('max_input_time');
|
| 3662 | 3662 | $max_execution_time = ini_get('max_execution_time');
|
| 3663 | - $memory_limit= ini_get('memory_limit');
|
|
| 3663 | + $memory_limit = ini_get('memory_limit');
|
|
| 3664 | 3664 | |
| 3665 | - if(!$max_input_time || $max_input_time<3000){
|
|
| 3665 | + if (!$max_input_time || $max_input_time < 3000) {
|
|
| 3666 | 3666 | ini_set('max_input_time', 3000);
|
| 3667 | 3667 | } |
| 3668 | 3668 | |
| 3669 | - if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3669 | + if (!$max_execution_time || $max_execution_time < 3000) {
|
|
| 3670 | 3670 | ini_set('max_execution_time', 3000);
|
| 3671 | 3671 | } |
| 3672 | 3672 | |
| 3673 | - if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3674 | - if(str_replace('M','',$memory_limit)<256){
|
|
| 3673 | + if ($memory_limit && str_replace('M', '', $memory_limit)) {
|
|
| 3674 | + if (str_replace('M', '', $memory_limit) < 256) {
|
|
| 3675 | 3675 | ini_set('memory_limit', '256M');
|
| 3676 | 3676 | } |
| 3677 | 3677 | } |
| 3678 | 3678 | |
| 3679 | 3679 | $json = array(); |
| 3680 | 3680 | |
| 3681 | - if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3682 | - wp_send_json( $json ); |
|
| 3681 | + if (!current_user_can('manage_options')) {
|
|
| 3682 | + wp_send_json($json); |
|
| 3683 | 3683 | } |
| 3684 | 3684 | |
| 3685 | - $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3686 | - $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3687 | - $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3685 | + $task = isset($_REQUEST['task']) ? $_REQUEST['task'] : NULL; |
|
| 3686 | + $nonce = isset($_REQUEST['_nonce']) ? $_REQUEST['_nonce'] : NULL; |
|
| 3687 | + $stat = isset($_REQUEST['_st']) ? $_REQUEST['_st'] : false; |
|
| 3688 | 3688 | |
| 3689 | - if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3690 | - wp_send_json( $json ); |
|
| 3689 | + if (!wp_verify_nonce($nonce, 'geodir_import_export_nonce')) {
|
|
| 3690 | + wp_send_json($json); |
|
| 3691 | 3691 | } |
| 3692 | 3692 | |
| 3693 | - $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3694 | - $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3693 | + $post_type = isset($_REQUEST['_pt']) ? $_REQUEST['_pt'] : NULL; |
|
| 3694 | + $chunk_per_page = isset($_REQUEST['_n']) ? absint($_REQUEST['_n']) : NULL; |
|
| 3695 | 3695 | $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
| 3696 | - $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3696 | + $chunk_page_no = isset($_REQUEST['_p']) ? absint($_REQUEST['_p']) : 1; |
|
| 3697 | 3697 | |
| 3698 | 3698 | $wp_filesystem = geodir_init_filesystem(); |
| 3699 | 3699 | if (!$wp_filesystem) {
|
| 3700 | - $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3701 | - wp_send_json( $json ); |
|
| 3700 | + $json['error'] = __('Filesystem ERROR: Could not access filesystem.', 'geodirectory');
|
|
| 3701 | + wp_send_json($json); |
|
| 3702 | 3702 | } |
| 3703 | 3703 | |
| 3704 | 3704 | if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
| 3705 | - $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3706 | - wp_send_json( $json ); |
|
| 3705 | + $json['error'] = __('Filesystem ERROR: '.$wp_filesystem->errors->get_error_message(), 'geodirectory');
|
|
| 3706 | + wp_send_json($json); |
|
| 3707 | 3707 | } |
| 3708 | 3708 | |
| 3709 | - $csv_file_dir = geodir_path_import_export( false ); |
|
| 3710 | - if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3711 | - if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3712 | - $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3713 | - wp_send_json( $json ); |
|
| 3709 | + $csv_file_dir = geodir_path_import_export(false); |
|
| 3710 | + if (!$wp_filesystem->is_dir($csv_file_dir)) {
|
|
| 3711 | + if (!$wp_filesystem->mkdir($csv_file_dir, FS_CHMOD_DIR)) {
|
|
| 3712 | + $json['error'] = __('ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3713 | + wp_send_json($json); |
|
| 3714 | 3714 | } |
| 3715 | 3715 | } |
| 3716 | 3716 | |
| 3717 | 3717 | $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
| 3718 | 3718 | $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
| 3719 | 3719 | |
| 3720 | - switch ( $task ) {
|
|
| 3720 | + switch ($task) {
|
|
| 3721 | 3721 | case 'export_posts': {
|
| 3722 | 3722 | // WPML |
| 3723 | 3723 | $is_wpml = geodir_is_wpml(); |
@@ -3728,36 +3728,36 @@ discard block |
||
| 3728 | 3728 | $sitepress->switch_lang('all', true);
|
| 3729 | 3729 | } |
| 3730 | 3730 | // WPML |
| 3731 | - if ( $post_type == 'gd_event' ) {
|
|
| 3732 | - add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3731 | + if ($post_type == 'gd_event') {
|
|
| 3732 | + add_filter('geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2);
|
|
| 3733 | 3733 | } |
| 3734 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3734 | + $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3735 | 3735 | |
| 3736 | - $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3737 | - if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3738 | - $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3736 | + $file_name = $post_type.'_'.date('dmyHi');
|
|
| 3737 | + if ($filters && isset($filters['start_date']) && isset($filters['end_date'])) {
|
|
| 3738 | + $file_name = $post_type.'_'.date_i18n('dmy', strtotime($filters['start_date'])).'_'.date_i18n('dmy', strtotime($filters['end_date']));
|
|
| 3739 | 3739 | } |
| 3740 | - $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3741 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3742 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3743 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3744 | - $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3740 | + $posts_count = geodir_get_posts_count($post_type); |
|
| 3741 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3742 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3743 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3744 | + $file_path_temp = $csv_file_dir.'/'.$post_type.'_'.$nonce.'.csv'; |
|
| 3745 | 3745 | |
| 3746 | 3746 | $chunk_file_paths = array(); |
| 3747 | 3747 | |
| 3748 | - if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3748 | + if (isset($_REQUEST['_c'])) {
|
|
| 3749 | 3749 | $json['total'] = $posts_count; |
| 3750 | 3750 | // WPML |
| 3751 | 3751 | if ($is_wpml) {
|
| 3752 | 3752 | $sitepress->switch_lang($active_lang, true); |
| 3753 | 3753 | } |
| 3754 | 3754 | // WPML |
| 3755 | - wp_send_json( $json ); |
|
| 3755 | + wp_send_json($json); |
|
| 3756 | 3756 | gd_die(); |
| 3757 | - } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3758 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3759 | - $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3760 | - $percentage = min( $percentage, 100 ); |
|
| 3757 | + } else if (isset($_REQUEST['_st'])) {
|
|
| 3758 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3759 | + $percentage = count($posts_count) > 0 && $line_count > 0 ? ceil($line_count / $posts_count) * 100 : 0; |
|
| 3760 | + $percentage = min($percentage, 100); |
|
| 3761 | 3761 | |
| 3762 | 3762 | $json['percentage'] = $percentage; |
| 3763 | 3763 | // WPML |
@@ -3765,45 +3765,45 @@ discard block |
||
| 3765 | 3765 | $sitepress->switch_lang($active_lang, true); |
| 3766 | 3766 | } |
| 3767 | 3767 | // WPML |
| 3768 | - wp_send_json( $json ); |
|
| 3768 | + wp_send_json($json); |
|
| 3769 | 3769 | gd_die(); |
| 3770 | 3770 | } else {
|
| 3771 | - if ( !$posts_count > 0 ) {
|
|
| 3772 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3771 | + if (!$posts_count > 0) {
|
|
| 3772 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3773 | 3773 | } else {
|
| 3774 | 3774 | $total_posts = $posts_count; |
| 3775 | 3775 | if ($chunk_per_page > $total_posts) {
|
| 3776 | 3776 | $chunk_per_page = $total_posts; |
| 3777 | 3777 | } |
| 3778 | - $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3778 | + $chunk_total_pages = ceil($total_posts / $chunk_per_page); |
|
| 3779 | 3779 | |
| 3780 | 3780 | $j = $chunk_page_no; |
| 3781 | - $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3781 | + $chunk_save_posts = geodir_imex_get_posts($post_type, $chunk_per_page, $j); |
|
| 3782 | 3782 | |
| 3783 | 3783 | $per_page = 500; |
| 3784 | 3784 | if ($per_page > $chunk_per_page) {
|
| 3785 | 3785 | $per_page = $chunk_per_page; |
| 3786 | 3786 | } |
| 3787 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3787 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3788 | 3788 | |
| 3789 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3790 | - $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3789 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3790 | + $save_posts = array_slice($chunk_save_posts, ($i * $per_page), $per_page); |
|
| 3791 | 3791 | |
| 3792 | 3792 | $clear = $i == 0 ? true : false; |
| 3793 | - geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3793 | + geodir_save_csv_data($file_path_temp, $save_posts, $clear); |
|
| 3794 | 3794 | } |
| 3795 | 3795 | |
| 3796 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3797 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3798 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3799 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3800 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3796 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3797 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3798 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3799 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3800 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3801 | 3801 | |
| 3802 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3803 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3802 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3803 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3804 | 3804 | } |
| 3805 | 3805 | |
| 3806 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3806 | + if (!empty($chunk_file_paths)) {
|
|
| 3807 | 3807 | $json['total'] = $posts_count; |
| 3808 | 3808 | $json['files'] = $chunk_file_paths; |
| 3809 | 3809 | } else {
|
@@ -3811,7 +3811,7 @@ discard block |
||
| 3811 | 3811 | $json['total'] = $posts_count; |
| 3812 | 3812 | $json['files'] = array(); |
| 3813 | 3813 | } else {
|
| 3814 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3814 | + $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3815 | 3815 | } |
| 3816 | 3816 | } |
| 3817 | 3817 | } |
@@ -3820,7 +3820,7 @@ discard block |
||
| 3820 | 3820 | $sitepress->switch_lang($active_lang, true); |
| 3821 | 3821 | } |
| 3822 | 3822 | // WPML |
| 3823 | - wp_send_json( $json ); |
|
| 3823 | + wp_send_json($json); |
|
| 3824 | 3824 | } |
| 3825 | 3825 | } |
| 3826 | 3826 | break; |
@@ -3834,20 +3834,20 @@ discard block |
||
| 3834 | 3834 | $sitepress->switch_lang('all', true);
|
| 3835 | 3835 | } |
| 3836 | 3836 | // WPML |
| 3837 | - $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3837 | + $file_name = $post_type.'category_'.date('dmyHi');
|
|
| 3838 | 3838 | |
| 3839 | - $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3840 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3841 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3842 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3843 | - $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3839 | + $terms_count = geodir_get_terms_count($post_type); |
|
| 3840 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3841 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3842 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3843 | + $file_path_temp = $csv_file_dir.'/'.$post_type.'category_'.$nonce.'.csv'; |
|
| 3844 | 3844 | |
| 3845 | 3845 | $chunk_file_paths = array(); |
| 3846 | 3846 | |
| 3847 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3848 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3849 | - $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3850 | - $percentage = min( $percentage, 100 ); |
|
| 3847 | + if (isset($_REQUEST['_st'])) {
|
|
| 3848 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3849 | + $percentage = count($terms_count) > 0 && $line_count > 0 ? ceil($line_count / $terms_count) * 100 : 0; |
|
| 3850 | + $percentage = min($percentage, 100); |
|
| 3851 | 3851 | |
| 3852 | 3852 | $json['percentage'] = $percentage; |
| 3853 | 3853 | // WPML |
@@ -3855,48 +3855,48 @@ discard block |
||
| 3855 | 3855 | $sitepress->switch_lang($active_lang, true); |
| 3856 | 3856 | } |
| 3857 | 3857 | // WPML |
| 3858 | - wp_send_json( $json ); |
|
| 3858 | + wp_send_json($json); |
|
| 3859 | 3859 | } else {
|
| 3860 | - if ( !$terms_count > 0 ) {
|
|
| 3861 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3860 | + if (!$terms_count > 0) {
|
|
| 3861 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3862 | 3862 | } else {
|
| 3863 | 3863 | $total_terms = $terms_count; |
| 3864 | 3864 | if ($chunk_per_page > $terms_count) {
|
| 3865 | 3865 | $chunk_per_page = $terms_count; |
| 3866 | 3866 | } |
| 3867 | - $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3867 | + $chunk_total_pages = ceil($total_terms / $chunk_per_page); |
|
| 3868 | 3868 | |
| 3869 | 3869 | $j = $chunk_page_no; |
| 3870 | - $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3870 | + $chunk_save_terms = geodir_imex_get_terms($post_type, $chunk_per_page, $j); |
|
| 3871 | 3871 | |
| 3872 | 3872 | $per_page = 500; |
| 3873 | 3873 | if ($per_page > $chunk_per_page) {
|
| 3874 | 3874 | $per_page = $chunk_per_page; |
| 3875 | 3875 | } |
| 3876 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3876 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3877 | 3877 | |
| 3878 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3879 | - $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3878 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3879 | + $save_terms = array_slice($chunk_save_terms, ($i * $per_page), $per_page); |
|
| 3880 | 3880 | |
| 3881 | 3881 | $clear = $i == 0 ? true : false; |
| 3882 | - geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3882 | + geodir_save_csv_data($file_path_temp, $save_terms, $clear); |
|
| 3883 | 3883 | } |
| 3884 | 3884 | |
| 3885 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3886 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3887 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3888 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3889 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3885 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3886 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3887 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3888 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3889 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3890 | 3890 | |
| 3891 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3892 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3891 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3892 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3893 | 3893 | } |
| 3894 | 3894 | |
| 3895 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3895 | + if (!empty($chunk_file_paths)) {
|
|
| 3896 | 3896 | $json['total'] = $terms_count; |
| 3897 | 3897 | $json['files'] = $chunk_file_paths; |
| 3898 | 3898 | } else {
|
| 3899 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3899 | + $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3900 | 3900 | } |
| 3901 | 3901 | } |
| 3902 | 3902 | // WPML |
@@ -3904,127 +3904,127 @@ discard block |
||
| 3904 | 3904 | $sitepress->switch_lang($active_lang, true); |
| 3905 | 3905 | } |
| 3906 | 3906 | // WPML |
| 3907 | - wp_send_json( $json ); |
|
| 3907 | + wp_send_json($json); |
|
| 3908 | 3908 | } |
| 3909 | 3909 | } |
| 3910 | 3910 | break; |
| 3911 | 3911 | case 'export_locations': {
|
| 3912 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3913 | - $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3914 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3915 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3916 | - $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3912 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3913 | + $file_name = 'gd_locations_'.date('dmyHi');
|
|
| 3914 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3915 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3916 | + $file_path_temp = $csv_file_dir.'/gd_locations_'.$nonce.'.csv'; |
|
| 3917 | 3917 | |
| 3918 | - $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3918 | + $items_count = (int) geodir_location_imex_count_locations(); |
|
| 3919 | 3919 | |
| 3920 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3921 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3922 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3923 | - $percentage = min( $percentage, 100 ); |
|
| 3920 | + if (isset($_REQUEST['_st'])) {
|
|
| 3921 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3922 | + $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0; |
|
| 3923 | + $percentage = min($percentage, 100); |
|
| 3924 | 3924 | |
| 3925 | 3925 | $json['percentage'] = $percentage; |
| 3926 | - wp_send_json( $json ); |
|
| 3926 | + wp_send_json($json); |
|
| 3927 | 3927 | } else {
|
| 3928 | 3928 | $chunk_file_paths = array(); |
| 3929 | 3929 | |
| 3930 | - if ( !$items_count > 0 ) {
|
|
| 3931 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3930 | + if (!$items_count > 0) {
|
|
| 3931 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3932 | 3932 | } else {
|
| 3933 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3934 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3933 | + $chunk_per_page = min($chunk_per_page, $items_count); |
|
| 3934 | + $chunk_total_pages = ceil($items_count / $chunk_per_page); |
|
| 3935 | 3935 | |
| 3936 | 3936 | $j = $chunk_page_no; |
| 3937 | - $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3937 | + $chunk_save_items = geodir_location_imex_locations_data($chunk_per_page, $j); |
|
| 3938 | 3938 | |
| 3939 | 3939 | $per_page = 500; |
| 3940 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3941 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3940 | + $per_page = min($per_page, $chunk_per_page); |
|
| 3941 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3942 | 3942 | |
| 3943 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3944 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3943 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3944 | + $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page); |
|
| 3945 | 3945 | |
| 3946 | 3946 | $clear = $i == 0 ? true : false; |
| 3947 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3947 | + geodir_save_csv_data($file_path_temp, $save_items, $clear); |
|
| 3948 | 3948 | } |
| 3949 | 3949 | |
| 3950 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3951 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3952 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3953 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3954 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3950 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3951 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3952 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3953 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3954 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3955 | 3955 | |
| 3956 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3957 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3956 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3957 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3958 | 3958 | } |
| 3959 | 3959 | |
| 3960 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3960 | + if (!empty($chunk_file_paths)) {
|
|
| 3961 | 3961 | $json['total'] = $items_count; |
| 3962 | 3962 | $json['files'] = $chunk_file_paths; |
| 3963 | 3963 | } else {
|
| 3964 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3964 | + $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
|
|
| 3965 | 3965 | } |
| 3966 | 3966 | } |
| 3967 | - wp_send_json( $json ); |
|
| 3967 | + wp_send_json($json); |
|
| 3968 | 3968 | } |
| 3969 | 3969 | } |
| 3970 | 3970 | break; |
| 3971 | 3971 | case 'export_hoods': {
|
| 3972 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3973 | - $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3974 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3975 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3976 | - $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3972 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3973 | + $file_name = 'gd_neighbourhoods_'.date('dmyHi');
|
|
| 3974 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3975 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3976 | + $file_path_temp = $csv_file_dir.'/gd_neighbourhoods_'.$nonce.'.csv'; |
|
| 3977 | 3977 | |
| 3978 | - $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3978 | + $items_count = (int) geodir_location_imex_count_neighbourhoods(); |
|
| 3979 | 3979 | |
| 3980 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3981 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3982 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3983 | - $percentage = min( $percentage, 100 ); |
|
| 3980 | + if (isset($_REQUEST['_st'])) {
|
|
| 3981 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3982 | + $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0; |
|
| 3983 | + $percentage = min($percentage, 100); |
|
| 3984 | 3984 | |
| 3985 | 3985 | $json['percentage'] = $percentage; |
| 3986 | - wp_send_json( $json ); |
|
| 3986 | + wp_send_json($json); |
|
| 3987 | 3987 | } else {
|
| 3988 | 3988 | $chunk_file_paths = array(); |
| 3989 | 3989 | |
| 3990 | - if ( !$items_count > 0 ) {
|
|
| 3991 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3990 | + if (!$items_count > 0) {
|
|
| 3991 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3992 | 3992 | } else {
|
| 3993 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3994 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3993 | + $chunk_per_page = min($chunk_per_page, $items_count); |
|
| 3994 | + $chunk_total_pages = ceil($items_count / $chunk_per_page); |
|
| 3995 | 3995 | |
| 3996 | 3996 | $j = $chunk_page_no; |
| 3997 | - $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3997 | + $chunk_save_items = geodir_location_imex_neighbourhoods_data($chunk_per_page, $j); |
|
| 3998 | 3998 | |
| 3999 | 3999 | $per_page = 500; |
| 4000 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 4001 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 4000 | + $per_page = min($per_page, $chunk_per_page); |
|
| 4001 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 4002 | 4002 | |
| 4003 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 4004 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 4003 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 4004 | + $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page); |
|
| 4005 | 4005 | |
| 4006 | 4006 | $clear = $i == 0 ? true : false; |
| 4007 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 4007 | + geodir_save_csv_data($file_path_temp, $save_items, $clear); |
|
| 4008 | 4008 | } |
| 4009 | 4009 | |
| 4010 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 4011 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 4012 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 4013 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 4014 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 4010 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 4011 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 4012 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 4013 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 4014 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 4015 | 4015 | |
| 4016 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 4017 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 4016 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 4017 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 4018 | 4018 | } |
| 4019 | 4019 | |
| 4020 | - if ( !empty($chunk_file_paths) ) {
|
|
| 4020 | + if (!empty($chunk_file_paths)) {
|
|
| 4021 | 4021 | $json['total'] = $items_count; |
| 4022 | 4022 | $json['files'] = $chunk_file_paths; |
| 4023 | 4023 | } else {
|
| 4024 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 4024 | + $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
|
|
| 4025 | 4025 | } |
| 4026 | 4026 | } |
| 4027 | - wp_send_json( $json ); |
|
| 4027 | + wp_send_json($json); |
|
| 4028 | 4028 | } |
| 4029 | 4029 | } |
| 4030 | 4030 | break; |
@@ -4041,25 +4041,25 @@ discard block |
||
| 4041 | 4041 | } |
| 4042 | 4042 | // WPML |
| 4043 | 4043 | |
| 4044 | - ini_set( 'auto_detect_line_endings', true ); |
|
| 4044 | + ini_set('auto_detect_line_endings', true);
|
|
| 4045 | 4045 | |
| 4046 | 4046 | $uploads = wp_upload_dir(); |
| 4047 | 4047 | $uploads_dir = $uploads['path']; |
| 4048 | 4048 | $uploads_subdir = $uploads['subdir']; |
| 4049 | 4049 | |
| 4050 | - $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 4051 | - $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 4050 | + $csv_file = isset($_POST['_file']) ? $_POST['_file'] : NULL; |
|
| 4051 | + $import_choice = isset($_REQUEST['_ch']) ? $_REQUEST['_ch'] : 'skip'; |
|
| 4052 | 4052 | |
| 4053 | - $csv_file_arr = explode( '/', $csv_file ); |
|
| 4054 | - $csv_filename = end( $csv_file_arr ); |
|
| 4055 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 4053 | + $csv_file_arr = explode('/', $csv_file);
|
|
| 4054 | + $csv_filename = end($csv_file_arr); |
|
| 4055 | + $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$csv_filename; |
|
| 4056 | 4056 | |
| 4057 | 4057 | $json['file'] = $csv_file; |
| 4058 | - $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 4058 | + $json['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory');
|
|
| 4059 | 4059 | $file = array(); |
| 4060 | 4060 | |
| 4061 | - if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 4062 | - $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 4061 | + if ($csv_file && $wp_filesystem->is_file($target_path) && $wp_filesystem->exists($target_path)) {
|
|
| 4062 | + $wp_filetype = wp_check_filetype_and_ext($target_path, $csv_filename); |
|
| 4063 | 4063 | |
| 4064 | 4064 | if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
| 4065 | 4065 | $json['error'] = NULL; |
@@ -4067,9 +4067,9 @@ discard block |
||
| 4067 | 4067 | |
| 4068 | 4068 | $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
| 4069 | 4069 | setlocale(LC_ALL, 'en_US.UTF-8'); |
| 4070 | - if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 4071 | - while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 4072 | - if ( !empty( $data ) ) {
|
|
| 4070 | + if (($handle = fopen($target_path, "r")) !== FALSE) {
|
|
| 4071 | + while (($data = fgetcsv($handle, 100000, ",")) !== FALSE) {
|
|
| 4072 | + if (!empty($data)) {
|
|
| 4073 | 4073 | $file[] = $data; |
| 4074 | 4074 | } |
| 4075 | 4075 | } |
@@ -4083,19 +4083,19 @@ discard block |
||
| 4083 | 4083 | $json['error'] = __('No data found in csv file.', 'geodirectory');
|
| 4084 | 4084 | } |
| 4085 | 4085 | } else {
|
| 4086 | - wp_send_json( $json ); |
|
| 4086 | + wp_send_json($json); |
|
| 4087 | 4087 | } |
| 4088 | 4088 | } else {
|
| 4089 | - wp_send_json( $json ); |
|
| 4089 | + wp_send_json($json); |
|
| 4090 | 4090 | } |
| 4091 | 4091 | |
| 4092 | - if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 4093 | - wp_send_json( $json ); |
|
| 4092 | + if ($task == 'prepare_import' || !empty($json['error'])) {
|
|
| 4093 | + wp_send_json($json); |
|
| 4094 | 4094 | } |
| 4095 | 4095 | |
| 4096 | 4096 | $total = $json['rows']; |
| 4097 | - $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 4098 | - $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 4097 | + $limit = isset($_POST['limit']) ? (int) $_POST['limit'] : 1; |
|
| 4098 | + $processed = isset($_POST['processed']) ? (int) $_POST['processed'] : 0; |
|
| 4099 | 4099 | |
| 4100 | 4100 | $count = $limit; |
| 4101 | 4101 | |
@@ -4120,13 +4120,13 @@ discard block |
||
| 4120 | 4120 | |
| 4121 | 4121 | $post_types = geodir_get_posttypes(); |
| 4122 | 4122 | |
| 4123 | - if ( $task == 'import_cat' ) {
|
|
| 4123 | + if ($task == 'import_cat') {
|
|
| 4124 | 4124 | if (!empty($file)) {
|
| 4125 | 4125 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 4126 | 4126 | |
| 4127 | 4127 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4128 | 4128 | $json['error'] = CSV_INVAILD_FILE; |
| 4129 | - wp_send_json( $json ); |
|
| 4129 | + wp_send_json($json); |
|
| 4130 | 4130 | exit; |
| 4131 | 4131 | } |
| 4132 | 4132 | |
@@ -4137,7 +4137,7 @@ discard block |
||
| 4137 | 4137 | |
| 4138 | 4138 | if (isset($file[$index])) {
|
| 4139 | 4139 | $row = $file[$index]; |
| 4140 | - $row = array_map( 'trim', $row ); |
|
| 4140 | + $row = array_map('trim', $row);
|
|
| 4141 | 4141 | //$row = array_map( 'utf8_encode', $row ); |
| 4142 | 4142 | |
| 4143 | 4143 | $cat_id = ''; |
@@ -4154,42 +4154,42 @@ discard block |
||
| 4154 | 4154 | $cat_id_original = ''; |
| 4155 | 4155 | |
| 4156 | 4156 | $c = 0; |
| 4157 | - foreach ($columns as $column ) {
|
|
| 4158 | - if ( $column == 'cat_id' ) {
|
|
| 4159 | - $cat_id = (int)$row[$c]; |
|
| 4160 | - } else if ( $column == 'cat_name' ) {
|
|
| 4157 | + foreach ($columns as $column) {
|
|
| 4158 | + if ($column == 'cat_id') {
|
|
| 4159 | + $cat_id = (int) $row[$c]; |
|
| 4160 | + } else if ($column == 'cat_name') {
|
|
| 4161 | 4161 | $cat_name = $row[$c]; |
| 4162 | - } else if ( $column == 'cat_slug' ) {
|
|
| 4162 | + } else if ($column == 'cat_slug') {
|
|
| 4163 | 4163 | $cat_slug = $row[$c]; |
| 4164 | - } else if ( $column == 'cat_posttype' ) {
|
|
| 4164 | + } else if ($column == 'cat_posttype') {
|
|
| 4165 | 4165 | $cat_posttype = $row[$c]; |
| 4166 | - } else if ( $column == 'cat_parent' ) {
|
|
| 4166 | + } else if ($column == 'cat_parent') {
|
|
| 4167 | 4167 | $cat_parent = trim($row[$c]); |
| 4168 | - } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 4168 | + } else if ($column == 'cat_schema' && $row[$c] != '') {
|
|
| 4169 | 4169 | $cat_schema = $row[$c]; |
| 4170 | - } else if ( $column == 'cat_description' ) {
|
|
| 4170 | + } else if ($column == 'cat_description') {
|
|
| 4171 | 4171 | $cat_description = $row[$c]; |
| 4172 | - } else if ( $column == 'cat_top_description' ) {
|
|
| 4172 | + } else if ($column == 'cat_top_description') {
|
|
| 4173 | 4173 | $cat_top_description = $row[$c]; |
| 4174 | - } else if ( $column == 'cat_image' ) {
|
|
| 4174 | + } else if ($column == 'cat_image') {
|
|
| 4175 | 4175 | $cat_image = $row[$c]; |
| 4176 | - } else if ( $column == 'cat_icon' ) {
|
|
| 4176 | + } else if ($column == 'cat_icon') {
|
|
| 4177 | 4177 | $cat_icon = $row[$c]; |
| 4178 | 4178 | } |
| 4179 | 4179 | // WPML |
| 4180 | - if ( $is_wpml ) {
|
|
| 4181 | - if ( $column == 'cat_language' ) {
|
|
| 4182 | - $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 4183 | - } else if ( $column == 'cat_id_original' ) {
|
|
| 4184 | - $cat_id_original = (int)$row[$c]; |
|
| 4180 | + if ($is_wpml) {
|
|
| 4181 | + if ($column == 'cat_language') {
|
|
| 4182 | + $cat_language = geodir_strtolower(trim($row[$c])); |
|
| 4183 | + } else if ($column == 'cat_id_original') {
|
|
| 4184 | + $cat_id_original = (int) $row[$c]; |
|
| 4185 | 4185 | } |
| 4186 | 4186 | } |
| 4187 | 4187 | // WPML |
| 4188 | 4188 | $c++; |
| 4189 | 4189 | } |
| 4190 | 4190 | |
| 4191 | - if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 4192 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4191 | + if ($cat_name == '' || !in_array($cat_posttype, $post_types)) {
|
|
| 4192 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
|
|
| 4193 | 4193 | |
| 4194 | 4194 | $invalid++; |
| 4195 | 4195 | continue; |
@@ -4207,24 +4207,24 @@ discard block |
||
| 4207 | 4207 | $term_data['description'] = $cat_description; |
| 4208 | 4208 | $term_data['cat_schema'] = $cat_schema; |
| 4209 | 4209 | $term_data['top_description'] = $cat_top_description; |
| 4210 | - $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 4211 | - $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 4210 | + $term_data['image'] = $cat_image != '' ? basename($cat_image) : ''; |
|
| 4211 | + $term_data['icon'] = $cat_icon != '' ? basename($cat_icon) : ''; |
|
| 4212 | 4212 | |
| 4213 | 4213 | //$term_data = array_map( 'utf8_encode', $term_data ); |
| 4214 | 4214 | |
| 4215 | - $taxonomy = $cat_posttype . 'category'; |
|
| 4215 | + $taxonomy = $cat_posttype.'category'; |
|
| 4216 | 4216 | |
| 4217 | 4217 | $term_data['taxonomy'] = $taxonomy; |
| 4218 | 4218 | |
| 4219 | 4219 | $term_parent_id = 0; |
| 4220 | - if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 4220 | + if ($cat_parent != "" || (int) $cat_parent > 0) {
|
|
| 4221 | 4221 | $term_parent = ''; |
| 4222 | 4222 | |
| 4223 | - if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 4223 | + if ($term_parent = get_term_by('name', $cat_parent, $taxonomy)) {
|
|
| 4224 | 4224 | // |
| 4225 | - } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 4225 | + } else if ($term_parent = get_term_by('slug', $cat_parent, $taxonomy)) {
|
|
| 4226 | 4226 | // |
| 4227 | - } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 4227 | + } else if ($term_parent = get_term_by('id', $cat_parent, $taxonomy)) {
|
|
| 4228 | 4228 | // |
| 4229 | 4229 | } else {
|
| 4230 | 4230 | $term_parent_data = array(); |
@@ -4232,104 +4232,104 @@ discard block |
||
| 4232 | 4232 | //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
| 4233 | 4233 | $term_parent_data['taxonomy'] = $taxonomy; |
| 4234 | 4234 | |
| 4235 | - $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 4235 | + $term_parent_id = (int) geodir_imex_insert_term($taxonomy, $term_parent_data); |
|
| 4236 | 4236 | } |
| 4237 | 4237 | |
| 4238 | - if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 4239 | - $term_parent_id = (int)$term_parent->term_id; |
|
| 4238 | + if (!empty($term_parent) && !is_wp_error($term_parent)) {
|
|
| 4239 | + $term_parent_id = (int) $term_parent->term_id; |
|
| 4240 | 4240 | } |
| 4241 | 4241 | } |
| 4242 | - $term_data['parent'] = (int)$term_parent_id; |
|
| 4242 | + $term_data['parent'] = (int) $term_parent_id; |
|
| 4243 | 4243 | |
| 4244 | 4244 | $term_id = NULL; |
| 4245 | - if ( $import_choice == 'update' ) {
|
|
| 4246 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 4245 | + if ($import_choice == 'update') {
|
|
| 4246 | + if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
|
|
| 4247 | 4247 | $term_data['term_id'] = $term['term_id']; |
| 4248 | 4248 | |
| 4249 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 4249 | + if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
|
|
| 4250 | 4250 | $updated++; |
| 4251 | 4251 | } else {
|
| 4252 | 4252 | $invalid++; |
| 4253 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 4253 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 4254 | 4254 | } |
| 4255 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 4255 | + } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 4256 | 4256 | $term_data['term_id'] = $term['term_id']; |
| 4257 | 4257 | |
| 4258 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 4258 | + if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
|
|
| 4259 | 4259 | $updated++; |
| 4260 | 4260 | } else {
|
| 4261 | 4261 | $invalid++; |
| 4262 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 4262 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 4263 | 4263 | } |
| 4264 | 4264 | } else {
|
| 4265 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 4265 | + if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
|
|
| 4266 | 4266 | $created++; |
| 4267 | 4267 | } else {
|
| 4268 | 4268 | $invalid++; |
| 4269 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 4269 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 4270 | 4270 | } |
| 4271 | 4271 | } |
| 4272 | - } else if ( $import_choice == 'skip' ) {
|
|
| 4273 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 4272 | + } else if ($import_choice == 'skip') {
|
|
| 4273 | + if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
|
|
| 4274 | 4274 | $skipped++; |
| 4275 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 4275 | + } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 4276 | 4276 | $skipped++; |
| 4277 | 4277 | } else {
|
| 4278 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 4278 | + if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
|
|
| 4279 | 4279 | $created++; |
| 4280 | 4280 | } else {
|
| 4281 | 4281 | $invalid++; |
| 4282 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 4282 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 4283 | 4283 | } |
| 4284 | 4284 | } |
| 4285 | 4285 | } else {
|
| 4286 | 4286 | $invalid++; |
| 4287 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 4287 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 4288 | 4288 | } |
| 4289 | 4289 | |
| 4290 | - if ( $term_id ) {
|
|
| 4290 | + if ($term_id) {
|
|
| 4291 | 4291 | // WPML |
| 4292 | 4292 | if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
| 4293 | - $wpml_element_type = 'tax_' . $taxonomy; |
|
| 4294 | - $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 4293 | + $wpml_element_type = 'tax_'.$taxonomy; |
|
| 4294 | + $source_language = geodir_get_language_for_element($cat_id_original, $wpml_element_type); |
|
| 4295 | 4295 | $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
| 4296 | 4296 | |
| 4297 | - $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 4297 | + $trid = $sitepress->get_element_trid($cat_id_original, $wpml_element_type); |
|
| 4298 | 4298 | |
| 4299 | - $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 4299 | + $sitepress->set_element_language_details($term_id, $wpml_element_type, $trid, $cat_language, $source_language); |
|
| 4300 | 4300 | } |
| 4301 | 4301 | // WPML |
| 4302 | 4302 | |
| 4303 | - if ( isset( $term_data['top_description'] ) ) {
|
|
| 4304 | - update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 4303 | + if (isset($term_data['top_description'])) {
|
|
| 4304 | + update_tax_meta($term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype); |
|
| 4305 | 4305 | } |
| 4306 | 4306 | |
| 4307 | - if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 4308 | - update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 4307 | + if (isset($term_data['cat_schema'])) {
|
|
| 4308 | + update_tax_meta($term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype); |
|
| 4309 | 4309 | } |
| 4310 | 4310 | |
| 4311 | 4311 | $attachment = false; |
| 4312 | - if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 4313 | - $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 4314 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 4312 | + if (isset($term_data['image']) && $term_data['image'] != '') {
|
|
| 4313 | + $cat_image = geodir_get_default_catimage($term_id, $cat_posttype); |
|
| 4314 | + $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; |
|
| 4315 | 4315 | |
| 4316 | - if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 4316 | + if (basename($cat_image) != $term_data['image']) {
|
|
| 4317 | 4317 | $attachment = true; |
| 4318 | - update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 4318 | + update_tax_meta($term_id, 'ct_cat_default_img', array('id' => 'image', 'src' => $uploads['url'].'/'.$term_data['image']), $cat_posttype);
|
|
| 4319 | 4319 | } |
| 4320 | 4320 | } |
| 4321 | 4321 | |
| 4322 | - if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 4323 | - $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 4324 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 4322 | + if (isset($term_data['icon']) && $term_data['icon'] != '') {
|
|
| 4323 | + $cat_icon = get_tax_meta($term_id, 'ct_cat_icon', false, $cat_posttype); |
|
| 4324 | + $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : ''; |
|
| 4325 | 4325 | |
| 4326 | - if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 4326 | + if (basename($cat_icon) != $term_data['icon']) {
|
|
| 4327 | 4327 | $attachment = true; |
| 4328 | - update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 4328 | + update_tax_meta($term_id, 'ct_cat_icon', array('id' => 'icon', 'src' => $uploads['url'].'/'.$term_data['icon']), $cat_posttype);
|
|
| 4329 | 4329 | } |
| 4330 | 4330 | } |
| 4331 | 4331 | |
| 4332 | - if ( $attachment ) {
|
|
| 4332 | + if ($attachment) {
|
|
| 4333 | 4333 | $images++; |
| 4334 | 4334 | } |
| 4335 | 4335 | } |
@@ -4351,34 +4351,34 @@ discard block |
||
| 4351 | 4351 | $json['invalid'] = $invalid; |
| 4352 | 4352 | $json['images'] = $images; |
| 4353 | 4353 | |
| 4354 | - wp_send_json( $json ); |
|
| 4354 | + wp_send_json($json); |
|
| 4355 | 4355 | exit; |
| 4356 | - } else if ( $task == 'import_post' ) {
|
|
| 4356 | + } else if ($task == 'import_post') {
|
|
| 4357 | 4357 | //run some stuff to make the import quicker |
| 4358 | - wp_defer_term_counting( true ); |
|
| 4359 | - wp_defer_comment_counting( true ); |
|
| 4360 | - $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4358 | + wp_defer_term_counting(true); |
|
| 4359 | + wp_defer_comment_counting(true); |
|
| 4360 | + $wpdb->query('SET autocommit = 0;');
|
|
| 4361 | 4361 | |
| 4362 | 4362 | //remove_all_actions('publish_post');
|
| 4363 | 4363 | //remove_all_actions('transition_post_status');
|
| 4364 | 4364 | //remove_all_actions('publish_future_post');
|
| 4365 | 4365 | |
| 4366 | 4366 | if (!empty($file)) {
|
| 4367 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4367 | + $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4368 | 4368 | $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
| 4369 | 4369 | $default_status = 'publish'; |
| 4370 | - $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4370 | + $current_date = date_i18n('Y-m-d', time());
|
|
| 4371 | 4371 | |
| 4372 | 4372 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 4373 | 4373 | |
| 4374 | 4374 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4375 | 4375 | $json['error'] = CSV_INVAILD_FILE; |
| 4376 | - wp_send_json( $json ); |
|
| 4376 | + wp_send_json($json); |
|
| 4377 | 4377 | exit; |
| 4378 | 4378 | } |
| 4379 | 4379 | |
| 4380 | 4380 | $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
| 4381 | - $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4381 | + $wp_chars_error = __('(check & remove if any invalid characters used in data)', 'geodirectory');
|
|
| 4382 | 4382 | $processed_actual = 0; |
| 4383 | 4383 | for ($i = 1; $i <= $limit; $i++) {
|
| 4384 | 4384 | $index = $processed + $i; |
@@ -4387,9 +4387,9 @@ discard block |
||
| 4387 | 4387 | if (isset($file[$index])) {
|
| 4388 | 4388 | $processed_actual++; |
| 4389 | 4389 | $row = $file[$index]; |
| 4390 | - $row = array_map( 'trim', $row ); |
|
| 4390 | + $row = array_map('trim', $row);
|
|
| 4391 | 4391 | //$row = array_map( 'utf8_encode', $row ); |
| 4392 | - $row = array_map( 'addslashes_gpc', $row ); |
|
| 4392 | + $row = array_map('addslashes_gpc', $row);
|
|
| 4393 | 4393 | |
| 4394 | 4394 | $post_id = ''; |
| 4395 | 4395 | $post_title = ''; |
@@ -4426,78 +4426,78 @@ discard block |
||
| 4426 | 4426 | $original_post_id = ''; |
| 4427 | 4427 | |
| 4428 | 4428 | $c = 0; |
| 4429 | - foreach ($columns as $column ) {
|
|
| 4429 | + foreach ($columns as $column) {
|
|
| 4430 | 4430 | $gd_post[$column] = $row[$c]; |
| 4431 | 4431 | |
| 4432 | - if ( $column == 'post_id' ) {
|
|
| 4432 | + if ($column == 'post_id') {
|
|
| 4433 | 4433 | $post_id = $row[$c]; |
| 4434 | - } else if ( $column == 'post_title' ) {
|
|
| 4434 | + } else if ($column == 'post_title') {
|
|
| 4435 | 4435 | $post_title = sanitize_text_field($row[$c]); |
| 4436 | - } else if ( $column == 'post_author' ) {
|
|
| 4436 | + } else if ($column == 'post_author') {
|
|
| 4437 | 4437 | $post_author = $row[$c]; |
| 4438 | - } else if ( $column == 'post_content' ) {
|
|
| 4438 | + } else if ($column == 'post_content') {
|
|
| 4439 | 4439 | $post_content = $row[$c]; |
| 4440 | - } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4441 | - $post_category_arr = explode( ',', $row[$c] ); |
|
| 4442 | - } else if ( $column == 'default_category' ) {
|
|
| 4440 | + } else if ($column == 'post_category' && $row[$c] != '') {
|
|
| 4441 | + $post_category_arr = explode(',', $row[$c]);
|
|
| 4442 | + } else if ($column == 'default_category') {
|
|
| 4443 | 4443 | $default_category = wp_kses_normalize_entities($row[$c]); |
| 4444 | - } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4445 | - $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4446 | - } else if ( $column == 'post_type' ) {
|
|
| 4444 | + } else if ($column == 'post_tags' && $row[$c] != '') {
|
|
| 4445 | + $post_tags = explode(',', sanitize_text_field($row[$c]));
|
|
| 4446 | + } else if ($column == 'post_type') {
|
|
| 4447 | 4447 | $post_type = $row[$c]; |
| 4448 | - } else if ( $column == 'post_status' ) {
|
|
| 4449 | - $post_status = sanitize_key( $row[$c] ); |
|
| 4450 | - } else if ( $column == 'is_featured' ) {
|
|
| 4451 | - $is_featured = (int)$row[$c]; |
|
| 4452 | - } else if ( $column == 'geodir_video' ) {
|
|
| 4448 | + } else if ($column == 'post_status') {
|
|
| 4449 | + $post_status = sanitize_key($row[$c]); |
|
| 4450 | + } else if ($column == 'is_featured') {
|
|
| 4451 | + $is_featured = (int) $row[$c]; |
|
| 4452 | + } else if ($column == 'geodir_video') {
|
|
| 4453 | 4453 | $geodir_video = $row[$c]; |
| 4454 | - } else if ( $column == 'post_address' ) {
|
|
| 4454 | + } else if ($column == 'post_address') {
|
|
| 4455 | 4455 | $post_address = sanitize_text_field($row[$c]); |
| 4456 | - } else if ( $column == 'post_city' ) {
|
|
| 4456 | + } else if ($column == 'post_city') {
|
|
| 4457 | 4457 | $post_city = sanitize_text_field($row[$c]); |
| 4458 | - } else if ( $column == 'post_region' ) {
|
|
| 4458 | + } else if ($column == 'post_region') {
|
|
| 4459 | 4459 | $post_region = sanitize_text_field($row[$c]); |
| 4460 | - } else if ( $column == 'post_country' ) {
|
|
| 4460 | + } else if ($column == 'post_country') {
|
|
| 4461 | 4461 | $post_country = sanitize_text_field($row[$c]); |
| 4462 | - } else if ( $column == 'post_zip' ) {
|
|
| 4462 | + } else if ($column == 'post_zip') {
|
|
| 4463 | 4463 | $post_zip = sanitize_text_field($row[$c]); |
| 4464 | - } else if ( $column == 'post_latitude' ) {
|
|
| 4464 | + } else if ($column == 'post_latitude') {
|
|
| 4465 | 4465 | $post_latitude = sanitize_text_field($row[$c]); |
| 4466 | - } else if ( $column == 'post_longitude' ) {
|
|
| 4466 | + } else if ($column == 'post_longitude') {
|
|
| 4467 | 4467 | $post_longitude = sanitize_text_field($row[$c]); |
| 4468 | - } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4468 | + } else if ($column == 'post_neighbourhood') {
|
|
| 4469 | 4469 | $post_neighbourhood = sanitize_text_field($row[$c]); |
| 4470 | 4470 | unset($gd_post[$column]); |
| 4471 | - } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4471 | + } else if ($column == 'neighbourhood_latitude') {
|
|
| 4472 | 4472 | $neighbourhood_latitude = sanitize_text_field($row[$c]); |
| 4473 | - } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4473 | + } else if ($column == 'neighbourhood_longitude') {
|
|
| 4474 | 4474 | $neighbourhood_longitude = sanitize_text_field($row[$c]); |
| 4475 | - } else if ( $column == 'geodir_timing' ) {
|
|
| 4475 | + } else if ($column == 'geodir_timing') {
|
|
| 4476 | 4476 | $geodir_timing = sanitize_text_field($row[$c]); |
| 4477 | - } else if ( $column == 'geodir_contact' ) {
|
|
| 4477 | + } else if ($column == 'geodir_contact') {
|
|
| 4478 | 4478 | $geodir_contact = sanitize_text_field($row[$c]); |
| 4479 | - } else if ( $column == 'geodir_email' ) {
|
|
| 4479 | + } else if ($column == 'geodir_email') {
|
|
| 4480 | 4480 | $geodir_email = sanitize_email($row[$c]); |
| 4481 | - } else if ( $column == 'geodir_website' ) {
|
|
| 4481 | + } else if ($column == 'geodir_website') {
|
|
| 4482 | 4482 | $geodir_website = sanitize_text_field($row[$c]); |
| 4483 | - } else if ( $column == 'geodir_twitter' ) {
|
|
| 4483 | + } else if ($column == 'geodir_twitter') {
|
|
| 4484 | 4484 | $geodir_twitter = sanitize_text_field($row[$c]); |
| 4485 | - } else if ( $column == 'geodir_facebook' ) {
|
|
| 4485 | + } else if ($column == 'geodir_facebook') {
|
|
| 4486 | 4486 | $geodir_facebook = sanitize_text_field($row[$c]); |
| 4487 | - } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4487 | + } else if ($column == 'IMAGE' && !empty($row[$c]) && $row[$c] != '') {
|
|
| 4488 | 4488 | $post_images[] = $row[$c]; |
| 4489 | - } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4490 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4491 | - } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4489 | + } else if ($column == 'alive_days' && (int) $row[$c] > 0) {
|
|
| 4490 | + $expire_date = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $row[$c].' days'));
|
|
| 4491 | + } else if ($column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never') {
|
|
| 4492 | 4492 | $row[$c] = str_replace('/', '-', $row[$c]);
|
| 4493 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4493 | + $expire_date = date_i18n('Y-m-d', strtotime($row[$c]));
|
|
| 4494 | 4494 | } |
| 4495 | 4495 | // WPML |
| 4496 | 4496 | if ($is_wpml) {
|
| 4497 | 4497 | if ($column == 'language') {
|
| 4498 | 4498 | $language = geodir_strtolower(trim($row[$c])); |
| 4499 | 4499 | } else if ($column == 'original_post_id') {
|
| 4500 | - $original_post_id = (int)$row[$c]; |
|
| 4500 | + $original_post_id = (int) $row[$c]; |
|
| 4501 | 4501 | } |
| 4502 | 4502 | } |
| 4503 | 4503 | // WPML |
@@ -4505,7 +4505,7 @@ discard block |
||
| 4505 | 4505 | } |
| 4506 | 4506 | // listing claimed or not |
| 4507 | 4507 | if ($is_claim_active && isset($gd_post['claimed'])) {
|
| 4508 | - $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4508 | + $gd_post['claimed'] = (int) $gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4509 | 4509 | } |
| 4510 | 4510 | |
| 4511 | 4511 | // WPML |
@@ -4516,43 +4516,43 @@ discard block |
||
| 4516 | 4516 | |
| 4517 | 4517 | $gd_post['IMAGE'] = $post_images; |
| 4518 | 4518 | |
| 4519 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4520 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4519 | + $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status; |
|
| 4520 | + $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status; |
|
| 4521 | 4521 | |
| 4522 | 4522 | $valid = true; |
| 4523 | 4523 | |
| 4524 | - if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4524 | + if ($post_title == '' || !in_array($post_type, $post_types)) {
|
|
| 4525 | 4525 | $invalid++; |
| 4526 | 4526 | $valid = false; |
| 4527 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4527 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
|
|
| 4528 | 4528 | } |
| 4529 | 4529 | |
| 4530 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4531 | - if ( $location_allowed ) {
|
|
| 4530 | + $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
|
|
| 4531 | + if ($location_allowed) {
|
|
| 4532 | 4532 | $location_result = geodir_get_default_location(); |
| 4533 | - if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4533 | + if ($post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '') {
|
|
| 4534 | 4534 | $invalid_addr++; |
| 4535 | 4535 | $valid = false; |
| 4536 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4537 | - } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4538 | - if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4536 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
|
|
| 4537 | + } else if (!empty($location_result) && $location_result->location_id == 0) {
|
|
| 4538 | + if ((geodir_strtolower($post_city) != geodir_strtolower($location_result->city)) || (geodir_strtolower($post_region) != geodir_strtolower($location_result->region)) || (geodir_strtolower($post_country) != geodir_strtolower($location_result->country))) {
|
|
| 4539 | 4539 | $invalid_addr++; |
| 4540 | 4540 | $valid = false; |
| 4541 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4541 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
|
|
| 4542 | 4542 | } else {
|
| 4543 | 4543 | if (!$location_manager) {
|
| 4544 | - $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4544 | + $gd_post['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // Set the default location when location manager not activated. |
|
| 4545 | 4545 | } |
| 4546 | 4546 | } |
| 4547 | 4547 | } |
| 4548 | 4548 | } |
| 4549 | 4549 | |
| 4550 | - if ( !$valid ) {
|
|
| 4550 | + if (!$valid) {
|
|
| 4551 | 4551 | continue; |
| 4552 | 4552 | } |
| 4553 | 4553 | |
| 4554 | - $cat_taxonomy = $post_type . 'category'; |
|
| 4555 | - $tags_taxonomy = $post_type . '_tags'; |
|
| 4554 | + $cat_taxonomy = $post_type.'category'; |
|
| 4555 | + $tags_taxonomy = $post_type.'_tags'; |
|
| 4556 | 4556 | |
| 4557 | 4557 | if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
| 4558 | 4558 | $post_category_arr = array_merge(array($default_category), $post_category_arr); |
@@ -4560,29 +4560,29 @@ discard block |
||
| 4560 | 4560 | |
| 4561 | 4561 | $post_category = array(); |
| 4562 | 4562 | $default_category_id = NULL; |
| 4563 | - if ( !empty( $post_category_arr ) ) {
|
|
| 4564 | - foreach ( $post_category_arr as $value ) {
|
|
| 4565 | - $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4563 | + if (!empty($post_category_arr)) {
|
|
| 4564 | + foreach ($post_category_arr as $value) {
|
|
| 4565 | + $category_name = wp_kses_normalize_entities(trim($value)); |
|
| 4566 | 4566 | |
| 4567 | - if ( $category_name != '' ) {
|
|
| 4567 | + if ($category_name != '') {
|
|
| 4568 | 4568 | $term_category = array(); |
| 4569 | 4569 | |
| 4570 | - if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4570 | + if ($term = get_term_by('name', $category_name, $cat_taxonomy)) {
|
|
| 4571 | 4571 | $term_category = $term; |
| 4572 | - } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4572 | + } else if ($term = get_term_by('slug', $category_name, $cat_taxonomy)) {
|
|
| 4573 | 4573 | $term_category = $term; |
| 4574 | 4574 | } else {
|
| 4575 | 4575 | $term_data = array(); |
| 4576 | 4576 | $term_data['name'] = $category_name; |
| 4577 | 4577 | $term_data['taxonomy'] = $cat_taxonomy; |
| 4578 | 4578 | |
| 4579 | - $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4580 | - if ( $term_id ) {
|
|
| 4581 | - $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4579 | + $term_id = geodir_imex_insert_term($cat_taxonomy, $term_data); |
|
| 4580 | + if ($term_id) {
|
|
| 4581 | + $term_category = get_term($term_id, $cat_taxonomy); |
|
| 4582 | 4582 | } |
| 4583 | 4583 | } |
| 4584 | 4584 | |
| 4585 | - if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4585 | + if (!empty($term_category) && !is_wp_error($term_category)) {
|
|
| 4586 | 4586 | $post_category[] = intval($term_category->term_id); |
| 4587 | 4587 | |
| 4588 | 4588 | if ($category_name == $default_category) {
|
@@ -4603,15 +4603,15 @@ discard block |
||
| 4603 | 4603 | $save_post['post_tags'] = $post_tags; |
| 4604 | 4604 | |
| 4605 | 4605 | $saved_post_id = NULL; |
| 4606 | - if ( $import_choice == 'update' ) {
|
|
| 4607 | - $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4606 | + if ($import_choice == 'update') {
|
|
| 4607 | + $gd_wp_error = __('Unable to add listing, please check the listing data.', 'geodirectory');
|
|
| 4608 | 4608 | |
| 4609 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4609 | + if ($post_id > 0 && get_post($post_id)) {
|
|
| 4610 | 4610 | $save_post['ID'] = $post_id; |
| 4611 | 4611 | |
| 4612 | - if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4613 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4614 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4612 | + if ($saved_post_id = wp_update_post($save_post, true)) {
|
|
| 4613 | + if (is_wp_error($saved_post_id)) {
|
|
| 4614 | + $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error; |
|
| 4615 | 4615 | $saved_post_id = 0; |
| 4616 | 4616 | } else {
|
| 4617 | 4617 | $saved_post_id = $post_id; |
@@ -4619,9 +4619,9 @@ discard block |
||
| 4619 | 4619 | } |
| 4620 | 4620 | } |
| 4621 | 4621 | } else {
|
| 4622 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4623 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4624 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4622 | + if ($saved_post_id = wp_insert_post($save_post, true)) {
|
|
| 4623 | + if (is_wp_error($saved_post_id)) {
|
|
| 4624 | + $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error; |
|
| 4625 | 4625 | $saved_post_id = 0; |
| 4626 | 4626 | } else {
|
| 4627 | 4627 | $created++; |
@@ -4629,19 +4629,19 @@ discard block |
||
| 4629 | 4629 | } |
| 4630 | 4630 | } |
| 4631 | 4631 | |
| 4632 | - if ( !$saved_post_id > 0 ) {
|
|
| 4632 | + if (!$saved_post_id > 0) {
|
|
| 4633 | 4633 | $invalid++; |
| 4634 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4634 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_wp_error); |
|
| 4635 | 4635 | } |
| 4636 | - } else if ( $import_choice == 'skip' ) {
|
|
| 4637 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4636 | + } else if ($import_choice == 'skip') {
|
|
| 4637 | + if ($post_id > 0 && get_post($post_id)) {
|
|
| 4638 | 4638 | $skipped++; |
| 4639 | 4639 | } else {
|
| 4640 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4641 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4640 | + if ($saved_post_id = wp_insert_post($save_post, true)) {
|
|
| 4641 | + if (is_wp_error($saved_post_id)) {
|
|
| 4642 | 4642 | $invalid++; |
| 4643 | 4643 | |
| 4644 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4644 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$saved_post_id->get_error_message().' '.$wp_chars_error); |
|
| 4645 | 4645 | $saved_post_id = 0; |
| 4646 | 4646 | } else {
|
| 4647 | 4647 | $created++; |
@@ -4649,28 +4649,28 @@ discard block |
||
| 4649 | 4649 | } else {
|
| 4650 | 4650 | $invalid++; |
| 4651 | 4651 | |
| 4652 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4652 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error); |
|
| 4653 | 4653 | } |
| 4654 | 4654 | } |
| 4655 | 4655 | } else {
|
| 4656 | 4656 | $invalid++; |
| 4657 | 4657 | |
| 4658 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4658 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error); |
|
| 4659 | 4659 | } |
| 4660 | 4660 | |
| 4661 | - if ( (int)$saved_post_id > 0 ) {
|
|
| 4661 | + if ((int) $saved_post_id > 0) {
|
|
| 4662 | 4662 | // WPML |
| 4663 | 4663 | if ($is_wpml && $original_post_id > 0 && $language != '') {
|
| 4664 | - $wpml_post_type = 'post_' . $post_type; |
|
| 4665 | - $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4664 | + $wpml_post_type = 'post_'.$post_type; |
|
| 4665 | + $source_language = geodir_get_language_for_element($original_post_id, $wpml_post_type); |
|
| 4666 | 4666 | $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
| 4667 | 4667 | |
| 4668 | - $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4668 | + $trid = $sitepress->get_element_trid($original_post_id, $wpml_post_type); |
|
| 4669 | 4669 | |
| 4670 | - $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4670 | + $sitepress->set_element_language_details($saved_post_id, $wpml_post_type, $trid, $language, $source_language); |
|
| 4671 | 4671 | } |
| 4672 | 4672 | // WPML |
| 4673 | - $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4673 | + $gd_post_info = geodir_get_post_info($saved_post_id); |
|
| 4674 | 4674 | |
| 4675 | 4675 | $gd_post['post_id'] = $saved_post_id; |
| 4676 | 4676 | $gd_post['ID'] = $saved_post_id; |
@@ -4682,7 +4682,7 @@ discard block |
||
| 4682 | 4682 | |
| 4683 | 4683 | // post location |
| 4684 | 4684 | $post_location_id = 0; |
| 4685 | - if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4685 | + if ($location_allowed && !empty($location_result) && $location_result->location_id > 0) {
|
|
| 4686 | 4686 | $gd_post['post_neighbourhood'] = ''; |
| 4687 | 4687 | |
| 4688 | 4688 | $post_location_info = array( |
@@ -4692,7 +4692,7 @@ discard block |
||
| 4692 | 4692 | 'geo_lat' => $post_latitude, |
| 4693 | 4693 | 'geo_lng' => $post_longitude |
| 4694 | 4694 | ); |
| 4695 | - if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4695 | + if ($location_id = (int) geodir_add_new_location($post_location_info)) {
|
|
| 4696 | 4696 | $post_location_id = $location_id; |
| 4697 | 4697 | } |
| 4698 | 4698 | |
@@ -4730,14 +4730,14 @@ discard block |
||
| 4730 | 4730 | $gd_post['post_location_id'] = $post_location_id; |
| 4731 | 4731 | |
| 4732 | 4732 | // post package info |
| 4733 | - $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4733 | + $package_id = isset($gd_post['package_id']) && !empty($gd_post['package_id']) ? (int) $gd_post['package_id'] : 0; |
|
| 4734 | 4734 | if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
| 4735 | 4735 | $package_id = $gd_post_info->package_id; |
| 4736 | 4736 | } |
| 4737 | 4737 | |
| 4738 | 4738 | $package_info = array(); |
| 4739 | 4739 | if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
| 4740 | - $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4740 | + $package_info = (array) geodir_get_package_info_by_id($package_id); |
|
| 4741 | 4741 | |
| 4742 | 4742 | if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
| 4743 | 4743 | $package_info = array(); |
@@ -4745,18 +4745,18 @@ discard block |
||
| 4745 | 4745 | } |
| 4746 | 4746 | |
| 4747 | 4747 | if (empty($package_info)) {
|
| 4748 | - $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4748 | + $package_info = (array) geodir_post_package_info(array(), '', $post_type); |
|
| 4749 | 4749 | } |
| 4750 | 4750 | |
| 4751 | - if (!empty($package_info)) {
|
|
| 4751 | + if (!empty($package_info)) {
|
|
| 4752 | 4752 | $package_id = $package_info['pid']; |
| 4753 | 4753 | |
| 4754 | 4754 | if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
| 4755 | 4755 | $gd_post['expire_date'] = $expire_date; |
| 4756 | 4756 | } else {
|
| 4757 | - if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4758 | - $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4759 | - $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4757 | + if (isset($package_info['days']) && (int) $package_info['days'] > 0) {
|
|
| 4758 | + $gd_post['alive_days'] = (int) $package_info['days']; |
|
| 4759 | + $gd_post['expire_date'] = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $package_info['days'].' days'));
|
|
| 4760 | 4760 | } else {
|
| 4761 | 4761 | $gd_post['expire_date'] = 'Never'; |
| 4762 | 4762 | } |
@@ -4765,7 +4765,7 @@ discard block |
||
| 4765 | 4765 | $gd_post['package_id'] = $package_id; |
| 4766 | 4766 | } |
| 4767 | 4767 | |
| 4768 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4768 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 4769 | 4769 | |
| 4770 | 4770 | if ($post_type == 'gd_event') {
|
| 4771 | 4771 | $gd_post = geodir_imex_process_event_data($gd_post); |
@@ -4776,28 +4776,28 @@ discard block |
||
| 4776 | 4776 | } |
| 4777 | 4777 | |
| 4778 | 4778 | // Export franchise fields |
| 4779 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4779 | + $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
|
|
| 4780 | 4780 | if ($is_franchise_active) {
|
| 4781 | - if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4781 | + if (isset($gd_post['gd_is_franchise']) && (int) $gd_post['gd_is_franchise'] == 1) {
|
|
| 4782 | 4782 | $gd_franchise_lock = array(); |
| 4783 | 4783 | |
| 4784 | - if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4785 | - $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4786 | - $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4787 | - $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4784 | + if (isset($gd_post['gd_franchise_lock'])) {
|
|
| 4785 | + $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock']);
|
|
| 4786 | + $gd_franchise_lock = trim($gd_franchise_lock); |
|
| 4787 | + $gd_franchise_lock = explode(",", $gd_franchise_lock);
|
|
| 4788 | 4788 | } |
| 4789 | 4789 | |
| 4790 | - update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4791 | - update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4790 | + update_post_meta($saved_post_id, 'gd_is_franchise', 1); |
|
| 4791 | + update_post_meta($saved_post_id, 'gd_franchise_lock', $gd_franchise_lock); |
|
| 4792 | 4792 | } else {
|
| 4793 | - if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4794 | - geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4793 | + if (isset($gd_post['franchise']) && (int) $gd_post['franchise'] > 0 && geodir_franchise_check((int) $gd_post['franchise'])) {
|
|
| 4794 | + geodir_save_post_meta($saved_post_id, 'franchise', (int) $gd_post['franchise']); |
|
| 4795 | 4795 | } |
| 4796 | 4796 | } |
| 4797 | 4797 | } |
| 4798 | 4798 | |
| 4799 | 4799 | if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
| 4800 | - $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4800 | + $save_post['post_category'] = array_unique(array_map('intval', $save_post['post_category']));
|
|
| 4801 | 4801 | if ($default_category_id) {
|
| 4802 | 4802 | $save_post['post_default_category'] = $default_category_id; |
| 4803 | 4803 | $gd_post['default_category'] = $default_category_id; |
@@ -4806,34 +4806,34 @@ discard block |
||
| 4806 | 4806 | } |
| 4807 | 4807 | |
| 4808 | 4808 | // Save post info |
| 4809 | - geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4809 | + geodir_save_post_info($saved_post_id, $gd_post); |
|
| 4810 | 4810 | // post taxonomies |
| 4811 | - if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4812 | - wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4811 | + if (!empty($save_post['post_category'])) {
|
|
| 4812 | + wp_set_object_terms($saved_post_id, $save_post['post_category'], $cat_taxonomy); |
|
| 4813 | 4813 | |
| 4814 | - $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4814 | + $post_default_category = isset($save_post['post_default_category']) ? $save_post['post_default_category'] : ''; |
|
| 4815 | 4815 | if ($default_category_id) {
|
| 4816 | 4816 | $post_default_category = $default_category_id; |
| 4817 | 4817 | } |
| 4818 | 4818 | $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
| 4819 | 4819 | $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
| 4820 | - $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4820 | + $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']).',y:' : '';
|
|
| 4821 | 4821 | |
| 4822 | 4822 | if ($post_category_str != '' && $post_default_category) {
|
| 4823 | - $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4823 | + $post_category_str = str_replace($post_default_category.',y:', $post_default_category.',y,d:', $post_category_str); |
|
| 4824 | 4824 | } |
| 4825 | 4825 | |
| 4826 | 4826 | $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
| 4827 | 4827 | |
| 4828 | - geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4828 | + geodir_set_postcat_structure($saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str); |
|
| 4829 | 4829 | } |
| 4830 | 4830 | |
| 4831 | - if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4832 | - wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4831 | + if (!empty($save_post['post_tags'])) {
|
|
| 4832 | + wp_set_object_terms($saved_post_id, $save_post['post_tags'], $tags_taxonomy); |
|
| 4833 | 4833 | } |
| 4834 | 4834 | |
| 4835 | 4835 | // Post images |
| 4836 | - if ( !empty( $post_images ) ) {
|
|
| 4836 | + if (!empty($post_images)) {
|
|
| 4837 | 4837 | $post_images = array_unique($post_images); |
| 4838 | 4838 | |
| 4839 | 4839 | $old_post_images_arr = array(); |
@@ -4841,61 +4841,61 @@ discard block |
||
| 4841 | 4841 | |
| 4842 | 4842 | $order = 1; |
| 4843 | 4843 | |
| 4844 | - $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4844 | + $old_post_images = geodir_get_images($saved_post_id); |
|
| 4845 | 4845 | if (!empty($old_post_images)) {
|
| 4846 | - foreach( $old_post_images as $old_post_image ) {
|
|
| 4846 | + foreach ($old_post_images as $old_post_image) {
|
|
| 4847 | 4847 | if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
| 4848 | 4848 | $old_post_images_arr[] = $old_post_image->file; |
| 4849 | 4849 | } |
| 4850 | 4850 | } |
| 4851 | 4851 | } |
| 4852 | 4852 | |
| 4853 | - foreach ( $post_images as $post_image ) {
|
|
| 4854 | - $image_name = basename( $post_image ); |
|
| 4853 | + foreach ($post_images as $post_image) {
|
|
| 4854 | + $image_name = basename($post_image); |
|
| 4855 | 4855 | $saved_post_images_arr[] = $image_name; |
| 4856 | 4856 | |
| 4857 | - if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4857 | + if (!empty($old_post_images_arr) && in_array($image_name, $old_post_images_arr)) {
|
|
| 4858 | 4858 | continue; // Skip if image already exists. |
| 4859 | 4859 | } |
| 4860 | 4860 | |
| 4861 | - $image_name_parts = explode( '.', $image_name ); |
|
| 4862 | - array_pop( $image_name_parts ); |
|
| 4863 | - $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4861 | + $image_name_parts = explode('.', $image_name);
|
|
| 4862 | + array_pop($image_name_parts); |
|
| 4863 | + $proper_image_name = implode('.', $image_name_parts);
|
|
| 4864 | 4864 | |
| 4865 | - $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4865 | + $arr_file_type = wp_check_filetype($image_name); |
|
| 4866 | 4866 | |
| 4867 | - if ( !empty( $arr_file_type ) ) {
|
|
| 4867 | + if (!empty($arr_file_type)) {
|
|
| 4868 | 4868 | $uploaded_file_type = $arr_file_type['type']; |
| 4869 | 4869 | |
| 4870 | 4870 | $attachment = array(); |
| 4871 | 4871 | $attachment['post_id'] = $saved_post_id; |
| 4872 | 4872 | $attachment['title'] = $proper_image_name; |
| 4873 | 4873 | $attachment['content'] = ''; |
| 4874 | - $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4874 | + $attachment['file'] = $uploads_subdir.'/'.$image_name; |
|
| 4875 | 4875 | $attachment['mime_type'] = $uploaded_file_type; |
| 4876 | 4876 | $attachment['menu_order'] = $order; |
| 4877 | 4877 | $attachment['is_featured'] = 0; |
| 4878 | 4878 | |
| 4879 | 4879 | $attachment_set = ''; |
| 4880 | - foreach ( $attachment as $key => $val ) {
|
|
| 4881 | - if ( $val != '' ) {
|
|
| 4882 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4880 | + foreach ($attachment as $key => $val) {
|
|
| 4881 | + if ($val != '') {
|
|
| 4882 | + $attachment_set .= $key." = '".$val."', "; |
|
| 4883 | 4883 | } |
| 4884 | 4884 | } |
| 4885 | - $attachment_set = trim( $attachment_set, ", " ); |
|
| 4885 | + $attachment_set = trim($attachment_set, ", "); |
|
| 4886 | 4886 | |
| 4887 | 4887 | // Add new attachment |
| 4888 | - $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4888 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
|
|
| 4889 | 4889 | |
| 4890 | 4890 | $order++; |
| 4891 | 4891 | } |
| 4892 | 4892 | } |
| 4893 | 4893 | |
| 4894 | - $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4894 | + $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/".implode("' AND file NOT LIKE '%/", $saved_post_images_arr)."' )" : '';
|
|
| 4895 | 4895 | // Remove previous attachment |
| 4896 | - $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4896 | + $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = ".(int) $saved_post_id." ".$saved_post_images_sql);
|
|
| 4897 | 4897 | |
| 4898 | - if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4898 | + if (!empty($saved_post_images_arr)) {
|
|
| 4899 | 4899 | geodir_set_wp_featured_image($saved_post_id); |
| 4900 | 4900 | /* |
| 4901 | 4901 | $menu_order = 1; |
@@ -4912,13 +4912,13 @@ discard block |
||
| 4912 | 4912 | }*/ |
| 4913 | 4913 | } |
| 4914 | 4914 | |
| 4915 | - if ( $order > 1 ) {
|
|
| 4915 | + if ($order > 1) {
|
|
| 4916 | 4916 | $images++; |
| 4917 | 4917 | } |
| 4918 | 4918 | } |
| 4919 | 4919 | |
| 4920 | 4920 | /** This action is documented in geodirectory-functions/post-functions.php */ |
| 4921 | - do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4921 | + do_action('geodir_after_save_listing', $saved_post_id, $gd_post);
|
|
| 4922 | 4922 | |
| 4923 | 4923 | if (isset($is_featured)) {
|
| 4924 | 4924 | geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
@@ -4938,10 +4938,10 @@ discard block |
||
| 4938 | 4938 | } |
| 4939 | 4939 | |
| 4940 | 4940 | //undo some stuff to make the import quicker |
| 4941 | - wp_defer_term_counting( false ); |
|
| 4942 | - wp_defer_comment_counting( false ); |
|
| 4943 | - $wpdb->query( 'COMMIT;' ); |
|
| 4944 | - $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4941 | + wp_defer_term_counting(false); |
|
| 4942 | + wp_defer_comment_counting(false); |
|
| 4943 | + $wpdb->query('COMMIT;');
|
|
| 4944 | + $wpdb->query('SET autocommit = 1;');
|
|
| 4945 | 4945 | |
| 4946 | 4946 | $json = array(); |
| 4947 | 4947 | $json['processed'] = $processed_actual; |
@@ -4952,9 +4952,9 @@ discard block |
||
| 4952 | 4952 | $json['invalid_addr'] = $invalid_addr; |
| 4953 | 4953 | $json['images'] = $images; |
| 4954 | 4954 | |
| 4955 | - wp_send_json( $json ); |
|
| 4955 | + wp_send_json($json); |
|
| 4956 | 4956 | exit; |
| 4957 | - } else if ( $task == 'import_loc' ) {
|
|
| 4957 | + } else if ($task == 'import_loc') {
|
|
| 4958 | 4958 | global $gd_post_types; |
| 4959 | 4959 | $gd_post_types = $post_types; |
| 4960 | 4960 | |
@@ -4963,82 +4963,82 @@ discard block |
||
| 4963 | 4963 | |
| 4964 | 4964 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4965 | 4965 | $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
| 4966 | - wp_send_json( $json ); |
|
| 4966 | + wp_send_json($json); |
|
| 4967 | 4967 | } |
| 4968 | 4968 | |
| 4969 | 4969 | $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
| 4970 | - $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4970 | + $gd_error_location = __('Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory');
|
|
| 4971 | 4971 | for ($i = 1; $i <= $limit; $i++) {
|
| 4972 | 4972 | $index = $processed + $i; |
| 4973 | 4973 | |
| 4974 | 4974 | if (isset($file[$index])) {
|
| 4975 | 4975 | $row = $file[$index]; |
| 4976 | - $row = array_map( 'trim', $row ); |
|
| 4976 | + $row = array_map('trim', $row);
|
|
| 4977 | 4977 | $data = array(); |
| 4978 | 4978 | |
| 4979 | - foreach ($columns as $c => $column ) {
|
|
| 4979 | + foreach ($columns as $c => $column) {
|
|
| 4980 | 4980 | if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta', 'city_desc', 'region_meta', 'region_desc', 'country_meta', 'country_desc'))) {
|
| 4981 | 4981 | $data[$column] = $row[$c]; |
| 4982 | 4982 | } |
| 4983 | 4983 | } |
| 4984 | 4984 | |
| 4985 | - if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4985 | + if (empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4986 | 4986 | $invalid++; |
| 4987 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4987 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4988 | 4988 | continue; |
| 4989 | 4989 | } |
| 4990 | 4990 | |
| 4991 | 4991 | $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
| 4992 | 4992 | |
| 4993 | - if ( $import_choice == 'update' ) {
|
|
| 4994 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4995 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4993 | + if ($import_choice == 'update') {
|
|
| 4994 | + if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
|
|
| 4995 | + if ($location_id = geodir_location_update_city($data, true, $location)) {
|
|
| 4996 | 4996 | $updated++; |
| 4997 | 4997 | } else {
|
| 4998 | 4998 | $invalid++; |
| 4999 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4999 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 5000 | 5000 | } |
| 5001 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 5002 | - $data['location_id'] = (int)$location->location_id; |
|
| 5001 | + } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
|
|
| 5002 | + $data['location_id'] = (int) $location->location_id; |
|
| 5003 | 5003 | |
| 5004 | - if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 5005 | - $data['location_id'] = (int)$location->location_id; |
|
| 5006 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 5007 | - $data['location_id'] = (int)$location->location_id; |
|
| 5008 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 5009 | - $data['location_id'] = (int)$location->location_id; |
|
| 5004 | + if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region']))) {
|
|
| 5005 | + $data['location_id'] = (int) $location->location_id; |
|
| 5006 | + } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'region' => $data['region']))) {
|
|
| 5007 | + $data['location_id'] = (int) $location->location_id; |
|
| 5008 | + } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country']))) {
|
|
| 5009 | + $data['location_id'] = (int) $location->location_id; |
|
| 5010 | 5010 | } |
| 5011 | 5011 | |
| 5012 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 5012 | + if ($location_id = geodir_location_update_city($data, true, $location)) {
|
|
| 5013 | 5013 | $updated++; |
| 5014 | 5014 | } else {
|
| 5015 | 5015 | $invalid++; |
| 5016 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 5016 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 5017 | 5017 | } |
| 5018 | 5018 | } else {
|
| 5019 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 5019 | + if ($location_id = geodir_location_insert_city($data, true)) {
|
|
| 5020 | 5020 | $created++; |
| 5021 | 5021 | } else {
|
| 5022 | 5022 | $invalid++; |
| 5023 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 5023 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 5024 | 5024 | } |
| 5025 | 5025 | } |
| 5026 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 5027 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 5026 | + } elseif ($import_choice == 'skip') {
|
|
| 5027 | + if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
|
|
| 5028 | 5028 | $skipped++; |
| 5029 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 5029 | + } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
|
|
| 5030 | 5030 | $skipped++; |
| 5031 | 5031 | } else {
|
| 5032 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 5032 | + if ($location_id = geodir_location_insert_city($data, true)) {
|
|
| 5033 | 5033 | $created++; |
| 5034 | 5034 | } else {
|
| 5035 | 5035 | $invalid++; |
| 5036 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 5036 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 5037 | 5037 | } |
| 5038 | 5038 | } |
| 5039 | 5039 | } else {
|
| 5040 | 5040 | $invalid++; |
| 5041 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 5041 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 5042 | 5042 | } |
| 5043 | 5043 | } |
| 5044 | 5044 | } |
@@ -5052,24 +5052,24 @@ discard block |
||
| 5052 | 5052 | $json['invalid'] = $invalid; |
| 5053 | 5053 | $json['images'] = $images; |
| 5054 | 5054 | |
| 5055 | - wp_send_json( $json ); |
|
| 5056 | - } else if ( $task == 'import_hood' ) {
|
|
| 5055 | + wp_send_json($json); |
|
| 5056 | + } else if ($task == 'import_hood') {
|
|
| 5057 | 5057 | if (!empty($file)) {
|
| 5058 | 5058 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 5059 | 5059 | |
| 5060 | 5060 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 5061 | 5061 | $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
| 5062 | - wp_send_json( $json ); |
|
| 5062 | + wp_send_json($json); |
|
| 5063 | 5063 | } |
| 5064 | 5064 | |
| 5065 | 5065 | $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
| 5066 | - $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 5066 | + $gd_error_hood = __('Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory');
|
|
| 5067 | 5067 | for ($i = 1; $i <= $limit; $i++) {
|
| 5068 | 5068 | $index = $processed + $i; |
| 5069 | 5069 | |
| 5070 | 5070 | if (isset($file[$index])) {
|
| 5071 | 5071 | $row = $file[$index]; |
| 5072 | - $row = array_map( 'trim', $row ); |
|
| 5072 | + $row = array_map('trim', $row);
|
|
| 5073 | 5073 | $data = array(); |
| 5074 | 5074 | |
| 5075 | 5075 | foreach ($columns as $c => $column) {
|
@@ -5080,20 +5080,20 @@ discard block |
||
| 5080 | 5080 | |
| 5081 | 5081 | if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
| 5082 | 5082 | $invalid++; |
| 5083 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 5083 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 5084 | 5084 | continue; |
| 5085 | 5085 | } |
| 5086 | 5086 | |
| 5087 | 5087 | $location_info = array(); |
| 5088 | - if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 5089 | - $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 5088 | + if (!empty($data['location_id']) && (int) $data['location_id'] > 0) {
|
|
| 5089 | + $location_info = geodir_get_location_by_id('', (int) $data['location_id']);
|
|
| 5090 | 5090 | } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
| 5091 | 5091 | $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
| 5092 | 5092 | } |
| 5093 | 5093 | |
| 5094 | 5094 | if (empty($location_info)) {
|
| 5095 | 5095 | $invalid++; |
| 5096 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 5096 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 5097 | 5097 | continue; |
| 5098 | 5098 | } |
| 5099 | 5099 | |
@@ -5108,35 +5108,35 @@ discard block |
||
| 5108 | 5108 | $hood_data['hood_longitude'] = $data['longitude']; |
| 5109 | 5109 | $hood_data['hood_location_id'] = $location_id; |
| 5110 | 5110 | |
| 5111 | - if ( $import_choice == 'update' ) {
|
|
| 5112 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 5113 | - $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 5111 | + if ($import_choice == 'update') {
|
|
| 5112 | + if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
|
|
| 5113 | + $hood_data['hood_id'] = (int) $data['neighbourhood_id']; |
|
| 5114 | 5114 | |
| 5115 | 5115 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 5116 | 5116 | $updated++; |
| 5117 | 5117 | } else {
|
| 5118 | 5118 | $invalid++; |
| 5119 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 5119 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 5120 | 5120 | } |
| 5121 | 5121 | } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
| 5122 | - $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 5122 | + $hood_data['hood_id'] = (int) $neighbourhood->hood_id; |
|
| 5123 | 5123 | |
| 5124 | 5124 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 5125 | 5125 | $updated++; |
| 5126 | 5126 | } else {
|
| 5127 | 5127 | $invalid++; |
| 5128 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 5128 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 5129 | 5129 | } |
| 5130 | 5130 | } else {
|
| 5131 | 5131 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 5132 | 5132 | $created++; |
| 5133 | 5133 | } else {
|
| 5134 | 5134 | $invalid++; |
| 5135 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 5135 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 5136 | 5136 | } |
| 5137 | 5137 | } |
| 5138 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 5139 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 5138 | + } elseif ($import_choice == 'skip') {
|
|
| 5139 | + if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
|
|
| 5140 | 5140 | $skipped++; |
| 5141 | 5141 | } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
| 5142 | 5142 | $skipped++; |
@@ -5146,12 +5146,12 @@ discard block |
||
| 5146 | 5146 | $created++; |
| 5147 | 5147 | } else {
|
| 5148 | 5148 | $invalid++; |
| 5149 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 5149 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 5150 | 5150 | } |
| 5151 | 5151 | } |
| 5152 | 5152 | } else {
|
| 5153 | 5153 | $invalid++; |
| 5154 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 5154 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 5155 | 5155 | } |
| 5156 | 5156 | } |
| 5157 | 5157 | } |
@@ -5165,7 +5165,7 @@ discard block |
||
| 5165 | 5165 | $json['invalid'] = $invalid; |
| 5166 | 5166 | $json['images'] = $images; |
| 5167 | 5167 | |
| 5168 | - wp_send_json( $json ); |
|
| 5168 | + wp_send_json($json); |
|
| 5169 | 5169 | } |
| 5170 | 5170 | } |
| 5171 | 5171 | break; |
@@ -5209,29 +5209,29 @@ discard block |
||
| 5209 | 5209 | * } |
| 5210 | 5210 | * @return int|bool Term id when success, false when fail. |
| 5211 | 5211 | */ |
| 5212 | -function geodir_imex_insert_term( $taxonomy, $term_data ) {
|
|
| 5213 | - if ( empty( $taxonomy ) || empty( $term_data ) ) {
|
|
| 5212 | +function geodir_imex_insert_term($taxonomy, $term_data) {
|
|
| 5213 | + if (empty($taxonomy) || empty($term_data)) {
|
|
| 5214 | 5214 | return false; |
| 5215 | 5215 | } |
| 5216 | 5216 | |
| 5217 | - $term = isset( $term_data['name'] ) && !empty( $term_data['name'] ) ? $term_data['name'] : ''; |
|
| 5217 | + $term = isset($term_data['name']) && !empty($term_data['name']) ? $term_data['name'] : ''; |
|
| 5218 | 5218 | $args = array(); |
| 5219 | - $args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : ''; |
|
| 5220 | - $args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : ''; |
|
| 5221 | - $args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : ''; |
|
| 5219 | + $args['description'] = isset($term_data['description']) ? $term_data['description'] : ''; |
|
| 5220 | + $args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : ''; |
|
| 5221 | + $args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : ''; |
|
| 5222 | 5222 | |
| 5223 | - if ( ( !empty( $args['slug'] ) && term_exists( $args['slug'], $taxonomy ) ) || empty( $args['slug'] ) ) {
|
|
| 5224 | - $term_args = array_merge( $term_data, $args ); |
|
| 5225 | - $defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => ''); |
|
| 5226 | - $term_args = wp_parse_args( $term_args, $defaults ); |
|
| 5227 | - $term_args = sanitize_term( $term_args, $taxonomy, 'db' ); |
|
| 5228 | - $args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args ); |
|
| 5223 | + if ((!empty($args['slug']) && term_exists($args['slug'], $taxonomy)) || empty($args['slug'])) {
|
|
| 5224 | + $term_args = array_merge($term_data, $args); |
|
| 5225 | + $defaults = array('alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
|
|
| 5226 | + $term_args = wp_parse_args($term_args, $defaults); |
|
| 5227 | + $term_args = sanitize_term($term_args, $taxonomy, 'db'); |
|
| 5228 | + $args['slug'] = wp_unique_term_slug($args['slug'], (object) $term_args); |
|
| 5229 | 5229 | } |
| 5230 | 5230 | |
| 5231 | - if( !empty( $term ) ) {
|
|
| 5232 | - $result = wp_insert_term( $term, $taxonomy, $args ); |
|
| 5233 | - if( !is_wp_error( $result ) ) {
|
|
| 5234 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 5231 | + if (!empty($term)) {
|
|
| 5232 | + $result = wp_insert_term($term, $taxonomy, $args); |
|
| 5233 | + if (!is_wp_error($result)) {
|
|
| 5234 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 5235 | 5235 | } |
| 5236 | 5236 | } |
| 5237 | 5237 | |
@@ -5261,36 +5261,36 @@ discard block |
||
| 5261 | 5261 | * } |
| 5262 | 5262 | * @return int|bool Term id when success, false when fail. |
| 5263 | 5263 | */ |
| 5264 | -function geodir_imex_update_term( $taxonomy, $term_data ) {
|
|
| 5265 | - if ( empty( $taxonomy ) || empty( $term_data ) ) {
|
|
| 5264 | +function geodir_imex_update_term($taxonomy, $term_data) {
|
|
| 5265 | + if (empty($taxonomy) || empty($term_data)) {
|
|
| 5266 | 5266 | return false; |
| 5267 | 5267 | } |
| 5268 | 5268 | |
| 5269 | - $term_id = isset( $term_data['term_id'] ) && !empty( $term_data['term_id'] ) ? $term_data['term_id'] : 0; |
|
| 5269 | + $term_id = isset($term_data['term_id']) && !empty($term_data['term_id']) ? $term_data['term_id'] : 0; |
|
| 5270 | 5270 | |
| 5271 | 5271 | $args = array(); |
| 5272 | - $args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : ''; |
|
| 5273 | - $args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : ''; |
|
| 5274 | - $args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : ''; |
|
| 5272 | + $args['description'] = isset($term_data['description']) ? $term_data['description'] : ''; |
|
| 5273 | + $args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : ''; |
|
| 5274 | + $args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : ''; |
|
| 5275 | 5275 | |
| 5276 | - if ( $term_id > 0 && $term_info = (array)get_term( $term_id, $taxonomy ) ) {
|
|
| 5276 | + if ($term_id > 0 && $term_info = (array) get_term($term_id, $taxonomy)) {
|
|
| 5277 | 5277 | $term_data['term_id'] = $term_info['term_id']; |
| 5278 | 5278 | |
| 5279 | - $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
|
| 5279 | + $result = wp_update_term($term_data['term_id'], $taxonomy, $term_data); |
|
| 5280 | 5280 | |
| 5281 | - if( !is_wp_error( $result ) ) {
|
|
| 5282 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 5281 | + if (!is_wp_error($result)) {
|
|
| 5282 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 5283 | 5283 | } |
| 5284 | - } else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 5284 | + } else if ($term_data['slug'] != '' && $term_info = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 5285 | 5285 | $term_data['term_id'] = $term_info['term_id']; |
| 5286 | 5286 | |
| 5287 | - $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
|
| 5287 | + $result = wp_update_term($term_data['term_id'], $taxonomy, $term_data); |
|
| 5288 | 5288 | |
| 5289 | - if( !is_wp_error( $result ) ) {
|
|
| 5290 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 5289 | + if (!is_wp_error($result)) {
|
|
| 5290 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 5291 | 5291 | } |
| 5292 | 5292 | } else {
|
| 5293 | - return geodir_imex_insert_term( $taxonomy, $term_data ); |
|
| 5293 | + return geodir_imex_insert_term($taxonomy, $term_data); |
|
| 5294 | 5294 | } |
| 5295 | 5295 | |
| 5296 | 5296 | return false; |
@@ -5309,20 +5309,20 @@ discard block |
||
| 5309 | 5309 | * @param string $post_type Post type. |
| 5310 | 5310 | * @return int Posts count. |
| 5311 | 5311 | */ |
| 5312 | -function geodir_get_posts_count( $post_type ) {
|
|
| 5312 | +function geodir_get_posts_count($post_type) {
|
|
| 5313 | 5313 | global $wpdb, $plugin_prefix; |
| 5314 | 5314 | |
| 5315 | - if ( !post_type_exists( $post_type ) ) {
|
|
| 5315 | + if (!post_type_exists($post_type)) {
|
|
| 5316 | 5316 | return 0; |
| 5317 | 5317 | } |
| 5318 | 5318 | |
| 5319 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5319 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5320 | 5320 | |
| 5321 | 5321 | // Skip listing with statuses trash, auto-draft etc... |
| 5322 | 5322 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5323 | 5323 | $where_statuses = ''; |
| 5324 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5325 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5324 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5325 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5326 | 5326 | } |
| 5327 | 5327 | |
| 5328 | 5328 | /** |
@@ -5333,11 +5333,11 @@ discard block |
||
| 5333 | 5333 | * |
| 5334 | 5334 | * @param string $where SQL where clause part. |
| 5335 | 5335 | */ |
| 5336 | - $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5336 | + $where_statuses = apply_filters('geodir_get_posts_count', $where_statuses, $post_type);
|
|
| 5337 | 5337 | |
| 5338 | - $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5338 | + $query = $wpdb->prepare("SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses, $post_type);
|
|
| 5339 | 5339 | |
| 5340 | - $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5340 | + $posts_count = (int) $wpdb->get_var($query); |
|
| 5341 | 5341 | |
| 5342 | 5342 | /** |
| 5343 | 5343 | * Modify returned post counts for the current post type. |
@@ -5348,7 +5348,7 @@ discard block |
||
| 5348 | 5348 | * @param int $posts_count Post counts. |
| 5349 | 5349 | * @param string $post_type Post type. |
| 5350 | 5350 | */ |
| 5351 | - $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5351 | + $posts_count = apply_filters('geodir_imex_count_posts', $posts_count, $post_type);
|
|
| 5352 | 5352 | |
| 5353 | 5353 | return $posts_count; |
| 5354 | 5354 | } |
@@ -5369,19 +5369,19 @@ discard block |
||
| 5369 | 5369 | * @param int $page_no Page number. Default 0. |
| 5370 | 5370 | * @return array Array of posts data. |
| 5371 | 5371 | */ |
| 5372 | -function geodir_imex_get_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5372 | +function geodir_imex_get_posts($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5373 | 5373 | global $wp_filesystem; |
| 5374 | 5374 | |
| 5375 | - $posts = geodir_get_export_posts( $post_type, $per_page, $page_no ); |
|
| 5375 | + $posts = geodir_get_export_posts($post_type, $per_page, $page_no); |
|
| 5376 | 5376 | |
| 5377 | 5377 | $csv_rows = array(); |
| 5378 | 5378 | |
| 5379 | - if ( !empty( $posts ) ) {
|
|
| 5380 | - $is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' ); |
|
| 5379 | + if (!empty($posts)) {
|
|
| 5380 | + $is_payment_plugin = is_plugin_active('geodir_payment_manager/geodir_payment_manager.php');
|
|
| 5381 | 5381 | $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
| 5382 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5382 | + $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
|
|
| 5383 | 5383 | $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
| 5384 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5384 | + $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5385 | 5385 | |
| 5386 | 5386 | $csv_row = array(); |
| 5387 | 5387 | $csv_row[] = 'post_id'; |
@@ -5392,7 +5392,7 @@ discard block |
||
| 5392 | 5392 | $csv_row[] = 'default_category'; |
| 5393 | 5393 | $csv_row[] = 'post_tags'; |
| 5394 | 5394 | $csv_row[] = 'post_type'; |
| 5395 | - if ( $post_type == 'gd_event' ) {
|
|
| 5395 | + if ($post_type == 'gd_event') {
|
|
| 5396 | 5396 | $csv_row[] = 'event_date'; |
| 5397 | 5397 | $csv_row[] = 'event_enddate'; |
| 5398 | 5398 | $csv_row[] = 'starttime'; |
@@ -5450,15 +5450,15 @@ discard block |
||
| 5450 | 5450 | } |
| 5451 | 5451 | // WPML |
| 5452 | 5452 | |
| 5453 | - $custom_fields = geodir_imex_get_custom_fields( $post_type ); |
|
| 5454 | - if ( !empty( $custom_fields ) ) {
|
|
| 5455 | - foreach ( $custom_fields as $custom_field ) {
|
|
| 5453 | + $custom_fields = geodir_imex_get_custom_fields($post_type); |
|
| 5454 | + if (!empty($custom_fields)) {
|
|
| 5455 | + foreach ($custom_fields as $custom_field) {
|
|
| 5456 | 5456 | $csv_row[] = $custom_field->htmlvar_name; |
| 5457 | 5457 | } |
| 5458 | 5458 | } |
| 5459 | 5459 | |
| 5460 | 5460 | // Export franchise fields |
| 5461 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 5461 | + $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
|
|
| 5462 | 5462 | if ($is_franchise_active) {
|
| 5463 | 5463 | $csv_row[] = 'gd_is_franchise'; |
| 5464 | 5464 | $csv_row[] = 'gd_franchise_lock'; |
@@ -5479,28 +5479,28 @@ discard block |
||
| 5479 | 5479 | $csv_rows[] = $csv_row; |
| 5480 | 5480 | |
| 5481 | 5481 | $images_count = 5; |
| 5482 | - $xx=0; |
|
| 5483 | - foreach ( $posts as $post ) {$xx++;
|
|
| 5482 | + $xx = 0; |
|
| 5483 | + foreach ($posts as $post) {$xx++;
|
|
| 5484 | 5484 | $post_id = $post['ID']; |
| 5485 | 5485 | |
| 5486 | - $gd_post_info = geodir_get_post_info( $post_id ); |
|
| 5487 | - $post_info = (array)$gd_post_info; |
|
| 5486 | + $gd_post_info = geodir_get_post_info($post_id); |
|
| 5487 | + $post_info = (array) $gd_post_info; |
|
| 5488 | 5488 | |
| 5489 | - $taxonomy_category = $post_type . 'category'; |
|
| 5490 | - $taxonomy_tags = $post_type . '_tags'; |
|
| 5489 | + $taxonomy_category = $post_type.'category'; |
|
| 5490 | + $taxonomy_tags = $post_type.'_tags'; |
|
| 5491 | 5491 | |
| 5492 | 5492 | $post_category = ''; |
| 5493 | 5493 | $default_category_id = $gd_post_info->default_category; |
| 5494 | 5494 | $default_category = ''; |
| 5495 | 5495 | $post_tags = ''; |
| 5496 | - $terms = wp_get_post_terms( $post_id, array( $taxonomy_category, $taxonomy_tags ) ); |
|
| 5496 | + $terms = wp_get_post_terms($post_id, array($taxonomy_category, $taxonomy_tags)); |
|
| 5497 | 5497 | |
| 5498 | - if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
|
|
| 5498 | + if (!empty($terms) && !is_wp_error($terms)) {
|
|
| 5499 | 5499 | $post_category = array(); |
| 5500 | 5500 | $post_tags = array(); |
| 5501 | 5501 | |
| 5502 | - foreach ( $terms as $term ) {
|
|
| 5503 | - if ( $term->taxonomy == $taxonomy_category ) {
|
|
| 5502 | + foreach ($terms as $term) {
|
|
| 5503 | + if ($term->taxonomy == $taxonomy_category) {
|
|
| 5504 | 5504 | $post_category[] = $term->name; |
| 5505 | 5505 | |
| 5506 | 5506 | if ($default_category_id == $term->term_id) {
|
@@ -5508,7 +5508,7 @@ discard block |
||
| 5508 | 5508 | } |
| 5509 | 5509 | } |
| 5510 | 5510 | |
| 5511 | - if ( $term->taxonomy == $taxonomy_tags ) {
|
|
| 5511 | + if ($term->taxonomy == $taxonomy_tags) {
|
|
| 5512 | 5512 | $post_tags[] = $term->name; |
| 5513 | 5513 | } |
| 5514 | 5514 | } |
@@ -5516,47 +5516,47 @@ discard block |
||
| 5516 | 5516 | if (empty($default_category) && !empty($post_category)) {
|
| 5517 | 5517 | $default_category = $post_category[0]; // Set first one as default category. |
| 5518 | 5518 | } |
| 5519 | - $post_category = !empty( $post_category ) ? implode( ',', $post_category ) : ''; |
|
| 5520 | - $post_tags = !empty( $post_tags ) ? implode( ',', $post_tags ) : ''; |
|
| 5519 | + $post_category = !empty($post_category) ? implode(',', $post_category) : '';
|
|
| 5520 | + $post_tags = !empty($post_tags) ? implode(',', $post_tags) : '';
|
|
| 5521 | 5521 | } |
| 5522 | 5522 | |
| 5523 | 5523 | // Franchise data |
| 5524 | - if ($is_franchise_active && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 && geodir_franchise_check((int)$post_info['franchise'])) {
|
|
| 5524 | + if ($is_franchise_active && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 && geodir_franchise_check((int) $post_info['franchise'])) {
|
|
| 5525 | 5525 | $franchise_id = $post_info['franchise']; |
| 5526 | 5526 | $gd_franchise_info = geodir_get_post_info($franchise_id); |
| 5527 | 5527 | |
| 5528 | 5528 | if (geodir_franchise_pkg_is_active($gd_franchise_info)) {
|
| 5529 | - $franchise_info = (array)$gd_franchise_info; |
|
| 5529 | + $franchise_info = (array) $gd_franchise_info; |
|
| 5530 | 5530 | $locked_fields = geodir_franchise_get_locked_fields($franchise_id, true); |
| 5531 | 5531 | |
| 5532 | 5532 | if (!empty($locked_fields)) {
|
| 5533 | - foreach( $locked_fields as $locked_field) {
|
|
| 5533 | + foreach ($locked_fields as $locked_field) {
|
|
| 5534 | 5534 | if (isset($post_info[$locked_field]) && isset($franchise_info[$locked_field])) {
|
| 5535 | 5535 | $post_info[$locked_field] = $franchise_info[$locked_field]; |
| 5536 | 5536 | } |
| 5537 | 5537 | |
| 5538 | 5538 | if (in_array($taxonomy_category, $locked_fields) || in_array('post_tags', $locked_fields)) {
|
| 5539 | - $franchise_terms = wp_get_post_terms( $franchise_id, array( $taxonomy_category, $taxonomy_tags ) ); |
|
| 5539 | + $franchise_terms = wp_get_post_terms($franchise_id, array($taxonomy_category, $taxonomy_tags)); |
|
| 5540 | 5540 | |
| 5541 | - if ( !empty( $franchise_terms ) && !is_wp_error( $franchise_terms ) ) {
|
|
| 5541 | + if (!empty($franchise_terms) && !is_wp_error($franchise_terms)) {
|
|
| 5542 | 5542 | $franchise_post_category = array(); |
| 5543 | 5543 | $franchise_post_tags = array(); |
| 5544 | 5544 | |
| 5545 | - foreach ( $franchise_terms as $franchise_term ) {
|
|
| 5546 | - if ( $franchise_term->taxonomy == $taxonomy_category ) {
|
|
| 5545 | + foreach ($franchise_terms as $franchise_term) {
|
|
| 5546 | + if ($franchise_term->taxonomy == $taxonomy_category) {
|
|
| 5547 | 5547 | $franchise_post_category[] = $franchise_term->name; |
| 5548 | 5548 | } |
| 5549 | 5549 | |
| 5550 | - if ( $franchise_term->taxonomy == $taxonomy_tags ) {
|
|
| 5550 | + if ($franchise_term->taxonomy == $taxonomy_tags) {
|
|
| 5551 | 5551 | $franchise_post_tags[] = $franchise_term->name; |
| 5552 | 5552 | } |
| 5553 | 5553 | } |
| 5554 | 5554 | |
| 5555 | 5555 | if (in_array($taxonomy_category, $locked_fields)) {
|
| 5556 | - $post_category = !empty( $franchise_post_category ) ? implode( ',', $franchise_post_category ) : ''; |
|
| 5556 | + $post_category = !empty($franchise_post_category) ? implode(',', $franchise_post_category) : '';
|
|
| 5557 | 5557 | } |
| 5558 | 5558 | if (in_array('post_tags', $locked_fields)) {
|
| 5559 | - $post_tags = !empty( $franchise_post_tags ) ? implode( ',', $franchise_post_tags ) : ''; |
|
| 5559 | + $post_tags = !empty($franchise_post_tags) ? implode(',', $franchise_post_tags) : '';
|
|
| 5560 | 5560 | } |
| 5561 | 5561 | } |
| 5562 | 5562 | } |
@@ -5565,18 +5565,18 @@ discard block |
||
| 5565 | 5565 | } |
| 5566 | 5566 | } |
| 5567 | 5567 | |
| 5568 | - $post_images = geodir_get_images( $post_id ); |
|
| 5568 | + $post_images = geodir_get_images($post_id); |
|
| 5569 | 5569 | $current_images = array(); |
| 5570 | - if ( !empty( $post_images ) ) {
|
|
| 5571 | - foreach ( $post_images as $post_image ) {
|
|
| 5572 | - $post_image = (array)$post_image; |
|
| 5573 | - $image = !empty( $post_image ) && isset( $post_image['path'] ) && $wp_filesystem->is_file( $post_image['path'] ) && $wp_filesystem->exists( $post_image['path'] ) ? $post_image['src'] : ''; |
|
| 5574 | - if ( $image ) {
|
|
| 5570 | + if (!empty($post_images)) {
|
|
| 5571 | + foreach ($post_images as $post_image) {
|
|
| 5572 | + $post_image = (array) $post_image; |
|
| 5573 | + $image = !empty($post_image) && isset($post_image['path']) && $wp_filesystem->is_file($post_image['path']) && $wp_filesystem->exists($post_image['path']) ? $post_image['src'] : ''; |
|
| 5574 | + if ($image) {
|
|
| 5575 | 5575 | $current_images[] = $image; |
| 5576 | 5576 | } |
| 5577 | 5577 | } |
| 5578 | 5578 | |
| 5579 | - $images_count = max( $images_count, count( $current_images ) ); |
|
| 5579 | + $images_count = max($images_count, count($current_images)); |
|
| 5580 | 5580 | } |
| 5581 | 5581 | |
| 5582 | 5582 | $csv_row = array(); |
@@ -5588,7 +5588,7 @@ discard block |
||
| 5588 | 5588 | $csv_row[] = $default_category; // default_category |
| 5589 | 5589 | $csv_row[] = $post_tags; // post_tags |
| 5590 | 5590 | $csv_row[] = $post_type; // post_type |
| 5591 | - if ( $post_type == 'gd_event' ) {
|
|
| 5591 | + if ($post_type == 'gd_event') {
|
|
| 5592 | 5592 | $event_data = geodir_imex_get_event_data($post, $gd_post_info); |
| 5593 | 5593 | $csv_row[] = $event_data['event_date']; // event_date |
| 5594 | 5594 | $csv_row[] = $event_data['event_enddate']; // enddate |
@@ -5609,12 +5609,12 @@ discard block |
||
| 5609 | 5609 | $csv_row[] = $event_data['recurring_end_date']; // repeat_end |
| 5610 | 5610 | } |
| 5611 | 5611 | $csv_row[] = $post_info['post_status']; // post_status |
| 5612 | - $csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
|
| 5612 | + $csv_row[] = (int) $post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
|
| 5613 | 5613 | if ($is_claim_active) {
|
| 5614 | - $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5614 | + $csv_row[] = !empty($post_info['claimed']) && (int) $post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5615 | 5615 | } |
| 5616 | 5616 | if ($is_payment_plugin) {
|
| 5617 | - $csv_row[] = (int)$post_info['package_id']; // package_id |
|
| 5617 | + $csv_row[] = (int) $post_info['package_id']; // package_id |
|
| 5618 | 5618 | $csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
|
| 5619 | 5619 | } |
| 5620 | 5620 | $csv_row[] = $post_info['post_date']; // post_date |
@@ -5650,14 +5650,14 @@ discard block |
||
| 5650 | 5650 | $csv_row[] = $post_info['geodir_special_offers']; // geodir_special_offers |
| 5651 | 5651 | // WPML |
| 5652 | 5652 | if ($is_wpml) {
|
| 5653 | - $csv_row[] = geodir_get_language_for_element( $post_id, 'post_' . $post_type ); |
|
| 5654 | - $csv_row[] = geodir_imex_original_post_id( $post_id, 'post_' . $post_type ); |
|
| 5653 | + $csv_row[] = geodir_get_language_for_element($post_id, 'post_'.$post_type); |
|
| 5654 | + $csv_row[] = geodir_imex_original_post_id($post_id, 'post_'.$post_type); |
|
| 5655 | 5655 | } |
| 5656 | 5656 | // WPML |
| 5657 | 5657 | |
| 5658 | - if ( !empty( $custom_fields ) ) {
|
|
| 5659 | - foreach ( $custom_fields as $custom_field ) {
|
|
| 5660 | - $csv_row[] = isset( $post_info[$custom_field->htmlvar_name] ) ? $post_info[$custom_field->htmlvar_name] : ''; |
|
| 5658 | + if (!empty($custom_fields)) {
|
|
| 5659 | + foreach ($custom_fields as $custom_field) {
|
|
| 5660 | + $csv_row[] = isset($post_info[$custom_field->htmlvar_name]) ? $post_info[$custom_field->htmlvar_name] : ''; |
|
| 5661 | 5661 | } |
| 5662 | 5662 | } |
| 5663 | 5663 | |
@@ -5668,15 +5668,15 @@ discard block |
||
| 5668 | 5668 | $franchise = ''; |
| 5669 | 5669 | |
| 5670 | 5670 | if (geodir_franchise_pkg_is_active($gd_post_info)) {
|
| 5671 | - $gd_is_franchise = (int)get_post_meta( $post_id, 'gd_is_franchise', true ); |
|
| 5672 | - $locaked_fields = $gd_is_franchise ? get_post_meta( $post_id, 'gd_franchise_lock', true ) : ''; |
|
| 5671 | + $gd_is_franchise = (int) get_post_meta($post_id, 'gd_is_franchise', true); |
|
| 5672 | + $locaked_fields = $gd_is_franchise ? get_post_meta($post_id, 'gd_franchise_lock', true) : ''; |
|
| 5673 | 5673 | $locaked_fields = (is_array($locaked_fields) && !empty($locaked_fields) ? implode(",", $locaked_fields) : '');
|
| 5674 | - $franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 ? (int)$post_info['franchise'] : 0; // franchise id |
|
| 5674 | + $franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 ? (int) $post_info['franchise'] : 0; // franchise id |
|
| 5675 | 5675 | } |
| 5676 | 5676 | |
| 5677 | - $csv_row[] = (int)$gd_is_franchise; // gd_is_franchise |
|
| 5677 | + $csv_row[] = (int) $gd_is_franchise; // gd_is_franchise |
|
| 5678 | 5678 | $csv_row[] = $locaked_fields; // gd_franchise_lock fields |
| 5679 | - $csv_row[] = (int)$franchise; // franchise id |
|
| 5679 | + $csv_row[] = (int) $franchise; // franchise id |
|
| 5680 | 5680 | } |
| 5681 | 5681 | |
| 5682 | 5682 | /** |
@@ -5690,15 +5690,15 @@ discard block |
||
| 5690 | 5690 | */ |
| 5691 | 5691 | $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
| 5692 | 5692 | |
| 5693 | - for ( $c = 0; $c < $images_count; $c++ ) {
|
|
| 5694 | - $csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE |
|
| 5693 | + for ($c = 0; $c < $images_count; $c++) {
|
|
| 5694 | + $csv_row[] = isset($current_images[$c]) ? $current_images[$c] : ''; // IMAGE |
|
| 5695 | 5695 | } |
| 5696 | 5696 | |
| 5697 | 5697 | $csv_rows[] = $csv_row; |
| 5698 | 5698 | |
| 5699 | 5699 | } |
| 5700 | 5700 | |
| 5701 | - for ( $c = 0; $c < $images_count; $c++ ) {
|
|
| 5701 | + for ($c = 0; $c < $images_count; $c++) {
|
|
| 5702 | 5702 | $csv_rows[0][] = 'IMAGE'; |
| 5703 | 5703 | } |
| 5704 | 5704 | } |
@@ -5720,30 +5720,30 @@ discard block |
||
| 5720 | 5720 | * @param int $page_no Page number. Default 0. |
| 5721 | 5721 | * @return array Array of posts data. |
| 5722 | 5722 | */ |
| 5723 | -function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5723 | +function geodir_get_export_posts($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5724 | 5724 | global $wpdb, $plugin_prefix; |
| 5725 | 5725 | |
| 5726 | - if ( ! post_type_exists( $post_type ) ) |
|
| 5726 | + if (!post_type_exists($post_type)) |
|
| 5727 | 5727 | return new stdClass; |
| 5728 | 5728 | |
| 5729 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5729 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5730 | 5730 | |
| 5731 | 5731 | $limit = ''; |
| 5732 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5733 | - $offset = ( $page_no - 1 ) * $per_page; |
|
| 5732 | + if ($per_page > 0 && $page_no > 0) {
|
|
| 5733 | + $offset = ($page_no - 1) * $per_page; |
|
| 5734 | 5734 | |
| 5735 | - if ( $offset > 0 ) {
|
|
| 5736 | - $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5735 | + if ($offset > 0) {
|
|
| 5736 | + $limit = " LIMIT ".$offset.",".$per_page; |
|
| 5737 | 5737 | } else {
|
| 5738 | - $limit = " LIMIT " . $per_page; |
|
| 5738 | + $limit = " LIMIT ".$per_page; |
|
| 5739 | 5739 | } |
| 5740 | 5740 | } |
| 5741 | 5741 | |
| 5742 | 5742 | // Skip listing with statuses trash, auto-draft etc... |
| 5743 | 5743 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5744 | 5744 | $where_statuses = ''; |
| 5745 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5746 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5745 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5746 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5747 | 5747 | } |
| 5748 | 5748 | |
| 5749 | 5749 | /** |
@@ -5754,9 +5754,9 @@ discard block |
||
| 5754 | 5754 | * |
| 5755 | 5755 | * @param string $where SQL where clause part. |
| 5756 | 5756 | */ |
| 5757 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5757 | + $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
|
|
| 5758 | 5758 | |
| 5759 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5759 | + $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." ORDER BY {$wpdb->posts}.ID ASC".$limit, $post_type);
|
|
| 5760 | 5760 | /** |
| 5761 | 5761 | * Modify returned posts SQL query for the current post type. |
| 5762 | 5762 | * |
@@ -5766,8 +5766,8 @@ discard block |
||
| 5766 | 5766 | * @param int $query The SQL query. |
| 5767 | 5767 | * @param string $post_type Post type. |
| 5768 | 5768 | */ |
| 5769 | - $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5770 | - $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5769 | + $query = apply_filters('geodir_imex_export_posts_query', $query, $post_type);
|
|
| 5770 | + $results = (array) $wpdb->get_results($wpdb->prepare($query, $post_type), ARRAY_A); |
|
| 5771 | 5771 | |
| 5772 | 5772 | /** |
| 5773 | 5773 | * Modify returned post results for the current post type. |
@@ -5778,7 +5778,7 @@ discard block |
||
| 5778 | 5778 | * @param object $results An object containing all post ids. |
| 5779 | 5779 | * @param string $post_type Post type. |
| 5780 | 5780 | */ |
| 5781 | - return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5781 | + return apply_filters('geodir_export_posts', $results, $post_type);
|
|
| 5782 | 5782 | } |
| 5783 | 5783 | |
| 5784 | 5784 | /** |
@@ -5796,24 +5796,24 @@ discard block |
||
| 5796 | 5796 | * @param string $post_type Post type. |
| 5797 | 5797 | * @return string The SQL query. |
| 5798 | 5798 | */ |
| 5799 | -function geodir_imex_get_events_query( $query, $post_type ) {
|
|
| 5800 | - if ( $post_type == 'gd_event' ) {
|
|
| 5799 | +function geodir_imex_get_events_query($query, $post_type) {
|
|
| 5800 | + if ($post_type == 'gd_event') {
|
|
| 5801 | 5801 | global $wpdb, $plugin_prefix; |
| 5802 | 5802 | |
| 5803 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5803 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5804 | 5804 | $schedule_table = EVENT_SCHEDULE; |
| 5805 | 5805 | |
| 5806 | 5806 | // Skip listing with statuses trash, auto-draft etc... |
| 5807 | 5807 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5808 | 5808 | $where_statuses = ''; |
| 5809 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5810 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5809 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5810 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5811 | 5811 | } |
| 5812 | 5812 | |
| 5813 | 5813 | /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
| 5814 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5814 | + $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
|
|
| 5815 | 5815 | |
| 5816 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5816 | + $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type);
|
|
| 5817 | 5817 | } |
| 5818 | 5818 | |
| 5819 | 5819 | return $query; |
@@ -5837,35 +5837,35 @@ discard block |
||
| 5837 | 5837 | * @param string $post_type Post type. |
| 5838 | 5838 | * @return int Total terms count. |
| 5839 | 5839 | */ |
| 5840 | -function geodir_get_terms_count( $post_type ) {
|
|
| 5841 | - $args = array( 'hide_empty' => 0 ); |
|
| 5840 | +function geodir_get_terms_count($post_type) {
|
|
| 5841 | + $args = array('hide_empty' => 0);
|
|
| 5842 | 5842 | |
| 5843 | - remove_all_filters( 'get_terms' ); |
|
| 5843 | + remove_all_filters('get_terms');
|
|
| 5844 | 5844 | |
| 5845 | - $taxonomy = $post_type . 'category'; |
|
| 5845 | + $taxonomy = $post_type.'category'; |
|
| 5846 | 5846 | |
| 5847 | 5847 | // WPML |
| 5848 | 5848 | $is_wpml = geodir_is_wpml(); |
| 5849 | 5849 | $active_lang = 'all'; |
| 5850 | - if ( $is_wpml ) {
|
|
| 5850 | + if ($is_wpml) {
|
|
| 5851 | 5851 | global $sitepress; |
| 5852 | 5852 | $active_lang = $sitepress->get_current_language(); |
| 5853 | 5853 | |
| 5854 | - if ( $active_lang != 'all' ) {
|
|
| 5855 | - $sitepress->switch_lang( 'all', true ); |
|
| 5854 | + if ($active_lang != 'all') {
|
|
| 5855 | + $sitepress->switch_lang('all', true);
|
|
| 5856 | 5856 | } |
| 5857 | 5857 | } |
| 5858 | 5858 | // WPML |
| 5859 | 5859 | |
| 5860 | - $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5860 | + $count_terms = wp_count_terms($taxonomy, $args); |
|
| 5861 | 5861 | |
| 5862 | 5862 | // WPML |
| 5863 | - if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5863 | + if ($is_wpml && $active_lang !== 'all') {
|
|
| 5864 | 5864 | global $sitepress; |
| 5865 | - $sitepress->switch_lang( $active_lang, true ); |
|
| 5865 | + $sitepress->switch_lang($active_lang, true); |
|
| 5866 | 5866 | } |
| 5867 | 5867 | // WPML |
| 5868 | - $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5868 | + $count_terms = !is_wp_error($count_terms) ? $count_terms : 0; |
|
| 5869 | 5869 | |
| 5870 | 5870 | return $count_terms; |
| 5871 | 5871 | } |
@@ -5882,23 +5882,23 @@ discard block |
||
| 5882 | 5882 | * @param int $page_no Page number. Default 0. |
| 5883 | 5883 | * @return array Array of terms data. |
| 5884 | 5884 | */ |
| 5885 | -function geodir_imex_get_terms( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5886 | - $args = array( 'hide_empty' => 0, 'orderby' => 'id' ); |
|
| 5885 | +function geodir_imex_get_terms($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5886 | + $args = array('hide_empty' => 0, 'orderby' => 'id');
|
|
| 5887 | 5887 | |
| 5888 | - remove_all_filters( 'get_terms' ); |
|
| 5888 | + remove_all_filters('get_terms');
|
|
| 5889 | 5889 | |
| 5890 | - $taxonomy = $post_type . 'category'; |
|
| 5890 | + $taxonomy = $post_type.'category'; |
|
| 5891 | 5891 | |
| 5892 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5893 | - $args['offset'] = ( $page_no - 1 ) * $per_page; |
|
| 5892 | + if ($per_page > 0 && $page_no > 0) {
|
|
| 5893 | + $args['offset'] = ($page_no - 1) * $per_page; |
|
| 5894 | 5894 | $args['number'] = $per_page; |
| 5895 | 5895 | } |
| 5896 | 5896 | |
| 5897 | - $terms = get_terms( $taxonomy, $args ); |
|
| 5897 | + $terms = get_terms($taxonomy, $args); |
|
| 5898 | 5898 | |
| 5899 | 5899 | $csv_rows = array(); |
| 5900 | 5900 | |
| 5901 | - if ( !empty( $terms ) ) {
|
|
| 5901 | + if (!empty($terms)) {
|
|
| 5902 | 5902 | $csv_row = array(); |
| 5903 | 5903 | $csv_row[] = 'cat_id'; |
| 5904 | 5904 | $csv_row[] = 'cat_name'; |
@@ -5920,16 +5920,16 @@ discard block |
||
| 5920 | 5920 | |
| 5921 | 5921 | $csv_rows[] = $csv_row; |
| 5922 | 5922 | |
| 5923 | - foreach ( $terms as $term ) {
|
|
| 5924 | - $cat_icon = get_tax_meta( $term->term_id, 'ct_cat_icon', false, $post_type ); |
|
| 5925 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 5923 | + foreach ($terms as $term) {
|
|
| 5924 | + $cat_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $post_type); |
|
| 5925 | + $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : ''; |
|
| 5926 | 5926 | |
| 5927 | - $cat_image = geodir_get_default_catimage( $term->term_id, $post_type ); |
|
| 5928 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 5927 | + $cat_image = geodir_get_default_catimage($term->term_id, $post_type); |
|
| 5928 | + $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; |
|
| 5929 | 5929 | |
| 5930 | 5930 | $cat_parent = ''; |
| 5931 | - if (isset($term->parent) && (int)$term->parent > 0 && term_exists((int)$term->parent, $taxonomy)) {
|
|
| 5932 | - $parent_term = (array)get_term_by( 'id', (int)$term->parent, $taxonomy ); |
|
| 5931 | + if (isset($term->parent) && (int) $term->parent > 0 && term_exists((int) $term->parent, $taxonomy)) {
|
|
| 5932 | + $parent_term = (array) get_term_by('id', (int) $term->parent, $taxonomy);
|
|
| 5933 | 5933 | $cat_parent = !empty($parent_term) && isset($parent_term['name']) ? $parent_term['name'] : ''; |
| 5934 | 5934 | } |
| 5935 | 5935 | |
@@ -5939,15 +5939,15 @@ discard block |
||
| 5939 | 5939 | $csv_row[] = $term->slug; |
| 5940 | 5940 | $csv_row[] = $post_type; |
| 5941 | 5941 | $csv_row[] = $cat_parent; |
| 5942 | - $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type ); |
|
| 5942 | + $csv_row[] = get_tax_meta($term->term_id, 'ct_cat_schema', false, $post_type); |
|
| 5943 | 5943 | // WPML |
| 5944 | 5944 | if ($is_wpml) {
|
| 5945 | - $csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5946 | - $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5945 | + $csv_row[] = geodir_get_language_for_element($term->term_id, 'tax_'.$taxonomy); |
|
| 5946 | + $csv_row[] = geodir_imex_original_post_id($term->term_id, 'tax_'.$taxonomy); |
|
| 5947 | 5947 | } |
| 5948 | 5948 | // WPML |
| 5949 | 5949 | $csv_row[] = $term->description; |
| 5950 | - $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_top_desc', false, $post_type ); |
|
| 5950 | + $csv_row[] = get_tax_meta($term->term_id, 'ct_cat_top_desc', false, $post_type); |
|
| 5951 | 5951 | $csv_row[] = $cat_image; |
| 5952 | 5952 | $csv_row[] = $cat_icon; |
| 5953 | 5953 | |
@@ -5966,10 +5966,10 @@ discard block |
||
| 5966 | 5966 | * @param bool $relative True for relative path & False for absolute path. |
| 5967 | 5967 | * @return string Path to the cache directory. |
| 5968 | 5968 | */ |
| 5969 | -function geodir_path_import_export( $relative = true ) {
|
|
| 5969 | +function geodir_path_import_export($relative = true) {
|
|
| 5970 | 5970 | $upload_dir = wp_upload_dir(); |
| 5971 | 5971 | |
| 5972 | - return $relative ? $upload_dir['baseurl'] . '/cache' : $upload_dir['basedir'] . '/cache'; |
|
| 5972 | + return $relative ? $upload_dir['baseurl'].'/cache' : $upload_dir['basedir'].'/cache'; |
|
| 5973 | 5973 | } |
| 5974 | 5974 | |
| 5975 | 5975 | /** |
@@ -5985,8 +5985,8 @@ discard block |
||
| 5985 | 5985 | * @param bool $clear If true then it overwrite data otherwise add rows at the end of file. |
| 5986 | 5986 | * @return bool true if success otherwise false. |
| 5987 | 5987 | */ |
| 5988 | -function geodir_save_csv_data( $file_path, $csv_data = array(), $clear = true ) {
|
|
| 5989 | - if ( empty( $csv_data ) ) {
|
|
| 5988 | +function geodir_save_csv_data($file_path, $csv_data = array(), $clear = true) {
|
|
| 5989 | + if (empty($csv_data)) {
|
|
| 5990 | 5990 | return false; |
| 5991 | 5991 | } |
| 5992 | 5992 | |
@@ -5994,17 +5994,17 @@ discard block |
||
| 5994 | 5994 | |
| 5995 | 5995 | $mode = $clear ? 'w+' : 'a+'; |
| 5996 | 5996 | |
| 5997 | - if ( function_exists( 'fputcsv' ) ) {
|
|
| 5998 | - $file = fopen( $file_path, $mode ); |
|
| 5999 | - foreach( $csv_data as $csv_row ) {
|
|
| 5997 | + if (function_exists('fputcsv')) {
|
|
| 5998 | + $file = fopen($file_path, $mode); |
|
| 5999 | + foreach ($csv_data as $csv_row) {
|
|
| 6000 | 6000 | //$csv_row = array_map( 'utf8_decode', $csv_row ); |
| 6001 | - $write_successful = fputcsv( $file, $csv_row, ",", $enclosure = '"' ); |
|
| 6001 | + $write_successful = fputcsv($file, $csv_row, ",", $enclosure = '"'); |
|
| 6002 | 6002 | } |
| 6003 | - fclose( $file ); |
|
| 6003 | + fclose($file); |
|
| 6004 | 6004 | } else {
|
| 6005 | - foreach( $csv_data as $csv_row ) {
|
|
| 6005 | + foreach ($csv_data as $csv_row) {
|
|
| 6006 | 6006 | //$csv_row = array_map( 'utf8_decode', $csv_row ); |
| 6007 | - $wp_filesystem->put_contents( $file_path, $csv_row ); |
|
| 6007 | + $wp_filesystem->put_contents($file_path, $csv_row); |
|
| 6008 | 6008 | } |
| 6009 | 6009 | } |
| 6010 | 6010 | |
@@ -6022,14 +6022,14 @@ discard block |
||
| 6022 | 6022 | * @param string $file Full path to file. |
| 6023 | 6023 | * @return int No of file rows. |
| 6024 | 6024 | */ |
| 6025 | -function geodir_import_export_line_count( $file ) {
|
|
| 6025 | +function geodir_import_export_line_count($file) {
|
|
| 6026 | 6026 | global $wp_filesystem; |
| 6027 | 6027 | |
| 6028 | - if ( $wp_filesystem->is_file( $file ) && $wp_filesystem->exists( $file ) ) {
|
|
| 6029 | - $contents = $wp_filesystem->get_contents_array( $file ); |
|
| 6028 | + if ($wp_filesystem->is_file($file) && $wp_filesystem->exists($file)) {
|
|
| 6029 | + $contents = $wp_filesystem->get_contents_array($file); |
|
| 6030 | 6030 | |
| 6031 | - if ( !empty( $contents ) && is_array( $contents ) ) {
|
|
| 6032 | - return count( $contents ) - 1; |
|
| 6031 | + if (!empty($contents) && is_array($contents)) {
|
|
| 6032 | + return count($contents) - 1; |
|
| 6033 | 6033 | } |
| 6034 | 6034 | } |
| 6035 | 6035 | |
@@ -6046,11 +6046,11 @@ discard block |
||
| 6046 | 6046 | * @param string $post_type The post type. |
| 6047 | 6047 | * @return object Queried object. |
| 6048 | 6048 | */ |
| 6049 | -function geodir_imex_get_custom_fields( $post_type ) {
|
|
| 6049 | +function geodir_imex_get_custom_fields($post_type) {
|
|
| 6050 | 6050 | global $wpdb; |
| 6051 | 6051 | |
| 6052 | - $sql = $wpdb->prepare("SELECT htmlvar_name FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array( $post_type ) );
|
|
| 6053 | - $rows = $wpdb->get_results( $sql ); |
|
| 6052 | + $sql = $wpdb->prepare("SELECT htmlvar_name FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array($post_type));
|
|
| 6053 | + $rows = $wpdb->get_results($sql); |
|
| 6054 | 6054 | |
| 6055 | 6055 | return $rows; |
| 6056 | 6056 | } |
@@ -6129,14 +6129,14 @@ discard block |
||
| 6129 | 6129 | global $wpdb, $plugin_prefix; |
| 6130 | 6130 | |
| 6131 | 6131 | $post_type = get_post_type($master_post_id); |
| 6132 | - $post_table = $plugin_prefix . $post_type . '_detail'; |
|
| 6132 | + $post_table = $plugin_prefix.$post_type.'_detail'; |
|
| 6133 | 6133 | |
| 6134 | - $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
|
|
| 6135 | - $data = (array)$wpdb->get_row($query); |
|
| 6134 | + $query = $wpdb->prepare("SELECT * FROM ".$post_table." WHERE post_id = %d", array($master_post_id));
|
|
| 6135 | + $data = (array) $wpdb->get_row($query); |
|
| 6136 | 6136 | |
| 6137 | - if ( !empty( $data ) ) {
|
|
| 6137 | + if (!empty($data)) {
|
|
| 6138 | 6138 | $data['post_id'] = $tr_post_id; |
| 6139 | - unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category'], $data['overall_rating'], $data['rating_count'], $data['ratings']); |
|
| 6139 | + unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type.'category'], $data['overall_rating'], $data['rating_count'], $data['ratings']); |
|
| 6140 | 6140 | |
| 6141 | 6141 | $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
|
| 6142 | 6142 | return true; |
@@ -6162,7 +6162,7 @@ discard block |
||
| 6162 | 6162 | global $sitepress, $wpdb; |
| 6163 | 6163 | $post_type = get_post_type($master_post_id); |
| 6164 | 6164 | |
| 6165 | - remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
|
|
| 6165 | + remove_filter('get_term', array($sitepress, 'get_term_adjust_id')); // AVOID filtering to current language
|
|
| 6166 | 6166 | |
| 6167 | 6167 | $taxonomies = get_object_taxonomies($post_type); |
| 6168 | 6168 | foreach ($taxonomies as $taxonomy) {
|
@@ -6171,9 +6171,9 @@ discard block |
||
| 6171 | 6171 | |
| 6172 | 6172 | if ($terms) {
|
| 6173 | 6173 | foreach ($terms as $term) {
|
| 6174 | - $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang); |
|
| 6174 | + $tr_id = apply_filters('translate_object_id', $term->term_id, $taxonomy, false, $lang);
|
|
| 6175 | 6175 | |
| 6176 | - if (!is_null($tr_id)){
|
|
| 6176 | + if (!is_null($tr_id)) {
|
|
| 6177 | 6177 | // not using get_term - unfiltered get_term |
| 6178 | 6178 | $translated_term = $wpdb->get_row($wpdb->prepare("
|
| 6179 | 6179 | SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy));
|
@@ -6182,14 +6182,14 @@ discard block |
||
| 6182 | 6182 | } |
| 6183 | 6183 | } |
| 6184 | 6184 | |
| 6185 | - if (!is_taxonomy_hierarchical($taxonomy)){
|
|
| 6186 | - $terms_array = array_unique( array_map( 'intval', $terms_array ) ); |
|
| 6185 | + if (!is_taxonomy_hierarchical($taxonomy)) {
|
|
| 6186 | + $terms_array = array_unique(array_map('intval', $terms_array));
|
|
| 6187 | 6187 | } |
| 6188 | 6188 | |
| 6189 | 6189 | wp_set_post_terms($tr_post_id, $terms_array, $taxonomy); |
| 6190 | 6190 | |
| 6191 | - if ($taxonomy == $post_type . 'category') {
|
|
| 6192 | - geodir_set_postcat_structure($tr_post_id, $post_type . 'category'); |
|
| 6191 | + if ($taxonomy == $post_type.'category') {
|
|
| 6192 | + geodir_set_postcat_structure($tr_post_id, $post_type.'category'); |
|
| 6193 | 6193 | } |
| 6194 | 6194 | } |
| 6195 | 6195 | } |
@@ -6210,15 +6210,15 @@ discard block |
||
| 6210 | 6210 | function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
|
| 6211 | 6211 | global $wpdb; |
| 6212 | 6212 | |
| 6213 | - $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
|
|
| 6213 | + $query = $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
|
|
| 6214 | 6214 | $wpdb->query($query); |
| 6215 | 6215 | |
| 6216 | - $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
|
|
| 6216 | + $query = $wpdb->prepare("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
|
|
| 6217 | 6217 | $post_images = $wpdb->get_results($query); |
| 6218 | 6218 | |
| 6219 | - if ( !empty( $post_images ) ) {
|
|
| 6220 | - foreach ( $post_images as $post_image) {
|
|
| 6221 | - $image_data = (array)$post_image; |
|
| 6219 | + if (!empty($post_images)) {
|
|
| 6220 | + foreach ($post_images as $post_image) {
|
|
| 6221 | + $image_data = (array) $post_image; |
|
| 6222 | 6222 | unset($image_data['ID']); |
| 6223 | 6223 | $image_data['post_id'] = $tr_post_id; |
| 6224 | 6224 | |
@@ -6244,10 +6244,10 @@ discard block |
||
| 6244 | 6244 | * @return array Event data array. |
| 6245 | 6245 | */ |
| 6246 | 6246 | function geodir_imex_get_event_data($post, $gd_post_info) {
|
| 6247 | - $event_date = isset( $post['event_date'] ) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $post['event_date'] ) ) : ''; |
|
| 6247 | + $event_date = isset($post['event_date']) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($post['event_date'])) : '';
|
|
| 6248 | 6248 | $event_enddate = $event_date; |
| 6249 | - $starttime = isset( $post['starttime'] ) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['starttime'] ) ) : ''; |
|
| 6250 | - $endtime = isset( $post['endtime'] ) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['endtime'] ) ) : ''; |
|
| 6249 | + $starttime = isset($post['starttime']) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['starttime'])) : '';
|
|
| 6250 | + $endtime = isset($post['endtime']) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['endtime'])) : '';
|
|
| 6251 | 6251 | |
| 6252 | 6252 | $is_recurring_event = ''; |
| 6253 | 6253 | $event_duration_days = ''; |
@@ -6264,15 +6264,15 @@ discard block |
||
| 6264 | 6264 | |
| 6265 | 6265 | $recurring_data = isset($gd_post_info->recurring_dates) ? maybe_unserialize($gd_post_info->recurring_dates) : array(); |
| 6266 | 6266 | if (!empty($recurring_data)) {
|
| 6267 | - $event_date = isset( $recurring_data['event_start'] ) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_start'] ) ) : $event_date; |
|
| 6268 | - $event_enddate = isset( $recurring_data['event_end'] ) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_end'] ) ) : $event_date; |
|
| 6269 | - $starttime = isset( $recurring_data['starttime'] ) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['starttime'] ) ) : $starttime; |
|
| 6270 | - $endtime = isset( $recurring_data['endtime'] ) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['endtime'] ) ) : $endtime; |
|
| 6267 | + $event_date = isset($recurring_data['event_start']) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_start'])) : $event_date;
|
|
| 6268 | + $event_enddate = isset($recurring_data['event_end']) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_end'])) : $event_date;
|
|
| 6269 | + $starttime = isset($recurring_data['starttime']) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['starttime'])) : $starttime;
|
|
| 6270 | + $endtime = isset($recurring_data['endtime']) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['endtime'])) : $endtime;
|
|
| 6271 | 6271 | $is_whole_day_event = !empty($recurring_data['all_day']) ? 1 : ''; |
| 6272 | 6272 | $different_times = !empty($recurring_data['different_times']) ? true : false; |
| 6273 | 6273 | |
| 6274 | - $recurring_pkg = geodir_event_recurring_pkg( $gd_post_info ); |
|
| 6275 | - $is_recurring = isset( $gd_post_info->is_recurring ) && (int)$gd_post_info->is_recurring == 0 ? false : true; |
|
| 6274 | + $recurring_pkg = geodir_event_recurring_pkg($gd_post_info); |
|
| 6275 | + $is_recurring = isset($gd_post_info->is_recurring) && (int) $gd_post_info->is_recurring == 0 ? false : true; |
|
| 6276 | 6276 | |
| 6277 | 6277 | if ($recurring_pkg && $is_recurring) {
|
| 6278 | 6278 | $recurring_dates = $event_date; |
@@ -6282,13 +6282,13 @@ discard block |
||
| 6282 | 6282 | $recurring_type = !empty($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'custom';
|
| 6283 | 6283 | |
| 6284 | 6284 | if (!empty($recurring_data['event_recurring_dates'])) {
|
| 6285 | - $event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] ); |
|
| 6285 | + $event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
|
|
| 6286 | 6286 | |
| 6287 | 6287 | if (!empty($event_recurring_dates)) {
|
| 6288 | 6288 | $recurring_dates = array(); |
| 6289 | 6289 | |
| 6290 | 6290 | foreach ($event_recurring_dates as $date) {
|
| 6291 | - $recurring_dates[] = date_i18n( 'd/m/Y', strtotime( $date ) ); |
|
| 6291 | + $recurring_dates[] = date_i18n('d/m/Y', strtotime($date));
|
|
| 6292 | 6292 | } |
| 6293 | 6293 | |
| 6294 | 6294 | $recurring_dates = implode(",", $recurring_dates);
|
@@ -6304,7 +6304,7 @@ discard block |
||
| 6304 | 6304 | $times = array(); |
| 6305 | 6305 | |
| 6306 | 6306 | foreach ($recurring_data['starttimes'] as $time) {
|
| 6307 | - $times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00'; |
|
| 6307 | + $times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
|
|
| 6308 | 6308 | } |
| 6309 | 6309 | |
| 6310 | 6310 | $event_starttimes = implode(",", $times);
|
@@ -6314,7 +6314,7 @@ discard block |
||
| 6314 | 6314 | $times = array(); |
| 6315 | 6315 | |
| 6316 | 6316 | foreach ($recurring_data['endtimes'] as $time) {
|
| 6317 | - $times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00'; |
|
| 6317 | + $times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
|
|
| 6318 | 6318 | } |
| 6319 | 6319 | |
| 6320 | 6320 | $event_endtimes = implode(",", $times);
|
@@ -6326,8 +6326,8 @@ discard block |
||
| 6326 | 6326 | } |
| 6327 | 6327 | } |
| 6328 | 6328 | } else {
|
| 6329 | - $event_duration_days = isset($recurring_data['duration_x']) ? (int)$recurring_data['duration_x'] : 1; |
|
| 6330 | - $recurring_interval = !empty($recurring_data['repeat_x']) && (int)$recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1; |
|
| 6329 | + $event_duration_days = isset($recurring_data['duration_x']) ? (int) $recurring_data['duration_x'] : 1; |
|
| 6330 | + $recurring_interval = !empty($recurring_data['repeat_x']) && (int) $recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1; |
|
| 6331 | 6331 | |
| 6332 | 6332 | if (($recurring_type == 'week' || $recurring_type == 'month') && !empty($recurring_data['repeat_days'])) {
|
| 6333 | 6333 | $week_days = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
|
@@ -6343,11 +6343,11 @@ discard block |
||
| 6343 | 6343 | } |
| 6344 | 6344 | |
| 6345 | 6345 | $recurring_week_nos = $recurring_type == 'month' && !empty($recurring_data['repeat_weeks']) ? implode(",", $recurring_data['repeat_weeks']) : $recurring_week_nos;
|
| 6346 | - if (!empty($recurring_data['repeat_end_type']) && (int)$recurring_data['repeat_end_type'] == 1) {
|
|
| 6347 | - $recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['repeat_end'] ) ) : ''; |
|
| 6346 | + if (!empty($recurring_data['repeat_end_type']) && (int) $recurring_data['repeat_end_type'] == 1) {
|
|
| 6347 | + $recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['repeat_end'])) : '';
|
|
| 6348 | 6348 | $max_recurring_count = empty($recurring_end_date) ? 1 : ''; |
| 6349 | 6349 | } else {
|
| 6350 | - $max_recurring_count = (!empty($recurring_data['max_repeat']) && (int)$recurring_data['max_repeat'] > 0 ? (int)$recurring_data['max_repeat'] : 1); |
|
| 6350 | + $max_recurring_count = (!empty($recurring_data['max_repeat']) && (int) $recurring_data['max_repeat'] > 0 ? (int) $recurring_data['max_repeat'] : 1); |
|
| 6351 | 6351 | } |
| 6352 | 6352 | } |
| 6353 | 6353 | } |
@@ -6411,9 +6411,9 @@ discard block |
||
| 6411 | 6411 | * @return array Event data array. |
| 6412 | 6412 | */ |
| 6413 | 6413 | function geodir_imex_process_event_data($gd_post) {
|
| 6414 | - $recurring_pkg = geodir_event_recurring_pkg( (object)$gd_post ); |
|
| 6414 | + $recurring_pkg = geodir_event_recurring_pkg((object) $gd_post); |
|
| 6415 | 6415 | |
| 6416 | - $is_recurring = isset( $gd_post['is_recurring_event'] ) && (int)$gd_post['is_recurring_event'] == 0 ? false : true; |
|
| 6416 | + $is_recurring = isset($gd_post['is_recurring_event']) && (int) $gd_post['is_recurring_event'] == 0 ? false : true; |
|
| 6417 | 6417 | $event_date = isset($gd_post['event_date']) && $gd_post['event_date'] != '' ? geodir_imex_get_date_ymd($gd_post['event_date']) : ''; |
| 6418 | 6418 | $event_enddate = isset($gd_post['event_enddate']) && $gd_post['event_enddate'] != '' ? geodir_imex_get_date_ymd($gd_post['event_enddate']) : $event_date; |
| 6419 | 6419 | $all_day = isset($gd_post['is_whole_day_event']) && !empty($gd_post['is_whole_day_event']) ? true : false; |
@@ -6460,17 +6460,17 @@ discard block |
||
| 6460 | 6460 | $event_recurring_dates = implode(",", $event_recurring_dates);
|
| 6461 | 6461 | } |
| 6462 | 6462 | } else {
|
| 6463 | - $duration_x = !empty( $gd_post['event_duration_days'] ) ? (int)$gd_post['event_duration_days'] : 1; |
|
| 6464 | - $repeat_x = !empty( $gd_post['recurring_interval'] ) ? (int)$gd_post['recurring_interval'] : 1; |
|
| 6465 | - $max_repeat = !empty( $gd_post['max_recurring_count'] ) ? (int)$gd_post['max_recurring_count'] : 1; |
|
| 6466 | - $repeat_end = !empty( $gd_post['recurring_end_date'] ) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : ''; |
|
| 6463 | + $duration_x = !empty($gd_post['event_duration_days']) ? (int) $gd_post['event_duration_days'] : 1; |
|
| 6464 | + $repeat_x = !empty($gd_post['recurring_interval']) ? (int) $gd_post['recurring_interval'] : 1; |
|
| 6465 | + $max_repeat = !empty($gd_post['max_recurring_count']) ? (int) $gd_post['max_recurring_count'] : 1; |
|
| 6466 | + $repeat_end = !empty($gd_post['recurring_end_date']) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : ''; |
|
| 6467 | 6467 | |
| 6468 | 6468 | $repeat_end_type = $repeat_end != '' ? 1 : 0; |
| 6469 | 6469 | $max_repeat = $repeat_end != '' ? '' : $max_repeat; |
| 6470 | 6470 | |
| 6471 | 6471 | $week_days = array_flip(array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'));
|
| 6472 | 6472 | |
| 6473 | - $a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days'])!='' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
|
|
| 6473 | + $a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days']) != '' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
|
|
| 6474 | 6474 | $repeat_days = array(); |
| 6475 | 6475 | if (!empty($a_repeat_days)) {
|
| 6476 | 6476 | foreach ($a_repeat_days as $repeat_day) {
|
@@ -6488,7 +6488,7 @@ discard block |
||
| 6488 | 6488 | $repeat_weeks = array(); |
| 6489 | 6489 | if (!empty($a_repeat_weeks)) {
|
| 6490 | 6490 | foreach ($a_repeat_weeks as $repeat_week) {
|
| 6491 | - $repeat_weeks[] = (int)$repeat_week; |
|
| 6491 | + $repeat_weeks[] = (int) $repeat_week; |
|
| 6492 | 6492 | } |
| 6493 | 6493 | |
| 6494 | 6494 | $repeat_weeks = array_unique($repeat_weeks); |
@@ -6552,7 +6552,7 @@ discard block |
||
| 6552 | 6552 | |
| 6553 | 6553 | $page_found = $wpdb->get_var( |
| 6554 | 6554 | $wpdb->prepare( |
| 6555 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6555 | + "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;", |
|
| 6556 | 6556 | array($slug) |
| 6557 | 6557 | ) |
| 6558 | 6558 | ); |
@@ -6607,7 +6607,7 @@ discard block |
||
| 6607 | 6607 | */ |
| 6608 | 6608 | function geodir_admin_upgrade_notice() {
|
| 6609 | 6609 | $class = "error"; |
| 6610 | - $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6610 | + $message = __("Please update core GeoDirectory or some addons may not function correctly.", "geodirectory");
|
|
| 6611 | 6611 | echo"<div class=\"$class\"> <p>$message</p></div>"; |
| 6612 | 6612 | } |
| 6613 | 6613 | |
@@ -6619,7 +6619,7 @@ discard block |
||
| 6619 | 6619 | * @param (object) $r |
| 6620 | 6620 | * @return (string) $output |
| 6621 | 6621 | */ |
| 6622 | -function geodire_admin_upgrade_notice( $plugin_data, $r ) |
|
| 6622 | +function geodire_admin_upgrade_notice($plugin_data, $r) |
|
| 6623 | 6623 | {
|
| 6624 | 6624 | // readme contents |
| 6625 | 6625 | $args = array( |
@@ -6627,7 +6627,7 @@ discard block |
||
| 6627 | 6627 | 'redirection' => 5 |
| 6628 | 6628 | ); |
| 6629 | 6629 | $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
| 6630 | - $data = wp_remote_get( $url, $args ); |
|
| 6630 | + $data = wp_remote_get($url, $args); |
|
| 6631 | 6631 | |
| 6632 | 6632 | if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
| 6633 | 6633 | |
@@ -6642,20 +6642,20 @@ discard block |
||
| 6642 | 6642 | function geodir_in_plugin_update_message($content) {
|
| 6643 | 6643 | // Output Upgrade Notice |
| 6644 | 6644 | $matches = null; |
| 6645 | - $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6645 | + $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*'.preg_quote(GEODIRECTORY_VERSION).'\s*=|$)~Uis'; |
|
| 6646 | 6646 | $upgrade_notice = ''; |
| 6647 | - if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6648 | - if(empty($matches)){return;}
|
|
| 6647 | + if (preg_match($regexp, $content, $matches)) {
|
|
| 6648 | + if (empty($matches)) {return; }
|
|
| 6649 | 6649 | |
| 6650 | - $version = trim( $matches[1] ); |
|
| 6651 | - if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6650 | + $version = trim($matches[1]); |
|
| 6651 | + if ($version && $version > GEODIRECTORY_VERSION) {
|
|
| 6652 | 6652 | |
| 6653 | 6653 | |
| 6654 | - $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6655 | - if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6654 | + $notices = (array) preg_split('~[\r\n]+~', trim($matches[2]));
|
|
| 6655 | + if (version_compare(GEODIRECTORY_VERSION, $version, '<')) {
|
|
| 6656 | 6656 | $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
| 6657 | - foreach ( $notices as $index => $line ) {
|
|
| 6658 | - $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6657 | + foreach ($notices as $index => $line) {
|
|
| 6658 | + $upgrade_notice .= wp_kses_post(preg_replace('~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line));
|
|
| 6659 | 6659 | } |
| 6660 | 6660 | $upgrade_notice .= '</div> '; |
| 6661 | 6661 | } |
@@ -6679,7 +6679,7 @@ discard block |
||
| 6679 | 6679 | $default_language = $sitepress->get_default_language(); |
| 6680 | 6680 | if ($current_language != 'all' && $current_language != $default_language) {
|
| 6681 | 6681 | ?> |
| 6682 | - <div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory');?></strong></p></div>
|
|
| 6682 | + <div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory'); ?></strong></p></div>
|
|
| 6683 | 6683 | <?php |
| 6684 | 6684 | } |
| 6685 | 6685 | } |
@@ -6694,7 +6694,7 @@ discard block |
||
| 6694 | 6694 | * @param array Listing statuses to be skipped. |
| 6695 | 6695 | */ |
| 6696 | 6696 | function geodir_imex_export_skip_statuses() {
|
| 6697 | - $statuses = array( 'trash', 'auto-draft' ); |
|
| 6697 | + $statuses = array('trash', 'auto-draft');
|
|
| 6698 | 6698 | |
| 6699 | 6699 | /** |
| 6700 | 6700 | * Filter the statuses to skip during GD export listings. |
@@ -6704,7 +6704,7 @@ discard block |
||
| 6704 | 6704 | * |
| 6705 | 6705 | * @param array $statuses Listing statuses to be skipped. |
| 6706 | 6706 | */ |
| 6707 | - $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6707 | + $statuses = apply_filters('geodir_imex_export_skip_statuses', $statuses);
|
|
| 6708 | 6708 | |
| 6709 | 6709 | return $statuses; |
| 6710 | 6710 | } |
@@ -6744,16 +6744,16 @@ discard block |
||
| 6744 | 6744 | function geodir_imex_get_filter_where($where = '', $post_type = '') {
|
| 6745 | 6745 | global $wpdb; |
| 6746 | 6746 | |
| 6747 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6747 | + $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6748 | 6748 | |
| 6749 | - if ( !empty( $filters ) ) {
|
|
| 6750 | - foreach ( $filters as $field => $value ) {
|
|
| 6749 | + if (!empty($filters)) {
|
|
| 6750 | + foreach ($filters as $field => $value) {
|
|
| 6751 | 6751 | switch ($field) {
|
| 6752 | 6752 | case 'start_date': |
| 6753 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6753 | + $where .= " AND `".$wpdb->posts."`.`post_date` >= '".sanitize_text_field($value)." 00:00:00'"; |
|
| 6754 | 6754 | break; |
| 6755 | 6755 | case 'end_date': |
| 6756 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6756 | + $where .= " AND `".$wpdb->posts."`.`post_date` <= '".sanitize_text_field($value)." 23:59:59'"; |
|
| 6757 | 6757 | break; |
| 6758 | 6758 | } |
| 6759 | 6759 | } |