@@ -13,125 +13,125 @@ discard block |
||
13 | 13 | * @package GeoDirectory |
14 | 14 | */ |
15 | 15 | function geodir_deactivation() { |
16 | - // Update installed variable |
|
17 | - update_option("geodir_installed", 0); |
|
16 | + // Update installed variable |
|
17 | + update_option("geodir_installed", 0); |
|
18 | 18 | |
19 | - // Remove rewrite rules and then recreate rewrite rules. |
|
20 | - flush_rewrite_rules(); |
|
19 | + // Remove rewrite rules and then recreate rewrite rules. |
|
20 | + flush_rewrite_rules(); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | if (!function_exists('geodir_admin_styles')) { |
24 | - /** |
|
25 | - * Enqueue Admin Styles. |
|
26 | - * |
|
27 | - * @since 1.0.0 |
|
28 | - * @package GeoDirectory |
|
29 | - */ |
|
30 | - function geodir_admin_styles() { |
|
31 | - wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION); |
|
32 | - wp_enqueue_style('geodirectory-admin-css'); |
|
24 | + /** |
|
25 | + * Enqueue Admin Styles. |
|
26 | + * |
|
27 | + * @since 1.0.0 |
|
28 | + * @package GeoDirectory |
|
29 | + */ |
|
30 | + function geodir_admin_styles() { |
|
31 | + wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION); |
|
32 | + wp_enqueue_style('geodirectory-admin-css'); |
|
33 | 33 | |
34 | - wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION); |
|
35 | - wp_enqueue_style('geodirectory-frontend-style'); |
|
34 | + wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION); |
|
35 | + wp_enqueue_style('geodirectory-frontend-style'); |
|
36 | 36 | |
37 | - wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION); |
|
38 | - wp_enqueue_style('geodir-chosen-style'); |
|
37 | + wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION); |
|
38 | + wp_enqueue_style('geodir-chosen-style'); |
|
39 | 39 | |
40 | - wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION); |
|
41 | - wp_enqueue_style('geodirectory-jquery-ui-timepicker-css'); |
|
40 | + wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION); |
|
41 | + wp_enqueue_style('geodirectory-jquery-ui-timepicker-css'); |
|
42 | 42 | |
43 | - wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION); |
|
44 | - wp_enqueue_style('geodirectory-jquery-ui-css'); |
|
43 | + wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION); |
|
44 | + wp_enqueue_style('geodirectory-jquery-ui-css'); |
|
45 | 45 | |
46 | - wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION); |
|
47 | - wp_enqueue_style('geodirectory-custom-fields-css'); |
|
46 | + wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION); |
|
47 | + wp_enqueue_style('geodirectory-custom-fields-css'); |
|
48 | 48 | |
49 | - wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION); |
|
50 | - wp_enqueue_style('geodirectory-pluplodar-css'); |
|
49 | + wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION); |
|
50 | + wp_enqueue_style('geodirectory-pluplodar-css'); |
|
51 | 51 | |
52 | - wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION); |
|
53 | - wp_enqueue_style('geodir-rating-style'); |
|
52 | + wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION); |
|
53 | + wp_enqueue_style('geodir-rating-style'); |
|
54 | 54 | |
55 | - wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION); |
|
56 | - wp_enqueue_style('geodir-rtl-style'); |
|
57 | - } |
|
55 | + wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION); |
|
56 | + wp_enqueue_style('geodir-rtl-style'); |
|
57 | + } |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | if (!function_exists('geodir_admin_styles_req')) { |
61 | - /** |
|
62 | - * Loads stylesheets from CDN. |
|
63 | - * |
|
64 | - * @since 1.0.0 |
|
65 | - * @package GeoDirectory |
|
66 | - */ |
|
67 | - function geodir_admin_styles_req() |
|
68 | - { |
|
61 | + /** |
|
62 | + * Loads stylesheets from CDN. |
|
63 | + * |
|
64 | + * @since 1.0.0 |
|
65 | + * @package GeoDirectory |
|
66 | + */ |
|
67 | + function geodir_admin_styles_req() |
|
68 | + { |
|
69 | 69 | |
70 | - wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION); |
|
71 | - wp_enqueue_style('font-awesome'); |
|
70 | + wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION); |
|
71 | + wp_enqueue_style('font-awesome'); |
|
72 | 72 | |
73 | - wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION); |
|
74 | - wp_enqueue_script('geodirectory-admin'); |
|
73 | + wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION); |
|
74 | + wp_enqueue_script('geodirectory-admin'); |
|
75 | 75 | |
76 | - } |
|
76 | + } |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | if (!function_exists('geodir_admin_scripts')) { |
80 | - /** |
|
81 | - * Enqueue Admin Scripts. |
|
82 | - * |
|
83 | - * @since 1.0.0 |
|
84 | - * @package GeoDirectory |
|
85 | - */ |
|
86 | - function geodir_admin_scripts() |
|
87 | - { |
|
88 | - $geodir_map_name = geodir_map_name(); |
|
80 | + /** |
|
81 | + * Enqueue Admin Scripts. |
|
82 | + * |
|
83 | + * @since 1.0.0 |
|
84 | + * @package GeoDirectory |
|
85 | + */ |
|
86 | + function geodir_admin_scripts() |
|
87 | + { |
|
88 | + $geodir_map_name = geodir_map_name(); |
|
89 | 89 | |
90 | - wp_enqueue_script('jquery'); |
|
90 | + wp_enqueue_script('jquery'); |
|
91 | 91 | |
92 | - 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); |
|
92 | + 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); |
|
93 | 93 | |
94 | - wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION); |
|
95 | - wp_enqueue_script('chosen'); |
|
94 | + wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION); |
|
95 | + wp_enqueue_script('chosen'); |
|
96 | 96 | |
97 | - wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION); |
|
98 | - wp_enqueue_script('geodirectory-choose-ajax'); |
|
97 | + wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION); |
|
98 | + wp_enqueue_script('geodirectory-choose-ajax'); |
|
99 | 99 | |
100 | - if (isset($_REQUEST['listing_type'])) { |
|
101 | - wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION); |
|
102 | - } |
|
100 | + if (isset($_REQUEST['listing_type'])) { |
|
101 | + wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION); |
|
102 | + } |
|
103 | 103 | |
104 | - wp_enqueue_script('geodirectory-custom-fields-script'); |
|
105 | - $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
104 | + wp_enqueue_script('geodirectory-custom-fields-script'); |
|
105 | + $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
106 | 106 | |
107 | - wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true); |
|
107 | + wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true); |
|
108 | 108 | |
109 | - if (in_array($geodir_map_name, array('auto', 'google'))) { |
|
110 | - $map_lang = "&language=" . geodir_get_map_default_language(); |
|
111 | - $map_key = "&key=" . geodir_get_map_api_key(); |
|
112 | - /** This filter is documented in geodirectory_template_tags.php */ |
|
113 | - $map_extra = apply_filters('geodir_googlemap_script_extra', ''); |
|
114 | - wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL); |
|
115 | - } |
|
109 | + if (in_array($geodir_map_name, array('auto', 'google'))) { |
|
110 | + $map_lang = "&language=" . geodir_get_map_default_language(); |
|
111 | + $map_key = "&key=" . geodir_get_map_api_key(); |
|
112 | + /** This filter is documented in geodirectory_template_tags.php */ |
|
113 | + $map_extra = apply_filters('geodir_googlemap_script_extra', ''); |
|
114 | + wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL); |
|
115 | + } |
|
116 | 116 | |
117 | - if ($geodir_map_name == 'osm') { |
|
118 | - // Leaflet OpenStreetMap |
|
119 | - wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION); |
|
120 | - wp_enqueue_style('geodirectory-leaflet-style'); |
|
117 | + if ($geodir_map_name == 'osm') { |
|
118 | + // Leaflet OpenStreetMap |
|
119 | + wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION); |
|
120 | + wp_enqueue_style('geodirectory-leaflet-style'); |
|
121 | 121 | |
122 | - wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION); |
|
123 | - wp_enqueue_script('geodirectory-leaflet-script'); |
|
122 | + wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION); |
|
123 | + wp_enqueue_script('geodirectory-leaflet-script'); |
|
124 | 124 | |
125 | - wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION); |
|
126 | - wp_enqueue_script('geodirectory-leaflet-geo-script'); |
|
127 | - } |
|
128 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
125 | + wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION); |
|
126 | + wp_enqueue_script('geodirectory-leaflet-geo-script'); |
|
127 | + } |
|
128 | + wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
129 | 129 | |
130 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true); |
|
131 | - wp_enqueue_script('geodirectory-goMap-script'); |
|
130 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true); |
|
131 | + wp_enqueue_script('geodirectory-goMap-script'); |
|
132 | 132 | |
133 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION); |
|
134 | - wp_enqueue_script('geodirectory-goMap-script'); |
|
133 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION); |
|
134 | + wp_enqueue_script('geodirectory-goMap-script'); |
|
135 | 135 | |
136 | 136 | // font awesome rating script |
137 | 137 | if (get_option('geodir_reviewrating_enable_font_awesome')) { |
@@ -142,167 +142,167 @@ discard block |
||
142 | 142 | wp_enqueue_script('geodir-jRating-js'); |
143 | 143 | } |
144 | 144 | |
145 | - wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION); |
|
146 | - wp_enqueue_script('geodir-on-document-load'); |
|
147 | - |
|
148 | - |
|
149 | - // SCRIPT FOR UPLOAD |
|
150 | - wp_enqueue_script('plupload-all'); |
|
151 | - wp_enqueue_script('jquery-ui-sortable'); |
|
152 | - |
|
153 | - wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION); |
|
154 | - wp_enqueue_script('geodirectory-plupload-script'); |
|
155 | - |
|
156 | - // SCRIPT FOR UPLOAD END |
|
157 | - |
|
158 | - |
|
159 | - // place js config array for plupload |
|
160 | - $plupload_init = array( |
|
161 | - 'runtimes' => 'html5,silverlight,flash,html4', |
|
162 | - 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
163 | - 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
164 | - 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
165 | - 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
166 | - 'multiple_queues' => true, |
|
167 | - 'max_file_size' => geodir_max_upload_size(), |
|
168 | - 'url' => admin_url('admin-ajax.php'), |
|
169 | - 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'), |
|
170 | - 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'), |
|
171 | - 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')), |
|
172 | - 'multipart' => true, |
|
173 | - 'urlstream_upload' => true, |
|
174 | - 'multi_selection' => false, // will be added per uploader |
|
175 | - // additional post data to send to our ajax hook |
|
176 | - 'multipart_params' => array( |
|
177 | - '_ajax_nonce' => "", // will be added per uploader |
|
178 | - 'action' => 'plupload_action', // the ajax action name |
|
179 | - 'imgid' => 0 // will be added per uploader |
|
180 | - ) |
|
181 | - ); |
|
182 | - $base_plupload_config = json_encode($plupload_init); |
|
183 | - |
|
184 | - |
|
185 | - $thumb_img_arr = array(); |
|
186 | - |
|
187 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
188 | - $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
189 | - |
|
190 | - $totImg = ''; |
|
191 | - $image_limit = ''; |
|
192 | - if (!empty($thumb_img_arr)) { |
|
193 | - $totImg = count($thumb_img_arr); |
|
194 | - } |
|
145 | + wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION); |
|
146 | + wp_enqueue_script('geodir-on-document-load'); |
|
147 | + |
|
148 | + |
|
149 | + // SCRIPT FOR UPLOAD |
|
150 | + wp_enqueue_script('plupload-all'); |
|
151 | + wp_enqueue_script('jquery-ui-sortable'); |
|
152 | + |
|
153 | + wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION); |
|
154 | + wp_enqueue_script('geodirectory-plupload-script'); |
|
155 | + |
|
156 | + // SCRIPT FOR UPLOAD END |
|
157 | + |
|
158 | + |
|
159 | + // place js config array for plupload |
|
160 | + $plupload_init = array( |
|
161 | + 'runtimes' => 'html5,silverlight,flash,html4', |
|
162 | + 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
163 | + 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
164 | + 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
165 | + 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
166 | + 'multiple_queues' => true, |
|
167 | + 'max_file_size' => geodir_max_upload_size(), |
|
168 | + 'url' => admin_url('admin-ajax.php'), |
|
169 | + 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'), |
|
170 | + 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'), |
|
171 | + 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')), |
|
172 | + 'multipart' => true, |
|
173 | + 'urlstream_upload' => true, |
|
174 | + 'multi_selection' => false, // will be added per uploader |
|
175 | + // additional post data to send to our ajax hook |
|
176 | + 'multipart_params' => array( |
|
177 | + '_ajax_nonce' => "", // will be added per uploader |
|
178 | + 'action' => 'plupload_action', // the ajax action name |
|
179 | + 'imgid' => 0 // will be added per uploader |
|
180 | + ) |
|
181 | + ); |
|
182 | + $base_plupload_config = json_encode($plupload_init); |
|
183 | + |
|
184 | + |
|
185 | + $thumb_img_arr = array(); |
|
186 | + |
|
187 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
188 | + $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
189 | + |
|
190 | + $totImg = ''; |
|
191 | + $image_limit = ''; |
|
192 | + if (!empty($thumb_img_arr)) { |
|
193 | + $totImg = count($thumb_img_arr); |
|
194 | + } |
|
195 | 195 | |
196 | - $gd_plupload_init = array('base_plupload_config' => $base_plupload_config, |
|
197 | - 'totalImg' => $totImg, |
|
198 | - 'image_limit' => $image_limit, |
|
199 | - 'upload_img_size' => geodir_max_upload_size()); |
|
196 | + $gd_plupload_init = array('base_plupload_config' => $base_plupload_config, |
|
197 | + 'totalImg' => $totImg, |
|
198 | + 'image_limit' => $image_limit, |
|
199 | + 'upload_img_size' => geodir_max_upload_size()); |
|
200 | 200 | |
201 | - wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init); |
|
201 | + wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init); |
|
202 | 202 | |
203 | - $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php'))); |
|
204 | - wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data); |
|
203 | + $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php'))); |
|
204 | + wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data); |
|
205 | 205 | |
206 | 206 | |
207 | - wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION); |
|
208 | - wp_enqueue_script('geodirectory-admin-script'); |
|
207 | + wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION); |
|
208 | + wp_enqueue_script('geodirectory-admin-script'); |
|
209 | 209 | |
210 | - wp_enqueue_style('farbtastic'); |
|
211 | - wp_enqueue_script('farbtastic'); |
|
210 | + wp_enqueue_style('farbtastic'); |
|
211 | + wp_enqueue_script('farbtastic'); |
|
212 | 212 | |
213 | - $screen = get_current_screen(); |
|
214 | - if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) { |
|
215 | - wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js'); |
|
216 | - } |
|
213 | + $screen = get_current_screen(); |
|
214 | + if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) { |
|
215 | + wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js'); |
|
216 | + } |
|
217 | 217 | |
218 | - $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true'))); |
|
219 | - wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data); |
|
218 | + $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true'))); |
|
219 | + wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data); |
|
220 | 220 | |
221 | - } |
|
221 | + } |
|
222 | 222 | } |
223 | 223 | |
224 | 224 | if (!function_exists('geodir_admin_menu')) { |
225 | - /** |
|
226 | - * Admin Menus |
|
227 | - * |
|
228 | - * Sets up the admin menus in wordpress. |
|
229 | - * |
|
230 | - * @since 1.0.0 |
|
231 | - * @package GeoDirectory |
|
232 | - * @global array $menu Menu array. |
|
233 | - * @global object $geodirectory GeoDirectory plugin object. |
|
234 | - */ |
|
235 | - function geodir_admin_menu() |
|
236 | - { |
|
237 | - global $menu, $geodirectory; |
|
225 | + /** |
|
226 | + * Admin Menus |
|
227 | + * |
|
228 | + * Sets up the admin menus in wordpress. |
|
229 | + * |
|
230 | + * @since 1.0.0 |
|
231 | + * @package GeoDirectory |
|
232 | + * @global array $menu Menu array. |
|
233 | + * @global object $geodirectory GeoDirectory plugin object. |
|
234 | + */ |
|
235 | + function geodir_admin_menu() |
|
236 | + { |
|
237 | + global $menu, $geodirectory; |
|
238 | 238 | |
239 | - if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory'); |
|
239 | + if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory'); |
|
240 | 240 | |
241 | - add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984'); |
|
241 | + add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984'); |
|
242 | 242 | |
243 | 243 | |
244 | - } |
|
244 | + } |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | if (!function_exists('geodir_admin_menu_order')) { |
248 | - /** |
|
249 | - * Order admin menus. |
|
250 | - * |
|
251 | - * @since 1.0.0 |
|
252 | - * @package GeoDirectory |
|
253 | - * @param array $menu_order Menu order array. |
|
254 | - * @return array Modified menu order array. |
|
255 | - */ |
|
256 | - function geodir_admin_menu_order($menu_order) |
|
257 | - { |
|
258 | - |
|
259 | - // Initialize our custom order array |
|
260 | - $geodir_menu_order = array(); |
|
261 | - |
|
262 | - // Get the index of our custom separator |
|
263 | - $geodir_separator = array_search('separator-geodirectory', $menu_order); |
|
264 | - |
|
265 | - // Get index of posttype menu |
|
266 | - $post_types = geodir_get_posttypes(); |
|
267 | - |
|
268 | - // Loop through menu order and do some rearranging |
|
269 | - foreach ($menu_order as $index => $item) : |
|
270 | - |
|
271 | - if ((('geodirectory') == $item)) : |
|
272 | - $geodir_menu_order[] = 'separator-geodirectory'; |
|
273 | - if (!empty($post_types)) { |
|
274 | - foreach ($post_types as $post_type) { |
|
275 | - $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
276 | - } |
|
277 | - } |
|
278 | - $geodir_menu_order[] = $item; |
|
248 | + /** |
|
249 | + * Order admin menus. |
|
250 | + * |
|
251 | + * @since 1.0.0 |
|
252 | + * @package GeoDirectory |
|
253 | + * @param array $menu_order Menu order array. |
|
254 | + * @return array Modified menu order array. |
|
255 | + */ |
|
256 | + function geodir_admin_menu_order($menu_order) |
|
257 | + { |
|
279 | 258 | |
280 | - unset($menu_order[$geodir_separator]); |
|
281 | - //unset( $menu_order[$geodir_places] ); |
|
282 | - elseif (!in_array($item, array('separator-geodirectory'))) : |
|
283 | - $geodir_menu_order[] = $item; |
|
284 | - endif; |
|
259 | + // Initialize our custom order array |
|
260 | + $geodir_menu_order = array(); |
|
285 | 261 | |
286 | - endforeach; |
|
262 | + // Get the index of our custom separator |
|
263 | + $geodir_separator = array_search('separator-geodirectory', $menu_order); |
|
287 | 264 | |
288 | - // Return order |
|
289 | - return $geodir_menu_order; |
|
290 | - } |
|
265 | + // Get index of posttype menu |
|
266 | + $post_types = geodir_get_posttypes(); |
|
267 | + |
|
268 | + // Loop through menu order and do some rearranging |
|
269 | + foreach ($menu_order as $index => $item) : |
|
270 | + |
|
271 | + if ((('geodirectory') == $item)) : |
|
272 | + $geodir_menu_order[] = 'separator-geodirectory'; |
|
273 | + if (!empty($post_types)) { |
|
274 | + foreach ($post_types as $post_type) { |
|
275 | + $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
276 | + } |
|
277 | + } |
|
278 | + $geodir_menu_order[] = $item; |
|
279 | + |
|
280 | + unset($menu_order[$geodir_separator]); |
|
281 | + //unset( $menu_order[$geodir_places] ); |
|
282 | + elseif (!in_array($item, array('separator-geodirectory'))) : |
|
283 | + $geodir_menu_order[] = $item; |
|
284 | + endif; |
|
285 | + |
|
286 | + endforeach; |
|
287 | + |
|
288 | + // Return order |
|
289 | + return $geodir_menu_order; |
|
290 | + } |
|
291 | 291 | } |
292 | 292 | |
293 | 293 | if (!function_exists('geodir_admin_custom_menu_order')) { |
294 | - /** |
|
295 | - * Enables custom menu order. |
|
296 | - * |
|
297 | - * @since 1.0.0 |
|
298 | - * @package GeoDirectory |
|
299 | - * @return bool |
|
300 | - */ |
|
301 | - function geodir_admin_custom_menu_order() |
|
302 | - { |
|
303 | - if (!current_user_can('manage_options')) return false; |
|
304 | - return true; |
|
305 | - } |
|
294 | + /** |
|
295 | + * Enables custom menu order. |
|
296 | + * |
|
297 | + * @since 1.0.0 |
|
298 | + * @package GeoDirectory |
|
299 | + * @return bool |
|
300 | + */ |
|
301 | + function geodir_admin_custom_menu_order() |
|
302 | + { |
|
303 | + if (!current_user_can('manage_options')) return false; |
|
304 | + return true; |
|
305 | + } |
|
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
@@ -313,51 +313,51 @@ discard block |
||
313 | 313 | */ |
314 | 314 | function geodir_before_admin_panel() |
315 | 315 | { |
316 | - if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') { |
|
317 | - echo '<div id="message" class="updated fade"> |
|
316 | + if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') { |
|
317 | + echo '<div id="message" class="updated fade"> |
|
318 | 318 | <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> |
319 | 319 | <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p> |
320 | 320 | </div>'; |
321 | 321 | |
322 | - } |
|
322 | + } |
|
323 | 323 | |
324 | - if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') { |
|
325 | - switch ($_REQUEST['msg']) { |
|
326 | - case 'success': |
|
327 | - echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>'; |
|
328 | - flush_rewrite_rules(false); |
|
324 | + if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') { |
|
325 | + switch ($_REQUEST['msg']) { |
|
326 | + case 'success': |
|
327 | + echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>'; |
|
328 | + flush_rewrite_rules(false); |
|
329 | 329 | |
330 | - break; |
|
330 | + break; |
|
331 | 331 | case 'fail': |
332 | 332 | $gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : ''; |
333 | 333 | |
334 | 334 | if ($gderr == 21) |
335 | - 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>'; |
|
335 | + 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>'; |
|
336 | 336 | else |
337 | 337 | echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>'; |
338 | - break; |
|
339 | - } |
|
340 | - } |
|
338 | + break; |
|
339 | + } |
|
340 | + } |
|
341 | 341 | |
342 | - $geodir_load_map = get_option('geodir_load_map'); |
|
343 | - $need_map_key = false; |
|
344 | - if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){ |
|
345 | - $need_map_key = true; |
|
346 | - } |
|
342 | + $geodir_load_map = get_option('geodir_load_map'); |
|
343 | + $need_map_key = false; |
|
344 | + if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){ |
|
345 | + $need_map_key = true; |
|
346 | + } |
|
347 | 347 | |
348 | - if (!geodir_get_map_api_key() && $need_map_key) { |
|
349 | - 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>'; |
|
350 | - } |
|
348 | + if (!geodir_get_map_api_key() && $need_map_key) { |
|
349 | + 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>'; |
|
350 | + } |
|
351 | 351 | |
352 | - if (!geodir_is_default_location_set()) { |
|
353 | - 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>'; |
|
352 | + if (!geodir_is_default_location_set()) { |
|
353 | + 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>'; |
|
354 | 354 | |
355 | - } |
|
355 | + } |
|
356 | 356 | |
357 | - if (!function_exists('curl_init')) { |
|
358 | - 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>'; |
|
357 | + if (!function_exists('curl_init')) { |
|
358 | + 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>'; |
|
359 | 359 | |
360 | - } |
|
360 | + } |
|
361 | 361 | |
362 | 362 | |
363 | 363 | |
@@ -374,19 +374,19 @@ discard block |
||
374 | 374 | */ |
375 | 375 | function geodir_handle_option_form_submit($current_tab) |
376 | 376 | { |
377 | - global $geodir_settings; |
|
378 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) { |
|
379 | - /** |
|
380 | - * Contains settings array for current tab. |
|
381 | - * |
|
382 | - * @since 1.0.0 |
|
383 | - * @package GeoDirectory |
|
384 | - */ |
|
385 | - include_once('option-pages/' . $current_tab . '_array.php'); |
|
386 | - } |
|
387 | - if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
|
388 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory')); |
|
389 | - if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory')); |
|
377 | + global $geodir_settings; |
|
378 | + if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) { |
|
379 | + /** |
|
380 | + * Contains settings array for current tab. |
|
381 | + * |
|
382 | + * @since 1.0.0 |
|
383 | + * @package GeoDirectory |
|
384 | + */ |
|
385 | + include_once('option-pages/' . $current_tab . '_array.php'); |
|
386 | + } |
|
387 | + if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
|
388 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory')); |
|
389 | + if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory')); |
|
390 | 390 | |
391 | 391 | /** |
392 | 392 | * Fires before updating geodirectory admin settings. |
@@ -398,38 +398,38 @@ discard block |
||
398 | 398 | */ |
399 | 399 | do_action('geodir_before_update_options', $current_tab, $geodir_settings); |
400 | 400 | |
401 | - if (!empty($geodir_settings[$current_tab])) |
|
402 | - geodir_update_options($geodir_settings[$current_tab]); |
|
401 | + if (!empty($geodir_settings[$current_tab])) |
|
402 | + geodir_update_options($geodir_settings[$current_tab]); |
|
403 | 403 | |
404 | - /** |
|
405 | - * Called after GeoDirectory options settings are updated. |
|
406 | - * |
|
407 | - * @since 1.0.0 |
|
408 | - * @param array $geodir_settings The array of GeoDirectory settings. |
|
409 | - * @see 'geodir_before_update_options' |
|
410 | - */ |
|
411 | - do_action('geodir_update_options', $geodir_settings); |
|
404 | + /** |
|
405 | + * Called after GeoDirectory options settings are updated. |
|
406 | + * |
|
407 | + * @since 1.0.0 |
|
408 | + * @param array $geodir_settings The array of GeoDirectory settings. |
|
409 | + * @see 'geodir_before_update_options' |
|
410 | + */ |
|
411 | + do_action('geodir_update_options', $geodir_settings); |
|
412 | 412 | |
413 | - /** |
|
414 | - * Called after GeoDirectory options settings are updated. |
|
415 | - * |
|
416 | - * Provides tab specific settings. |
|
417 | - * |
|
418 | - * @since 1.0.0 |
|
419 | - * @param string $current_tab The current settings tab name. |
|
420 | - * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
|
421 | - */ |
|
422 | - do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]); |
|
413 | + /** |
|
414 | + * Called after GeoDirectory options settings are updated. |
|
415 | + * |
|
416 | + * Provides tab specific settings. |
|
417 | + * |
|
418 | + * @since 1.0.0 |
|
419 | + * @param string $current_tab The current settings tab name. |
|
420 | + * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
|
421 | + */ |
|
422 | + do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]); |
|
423 | 423 | |
424 | - flush_rewrite_rules(false); |
|
424 | + flush_rewrite_rules(false); |
|
425 | 425 | |
426 | - $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
|
426 | + $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
|
427 | 427 | |
428 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success'); |
|
428 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success'); |
|
429 | 429 | |
430 | - wp_redirect($redirect_url); |
|
431 | - exit(); |
|
432 | - endif; |
|
430 | + wp_redirect($redirect_url); |
|
431 | + exit(); |
|
432 | + endif; |
|
433 | 433 | |
434 | 434 | |
435 | 435 | } |
@@ -447,144 +447,144 @@ discard block |
||
447 | 447 | * @return bool Returns true if saved. |
448 | 448 | */ |
449 | 449 | function geodir_update_options($options, $dummy = false) { |
450 | - if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
450 | + if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
451 | 451 | |
452 | - foreach ($options as $value) { |
|
453 | - if ($dummy && isset($value['std'])) |
|
454 | - $_POST[$value['id']] = $value['std']; |
|
452 | + foreach ($options as $value) { |
|
453 | + if ($dummy && isset($value['std'])) |
|
454 | + $_POST[$value['id']] = $value['std']; |
|
455 | 455 | |
456 | 456 | |
457 | - if (isset($value['type']) && $value['type'] == 'checkbox') : |
|
457 | + if (isset($value['type']) && $value['type'] == 'checkbox') : |
|
458 | 458 | |
459 | - if (isset($value['id']) && isset($_POST[$value['id']])) { |
|
460 | - update_option($value['id'], $_POST[$value['id']]); |
|
461 | - } else { |
|
462 | - update_option($value['id'], 0); |
|
463 | - } |
|
459 | + if (isset($value['id']) && isset($_POST[$value['id']])) { |
|
460 | + update_option($value['id'], $_POST[$value['id']]); |
|
461 | + } else { |
|
462 | + update_option($value['id'], 0); |
|
463 | + } |
|
464 | 464 | |
465 | - elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
465 | + elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
466 | 466 | |
467 | - if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) { |
|
468 | - update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
469 | - update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
470 | - if (isset($_POST[$value['id'] . '_crop'])) : |
|
471 | - update_option($value['id'] . '_crop', 1); |
|
472 | - else : |
|
473 | - update_option($value['id'] . '_crop', 0); |
|
474 | - endif; |
|
475 | - } else { |
|
476 | - update_option($value['id'] . '_width', $value['std']); |
|
477 | - update_option($value['id'] . '_height', $value['std']); |
|
478 | - update_option($value['id'] . '_crop', 1); |
|
479 | - } |
|
467 | + if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) { |
|
468 | + update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
469 | + update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
470 | + if (isset($_POST[$value['id'] . '_crop'])) : |
|
471 | + update_option($value['id'] . '_crop', 1); |
|
472 | + else : |
|
473 | + update_option($value['id'] . '_crop', 0); |
|
474 | + endif; |
|
475 | + } else { |
|
476 | + update_option($value['id'] . '_width', $value['std']); |
|
477 | + update_option($value['id'] . '_height', $value['std']); |
|
478 | + update_option($value['id'] . '_crop', 1); |
|
479 | + } |
|
480 | 480 | |
481 | - elseif (isset($value['type']) && $value['type'] == 'map') : |
|
482 | - $post_types = array(); |
|
483 | - $categories = array(); |
|
481 | + elseif (isset($value['type']) && $value['type'] == 'map') : |
|
482 | + $post_types = array(); |
|
483 | + $categories = array(); |
|
484 | 484 | |
485 | - if (!empty($_POST['home_map_post_types'])) : |
|
486 | - foreach ($_POST['home_map_post_types'] as $post_type) : |
|
487 | - $post_types[] = $post_type; |
|
488 | - endforeach; |
|
489 | - endif; |
|
485 | + if (!empty($_POST['home_map_post_types'])) : |
|
486 | + foreach ($_POST['home_map_post_types'] as $post_type) : |
|
487 | + $post_types[] = $post_type; |
|
488 | + endforeach; |
|
489 | + endif; |
|
490 | 490 | |
491 | - update_option('geodir_exclude_post_type_on_map', $post_types); |
|
491 | + update_option('geodir_exclude_post_type_on_map', $post_types); |
|
492 | 492 | |
493 | - if (!empty($_POST['post_category'])) : |
|
494 | - foreach ($_POST['post_category'] as $texonomy => $cat_arr) : |
|
495 | - $categories[$texonomy] = array(); |
|
496 | - foreach ($cat_arr as $category) : |
|
497 | - $categories[$texonomy][] = $category; |
|
498 | - endforeach; |
|
499 | - $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array(); |
|
500 | - endforeach; |
|
501 | - endif; |
|
502 | - update_option('geodir_exclude_cat_on_map', $categories); |
|
503 | - update_option('geodir_exclude_cat_on_map_upgrade', 1); |
|
504 | - elseif (isset($value['type']) && $value['type'] == 'map_default_settings') : |
|
493 | + if (!empty($_POST['post_category'])) : |
|
494 | + foreach ($_POST['post_category'] as $texonomy => $cat_arr) : |
|
495 | + $categories[$texonomy] = array(); |
|
496 | + foreach ($cat_arr as $category) : |
|
497 | + $categories[$texonomy][] = $category; |
|
498 | + endforeach; |
|
499 | + $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array(); |
|
500 | + endforeach; |
|
501 | + endif; |
|
502 | + update_option('geodir_exclude_cat_on_map', $categories); |
|
503 | + update_option('geodir_exclude_cat_on_map_upgrade', 1); |
|
504 | + elseif (isset($value['type']) && $value['type'] == 'map_default_settings') : |
|
505 | 505 | |
506 | 506 | |
507 | - if (!empty($_POST['geodir_default_map_language'])): |
|
508 | - update_option('geodir_default_map_language', $_POST['geodir_default_map_language']); |
|
509 | - endif; |
|
507 | + if (!empty($_POST['geodir_default_map_language'])): |
|
508 | + update_option('geodir_default_map_language', $_POST['geodir_default_map_language']); |
|
509 | + endif; |
|
510 | 510 | |
511 | 511 | |
512 | - if (!empty($_POST['geodir_default_map_search_pt'])): |
|
513 | - update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']); |
|
514 | - endif; |
|
512 | + if (!empty($_POST['geodir_default_map_search_pt'])): |
|
513 | + update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']); |
|
514 | + endif; |
|
515 | 515 | |
516 | 516 | |
517 | - elseif (isset($value['type']) && $value['type'] == 'file') : |
|
517 | + elseif (isset($value['type']) && $value['type'] == 'file') : |
|
518 | 518 | |
519 | 519 | |
520 | - if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file |
|
520 | + if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file |
|
521 | 521 | |
522 | - if (get_option($value['id'])) { |
|
523 | - $image_name_arr = explode('/', get_option($value['id'])); |
|
524 | - $noimg_name = end($image_name_arr); |
|
525 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
526 | - if (file_exists($img_path)) |
|
527 | - unlink($img_path); |
|
528 | - } |
|
522 | + if (get_option($value['id'])) { |
|
523 | + $image_name_arr = explode('/', get_option($value['id'])); |
|
524 | + $noimg_name = end($image_name_arr); |
|
525 | + $img_path = $uploads['path'] . '/' . $noimg_name; |
|
526 | + if (file_exists($img_path)) |
|
527 | + unlink($img_path); |
|
528 | + } |
|
529 | 529 | |
530 | - update_option($value['id'], ''); |
|
531 | - } |
|
530 | + update_option($value['id'], ''); |
|
531 | + } |
|
532 | 532 | |
533 | - $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : ''; |
|
534 | - $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : ''; |
|
535 | - |
|
536 | - if (!empty($filename)): |
|
537 | - $ext = pathinfo($filename, PATHINFO_EXTENSION); |
|
538 | - $uplaods = array(); |
|
539 | - |
|
540 | - foreach ($uploadedfile as $key => $uplaod): |
|
541 | - if ($key == 'name'): |
|
542 | - $uplaods[$key] = $filename; |
|
543 | - else : |
|
544 | - $uplaods[$key] = $uplaod; |
|
545 | - endif; |
|
546 | - endforeach; |
|
547 | - |
|
548 | - $uploads = wp_upload_dir(); |
|
549 | - |
|
550 | - if (get_option($value['id'])) { |
|
551 | - $image_name_arr = explode('/', get_option($value['id'])); |
|
552 | - $noimg_name = end($image_name_arr); |
|
553 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
554 | - if (file_exists($img_path)) |
|
555 | - unlink($img_path); |
|
556 | - } |
|
533 | + $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : ''; |
|
534 | + $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : ''; |
|
535 | + |
|
536 | + if (!empty($filename)): |
|
537 | + $ext = pathinfo($filename, PATHINFO_EXTENSION); |
|
538 | + $uplaods = array(); |
|
539 | + |
|
540 | + foreach ($uploadedfile as $key => $uplaod): |
|
541 | + if ($key == 'name'): |
|
542 | + $uplaods[$key] = $filename; |
|
543 | + else : |
|
544 | + $uplaods[$key] = $uplaod; |
|
545 | + endif; |
|
546 | + endforeach; |
|
547 | + |
|
548 | + $uploads = wp_upload_dir(); |
|
549 | + |
|
550 | + if (get_option($value['id'])) { |
|
551 | + $image_name_arr = explode('/', get_option($value['id'])); |
|
552 | + $noimg_name = end($image_name_arr); |
|
553 | + $img_path = $uploads['path'] . '/' . $noimg_name; |
|
554 | + if (file_exists($img_path)) |
|
555 | + unlink($img_path); |
|
556 | + } |
|
557 | 557 | |
558 | - $upload_overrides = array('test_form' => false); |
|
559 | - $movefile = wp_handle_upload($uplaods, $upload_overrides); |
|
558 | + $upload_overrides = array('test_form' => false); |
|
559 | + $movefile = wp_handle_upload($uplaods, $upload_overrides); |
|
560 | 560 | |
561 | - update_option($value['id'], $movefile['url']); |
|
561 | + update_option($value['id'], $movefile['url']); |
|
562 | 562 | |
563 | - endif; |
|
563 | + endif; |
|
564 | 564 | |
565 | - if (!get_option($value['id']) && isset($value['value'])): |
|
566 | - update_option($value['id'], $value['value']); |
|
567 | - endif; |
|
565 | + if (!get_option($value['id']) && isset($value['value'])): |
|
566 | + update_option($value['id'], $value['value']); |
|
567 | + endif; |
|
568 | 568 | |
569 | 569 | |
570 | - else : |
|
571 | - // same menu setting per theme. |
|
572 | - if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) { |
|
573 | - $theme = wp_get_theme(); |
|
574 | - update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]); |
|
575 | - } |
|
570 | + else : |
|
571 | + // same menu setting per theme. |
|
572 | + if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) { |
|
573 | + $theme = wp_get_theme(); |
|
574 | + update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]); |
|
575 | + } |
|
576 | 576 | |
577 | - if (isset($value['id']) && isset($_POST[$value['id']])) { |
|
578 | - update_option($value['id'], $_POST[$value['id']]); |
|
579 | - } else { |
|
580 | - delete_option($value['id']); |
|
581 | - } |
|
577 | + if (isset($value['id']) && isset($_POST[$value['id']])) { |
|
578 | + update_option($value['id'], $_POST[$value['id']]); |
|
579 | + } else { |
|
580 | + delete_option($value['id']); |
|
581 | + } |
|
582 | 582 | |
583 | - endif; |
|
584 | - } |
|
585 | - if ($dummy) |
|
586 | - $_POST = array(); |
|
587 | - return true; |
|
583 | + endif; |
|
584 | + } |
|
585 | + if ($dummy) |
|
586 | + $_POST = array(); |
|
587 | + return true; |
|
588 | 588 | |
589 | 589 | } |
590 | 590 | |
@@ -633,33 +633,33 @@ discard block |
||
633 | 633 | function places_custom_fields_tab($tabs) |
634 | 634 | { |
635 | 635 | |
636 | - $geodir_post_types = get_option('geodir_post_types'); |
|
636 | + $geodir_post_types = get_option('geodir_post_types'); |
|
637 | 637 | |
638 | - if (!empty($geodir_post_types)) { |
|
638 | + if (!empty($geodir_post_types)) { |
|
639 | 639 | |
640 | - foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info): |
|
640 | + foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info): |
|
641 | 641 | |
642 | - $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory'); |
|
642 | + $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory'); |
|
643 | 643 | |
644 | - $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
645 | - 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug), |
|
646 | - 'subtabs' => array( |
|
647 | - array('subtab' => 'custom_fields', |
|
648 | - 'label' => __('Custom Fields', 'geodirectory'), |
|
649 | - 'request' => array('listing_type' => $geodir_post_type)), |
|
650 | - array('subtab' => 'sorting_options', |
|
651 | - 'label' => __('Sorting Options', 'geodirectory'), |
|
652 | - 'request' => array('listing_type' => $geodir_post_type)), |
|
653 | - ), |
|
654 | - 'tab_index' => 9, |
|
655 | - 'request' => array('listing_type' => $geodir_post_type) |
|
656 | - ); |
|
644 | + $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
645 | + 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug), |
|
646 | + 'subtabs' => array( |
|
647 | + array('subtab' => 'custom_fields', |
|
648 | + 'label' => __('Custom Fields', 'geodirectory'), |
|
649 | + 'request' => array('listing_type' => $geodir_post_type)), |
|
650 | + array('subtab' => 'sorting_options', |
|
651 | + 'label' => __('Sorting Options', 'geodirectory'), |
|
652 | + 'request' => array('listing_type' => $geodir_post_type)), |
|
653 | + ), |
|
654 | + 'tab_index' => 9, |
|
655 | + 'request' => array('listing_type' => $geodir_post_type) |
|
656 | + ); |
|
657 | 657 | |
658 | - endforeach; |
|
658 | + endforeach; |
|
659 | 659 | |
660 | - } |
|
660 | + } |
|
661 | 661 | |
662 | - return $tabs; |
|
662 | + return $tabs; |
|
663 | 663 | } |
664 | 664 | |
665 | 665 | |
@@ -675,9 +675,9 @@ discard block |
||
675 | 675 | */ |
676 | 676 | function geodir_tools_setting_tab($tabs) |
677 | 677 | { |
678 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
679 | - $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory')); |
|
680 | - return $tabs; |
|
678 | + wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
679 | + $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory')); |
|
680 | + return $tabs; |
|
681 | 681 | } |
682 | 682 | |
683 | 683 | /** |
@@ -692,8 +692,8 @@ discard block |
||
692 | 692 | */ |
693 | 693 | function geodir_compatibility_setting_tab($tabs) |
694 | 694 | { |
695 | - $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory')); |
|
696 | - return $tabs; |
|
695 | + $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory')); |
|
696 | + return $tabs; |
|
697 | 697 | } |
698 | 698 | |
699 | 699 | |
@@ -709,144 +709,144 @@ discard block |
||
709 | 709 | */ |
710 | 710 | function geodir_extend_geodirectory_setting_tab($tabs) |
711 | 711 | { |
712 | - $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank'); |
|
713 | - return $tabs; |
|
712 | + $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank'); |
|
713 | + return $tabs; |
|
714 | 714 | } |
715 | 715 | |
716 | 716 | |
717 | 717 | if (!function_exists('geodir_edit_post_columns')) { |
718 | - /** |
|
719 | - * Modify admin post listing page columns. |
|
720 | - * |
|
721 | - * @since 1.0.0 |
|
722 | - * @package GeoDirectory |
|
723 | - * @param array $columns The column array. |
|
724 | - * @return array Altered column array. |
|
725 | - */ |
|
726 | - function geodir_edit_post_columns($columns) |
|
727 | - { |
|
728 | - |
|
729 | - $new_columns = array('location' => __('Location (ID)', 'geodirectory'), |
|
730 | - 'categorys' => __('Categories', 'geodirectory')); |
|
731 | - |
|
732 | - if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist |
|
733 | - { |
|
734 | - $offset = 0; // should we prepend $array with $data? |
|
735 | - $offset = count($columns); // or should we append $array with $data? lets pick this one... |
|
736 | - } |
|
718 | + /** |
|
719 | + * Modify admin post listing page columns. |
|
720 | + * |
|
721 | + * @since 1.0.0 |
|
722 | + * @package GeoDirectory |
|
723 | + * @param array $columns The column array. |
|
724 | + * @return array Altered column array. |
|
725 | + */ |
|
726 | + function geodir_edit_post_columns($columns) |
|
727 | + { |
|
737 | 728 | |
738 | - $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset)); |
|
729 | + $new_columns = array('location' => __('Location (ID)', 'geodirectory'), |
|
730 | + 'categorys' => __('Categories', 'geodirectory')); |
|
739 | 731 | |
740 | - $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory'))); |
|
732 | + if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist |
|
733 | + { |
|
734 | + $offset = 0; // should we prepend $array with $data? |
|
735 | + $offset = count($columns); // or should we append $array with $data? lets pick this one... |
|
736 | + } |
|
741 | 737 | |
742 | - return $columns; |
|
743 | - } |
|
738 | + $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset)); |
|
739 | + |
|
740 | + $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory'))); |
|
741 | + |
|
742 | + return $columns; |
|
743 | + } |
|
744 | 744 | } |
745 | 745 | |
746 | 746 | |
747 | 747 | if (!function_exists('geodir_manage_post_columns')) { |
748 | - /** |
|
749 | - * Adds content to our custom post listing page columns. |
|
750 | - * |
|
751 | - * @since 1.0.0 |
|
752 | - * @package GeoDirectory |
|
753 | - * @global object $wpdb WordPress Database object. |
|
754 | - * @global object $post WordPress Post object. |
|
755 | - * @param string $column The column name. |
|
756 | - * @param int $post_id The post ID. |
|
757 | - */ |
|
758 | - function geodir_manage_post_columns($column, $post_id) |
|
759 | - { |
|
760 | - global $post, $wpdb; |
|
761 | - |
|
762 | - switch ($column): |
|
763 | - /* If displaying the 'city' column. */ |
|
764 | - case 'location' : |
|
765 | - $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true); |
|
766 | - $location = geodir_get_location($location_id); |
|
767 | - /* If no city is found, output a default message. */ |
|
768 | - if (empty($location)) { |
|
769 | - _e('Unknown', 'geodirectory'); |
|
770 | - } else { |
|
771 | - /* If there is a city id, append 'city name' to the text string. */ |
|
772 | - $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : ''; |
|
773 | - echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
774 | - } |
|
775 | - break; |
|
776 | - |
|
777 | - /* If displaying the 'expire' column. */ |
|
778 | - case 'expire' : |
|
779 | - $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true); |
|
780 | - $d1 = $expire_date; // get expire_date |
|
781 | - $d2 = date('Y-m-d'); // get current date |
|
782 | - $state = __('days left', 'geodirectory'); |
|
783 | - $date_diff_text = ''; |
|
784 | - $expire_class = 'expire_left'; |
|
785 | - if ($expire_date != 'Never') { |
|
786 | - if (strtotime($d1) < strtotime($d2)) { |
|
787 | - $state = __('days overdue', 'geodirectory'); |
|
788 | - $expire_class = 'expire_over'; |
|
789 | - } |
|
790 | - $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
|
791 | - $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>'; |
|
792 | - } |
|
793 | - /* If no expire_date is found, output a default message. */ |
|
794 | - if (empty($expire_date)) |
|
795 | - echo __('Unknown', 'geodirectory'); |
|
796 | - /* If there is a expire_date, append 'days left' to the text string. */ |
|
797 | - else |
|
798 | - echo $expire_date . $date_diff_text; |
|
799 | - break; |
|
800 | - |
|
801 | - /* If displaying the 'categorys' column. */ |
|
802 | - case 'categorys' : |
|
803 | - |
|
804 | - /* Get the categorys for the post. */ |
|
805 | - |
|
806 | - |
|
807 | - $terms = wp_get_object_terms($post_id, get_object_taxonomies($post)); |
|
808 | - |
|
809 | - /* If terms were found. */ |
|
810 | - if (!empty($terms)) { |
|
811 | - $out = array(); |
|
812 | - /* Loop through each term, linking to the 'edit posts' page for the specific term. */ |
|
813 | - foreach ($terms as $term) { |
|
814 | - if (!strstr($term->taxonomy, 'tag')) { |
|
815 | - $out[] = sprintf('<a href="%s">%s</a>', |
|
816 | - esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')), |
|
817 | - esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display')) |
|
818 | - ); |
|
819 | - } |
|
820 | - } |
|
821 | - /* Join the terms, separating them with a comma. */ |
|
822 | - echo(join(', ', $out)); |
|
823 | - } /* If no terms were found, output a default message. */ |
|
824 | - else { |
|
825 | - _e('No Categories', 'geodirectory'); |
|
826 | - } |
|
827 | - break; |
|
748 | + /** |
|
749 | + * Adds content to our custom post listing page columns. |
|
750 | + * |
|
751 | + * @since 1.0.0 |
|
752 | + * @package GeoDirectory |
|
753 | + * @global object $wpdb WordPress Database object. |
|
754 | + * @global object $post WordPress Post object. |
|
755 | + * @param string $column The column name. |
|
756 | + * @param int $post_id The post ID. |
|
757 | + */ |
|
758 | + function geodir_manage_post_columns($column, $post_id) |
|
759 | + { |
|
760 | + global $post, $wpdb; |
|
761 | + |
|
762 | + switch ($column): |
|
763 | + /* If displaying the 'city' column. */ |
|
764 | + case 'location' : |
|
765 | + $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true); |
|
766 | + $location = geodir_get_location($location_id); |
|
767 | + /* If no city is found, output a default message. */ |
|
768 | + if (empty($location)) { |
|
769 | + _e('Unknown', 'geodirectory'); |
|
770 | + } else { |
|
771 | + /* If there is a city id, append 'city name' to the text string. */ |
|
772 | + $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : ''; |
|
773 | + echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
774 | + } |
|
775 | + break; |
|
776 | + |
|
777 | + /* If displaying the 'expire' column. */ |
|
778 | + case 'expire' : |
|
779 | + $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true); |
|
780 | + $d1 = $expire_date; // get expire_date |
|
781 | + $d2 = date('Y-m-d'); // get current date |
|
782 | + $state = __('days left', 'geodirectory'); |
|
783 | + $date_diff_text = ''; |
|
784 | + $expire_class = 'expire_left'; |
|
785 | + if ($expire_date != 'Never') { |
|
786 | + if (strtotime($d1) < strtotime($d2)) { |
|
787 | + $state = __('days overdue', 'geodirectory'); |
|
788 | + $expire_class = 'expire_over'; |
|
789 | + } |
|
790 | + $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
|
791 | + $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>'; |
|
792 | + } |
|
793 | + /* If no expire_date is found, output a default message. */ |
|
794 | + if (empty($expire_date)) |
|
795 | + echo __('Unknown', 'geodirectory'); |
|
796 | + /* If there is a expire_date, append 'days left' to the text string. */ |
|
797 | + else |
|
798 | + echo $expire_date . $date_diff_text; |
|
799 | + break; |
|
828 | 800 | |
829 | - endswitch; |
|
830 | - } |
|
801 | + /* If displaying the 'categorys' column. */ |
|
802 | + case 'categorys' : |
|
803 | + |
|
804 | + /* Get the categorys for the post. */ |
|
805 | + |
|
806 | + |
|
807 | + $terms = wp_get_object_terms($post_id, get_object_taxonomies($post)); |
|
808 | + |
|
809 | + /* If terms were found. */ |
|
810 | + if (!empty($terms)) { |
|
811 | + $out = array(); |
|
812 | + /* Loop through each term, linking to the 'edit posts' page for the specific term. */ |
|
813 | + foreach ($terms as $term) { |
|
814 | + if (!strstr($term->taxonomy, 'tag')) { |
|
815 | + $out[] = sprintf('<a href="%s">%s</a>', |
|
816 | + esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')), |
|
817 | + esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display')) |
|
818 | + ); |
|
819 | + } |
|
820 | + } |
|
821 | + /* Join the terms, separating them with a comma. */ |
|
822 | + echo(join(', ', $out)); |
|
823 | + } /* If no terms were found, output a default message. */ |
|
824 | + else { |
|
825 | + _e('No Categories', 'geodirectory'); |
|
826 | + } |
|
827 | + break; |
|
828 | + |
|
829 | + endswitch; |
|
830 | + } |
|
831 | 831 | } |
832 | 832 | |
833 | 833 | |
834 | 834 | if (!function_exists('geodir_post_sortable_columns')) { |
835 | - /** |
|
836 | - * Makes admin post listing page columns sortable. |
|
837 | - * |
|
838 | - * @since 1.0.0 |
|
839 | - * @package GeoDirectory |
|
840 | - * @param array $columns The column array. |
|
841 | - * @return array Altered column array. |
|
842 | - */ |
|
843 | - function geodir_post_sortable_columns($columns) |
|
844 | - { |
|
845 | - |
|
846 | - $columns['expire'] = 'expire'; |
|
847 | - |
|
848 | - return $columns; |
|
849 | - } |
|
835 | + /** |
|
836 | + * Makes admin post listing page columns sortable. |
|
837 | + * |
|
838 | + * @since 1.0.0 |
|
839 | + * @package GeoDirectory |
|
840 | + * @param array $columns The column array. |
|
841 | + * @return array Altered column array. |
|
842 | + */ |
|
843 | + function geodir_post_sortable_columns($columns) |
|
844 | + { |
|
845 | + |
|
846 | + $columns['expire'] = 'expire'; |
|
847 | + |
|
848 | + return $columns; |
|
849 | + } |
|
850 | 850 | } |
851 | 851 | |
852 | 852 | /** |
@@ -860,32 +860,32 @@ discard block |
||
860 | 860 | * @param int $post_id The post ID. |
861 | 861 | */ |
862 | 862 | function geodir_post_information_save($post_id, $post) { |
863 | - global $wpdb, $current_user; |
|
863 | + global $wpdb, $current_user; |
|
864 | 864 | |
865 | - if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) { |
|
866 | - return; |
|
867 | - } |
|
865 | + if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) { |
|
866 | + return; |
|
867 | + } |
|
868 | 868 | |
869 | - $geodir_posttypes = geodir_get_posttypes(); |
|
869 | + $geodir_posttypes = geodir_get_posttypes(); |
|
870 | 870 | |
871 | - if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) |
|
872 | - return; |
|
871 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) |
|
872 | + return; |
|
873 | 873 | |
874 | - if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) { |
|
875 | - if (isset($_REQUEST['_status'])) |
|
876 | - geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
874 | + if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) { |
|
875 | + if (isset($_REQUEST['_status'])) |
|
876 | + geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
877 | 877 | |
878 | - if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
879 | - return; |
|
878 | + if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
879 | + return; |
|
880 | 880 | |
881 | - if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
882 | - return; |
|
881 | + if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
882 | + return; |
|
883 | 883 | |
884 | - if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
885 | - return; |
|
884 | + if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
885 | + return; |
|
886 | 886 | |
887 | - geodir_save_listing($_REQUEST); |
|
888 | - } |
|
887 | + geodir_save_listing($_REQUEST); |
|
888 | + } |
|
889 | 889 | } |
890 | 890 | |
891 | 891 | /** |
@@ -901,102 +901,102 @@ discard block |
||
901 | 901 | */ |
902 | 902 | function geodir_admin_fields($options) |
903 | 903 | { |
904 | - global $geodirectory; |
|
905 | - |
|
906 | - $first_title = true; |
|
907 | - $tab_id = ''; |
|
908 | - $i = 0; |
|
909 | - foreach ($options as $value) : |
|
910 | - if (!isset($value['name'])) $value['name'] = ''; |
|
911 | - if (!isset($value['class'])) $value['class'] = ''; |
|
912 | - if (!isset($value['css'])) $value['css'] = ''; |
|
913 | - if (!isset($value['std'])) $value['std'] = ''; |
|
914 | - $desc = ''; |
|
915 | - switch ($value['type']) : |
|
916 | - case 'dummy_installer': |
|
917 | - $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place'; |
|
918 | - geodir_autoinstall_admin_header($post_type); |
|
919 | - break; |
|
920 | - case 'title': |
|
921 | - |
|
922 | - if ($i == 0) { |
|
923 | - echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>'; |
|
924 | - echo '<div class="inner_content_tab_main">'; |
|
925 | - } |
|
904 | + global $geodirectory; |
|
905 | + |
|
906 | + $first_title = true; |
|
907 | + $tab_id = ''; |
|
908 | + $i = 0; |
|
909 | + foreach ($options as $value) : |
|
910 | + if (!isset($value['name'])) $value['name'] = ''; |
|
911 | + if (!isset($value['class'])) $value['class'] = ''; |
|
912 | + if (!isset($value['css'])) $value['css'] = ''; |
|
913 | + if (!isset($value['std'])) $value['std'] = ''; |
|
914 | + $desc = ''; |
|
915 | + switch ($value['type']) : |
|
916 | + case 'dummy_installer': |
|
917 | + $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place'; |
|
918 | + geodir_autoinstall_admin_header($post_type); |
|
919 | + break; |
|
920 | + case 'title': |
|
921 | + |
|
922 | + if ($i == 0) { |
|
923 | + echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>'; |
|
924 | + echo '<div class="inner_content_tab_main">'; |
|
925 | + } |
|
926 | 926 | |
927 | - $i++; |
|
927 | + $i++; |
|
928 | 928 | |
929 | - if (isset($value['id']) && $value['id']) |
|
930 | - $tab_id = $value['id']; |
|
929 | + if (isset($value['id']) && $value['id']) |
|
930 | + $tab_id = $value['id']; |
|
931 | 931 | |
932 | - if (isset($value['desc']) && $value['desc']) |
|
933 | - $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
932 | + if (isset($value['desc']) && $value['desc']) |
|
933 | + $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
934 | 934 | |
935 | - if (isset($value['name']) && $value['name']) { |
|
936 | - if ($first_title === true) { |
|
937 | - $first_title = false; |
|
938 | - } else { |
|
939 | - echo '</div>'; |
|
940 | - } |
|
941 | - echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
935 | + if (isset($value['name']) && $value['name']) { |
|
936 | + if ($first_title === true) { |
|
937 | + $first_title = false; |
|
938 | + } else { |
|
939 | + echo '</div>'; |
|
940 | + } |
|
941 | + echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
942 | 942 | |
943 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
944 | - } |
|
943 | + echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
944 | + } |
|
945 | 945 | |
946 | - /** |
|
947 | - * Called after a GeoDirectory settings title is output in the GD settings page. |
|
948 | - * |
|
949 | - * The action is called dynamically geodir_settings_$value['id']. |
|
950 | - * |
|
951 | - * @since 1.0.0 |
|
952 | - */ |
|
953 | - do_action('geodir_settings_' . sanitize_title($value['id'])); |
|
954 | - break; |
|
955 | - |
|
956 | - case 'no_tabs': |
|
957 | - |
|
958 | - echo '<div class="inner_content_tab_main">'; |
|
959 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
960 | - |
|
961 | - break; |
|
962 | - |
|
963 | - case 'sectionstart': |
|
964 | - if (isset($value['desc']) && $value['desc']) |
|
965 | - $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
966 | - if (isset($value['name']) && $value['name']) |
|
967 | - echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
968 | - /** |
|
969 | - * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
|
970 | - * |
|
971 | - * The action is called dynamically geodir_settings_$value['id']_start. |
|
972 | - * |
|
973 | - * @since 1.0.0 |
|
974 | - */ |
|
975 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start'); |
|
976 | - echo '<table class="form-table">' . "\n\n"; |
|
977 | - |
|
978 | - break; |
|
979 | - case 'sectionend': |
|
980 | - /** |
|
981 | - * Called before a GeoDirectory settings sectionend is output in the GD settings page. |
|
982 | - * |
|
983 | - * The action is called dynamically geodir_settings_$value['id']_end. |
|
984 | - * |
|
985 | - * @since 1.0.0 |
|
986 | - */ |
|
987 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end'); |
|
988 | - echo '</table>'; |
|
989 | - /** |
|
990 | - * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
|
991 | - * |
|
992 | - * The action is called dynamically geodir_settings_$value['id']_end. |
|
993 | - * |
|
994 | - * @since 1.0.0 |
|
995 | - */ |
|
996 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after'); |
|
997 | - break; |
|
998 | - case 'text': |
|
999 | - ?> |
|
946 | + /** |
|
947 | + * Called after a GeoDirectory settings title is output in the GD settings page. |
|
948 | + * |
|
949 | + * The action is called dynamically geodir_settings_$value['id']. |
|
950 | + * |
|
951 | + * @since 1.0.0 |
|
952 | + */ |
|
953 | + do_action('geodir_settings_' . sanitize_title($value['id'])); |
|
954 | + break; |
|
955 | + |
|
956 | + case 'no_tabs': |
|
957 | + |
|
958 | + echo '<div class="inner_content_tab_main">'; |
|
959 | + echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
960 | + |
|
961 | + break; |
|
962 | + |
|
963 | + case 'sectionstart': |
|
964 | + if (isset($value['desc']) && $value['desc']) |
|
965 | + $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
966 | + if (isset($value['name']) && $value['name']) |
|
967 | + echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
968 | + /** |
|
969 | + * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
|
970 | + * |
|
971 | + * The action is called dynamically geodir_settings_$value['id']_start. |
|
972 | + * |
|
973 | + * @since 1.0.0 |
|
974 | + */ |
|
975 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start'); |
|
976 | + echo '<table class="form-table">' . "\n\n"; |
|
977 | + |
|
978 | + break; |
|
979 | + case 'sectionend': |
|
980 | + /** |
|
981 | + * Called before a GeoDirectory settings sectionend is output in the GD settings page. |
|
982 | + * |
|
983 | + * The action is called dynamically geodir_settings_$value['id']_end. |
|
984 | + * |
|
985 | + * @since 1.0.0 |
|
986 | + */ |
|
987 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end'); |
|
988 | + echo '</table>'; |
|
989 | + /** |
|
990 | + * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
|
991 | + * |
|
992 | + * The action is called dynamically geodir_settings_$value['id']_end. |
|
993 | + * |
|
994 | + * @since 1.0.0 |
|
995 | + */ |
|
996 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after'); |
|
997 | + break; |
|
998 | + case 'text': |
|
999 | + ?> |
|
1000 | 1000 | <tr valign="top"> |
1001 | 1001 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
1002 | 1002 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1005,15 +1005,15 @@ discard block |
||
1005 | 1005 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?> |
1006 | 1006 | style=" <?php echo esc_attr($value['css']); ?>" |
1007 | 1007 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) { |
1008 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
1009 | - } else { |
|
1010 | - echo esc_attr($value['std']); |
|
1011 | - } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
1008 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
1009 | + } else { |
|
1010 | + echo esc_attr($value['std']); |
|
1011 | + } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
1012 | 1012 | </tr><?php |
1013 | - break; |
|
1013 | + break; |
|
1014 | 1014 | |
1015 | - case 'map-key': |
|
1016 | - ?> |
|
1015 | + case 'map-key': |
|
1016 | + ?> |
|
1017 | 1017 | <tr valign="top"> |
1018 | 1018 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
1019 | 1019 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1022,17 +1022,17 @@ discard block |
||
1022 | 1022 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?> |
1023 | 1023 | style=" <?php echo esc_attr($value['css']); ?>" |
1024 | 1024 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) { |
1025 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
1026 | - } else { |
|
1027 | - echo esc_attr($value['std']); |
|
1028 | - } ?>"/> |
|
1025 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
1026 | + } else { |
|
1027 | + echo esc_attr($value['std']); |
|
1028 | + } ?>"/> |
|
1029 | 1029 | <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a> |
1030 | 1030 | <span class="description"><?php echo $value['desc']; ?></span></td> |
1031 | 1031 | </tr><?php |
1032 | - break; |
|
1032 | + break; |
|
1033 | 1033 | |
1034 | - case 'password': |
|
1035 | - ?> |
|
1034 | + case 'password': |
|
1035 | + ?> |
|
1036 | 1036 | <tr valign="top"> |
1037 | 1037 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
1038 | 1038 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1041,42 +1041,42 @@ discard block |
||
1041 | 1041 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?> |
1042 | 1042 | style="<?php echo esc_attr($value['css']); ?>" |
1043 | 1043 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) { |
1044 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
1045 | - } else { |
|
1046 | - echo esc_attr($value['std']); |
|
1047 | - } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
1044 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
1045 | + } else { |
|
1046 | + echo esc_attr($value['std']); |
|
1047 | + } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
1048 | 1048 | </tr><?php |
1049 | - break; |
|
1049 | + break; |
|
1050 | 1050 | |
1051 | - case 'html_content': |
|
1052 | - ?> |
|
1051 | + case 'html_content': |
|
1052 | + ?> |
|
1053 | 1053 | <tr valign="top"> |
1054 | 1054 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
1055 | 1055 | <td class="forminp"><span class="description"><?php echo $value['desc']; ?></span></td> |
1056 | 1056 | </tr><?php |
1057 | - break; |
|
1057 | + break; |
|
1058 | 1058 | |
1059 | - case 'color' : |
|
1060 | - ?> |
|
1059 | + case 'color' : |
|
1060 | + ?> |
|
1061 | 1061 | <tr valign="top"> |
1062 | 1062 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
1063 | 1063 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
1064 | 1064 | id="<?php echo esc_attr($value['id']); ?>" type="text" |
1065 | 1065 | style="<?php echo esc_attr($value['css']); ?>" |
1066 | 1066 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) { |
1067 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
1068 | - } else { |
|
1069 | - echo esc_attr($value['std']); |
|
1070 | - } ?>" class="colorpick"/> <span |
|
1067 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
1068 | + } else { |
|
1069 | + echo esc_attr($value['std']); |
|
1070 | + } ?>" class="colorpick"/> <span |
|
1071 | 1071 | class="description"><?php echo $value['desc']; ?></span> |
1072 | 1072 | |
1073 | 1073 | <div id="colorPickerDiv_<?php echo esc_attr($value['id']); ?>" class="colorpickdiv" |
1074 | 1074 | style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div> |
1075 | 1075 | </td> |
1076 | 1076 | </tr><?php |
1077 | - break; |
|
1078 | - case 'image_width' : |
|
1079 | - ?> |
|
1077 | + break; |
|
1078 | + case 'image_width' : |
|
1079 | + ?> |
|
1080 | 1080 | <tr valign="top"> |
1081 | 1081 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1082 | 1082 | <td class="forminp"> |
@@ -1098,11 +1098,11 @@ discard block |
||
1098 | 1098 | |
1099 | 1099 | <span class="description"><?php echo $value['desc'] ?></span></td> |
1100 | 1100 | </tr><?php |
1101 | - break; |
|
1102 | - case 'select': |
|
1103 | - $option_value = get_option($value['id']); |
|
1104 | - $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value; |
|
1105 | - ?> |
|
1101 | + break; |
|
1102 | + case 'select': |
|
1103 | + $option_value = get_option($value['id']); |
|
1104 | + $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value; |
|
1105 | + ?> |
|
1106 | 1106 | <tr valign="top"> |
1107 | 1107 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1108 | 1108 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
@@ -1111,33 +1111,33 @@ discard block |
||
1111 | 1111 | class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
1112 | 1112 | option-ajaxchosen="false"> |
1113 | 1113 | <?php |
1114 | - foreach ($value['options'] as $key => $val) { |
|
1115 | - $geodir_select_value = ''; |
|
1116 | - if ($option_value != '') { |
|
1117 | - if ($option_value != '' && $option_value == $key) |
|
1118 | - $geodir_select_value = ' selected="selected" '; |
|
1119 | - } else { |
|
1120 | - if ($value['std'] == $key) |
|
1121 | - $geodir_select_value = ' selected="selected" '; |
|
1122 | - } |
|
1123 | - ?> |
|
1114 | + foreach ($value['options'] as $key => $val) { |
|
1115 | + $geodir_select_value = ''; |
|
1116 | + if ($option_value != '') { |
|
1117 | + if ($option_value != '' && $option_value == $key) |
|
1118 | + $geodir_select_value = ' selected="selected" '; |
|
1119 | + } else { |
|
1120 | + if ($value['std'] == $key) |
|
1121 | + $geodir_select_value = ' selected="selected" '; |
|
1122 | + } |
|
1123 | + ?> |
|
1124 | 1124 | <option |
1125 | 1125 | value="<?php echo esc_attr($key); ?>" <?php echo $geodir_select_value; ?> ><?php echo ucfirst($val) ?></option> |
1126 | 1126 | <?php |
1127 | - } |
|
1128 | - ?> |
|
1127 | + } |
|
1128 | + ?> |
|
1129 | 1129 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
1130 | 1130 | </td> |
1131 | 1131 | </tr><?php |
1132 | - break; |
|
1132 | + break; |
|
1133 | 1133 | |
1134 | - case 'multiselect': |
|
1135 | - $option_values = get_option($value['id']); |
|
1136 | - if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) { |
|
1137 | - $option_values = $value['std']; |
|
1138 | - } |
|
1139 | - $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values; |
|
1140 | - ?> |
|
1134 | + case 'multiselect': |
|
1135 | + $option_values = get_option($value['id']); |
|
1136 | + if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) { |
|
1137 | + $option_values = $value['std']; |
|
1138 | + } |
|
1139 | + $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values; |
|
1140 | + ?> |
|
1141 | 1141 | <tr valign="top"> |
1142 | 1142 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
1143 | 1143 | <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]" |
@@ -1147,25 +1147,25 @@ discard block |
||
1147 | 1147 | data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>" |
1148 | 1148 | option-ajaxchosen="false"> |
1149 | 1149 | <?php |
1150 | - foreach ($value['options'] as $key => $val) { |
|
1151 | - if (strpos($key, 'optgroup_start-') === 0) { |
|
1152 | - ?><optgroup label="<?php echo ucfirst($val); ?>"><?php |
|
1153 | - } else if (strpos($key, 'optgroup_end-') === 0) { |
|
1154 | - ?></optgroup><?php |
|
1155 | - } else { |
|
1156 | - ?> |
|
1150 | + foreach ($value['options'] as $key => $val) { |
|
1151 | + if (strpos($key, 'optgroup_start-') === 0) { |
|
1152 | + ?><optgroup label="<?php echo ucfirst($val); ?>"><?php |
|
1153 | + } else if (strpos($key, 'optgroup_end-') === 0) { |
|
1154 | + ?></optgroup><?php |
|
1155 | + } else { |
|
1156 | + ?> |
|
1157 | 1157 | <option |
1158 | 1158 | value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option> |
1159 | 1159 | <?php |
1160 | - } |
|
1161 | - } |
|
1162 | - ?> |
|
1160 | + } |
|
1161 | + } |
|
1162 | + ?> |
|
1163 | 1163 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
1164 | 1164 | </td> |
1165 | 1165 | </tr><?php |
1166 | - break; |
|
1167 | - case 'file': |
|
1168 | - ?> |
|
1166 | + break; |
|
1167 | + case 'file': |
|
1168 | + ?> |
|
1169 | 1169 | <tr valign="top"> |
1170 | 1170 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
1171 | 1171 | <td class="forminp"> |
@@ -1185,87 +1185,87 @@ discard block |
||
1185 | 1185 | <?php } ?> |
1186 | 1186 | </td> |
1187 | 1187 | </tr><?php |
1188 | - break; |
|
1189 | - case 'map_default_settings' : |
|
1190 | - ?> |
|
1188 | + break; |
|
1189 | + case 'map_default_settings' : |
|
1190 | + ?> |
|
1191 | 1191 | |
1192 | 1192 | <tr valign="top"> |
1193 | 1193 | <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th> |
1194 | 1194 | <td width="60%"> |
1195 | 1195 | <select name="geodir_default_map_language" style="width:60%"> |
1196 | 1196 | <?php |
1197 | - $arr_map_langages = array( |
|
1198 | - 'ar' => __('ARABIC', 'geodirectory'), |
|
1199 | - 'eu' => __('BASQUE', 'geodirectory'), |
|
1200 | - 'bg' => __('BULGARIAN', 'geodirectory'), |
|
1201 | - 'bn' => __('BENGALI', 'geodirectory'), |
|
1202 | - 'ca' => __('CATALAN', 'geodirectory'), |
|
1203 | - 'cs' => __('CZECH', 'geodirectory'), |
|
1204 | - 'da' => __('DANISH', 'geodirectory'), |
|
1205 | - 'de' => __('GERMAN', 'geodirectory'), |
|
1206 | - 'el' => __('GREEK', 'geodirectory'), |
|
1207 | - 'en' => __('ENGLISH', 'geodirectory'), |
|
1208 | - 'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'), |
|
1209 | - 'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'), |
|
1210 | - 'es' => __('SPANISH', 'geodirectory'), |
|
1211 | - 'eu' => __('BASQUE', 'geodirectory'), |
|
1212 | - 'fa' => __('FARSI', 'geodirectory'), |
|
1213 | - 'fi' => __('FINNISH', 'geodirectory'), |
|
1214 | - 'fil' => __('FILIPINO', 'geodirectory'), |
|
1215 | - 'fr' => __('FRENCH', 'geodirectory'), |
|
1216 | - 'gl' => __('GALICIAN', 'geodirectory'), |
|
1217 | - 'gu' => __('GUJARATI', 'geodirectory'), |
|
1218 | - 'hi' => __('HINDI', 'geodirectory'), |
|
1219 | - 'hr' => __('CROATIAN', 'geodirectory'), |
|
1220 | - 'hu' => __('HUNGARIAN', 'geodirectory'), |
|
1221 | - 'id' => __('INDONESIAN', 'geodirectory'), |
|
1222 | - 'it' => __('ITALIAN', 'geodirectory'), |
|
1223 | - 'iw' => __('HEBREW', 'geodirectory'), |
|
1224 | - 'ja' => __('JAPANESE', 'geodirectory'), |
|
1225 | - 'kn' => __('KANNADA', 'geodirectory'), |
|
1226 | - 'ko' => __('KOREAN', 'geodirectory'), |
|
1227 | - 'lt' => __('LITHUANIAN', 'geodirectory'), |
|
1228 | - 'lv' => __('LATVIAN', 'geodirectory'), |
|
1229 | - 'ml' => __('MALAYALAM', 'geodirectory'), |
|
1230 | - 'mr' => __('MARATHI', 'geodirectory'), |
|
1231 | - 'nl' => __('DUTCH', 'geodirectory'), |
|
1232 | - 'no' => __('NORWEGIAN', 'geodirectory'), |
|
1233 | - 'pl' => __('POLISH', 'geodirectory'), |
|
1234 | - 'pt' => __('PORTUGUESE', 'geodirectory'), |
|
1235 | - 'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'), |
|
1236 | - 'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'), |
|
1237 | - 'ro' => __('ROMANIAN', 'geodirectory'), |
|
1238 | - 'ru' => __('RUSSIAN', 'geodirectory'), |
|
1239 | - 'ru' => __('RUSSIAN', 'geodirectory'), |
|
1240 | - 'sk' => __('SLOVAK', 'geodirectory'), |
|
1241 | - 'sl' => __('SLOVENIAN', 'geodirectory'), |
|
1242 | - 'sr' => __('SERBIAN', 'geodirectory'), |
|
1243 | - 'sv' => __(' SWEDISH', 'geodirectory'), |
|
1244 | - 'tl' => __('TAGALOG', 'geodirectory'), |
|
1245 | - 'ta' => __('TAMIL', 'geodirectory'), |
|
1246 | - 'te' => __('TELUGU', 'geodirectory'), |
|
1247 | - 'th' => __('THAI', 'geodirectory'), |
|
1248 | - 'tr' => __('TURKISH', 'geodirectory'), |
|
1249 | - 'uk' => __('UKRAINIAN', 'geodirectory'), |
|
1250 | - 'vi' => __('VIETNAMESE', 'geodirectory'), |
|
1251 | - 'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'), |
|
1252 | - 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'), |
|
1253 | - ); |
|
1254 | - $geodir_default_map_language = get_option('geodir_default_map_language'); |
|
1255 | - if (empty($geodir_default_map_language)) |
|
1256 | - $geodir_default_map_language = 'en'; |
|
1257 | - foreach ($arr_map_langages as $language_key => $language_txt) { |
|
1258 | - if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
1259 | - $geodir_default_language_selected = "selected='selected'"; |
|
1260 | - else |
|
1261 | - $geodir_default_language_selected = ''; |
|
1262 | - |
|
1263 | - ?> |
|
1197 | + $arr_map_langages = array( |
|
1198 | + 'ar' => __('ARABIC', 'geodirectory'), |
|
1199 | + 'eu' => __('BASQUE', 'geodirectory'), |
|
1200 | + 'bg' => __('BULGARIAN', 'geodirectory'), |
|
1201 | + 'bn' => __('BENGALI', 'geodirectory'), |
|
1202 | + 'ca' => __('CATALAN', 'geodirectory'), |
|
1203 | + 'cs' => __('CZECH', 'geodirectory'), |
|
1204 | + 'da' => __('DANISH', 'geodirectory'), |
|
1205 | + 'de' => __('GERMAN', 'geodirectory'), |
|
1206 | + 'el' => __('GREEK', 'geodirectory'), |
|
1207 | + 'en' => __('ENGLISH', 'geodirectory'), |
|
1208 | + 'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'), |
|
1209 | + 'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'), |
|
1210 | + 'es' => __('SPANISH', 'geodirectory'), |
|
1211 | + 'eu' => __('BASQUE', 'geodirectory'), |
|
1212 | + 'fa' => __('FARSI', 'geodirectory'), |
|
1213 | + 'fi' => __('FINNISH', 'geodirectory'), |
|
1214 | + 'fil' => __('FILIPINO', 'geodirectory'), |
|
1215 | + 'fr' => __('FRENCH', 'geodirectory'), |
|
1216 | + 'gl' => __('GALICIAN', 'geodirectory'), |
|
1217 | + 'gu' => __('GUJARATI', 'geodirectory'), |
|
1218 | + 'hi' => __('HINDI', 'geodirectory'), |
|
1219 | + 'hr' => __('CROATIAN', 'geodirectory'), |
|
1220 | + 'hu' => __('HUNGARIAN', 'geodirectory'), |
|
1221 | + 'id' => __('INDONESIAN', 'geodirectory'), |
|
1222 | + 'it' => __('ITALIAN', 'geodirectory'), |
|
1223 | + 'iw' => __('HEBREW', 'geodirectory'), |
|
1224 | + 'ja' => __('JAPANESE', 'geodirectory'), |
|
1225 | + 'kn' => __('KANNADA', 'geodirectory'), |
|
1226 | + 'ko' => __('KOREAN', 'geodirectory'), |
|
1227 | + 'lt' => __('LITHUANIAN', 'geodirectory'), |
|
1228 | + 'lv' => __('LATVIAN', 'geodirectory'), |
|
1229 | + 'ml' => __('MALAYALAM', 'geodirectory'), |
|
1230 | + 'mr' => __('MARATHI', 'geodirectory'), |
|
1231 | + 'nl' => __('DUTCH', 'geodirectory'), |
|
1232 | + 'no' => __('NORWEGIAN', 'geodirectory'), |
|
1233 | + 'pl' => __('POLISH', 'geodirectory'), |
|
1234 | + 'pt' => __('PORTUGUESE', 'geodirectory'), |
|
1235 | + 'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'), |
|
1236 | + 'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'), |
|
1237 | + 'ro' => __('ROMANIAN', 'geodirectory'), |
|
1238 | + 'ru' => __('RUSSIAN', 'geodirectory'), |
|
1239 | + 'ru' => __('RUSSIAN', 'geodirectory'), |
|
1240 | + 'sk' => __('SLOVAK', 'geodirectory'), |
|
1241 | + 'sl' => __('SLOVENIAN', 'geodirectory'), |
|
1242 | + 'sr' => __('SERBIAN', 'geodirectory'), |
|
1243 | + 'sv' => __(' SWEDISH', 'geodirectory'), |
|
1244 | + 'tl' => __('TAGALOG', 'geodirectory'), |
|
1245 | + 'ta' => __('TAMIL', 'geodirectory'), |
|
1246 | + 'te' => __('TELUGU', 'geodirectory'), |
|
1247 | + 'th' => __('THAI', 'geodirectory'), |
|
1248 | + 'tr' => __('TURKISH', 'geodirectory'), |
|
1249 | + 'uk' => __('UKRAINIAN', 'geodirectory'), |
|
1250 | + 'vi' => __('VIETNAMESE', 'geodirectory'), |
|
1251 | + 'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'), |
|
1252 | + 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'), |
|
1253 | + ); |
|
1254 | + $geodir_default_map_language = get_option('geodir_default_map_language'); |
|
1255 | + if (empty($geodir_default_map_language)) |
|
1256 | + $geodir_default_map_language = 'en'; |
|
1257 | + foreach ($arr_map_langages as $language_key => $language_txt) { |
|
1258 | + if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
1259 | + $geodir_default_language_selected = "selected='selected'"; |
|
1260 | + else |
|
1261 | + $geodir_default_language_selected = ''; |
|
1262 | + |
|
1263 | + ?> |
|
1264 | 1264 | <option |
1265 | 1265 | value="<?php echo $language_key?>" <?php echo $geodir_default_language_selected; ?>><?php echo $language_txt; ?></option> |
1266 | 1266 | |
1267 | 1267 | <?php } |
1268 | - ?> |
|
1268 | + ?> |
|
1269 | 1269 | </select> |
1270 | 1270 | </td> |
1271 | 1271 | </tr> |
@@ -1276,46 +1276,46 @@ discard block |
||
1276 | 1276 | <td width="60%"> |
1277 | 1277 | <select name="geodir_default_map_search_pt" style="width:60%"> |
1278 | 1278 | <?php |
1279 | - $post_types = geodir_get_posttypes('array'); |
|
1280 | - $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt'); |
|
1281 | - if (empty($geodir_default_map_search_pt)) |
|
1282 | - $geodir_default_map_search_pt = 'gd_place'; |
|
1283 | - if (is_array($post_types)) { |
|
1284 | - foreach ($post_types as $key => $post_types_obj) { |
|
1285 | - if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
1286 | - $geodir_search_pt_selected = "selected='selected'"; |
|
1287 | - else |
|
1288 | - $geodir_search_pt_selected = ''; |
|
1289 | - |
|
1290 | - ?> |
|
1279 | + $post_types = geodir_get_posttypes('array'); |
|
1280 | + $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt'); |
|
1281 | + if (empty($geodir_default_map_search_pt)) |
|
1282 | + $geodir_default_map_search_pt = 'gd_place'; |
|
1283 | + if (is_array($post_types)) { |
|
1284 | + foreach ($post_types as $key => $post_types_obj) { |
|
1285 | + if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
1286 | + $geodir_search_pt_selected = "selected='selected'"; |
|
1287 | + else |
|
1288 | + $geodir_search_pt_selected = ''; |
|
1289 | + |
|
1290 | + ?> |
|
1291 | 1291 | <option |
1292 | 1292 | value="<?php echo $key?>" <?php echo $geodir_search_pt_selected; ?>><?php echo __($post_types_obj['labels']['singular_name'], 'geodirectory'); ?></option> |
1293 | 1293 | |
1294 | 1294 | <?php } |
1295 | 1295 | |
1296 | - } |
|
1296 | + } |
|
1297 | 1297 | |
1298 | - ?> |
|
1298 | + ?> |
|
1299 | 1299 | </select> |
1300 | 1300 | </td> |
1301 | 1301 | </tr> |
1302 | 1302 | |
1303 | 1303 | <?php |
1304 | - break; |
|
1304 | + break; |
|
1305 | 1305 | |
1306 | - case 'map': |
|
1307 | - ?> |
|
1306 | + case 'map': |
|
1307 | + ?> |
|
1308 | 1308 | <tr valign="top"> |
1309 | 1309 | <td class="forminp"> |
1310 | 1310 | <?php |
1311 | - global $post_cat, $cat_display; |
|
1312 | - $post_types = geodir_get_posttypes('object'); |
|
1313 | - $cat_display = 'checkbox'; |
|
1314 | - $gd_post_types = get_option('geodir_exclude_post_type_on_map'); |
|
1315 | - $gd_cats = get_option('geodir_exclude_cat_on_map'); |
|
1316 | - $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade'); |
|
1317 | - $count = 1; |
|
1318 | - ?> |
|
1311 | + global $post_cat, $cat_display; |
|
1312 | + $post_types = geodir_get_posttypes('object'); |
|
1313 | + $cat_display = 'checkbox'; |
|
1314 | + $gd_post_types = get_option('geodir_exclude_post_type_on_map'); |
|
1315 | + $gd_cats = get_option('geodir_exclude_cat_on_map'); |
|
1316 | + $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade'); |
|
1317 | + $count = 1; |
|
1318 | + ?> |
|
1319 | 1319 | <table width="70%" class="widefat"> |
1320 | 1320 | <thead> |
1321 | 1321 | <tr> |
@@ -1324,18 +1324,18 @@ discard block |
||
1324 | 1324 | <th><b><?php echo DESIGN_POST_TYPE_CAT; ?></b></th> |
1325 | 1325 | </tr> |
1326 | 1326 | <?php |
1327 | - $gd_categs = $gd_cats; |
|
1328 | - foreach ($post_types as $key => $post_types_obj) : |
|
1329 | - $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : ''; |
|
1330 | - $gd_taxonomy = geodir_get_taxonomies($key); |
|
1331 | - if ($gd_cats_upgrade) { |
|
1332 | - $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : ''; |
|
1333 | - $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array(); |
|
1334 | - $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array(); |
|
1335 | - } |
|
1336 | - $post_cat = implode(',', $gd_cats); |
|
1337 | - $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy); |
|
1338 | - ?> |
|
1327 | + $gd_categs = $gd_cats; |
|
1328 | + foreach ($post_types as $key => $post_types_obj) : |
|
1329 | + $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : ''; |
|
1330 | + $gd_taxonomy = geodir_get_taxonomies($key); |
|
1331 | + if ($gd_cats_upgrade) { |
|
1332 | + $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : ''; |
|
1333 | + $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array(); |
|
1334 | + $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array(); |
|
1335 | + } |
|
1336 | + $post_cat = implode(',', $gd_cats); |
|
1337 | + $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy); |
|
1338 | + ?> |
|
1339 | 1339 | <tr> |
1340 | 1340 | <td valign="top" width="5%"><?php echo $count; ?></td> |
1341 | 1341 | <td valign="top" width="25%" id="td_post_types"><input type="checkbox" |
@@ -1356,19 +1356,19 @@ discard block |
||
1356 | 1356 | </td> |
1357 | 1357 | </tr> |
1358 | 1358 | <?php |
1359 | - break; |
|
1359 | + break; |
|
1360 | 1360 | |
1361 | - case 'checkbox' : |
|
1361 | + case 'checkbox' : |
|
1362 | 1362 | |
1363 | - if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) : |
|
1364 | - ?> |
|
1363 | + if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) : |
|
1364 | + ?> |
|
1365 | 1365 | <tr valign="top"> |
1366 | 1366 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1367 | 1367 | <td class="forminp"> |
1368 | 1368 | <?php |
1369 | - endif; |
|
1369 | + endif; |
|
1370 | 1370 | |
1371 | - ?> |
|
1371 | + ?> |
|
1372 | 1372 | <fieldset> |
1373 | 1373 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
1374 | 1374 | <label for="<?php echo $value['id'] ?>"> |
@@ -1378,49 +1378,49 @@ discard block |
||
1378 | 1378 | </fieldset> |
1379 | 1379 | <?php |
1380 | 1380 | |
1381 | - if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) : |
|
1382 | - ?> |
|
1381 | + if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) : |
|
1382 | + ?> |
|
1383 | 1383 | </td> |
1384 | 1384 | </tr> |
1385 | 1385 | <?php |
1386 | - endif; |
|
1386 | + endif; |
|
1387 | 1387 | |
1388 | - break; |
|
1388 | + break; |
|
1389 | 1389 | |
1390 | - case 'radio' : |
|
1390 | + case 'radio' : |
|
1391 | 1391 | |
1392 | - if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) : |
|
1393 | - ?> |
|
1392 | + if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) : |
|
1393 | + ?> |
|
1394 | 1394 | <tr valign="top"> |
1395 | 1395 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1396 | 1396 | <td class="forminp"> |
1397 | 1397 | <?php |
1398 | - endif; |
|
1398 | + endif; |
|
1399 | 1399 | |
1400 | - ?> |
|
1400 | + ?> |
|
1401 | 1401 | <fieldset> |
1402 | 1402 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
1403 | 1403 | <label for="<?php echo $value['id'];?>"> |
1404 | 1404 | <input name="<?php echo esc_attr($value['id']); ?>" |
1405 | 1405 | id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio" |
1406 | 1406 | value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) { |
1407 | - echo 'checked="checked"'; |
|
1408 | - }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> /> |
|
1407 | + echo 'checked="checked"'; |
|
1408 | + }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> /> |
|
1409 | 1409 | <?php echo $value['desc']; ?></label><br> |
1410 | 1410 | </fieldset> |
1411 | 1411 | <?php |
1412 | 1412 | |
1413 | - if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) : |
|
1414 | - ?> |
|
1413 | + if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) : |
|
1414 | + ?> |
|
1415 | 1415 | </td> |
1416 | 1416 | </tr> |
1417 | 1417 | <?php |
1418 | - endif; |
|
1418 | + endif; |
|
1419 | 1419 | |
1420 | - break; |
|
1420 | + break; |
|
1421 | 1421 | |
1422 | - case 'textarea': |
|
1423 | - ?> |
|
1422 | + case 'textarea': |
|
1423 | + ?> |
|
1424 | 1424 | <tr valign="top"> |
1425 | 1425 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1426 | 1426 | <td class="forminp"> |
@@ -1433,30 +1433,30 @@ discard block |
||
1433 | 1433 | |
1434 | 1434 | </td> |
1435 | 1435 | </tr><?php |
1436 | - break; |
|
1436 | + break; |
|
1437 | 1437 | |
1438 | - case 'editor': |
|
1439 | - ?> |
|
1438 | + case 'editor': |
|
1439 | + ?> |
|
1440 | 1440 | <tr valign="top"> |
1441 | 1441 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1442 | 1442 | <td class="forminp"><?php |
1443 | - if (get_option($value['id'])) |
|
1444 | - $content = stripslashes(get_option($value['id'])); |
|
1445 | - else |
|
1446 | - $content = $value['std']; |
|
1443 | + if (get_option($value['id'])) |
|
1444 | + $content = stripslashes(get_option($value['id'])); |
|
1445 | + else |
|
1446 | + $content = $value['std']; |
|
1447 | 1447 | |
1448 | - $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10); |
|
1448 | + $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10); |
|
1449 | 1449 | |
1450 | - wp_editor($content, esc_attr($value['id']), $editor_settings); |
|
1450 | + wp_editor($content, esc_attr($value['id']), $editor_settings); |
|
1451 | 1451 | |
1452 | - ?> <span class="description"><?php echo $value['desc'] ?></span> |
|
1452 | + ?> <span class="description"><?php echo $value['desc'] ?></span> |
|
1453 | 1453 | |
1454 | 1454 | </td> |
1455 | 1455 | </tr><?php |
1456 | - break; |
|
1456 | + break; |
|
1457 | 1457 | |
1458 | - case 'single_select_page' : |
|
1459 | - // WPML |
|
1458 | + case 'single_select_page' : |
|
1459 | + // WPML |
|
1460 | 1460 | $switch_lang = false; |
1461 | 1461 | $disabled = ''; |
1462 | 1462 | if (geodir_is_wpml() && isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') { |
@@ -1474,18 +1474,18 @@ discard block |
||
1474 | 1474 | // |
1475 | 1475 | $page_setting = (int)get_option($value['id']); |
1476 | 1476 | |
1477 | - $args = array('name' => $value['id'], |
|
1478 | - 'id' => $value['id'], |
|
1479 | - 'sort_column' => 'menu_order', |
|
1480 | - 'sort_order' => 'ASC', |
|
1481 | - 'show_option_none' => ' ', |
|
1482 | - 'class' => $value['class'], |
|
1483 | - 'echo' => false, |
|
1484 | - 'selected' => $page_setting); |
|
1477 | + $args = array('name' => $value['id'], |
|
1478 | + 'id' => $value['id'], |
|
1479 | + 'sort_column' => 'menu_order', |
|
1480 | + 'sort_order' => 'ASC', |
|
1481 | + 'show_option_none' => ' ', |
|
1482 | + 'class' => $value['class'], |
|
1483 | + 'echo' => false, |
|
1484 | + 'selected' => $page_setting); |
|
1485 | 1485 | |
1486 | - if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
1486 | + if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
1487 | 1487 | |
1488 | - ?> |
|
1488 | + ?> |
|
1489 | 1489 | <tr valign="top" class="single_select_page"> |
1490 | 1490 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1491 | 1491 | <td class="forminp"> |
@@ -1496,17 +1496,17 @@ discard block |
||
1496 | 1496 | if ($switch_lang) { |
1497 | 1497 | $sitepress->switch_lang($switch_lang, true); |
1498 | 1498 | } |
1499 | - break; |
|
1500 | - case 'single_select_country' : |
|
1501 | - $country_setting = (string)get_option($value['id']); |
|
1502 | - if (strstr($country_setting, ':')) : |
|
1503 | - $country = current(explode(':', $country_setting)); |
|
1504 | - $state = end(explode(':', $country_setting)); |
|
1505 | - else : |
|
1506 | - $country = $country_setting; |
|
1507 | - $state = '*'; |
|
1508 | - endif; |
|
1509 | - ?> |
|
1499 | + break; |
|
1500 | + case 'single_select_country' : |
|
1501 | + $country_setting = (string)get_option($value['id']); |
|
1502 | + if (strstr($country_setting, ':')) : |
|
1503 | + $country = current(explode(':', $country_setting)); |
|
1504 | + $state = end(explode(':', $country_setting)); |
|
1505 | + else : |
|
1506 | + $country = $country_setting; |
|
1507 | + $state = '*'; |
|
1508 | + endif; |
|
1509 | + ?> |
|
1510 | 1510 | <tr valign="top"> |
1511 | 1511 | <th scope="rpw" class="titledesc"><?php echo $value['name'] ?></th> |
1512 | 1512 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
@@ -1517,12 +1517,12 @@ discard block |
||
1517 | 1517 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
1518 | 1518 | </td> |
1519 | 1519 | </tr><?php |
1520 | - break; |
|
1521 | - case 'multi_select_countries' : |
|
1522 | - $countries = $geodirectory->countries->countries; |
|
1523 | - asort($countries); |
|
1524 | - $selections = (array)get_option($value['id']); |
|
1525 | - ?> |
|
1520 | + break; |
|
1521 | + case 'multi_select_countries' : |
|
1522 | + $countries = $geodirectory->countries->countries; |
|
1523 | + asort($countries); |
|
1524 | + $selections = (array)get_option($value['id']); |
|
1525 | + ?> |
|
1526 | 1526 | <tr valign="top"> |
1527 | 1527 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1528 | 1528 | <td class="forminp"> |
@@ -1530,21 +1530,21 @@ discard block |
||
1530 | 1530 | data-placeholder="<?php _e('Choose countries…', 'geodirectory'); ?>" |
1531 | 1531 | title="Country" class="chosen_select"> |
1532 | 1532 | <?php |
1533 | - if ($countries) foreach ($countries as $key => $val) : |
|
1534 | - echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
1535 | - endforeach; |
|
1536 | - ?> |
|
1533 | + if ($countries) foreach ($countries as $key => $val) : |
|
1534 | + echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
1535 | + endforeach; |
|
1536 | + ?> |
|
1537 | 1537 | </select> |
1538 | 1538 | </td> |
1539 | 1539 | </tr> |
1540 | 1540 | |
1541 | 1541 | <?php |
1542 | 1542 | |
1543 | - break; |
|
1543 | + break; |
|
1544 | 1544 | |
1545 | - case 'google_analytics' : |
|
1546 | - $selections = (array)get_option($value['id']); |
|
1547 | - ?> |
|
1545 | + case 'google_analytics' : |
|
1546 | + $selections = (array)get_option($value['id']); |
|
1547 | + ?> |
|
1548 | 1548 | <tr valign="top"> |
1549 | 1549 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
1550 | 1550 | <td class="forminp"> |
@@ -1552,62 +1552,62 @@ discard block |
||
1552 | 1552 | |
1553 | 1553 | <?php |
1554 | 1554 | |
1555 | - $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
|
1556 | - $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
|
1557 | - $state = "&state=123";//any string |
|
1558 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback"; |
|
1559 | - $response_type = "&response_type=code"; |
|
1560 | - $client_id = "&client_id=".get_option('geodir_ga_client_id'); |
|
1561 | - $access_type = "&access_type=offline"; |
|
1562 | - $approval_prompt = "&approval_prompt=force"; |
|
1555 | + $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
|
1556 | + $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
|
1557 | + $state = "&state=123";//any string |
|
1558 | + $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback"; |
|
1559 | + $response_type = "&response_type=code"; |
|
1560 | + $client_id = "&client_id=".get_option('geodir_ga_client_id'); |
|
1561 | + $access_type = "&access_type=offline"; |
|
1562 | + $approval_prompt = "&approval_prompt=force"; |
|
1563 | 1563 | |
1564 | - $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
1564 | + $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
1565 | 1565 | |
1566 | 1566 | |
1567 | - if (get_option('geodir_ga_auth_token')) { |
|
1568 | - ?> |
|
1567 | + if (get_option('geodir_ga_auth_token')) { |
|
1568 | + ?> |
|
1569 | 1569 | <span class="button-primary" |
1570 | 1570 | onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span> |
1571 | 1571 | <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span> |
1572 | 1572 | <?php |
1573 | - global $gd_ga_errors; |
|
1574 | - if(!empty($gd_ga_errors)){ |
|
1575 | - print_r($gd_ga_errors); |
|
1576 | - } |
|
1577 | - } else { |
|
1578 | - ?> |
|
1573 | + global $gd_ga_errors; |
|
1574 | + if(!empty($gd_ga_errors)){ |
|
1575 | + print_r($gd_ga_errors); |
|
1576 | + } |
|
1577 | + } else { |
|
1578 | + ?> |
|
1579 | 1579 | <span class="button-primary" |
1580 | 1580 | onclick="window.open('<?php echo geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span> |
1581 | 1581 | <?php |
1582 | - } |
|
1583 | - ?> |
|
1582 | + } |
|
1583 | + ?> |
|
1584 | 1584 | </td> |
1585 | 1585 | </tr> |
1586 | 1586 | |
1587 | 1587 | <?php |
1588 | 1588 | |
1589 | 1589 | |
1590 | - break; |
|
1590 | + break; |
|
1591 | 1591 | |
1592 | - case 'field_seperator' : |
|
1592 | + case 'field_seperator' : |
|
1593 | 1593 | |
1594 | - ?> |
|
1594 | + ?> |
|
1595 | 1595 | <tr valign="top"> |
1596 | 1596 | <td colspan="2" class="forminp geodir_line_seperator"></td> |
1597 | 1597 | </tr> |
1598 | 1598 | <?php |
1599 | 1599 | |
1600 | - break; |
|
1600 | + break; |
|
1601 | 1601 | |
1602 | - endswitch; |
|
1602 | + endswitch; |
|
1603 | 1603 | |
1604 | - endforeach; |
|
1604 | + endforeach; |
|
1605 | 1605 | |
1606 | - if ($first_title === false) { |
|
1607 | - echo "</div>"; |
|
1608 | - } |
|
1606 | + if ($first_title === false) { |
|
1607 | + echo "</div>"; |
|
1608 | + } |
|
1609 | 1609 | |
1610 | - ?> |
|
1610 | + ?> |
|
1611 | 1611 | |
1612 | 1612 | <script type="text/javascript"> |
1613 | 1613 | |
@@ -1667,33 +1667,33 @@ discard block |
||
1667 | 1667 | */ |
1668 | 1668 | function geodir_post_info_setting() |
1669 | 1669 | { |
1670 | - global $post, $post_id; |
|
1671 | - |
|
1672 | - $post_type = get_post_type(); |
|
1673 | - |
|
1674 | - $package_info = array(); |
|
1675 | - |
|
1676 | - $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
1677 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename'); |
|
1678 | - echo '<div id="geodir_wrapper">'; |
|
1679 | - /** |
|
1680 | - * Called before the GD custom fields are output in the wp-admin area. |
|
1681 | - * |
|
1682 | - * @since 1.0.0 |
|
1683 | - * @see 'geodir_after_default_field_in_meta_box' |
|
1684 | - */ |
|
1685 | - do_action('geodir_before_default_field_in_meta_box'); |
|
1686 | - //geodir_get_custom_fields_html($package_info->pid,'default',$post_type); |
|
1687 | - // to display all fields in one information box |
|
1688 | - geodir_get_custom_fields_html($package_info->pid, 'all', $post_type); |
|
1689 | - /** |
|
1690 | - * Called after the GD custom fields are output in the wp-admin area. |
|
1691 | - * |
|
1692 | - * @since 1.0.0 |
|
1693 | - * @see 'geodir_before_default_field_in_meta_box' |
|
1694 | - */ |
|
1695 | - do_action('geodir_after_default_field_in_meta_box'); |
|
1696 | - echo '</div>'; |
|
1670 | + global $post, $post_id; |
|
1671 | + |
|
1672 | + $post_type = get_post_type(); |
|
1673 | + |
|
1674 | + $package_info = array(); |
|
1675 | + |
|
1676 | + $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
1677 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename'); |
|
1678 | + echo '<div id="geodir_wrapper">'; |
|
1679 | + /** |
|
1680 | + * Called before the GD custom fields are output in the wp-admin area. |
|
1681 | + * |
|
1682 | + * @since 1.0.0 |
|
1683 | + * @see 'geodir_after_default_field_in_meta_box' |
|
1684 | + */ |
|
1685 | + do_action('geodir_before_default_field_in_meta_box'); |
|
1686 | + //geodir_get_custom_fields_html($package_info->pid,'default',$post_type); |
|
1687 | + // to display all fields in one information box |
|
1688 | + geodir_get_custom_fields_html($package_info->pid, 'all', $post_type); |
|
1689 | + /** |
|
1690 | + * Called after the GD custom fields are output in the wp-admin area. |
|
1691 | + * |
|
1692 | + * @since 1.0.0 |
|
1693 | + * @see 'geodir_before_default_field_in_meta_box' |
|
1694 | + */ |
|
1695 | + do_action('geodir_after_default_field_in_meta_box'); |
|
1696 | + echo '</div>'; |
|
1697 | 1697 | } |
1698 | 1698 | |
1699 | 1699 | /** |
@@ -1706,18 +1706,18 @@ discard block |
||
1706 | 1706 | */ |
1707 | 1707 | function geodir_post_addinfo_setting() |
1708 | 1708 | { |
1709 | - global $post, $post_id; |
|
1709 | + global $post, $post_id; |
|
1710 | 1710 | |
1711 | - $post_type = get_post_type(); |
|
1711 | + $post_type = get_post_type(); |
|
1712 | 1712 | |
1713 | - $package_info = array(); |
|
1713 | + $package_info = array(); |
|
1714 | 1714 | |
1715 | - $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
1715 | + $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
1716 | 1716 | |
1717 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename'); |
|
1718 | - echo '<div id="geodir_wrapper">'; |
|
1719 | - geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type); |
|
1720 | - echo '</div>'; |
|
1717 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename'); |
|
1718 | + echo '<div id="geodir_wrapper">'; |
|
1719 | + geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type); |
|
1720 | + echo '</div>'; |
|
1721 | 1721 | |
1722 | 1722 | } |
1723 | 1723 | |
@@ -1731,60 +1731,60 @@ discard block |
||
1731 | 1731 | */ |
1732 | 1732 | function geodir_post_attachments() |
1733 | 1733 | { |
1734 | - global $post, $post_id; |
|
1734 | + global $post, $post_id; |
|
1735 | 1735 | |
1736 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
|
1736 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
|
1737 | 1737 | |
1738 | - if (geodir_get_featured_image($post_id, 'thumbnail')) { |
|
1739 | - echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>'; |
|
1740 | - geodir_show_featured_image($post_id, 'thumbnail'); |
|
1741 | - } |
|
1738 | + if (geodir_get_featured_image($post_id, 'thumbnail')) { |
|
1739 | + echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>'; |
|
1740 | + geodir_show_featured_image($post_id, 'thumbnail'); |
|
1741 | + } |
|
1742 | 1742 | |
1743 | - $image_limit = 0; |
|
1743 | + $image_limit = 0; |
|
1744 | 1744 | |
1745 | - ?> |
|
1745 | + ?> |
|
1746 | 1746 | |
1747 | 1747 | |
1748 | 1748 | <h5 class="form_title"> |
1749 | 1749 | <?php if ($image_limit != 0 && $image_limit == 1) { |
1750 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>'; |
|
1751 | - } ?> |
|
1750 | + echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>'; |
|
1751 | + } ?> |
|
1752 | 1752 | <?php if ($image_limit != 0 && $image_limit > 1) { |
1753 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>'; |
|
1754 | - } ?> |
|
1753 | + echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>'; |
|
1754 | + } ?> |
|
1755 | 1755 | <?php if ($image_limit == 0) { |
1756 | - echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>'; |
|
1757 | - } ?> |
|
1756 | + echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>'; |
|
1757 | + } ?> |
|
1758 | 1758 | </h5> |
1759 | 1759 | |
1760 | 1760 | |
1761 | 1761 | <?php |
1762 | 1762 | |
1763 | - $curImages = geodir_get_images($post_id); |
|
1764 | - $place_img_array = array(); |
|
1763 | + $curImages = geodir_get_images($post_id); |
|
1764 | + $place_img_array = array(); |
|
1765 | 1765 | |
1766 | - if (!empty($curImages)): |
|
1767 | - foreach ($curImages as $p_img): |
|
1768 | - $place_img_array[] = $p_img->src; |
|
1769 | - endforeach; |
|
1770 | - endif; |
|
1766 | + if (!empty($curImages)): |
|
1767 | + foreach ($curImages as $p_img): |
|
1768 | + $place_img_array[] = $p_img->src; |
|
1769 | + endforeach; |
|
1770 | + endif; |
|
1771 | 1771 | |
1772 | - if (!empty($place_img_array)) |
|
1773 | - $curImages = implode(',', $place_img_array); |
|
1772 | + if (!empty($place_img_array)) |
|
1773 | + $curImages = implode(',', $place_img_array); |
|
1774 | 1774 | |
1775 | 1775 | |
1776 | - // adjust values here |
|
1777 | - $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
1776 | + // adjust values here |
|
1777 | + $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
1778 | 1778 | |
1779 | - $svalue = $curImages; // this will be initial value of the above form field. Image urls. |
|
1779 | + $svalue = $curImages; // this will be initial value of the above form field. Image urls. |
|
1780 | 1780 | |
1781 | - $multiple = true; // allow multiple files upload |
|
1781 | + $multiple = true; // allow multiple files upload |
|
1782 | 1782 | |
1783 | - $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
1783 | + $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
1784 | 1784 | |
1785 | - $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
1785 | + $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
1786 | 1786 | |
1787 | - ?> |
|
1787 | + ?> |
|
1788 | 1788 | |
1789 | 1789 | <div class="gtd-form_row clearfix" id="<?php echo $id; ?>dropbox" style="border:1px solid #999999;padding:5px;text-align:center;"> |
1790 | 1790 | <input type="hidden" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="<?php echo $svalue; ?>"/> |
@@ -1826,13 +1826,13 @@ discard block |
||
1826 | 1826 | */ |
1827 | 1827 | function geodir_action_post_updated($post_ID, $post_after, $post_before) |
1828 | 1828 | { |
1829 | - $post_type = get_post_type($post_ID); |
|
1829 | + $post_type = get_post_type($post_ID); |
|
1830 | 1830 | |
1831 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') { |
|
1832 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) { |
|
1833 | - geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title); |
|
1834 | - } |
|
1835 | - } |
|
1831 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') { |
|
1832 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) { |
|
1833 | + geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title); |
|
1834 | + } |
|
1835 | + } |
|
1836 | 1836 | } |
1837 | 1837 | |
1838 | 1838 | /** |
@@ -1847,39 +1847,39 @@ discard block |
||
1847 | 1847 | */ |
1848 | 1848 | function geodir_notification_add_bcc_option($settings) |
1849 | 1849 | { |
1850 | - if (!empty($settings)) { |
|
1851 | - $new_settings = array(); |
|
1852 | - foreach ($settings as $setting) { |
|
1853 | - if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') { |
|
1854 | - $geodir_bcc_listing_published_yes = array( |
|
1855 | - 'name' => __('Listing published', 'geodirectory'), |
|
1856 | - 'desc' => __('Yes', 'geodirectory'), |
|
1857 | - 'id' => 'geodir_bcc_listing_published', |
|
1858 | - 'std' => 'yes', |
|
1859 | - 'type' => 'radio', |
|
1860 | - 'value' => '1', |
|
1861 | - 'radiogroup' => 'start' |
|
1862 | - ); |
|
1863 | - |
|
1864 | - $geodir_bcc_listing_published_no = array( |
|
1865 | - 'name' => __('Listing published', 'geodirectory'), |
|
1866 | - 'desc' => __('No', 'geodirectory'), |
|
1867 | - 'id' => 'geodir_bcc_listing_published', |
|
1868 | - 'std' => 'yes', |
|
1869 | - 'type' => 'radio', |
|
1870 | - 'value' => '0', |
|
1871 | - 'radiogroup' => 'end' |
|
1872 | - ); |
|
1873 | - |
|
1874 | - $new_settings[] = $geodir_bcc_listing_published_yes; |
|
1875 | - $new_settings[] = $geodir_bcc_listing_published_no; |
|
1876 | - } |
|
1877 | - $new_settings[] = $setting; |
|
1878 | - } |
|
1879 | - $settings = $new_settings; |
|
1880 | - } |
|
1850 | + if (!empty($settings)) { |
|
1851 | + $new_settings = array(); |
|
1852 | + foreach ($settings as $setting) { |
|
1853 | + if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') { |
|
1854 | + $geodir_bcc_listing_published_yes = array( |
|
1855 | + 'name' => __('Listing published', 'geodirectory'), |
|
1856 | + 'desc' => __('Yes', 'geodirectory'), |
|
1857 | + 'id' => 'geodir_bcc_listing_published', |
|
1858 | + 'std' => 'yes', |
|
1859 | + 'type' => 'radio', |
|
1860 | + 'value' => '1', |
|
1861 | + 'radiogroup' => 'start' |
|
1862 | + ); |
|
1863 | + |
|
1864 | + $geodir_bcc_listing_published_no = array( |
|
1865 | + 'name' => __('Listing published', 'geodirectory'), |
|
1866 | + 'desc' => __('No', 'geodirectory'), |
|
1867 | + 'id' => 'geodir_bcc_listing_published', |
|
1868 | + 'std' => 'yes', |
|
1869 | + 'type' => 'radio', |
|
1870 | + 'value' => '0', |
|
1871 | + 'radiogroup' => 'end' |
|
1872 | + ); |
|
1873 | + |
|
1874 | + $new_settings[] = $geodir_bcc_listing_published_yes; |
|
1875 | + $new_settings[] = $geodir_bcc_listing_published_no; |
|
1876 | + } |
|
1877 | + $new_settings[] = $setting; |
|
1878 | + } |
|
1879 | + $settings = $new_settings; |
|
1880 | + } |
|
1881 | 1881 | |
1882 | - return $settings; |
|
1882 | + return $settings; |
|
1883 | 1883 | } |
1884 | 1884 | |
1885 | 1885 | |
@@ -1894,19 +1894,19 @@ discard block |
||
1894 | 1894 | */ |
1895 | 1895 | function get_gd_theme_compat_callback() |
1896 | 1896 | { |
1897 | - global $wpdb; |
|
1898 | - $themes = get_option('gd_theme_compats'); |
|
1899 | - |
|
1900 | - if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) { |
|
1901 | - if (isset($_POST['export'])) { |
|
1902 | - echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']])); |
|
1903 | - } else { |
|
1904 | - echo json_encode($themes[$_POST['theme']]); |
|
1905 | - } |
|
1897 | + global $wpdb; |
|
1898 | + $themes = get_option('gd_theme_compats'); |
|
1906 | 1899 | |
1907 | - } |
|
1900 | + if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) { |
|
1901 | + if (isset($_POST['export'])) { |
|
1902 | + echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']])); |
|
1903 | + } else { |
|
1904 | + echo json_encode($themes[$_POST['theme']]); |
|
1905 | + } |
|
1906 | + |
|
1907 | + } |
|
1908 | 1908 | |
1909 | - die(); |
|
1909 | + die(); |
|
1910 | 1910 | } |
1911 | 1911 | |
1912 | 1912 | add_action('wp_ajax_get_gd_theme_compat_import_callback', 'get_gd_theme_compat_import_callback'); |
@@ -1920,20 +1920,20 @@ discard block |
||
1920 | 1920 | */ |
1921 | 1921 | function get_gd_theme_compat_import_callback() |
1922 | 1922 | { |
1923 | - global $wpdb; |
|
1924 | - $themes = get_option('gd_theme_compats'); |
|
1925 | - if (isset($_POST['theme']) && !empty($_POST['theme'])) { |
|
1926 | - $json = json_decode(stripslashes($_POST['theme']), true); |
|
1927 | - if (!empty($json) && is_array($json)) { |
|
1928 | - $key = sanitize_text_field(key($json)); |
|
1929 | - $themes[$key] = $json[$key]; |
|
1930 | - update_option('gd_theme_compats', $themes); |
|
1931 | - echo $key; |
|
1932 | - die(); |
|
1933 | - } |
|
1934 | - } |
|
1935 | - echo '0'; |
|
1936 | - die(); |
|
1923 | + global $wpdb; |
|
1924 | + $themes = get_option('gd_theme_compats'); |
|
1925 | + if (isset($_POST['theme']) && !empty($_POST['theme'])) { |
|
1926 | + $json = json_decode(stripslashes($_POST['theme']), true); |
|
1927 | + if (!empty($json) && is_array($json)) { |
|
1928 | + $key = sanitize_text_field(key($json)); |
|
1929 | + $themes[$key] = $json[$key]; |
|
1930 | + update_option('gd_theme_compats', $themes); |
|
1931 | + echo $key; |
|
1932 | + die(); |
|
1933 | + } |
|
1934 | + } |
|
1935 | + echo '0'; |
|
1936 | + die(); |
|
1937 | 1937 | } |
1938 | 1938 | |
1939 | 1939 | |
@@ -1946,39 +1946,39 @@ discard block |
||
1946 | 1946 | */ |
1947 | 1947 | function gd_set_theme_compat() |
1948 | 1948 | { |
1949 | - global $wpdb; |
|
1950 | - $theme = wp_get_theme(); |
|
1949 | + global $wpdb; |
|
1950 | + $theme = wp_get_theme(); |
|
1951 | 1951 | |
1952 | - if ($theme->parent()) { |
|
1953 | - $theme_name = str_replace(" ", "_", $theme->parent()->get('Name')); |
|
1954 | - } else { |
|
1955 | - $theme_name = str_replace(" ", "_", $theme->get('Name')); |
|
1956 | - } |
|
1952 | + if ($theme->parent()) { |
|
1953 | + $theme_name = str_replace(" ", "_", $theme->parent()->get('Name')); |
|
1954 | + } else { |
|
1955 | + $theme_name = str_replace(" ", "_", $theme->get('Name')); |
|
1956 | + } |
|
1957 | 1957 | |
1958 | - $theme_compats = get_option('gd_theme_compats'); |
|
1959 | - $current_compat = get_option('gd_theme_compat'); |
|
1960 | - $current_compat = str_replace("_custom", "", $current_compat); |
|
1958 | + $theme_compats = get_option('gd_theme_compats'); |
|
1959 | + $current_compat = get_option('gd_theme_compat'); |
|
1960 | + $current_compat = str_replace("_custom", "", $current_compat); |
|
1961 | 1961 | |
1962 | - if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) { |
|
1963 | - return; |
|
1964 | - }// if already running correct compat then bail |
|
1962 | + if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) { |
|
1963 | + return; |
|
1964 | + }// if already running correct compat then bail |
|
1965 | 1965 | |
1966 | - if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it |
|
1967 | - update_option('gd_theme_compat', $theme_name); |
|
1968 | - update_option('theme_compatibility_setting', $theme_compats[$theme_name]); |
|
1966 | + if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it |
|
1967 | + update_option('gd_theme_compat', $theme_name); |
|
1968 | + update_option('theme_compatibility_setting', $theme_compats[$theme_name]); |
|
1969 | 1969 | |
1970 | - // if there are default options to set then set them |
|
1971 | - if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) { |
|
1970 | + // if there are default options to set then set them |
|
1971 | + if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) { |
|
1972 | 1972 | |
1973 | - foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) { |
|
1974 | - update_option($key, $val); |
|
1975 | - } |
|
1976 | - } |
|
1973 | + foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) { |
|
1974 | + update_option($key, $val); |
|
1975 | + } |
|
1976 | + } |
|
1977 | 1977 | |
1978 | - } else { |
|
1979 | - update_option('gd_theme_compat', ''); |
|
1980 | - update_option('theme_compatibility_setting', ''); |
|
1981 | - } |
|
1978 | + } else { |
|
1979 | + update_option('gd_theme_compat', ''); |
|
1980 | + update_option('theme_compatibility_setting', ''); |
|
1981 | + } |
|
1982 | 1982 | |
1983 | 1983 | |
1984 | 1984 | } |
@@ -1993,9 +1993,9 @@ discard block |
||
1993 | 1993 | */ |
1994 | 1994 | function gd_check_avada_compat() |
1995 | 1995 | { |
1996 | - if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) { |
|
1997 | - add_action('admin_notices', 'gd_avada_compat_warning'); |
|
1998 | - } |
|
1996 | + if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) { |
|
1997 | + add_action('admin_notices', 'gd_avada_compat_warning'); |
|
1998 | + } |
|
1999 | 1999 | } |
2000 | 2000 | |
2001 | 2001 | |
@@ -2008,22 +2008,22 @@ discard block |
||
2008 | 2008 | function gd_avada_compat_warning() |
2009 | 2009 | { |
2010 | 2010 | |
2011 | - /* |
|
2011 | + /* |
|
2012 | 2012 | $msg_type = error |
2013 | 2013 | $msg_type = updated fade |
2014 | 2014 | $msg_type = update-nag |
2015 | 2015 | */ |
2016 | 2016 | |
2017 | - $plugin = 'avada-nag'; |
|
2018 | - $timestamp = 'avada-nag1234'; |
|
2019 | - $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'); |
|
2020 | - echo '<div id="' . $timestamp . '" class="error">'; |
|
2021 | - echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
2022 | - echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > "; |
|
2023 | - echo "<p>$message</p>"; |
|
2024 | - echo "</div>"; |
|
2017 | + $plugin = 'avada-nag'; |
|
2018 | + $timestamp = 'avada-nag1234'; |
|
2019 | + $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'); |
|
2020 | + echo '<div id="' . $timestamp . '" class="error">'; |
|
2021 | + echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
2022 | + echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > "; |
|
2023 | + echo "<p>$message</p>"; |
|
2024 | + echo "</div>"; |
|
2025 | 2025 | |
2026 | - ?> |
|
2026 | + ?> |
|
2027 | 2027 | <script> |
2028 | 2028 | function gdRemoveANotification($plugin, $timestamp) { |
2029 | 2029 | |
@@ -2091,10 +2091,10 @@ discard block |
||
2091 | 2091 | */ |
2092 | 2092 | function geodir_avada_remove_notification() |
2093 | 2093 | { |
2094 | - update_option('avada_nag', TRUE); |
|
2094 | + update_option('avada_nag', TRUE); |
|
2095 | 2095 | |
2096 | - // Always die in functions echoing ajax content |
|
2097 | - die(); |
|
2096 | + // Always die in functions echoing ajax content |
|
2097 | + die(); |
|
2098 | 2098 | } |
2099 | 2099 | |
2100 | 2100 | |
@@ -2116,9 +2116,9 @@ discard block |
||
2116 | 2116 | global $post, $typenow, $current_screen; |
2117 | 2117 | |
2118 | 2118 | $post_type = NULL; |
2119 | - if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
2119 | + if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
2120 | 2120 | $post_type = get_post_type($_REQUEST['post']); |
2121 | - elseif ($post && isset($post->post_type)) |
|
2121 | + elseif ($post && isset($post->post_type)) |
|
2122 | 2122 | $post_type = $post->post_type; |
2123 | 2123 | elseif ($typenow) |
2124 | 2124 | $post_type = $typenow; |
@@ -2153,7 +2153,7 @@ discard block |
||
2153 | 2153 | // Don't allow same slug url for listing and location |
2154 | 2154 | if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) { |
2155 | 2155 | $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21'); |
2156 | - wp_redirect($redirect_url); |
|
2156 | + wp_redirect($redirect_url); |
|
2157 | 2157 | exit; |
2158 | 2158 | } |
2159 | 2159 | |
@@ -2183,10 +2183,10 @@ discard block |
||
2183 | 2183 | * @package GeoDirectory |
2184 | 2184 | */ |
2185 | 2185 | function geodir_hide_admin_preview_button() { |
2186 | - global $post_type; |
|
2187 | - $post_types = geodir_get_posttypes(); |
|
2188 | - if(in_array($post_type, $post_types)) |
|
2189 | - echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>'; |
|
2186 | + global $post_type; |
|
2187 | + $post_types = geodir_get_posttypes(); |
|
2188 | + if(in_array($post_type, $post_types)) |
|
2189 | + echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>'; |
|
2190 | 2190 | } |
2191 | 2191 | add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' ); |
2192 | 2192 | add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' ); |
@@ -2201,7 +2201,7 @@ discard block |
||
2201 | 2201 | */ |
2202 | 2202 | function geodir_import_export_tab( $tabs ) { |
2203 | 2203 | $tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) ); |
2204 | - return $tabs; |
|
2204 | + return $tabs; |
|
2205 | 2205 | } |
2206 | 2206 | |
2207 | 2207 | /** |
@@ -2216,26 +2216,26 @@ discard block |
||
2216 | 2216 | function geodir_import_export_page() { |
2217 | 2217 | $nonce = wp_create_nonce( 'geodir_import_export_nonce' ); |
2218 | 2218 | $gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv'; |
2219 | - /** |
|
2220 | - * Filter sample category data csv file url. |
|
2221 | - * |
|
2222 | - * @since 1.0.0 |
|
2223 | - * @package GeoDirectory |
|
2224 | - * |
|
2225 | - * @param string $gd_cats_sample_csv Sample category data csv file url. |
|
2226 | - */ |
|
2219 | + /** |
|
2220 | + * Filter sample category data csv file url. |
|
2221 | + * |
|
2222 | + * @since 1.0.0 |
|
2223 | + * @package GeoDirectory |
|
2224 | + * |
|
2225 | + * @param string $gd_cats_sample_csv Sample category data csv file url. |
|
2226 | + */ |
|
2227 | 2227 | $gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv ); |
2228 | 2228 | |
2229 | 2229 | $gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv'; |
2230 | - /** |
|
2231 | - * Filter sample post data csv file url. |
|
2232 | - * |
|
2233 | - * @since 1.0.0 |
|
2234 | - * @package GeoDirectory |
|
2235 | - * |
|
2236 | - * @param string $gd_posts_sample_csv Sample post data csv file url. |
|
2237 | - */ |
|
2238 | - $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
2230 | + /** |
|
2231 | + * Filter sample post data csv file url. |
|
2232 | + * |
|
2233 | + * @since 1.0.0 |
|
2234 | + * @package GeoDirectory |
|
2235 | + * |
|
2236 | + * @param string $gd_posts_sample_csv Sample post data csv file url. |
|
2237 | + */ |
|
2238 | + $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
2239 | 2239 | |
2240 | 2240 | $gd_posttypes = geodir_get_posttypes( 'array' ); |
2241 | 2241 | |
@@ -2258,14 +2258,14 @@ discard block |
||
2258 | 2258 | $gd_chunksize_options[100000] = 100000; |
2259 | 2259 | |
2260 | 2260 | /** |
2261 | - * Filter max entries per export csv file. |
|
2262 | - * |
|
2263 | - * @since 1.5.6 |
|
2264 | - * @package GeoDirectory |
|
2265 | - * |
|
2266 | - * @param string $gd_chunksize_options Entries options. |
|
2267 | - */ |
|
2268 | - $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
2261 | + * Filter max entries per export csv file. |
|
2262 | + * |
|
2263 | + * @since 1.5.6 |
|
2264 | + * @package GeoDirectory |
|
2265 | + * |
|
2266 | + * @param string $gd_chunksize_options Entries options. |
|
2267 | + */ |
|
2268 | + $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
2269 | 2269 | |
2270 | 2270 | $gd_chunksize_option = ''; |
2271 | 2271 | foreach ($gd_chunksize_options as $value => $title) { |
@@ -2282,12 +2282,12 @@ discard block |
||
2282 | 2282 | <div class="gd-content-heading"> |
2283 | 2283 | |
2284 | 2284 | <?php |
2285 | - ini_set('max_execution_time', 999999); |
|
2286 | - $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
2287 | - ini_restore('max_execution_time'); |
|
2285 | + ini_set('max_execution_time', 999999); |
|
2286 | + $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
2287 | + ini_restore('max_execution_time'); |
|
2288 | 2288 | |
2289 | - if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting |
|
2290 | - ?> |
|
2289 | + if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting |
|
2290 | + ?> |
|
2291 | 2291 | <div id="gd_ie_reqs" class="metabox-holder"> |
2292 | 2292 | <div class="meta-box-sortables ui-sortable"> |
2293 | 2293 | <div class="postbox"> |
@@ -2462,7 +2462,7 @@ discard block |
||
2462 | 2462 | * Called just after the sample CSV download link. |
2463 | 2463 | * |
2464 | 2464 | * @since 1.0.0 |
2465 | - * @package GeoDirectory |
|
2465 | + * @package GeoDirectory |
|
2466 | 2466 | */ |
2467 | 2467 | do_action('geodir_sample_cats_csv_download_link'); |
2468 | 2468 | ?> |
@@ -2547,11 +2547,11 @@ discard block |
||
2547 | 2547 | * |
2548 | 2548 | * Called after the last setting on the GD > Import & Export page. |
2549 | 2549 | * @since 1.4.6 |
2550 | - * @package GeoDirectory |
|
2550 | + * @package GeoDirectory |
|
2551 | 2551 | * |
2552 | 2552 | * @param array $gd_posttypes GD post types. |
2553 | - * @param array $gd_chunksize_options File chunk size options. |
|
2554 | - * @param string $nonce Wordpress security token for GD import & export. |
|
2553 | + * @param array $gd_chunksize_options File chunk size options. |
|
2554 | + * @param string $nonce Wordpress security token for GD import & export. |
|
2555 | 2555 | */ |
2556 | 2556 | do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce ); |
2557 | 2557 | ?> |
@@ -3238,44 +3238,44 @@ discard block |
||
3238 | 3238 | function geodir_init_filesystem() |
3239 | 3239 | { |
3240 | 3240 | |
3241 | - if(!function_exists('get_filesystem_method')){ |
|
3242 | - require_once(ABSPATH."/wp-admin/includes/file.php"); |
|
3243 | - } |
|
3244 | - $access_type = get_filesystem_method(); |
|
3245 | - if ($access_type === 'direct') { |
|
3246 | - /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
|
3247 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
3248 | - |
|
3249 | - /* initialize the API */ |
|
3250 | - if (!WP_Filesystem($creds)) { |
|
3251 | - /* any problems and we exit */ |
|
3252 | - //return '@@@3'; |
|
3253 | - return false; |
|
3254 | - } |
|
3241 | + if(!function_exists('get_filesystem_method')){ |
|
3242 | + require_once(ABSPATH."/wp-admin/includes/file.php"); |
|
3243 | + } |
|
3244 | + $access_type = get_filesystem_method(); |
|
3245 | + if ($access_type === 'direct') { |
|
3246 | + /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
|
3247 | + $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
3248 | + |
|
3249 | + /* initialize the API */ |
|
3250 | + if (!WP_Filesystem($creds)) { |
|
3251 | + /* any problems and we exit */ |
|
3252 | + //return '@@@3'; |
|
3253 | + return false; |
|
3254 | + } |
|
3255 | 3255 | |
3256 | - global $wp_filesystem; |
|
3257 | - return $wp_filesystem; |
|
3258 | - /* do our file manipulations below */ |
|
3259 | - } elseif (defined('FTP_USER')) { |
|
3260 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
3256 | + global $wp_filesystem; |
|
3257 | + return $wp_filesystem; |
|
3258 | + /* do our file manipulations below */ |
|
3259 | + } elseif (defined('FTP_USER')) { |
|
3260 | + $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
3261 | + |
|
3262 | + /* initialize the API */ |
|
3263 | + if (!WP_Filesystem($creds)) { |
|
3264 | + /* any problems and we exit */ |
|
3265 | + //return '@@@33'; |
|
3266 | + return false; |
|
3267 | + } |
|
3261 | 3268 | |
3262 | - /* initialize the API */ |
|
3263 | - if (!WP_Filesystem($creds)) { |
|
3264 | - /* any problems and we exit */ |
|
3265 | - //return '@@@33'; |
|
3266 | - return false; |
|
3267 | - } |
|
3269 | + global $wp_filesystem; |
|
3270 | + //return '@@@1'; |
|
3271 | + return $wp_filesystem; |
|
3268 | 3272 | |
3269 | - global $wp_filesystem; |
|
3270 | - //return '@@@1'; |
|
3271 | - return $wp_filesystem; |
|
3272 | - |
|
3273 | - } else { |
|
3274 | - //return '@@@2'; |
|
3275 | - /* don't have direct write access. Prompt user with our notice */ |
|
3276 | - add_action('admin_notice', 'geodir_filesystem_notice'); |
|
3277 | - return false; |
|
3278 | - } |
|
3273 | + } else { |
|
3274 | + //return '@@@2'; |
|
3275 | + /* don't have direct write access. Prompt user with our notice */ |
|
3276 | + add_action('admin_notice', 'geodir_filesystem_notice'); |
|
3277 | + return false; |
|
3278 | + } |
|
3279 | 3279 | |
3280 | 3280 | } |
3281 | 3281 | |
@@ -3293,10 +3293,10 @@ discard block |
||
3293 | 3293 | */ |
3294 | 3294 | function geodir_filesystem_notice() |
3295 | 3295 | { if ( defined( 'DOING_AJAX' ) ){return;} |
3296 | - $access_type = get_filesystem_method(); |
|
3297 | - if ($access_type === 'direct') { |
|
3298 | - } elseif (!defined('FTP_USER')) { |
|
3299 | - ?> |
|
3296 | + $access_type = get_filesystem_method(); |
|
3297 | + if ($access_type === 'direct') { |
|
3298 | + } elseif (!defined('FTP_USER')) { |
|
3299 | + ?> |
|
3300 | 3300 | <div class="error"> |
3301 | 3301 | <p><?php _e('GeoDirectory does not have access to your filesystem, thing like import/export will not work. Please define your details in wp-config.php as explained here', 'geodirectory'); ?> |
3302 | 3302 | <a target="_blank" href="http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants">http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants</a> |
@@ -3323,1265 +3323,1265 @@ discard block |
||
3323 | 3323 | * @return string Json data. |
3324 | 3324 | */ |
3325 | 3325 | function geodir_ajax_import_export() { |
3326 | - global $wpdb, $plugin_prefix, $current_user, $wp_filesystem; |
|
3326 | + global $wpdb, $plugin_prefix, $current_user, $wp_filesystem; |
|
3327 | 3327 | |
3328 | - error_reporting(0); |
|
3328 | + error_reporting(0); |
|
3329 | 3329 | |
3330 | - $xstart = microtime(true); |
|
3330 | + $xstart = microtime(true); |
|
3331 | 3331 | |
3332 | - // try to set higher limits for import |
|
3333 | - $max_input_time = ini_get('max_input_time'); |
|
3334 | - $max_execution_time = ini_get('max_execution_time'); |
|
3335 | - $memory_limit= ini_get('memory_limit'); |
|
3332 | + // try to set higher limits for import |
|
3333 | + $max_input_time = ini_get('max_input_time'); |
|
3334 | + $max_execution_time = ini_get('max_execution_time'); |
|
3335 | + $memory_limit= ini_get('memory_limit'); |
|
3336 | 3336 | |
3337 | - if(!$max_input_time || $max_input_time<3000){ |
|
3338 | - ini_set('max_input_time', 3000); |
|
3339 | - } |
|
3337 | + if(!$max_input_time || $max_input_time<3000){ |
|
3338 | + ini_set('max_input_time', 3000); |
|
3339 | + } |
|
3340 | 3340 | |
3341 | - if(!$max_execution_time || $max_execution_time<3000){ |
|
3342 | - ini_set('max_execution_time', 3000); |
|
3343 | - } |
|
3341 | + if(!$max_execution_time || $max_execution_time<3000){ |
|
3342 | + ini_set('max_execution_time', 3000); |
|
3343 | + } |
|
3344 | 3344 | |
3345 | - if($memory_limit && str_replace('M','',$memory_limit)){ |
|
3346 | - if(str_replace('M','',$memory_limit)<256){ |
|
3347 | - ini_set('memory_limit', '256M'); |
|
3348 | - } |
|
3349 | - } |
|
3345 | + if($memory_limit && str_replace('M','',$memory_limit)){ |
|
3346 | + if(str_replace('M','',$memory_limit)<256){ |
|
3347 | + ini_set('memory_limit', '256M'); |
|
3348 | + } |
|
3349 | + } |
|
3350 | 3350 | |
3351 | - $json = array(); |
|
3351 | + $json = array(); |
|
3352 | 3352 | |
3353 | - if ( !current_user_can( 'manage_options' ) ) { |
|
3354 | - wp_send_json( $json ); |
|
3355 | - } |
|
3353 | + if ( !current_user_can( 'manage_options' ) ) { |
|
3354 | + wp_send_json( $json ); |
|
3355 | + } |
|
3356 | 3356 | |
3357 | - $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
3358 | - $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
3359 | - $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
3357 | + $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
3358 | + $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
3359 | + $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
3360 | 3360 | |
3361 | - if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) { |
|
3362 | - wp_send_json( $json ); |
|
3363 | - } |
|
3361 | + if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) { |
|
3362 | + wp_send_json( $json ); |
|
3363 | + } |
|
3364 | 3364 | |
3365 | - $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
3366 | - $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
3367 | - $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
|
3368 | - $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
3365 | + $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
3366 | + $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
3367 | + $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
|
3368 | + $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
3369 | 3369 | |
3370 | - $wp_filesystem = geodir_init_filesystem(); |
|
3371 | - if (!$wp_filesystem) { |
|
3372 | - $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
3373 | - wp_send_json( $json ); |
|
3374 | - } |
|
3370 | + $wp_filesystem = geodir_init_filesystem(); |
|
3371 | + if (!$wp_filesystem) { |
|
3372 | + $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
3373 | + wp_send_json( $json ); |
|
3374 | + } |
|
3375 | 3375 | |
3376 | - if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) { |
|
3377 | - $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
3378 | - wp_send_json( $json ); |
|
3379 | - } |
|
3376 | + if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) { |
|
3377 | + $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
3378 | + wp_send_json( $json ); |
|
3379 | + } |
|
3380 | 3380 | |
3381 | - $csv_file_dir = geodir_path_import_export( false ); |
|
3382 | - if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) { |
|
3383 | - if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) { |
|
3384 | - $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
3385 | - wp_send_json( $json ); |
|
3386 | - } |
|
3387 | - } |
|
3381 | + $csv_file_dir = geodir_path_import_export( false ); |
|
3382 | + if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) { |
|
3383 | + if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) { |
|
3384 | + $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
3385 | + wp_send_json( $json ); |
|
3386 | + } |
|
3387 | + } |
|
3388 | 3388 | |
3389 | - $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active. |
|
3390 | - $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false; |
|
3391 | - |
|
3392 | - switch ( $task ) { |
|
3393 | - case 'export_posts': { |
|
3394 | - // WPML |
|
3395 | - $is_wpml = geodir_is_wpml(); |
|
3396 | - if ($is_wpml) { |
|
3397 | - global $sitepress; |
|
3398 | - $active_lang = ICL_LANGUAGE_CODE; |
|
3389 | + $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active. |
|
3390 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false; |
|
3391 | + |
|
3392 | + switch ( $task ) { |
|
3393 | + case 'export_posts': { |
|
3394 | + // WPML |
|
3395 | + $is_wpml = geodir_is_wpml(); |
|
3396 | + if ($is_wpml) { |
|
3397 | + global $sitepress; |
|
3398 | + $active_lang = ICL_LANGUAGE_CODE; |
|
3399 | 3399 | |
3400 | - $sitepress->switch_lang('all', true); |
|
3401 | - } |
|
3402 | - // WPML |
|
3403 | - if ( $post_type == 'gd_event' ) { |
|
3404 | - add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
3405 | - } |
|
3406 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
3400 | + $sitepress->switch_lang('all', true); |
|
3401 | + } |
|
3402 | + // WPML |
|
3403 | + if ( $post_type == 'gd_event' ) { |
|
3404 | + add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
3405 | + } |
|
3406 | + $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
3407 | 3407 | |
3408 | - $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
3409 | - if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) { |
|
3410 | - $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
3411 | - } |
|
3412 | - $posts_count = geodir_get_posts_count( $post_type ); |
|
3413 | - $file_url_base = geodir_path_import_export() . '/'; |
|
3414 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
3415 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
3416 | - $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
3408 | + $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
3409 | + if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) { |
|
3410 | + $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
3411 | + } |
|
3412 | + $posts_count = geodir_get_posts_count( $post_type ); |
|
3413 | + $file_url_base = geodir_path_import_export() . '/'; |
|
3414 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
3415 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
3416 | + $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
3417 | 3417 | |
3418 | - $chunk_file_paths = array(); |
|
3418 | + $chunk_file_paths = array(); |
|
3419 | 3419 | |
3420 | - if ( isset( $_REQUEST['_c'] ) ) { |
|
3421 | - $json['total'] = $posts_count; |
|
3422 | - // WPML |
|
3423 | - if ($is_wpml) { |
|
3424 | - $sitepress->switch_lang($active_lang, true); |
|
3425 | - } |
|
3426 | - // WPML |
|
3427 | - wp_send_json( $json ); |
|
3428 | - gd_die(); |
|
3429 | - } else if ( isset( $_REQUEST['_st'] ) ) { |
|
3430 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
3431 | - $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
3432 | - $percentage = min( $percentage, 100 ); |
|
3420 | + if ( isset( $_REQUEST['_c'] ) ) { |
|
3421 | + $json['total'] = $posts_count; |
|
3422 | + // WPML |
|
3423 | + if ($is_wpml) { |
|
3424 | + $sitepress->switch_lang($active_lang, true); |
|
3425 | + } |
|
3426 | + // WPML |
|
3427 | + wp_send_json( $json ); |
|
3428 | + gd_die(); |
|
3429 | + } else if ( isset( $_REQUEST['_st'] ) ) { |
|
3430 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
3431 | + $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
3432 | + $percentage = min( $percentage, 100 ); |
|
3433 | 3433 | |
3434 | - $json['percentage'] = $percentage; |
|
3435 | - // WPML |
|
3436 | - if ($is_wpml) { |
|
3437 | - $sitepress->switch_lang($active_lang, true); |
|
3438 | - } |
|
3439 | - // WPML |
|
3440 | - wp_send_json( $json ); |
|
3441 | - gd_die(); |
|
3442 | - } else { |
|
3443 | - if ( !$posts_count > 0 ) { |
|
3444 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
3445 | - } else { |
|
3446 | - $total_posts = $posts_count; |
|
3447 | - if ($chunk_per_page > $total_posts) { |
|
3448 | - $chunk_per_page = $total_posts; |
|
3449 | - } |
|
3450 | - $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
3434 | + $json['percentage'] = $percentage; |
|
3435 | + // WPML |
|
3436 | + if ($is_wpml) { |
|
3437 | + $sitepress->switch_lang($active_lang, true); |
|
3438 | + } |
|
3439 | + // WPML |
|
3440 | + wp_send_json( $json ); |
|
3441 | + gd_die(); |
|
3442 | + } else { |
|
3443 | + if ( !$posts_count > 0 ) { |
|
3444 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
3445 | + } else { |
|
3446 | + $total_posts = $posts_count; |
|
3447 | + if ($chunk_per_page > $total_posts) { |
|
3448 | + $chunk_per_page = $total_posts; |
|
3449 | + } |
|
3450 | + $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
3451 | 3451 | |
3452 | - $j = $chunk_page_no; |
|
3453 | - $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
3452 | + $j = $chunk_page_no; |
|
3453 | + $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
3454 | 3454 | |
3455 | - $per_page = 500; |
|
3456 | - if ($per_page > $chunk_per_page) { |
|
3457 | - $per_page = $chunk_per_page; |
|
3458 | - } |
|
3459 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
3455 | + $per_page = 500; |
|
3456 | + if ($per_page > $chunk_per_page) { |
|
3457 | + $per_page = $chunk_per_page; |
|
3458 | + } |
|
3459 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
3460 | 3460 | |
3461 | - for ( $i = 0; $i <= $total_pages; $i++ ) { |
|
3462 | - $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
3461 | + for ( $i = 0; $i <= $total_pages; $i++ ) { |
|
3462 | + $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
3463 | 3463 | |
3464 | - $clear = $i == 0 ? true : false; |
|
3465 | - geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
3466 | - } |
|
3464 | + $clear = $i == 0 ? true : false; |
|
3465 | + geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
3466 | + } |
|
3467 | 3467 | |
3468 | - if ( $wp_filesystem->exists( $file_path_temp ) ) { |
|
3469 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
3470 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
3471 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
3472 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
3468 | + if ( $wp_filesystem->exists( $file_path_temp ) ) { |
|
3469 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
3470 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
3471 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
3472 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
3473 | 3473 | |
3474 | - $file_url = $file_url_base . $chunk_file_name; |
|
3475 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2)); |
|
3476 | - } |
|
3474 | + $file_url = $file_url_base . $chunk_file_name; |
|
3475 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2)); |
|
3476 | + } |
|
3477 | 3477 | |
3478 | - if ( !empty($chunk_file_paths) ) { |
|
3479 | - $json['total'] = $posts_count; |
|
3480 | - $json['files'] = $chunk_file_paths; |
|
3481 | - } else { |
|
3482 | - if ($j > 1) { |
|
3483 | - $json['total'] = $posts_count; |
|
3484 | - $json['files'] = array(); |
|
3485 | - } else { |
|
3486 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
3487 | - } |
|
3488 | - } |
|
3489 | - } |
|
3490 | - // WPML |
|
3491 | - if ($is_wpml) { |
|
3492 | - $sitepress->switch_lang($active_lang, true); |
|
3493 | - } |
|
3494 | - // WPML |
|
3495 | - wp_send_json( $json ); |
|
3496 | - } |
|
3497 | - } |
|
3498 | - break; |
|
3499 | - case 'export_cats': { |
|
3500 | - // WPML |
|
3501 | - $is_wpml = geodir_is_wpml(); |
|
3502 | - if ($is_wpml) { |
|
3503 | - global $sitepress; |
|
3504 | - $active_lang = ICL_LANGUAGE_CODE; |
|
3478 | + if ( !empty($chunk_file_paths) ) { |
|
3479 | + $json['total'] = $posts_count; |
|
3480 | + $json['files'] = $chunk_file_paths; |
|
3481 | + } else { |
|
3482 | + if ($j > 1) { |
|
3483 | + $json['total'] = $posts_count; |
|
3484 | + $json['files'] = array(); |
|
3485 | + } else { |
|
3486 | + $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
3487 | + } |
|
3488 | + } |
|
3489 | + } |
|
3490 | + // WPML |
|
3491 | + if ($is_wpml) { |
|
3492 | + $sitepress->switch_lang($active_lang, true); |
|
3493 | + } |
|
3494 | + // WPML |
|
3495 | + wp_send_json( $json ); |
|
3496 | + } |
|
3497 | + } |
|
3498 | + break; |
|
3499 | + case 'export_cats': { |
|
3500 | + // WPML |
|
3501 | + $is_wpml = geodir_is_wpml(); |
|
3502 | + if ($is_wpml) { |
|
3503 | + global $sitepress; |
|
3504 | + $active_lang = ICL_LANGUAGE_CODE; |
|
3505 | 3505 | |
3506 | - $sitepress->switch_lang('all', true); |
|
3507 | - } |
|
3508 | - // WPML |
|
3509 | - $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
3506 | + $sitepress->switch_lang('all', true); |
|
3507 | + } |
|
3508 | + // WPML |
|
3509 | + $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
3510 | 3510 | |
3511 | - $terms_count = geodir_get_terms_count( $post_type ); |
|
3512 | - $file_url_base = geodir_path_import_export() . '/'; |
|
3513 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
3514 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
3515 | - $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
3511 | + $terms_count = geodir_get_terms_count( $post_type ); |
|
3512 | + $file_url_base = geodir_path_import_export() . '/'; |
|
3513 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
3514 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
3515 | + $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
3516 | 3516 | |
3517 | - $chunk_file_paths = array(); |
|
3517 | + $chunk_file_paths = array(); |
|
3518 | 3518 | |
3519 | - if ( isset( $_REQUEST['_st'] ) ) { |
|
3520 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
3521 | - $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
3522 | - $percentage = min( $percentage, 100 ); |
|
3519 | + if ( isset( $_REQUEST['_st'] ) ) { |
|
3520 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
3521 | + $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
3522 | + $percentage = min( $percentage, 100 ); |
|
3523 | 3523 | |
3524 | - $json['percentage'] = $percentage; |
|
3525 | - // WPML |
|
3526 | - if ($is_wpml) { |
|
3527 | - $sitepress->switch_lang($active_lang, true); |
|
3528 | - } |
|
3529 | - // WPML |
|
3530 | - wp_send_json( $json ); |
|
3531 | - } else { |
|
3532 | - if ( !$terms_count > 0 ) { |
|
3533 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
3534 | - } else { |
|
3535 | - $total_terms = $terms_count; |
|
3536 | - if ($chunk_per_page > $terms_count) { |
|
3537 | - $chunk_per_page = $terms_count; |
|
3538 | - } |
|
3539 | - $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
3524 | + $json['percentage'] = $percentage; |
|
3525 | + // WPML |
|
3526 | + if ($is_wpml) { |
|
3527 | + $sitepress->switch_lang($active_lang, true); |
|
3528 | + } |
|
3529 | + // WPML |
|
3530 | + wp_send_json( $json ); |
|
3531 | + } else { |
|
3532 | + if ( !$terms_count > 0 ) { |
|
3533 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
3534 | + } else { |
|
3535 | + $total_terms = $terms_count; |
|
3536 | + if ($chunk_per_page > $terms_count) { |
|
3537 | + $chunk_per_page = $terms_count; |
|
3538 | + } |
|
3539 | + $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
3540 | 3540 | |
3541 | - $j = $chunk_page_no; |
|
3542 | - $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
3541 | + $j = $chunk_page_no; |
|
3542 | + $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
3543 | 3543 | |
3544 | - $per_page = 500; |
|
3545 | - if ($per_page > $chunk_per_page) { |
|
3546 | - $per_page = $chunk_per_page; |
|
3547 | - } |
|
3548 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
3544 | + $per_page = 500; |
|
3545 | + if ($per_page > $chunk_per_page) { |
|
3546 | + $per_page = $chunk_per_page; |
|
3547 | + } |
|
3548 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
3549 | 3549 | |
3550 | - for ( $i = 0; $i <= $total_pages; $i++ ) { |
|
3551 | - $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
3550 | + for ( $i = 0; $i <= $total_pages; $i++ ) { |
|
3551 | + $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
3552 | 3552 | |
3553 | - $clear = $i == 0 ? true : false; |
|
3554 | - geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
3555 | - } |
|
3553 | + $clear = $i == 0 ? true : false; |
|
3554 | + geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
3555 | + } |
|
3556 | 3556 | |
3557 | - if ( $wp_filesystem->exists( $file_path_temp ) ) { |
|
3558 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
3559 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
3560 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
3561 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
3557 | + if ( $wp_filesystem->exists( $file_path_temp ) ) { |
|
3558 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
3559 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
3560 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
3561 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
3562 | 3562 | |
3563 | - $file_url = $file_url_base . $chunk_file_name; |
|
3564 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2)); |
|
3565 | - } |
|
3563 | + $file_url = $file_url_base . $chunk_file_name; |
|
3564 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2)); |
|
3565 | + } |
|
3566 | 3566 | |
3567 | - if ( !empty($chunk_file_paths) ) { |
|
3568 | - $json['total'] = $terms_count; |
|
3569 | - $json['files'] = $chunk_file_paths; |
|
3570 | - } else { |
|
3571 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
3572 | - } |
|
3573 | - } |
|
3574 | - // WPML |
|
3575 | - if ($is_wpml) { |
|
3576 | - $sitepress->switch_lang($active_lang, true); |
|
3577 | - } |
|
3578 | - // WPML |
|
3579 | - wp_send_json( $json ); |
|
3580 | - } |
|
3581 | - } |
|
3582 | - break; |
|
3583 | - case 'export_locations': { |
|
3584 | - $file_url_base = geodir_path_import_export() . '/'; |
|
3585 | - $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
3586 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
3587 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
3588 | - $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
3567 | + if ( !empty($chunk_file_paths) ) { |
|
3568 | + $json['total'] = $terms_count; |
|
3569 | + $json['files'] = $chunk_file_paths; |
|
3570 | + } else { |
|
3571 | + $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
3572 | + } |
|
3573 | + } |
|
3574 | + // WPML |
|
3575 | + if ($is_wpml) { |
|
3576 | + $sitepress->switch_lang($active_lang, true); |
|
3577 | + } |
|
3578 | + // WPML |
|
3579 | + wp_send_json( $json ); |
|
3580 | + } |
|
3581 | + } |
|
3582 | + break; |
|
3583 | + case 'export_locations': { |
|
3584 | + $file_url_base = geodir_path_import_export() . '/'; |
|
3585 | + $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
3586 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
3587 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
3588 | + $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
3589 | 3589 | |
3590 | - $items_count = (int)geodir_location_imex_count_locations(); |
|
3590 | + $items_count = (int)geodir_location_imex_count_locations(); |
|
3591 | 3591 | |
3592 | - if ( isset( $_REQUEST['_st'] ) ) { |
|
3593 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
3594 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
3595 | - $percentage = min( $percentage, 100 ); |
|
3592 | + if ( isset( $_REQUEST['_st'] ) ) { |
|
3593 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
3594 | + $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
3595 | + $percentage = min( $percentage, 100 ); |
|
3596 | 3596 | |
3597 | - $json['percentage'] = $percentage; |
|
3598 | - wp_send_json( $json ); |
|
3599 | - } else { |
|
3600 | - $chunk_file_paths = array(); |
|
3597 | + $json['percentage'] = $percentage; |
|
3598 | + wp_send_json( $json ); |
|
3599 | + } else { |
|
3600 | + $chunk_file_paths = array(); |
|
3601 | 3601 | |
3602 | - if ( !$items_count > 0 ) { |
|
3603 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
3604 | - } else { |
|
3605 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
3606 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
3602 | + if ( !$items_count > 0 ) { |
|
3603 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
3604 | + } else { |
|
3605 | + $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
3606 | + $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
3607 | 3607 | |
3608 | - $j = $chunk_page_no; |
|
3609 | - $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
3608 | + $j = $chunk_page_no; |
|
3609 | + $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
3610 | 3610 | |
3611 | - $per_page = 500; |
|
3612 | - $per_page = min( $per_page, $chunk_per_page ); |
|
3613 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
3611 | + $per_page = 500; |
|
3612 | + $per_page = min( $per_page, $chunk_per_page ); |
|
3613 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
3614 | 3614 | |
3615 | - for ( $i = 0; $i <= $total_pages; $i++ ) { |
|
3616 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
3615 | + for ( $i = 0; $i <= $total_pages; $i++ ) { |
|
3616 | + $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
3617 | 3617 | |
3618 | - $clear = $i == 0 ? true : false; |
|
3619 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
3620 | - } |
|
3618 | + $clear = $i == 0 ? true : false; |
|
3619 | + geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
3620 | + } |
|
3621 | 3621 | |
3622 | - if ( $wp_filesystem->exists( $file_path_temp ) ) { |
|
3623 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
3624 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
3625 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
3626 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
3622 | + if ( $wp_filesystem->exists( $file_path_temp ) ) { |
|
3623 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
3624 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
3625 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
3626 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
3627 | 3627 | |
3628 | - $file_url = $file_url_base . $chunk_file_name; |
|
3629 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2)); |
|
3630 | - } |
|
3628 | + $file_url = $file_url_base . $chunk_file_name; |
|
3629 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2)); |
|
3630 | + } |
|
3631 | 3631 | |
3632 | - if ( !empty($chunk_file_paths) ) { |
|
3633 | - $json['total'] = $items_count; |
|
3634 | - $json['files'] = $chunk_file_paths; |
|
3635 | - } else { |
|
3636 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
3637 | - } |
|
3638 | - } |
|
3639 | - wp_send_json( $json ); |
|
3640 | - } |
|
3641 | - } |
|
3642 | - break; |
|
3643 | - case 'export_hoods': { |
|
3644 | - $file_url_base = geodir_path_import_export() . '/'; |
|
3645 | - $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
3646 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
3647 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
3648 | - $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
3632 | + if ( !empty($chunk_file_paths) ) { |
|
3633 | + $json['total'] = $items_count; |
|
3634 | + $json['files'] = $chunk_file_paths; |
|
3635 | + } else { |
|
3636 | + $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
3637 | + } |
|
3638 | + } |
|
3639 | + wp_send_json( $json ); |
|
3640 | + } |
|
3641 | + } |
|
3642 | + break; |
|
3643 | + case 'export_hoods': { |
|
3644 | + $file_url_base = geodir_path_import_export() . '/'; |
|
3645 | + $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
3646 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
3647 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
3648 | + $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
3649 | 3649 | |
3650 | - $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
3650 | + $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
3651 | 3651 | |
3652 | - if ( isset( $_REQUEST['_st'] ) ) { |
|
3653 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
3654 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
3655 | - $percentage = min( $percentage, 100 ); |
|
3652 | + if ( isset( $_REQUEST['_st'] ) ) { |
|
3653 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
3654 | + $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
3655 | + $percentage = min( $percentage, 100 ); |
|
3656 | 3656 | |
3657 | - $json['percentage'] = $percentage; |
|
3658 | - wp_send_json( $json ); |
|
3659 | - } else { |
|
3660 | - $chunk_file_paths = array(); |
|
3657 | + $json['percentage'] = $percentage; |
|
3658 | + wp_send_json( $json ); |
|
3659 | + } else { |
|
3660 | + $chunk_file_paths = array(); |
|
3661 | 3661 | |
3662 | - if ( !$items_count > 0 ) { |
|
3663 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
3664 | - } else { |
|
3665 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
3666 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
3662 | + if ( !$items_count > 0 ) { |
|
3663 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
3664 | + } else { |
|
3665 | + $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
3666 | + $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
3667 | 3667 | |
3668 | - $j = $chunk_page_no; |
|
3669 | - $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
3668 | + $j = $chunk_page_no; |
|
3669 | + $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
3670 | 3670 | |
3671 | - $per_page = 500; |
|
3672 | - $per_page = min( $per_page, $chunk_per_page ); |
|
3673 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
3671 | + $per_page = 500; |
|
3672 | + $per_page = min( $per_page, $chunk_per_page ); |
|
3673 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
3674 | 3674 | |
3675 | - for ( $i = 0; $i <= $total_pages; $i++ ) { |
|
3676 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
3675 | + for ( $i = 0; $i <= $total_pages; $i++ ) { |
|
3676 | + $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
3677 | 3677 | |
3678 | - $clear = $i == 0 ? true : false; |
|
3679 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
3680 | - } |
|
3678 | + $clear = $i == 0 ? true : false; |
|
3679 | + geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
3680 | + } |
|
3681 | 3681 | |
3682 | - if ( $wp_filesystem->exists( $file_path_temp ) ) { |
|
3683 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
3684 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
3685 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
3686 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
3682 | + if ( $wp_filesystem->exists( $file_path_temp ) ) { |
|
3683 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
3684 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
3685 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
3686 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
3687 | 3687 | |
3688 | - $file_url = $file_url_base . $chunk_file_name; |
|
3689 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2)); |
|
3690 | - } |
|
3688 | + $file_url = $file_url_base . $chunk_file_name; |
|
3689 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2)); |
|
3690 | + } |
|
3691 | 3691 | |
3692 | - if ( !empty($chunk_file_paths) ) { |
|
3693 | - $json['total'] = $items_count; |
|
3694 | - $json['files'] = $chunk_file_paths; |
|
3695 | - } else { |
|
3696 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
3697 | - } |
|
3698 | - } |
|
3699 | - wp_send_json( $json ); |
|
3700 | - } |
|
3701 | - } |
|
3702 | - break; |
|
3703 | - case 'prepare_import': |
|
3704 | - case 'import_cat': |
|
3705 | - case 'import_post': |
|
3706 | - case 'import_loc': |
|
3707 | - case 'import_hood': { |
|
3708 | - // WPML |
|
3709 | - $is_wpml = geodir_is_wpml(); |
|
3710 | - if ($is_wpml) { |
|
3711 | - global $sitepress; |
|
3712 | - $active_lang = ICL_LANGUAGE_CODE; |
|
3713 | - } |
|
3714 | - // WPML |
|
3692 | + if ( !empty($chunk_file_paths) ) { |
|
3693 | + $json['total'] = $items_count; |
|
3694 | + $json['files'] = $chunk_file_paths; |
|
3695 | + } else { |
|
3696 | + $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
3697 | + } |
|
3698 | + } |
|
3699 | + wp_send_json( $json ); |
|
3700 | + } |
|
3701 | + } |
|
3702 | + break; |
|
3703 | + case 'prepare_import': |
|
3704 | + case 'import_cat': |
|
3705 | + case 'import_post': |
|
3706 | + case 'import_loc': |
|
3707 | + case 'import_hood': { |
|
3708 | + // WPML |
|
3709 | + $is_wpml = geodir_is_wpml(); |
|
3710 | + if ($is_wpml) { |
|
3711 | + global $sitepress; |
|
3712 | + $active_lang = ICL_LANGUAGE_CODE; |
|
3713 | + } |
|
3714 | + // WPML |
|
3715 | 3715 | |
3716 | - ini_set( 'auto_detect_line_endings', true ); |
|
3716 | + ini_set( 'auto_detect_line_endings', true ); |
|
3717 | 3717 | |
3718 | - $uploads = wp_upload_dir(); |
|
3719 | - $uploads_dir = $uploads['path']; |
|
3720 | - $uploads_subdir = $uploads['subdir']; |
|
3718 | + $uploads = wp_upload_dir(); |
|
3719 | + $uploads_dir = $uploads['path']; |
|
3720 | + $uploads_subdir = $uploads['subdir']; |
|
3721 | 3721 | |
3722 | - $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
3723 | - $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
3722 | + $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
3723 | + $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
3724 | 3724 | |
3725 | - $csv_file_arr = explode( '/', $csv_file ); |
|
3726 | - $csv_filename = end( $csv_file_arr ); |
|
3727 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
3725 | + $csv_file_arr = explode( '/', $csv_file ); |
|
3726 | + $csv_filename = end( $csv_file_arr ); |
|
3727 | + $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
3728 | 3728 | |
3729 | - $json['file'] = $csv_file; |
|
3730 | - $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
3731 | - $file = array(); |
|
3729 | + $json['file'] = $csv_file; |
|
3730 | + $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
3731 | + $file = array(); |
|
3732 | 3732 | |
3733 | - if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) { |
|
3734 | - $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
3733 | + if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) { |
|
3734 | + $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
3735 | 3735 | |
3736 | - if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') { |
|
3737 | - $json['error'] = NULL; |
|
3738 | - $json['rows'] = 0; |
|
3736 | + if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') { |
|
3737 | + $json['error'] = NULL; |
|
3738 | + $json['rows'] = 0; |
|
3739 | 3739 | |
3740 | - $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
|
3741 | - setlocale(LC_ALL, 'en_US.UTF-8'); |
|
3742 | - if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) { |
|
3743 | - while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) { |
|
3744 | - if ( !empty( $data ) ) { |
|
3745 | - $file[] = $data; |
|
3746 | - } |
|
3747 | - } |
|
3748 | - fclose($handle); |
|
3749 | - } |
|
3750 | - setlocale(LC_ALL, $lc_all); |
|
3740 | + $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
|
3741 | + setlocale(LC_ALL, 'en_US.UTF-8'); |
|
3742 | + if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) { |
|
3743 | + while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) { |
|
3744 | + if ( !empty( $data ) ) { |
|
3745 | + $file[] = $data; |
|
3746 | + } |
|
3747 | + } |
|
3748 | + fclose($handle); |
|
3749 | + } |
|
3750 | + setlocale(LC_ALL, $lc_all); |
|
3751 | 3751 | |
3752 | - $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
3752 | + $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
3753 | 3753 | |
3754 | - if (!$json['rows'] > 0) { |
|
3755 | - $json['error'] = __('No data found in csv file.', 'geodirectory'); |
|
3756 | - } |
|
3757 | - } else { |
|
3758 | - wp_send_json( $json ); |
|
3759 | - } |
|
3760 | - } else { |
|
3761 | - wp_send_json( $json ); |
|
3762 | - } |
|
3754 | + if (!$json['rows'] > 0) { |
|
3755 | + $json['error'] = __('No data found in csv file.', 'geodirectory'); |
|
3756 | + } |
|
3757 | + } else { |
|
3758 | + wp_send_json( $json ); |
|
3759 | + } |
|
3760 | + } else { |
|
3761 | + wp_send_json( $json ); |
|
3762 | + } |
|
3763 | 3763 | |
3764 | - if ( $task == 'prepare_import' || !empty( $json['error'] ) ) { |
|
3765 | - wp_send_json( $json ); |
|
3766 | - } |
|
3764 | + if ( $task == 'prepare_import' || !empty( $json['error'] ) ) { |
|
3765 | + wp_send_json( $json ); |
|
3766 | + } |
|
3767 | 3767 | |
3768 | - $total = $json['rows']; |
|
3769 | - $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
3770 | - $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
3768 | + $total = $json['rows']; |
|
3769 | + $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
3770 | + $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
3771 | 3771 | |
3772 | - $count = $limit; |
|
3772 | + $count = $limit; |
|
3773 | 3773 | |
3774 | - if ($count < $total) { |
|
3775 | - $count = $processed + $count; |
|
3776 | - if ($count > $total) { |
|
3777 | - $count = $total; |
|
3778 | - } |
|
3779 | - } else { |
|
3780 | - $count = $total; |
|
3781 | - } |
|
3774 | + if ($count < $total) { |
|
3775 | + $count = $processed + $count; |
|
3776 | + if ($count > $total) { |
|
3777 | + $count = $total; |
|
3778 | + } |
|
3779 | + } else { |
|
3780 | + $count = $total; |
|
3781 | + } |
|
3782 | 3782 | |
3783 | - $created = 0; |
|
3784 | - $updated = 0; |
|
3785 | - $skipped = 0; |
|
3786 | - $invalid = 0; |
|
3787 | - $invalid_addr = 0; |
|
3788 | - $images = 0; |
|
3783 | + $created = 0; |
|
3784 | + $updated = 0; |
|
3785 | + $skipped = 0; |
|
3786 | + $invalid = 0; |
|
3787 | + $invalid_addr = 0; |
|
3788 | + $images = 0; |
|
3789 | 3789 | |
3790 | - $gd_post_info = array(); |
|
3791 | - $countpost = 0; |
|
3790 | + $gd_post_info = array(); |
|
3791 | + $countpost = 0; |
|
3792 | 3792 | |
3793 | - $post_types = geodir_get_posttypes(); |
|
3793 | + $post_types = geodir_get_posttypes(); |
|
3794 | 3794 | |
3795 | - if ( $task == 'import_cat' ) { |
|
3796 | - if (!empty($file)) { |
|
3797 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
3795 | + if ( $task == 'import_cat' ) { |
|
3796 | + if (!empty($file)) { |
|
3797 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
3798 | 3798 | |
3799 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
3800 | - $json['error'] = CSV_INVAILD_FILE; |
|
3801 | - wp_send_json( $json ); |
|
3802 | - exit; |
|
3803 | - } |
|
3799 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
3800 | + $json['error'] = CSV_INVAILD_FILE; |
|
3801 | + wp_send_json( $json ); |
|
3802 | + exit; |
|
3803 | + } |
|
3804 | 3804 | |
3805 | - $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory'); |
|
3805 | + $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory'); |
|
3806 | 3806 | |
3807 | - for ($i = 1; $i <= $limit; $i++) { |
|
3808 | - $index = $processed + $i; |
|
3807 | + for ($i = 1; $i <= $limit; $i++) { |
|
3808 | + $index = $processed + $i; |
|
3809 | 3809 | |
3810 | - if (isset($file[$index])) { |
|
3811 | - $row = $file[$index]; |
|
3812 | - $row = array_map( 'trim', $row ); |
|
3813 | - //$row = array_map( 'utf8_encode', $row ); |
|
3810 | + if (isset($file[$index])) { |
|
3811 | + $row = $file[$index]; |
|
3812 | + $row = array_map( 'trim', $row ); |
|
3813 | + //$row = array_map( 'utf8_encode', $row ); |
|
3814 | 3814 | |
3815 | - $cat_id = ''; |
|
3816 | - $cat_name = ''; |
|
3817 | - $cat_slug = ''; |
|
3818 | - $cat_posttype = ''; |
|
3819 | - $cat_parent = ''; |
|
3820 | - $cat_description = ''; |
|
3821 | - $cat_schema = ''; |
|
3822 | - $cat_top_description = ''; |
|
3823 | - $cat_image = ''; |
|
3824 | - $cat_icon = ''; |
|
3825 | - $cat_language = ''; |
|
3826 | - $cat_id_original = ''; |
|
3815 | + $cat_id = ''; |
|
3816 | + $cat_name = ''; |
|
3817 | + $cat_slug = ''; |
|
3818 | + $cat_posttype = ''; |
|
3819 | + $cat_parent = ''; |
|
3820 | + $cat_description = ''; |
|
3821 | + $cat_schema = ''; |
|
3822 | + $cat_top_description = ''; |
|
3823 | + $cat_image = ''; |
|
3824 | + $cat_icon = ''; |
|
3825 | + $cat_language = ''; |
|
3826 | + $cat_id_original = ''; |
|
3827 | 3827 | |
3828 | - $c = 0; |
|
3829 | - foreach ($columns as $column ) { |
|
3830 | - if ( $column == 'cat_id' ) { |
|
3831 | - $cat_id = (int)$row[$c]; |
|
3832 | - } else if ( $column == 'cat_name' ) { |
|
3833 | - $cat_name = $row[$c]; |
|
3834 | - } else if ( $column == 'cat_slug' ) { |
|
3835 | - $cat_slug = $row[$c]; |
|
3836 | - } else if ( $column == 'cat_posttype' ) { |
|
3837 | - $cat_posttype = $row[$c]; |
|
3838 | - } else if ( $column == 'cat_parent' ) { |
|
3839 | - $cat_parent = trim($row[$c]); |
|
3840 | - } else if ( $column == 'cat_schema' && $row[$c] != '' ) { |
|
3841 | - $cat_schema = $row[$c]; |
|
3842 | - } else if ( $column == 'cat_description' ) { |
|
3843 | - $cat_description = $row[$c]; |
|
3844 | - } else if ( $column == 'cat_top_description' ) { |
|
3845 | - $cat_top_description = $row[$c]; |
|
3846 | - } else if ( $column == 'cat_image' ) { |
|
3847 | - $cat_image = $row[$c]; |
|
3848 | - } else if ( $column == 'cat_icon' ) { |
|
3849 | - $cat_icon = $row[$c]; |
|
3850 | - } |
|
3851 | - // WPML |
|
3852 | - if ( $is_wpml ) { |
|
3853 | - if ( $column == 'cat_language' ) { |
|
3854 | - $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
3855 | - } else if ( $column == 'cat_id_original' ) { |
|
3856 | - $cat_id_original = (int)$row[$c]; |
|
3857 | - } |
|
3858 | - } |
|
3859 | - // WPML |
|
3860 | - $c++; |
|
3861 | - } |
|
3828 | + $c = 0; |
|
3829 | + foreach ($columns as $column ) { |
|
3830 | + if ( $column == 'cat_id' ) { |
|
3831 | + $cat_id = (int)$row[$c]; |
|
3832 | + } else if ( $column == 'cat_name' ) { |
|
3833 | + $cat_name = $row[$c]; |
|
3834 | + } else if ( $column == 'cat_slug' ) { |
|
3835 | + $cat_slug = $row[$c]; |
|
3836 | + } else if ( $column == 'cat_posttype' ) { |
|
3837 | + $cat_posttype = $row[$c]; |
|
3838 | + } else if ( $column == 'cat_parent' ) { |
|
3839 | + $cat_parent = trim($row[$c]); |
|
3840 | + } else if ( $column == 'cat_schema' && $row[$c] != '' ) { |
|
3841 | + $cat_schema = $row[$c]; |
|
3842 | + } else if ( $column == 'cat_description' ) { |
|
3843 | + $cat_description = $row[$c]; |
|
3844 | + } else if ( $column == 'cat_top_description' ) { |
|
3845 | + $cat_top_description = $row[$c]; |
|
3846 | + } else if ( $column == 'cat_image' ) { |
|
3847 | + $cat_image = $row[$c]; |
|
3848 | + } else if ( $column == 'cat_icon' ) { |
|
3849 | + $cat_icon = $row[$c]; |
|
3850 | + } |
|
3851 | + // WPML |
|
3852 | + if ( $is_wpml ) { |
|
3853 | + if ( $column == 'cat_language' ) { |
|
3854 | + $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
3855 | + } else if ( $column == 'cat_id_original' ) { |
|
3856 | + $cat_id_original = (int)$row[$c]; |
|
3857 | + } |
|
3858 | + } |
|
3859 | + // WPML |
|
3860 | + $c++; |
|
3861 | + } |
|
3862 | 3862 | |
3863 | - if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) { |
|
3864 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
3863 | + if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) { |
|
3864 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
3865 | 3865 | |
3866 | - $invalid++; |
|
3867 | - continue; |
|
3868 | - } |
|
3866 | + $invalid++; |
|
3867 | + continue; |
|
3868 | + } |
|
3869 | 3869 | |
3870 | - // WPML |
|
3871 | - if ($is_wpml && $cat_language != '') { |
|
3872 | - $sitepress->switch_lang($cat_language, true); |
|
3873 | - } |
|
3874 | - // WPML |
|
3870 | + // WPML |
|
3871 | + if ($is_wpml && $cat_language != '') { |
|
3872 | + $sitepress->switch_lang($cat_language, true); |
|
3873 | + } |
|
3874 | + // WPML |
|
3875 | 3875 | |
3876 | - $term_data = array(); |
|
3877 | - $term_data['name'] = $cat_name; |
|
3878 | - $term_data['slug'] = $cat_slug; |
|
3879 | - $term_data['description'] = $cat_description; |
|
3880 | - $term_data['cat_schema'] = $cat_schema; |
|
3881 | - $term_data['top_description'] = $cat_top_description; |
|
3882 | - $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
3883 | - $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
3876 | + $term_data = array(); |
|
3877 | + $term_data['name'] = $cat_name; |
|
3878 | + $term_data['slug'] = $cat_slug; |
|
3879 | + $term_data['description'] = $cat_description; |
|
3880 | + $term_data['cat_schema'] = $cat_schema; |
|
3881 | + $term_data['top_description'] = $cat_top_description; |
|
3882 | + $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
3883 | + $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
3884 | 3884 | |
3885 | - //$term_data = array_map( 'utf8_encode', $term_data ); |
|
3885 | + //$term_data = array_map( 'utf8_encode', $term_data ); |
|
3886 | 3886 | |
3887 | - $taxonomy = $cat_posttype . 'category'; |
|
3887 | + $taxonomy = $cat_posttype . 'category'; |
|
3888 | 3888 | |
3889 | - $term_data['taxonomy'] = $taxonomy; |
|
3889 | + $term_data['taxonomy'] = $taxonomy; |
|
3890 | 3890 | |
3891 | - $term_parent_id = 0; |
|
3892 | - if ($cat_parent != "" || (int)$cat_parent > 0) { |
|
3893 | - $term_parent = ''; |
|
3891 | + $term_parent_id = 0; |
|
3892 | + if ($cat_parent != "" || (int)$cat_parent > 0) { |
|
3893 | + $term_parent = ''; |
|
3894 | 3894 | |
3895 | - if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) { |
|
3896 | - // |
|
3897 | - } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) { |
|
3898 | - // |
|
3899 | - } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) { |
|
3900 | - // |
|
3901 | - } else { |
|
3902 | - $term_parent_data = array(); |
|
3903 | - $term_parent_data['name'] = $cat_parent; |
|
3904 | - //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
|
3905 | - $term_parent_data['taxonomy'] = $taxonomy; |
|
3895 | + if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) { |
|
3896 | + // |
|
3897 | + } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) { |
|
3898 | + // |
|
3899 | + } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) { |
|
3900 | + // |
|
3901 | + } else { |
|
3902 | + $term_parent_data = array(); |
|
3903 | + $term_parent_data['name'] = $cat_parent; |
|
3904 | + //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
|
3905 | + $term_parent_data['taxonomy'] = $taxonomy; |
|
3906 | 3906 | |
3907 | - $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
3908 | - } |
|
3907 | + $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
3908 | + } |
|
3909 | 3909 | |
3910 | - if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) { |
|
3911 | - $term_parent_id = (int)$term_parent->term_id; |
|
3912 | - } |
|
3913 | - } |
|
3914 | - $term_data['parent'] = (int)$term_parent_id; |
|
3910 | + if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) { |
|
3911 | + $term_parent_id = (int)$term_parent->term_id; |
|
3912 | + } |
|
3913 | + } |
|
3914 | + $term_data['parent'] = (int)$term_parent_id; |
|
3915 | 3915 | |
3916 | - $term_id = NULL; |
|
3917 | - if ( $import_choice == 'update' ) { |
|
3918 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) { |
|
3919 | - $term_data['term_id'] = $term['term_id']; |
|
3916 | + $term_id = NULL; |
|
3917 | + if ( $import_choice == 'update' ) { |
|
3918 | + if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) { |
|
3919 | + $term_data['term_id'] = $term['term_id']; |
|
3920 | 3920 | |
3921 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) { |
|
3922 | - $updated++; |
|
3923 | - } else { |
|
3924 | - $invalid++; |
|
3925 | - 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' ) ); |
|
3926 | - } |
|
3927 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) { |
|
3928 | - $term_data['term_id'] = $term['term_id']; |
|
3921 | + if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) { |
|
3922 | + $updated++; |
|
3923 | + } else { |
|
3924 | + $invalid++; |
|
3925 | + 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' ) ); |
|
3926 | + } |
|
3927 | + } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) { |
|
3928 | + $term_data['term_id'] = $term['term_id']; |
|
3929 | 3929 | |
3930 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) { |
|
3931 | - $updated++; |
|
3932 | - } else { |
|
3933 | - $invalid++; |
|
3934 | - 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' ) ); |
|
3935 | - } |
|
3936 | - } else { |
|
3937 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) { |
|
3938 | - $created++; |
|
3939 | - } else { |
|
3940 | - $invalid++; |
|
3941 | - 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' ) ); |
|
3942 | - } |
|
3943 | - } |
|
3944 | - } else if ( $import_choice == 'skip' ) { |
|
3945 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) { |
|
3946 | - $skipped++; |
|
3947 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) { |
|
3948 | - $skipped++; |
|
3949 | - } else { |
|
3950 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) { |
|
3951 | - $created++; |
|
3952 | - } else { |
|
3953 | - $invalid++; |
|
3954 | - 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' ) ); |
|
3955 | - } |
|
3956 | - } |
|
3957 | - } else { |
|
3958 | - $invalid++; |
|
3959 | - 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' ) ); |
|
3960 | - } |
|
3930 | + if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) { |
|
3931 | + $updated++; |
|
3932 | + } else { |
|
3933 | + $invalid++; |
|
3934 | + 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' ) ); |
|
3935 | + } |
|
3936 | + } else { |
|
3937 | + if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) { |
|
3938 | + $created++; |
|
3939 | + } else { |
|
3940 | + $invalid++; |
|
3941 | + 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' ) ); |
|
3942 | + } |
|
3943 | + } |
|
3944 | + } else if ( $import_choice == 'skip' ) { |
|
3945 | + if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) { |
|
3946 | + $skipped++; |
|
3947 | + } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) { |
|
3948 | + $skipped++; |
|
3949 | + } else { |
|
3950 | + if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) { |
|
3951 | + $created++; |
|
3952 | + } else { |
|
3953 | + $invalid++; |
|
3954 | + 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' ) ); |
|
3955 | + } |
|
3956 | + } |
|
3957 | + } else { |
|
3958 | + $invalid++; |
|
3959 | + 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' ) ); |
|
3960 | + } |
|
3961 | 3961 | |
3962 | - if ( $term_id ) { |
|
3963 | - // WPML |
|
3964 | - if ($is_wpml && $cat_id_original > 0 && $cat_language != '') { |
|
3965 | - $wpml_element_type = 'tax_' . $taxonomy; |
|
3966 | - $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
3967 | - $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
3968 | - |
|
3969 | - $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
3962 | + if ( $term_id ) { |
|
3963 | + // WPML |
|
3964 | + if ($is_wpml && $cat_id_original > 0 && $cat_language != '') { |
|
3965 | + $wpml_element_type = 'tax_' . $taxonomy; |
|
3966 | + $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
3967 | + $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
3968 | + |
|
3969 | + $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
3970 | 3970 | |
3971 | - $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
3972 | - } |
|
3973 | - // WPML |
|
3971 | + $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
3972 | + } |
|
3973 | + // WPML |
|
3974 | 3974 | |
3975 | - if ( isset( $term_data['top_description'] ) ) { |
|
3976 | - update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
3977 | - } |
|
3975 | + if ( isset( $term_data['top_description'] ) ) { |
|
3976 | + update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
3977 | + } |
|
3978 | 3978 | |
3979 | - if ( isset( $term_data['cat_schema'] ) ) { |
|
3980 | - update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
3981 | - } |
|
3979 | + if ( isset( $term_data['cat_schema'] ) ) { |
|
3980 | + update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
3981 | + } |
|
3982 | 3982 | |
3983 | - $attachment = false; |
|
3984 | - if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) { |
|
3985 | - $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
3986 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
3983 | + $attachment = false; |
|
3984 | + if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) { |
|
3985 | + $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
3986 | + $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
3987 | 3987 | |
3988 | - if ( basename($cat_image) != $term_data['image'] ) { |
|
3989 | - $attachment = true; |
|
3990 | - update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
3991 | - } |
|
3992 | - } |
|
3988 | + if ( basename($cat_image) != $term_data['image'] ) { |
|
3989 | + $attachment = true; |
|
3990 | + update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
3991 | + } |
|
3992 | + } |
|
3993 | 3993 | |
3994 | - if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) { |
|
3995 | - $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
3996 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
3997 | - |
|
3998 | - if ( basename($cat_icon) != $term_data['icon'] ) { |
|
3999 | - $attachment = true; |
|
4000 | - update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
4001 | - } |
|
4002 | - } |
|
3994 | + if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) { |
|
3995 | + $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
3996 | + $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
3997 | + |
|
3998 | + if ( basename($cat_icon) != $term_data['icon'] ) { |
|
3999 | + $attachment = true; |
|
4000 | + update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
4001 | + } |
|
4002 | + } |
|
4003 | 4003 | |
4004 | - if ( $attachment ) { |
|
4005 | - $images++; |
|
4006 | - } |
|
4007 | - } |
|
4004 | + if ( $attachment ) { |
|
4005 | + $images++; |
|
4006 | + } |
|
4007 | + } |
|
4008 | 4008 | |
4009 | - // WPML |
|
4010 | - if ($is_wpml && $cat_language != '') { |
|
4011 | - $sitepress->switch_lang($active_lang, true); |
|
4012 | - } |
|
4013 | - // WPML |
|
4014 | - } |
|
4015 | - } |
|
4016 | - } |
|
4009 | + // WPML |
|
4010 | + if ($is_wpml && $cat_language != '') { |
|
4011 | + $sitepress->switch_lang($active_lang, true); |
|
4012 | + } |
|
4013 | + // WPML |
|
4014 | + } |
|
4015 | + } |
|
4016 | + } |
|
4017 | 4017 | |
4018 | - $json = array(); |
|
4019 | - $json['processed'] = $limit; |
|
4020 | - $json['created'] = $created; |
|
4021 | - $json['updated'] = $updated; |
|
4022 | - $json['skipped'] = $skipped; |
|
4023 | - $json['invalid'] = $invalid; |
|
4024 | - $json['images'] = $images; |
|
4018 | + $json = array(); |
|
4019 | + $json['processed'] = $limit; |
|
4020 | + $json['created'] = $created; |
|
4021 | + $json['updated'] = $updated; |
|
4022 | + $json['skipped'] = $skipped; |
|
4023 | + $json['invalid'] = $invalid; |
|
4024 | + $json['images'] = $images; |
|
4025 | 4025 | |
4026 | - wp_send_json( $json ); |
|
4027 | - exit; |
|
4028 | - } else if ( $task == 'import_post' ) { |
|
4029 | - $xtimings['###1'] = microtime(true)-$xstart; |
|
4030 | - //run some stuff to make the import quicker |
|
4031 | - wp_defer_term_counting( true ); |
|
4032 | - wp_defer_comment_counting( true ); |
|
4033 | - $wpdb->query( 'SET autocommit = 0;' ); |
|
4026 | + wp_send_json( $json ); |
|
4027 | + exit; |
|
4028 | + } else if ( $task == 'import_post' ) { |
|
4029 | + $xtimings['###1'] = microtime(true)-$xstart; |
|
4030 | + //run some stuff to make the import quicker |
|
4031 | + wp_defer_term_counting( true ); |
|
4032 | + wp_defer_comment_counting( true ); |
|
4033 | + $wpdb->query( 'SET autocommit = 0;' ); |
|
4034 | 4034 | // |
4035 | 4035 | // remove_all_actions('publish_post'); |
4036 | 4036 | // remove_all_actions('transition_post_status'); |
4037 | 4037 | // remove_all_actions('publish_future_post'); |
4038 | 4038 | |
4039 | - if (!empty($file)) { |
|
4040 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false; |
|
4041 | - $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
|
4042 | - $default_status = 'publish'; |
|
4043 | - $current_date = date_i18n( 'Y-m-d', time() ); |
|
4039 | + if (!empty($file)) { |
|
4040 | + $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false; |
|
4041 | + $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
|
4042 | + $default_status = 'publish'; |
|
4043 | + $current_date = date_i18n( 'Y-m-d', time() ); |
|
4044 | 4044 | |
4045 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
4045 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
4046 | 4046 | |
4047 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
4048 | - $json['error'] = CSV_INVAILD_FILE; |
|
4049 | - wp_send_json( $json ); |
|
4050 | - exit; |
|
4051 | - } |
|
4052 | - $xtimings['###2'] = microtime(true)-$xstart; |
|
4053 | - $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory'); |
|
4054 | - $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
4055 | - $processed_actual = 0; |
|
4056 | - for ($i = 1; $i <= $limit; $i++) { |
|
4057 | - $index = $processed + $i; |
|
4058 | - $gd_post = array(); |
|
4047 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
4048 | + $json['error'] = CSV_INVAILD_FILE; |
|
4049 | + wp_send_json( $json ); |
|
4050 | + exit; |
|
4051 | + } |
|
4052 | + $xtimings['###2'] = microtime(true)-$xstart; |
|
4053 | + $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory'); |
|
4054 | + $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
4055 | + $processed_actual = 0; |
|
4056 | + for ($i = 1; $i <= $limit; $i++) { |
|
4057 | + $index = $processed + $i; |
|
4058 | + $gd_post = array(); |
|
4059 | 4059 | |
4060 | - if (isset($file[$index])) { |
|
4061 | - $processed_actual++; |
|
4062 | - $row = $file[$index]; |
|
4063 | - $row = array_map( 'trim', $row ); |
|
4064 | - //$row = array_map( 'utf8_encode', $row ); |
|
4065 | - $row = array_map( 'addslashes_gpc', $row ); |
|
4060 | + if (isset($file[$index])) { |
|
4061 | + $processed_actual++; |
|
4062 | + $row = $file[$index]; |
|
4063 | + $row = array_map( 'trim', $row ); |
|
4064 | + //$row = array_map( 'utf8_encode', $row ); |
|
4065 | + $row = array_map( 'addslashes_gpc', $row ); |
|
4066 | 4066 | |
4067 | - $post_id = ''; |
|
4068 | - $post_title = ''; |
|
4069 | - $post_date = ''; |
|
4070 | - $post_author = ''; |
|
4071 | - $post_content = ''; |
|
4072 | - $post_category_arr = array(); |
|
4073 | - $default_category = ''; |
|
4074 | - $post_tags = array(); |
|
4075 | - $post_type = ''; |
|
4076 | - $post_status = ''; |
|
4077 | - $geodir_video = ''; |
|
4078 | - $post_address = ''; |
|
4079 | - $post_city = ''; |
|
4080 | - $post_region = ''; |
|
4081 | - $post_country = ''; |
|
4082 | - $post_zip = ''; |
|
4083 | - $post_latitude = ''; |
|
4084 | - $post_longitude = ''; |
|
4085 | - $post_neighbourhood = ''; |
|
4086 | - $neighbourhood_latitude = ''; |
|
4087 | - $neighbourhood_longitude = ''; |
|
4088 | - $geodir_timing = ''; |
|
4089 | - $geodir_contact = ''; |
|
4090 | - $geodir_email = ''; |
|
4091 | - $geodir_website = ''; |
|
4092 | - $geodir_twitter = ''; |
|
4093 | - $geodir_facebook = ''; |
|
4094 | - $geodir_twitter = ''; |
|
4095 | - $post_images = array(); |
|
4067 | + $post_id = ''; |
|
4068 | + $post_title = ''; |
|
4069 | + $post_date = ''; |
|
4070 | + $post_author = ''; |
|
4071 | + $post_content = ''; |
|
4072 | + $post_category_arr = array(); |
|
4073 | + $default_category = ''; |
|
4074 | + $post_tags = array(); |
|
4075 | + $post_type = ''; |
|
4076 | + $post_status = ''; |
|
4077 | + $geodir_video = ''; |
|
4078 | + $post_address = ''; |
|
4079 | + $post_city = ''; |
|
4080 | + $post_region = ''; |
|
4081 | + $post_country = ''; |
|
4082 | + $post_zip = ''; |
|
4083 | + $post_latitude = ''; |
|
4084 | + $post_longitude = ''; |
|
4085 | + $post_neighbourhood = ''; |
|
4086 | + $neighbourhood_latitude = ''; |
|
4087 | + $neighbourhood_longitude = ''; |
|
4088 | + $geodir_timing = ''; |
|
4089 | + $geodir_contact = ''; |
|
4090 | + $geodir_email = ''; |
|
4091 | + $geodir_website = ''; |
|
4092 | + $geodir_twitter = ''; |
|
4093 | + $geodir_facebook = ''; |
|
4094 | + $geodir_twitter = ''; |
|
4095 | + $post_images = array(); |
|
4096 | 4096 | |
4097 | - $expire_date = 'Never'; |
|
4097 | + $expire_date = 'Never'; |
|
4098 | 4098 | |
4099 | - $language = ''; |
|
4100 | - $original_post_id = ''; |
|
4099 | + $language = ''; |
|
4100 | + $original_post_id = ''; |
|
4101 | 4101 | |
4102 | - $c = 0; |
|
4103 | - foreach ($columns as $column ) { |
|
4104 | - $gd_post[$column] = $row[$c]; |
|
4102 | + $c = 0; |
|
4103 | + foreach ($columns as $column ) { |
|
4104 | + $gd_post[$column] = $row[$c]; |
|
4105 | 4105 | |
4106 | - if ( $column == 'post_id' ) { |
|
4107 | - $post_id = $row[$c]; |
|
4108 | - } else if ( $column == 'post_title' ) { |
|
4109 | - $post_title = sanitize_text_field($row[$c]); |
|
4110 | - } else if ( $column == 'post_author' ) { |
|
4111 | - $post_author = $row[$c]; |
|
4112 | - } else if ( $column == 'post_date' ) { |
|
4113 | - $post_date = $row[$c]; |
|
4114 | - } else if ( $column == 'post_content' ) { |
|
4115 | - $post_content = $row[$c]; |
|
4116 | - } else if ( $column == 'post_category' && $row[$c] != '' ) { |
|
4117 | - $post_category_arr = explode( ',', $row[$c] ); |
|
4118 | - } else if ( $column == 'default_category' ) { |
|
4119 | - $default_category = wp_kses_normalize_entities($row[$c]); |
|
4120 | - } else if ( $column == 'post_tags' && $row[$c] != '' ) { |
|
4121 | - $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
4122 | - } else if ( $column == 'post_type' ) { |
|
4123 | - $post_type = $row[$c]; |
|
4124 | - } else if ( $column == 'post_status' ) { |
|
4125 | - $post_status = sanitize_key( $row[$c] ); |
|
4126 | - } else if ( $column == 'is_featured' ) { |
|
4127 | - $is_featured = (int)$row[$c]; |
|
4128 | - } else if ( $column == 'geodir_video' ) { |
|
4129 | - $geodir_video = $row[$c]; |
|
4130 | - } else if ( $column == 'post_address' ) { |
|
4131 | - $post_address = sanitize_text_field($row[$c]); |
|
4132 | - } else if ( $column == 'post_city' ) { |
|
4133 | - $post_city = sanitize_text_field($row[$c]); |
|
4134 | - } else if ( $column == 'post_region' ) { |
|
4135 | - $post_region = sanitize_text_field($row[$c]); |
|
4136 | - } else if ( $column == 'post_country' ) { |
|
4137 | - $post_country = sanitize_text_field($row[$c]); |
|
4138 | - } else if ( $column == 'post_zip' ) { |
|
4139 | - $post_zip = sanitize_text_field($row[$c]); |
|
4140 | - } else if ( $column == 'post_latitude' ) { |
|
4141 | - $post_latitude = sanitize_text_field($row[$c]); |
|
4142 | - } else if ( $column == 'post_longitude' ) { |
|
4143 | - $post_longitude = sanitize_text_field($row[$c]); |
|
4144 | - } else if ( $column == 'post_neighbourhood' ) { |
|
4145 | - $post_neighbourhood = sanitize_text_field($row[$c]); |
|
4146 | - unset($gd_post[$column]); |
|
4147 | - } else if ( $column == 'neighbourhood_latitude' ) { |
|
4148 | - $neighbourhood_latitude = sanitize_text_field($row[$c]); |
|
4149 | - } else if ( $column == 'neighbourhood_longitude' ) { |
|
4150 | - $neighbourhood_longitude = sanitize_text_field($row[$c]); |
|
4151 | - } else if ( $column == 'geodir_timing' ) { |
|
4152 | - $geodir_timing = sanitize_text_field($row[$c]); |
|
4153 | - } else if ( $column == 'geodir_contact' ) { |
|
4154 | - $geodir_contact = sanitize_text_field($row[$c]); |
|
4155 | - } else if ( $column == 'geodir_email' ) { |
|
4156 | - $geodir_email = sanitize_email($row[$c]); |
|
4157 | - } else if ( $column == 'geodir_website' ) { |
|
4158 | - $geodir_website = sanitize_text_field($row[$c]); |
|
4159 | - } else if ( $column == 'geodir_twitter' ) { |
|
4160 | - $geodir_twitter = sanitize_text_field($row[$c]); |
|
4161 | - } else if ( $column == 'geodir_facebook' ) { |
|
4162 | - $geodir_facebook = sanitize_text_field($row[$c]); |
|
4163 | - } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) { |
|
4164 | - $post_images[] = $row[$c]; |
|
4165 | - } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) { |
|
4166 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
4167 | - } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) { |
|
4168 | - $row[$c] = str_replace('/', '-', $row[$c]); |
|
4169 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
4170 | - } |
|
4171 | - // WPML |
|
4172 | - if ($is_wpml) { |
|
4173 | - if ($column == 'language') { |
|
4174 | - $language = geodir_strtolower(trim($row[$c])); |
|
4175 | - } else if ($column == 'original_post_id') { |
|
4176 | - $original_post_id = (int)$row[$c]; |
|
4177 | - } |
|
4178 | - } |
|
4179 | - // WPML |
|
4180 | - $c++; |
|
4181 | - } |
|
4182 | - // listing claimed or not |
|
4183 | - if ($is_claim_active && isset($gd_post['claimed'])) { |
|
4184 | - $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
4185 | - } |
|
4106 | + if ( $column == 'post_id' ) { |
|
4107 | + $post_id = $row[$c]; |
|
4108 | + } else if ( $column == 'post_title' ) { |
|
4109 | + $post_title = sanitize_text_field($row[$c]); |
|
4110 | + } else if ( $column == 'post_author' ) { |
|
4111 | + $post_author = $row[$c]; |
|
4112 | + } else if ( $column == 'post_date' ) { |
|
4113 | + $post_date = $row[$c]; |
|
4114 | + } else if ( $column == 'post_content' ) { |
|
4115 | + $post_content = $row[$c]; |
|
4116 | + } else if ( $column == 'post_category' && $row[$c] != '' ) { |
|
4117 | + $post_category_arr = explode( ',', $row[$c] ); |
|
4118 | + } else if ( $column == 'default_category' ) { |
|
4119 | + $default_category = wp_kses_normalize_entities($row[$c]); |
|
4120 | + } else if ( $column == 'post_tags' && $row[$c] != '' ) { |
|
4121 | + $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
4122 | + } else if ( $column == 'post_type' ) { |
|
4123 | + $post_type = $row[$c]; |
|
4124 | + } else if ( $column == 'post_status' ) { |
|
4125 | + $post_status = sanitize_key( $row[$c] ); |
|
4126 | + } else if ( $column == 'is_featured' ) { |
|
4127 | + $is_featured = (int)$row[$c]; |
|
4128 | + } else if ( $column == 'geodir_video' ) { |
|
4129 | + $geodir_video = $row[$c]; |
|
4130 | + } else if ( $column == 'post_address' ) { |
|
4131 | + $post_address = sanitize_text_field($row[$c]); |
|
4132 | + } else if ( $column == 'post_city' ) { |
|
4133 | + $post_city = sanitize_text_field($row[$c]); |
|
4134 | + } else if ( $column == 'post_region' ) { |
|
4135 | + $post_region = sanitize_text_field($row[$c]); |
|
4136 | + } else if ( $column == 'post_country' ) { |
|
4137 | + $post_country = sanitize_text_field($row[$c]); |
|
4138 | + } else if ( $column == 'post_zip' ) { |
|
4139 | + $post_zip = sanitize_text_field($row[$c]); |
|
4140 | + } else if ( $column == 'post_latitude' ) { |
|
4141 | + $post_latitude = sanitize_text_field($row[$c]); |
|
4142 | + } else if ( $column == 'post_longitude' ) { |
|
4143 | + $post_longitude = sanitize_text_field($row[$c]); |
|
4144 | + } else if ( $column == 'post_neighbourhood' ) { |
|
4145 | + $post_neighbourhood = sanitize_text_field($row[$c]); |
|
4146 | + unset($gd_post[$column]); |
|
4147 | + } else if ( $column == 'neighbourhood_latitude' ) { |
|
4148 | + $neighbourhood_latitude = sanitize_text_field($row[$c]); |
|
4149 | + } else if ( $column == 'neighbourhood_longitude' ) { |
|
4150 | + $neighbourhood_longitude = sanitize_text_field($row[$c]); |
|
4151 | + } else if ( $column == 'geodir_timing' ) { |
|
4152 | + $geodir_timing = sanitize_text_field($row[$c]); |
|
4153 | + } else if ( $column == 'geodir_contact' ) { |
|
4154 | + $geodir_contact = sanitize_text_field($row[$c]); |
|
4155 | + } else if ( $column == 'geodir_email' ) { |
|
4156 | + $geodir_email = sanitize_email($row[$c]); |
|
4157 | + } else if ( $column == 'geodir_website' ) { |
|
4158 | + $geodir_website = sanitize_text_field($row[$c]); |
|
4159 | + } else if ( $column == 'geodir_twitter' ) { |
|
4160 | + $geodir_twitter = sanitize_text_field($row[$c]); |
|
4161 | + } else if ( $column == 'geodir_facebook' ) { |
|
4162 | + $geodir_facebook = sanitize_text_field($row[$c]); |
|
4163 | + } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) { |
|
4164 | + $post_images[] = $row[$c]; |
|
4165 | + } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) { |
|
4166 | + $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
4167 | + } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) { |
|
4168 | + $row[$c] = str_replace('/', '-', $row[$c]); |
|
4169 | + $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
4170 | + } |
|
4171 | + // WPML |
|
4172 | + if ($is_wpml) { |
|
4173 | + if ($column == 'language') { |
|
4174 | + $language = geodir_strtolower(trim($row[$c])); |
|
4175 | + } else if ($column == 'original_post_id') { |
|
4176 | + $original_post_id = (int)$row[$c]; |
|
4177 | + } |
|
4178 | + } |
|
4179 | + // WPML |
|
4180 | + $c++; |
|
4181 | + } |
|
4182 | + // listing claimed or not |
|
4183 | + if ($is_claim_active && isset($gd_post['claimed'])) { |
|
4184 | + $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
4185 | + } |
|
4186 | 4186 | |
4187 | - // WPML |
|
4188 | - if ($is_wpml && $language != '') { |
|
4189 | - $sitepress->switch_lang($language, true); |
|
4190 | - } |
|
4191 | - // WPML |
|
4187 | + // WPML |
|
4188 | + if ($is_wpml && $language != '') { |
|
4189 | + $sitepress->switch_lang($language, true); |
|
4190 | + } |
|
4191 | + // WPML |
|
4192 | 4192 | |
4193 | - $gd_post['IMAGE'] = $post_images; |
|
4193 | + $gd_post['IMAGE'] = $post_images; |
|
4194 | 4194 | |
4195 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
4196 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
4195 | + $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
4196 | + $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
4197 | 4197 | |
4198 | - $valid = true; |
|
4198 | + $valid = true; |
|
4199 | 4199 | |
4200 | - if ( $post_title == '' || !in_array( $post_type, $post_types ) ) { |
|
4201 | - $invalid++; |
|
4202 | - $valid = false; |
|
4203 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
4204 | - } |
|
4205 | - $xtimings['###3'] = microtime(true)-$xstart; |
|
4206 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
4207 | - if ( $location_allowed ) { |
|
4208 | - $location_result = geodir_get_default_location(); |
|
4209 | - if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) { |
|
4210 | - $invalid_addr++; |
|
4211 | - $valid = false; |
|
4212 | - 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' ) ); |
|
4213 | - } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) { |
|
4214 | - 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 ) ) ) { |
|
4215 | - $invalid_addr++; |
|
4216 | - $valid = false; |
|
4217 | - 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' ) ); |
|
4218 | - } else { |
|
4219 | - if (!$location_manager) { |
|
4220 | - $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. |
|
4221 | - } |
|
4222 | - } |
|
4223 | - } |
|
4224 | - } |
|
4225 | - $xtimings['###4'] = microtime(true)-$xstart; |
|
4226 | - if ( !$valid ) { |
|
4227 | - continue; |
|
4228 | - } |
|
4200 | + if ( $post_title == '' || !in_array( $post_type, $post_types ) ) { |
|
4201 | + $invalid++; |
|
4202 | + $valid = false; |
|
4203 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
4204 | + } |
|
4205 | + $xtimings['###3'] = microtime(true)-$xstart; |
|
4206 | + $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
4207 | + if ( $location_allowed ) { |
|
4208 | + $location_result = geodir_get_default_location(); |
|
4209 | + if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) { |
|
4210 | + $invalid_addr++; |
|
4211 | + $valid = false; |
|
4212 | + 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' ) ); |
|
4213 | + } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) { |
|
4214 | + 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 ) ) ) { |
|
4215 | + $invalid_addr++; |
|
4216 | + $valid = false; |
|
4217 | + 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' ) ); |
|
4218 | + } else { |
|
4219 | + if (!$location_manager) { |
|
4220 | + $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. |
|
4221 | + } |
|
4222 | + } |
|
4223 | + } |
|
4224 | + } |
|
4225 | + $xtimings['###4'] = microtime(true)-$xstart; |
|
4226 | + if ( !$valid ) { |
|
4227 | + continue; |
|
4228 | + } |
|
4229 | 4229 | |
4230 | - $cat_taxonomy = $post_type . 'category'; |
|
4231 | - $tags_taxonomy = $post_type . '_tags'; |
|
4230 | + $cat_taxonomy = $post_type . 'category'; |
|
4231 | + $tags_taxonomy = $post_type . '_tags'; |
|
4232 | 4232 | |
4233 | - if ($default_category != '' && !in_array($default_category, $post_category_arr)) { |
|
4234 | - $post_category_arr = array_merge(array($default_category), $post_category_arr); |
|
4235 | - } |
|
4233 | + if ($default_category != '' && !in_array($default_category, $post_category_arr)) { |
|
4234 | + $post_category_arr = array_merge(array($default_category), $post_category_arr); |
|
4235 | + } |
|
4236 | 4236 | |
4237 | - $post_category = array(); |
|
4238 | - $default_category_id = NULL; |
|
4239 | - if ( !empty( $post_category_arr ) ) { |
|
4240 | - foreach ( $post_category_arr as $value ) { |
|
4241 | - $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
4237 | + $post_category = array(); |
|
4238 | + $default_category_id = NULL; |
|
4239 | + if ( !empty( $post_category_arr ) ) { |
|
4240 | + foreach ( $post_category_arr as $value ) { |
|
4241 | + $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
4242 | 4242 | |
4243 | - if ( $category_name != '' ) { |
|
4244 | - $term_category = array(); |
|
4243 | + if ( $category_name != '' ) { |
|
4244 | + $term_category = array(); |
|
4245 | 4245 | |
4246 | - if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) { |
|
4247 | - $term_category = $term; |
|
4248 | - } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) { |
|
4249 | - $term_category = $term; |
|
4250 | - } else { |
|
4251 | - $term_data = array(); |
|
4252 | - $term_data['name'] = $category_name; |
|
4253 | - $term_data['taxonomy'] = $cat_taxonomy; |
|
4246 | + if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) { |
|
4247 | + $term_category = $term; |
|
4248 | + } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) { |
|
4249 | + $term_category = $term; |
|
4250 | + } else { |
|
4251 | + $term_data = array(); |
|
4252 | + $term_data['name'] = $category_name; |
|
4253 | + $term_data['taxonomy'] = $cat_taxonomy; |
|
4254 | 4254 | |
4255 | - $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
4256 | - if ( $term_id ) { |
|
4257 | - $term_category = get_term( $term_id, $cat_taxonomy ); |
|
4258 | - } |
|
4259 | - } |
|
4255 | + $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
4256 | + if ( $term_id ) { |
|
4257 | + $term_category = get_term( $term_id, $cat_taxonomy ); |
|
4258 | + } |
|
4259 | + } |
|
4260 | 4260 | |
4261 | - if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) { |
|
4262 | - $post_category[] = intval($term_category->term_id); |
|
4261 | + if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) { |
|
4262 | + $post_category[] = intval($term_category->term_id); |
|
4263 | 4263 | |
4264 | - if ($category_name == $default_category) { |
|
4265 | - $default_category_id = intval($term_category->term_id); |
|
4266 | - } |
|
4267 | - } |
|
4268 | - } |
|
4269 | - } |
|
4270 | - } |
|
4271 | - $xtimings['###5'] = microtime(true)-$xstart; |
|
4272 | - $save_post = array(); |
|
4273 | - $save_post['post_title'] = $post_title; |
|
4274 | - if (!empty($post_date)) { |
|
4275 | - $save_post['post_date'] = $post_date; |
|
4276 | - $save_post['post_date_gmt'] = get_gmt_from_date( $post_date ); |
|
4277 | - } |
|
4278 | - $save_post['post_content'] = $post_content; |
|
4279 | - $save_post['post_type'] = $post_type; |
|
4280 | - $save_post['post_author'] = $post_author; |
|
4281 | - $save_post['post_status'] = $post_status; |
|
4282 | - $save_post['post_category'] = $post_category; |
|
4283 | - $save_post['post_tags'] = $post_tags; |
|
4284 | - |
|
4285 | - $saved_post_id = NULL; |
|
4286 | - if ( $import_choice == 'update' ) { |
|
4287 | - $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
4264 | + if ($category_name == $default_category) { |
|
4265 | + $default_category_id = intval($term_category->term_id); |
|
4266 | + } |
|
4267 | + } |
|
4268 | + } |
|
4269 | + } |
|
4270 | + } |
|
4271 | + $xtimings['###5'] = microtime(true)-$xstart; |
|
4272 | + $save_post = array(); |
|
4273 | + $save_post['post_title'] = $post_title; |
|
4274 | + if (!empty($post_date)) { |
|
4275 | + $save_post['post_date'] = $post_date; |
|
4276 | + $save_post['post_date_gmt'] = get_gmt_from_date( $post_date ); |
|
4277 | + } |
|
4278 | + $save_post['post_content'] = $post_content; |
|
4279 | + $save_post['post_type'] = $post_type; |
|
4280 | + $save_post['post_author'] = $post_author; |
|
4281 | + $save_post['post_status'] = $post_status; |
|
4282 | + $save_post['post_category'] = $post_category; |
|
4283 | + $save_post['post_tags'] = $post_tags; |
|
4284 | + |
|
4285 | + $saved_post_id = NULL; |
|
4286 | + if ( $import_choice == 'update' ) { |
|
4287 | + $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
4288 | 4288 | |
4289 | - if ( $post_id > 0 && get_post( $post_id ) ) { |
|
4290 | - $save_post['ID'] = $post_id; |
|
4289 | + if ( $post_id > 0 && get_post( $post_id ) ) { |
|
4290 | + $save_post['ID'] = $post_id; |
|
4291 | 4291 | |
4292 | - if ( $saved_post_id = wp_update_post( $save_post, true ) ) { |
|
4293 | - if ( is_wp_error( $saved_post_id ) ) { |
|
4294 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
4295 | - $saved_post_id = 0; |
|
4296 | - } else { |
|
4297 | - $saved_post_id = $post_id; |
|
4298 | - $updated++; |
|
4299 | - } |
|
4300 | - } |
|
4301 | - } else { |
|
4302 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) { |
|
4303 | - if ( is_wp_error( $saved_post_id ) ) { |
|
4304 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
4305 | - $saved_post_id = 0; |
|
4306 | - } else { |
|
4307 | - $created++; |
|
4308 | - } |
|
4309 | - } |
|
4310 | - } |
|
4292 | + if ( $saved_post_id = wp_update_post( $save_post, true ) ) { |
|
4293 | + if ( is_wp_error( $saved_post_id ) ) { |
|
4294 | + $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
4295 | + $saved_post_id = 0; |
|
4296 | + } else { |
|
4297 | + $saved_post_id = $post_id; |
|
4298 | + $updated++; |
|
4299 | + } |
|
4300 | + } |
|
4301 | + } else { |
|
4302 | + if ( $saved_post_id = wp_insert_post( $save_post, true ) ) { |
|
4303 | + if ( is_wp_error( $saved_post_id ) ) { |
|
4304 | + $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
4305 | + $saved_post_id = 0; |
|
4306 | + } else { |
|
4307 | + $created++; |
|
4308 | + } |
|
4309 | + } |
|
4310 | + } |
|
4311 | 4311 | |
4312 | - if ( !$saved_post_id > 0 ) { |
|
4313 | - $invalid++; |
|
4314 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
4315 | - } |
|
4316 | - } else if ( $import_choice == 'skip' ) { |
|
4317 | - if ( $post_id > 0 && get_post( $post_id ) ) { |
|
4318 | - $skipped++; |
|
4319 | - } else { |
|
4320 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) { |
|
4321 | - if ( is_wp_error( $saved_post_id ) ) { |
|
4322 | - $invalid++; |
|
4312 | + if ( !$saved_post_id > 0 ) { |
|
4313 | + $invalid++; |
|
4314 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
4315 | + } |
|
4316 | + } else if ( $import_choice == 'skip' ) { |
|
4317 | + if ( $post_id > 0 && get_post( $post_id ) ) { |
|
4318 | + $skipped++; |
|
4319 | + } else { |
|
4320 | + if ( $saved_post_id = wp_insert_post( $save_post, true ) ) { |
|
4321 | + if ( is_wp_error( $saved_post_id ) ) { |
|
4322 | + $invalid++; |
|
4323 | 4323 | |
4324 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
4325 | - $saved_post_id = 0; |
|
4326 | - } else { |
|
4327 | - $created++; |
|
4328 | - } |
|
4329 | - } else { |
|
4330 | - $invalid++; |
|
4324 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
4325 | + $saved_post_id = 0; |
|
4326 | + } else { |
|
4327 | + $created++; |
|
4328 | + } |
|
4329 | + } else { |
|
4330 | + $invalid++; |
|
4331 | 4331 | |
4332 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
4333 | - } |
|
4334 | - } |
|
4335 | - } else { |
|
4336 | - $invalid++; |
|
4332 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
4333 | + } |
|
4334 | + } |
|
4335 | + } else { |
|
4336 | + $invalid++; |
|
4337 | 4337 | |
4338 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
4339 | - } |
|
4340 | - $xtimings['###6'] = microtime(true)-$xstart; |
|
4341 | - if ( (int)$saved_post_id > 0 ) { |
|
4342 | - // WPML |
|
4343 | - if ($is_wpml && $original_post_id > 0 && $language != '') { |
|
4344 | - $wpml_post_type = 'post_' . $post_type; |
|
4345 | - $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
4346 | - $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
4347 | - |
|
4348 | - $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
4338 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
4339 | + } |
|
4340 | + $xtimings['###6'] = microtime(true)-$xstart; |
|
4341 | + if ( (int)$saved_post_id > 0 ) { |
|
4342 | + // WPML |
|
4343 | + if ($is_wpml && $original_post_id > 0 && $language != '') { |
|
4344 | + $wpml_post_type = 'post_' . $post_type; |
|
4345 | + $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
4346 | + $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
4347 | + |
|
4348 | + $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
4349 | 4349 | |
4350 | - $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
4351 | - } |
|
4352 | - // WPML |
|
4353 | - $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
4350 | + $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
4351 | + } |
|
4352 | + // WPML |
|
4353 | + $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
4354 | 4354 | |
4355 | - $gd_post['post_id'] = $saved_post_id; |
|
4356 | - $gd_post['ID'] = $saved_post_id; |
|
4357 | - $gd_post['post_tags'] = $post_tags; |
|
4358 | - $gd_post['post_title'] = $post_title; |
|
4359 | - $gd_post['post_status'] = $post_status; |
|
4360 | - $gd_post['submit_time'] = time(); |
|
4361 | - $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
4355 | + $gd_post['post_id'] = $saved_post_id; |
|
4356 | + $gd_post['ID'] = $saved_post_id; |
|
4357 | + $gd_post['post_tags'] = $post_tags; |
|
4358 | + $gd_post['post_title'] = $post_title; |
|
4359 | + $gd_post['post_status'] = $post_status; |
|
4360 | + $gd_post['submit_time'] = time(); |
|
4361 | + $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
4362 | 4362 | |
4363 | - // post location |
|
4364 | - $post_location_id = 0; |
|
4365 | - if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) { |
|
4366 | - $gd_post['post_neighbourhood'] = ''; |
|
4363 | + // post location |
|
4364 | + $post_location_id = 0; |
|
4365 | + if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) { |
|
4366 | + $gd_post['post_neighbourhood'] = ''; |
|
4367 | 4367 | |
4368 | - $post_location_info = array( |
|
4369 | - 'city' => $post_city, |
|
4370 | - 'region' => $post_region, |
|
4371 | - 'country' => $post_country, |
|
4372 | - 'geo_lat' => $post_latitude, |
|
4373 | - 'geo_lng' => $post_longitude |
|
4374 | - ); |
|
4375 | - if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) { |
|
4376 | - $post_location_id = $location_id; |
|
4377 | - } |
|
4368 | + $post_location_info = array( |
|
4369 | + 'city' => $post_city, |
|
4370 | + 'region' => $post_region, |
|
4371 | + 'country' => $post_country, |
|
4372 | + 'geo_lat' => $post_latitude, |
|
4373 | + 'geo_lng' => $post_longitude |
|
4374 | + ); |
|
4375 | + if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) { |
|
4376 | + $post_location_id = $location_id; |
|
4377 | + } |
|
4378 | 4378 | |
4379 | - if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) { |
|
4380 | - $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id); |
|
4379 | + if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) { |
|
4380 | + $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id); |
|
4381 | 4381 | |
4382 | - $hood_data = array(); |
|
4383 | - $hood_data['hood_location_id'] = $post_location_id; |
|
4384 | - $hood_data['hood_name'] = $post_neighbourhood; |
|
4382 | + $hood_data = array(); |
|
4383 | + $hood_data['hood_location_id'] = $post_location_id; |
|
4384 | + $hood_data['hood_name'] = $post_neighbourhood; |
|
4385 | 4385 | |
4386 | - if (!empty($neighbourhood_info)) { |
|
4387 | - $hood_data['hood_id'] = $neighbourhood_info->hood_id; |
|
4388 | - $hood_data['hood_slug'] = $neighbourhood_info->hood_slug; |
|
4386 | + if (!empty($neighbourhood_info)) { |
|
4387 | + $hood_data['hood_id'] = $neighbourhood_info->hood_id; |
|
4388 | + $hood_data['hood_slug'] = $neighbourhood_info->hood_slug; |
|
4389 | 4389 | |
4390 | - if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) { |
|
4391 | - $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
4392 | - $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
4393 | - } |
|
4394 | - } |
|
4390 | + if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) { |
|
4391 | + $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
4392 | + $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
4393 | + } |
|
4394 | + } |
|
4395 | 4395 | |
4396 | - if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) { |
|
4397 | - $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
4398 | - $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
4399 | - } |
|
4396 | + if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) { |
|
4397 | + $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
4398 | + $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
4399 | + } |
|
4400 | 4400 | |
4401 | - $hood_data['hood_latitude'] = $post_latitude; |
|
4402 | - $hood_data['hood_longitude'] = $post_longitude; |
|
4403 | - |
|
4404 | - $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data); |
|
4405 | - if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) { |
|
4406 | - $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug; |
|
4407 | - } |
|
4408 | - } |
|
4409 | - } |
|
4410 | - $gd_post['post_location_id'] = $post_location_id; |
|
4401 | + $hood_data['hood_latitude'] = $post_latitude; |
|
4402 | + $hood_data['hood_longitude'] = $post_longitude; |
|
4403 | + |
|
4404 | + $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data); |
|
4405 | + if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) { |
|
4406 | + $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug; |
|
4407 | + } |
|
4408 | + } |
|
4409 | + } |
|
4410 | + $gd_post['post_location_id'] = $post_location_id; |
|
4411 | 4411 | |
4412 | - // post package info |
|
4413 | - $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
4414 | - if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) { |
|
4415 | - $package_id = $gd_post_info->package_id; |
|
4416 | - } |
|
4412 | + // post package info |
|
4413 | + $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
4414 | + if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) { |
|
4415 | + $package_id = $gd_post_info->package_id; |
|
4416 | + } |
|
4417 | 4417 | |
4418 | - $package_info = array(); |
|
4419 | - if ($package_id && function_exists('geodir_get_package_info_by_id')) { |
|
4420 | - $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
4418 | + $package_info = array(); |
|
4419 | + if ($package_id && function_exists('geodir_get_package_info_by_id')) { |
|
4420 | + $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
4421 | 4421 | |
4422 | - if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) { |
|
4423 | - $package_info = array(); |
|
4424 | - } |
|
4425 | - } |
|
4422 | + if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) { |
|
4423 | + $package_info = array(); |
|
4424 | + } |
|
4425 | + } |
|
4426 | 4426 | |
4427 | - if (empty($package_info)) { |
|
4428 | - $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
4429 | - } |
|
4427 | + if (empty($package_info)) { |
|
4428 | + $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
4429 | + } |
|
4430 | 4430 | |
4431 | - if (!empty($package_info)) { |
|
4432 | - $package_id = $package_info['pid']; |
|
4431 | + if (!empty($package_info)) { |
|
4432 | + $package_id = $package_info['pid']; |
|
4433 | 4433 | |
4434 | - if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) { |
|
4435 | - $gd_post['expire_date'] = $expire_date; |
|
4436 | - } else { |
|
4437 | - if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) { |
|
4438 | - $gd_post['alive_days'] = (int)$package_info['days']; |
|
4439 | - $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
4440 | - } else { |
|
4441 | - $gd_post['expire_date'] = 'Never'; |
|
4442 | - } |
|
4443 | - } |
|
4434 | + if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) { |
|
4435 | + $gd_post['expire_date'] = $expire_date; |
|
4436 | + } else { |
|
4437 | + if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) { |
|
4438 | + $gd_post['alive_days'] = (int)$package_info['days']; |
|
4439 | + $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
4440 | + } else { |
|
4441 | + $gd_post['expire_date'] = 'Never'; |
|
4442 | + } |
|
4443 | + } |
|
4444 | 4444 | |
4445 | - $gd_post['package_id'] = $package_id; |
|
4446 | - } |
|
4445 | + $gd_post['package_id'] = $package_id; |
|
4446 | + } |
|
4447 | 4447 | |
4448 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
4448 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
4449 | 4449 | |
4450 | - if ($post_type == 'gd_event') { |
|
4451 | - $gd_post = geodir_imex_process_event_data($gd_post); |
|
4452 | - } |
|
4450 | + if ($post_type == 'gd_event') { |
|
4451 | + $gd_post = geodir_imex_process_event_data($gd_post); |
|
4452 | + } |
|
4453 | 4453 | |
4454 | - if (isset($gd_post['post_id'])) { |
|
4455 | - unset($gd_post['post_id']); |
|
4456 | - } |
|
4454 | + if (isset($gd_post['post_id'])) { |
|
4455 | + unset($gd_post['post_id']); |
|
4456 | + } |
|
4457 | 4457 | |
4458 | - // Export franchise fields |
|
4459 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
4460 | - if ($is_franchise_active) { |
|
4461 | - if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) { |
|
4462 | - $gd_franchise_lock = array(); |
|
4458 | + // Export franchise fields |
|
4459 | + $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
4460 | + if ($is_franchise_active) { |
|
4461 | + if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) { |
|
4462 | + $gd_franchise_lock = array(); |
|
4463 | 4463 | |
4464 | - if ( isset( $gd_post['gd_franchise_lock'] ) ) { |
|
4465 | - $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] ); |
|
4466 | - $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
4467 | - $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
4468 | - } |
|
4464 | + if ( isset( $gd_post['gd_franchise_lock'] ) ) { |
|
4465 | + $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] ); |
|
4466 | + $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
4467 | + $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
4468 | + } |
|
4469 | 4469 | |
4470 | - update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
4471 | - update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
4472 | - } else { |
|
4473 | - if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) { |
|
4474 | - geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
4475 | - } |
|
4476 | - } |
|
4477 | - } |
|
4470 | + update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
4471 | + update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
4472 | + } else { |
|
4473 | + if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) { |
|
4474 | + geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
4475 | + } |
|
4476 | + } |
|
4477 | + } |
|
4478 | 4478 | |
4479 | - if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) { |
|
4480 | - $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
4481 | - if ($default_category_id) { |
|
4482 | - $save_post['post_default_category'] = $default_category_id; |
|
4483 | - $gd_post['default_category'] = $default_category_id; |
|
4484 | - } |
|
4485 | - $gd_post[$cat_taxonomy] = $save_post['post_category']; |
|
4486 | - } |
|
4487 | - $xtimings['###7'] = microtime(true)-$xstart; |
|
4488 | - // Save post info |
|
4489 | - geodir_save_post_info( $saved_post_id, $gd_post ); |
|
4490 | - $xtimings['###8'] = microtime(true)-$xstart; |
|
4491 | - // post taxonomies |
|
4492 | - if ( !empty( $save_post['post_category'] ) ) { |
|
4493 | - wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
4479 | + if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) { |
|
4480 | + $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
4481 | + if ($default_category_id) { |
|
4482 | + $save_post['post_default_category'] = $default_category_id; |
|
4483 | + $gd_post['default_category'] = $default_category_id; |
|
4484 | + } |
|
4485 | + $gd_post[$cat_taxonomy] = $save_post['post_category']; |
|
4486 | + } |
|
4487 | + $xtimings['###7'] = microtime(true)-$xstart; |
|
4488 | + // Save post info |
|
4489 | + geodir_save_post_info( $saved_post_id, $gd_post ); |
|
4490 | + $xtimings['###8'] = microtime(true)-$xstart; |
|
4491 | + // post taxonomies |
|
4492 | + if ( !empty( $save_post['post_category'] ) ) { |
|
4493 | + wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
4494 | 4494 | |
4495 | - $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
4496 | - if ($default_category_id) { |
|
4497 | - $post_default_category = $default_category_id; |
|
4498 | - } |
|
4499 | - $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
|
4500 | - $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category']; |
|
4501 | - $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : ''; |
|
4495 | + $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
4496 | + if ($default_category_id) { |
|
4497 | + $post_default_category = $default_category_id; |
|
4498 | + } |
|
4499 | + $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
|
4500 | + $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category']; |
|
4501 | + $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : ''; |
|
4502 | 4502 | |
4503 | - if ($post_category_str != '' && $post_default_category) { |
|
4504 | - $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
4505 | - } |
|
4503 | + if ($post_category_str != '' && $post_default_category) { |
|
4504 | + $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
4505 | + } |
|
4506 | 4506 | |
4507 | - $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
|
4507 | + $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
|
4508 | 4508 | |
4509 | - geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
4510 | - } |
|
4511 | - $xtimings['###8.1'] = microtime(true)-$xstart; |
|
4512 | - if ( !empty( $save_post['post_tags'] ) ) { |
|
4513 | - wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
4514 | - } |
|
4515 | - $xtimings['###9'] = microtime(true)-$xstart; |
|
4516 | - // Post images |
|
4517 | - if ( !empty( $post_images ) ) { |
|
4518 | - $post_images = array_unique($post_images); |
|
4509 | + geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
4510 | + } |
|
4511 | + $xtimings['###8.1'] = microtime(true)-$xstart; |
|
4512 | + if ( !empty( $save_post['post_tags'] ) ) { |
|
4513 | + wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
4514 | + } |
|
4515 | + $xtimings['###9'] = microtime(true)-$xstart; |
|
4516 | + // Post images |
|
4517 | + if ( !empty( $post_images ) ) { |
|
4518 | + $post_images = array_unique($post_images); |
|
4519 | 4519 | |
4520 | - $old_post_images_arr = array(); |
|
4521 | - $saved_post_images_arr = array(); |
|
4520 | + $old_post_images_arr = array(); |
|
4521 | + $saved_post_images_arr = array(); |
|
4522 | 4522 | |
4523 | - $order = 1; |
|
4523 | + $order = 1; |
|
4524 | 4524 | |
4525 | - $old_post_images = geodir_get_images( $saved_post_id ); |
|
4526 | - $xtimings['###9.1'] = microtime(true)-$xstart; |
|
4527 | - if (!empty($old_post_images)) { |
|
4528 | - foreach( $old_post_images as $old_post_image ) { |
|
4529 | - if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') { |
|
4530 | - $old_post_images_arr[] = $old_post_image->file; |
|
4531 | - } |
|
4532 | - } |
|
4533 | - } |
|
4525 | + $old_post_images = geodir_get_images( $saved_post_id ); |
|
4526 | + $xtimings['###9.1'] = microtime(true)-$xstart; |
|
4527 | + if (!empty($old_post_images)) { |
|
4528 | + foreach( $old_post_images as $old_post_image ) { |
|
4529 | + if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') { |
|
4530 | + $old_post_images_arr[] = $old_post_image->file; |
|
4531 | + } |
|
4532 | + } |
|
4533 | + } |
|
4534 | 4534 | |
4535 | - foreach ( $post_images as $post_image ) { |
|
4536 | - $image_name = basename( $post_image ); |
|
4537 | - $saved_post_images_arr[] = $image_name; |
|
4535 | + foreach ( $post_images as $post_image ) { |
|
4536 | + $image_name = basename( $post_image ); |
|
4537 | + $saved_post_images_arr[] = $image_name; |
|
4538 | 4538 | |
4539 | - if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) { |
|
4540 | - continue; // Skip if image already exists. |
|
4541 | - } |
|
4539 | + if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) { |
|
4540 | + continue; // Skip if image already exists. |
|
4541 | + } |
|
4542 | 4542 | |
4543 | - $image_name_parts = explode( '.', $image_name ); |
|
4544 | - array_pop( $image_name_parts ); |
|
4545 | - $proper_image_name = implode( '.', $image_name_parts ); |
|
4546 | - $xtimings['###9.2'] = microtime(true)-$xstart; |
|
4547 | - $arr_file_type = wp_check_filetype( $image_name ); |
|
4548 | - $xtimings['###9.3'] = microtime(true)-$xstart; |
|
4549 | - if ( !empty( $arr_file_type ) ) { |
|
4550 | - $uploaded_file_type = $arr_file_type['type']; |
|
4543 | + $image_name_parts = explode( '.', $image_name ); |
|
4544 | + array_pop( $image_name_parts ); |
|
4545 | + $proper_image_name = implode( '.', $image_name_parts ); |
|
4546 | + $xtimings['###9.2'] = microtime(true)-$xstart; |
|
4547 | + $arr_file_type = wp_check_filetype( $image_name ); |
|
4548 | + $xtimings['###9.3'] = microtime(true)-$xstart; |
|
4549 | + if ( !empty( $arr_file_type ) ) { |
|
4550 | + $uploaded_file_type = $arr_file_type['type']; |
|
4551 | 4551 | |
4552 | - $attachment = array(); |
|
4553 | - $attachment['post_id'] = $saved_post_id; |
|
4554 | - $attachment['title'] = $proper_image_name; |
|
4555 | - $attachment['content'] = ''; |
|
4556 | - $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
4557 | - $attachment['mime_type'] = $uploaded_file_type; |
|
4558 | - $attachment['menu_order'] = $order; |
|
4559 | - $attachment['is_featured'] = 0; |
|
4560 | - |
|
4561 | - $attachment_set = ''; |
|
4562 | - foreach ( $attachment as $key => $val ) { |
|
4563 | - if ( $val != '' ) { |
|
4564 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
4565 | - } |
|
4566 | - } |
|
4567 | - $attachment_set = trim( $attachment_set, ", " ); |
|
4552 | + $attachment = array(); |
|
4553 | + $attachment['post_id'] = $saved_post_id; |
|
4554 | + $attachment['title'] = $proper_image_name; |
|
4555 | + $attachment['content'] = ''; |
|
4556 | + $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
4557 | + $attachment['mime_type'] = $uploaded_file_type; |
|
4558 | + $attachment['menu_order'] = $order; |
|
4559 | + $attachment['is_featured'] = 0; |
|
4560 | + |
|
4561 | + $attachment_set = ''; |
|
4562 | + foreach ( $attachment as $key => $val ) { |
|
4563 | + if ( $val != '' ) { |
|
4564 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
4565 | + } |
|
4566 | + } |
|
4567 | + $attachment_set = trim( $attachment_set, ", " ); |
|
4568 | 4568 | |
4569 | - // Add new attachment |
|
4570 | - $xtimings['###9.4'] = microtime(true)-$xstart; |
|
4571 | - $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
4572 | - $xtimings['###9.5'] = microtime(true)-$xstart; |
|
4573 | - $order++; |
|
4574 | - } |
|
4575 | - } |
|
4576 | - |
|
4577 | - $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : ''; |
|
4578 | - // Remove previous attachment |
|
4579 | - $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
4580 | - $xtimings['###9.6'] = microtime(true)-$xstart; |
|
4581 | - if ( !empty( $saved_post_images_arr ) ) { |
|
4582 | - geodir_set_wp_featured_image($saved_post_id); |
|
4583 | - $xtimings['###9.7'] = microtime(true)-$xstart; |
|
4584 | - /* |
|
4569 | + // Add new attachment |
|
4570 | + $xtimings['###9.4'] = microtime(true)-$xstart; |
|
4571 | + $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
4572 | + $xtimings['###9.5'] = microtime(true)-$xstart; |
|
4573 | + $order++; |
|
4574 | + } |
|
4575 | + } |
|
4576 | + |
|
4577 | + $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : ''; |
|
4578 | + // Remove previous attachment |
|
4579 | + $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
4580 | + $xtimings['###9.6'] = microtime(true)-$xstart; |
|
4581 | + if ( !empty( $saved_post_images_arr ) ) { |
|
4582 | + geodir_set_wp_featured_image($saved_post_id); |
|
4583 | + $xtimings['###9.7'] = microtime(true)-$xstart; |
|
4584 | + /* |
|
4585 | 4585 | $menu_order = 1; |
4586 | 4586 | |
4587 | 4587 | foreach ( $saved_post_images_arr as $img_name ) { |
@@ -4594,288 +4594,288 @@ discard block |
||
4594 | 4594 | } |
4595 | 4595 | $menu_order++; |
4596 | 4596 | }*/ |
4597 | - } |
|
4597 | + } |
|
4598 | 4598 | |
4599 | - if ( $order > 1 ) { |
|
4600 | - $images++; |
|
4601 | - } |
|
4602 | - } |
|
4603 | - $xtimings['###10'] = microtime(true)-$xstart; |
|
4604 | - /** This action is documented in geodirectory-functions/post-functions.php */ |
|
4605 | - do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
4606 | - $xtimings['###11'] = microtime(true)-$xstart; |
|
4607 | - if (isset($is_featured)) { |
|
4608 | - geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
|
4609 | - } |
|
4610 | - if (isset($gd_post['alive_days'])) { |
|
4611 | - geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']); |
|
4612 | - } |
|
4613 | - if (isset($gd_post['expire_date'])) { |
|
4614 | - geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
|
4615 | - } |
|
4616 | - $xtimings['###12'] = microtime(true)-$xstart; |
|
4617 | - } |
|
4599 | + if ( $order > 1 ) { |
|
4600 | + $images++; |
|
4601 | + } |
|
4602 | + } |
|
4603 | + $xtimings['###10'] = microtime(true)-$xstart; |
|
4604 | + /** This action is documented in geodirectory-functions/post-functions.php */ |
|
4605 | + do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
4606 | + $xtimings['###11'] = microtime(true)-$xstart; |
|
4607 | + if (isset($is_featured)) { |
|
4608 | + geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
|
4609 | + } |
|
4610 | + if (isset($gd_post['alive_days'])) { |
|
4611 | + geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']); |
|
4612 | + } |
|
4613 | + if (isset($gd_post['expire_date'])) { |
|
4614 | + geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
|
4615 | + } |
|
4616 | + $xtimings['###12'] = microtime(true)-$xstart; |
|
4617 | + } |
|
4618 | 4618 | |
4619 | - // WPML |
|
4620 | - if ($is_wpml && $language != '') { |
|
4621 | - $sitepress->switch_lang($active_lang, true); |
|
4622 | - } |
|
4623 | - // WPML |
|
4624 | - } |
|
4625 | - } |
|
4626 | - } |
|
4619 | + // WPML |
|
4620 | + if ($is_wpml && $language != '') { |
|
4621 | + $sitepress->switch_lang($active_lang, true); |
|
4622 | + } |
|
4623 | + // WPML |
|
4624 | + } |
|
4625 | + } |
|
4626 | + } |
|
4627 | 4627 | |
4628 | - //undo some stuff to make the import quicker |
|
4629 | - wp_defer_term_counting( false ); |
|
4630 | - wp_defer_comment_counting( false ); |
|
4631 | - $wpdb->query( 'COMMIT;' ); |
|
4632 | - $wpdb->query( 'SET autocommit = 1;' ); |
|
4633 | - $xtimings['###13'] = microtime(true)-$xstart; |
|
4634 | - $json = array(); |
|
4635 | - $json['processed'] = $processed_actual; |
|
4636 | - $json['created'] = $created; |
|
4637 | - $json['updated'] = $updated; |
|
4638 | - $json['skipped'] = $skipped; |
|
4639 | - $json['invalid'] = $invalid; |
|
4640 | - $json['invalid_addr'] = $invalid_addr; |
|
4641 | - $json['images'] = $images; |
|
4642 | - $json['timing'] = microtime(true)-$xstart; |
|
4643 | - $json['timings'] = $xtimings; |
|
4628 | + //undo some stuff to make the import quicker |
|
4629 | + wp_defer_term_counting( false ); |
|
4630 | + wp_defer_comment_counting( false ); |
|
4631 | + $wpdb->query( 'COMMIT;' ); |
|
4632 | + $wpdb->query( 'SET autocommit = 1;' ); |
|
4633 | + $xtimings['###13'] = microtime(true)-$xstart; |
|
4634 | + $json = array(); |
|
4635 | + $json['processed'] = $processed_actual; |
|
4636 | + $json['created'] = $created; |
|
4637 | + $json['updated'] = $updated; |
|
4638 | + $json['skipped'] = $skipped; |
|
4639 | + $json['invalid'] = $invalid; |
|
4640 | + $json['invalid_addr'] = $invalid_addr; |
|
4641 | + $json['images'] = $images; |
|
4642 | + $json['timing'] = microtime(true)-$xstart; |
|
4643 | + $json['timings'] = $xtimings; |
|
4644 | 4644 | |
4645 | 4645 | |
4646 | - wp_send_json( $json ); |
|
4647 | - exit; |
|
4648 | - } else if ( $task == 'import_loc' ) { |
|
4649 | - global $gd_post_types; |
|
4650 | - $gd_post_types = $post_types; |
|
4646 | + wp_send_json( $json ); |
|
4647 | + exit; |
|
4648 | + } else if ( $task == 'import_loc' ) { |
|
4649 | + global $gd_post_types; |
|
4650 | + $gd_post_types = $post_types; |
|
4651 | 4651 | |
4652 | - if (!empty($file)) { |
|
4653 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
4652 | + if (!empty($file)) { |
|
4653 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
4654 | 4654 | |
4655 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
4656 | - $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory'); |
|
4657 | - wp_send_json( $json ); |
|
4658 | - } |
|
4655 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
4656 | + $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory'); |
|
4657 | + wp_send_json( $json ); |
|
4658 | + } |
|
4659 | 4659 | |
4660 | - $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory'); |
|
4661 | - $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
4662 | - for ($i = 1; $i <= $limit; $i++) { |
|
4663 | - $index = $processed + $i; |
|
4660 | + $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory'); |
|
4661 | + $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
4662 | + for ($i = 1; $i <= $limit; $i++) { |
|
4663 | + $index = $processed + $i; |
|
4664 | 4664 | |
4665 | - if (isset($file[$index])) { |
|
4666 | - $row = $file[$index]; |
|
4667 | - $row = array_map( 'trim', $row ); |
|
4668 | - $data = array(); |
|
4665 | + if (isset($file[$index])) { |
|
4666 | + $row = $file[$index]; |
|
4667 | + $row = array_map( 'trim', $row ); |
|
4668 | + $data = array(); |
|
4669 | 4669 | |
4670 | - foreach ($columns as $c => $column ) { |
|
4671 | - if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) { |
|
4672 | - $data[$column] = $row[$c]; |
|
4673 | - } |
|
4674 | - } |
|
4670 | + foreach ($columns as $c => $column ) { |
|
4671 | + if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) { |
|
4672 | + $data[$column] = $row[$c]; |
|
4673 | + } |
|
4674 | + } |
|
4675 | 4675 | |
4676 | - if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) { |
|
4677 | - $invalid++; |
|
4678 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4679 | - continue; |
|
4680 | - } |
|
4676 | + if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) { |
|
4677 | + $invalid++; |
|
4678 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4679 | + continue; |
|
4680 | + } |
|
4681 | 4681 | |
4682 | - $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
|
4682 | + $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
|
4683 | 4683 | |
4684 | - if ( $import_choice == 'update' ) { |
|
4685 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) { |
|
4686 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) { |
|
4687 | - $updated++; |
|
4688 | - } else { |
|
4689 | - $invalid++; |
|
4690 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4691 | - } |
|
4692 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) { |
|
4693 | - $data['location_id'] = (int)$location->location_id; |
|
4684 | + if ( $import_choice == 'update' ) { |
|
4685 | + if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) { |
|
4686 | + if ( $location_id = geodir_location_update_city( $data, true, $location ) ) { |
|
4687 | + $updated++; |
|
4688 | + } else { |
|
4689 | + $invalid++; |
|
4690 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4691 | + } |
|
4692 | + } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) { |
|
4693 | + $data['location_id'] = (int)$location->location_id; |
|
4694 | 4694 | |
4695 | - if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) { |
|
4696 | - $data['location_id'] = (int)$location->location_id; |
|
4697 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) { |
|
4698 | - $data['location_id'] = (int)$location->location_id; |
|
4699 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) { |
|
4700 | - $data['location_id'] = (int)$location->location_id; |
|
4701 | - } |
|
4695 | + if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) { |
|
4696 | + $data['location_id'] = (int)$location->location_id; |
|
4697 | + } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) { |
|
4698 | + $data['location_id'] = (int)$location->location_id; |
|
4699 | + } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) { |
|
4700 | + $data['location_id'] = (int)$location->location_id; |
|
4701 | + } |
|
4702 | 4702 | |
4703 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) { |
|
4704 | - $updated++; |
|
4705 | - } else { |
|
4706 | - $invalid++; |
|
4707 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4708 | - } |
|
4709 | - } else { |
|
4710 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) { |
|
4711 | - $created++; |
|
4712 | - } else { |
|
4713 | - $invalid++; |
|
4714 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4715 | - } |
|
4716 | - } |
|
4717 | - } elseif ( $import_choice == 'skip' ) { |
|
4718 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) { |
|
4719 | - $skipped++; |
|
4720 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) { |
|
4721 | - $skipped++; |
|
4722 | - } else { |
|
4723 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) { |
|
4724 | - $created++; |
|
4725 | - } else { |
|
4726 | - $invalid++; |
|
4727 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4728 | - } |
|
4729 | - } |
|
4730 | - } else { |
|
4731 | - $invalid++; |
|
4732 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4733 | - } |
|
4734 | - } |
|
4735 | - } |
|
4736 | - } |
|
4703 | + if ( $location_id = geodir_location_update_city( $data, true, $location ) ) { |
|
4704 | + $updated++; |
|
4705 | + } else { |
|
4706 | + $invalid++; |
|
4707 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4708 | + } |
|
4709 | + } else { |
|
4710 | + if ( $location_id = geodir_location_insert_city( $data, true ) ) { |
|
4711 | + $created++; |
|
4712 | + } else { |
|
4713 | + $invalid++; |
|
4714 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4715 | + } |
|
4716 | + } |
|
4717 | + } elseif ( $import_choice == 'skip' ) { |
|
4718 | + if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) { |
|
4719 | + $skipped++; |
|
4720 | + } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) { |
|
4721 | + $skipped++; |
|
4722 | + } else { |
|
4723 | + if ( $location_id = geodir_location_insert_city( $data, true ) ) { |
|
4724 | + $created++; |
|
4725 | + } else { |
|
4726 | + $invalid++; |
|
4727 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4728 | + } |
|
4729 | + } |
|
4730 | + } else { |
|
4731 | + $invalid++; |
|
4732 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
4733 | + } |
|
4734 | + } |
|
4735 | + } |
|
4736 | + } |
|
4737 | 4737 | |
4738 | - $json = array(); |
|
4739 | - $json['processed'] = $limit; |
|
4740 | - $json['created'] = $created; |
|
4741 | - $json['updated'] = $updated; |
|
4742 | - $json['skipped'] = $skipped; |
|
4743 | - $json['invalid'] = $invalid; |
|
4744 | - $json['images'] = $images; |
|
4738 | + $json = array(); |
|
4739 | + $json['processed'] = $limit; |
|
4740 | + $json['created'] = $created; |
|
4741 | + $json['updated'] = $updated; |
|
4742 | + $json['skipped'] = $skipped; |
|
4743 | + $json['invalid'] = $invalid; |
|
4744 | + $json['images'] = $images; |
|
4745 | 4745 | |
4746 | - wp_send_json( $json ); |
|
4747 | - } else if ( $task == 'import_hood' ) { |
|
4748 | - if (!empty($file)) { |
|
4749 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
4746 | + wp_send_json( $json ); |
|
4747 | + } else if ( $task == 'import_hood' ) { |
|
4748 | + if (!empty($file)) { |
|
4749 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
4750 | 4750 | |
4751 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
4752 | - $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory'); |
|
4753 | - wp_send_json( $json ); |
|
4754 | - } |
|
4751 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
4752 | + $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory'); |
|
4753 | + wp_send_json( $json ); |
|
4754 | + } |
|
4755 | 4755 | |
4756 | - $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory'); |
|
4757 | - $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' ); |
|
4758 | - for ($i = 1; $i <= $limit; $i++) { |
|
4759 | - $index = $processed + $i; |
|
4756 | + $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory'); |
|
4757 | + $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' ); |
|
4758 | + for ($i = 1; $i <= $limit; $i++) { |
|
4759 | + $index = $processed + $i; |
|
4760 | 4760 | |
4761 | - if (isset($file[$index])) { |
|
4762 | - $row = $file[$index]; |
|
4763 | - $row = array_map( 'trim', $row ); |
|
4764 | - $data = array(); |
|
4761 | + if (isset($file[$index])) { |
|
4762 | + $row = $file[$index]; |
|
4763 | + $row = array_map( 'trim', $row ); |
|
4764 | + $data = array(); |
|
4765 | 4765 | |
4766 | - foreach ($columns as $c => $column) { |
|
4767 | - if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) { |
|
4768 | - $data[$column] = sanitize_text_field($row[$c]); |
|
4769 | - } |
|
4770 | - } |
|
4766 | + foreach ($columns as $c => $column) { |
|
4767 | + if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) { |
|
4768 | + $data[$column] = sanitize_text_field($row[$c]); |
|
4769 | + } |
|
4770 | + } |
|
4771 | 4771 | |
4772 | - if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) { |
|
4773 | - $invalid++; |
|
4774 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4775 | - continue; |
|
4776 | - } |
|
4772 | + if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) { |
|
4773 | + $invalid++; |
|
4774 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4775 | + continue; |
|
4776 | + } |
|
4777 | 4777 | |
4778 | - $location_info = array(); |
|
4779 | - if (!empty($data['location_id']) && (int)$data['location_id'] > 0) { |
|
4780 | - $location_info = geodir_get_location_by_id('', (int)$data['location_id']); |
|
4781 | - } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) { |
|
4782 | - $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region'])); |
|
4783 | - } |
|
4778 | + $location_info = array(); |
|
4779 | + if (!empty($data['location_id']) && (int)$data['location_id'] > 0) { |
|
4780 | + $location_info = geodir_get_location_by_id('', (int)$data['location_id']); |
|
4781 | + } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) { |
|
4782 | + $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region'])); |
|
4783 | + } |
|
4784 | 4784 | |
4785 | - if (empty($location_info)) { |
|
4786 | - $invalid++; |
|
4787 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4788 | - continue; |
|
4789 | - } |
|
4785 | + if (empty($location_info)) { |
|
4786 | + $invalid++; |
|
4787 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4788 | + continue; |
|
4789 | + } |
|
4790 | 4790 | |
4791 | - $location_id = $location_info->location_id; |
|
4791 | + $location_id = $location_info->location_id; |
|
4792 | 4792 | |
4793 | - $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0; |
|
4793 | + $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0; |
|
4794 | 4794 | |
4795 | - $hood_data = array(); |
|
4796 | - $hood_data['hood_name'] = $data['neighbourhood_name']; |
|
4797 | - $hood_data['hood_slug'] = $data['neighbourhood_slug']; |
|
4798 | - $hood_data['hood_latitude'] = $data['latitude']; |
|
4799 | - $hood_data['hood_longitude'] = $data['longitude']; |
|
4800 | - $hood_data['hood_location_id'] = $location_id; |
|
4795 | + $hood_data = array(); |
|
4796 | + $hood_data['hood_name'] = $data['neighbourhood_name']; |
|
4797 | + $hood_data['hood_slug'] = $data['neighbourhood_slug']; |
|
4798 | + $hood_data['hood_latitude'] = $data['latitude']; |
|
4799 | + $hood_data['hood_longitude'] = $data['longitude']; |
|
4800 | + $hood_data['hood_location_id'] = $location_id; |
|
4801 | 4801 | |
4802 | - if ( $import_choice == 'update' ) { |
|
4803 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) { |
|
4804 | - $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
4802 | + if ( $import_choice == 'update' ) { |
|
4803 | + if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) { |
|
4804 | + $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
4805 | 4805 | |
4806 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) { |
|
4807 | - $updated++; |
|
4808 | - } else { |
|
4809 | - $invalid++; |
|
4810 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4811 | - } |
|
4812 | - } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) { |
|
4813 | - $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
4806 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) { |
|
4807 | + $updated++; |
|
4808 | + } else { |
|
4809 | + $invalid++; |
|
4810 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4811 | + } |
|
4812 | + } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) { |
|
4813 | + $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
4814 | 4814 | |
4815 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) { |
|
4816 | - $updated++; |
|
4817 | - } else { |
|
4818 | - $invalid++; |
|
4819 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4820 | - } |
|
4821 | - } else { |
|
4822 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) { |
|
4823 | - $created++; |
|
4824 | - } else { |
|
4825 | - $invalid++; |
|
4826 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4827 | - } |
|
4828 | - } |
|
4829 | - } elseif ( $import_choice == 'skip' ) { |
|
4830 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) { |
|
4831 | - $skipped++; |
|
4832 | - } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) { |
|
4833 | - $skipped++; |
|
4834 | - } else { |
|
4815 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) { |
|
4816 | + $updated++; |
|
4817 | + } else { |
|
4818 | + $invalid++; |
|
4819 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4820 | + } |
|
4821 | + } else { |
|
4822 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) { |
|
4823 | + $created++; |
|
4824 | + } else { |
|
4825 | + $invalid++; |
|
4826 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4827 | + } |
|
4828 | + } |
|
4829 | + } elseif ( $import_choice == 'skip' ) { |
|
4830 | + if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) { |
|
4831 | + $skipped++; |
|
4832 | + } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) { |
|
4833 | + $skipped++; |
|
4834 | + } else { |
|
4835 | 4835 | |
4836 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) { |
|
4837 | - $created++; |
|
4838 | - } else { |
|
4839 | - $invalid++; |
|
4840 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4841 | - } |
|
4842 | - } |
|
4843 | - } else { |
|
4844 | - $invalid++; |
|
4845 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4846 | - } |
|
4847 | - } |
|
4848 | - } |
|
4849 | - } |
|
4836 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) { |
|
4837 | + $created++; |
|
4838 | + } else { |
|
4839 | + $invalid++; |
|
4840 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4841 | + } |
|
4842 | + } |
|
4843 | + } else { |
|
4844 | + $invalid++; |
|
4845 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
4846 | + } |
|
4847 | + } |
|
4848 | + } |
|
4849 | + } |
|
4850 | 4850 | |
4851 | - $json = array(); |
|
4852 | - $json['processed'] = $limit; |
|
4853 | - $json['created'] = $created; |
|
4854 | - $json['updated'] = $updated; |
|
4855 | - $json['skipped'] = $skipped; |
|
4856 | - $json['invalid'] = $invalid; |
|
4857 | - $json['images'] = $images; |
|
4851 | + $json = array(); |
|
4852 | + $json['processed'] = $limit; |
|
4853 | + $json['created'] = $created; |
|
4854 | + $json['updated'] = $updated; |
|
4855 | + $json['skipped'] = $skipped; |
|
4856 | + $json['invalid'] = $invalid; |
|
4857 | + $json['images'] = $images; |
|
4858 | 4858 | |
4859 | - wp_send_json( $json ); |
|
4860 | - } |
|
4861 | - } |
|
4862 | - break; |
|
4863 | - case 'import_finish':{ |
|
4864 | - /** |
|
4865 | - * Run an action when an import finishes. |
|
4866 | - * |
|
4867 | - * This action can be used to fire functions after an import ends. |
|
4868 | - * |
|
4869 | - * @since 1.5.3 |
|
4870 | - * @package GeoDirectory |
|
4871 | - */ |
|
4872 | - do_action('geodir_import_finished'); |
|
4873 | - } |
|
4874 | - break; |
|
4859 | + wp_send_json( $json ); |
|
4860 | + } |
|
4861 | + } |
|
4862 | + break; |
|
4863 | + case 'import_finish':{ |
|
4864 | + /** |
|
4865 | + * Run an action when an import finishes. |
|
4866 | + * |
|
4867 | + * This action can be used to fire functions after an import ends. |
|
4868 | + * |
|
4869 | + * @since 1.5.3 |
|
4870 | + * @package GeoDirectory |
|
4871 | + */ |
|
4872 | + do_action('geodir_import_finished'); |
|
4873 | + } |
|
4874 | + break; |
|
4875 | 4875 | |
4876 | - } |
|
4877 | - echo '0'; |
|
4878 | - gd_die(); |
|
4876 | + } |
|
4877 | + echo '0'; |
|
4878 | + gd_die(); |
|
4879 | 4879 | } |
4880 | 4880 | |
4881 | 4881 | /** |
@@ -4919,12 +4919,12 @@ discard block |
||
4919 | 4919 | $args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args ); |
4920 | 4920 | } |
4921 | 4921 | |
4922 | - if( !empty( $term ) ) { |
|
4922 | + if( !empty( $term ) ) { |
|
4923 | 4923 | $result = wp_insert_term( $term, $taxonomy, $args ); |
4924 | - if( !is_wp_error( $result ) ) { |
|
4925 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
4926 | - } |
|
4927 | - } |
|
4924 | + if( !is_wp_error( $result ) ) { |
|
4925 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
4926 | + } |
|
4927 | + } |
|
4928 | 4928 | |
4929 | 4929 | return false; |
4930 | 4930 | } |
@@ -4970,16 +4970,16 @@ discard block |
||
4970 | 4970 | $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
4971 | 4971 | |
4972 | 4972 | if( !is_wp_error( $result ) ) { |
4973 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
4974 | - } |
|
4973 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
4974 | + } |
|
4975 | 4975 | } else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) { |
4976 | 4976 | $term_data['term_id'] = $term_info['term_id']; |
4977 | 4977 | |
4978 | 4978 | $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
4979 | 4979 | |
4980 | 4980 | if( !is_wp_error( $result ) ) { |
4981 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
4982 | - } |
|
4981 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
4982 | + } |
|
4983 | 4983 | } else { |
4984 | 4984 | return geodir_imex_insert_term( $taxonomy, $term_data ); |
4985 | 4985 | } |
@@ -5001,47 +5001,47 @@ discard block |
||
5001 | 5001 | * @return int Posts count. |
5002 | 5002 | */ |
5003 | 5003 | function geodir_get_posts_count( $post_type ) { |
5004 | - global $wpdb, $plugin_prefix; |
|
5004 | + global $wpdb, $plugin_prefix; |
|
5005 | 5005 | |
5006 | - if ( !post_type_exists( $post_type ) ) { |
|
5007 | - return 0; |
|
5008 | - } |
|
5006 | + if ( !post_type_exists( $post_type ) ) { |
|
5007 | + return 0; |
|
5008 | + } |
|
5009 | 5009 | |
5010 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
5010 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
5011 | 5011 | |
5012 | - // Skip listing with statuses trash, auto-draft etc... |
|
5013 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
5014 | - $where_statuses = ''; |
|
5015 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) { |
|
5016 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')"; |
|
5017 | - } |
|
5012 | + // Skip listing with statuses trash, auto-draft etc... |
|
5013 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
5014 | + $where_statuses = ''; |
|
5015 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) { |
|
5016 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')"; |
|
5017 | + } |
|
5018 | 5018 | |
5019 | - /** |
|
5020 | - * Filter the SQL where clause part to filter posts count in import/export. |
|
5021 | - * |
|
5022 | - * @since 1.6.4 |
|
5023 | - * @package GeoDirectory |
|
5024 | - * |
|
5025 | - * @param string $where SQL where clause part. |
|
5026 | - */ |
|
5027 | - $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
5028 | - |
|
5029 | - $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 ); |
|
5030 | - |
|
5031 | - $posts_count = (int)$wpdb->get_var( $query ); |
|
5019 | + /** |
|
5020 | + * Filter the SQL where clause part to filter posts count in import/export. |
|
5021 | + * |
|
5022 | + * @since 1.6.4 |
|
5023 | + * @package GeoDirectory |
|
5024 | + * |
|
5025 | + * @param string $where SQL where clause part. |
|
5026 | + */ |
|
5027 | + $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
5028 | + |
|
5029 | + $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 ); |
|
5030 | + |
|
5031 | + $posts_count = (int)$wpdb->get_var( $query ); |
|
5032 | 5032 | |
5033 | - /** |
|
5034 | - * Modify returned post counts for the current post type. |
|
5035 | - * |
|
5036 | - * @since 1.4.6 |
|
5037 | - * @package GeoDirectory |
|
5038 | - * |
|
5039 | - * @param int $posts_count Post counts. |
|
5040 | - * @param string $post_type Post type. |
|
5041 | - */ |
|
5042 | - $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
5043 | - |
|
5044 | - return $posts_count; |
|
5033 | + /** |
|
5034 | + * Modify returned post counts for the current post type. |
|
5035 | + * |
|
5036 | + * @since 1.4.6 |
|
5037 | + * @package GeoDirectory |
|
5038 | + * |
|
5039 | + * @param int $posts_count Post counts. |
|
5040 | + * @param string $post_type Post type. |
|
5041 | + */ |
|
5042 | + $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
5043 | + |
|
5044 | + return $posts_count; |
|
5045 | 5045 | } |
5046 | 5046 | |
5047 | 5047 | /** |
@@ -5070,10 +5070,10 @@ discard block |
||
5070 | 5070 | |
5071 | 5071 | if ( !empty( $posts ) ) { |
5072 | 5072 | $is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' ); |
5073 | - $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active. |
|
5074 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
5075 | - $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false; |
|
5076 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false; |
|
5073 | + $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active. |
|
5074 | + $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
5075 | + $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false; |
|
5076 | + $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false; |
|
5077 | 5077 | |
5078 | 5078 | $csv_row = array(); |
5079 | 5079 | $csv_row[] = 'post_id'; |
@@ -5105,7 +5105,7 @@ discard block |
||
5105 | 5105 | } |
5106 | 5106 | $csv_row[] = 'post_status'; |
5107 | 5107 | $csv_row[] = 'is_featured'; |
5108 | - // Export claim listing field |
|
5108 | + // Export claim listing field |
|
5109 | 5109 | if ($is_claim_active) { |
5110 | 5110 | $csv_row[] = 'claimed'; |
5111 | 5111 | } |
@@ -5114,7 +5114,7 @@ discard block |
||
5114 | 5114 | $csv_row[] = 'alive_days'; |
5115 | 5115 | $csv_row[] = 'expire_date'; |
5116 | 5116 | } |
5117 | - $csv_row[] = 'post_date'; |
|
5117 | + $csv_row[] = 'post_date'; |
|
5118 | 5118 | $csv_row[] = 'post_address'; |
5119 | 5119 | $csv_row[] = 'post_city'; |
5120 | 5120 | $csv_row[] = 'post_region'; |
@@ -5122,11 +5122,11 @@ discard block |
||
5122 | 5122 | $csv_row[] = 'post_zip'; |
5123 | 5123 | $csv_row[] = 'post_latitude'; |
5124 | 5124 | $csv_row[] = 'post_longitude'; |
5125 | - if ($neighbourhood_active) { |
|
5126 | - $csv_row[] = 'post_neighbourhood'; |
|
5127 | - $csv_row[] = 'neighbourhood_latitude'; |
|
5128 | - $csv_row[] = 'neighbourhood_longitude'; |
|
5129 | - } |
|
5125 | + if ($neighbourhood_active) { |
|
5126 | + $csv_row[] = 'post_neighbourhood'; |
|
5127 | + $csv_row[] = 'neighbourhood_latitude'; |
|
5128 | + $csv_row[] = 'neighbourhood_longitude'; |
|
5129 | + } |
|
5130 | 5130 | $csv_row[] = 'geodir_timing'; |
5131 | 5131 | $csv_row[] = 'geodir_contact'; |
5132 | 5132 | $csv_row[] = 'geodir_email'; |
@@ -5158,21 +5158,21 @@ discard block |
||
5158 | 5158 | $csv_row[] = 'franchise'; |
5159 | 5159 | } |
5160 | 5160 | |
5161 | - /** |
|
5162 | - * Filter columns field names of gd export listings csv. |
|
5163 | - * |
|
5164 | - * @since 1.6.5 |
|
5165 | - * @package GeoDirectory |
|
5166 | - * |
|
5167 | - * @param array $csv_row Column names being exported in csv. |
|
5168 | - * @param string $post_type The post type. |
|
5169 | - */ |
|
5170 | - $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type); |
|
5161 | + /** |
|
5162 | + * Filter columns field names of gd export listings csv. |
|
5163 | + * |
|
5164 | + * @since 1.6.5 |
|
5165 | + * @package GeoDirectory |
|
5166 | + * |
|
5167 | + * @param array $csv_row Column names being exported in csv. |
|
5168 | + * @param string $post_type The post type. |
|
5169 | + */ |
|
5170 | + $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type); |
|
5171 | 5171 | |
5172 | 5172 | $csv_rows[] = $csv_row; |
5173 | 5173 | |
5174 | 5174 | $images_count = 5; |
5175 | - $xx=0; |
|
5175 | + $xx=0; |
|
5176 | 5176 | foreach ( $posts as $post ) {$xx++; |
5177 | 5177 | $post_id = $post['ID']; |
5178 | 5178 | |
@@ -5303,15 +5303,15 @@ discard block |
||
5303 | 5303 | } |
5304 | 5304 | $csv_row[] = $post_info['post_status']; // post_status |
5305 | 5305 | $csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
5306 | - if ($is_claim_active) { |
|
5307 | - $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
5308 | - } |
|
5306 | + if ($is_claim_active) { |
|
5307 | + $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
5308 | + } |
|
5309 | 5309 | if ($is_payment_plugin) { |
5310 | 5310 | $csv_row[] = (int)$post_info['package_id']; // package_id |
5311 | 5311 | $csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days |
5312 | 5312 | $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 |
5313 | 5313 | } |
5314 | - $csv_row[] = $post_info['post_date']; // post_date |
|
5314 | + $csv_row[] = $post_info['post_date']; // post_date |
|
5315 | 5315 | $csv_row[] = stripslashes($post_info['post_address']); // post_address |
5316 | 5316 | $csv_row[] = stripslashes($post_info['post_city']); // post_city |
5317 | 5317 | $csv_row[] = stripslashes($post_info['post_region']); // post_region |
@@ -5319,21 +5319,21 @@ discard block |
||
5319 | 5319 | $csv_row[] = stripslashes($post_info['post_zip']); // post_zip |
5320 | 5320 | $csv_row[] = $post_info['post_latitude']; // post_latitude |
5321 | 5321 | $csv_row[] = $post_info['post_longitude']; // post_longitude |
5322 | - if ($neighbourhood_active) { |
|
5323 | - $post_neighbourhood = ''; |
|
5324 | - $neighbourhood_latitude = ''; |
|
5325 | - $neighbourhood_longitude = ''; |
|
5326 | - if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) { |
|
5327 | - if (!empty($hood_info)) { |
|
5328 | - $post_neighbourhood = $hood_info->hood_name; |
|
5329 | - $neighbourhood_latitude = $hood_info->hood_latitude; |
|
5330 | - $neighbourhood_longitude = $hood_info->hood_longitude; |
|
5331 | - } |
|
5332 | - } |
|
5333 | - $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood |
|
5334 | - $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude |
|
5335 | - $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude |
|
5336 | - } |
|
5322 | + if ($neighbourhood_active) { |
|
5323 | + $post_neighbourhood = ''; |
|
5324 | + $neighbourhood_latitude = ''; |
|
5325 | + $neighbourhood_longitude = ''; |
|
5326 | + if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) { |
|
5327 | + if (!empty($hood_info)) { |
|
5328 | + $post_neighbourhood = $hood_info->hood_name; |
|
5329 | + $neighbourhood_latitude = $hood_info->hood_latitude; |
|
5330 | + $neighbourhood_longitude = $hood_info->hood_longitude; |
|
5331 | + } |
|
5332 | + } |
|
5333 | + $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood |
|
5334 | + $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude |
|
5335 | + $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude |
|
5336 | + } |
|
5337 | 5337 | $csv_row[] = stripslashes($post_info['geodir_timing']); // geodir_timing |
5338 | 5338 | $csv_row[] = stripslashes($post_info['geodir_contact']); // geodir_contact |
5339 | 5339 | $csv_row[] = stripslashes($post_info['geodir_email']); // geodir_email |
@@ -5373,16 +5373,16 @@ discard block |
||
5373 | 5373 | $csv_row[] = (int)$franchise; // franchise id |
5374 | 5374 | } |
5375 | 5375 | |
5376 | - /** |
|
5377 | - * Filter columns values of gd export listings csv file |
|
5378 | - * |
|
5379 | - * @since 1.6.5 |
|
5380 | - * @package GeoDirectory |
|
5381 | - * |
|
5382 | - * @param array $csv_row Field values being exported in csv. |
|
5383 | - * @param array $post_info The post info. |
|
5384 | - */ |
|
5385 | - $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info); |
|
5376 | + /** |
|
5377 | + * Filter columns values of gd export listings csv file |
|
5378 | + * |
|
5379 | + * @since 1.6.5 |
|
5380 | + * @package GeoDirectory |
|
5381 | + * |
|
5382 | + * @param array $csv_row Field values being exported in csv. |
|
5383 | + * @param array $post_info The post info. |
|
5384 | + */ |
|
5385 | + $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info); |
|
5386 | 5386 | |
5387 | 5387 | for ( $c = 0; $c < $images_count; $c++ ) { |
5388 | 5388 | $csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE |
@@ -5415,64 +5415,64 @@ discard block |
||
5415 | 5415 | * @return array Array of posts data. |
5416 | 5416 | */ |
5417 | 5417 | function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) { |
5418 | - global $wpdb, $plugin_prefix; |
|
5418 | + global $wpdb, $plugin_prefix; |
|
5419 | 5419 | |
5420 | - if ( ! post_type_exists( $post_type ) ) |
|
5421 | - return new stdClass; |
|
5420 | + if ( ! post_type_exists( $post_type ) ) |
|
5421 | + return new stdClass; |
|
5422 | 5422 | |
5423 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
5423 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
5424 | 5424 | |
5425 | - $limit = ''; |
|
5426 | - if ( $per_page > 0 && $page_no > 0 ) { |
|
5427 | - $offset = ( $page_no - 1 ) * $per_page; |
|
5425 | + $limit = ''; |
|
5426 | + if ( $per_page > 0 && $page_no > 0 ) { |
|
5427 | + $offset = ( $page_no - 1 ) * $per_page; |
|
5428 | 5428 | |
5429 | - if ( $offset > 0 ) { |
|
5430 | - $limit = " LIMIT " . $offset . "," . $per_page; |
|
5431 | - } else { |
|
5432 | - $limit = " LIMIT " . $per_page; |
|
5433 | - } |
|
5434 | - } |
|
5429 | + if ( $offset > 0 ) { |
|
5430 | + $limit = " LIMIT " . $offset . "," . $per_page; |
|
5431 | + } else { |
|
5432 | + $limit = " LIMIT " . $per_page; |
|
5433 | + } |
|
5434 | + } |
|
5435 | 5435 | |
5436 | - // Skip listing with statuses trash, auto-draft etc... |
|
5437 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
5438 | - $where_statuses = ''; |
|
5439 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) { |
|
5440 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')"; |
|
5441 | - } |
|
5436 | + // Skip listing with statuses trash, auto-draft etc... |
|
5437 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
5438 | + $where_statuses = ''; |
|
5439 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) { |
|
5440 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')"; |
|
5441 | + } |
|
5442 | 5442 | |
5443 | - /** |
|
5444 | - * Filter the SQL where clause part to filter posts in import/export. |
|
5445 | - * |
|
5446 | - * @since 1.6.4 |
|
5447 | - * @package GeoDirectory |
|
5448 | - * |
|
5449 | - * @param string $where SQL where clause part. |
|
5450 | - */ |
|
5451 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
5452 | - |
|
5453 | - $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 ); |
|
5454 | - /** |
|
5455 | - * Modify returned posts SQL query for the current post type. |
|
5456 | - * |
|
5457 | - * @since 1.4.6 |
|
5458 | - * @package GeoDirectory |
|
5459 | - * |
|
5460 | - * @param int $query The SQL query. |
|
5461 | - * @param string $post_type Post type. |
|
5462 | - */ |
|
5463 | - $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
5464 | - $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
5465 | - |
|
5466 | - /** |
|
5467 | - * Modify returned post results for the current post type. |
|
5468 | - * |
|
5469 | - * @since 1.4.6 |
|
5470 | - * @package GeoDirectory |
|
5471 | - * |
|
5472 | - * @param object $results An object containing all post ids. |
|
5473 | - * @param string $post_type Post type. |
|
5474 | - */ |
|
5475 | - return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
5443 | + /** |
|
5444 | + * Filter the SQL where clause part to filter posts in import/export. |
|
5445 | + * |
|
5446 | + * @since 1.6.4 |
|
5447 | + * @package GeoDirectory |
|
5448 | + * |
|
5449 | + * @param string $where SQL where clause part. |
|
5450 | + */ |
|
5451 | + $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
5452 | + |
|
5453 | + $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 ); |
|
5454 | + /** |
|
5455 | + * Modify returned posts SQL query for the current post type. |
|
5456 | + * |
|
5457 | + * @since 1.4.6 |
|
5458 | + * @package GeoDirectory |
|
5459 | + * |
|
5460 | + * @param int $query The SQL query. |
|
5461 | + * @param string $post_type Post type. |
|
5462 | + */ |
|
5463 | + $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
5464 | + $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
5465 | + |
|
5466 | + /** |
|
5467 | + * Modify returned post results for the current post type. |
|
5468 | + * |
|
5469 | + * @since 1.4.6 |
|
5470 | + * @package GeoDirectory |
|
5471 | + * |
|
5472 | + * @param object $results An object containing all post ids. |
|
5473 | + * @param string $post_type Post type. |
|
5474 | + */ |
|
5475 | + return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
5476 | 5476 | } |
5477 | 5477 | |
5478 | 5478 | /** |
@@ -5491,26 +5491,26 @@ discard block |
||
5491 | 5491 | * @return string The SQL query. |
5492 | 5492 | */ |
5493 | 5493 | function geodir_imex_get_events_query( $query, $post_type ) { |
5494 | - if ( $post_type == 'gd_event' ) { |
|
5495 | - global $wpdb, $plugin_prefix; |
|
5494 | + if ( $post_type == 'gd_event' ) { |
|
5495 | + global $wpdb, $plugin_prefix; |
|
5496 | 5496 | |
5497 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
5498 | - $schedule_table = EVENT_SCHEDULE; |
|
5497 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
5498 | + $schedule_table = EVENT_SCHEDULE; |
|
5499 | 5499 | |
5500 | - // Skip listing with statuses trash, auto-draft etc... |
|
5501 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
5502 | - $where_statuses = ''; |
|
5503 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) { |
|
5504 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')"; |
|
5505 | - } |
|
5500 | + // Skip listing with statuses trash, auto-draft etc... |
|
5501 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
5502 | + $where_statuses = ''; |
|
5503 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) { |
|
5504 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')"; |
|
5505 | + } |
|
5506 | 5506 | |
5507 | - /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
|
5508 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
5507 | + /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
|
5508 | + $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
5509 | 5509 | |
5510 | - $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 ); |
|
5511 | - } |
|
5510 | + $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 ); |
|
5511 | + } |
|
5512 | 5512 | |
5513 | - return $query; |
|
5513 | + return $query; |
|
5514 | 5514 | } |
5515 | 5515 | |
5516 | 5516 | /** |
@@ -5532,36 +5532,36 @@ discard block |
||
5532 | 5532 | * @return int Total terms count. |
5533 | 5533 | */ |
5534 | 5534 | function geodir_get_terms_count( $post_type ) { |
5535 | - $args = array( 'hide_empty' => 0 ); |
|
5535 | + $args = array( 'hide_empty' => 0 ); |
|
5536 | 5536 | |
5537 | - remove_all_filters( 'get_terms' ); |
|
5537 | + remove_all_filters( 'get_terms' ); |
|
5538 | 5538 | |
5539 | - $taxonomy = $post_type . 'category'; |
|
5539 | + $taxonomy = $post_type . 'category'; |
|
5540 | 5540 | |
5541 | - // WPML |
|
5542 | - $is_wpml = geodir_is_wpml(); |
|
5543 | - $active_lang = 'all'; |
|
5544 | - if ( $is_wpml ) { |
|
5545 | - global $sitepress; |
|
5546 | - $active_lang = $sitepress->get_current_language(); |
|
5541 | + // WPML |
|
5542 | + $is_wpml = geodir_is_wpml(); |
|
5543 | + $active_lang = 'all'; |
|
5544 | + if ( $is_wpml ) { |
|
5545 | + global $sitepress; |
|
5546 | + $active_lang = $sitepress->get_current_language(); |
|
5547 | 5547 | |
5548 | - if ( $active_lang != 'all' ) { |
|
5549 | - $sitepress->switch_lang( 'all', true ); |
|
5550 | - } |
|
5551 | - } |
|
5552 | - // WPML |
|
5548 | + if ( $active_lang != 'all' ) { |
|
5549 | + $sitepress->switch_lang( 'all', true ); |
|
5550 | + } |
|
5551 | + } |
|
5552 | + // WPML |
|
5553 | 5553 | |
5554 | - $count_terms = wp_count_terms( $taxonomy, $args ); |
|
5554 | + $count_terms = wp_count_terms( $taxonomy, $args ); |
|
5555 | 5555 | |
5556 | - // WPML |
|
5557 | - if ( $is_wpml && $active_lang !== 'all' ) { |
|
5558 | - global $sitepress; |
|
5559 | - $sitepress->switch_lang( $active_lang, true ); |
|
5560 | - } |
|
5561 | - // WPML |
|
5562 | - $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
5556 | + // WPML |
|
5557 | + if ( $is_wpml && $active_lang !== 'all' ) { |
|
5558 | + global $sitepress; |
|
5559 | + $sitepress->switch_lang( $active_lang, true ); |
|
5560 | + } |
|
5561 | + // WPML |
|
5562 | + $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
5563 | 5563 | |
5564 | - return $count_terms; |
|
5564 | + return $count_terms; |
|
5565 | 5565 | } |
5566 | 5566 | |
5567 | 5567 | /** |
@@ -5600,11 +5600,11 @@ discard block |
||
5600 | 5600 | $csv_row[] = 'cat_posttype'; |
5601 | 5601 | $csv_row[] = 'cat_parent'; |
5602 | 5602 | $csv_row[] = 'cat_schema'; |
5603 | - // WPML |
|
5603 | + // WPML |
|
5604 | 5604 | $is_wpml = geodir_is_wpml(); |
5605 | 5605 | if ($is_wpml) { |
5606 | 5606 | $csv_row[] = 'cat_language'; |
5607 | - $csv_row[] = 'cat_id_original'; |
|
5607 | + $csv_row[] = 'cat_id_original'; |
|
5608 | 5608 | } |
5609 | 5609 | // WPML |
5610 | 5610 | $csv_row[] = 'cat_description'; |
@@ -5634,10 +5634,10 @@ discard block |
||
5634 | 5634 | $csv_row[] = $post_type; |
5635 | 5635 | $csv_row[] = $cat_parent; |
5636 | 5636 | $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type ); |
5637 | - // WPML |
|
5637 | + // WPML |
|
5638 | 5638 | if ($is_wpml) { |
5639 | 5639 | $csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy ); |
5640 | - $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
5640 | + $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
5641 | 5641 | } |
5642 | 5642 | // WPML |
5643 | 5643 | $csv_row[] = $term->description; |
@@ -6055,43 +6055,43 @@ discard block |
||
6055 | 6055 | * @param string $status Post status. |
6056 | 6056 | */ |
6057 | 6057 | function geodir_create_page($slug, $option, $page_title = '', $page_content = '', $post_parent = 0, $status = 'publish') { |
6058 | - global $wpdb, $current_user; |
|
6059 | - |
|
6060 | - $option_value = get_option($option); |
|
6061 | - |
|
6062 | - if ($option_value > 0) : |
|
6063 | - if (get_post($option_value)) : |
|
6064 | - // Page exists |
|
6065 | - return; |
|
6066 | - endif; |
|
6067 | - endif; |
|
6068 | - |
|
6069 | - $page_found = $wpdb->get_var( |
|
6070 | - $wpdb->prepare( |
|
6071 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
6072 | - array($slug) |
|
6073 | - ) |
|
6074 | - ); |
|
6075 | - |
|
6076 | - if ($page_found) : |
|
6077 | - // Page exists |
|
6078 | - if (!$option_value) update_option($option, $page_found); |
|
6079 | - return; |
|
6080 | - endif; |
|
6081 | - |
|
6082 | - $page_data = array( |
|
6083 | - 'post_status' => $status, |
|
6084 | - 'post_type' => 'page', |
|
6085 | - 'post_author' => $current_user->ID, |
|
6086 | - 'post_name' => $slug, |
|
6087 | - 'post_title' => $page_title, |
|
6088 | - 'post_content' => $page_content, |
|
6089 | - 'post_parent' => $post_parent, |
|
6090 | - 'comment_status' => 'closed' |
|
6091 | - ); |
|
6092 | - $page_id = wp_insert_post($page_data); |
|
6093 | - |
|
6094 | - add_option($option, $page_id); |
|
6058 | + global $wpdb, $current_user; |
|
6059 | + |
|
6060 | + $option_value = get_option($option); |
|
6061 | + |
|
6062 | + if ($option_value > 0) : |
|
6063 | + if (get_post($option_value)) : |
|
6064 | + // Page exists |
|
6065 | + return; |
|
6066 | + endif; |
|
6067 | + endif; |
|
6068 | + |
|
6069 | + $page_found = $wpdb->get_var( |
|
6070 | + $wpdb->prepare( |
|
6071 | + "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
6072 | + array($slug) |
|
6073 | + ) |
|
6074 | + ); |
|
6075 | + |
|
6076 | + if ($page_found) : |
|
6077 | + // Page exists |
|
6078 | + if (!$option_value) update_option($option, $page_found); |
|
6079 | + return; |
|
6080 | + endif; |
|
6081 | + |
|
6082 | + $page_data = array( |
|
6083 | + 'post_status' => $status, |
|
6084 | + 'post_type' => 'page', |
|
6085 | + 'post_author' => $current_user->ID, |
|
6086 | + 'post_name' => $slug, |
|
6087 | + 'post_title' => $page_title, |
|
6088 | + 'post_content' => $page_content, |
|
6089 | + 'post_parent' => $post_parent, |
|
6090 | + 'comment_status' => 'closed' |
|
6091 | + ); |
|
6092 | + $page_id = wp_insert_post($page_data); |
|
6093 | + |
|
6094 | + add_option($option, $page_id); |
|
6095 | 6095 | |
6096 | 6096 | } |
6097 | 6097 | |
@@ -6122,9 +6122,9 @@ discard block |
||
6122 | 6122 | * @package GeoDirectory |
6123 | 6123 | */ |
6124 | 6124 | function geodir_admin_upgrade_notice() { |
6125 | - $class = "error"; |
|
6126 | - $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory"); |
|
6127 | - echo"<div class=\"$class\"> <p>$message</p></div>"; |
|
6125 | + $class = "error"; |
|
6126 | + $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory"); |
|
6127 | + echo"<div class=\"$class\"> <p>$message</p></div>"; |
|
6128 | 6128 | } |
6129 | 6129 | |
6130 | 6130 | /** |
@@ -6137,18 +6137,18 @@ discard block |
||
6137 | 6137 | */ |
6138 | 6138 | function geodire_admin_upgrade_notice( $plugin_data, $r ) |
6139 | 6139 | { |
6140 | - // readme contents |
|
6141 | - $args = array( |
|
6142 | - 'timeout' => 15, |
|
6143 | - 'redirection' => 5 |
|
6144 | - ); |
|
6145 | - $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
|
6146 | - $data = wp_remote_get( $url, $args ); |
|
6140 | + // readme contents |
|
6141 | + $args = array( |
|
6142 | + 'timeout' => 15, |
|
6143 | + 'redirection' => 5 |
|
6144 | + ); |
|
6145 | + $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
|
6146 | + $data = wp_remote_get( $url, $args ); |
|
6147 | 6147 | |
6148 | - if (!is_wp_error($data) && $data['response']['code'] == 200) { |
|
6148 | + if (!is_wp_error($data) && $data['response']['code'] == 200) { |
|
6149 | 6149 | |
6150 | - geodir_in_plugin_update_message($data['body']); |
|
6151 | - } |
|
6150 | + geodir_in_plugin_update_message($data['body']); |
|
6151 | + } |
|
6152 | 6152 | } |
6153 | 6153 | |
6154 | 6154 | |
@@ -6156,28 +6156,28 @@ discard block |
||
6156 | 6156 | * @param string $content http response body |
6157 | 6157 | */ |
6158 | 6158 | function geodir_in_plugin_update_message($content) { |
6159 | - // Output Upgrade Notice |
|
6160 | - $matches = null; |
|
6161 | - $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
6162 | - $upgrade_notice = ''; |
|
6163 | - if ( preg_match( $regexp, $content, $matches ) ) { |
|
6164 | - if(empty($matches)){return;} |
|
6165 | - |
|
6166 | - $version = trim( $matches[1] ); |
|
6167 | - if($version && $version>GEODIRECTORY_VERSION){ |
|
6168 | - |
|
6169 | - |
|
6170 | - $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) ); |
|
6171 | - if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) { |
|
6172 | - $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
|
6173 | - foreach ( $notices as $index => $line ) { |
|
6174 | - $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) ); |
|
6175 | - } |
|
6176 | - $upgrade_notice .= '</div> '; |
|
6177 | - } |
|
6178 | - } |
|
6179 | - } |
|
6180 | - echo $upgrade_notice; |
|
6159 | + // Output Upgrade Notice |
|
6160 | + $matches = null; |
|
6161 | + $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
6162 | + $upgrade_notice = ''; |
|
6163 | + if ( preg_match( $regexp, $content, $matches ) ) { |
|
6164 | + if(empty($matches)){return;} |
|
6165 | + |
|
6166 | + $version = trim( $matches[1] ); |
|
6167 | + if($version && $version>GEODIRECTORY_VERSION){ |
|
6168 | + |
|
6169 | + |
|
6170 | + $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) ); |
|
6171 | + if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) { |
|
6172 | + $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
|
6173 | + foreach ( $notices as $index => $line ) { |
|
6174 | + $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) ); |
|
6175 | + } |
|
6176 | + $upgrade_notice .= '</div> '; |
|
6177 | + } |
|
6178 | + } |
|
6179 | + } |
|
6180 | + echo $upgrade_notice; |
|
6181 | 6181 | } |
6182 | 6182 | |
6183 | 6183 | /** |
@@ -6210,19 +6210,19 @@ discard block |
||
6210 | 6210 | * @param array Listing statuses to be skipped. |
6211 | 6211 | */ |
6212 | 6212 | function geodir_imex_export_skip_statuses() { |
6213 | - $statuses = array( 'trash', 'auto-draft' ); |
|
6213 | + $statuses = array( 'trash', 'auto-draft' ); |
|
6214 | 6214 | |
6215 | - /** |
|
6216 | - * Filter the statuses to skip during GD export listings. |
|
6217 | - * |
|
6218 | - * @since 1.6.0 |
|
6219 | - * @package GeoDirectory |
|
6220 | - * |
|
6221 | - * @param array $statuses Listing statuses to be skipped. |
|
6222 | - */ |
|
6223 | - $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
6215 | + /** |
|
6216 | + * Filter the statuses to skip during GD export listings. |
|
6217 | + * |
|
6218 | + * @since 1.6.0 |
|
6219 | + * @package GeoDirectory |
|
6220 | + * |
|
6221 | + * @param array $statuses Listing statuses to be skipped. |
|
6222 | + */ |
|
6223 | + $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
6224 | 6224 | |
6225 | - return $statuses; |
|
6225 | + return $statuses; |
|
6226 | 6226 | } |
6227 | 6227 | |
6228 | 6228 | /** |
@@ -6238,42 +6238,42 @@ discard block |
||
6238 | 6238 | * @global string $typenow Current post type. |
6239 | 6239 | */ |
6240 | 6240 | function geodir_admin_dequeue_scripts() { |
6241 | - global $typenow; |
|
6241 | + global $typenow; |
|
6242 | 6242 | |
6243 | - // EDD |
|
6244 | - if (wp_script_is('jquery-chosen', 'enqueued')) { |
|
6245 | - wp_dequeue_script('jquery-chosen'); |
|
6246 | - } |
|
6243 | + // EDD |
|
6244 | + if (wp_script_is('jquery-chosen', 'enqueued')) { |
|
6245 | + wp_dequeue_script('jquery-chosen'); |
|
6246 | + } |
|
6247 | 6247 | |
6248 | - // Ultimate Addons for Visual Composer |
|
6249 | - if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) { |
|
6250 | - wp_dequeue_script('ultimate-vc-backend-script'); |
|
6251 | - } |
|
6248 | + // Ultimate Addons for Visual Composer |
|
6249 | + if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) { |
|
6250 | + wp_dequeue_script('ultimate-vc-backend-script'); |
|
6251 | + } |
|
6252 | 6252 | |
6253 | - // VC editor conflicts |
|
6254 | - if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) { |
|
6255 | - wp_dequeue_script('dfd_vc_damin_scripts'); |
|
6256 | - } |
|
6253 | + // VC editor conflicts |
|
6254 | + if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) { |
|
6255 | + wp_dequeue_script('dfd_vc_damin_scripts'); |
|
6256 | + } |
|
6257 | 6257 | |
6258 | - // Ultimate chosen |
|
6259 | - if (wp_script_is('ultimate-chosen-script', 'enqueued')) { |
|
6260 | - wp_dequeue_script('ultimate-chosen-script'); |
|
6261 | - } |
|
6258 | + // Ultimate chosen |
|
6259 | + if (wp_script_is('ultimate-chosen-script', 'enqueued')) { |
|
6260 | + wp_dequeue_script('ultimate-chosen-script'); |
|
6261 | + } |
|
6262 | 6262 | |
6263 | - // Crum composer choosen |
|
6264 | - if (wp_script_is('crum-composer-choosen', 'enqueued')) { |
|
6265 | - wp_dequeue_script('crum-composer-choosen'); |
|
6266 | - } |
|
6263 | + // Crum composer choosen |
|
6264 | + if (wp_script_is('crum-composer-choosen', 'enqueued')) { |
|
6265 | + wp_dequeue_script('crum-composer-choosen'); |
|
6266 | + } |
|
6267 | 6267 | |
6268 | - // Fix conflict Fusion Builder jquery chosen with GD jquery chosen. |
|
6269 | - if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) { |
|
6270 | - wp_dequeue_script('fusion_builder_chosen_js'); |
|
6271 | - } |
|
6268 | + // Fix conflict Fusion Builder jquery chosen with GD jquery chosen. |
|
6269 | + if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) { |
|
6270 | + wp_dequeue_script('fusion_builder_chosen_js'); |
|
6271 | + } |
|
6272 | 6272 | |
6273 | - // Fix conflicts timepicker & setting date value. |
|
6274 | - if (class_exists('acf') && wp_script_is('acf-timepicker', 'enqueued')) { |
|
6275 | - wp_dequeue_script('acf-timepicker'); |
|
6276 | - } |
|
6273 | + // Fix conflicts timepicker & setting date value. |
|
6274 | + if (class_exists('acf') && wp_script_is('acf-timepicker', 'enqueued')) { |
|
6275 | + wp_dequeue_script('acf-timepicker'); |
|
6276 | + } |
|
6277 | 6277 | } |
6278 | 6278 | |
6279 | 6279 | /** |
@@ -6289,48 +6289,48 @@ discard block |
||
6289 | 6289 | * @return string SQL where clause part. |
6290 | 6290 | */ |
6291 | 6291 | function geodir_imex_get_filter_where($where = '', $post_type = '') { |
6292 | - global $wpdb; |
|
6292 | + global $wpdb; |
|
6293 | 6293 | |
6294 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
6294 | + $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
6295 | 6295 | |
6296 | - if ( !empty( $filters ) ) { |
|
6297 | - foreach ( $filters as $field => $value ) { |
|
6298 | - switch ($field) { |
|
6299 | - case 'start_date': |
|
6300 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
6301 | - break; |
|
6302 | - case 'end_date': |
|
6303 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
6304 | - break; |
|
6305 | - } |
|
6306 | - } |
|
6307 | - } |
|
6296 | + if ( !empty( $filters ) ) { |
|
6297 | + foreach ( $filters as $field => $value ) { |
|
6298 | + switch ($field) { |
|
6299 | + case 'start_date': |
|
6300 | + $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
6301 | + break; |
|
6302 | + case 'end_date': |
|
6303 | + $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
6304 | + break; |
|
6305 | + } |
|
6306 | + } |
|
6307 | + } |
|
6308 | 6308 | |
6309 | - return $where; |
|
6309 | + return $where; |
|
6310 | 6310 | } |
6311 | 6311 | add_filter('geodir_get_posts_count', 'geodir_imex_get_filter_where', 10, 2); |
6312 | 6312 | add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2); |
6313 | 6313 | |
6314 | 6314 | |
6315 | 6315 | function geodir_fix_for_primer_theme(){ |
6316 | - if(!defined( 'PRIMER_VERSION' )){return;} |
|
6317 | - global $pagenow; |
|
6316 | + if(!defined( 'PRIMER_VERSION' )){return;} |
|
6317 | + global $pagenow; |
|
6318 | 6318 | |
6319 | - if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){ |
|
6319 | + if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){ |
|
6320 | 6320 | |
6321 | - $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
6321 | + $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
6322 | 6322 | |
6323 | - $post_types = geodir_get_posttypes(); |
|
6324 | - if ($post_type && in_array($post_type, $post_types) ) { |
|
6325 | - global $primer_customizer_layouts; |
|
6326 | - remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
6327 | - } |
|
6328 | - } |
|
6323 | + $post_types = geodir_get_posttypes(); |
|
6324 | + if ($post_type && in_array($post_type, $post_types) ) { |
|
6325 | + global $primer_customizer_layouts; |
|
6326 | + remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
6327 | + } |
|
6328 | + } |
|
6329 | 6329 | |
6330 | 6330 | } |
6331 | 6331 | |
6332 | 6332 | if(is_admin()){ |
6333 | - add_action('add_meta_boxes','geodir_fix_for_primer_theme',0); |
|
6333 | + add_action('add_meta_boxes','geodir_fix_for_primer_theme',0); |
|
6334 | 6334 | } |
6335 | 6335 | |
6336 | 6336 | |
@@ -6463,96 +6463,96 @@ discard block |
||
6463 | 6463 | |
6464 | 6464 | function geodir_ga_activation_url() { |
6465 | 6465 | |
6466 | - return add_query_arg( array( |
|
6467 | - 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"), |
|
6468 | - 'scope' => GEODIR_GA_SCOPE, |
|
6469 | - 'response_type' => 'code', |
|
6470 | - 'redirect_uri' => GEODIR_GA_REDIRECT, |
|
6471 | - 'client_id' => GEODIR_GA_CLIENTID, |
|
6472 | - ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
6466 | + return add_query_arg( array( |
|
6467 | + 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"), |
|
6468 | + 'scope' => GEODIR_GA_SCOPE, |
|
6469 | + 'response_type' => 'code', |
|
6470 | + 'redirect_uri' => GEODIR_GA_REDIRECT, |
|
6471 | + 'client_id' => GEODIR_GA_CLIENTID, |
|
6472 | + ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
6473 | 6473 | |
6474 | - return $url; |
|
6474 | + return $url; |
|
6475 | 6475 | } |
6476 | 6476 | |
6477 | 6477 | function geodir_gd_accounts(){ |
6478 | - $accounts = array(); |
|
6479 | - $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
6480 | - if($useAuth){ |
|
6481 | - try { |
|
6482 | - $accounts = geodir_ga_get_analytics_accounts(); |
|
6483 | - } catch (Exception $e) { |
|
6484 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
6485 | - } |
|
6478 | + $accounts = array(); |
|
6479 | + $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
6480 | + if($useAuth){ |
|
6481 | + try { |
|
6482 | + $accounts = geodir_ga_get_analytics_accounts(); |
|
6483 | + } catch (Exception $e) { |
|
6484 | + geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
6485 | + } |
|
6486 | 6486 | |
6487 | - if(is_array($accounts)){ |
|
6488 | - $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts); |
|
6489 | - }elseif(get_option('geodir_ga_account_id')){ |
|
6490 | - $accounts = array(); |
|
6491 | - $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')'; |
|
6492 | - } |
|
6493 | - } |
|
6494 | - return $accounts; |
|
6487 | + if(is_array($accounts)){ |
|
6488 | + $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts); |
|
6489 | + }elseif(get_option('geodir_ga_account_id')){ |
|
6490 | + $accounts = array(); |
|
6491 | + $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')'; |
|
6492 | + } |
|
6493 | + } |
|
6494 | + return $accounts; |
|
6495 | 6495 | } |
6496 | 6496 | |
6497 | 6497 | function geodir_ga_get_analytics_accounts() |
6498 | 6498 | { |
6499 | - global $gd_ga_errors; |
|
6500 | - $accounts = array(); |
|
6499 | + global $gd_ga_errors; |
|
6500 | + $accounts = array(); |
|
6501 | 6501 | |
6502 | - if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');} |
|
6502 | + if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');} |
|
6503 | 6503 | |
6504 | 6504 | |
6505 | - if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){ |
|
6506 | - return get_option('geodir_gd_uids'); |
|
6507 | - } |
|
6505 | + if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){ |
|
6506 | + return get_option('geodir_gd_uids'); |
|
6507 | + } |
|
6508 | 6508 | |
6509 | - # Create a new Gdata call |
|
6510 | - if ( trim(get_option('geodir_ga_auth_code')) != '' ) |
|
6511 | - $stats = new GDGoogleAnalyticsStats(); |
|
6512 | - else |
|
6513 | - return false; |
|
6509 | + # Create a new Gdata call |
|
6510 | + if ( trim(get_option('geodir_ga_auth_code')) != '' ) |
|
6511 | + $stats = new GDGoogleAnalyticsStats(); |
|
6512 | + else |
|
6513 | + return false; |
|
6514 | 6514 | |
6515 | - # Check if Google sucessfully logged in |
|
6516 | - if ( ! $stats->checkLogin() ) |
|
6517 | - return false; |
|
6515 | + # Check if Google sucessfully logged in |
|
6516 | + if ( ! $stats->checkLogin() ) |
|
6517 | + return false; |
|
6518 | 6518 | |
6519 | - # Get a list of accounts |
|
6520 | - try { |
|
6521 | - $accounts = $stats->getAllProfiles(); |
|
6522 | - } catch (Exception $e) { |
|
6523 | - $gd_ga_errors[] = $e->getMessage(); |
|
6524 | - return false; |
|
6525 | - } |
|
6519 | + # Get a list of accounts |
|
6520 | + try { |
|
6521 | + $accounts = $stats->getAllProfiles(); |
|
6522 | + } catch (Exception $e) { |
|
6523 | + $gd_ga_errors[] = $e->getMessage(); |
|
6524 | + return false; |
|
6525 | + } |
|
6526 | 6526 | |
6527 | 6527 | |
6528 | - natcasesort ($accounts); |
|
6528 | + natcasesort ($accounts); |
|
6529 | 6529 | |
6530 | - # Return the account array if there are accounts |
|
6531 | - if ( count($accounts) > 0 ){ |
|
6532 | - update_option('geodir_gd_uids',$accounts); |
|
6533 | - return $accounts; |
|
6534 | - } |
|
6535 | - else |
|
6536 | - return false; |
|
6530 | + # Return the account array if there are accounts |
|
6531 | + if ( count($accounts) > 0 ){ |
|
6532 | + update_option('geodir_gd_uids',$accounts); |
|
6533 | + return $accounts; |
|
6534 | + } |
|
6535 | + else |
|
6536 | + return false; |
|
6537 | 6537 | } |
6538 | 6538 | |
6539 | 6539 | add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' ); |
6540 | 6540 | function geodir_ga_deauthorize(){ |
6541 | 6541 | |
6542 | - if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) { |
|
6542 | + if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) { |
|
6543 | 6543 | |
6544 | - die( 'Security check' ); |
|
6544 | + die( 'Security check' ); |
|
6545 | 6545 | |
6546 | - } else { |
|
6547 | - update_option('geodir_ga_auth_token',''); |
|
6548 | - update_option('geodir_ga_auth_code',''); |
|
6549 | - update_option('geodir_gd_uids',''); |
|
6546 | + } else { |
|
6547 | + update_option('geodir_ga_auth_token',''); |
|
6548 | + update_option('geodir_ga_auth_code',''); |
|
6549 | + update_option('geodir_gd_uids',''); |
|
6550 | 6550 | |
6551 | 6551 | |
6552 | - echo admin_url('?page=geodirectory&active_tab=google_analytic_settings'); |
|
6553 | - } |
|
6552 | + echo admin_url('?page=geodirectory&active_tab=google_analytic_settings'); |
|
6553 | + } |
|
6554 | 6554 | |
6555 | - die(); |
|
6555 | + die(); |
|
6556 | 6556 | } |
6557 | 6557 | |
6558 | 6558 | |
@@ -6563,12 +6563,12 @@ discard block |
||
6563 | 6563 | * @package GeoDirectory |
6564 | 6564 | */ |
6565 | 6565 | function geodir_post_type_setting_fun() { |
6566 | - $post_type_arr = array(); |
|
6566 | + $post_type_arr = array(); |
|
6567 | 6567 | |
6568 | - $post_types = geodir_get_posttypes('object'); |
|
6568 | + $post_types = geodir_get_posttypes('object'); |
|
6569 | 6569 | |
6570 | - foreach ($post_types as $key => $post_types_obj) { |
|
6571 | - $post_type_arr[$key] = $post_types_obj->labels->singular_name; |
|
6572 | - } |
|
6573 | - return $post_type_arr; |
|
6570 | + foreach ($post_types as $key => $post_types_obj) { |
|
6571 | + $post_type_arr[$key] = $post_types_obj->labels->singular_name; |
|
6572 | + } |
|
6573 | + return $post_type_arr; |
|
6574 | 6574 | } |
6575 | 6575 | \ No newline at end of file |