Test Failed
Pull Request — master (#283)
by Kiran
07:36
created
geodirectory-functions/post_functions.php 1 patch
Indentation   +2220 added lines, -2220 removed lines patch added patch discarded remove patch
@@ -20,480 +20,480 @@  discard block
 block discarded – undo
20 20
 function geodir_set_postcat_structure($post_id, $taxonomy, $default_cat = '', $category_str = '')
21 21
 {
22 22
 
23
-    $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
-    if (!empty($post_cat_ids))
25
-        $post_cat_array = explode(",", trim($post_cat_ids, ","));
26
-
27
-    if (!isset($default_cat) || empty($default_cat)) {
28
-        $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
-        if(!is_int($default_cat)){
31
-            $category = get_term_by('name', $default_cat, $taxonomy);
32
-            if(isset($category->term_id)){
33
-                $default_cat =  $category->term_id;
34
-            }
35
-        }
23
+	$post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
+	if (!empty($post_cat_ids))
25
+		$post_cat_array = explode(",", trim($post_cat_ids, ","));
26
+
27
+	if (!isset($default_cat) || empty($default_cat)) {
28
+		$default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
+	}else{
30
+		if(!is_int($default_cat)){
31
+			$category = get_term_by('name', $default_cat, $taxonomy);
32
+			if(isset($category->term_id)){
33
+				$default_cat =  $category->term_id;
34
+			}
35
+		}
36 36
 
37
-    }
37
+	}
38 38
 
39 39
 
40
-    geodir_save_post_meta($post_id, 'default_category', $default_cat);
40
+	geodir_save_post_meta($post_id, 'default_category', $default_cat);
41 41
 
42
-    if (isset($category_str) && empty($category_str)) {
42
+	if (isset($category_str) && empty($category_str)) {
43 43
 
44
-        $post_cat_str = '';
45
-        $post_categories = array();
46
-        if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
47
-            $post_cat_str = implode(",y:#", $post_cat_array);
48
-            $post_cat_str .= ",y:";
49
-            $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
50
-        }
51
-        $post_categories[$taxonomy] = $post_cat_str;
52
-        $category_str = $post_categories;
53
-    }
44
+		$post_cat_str = '';
45
+		$post_categories = array();
46
+		if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
47
+			$post_cat_str = implode(",y:#", $post_cat_array);
48
+			$post_cat_str .= ",y:";
49
+			$post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
50
+		}
51
+		$post_categories[$taxonomy] = $post_cat_str;
52
+		$category_str = $post_categories;
53
+	}
54 54
 
55
-    $change_cat_str = $category_str[$taxonomy];
55
+	$change_cat_str = $category_str[$taxonomy];
56 56
 
57
-    $default_pos = strpos($change_cat_str, 'd:');
57
+	$default_pos = strpos($change_cat_str, 'd:');
58 58
 
59
-    if ($default_pos === false) {
59
+	if ($default_pos === false) {
60 60
 
61
-        $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str);
61
+		$change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str);
62 62
 
63
-    }
63
+	}
64 64
 
65
-    $category_str[$taxonomy] = $change_cat_str;
65
+	$category_str[$taxonomy] = $change_cat_str;
66 66
 
67
-    update_post_meta($post_id, 'post_categories', $category_str);
67
+	update_post_meta($post_id, 'post_categories', $category_str);
68 68
 
69 69
 }
70 70
 
71 71
 
72 72
 if (!function_exists('geodir_save_listing')) {
73
-    /**
74
-     * Saves listing in the database using given information.
75
-     *
76
-     * @since 1.0.0
77
-     * @since 1.5.4 New parameter $wp_error added.
78
-     * @package GeoDirectory
79
-     * @global object $wpdb WordPress Database object.
80
-     * @global object $post The current post object.
81
-     * @global object $current_user Current user object.
73
+	/**
74
+	 * Saves listing in the database using given information.
75
+	 *
76
+	 * @since 1.0.0
77
+	 * @since 1.5.4 New parameter $wp_error added.
78
+	 * @package GeoDirectory
79
+	 * @global object $wpdb WordPress Database object.
80
+	 * @global object $post The current post object.
81
+	 * @global object $current_user Current user object.
82 82
 	 * @global object $gd_session GeoDirectory Session object.
83
-     * @param array $request_info {
84
-     *    Array of request info arguments.
85
-     *
86
-     *    @type string $action                                  Ajax action name.
87
-     *    @type string $geodir_ajax                             Ajax type.
88
-     *    @type string $ajax_action                             Ajax action.
89
-     *    @type string $listing_type                            Listing type.
90
-     *    @type string $pid                                     Default Post ID.
91
-     *    @type string $preview                                 Todo Desc needed.
92
-     *    @type string $add_listing_page_id                     Add listing page ID.
93
-     *    @type string $post_title                              Listing title.
94
-     *    @type string $post_desc                               Listing Description.
95
-     *    @type string $post_tags                               Listing tags.
96
-     *    @type array  $cat_limit                               Category limit.
97
-     *    @type array  $post_category                           Category IDs.
98
-     *    @type array  $post_category_str                       Category string.
99
-     *    @type string $post_default_category                   Default category ID.
100
-     *    @type string $post_address                            Listing address.
101
-     *    @type string $geodir_location_add_listing_country_val Add listing country value.
102
-     *    @type string $post_country                            Listing country.
103
-     *    @type string $geodir_location_add_listing_region_val  Add listing region value.
104
-     *    @type string $post_region                             Listing region.
105
-     *    @type string $geodir_location_add_listing_city_val    Add listing city value.
106
-     *    @type string $post_city                               Listing city.
107
-     *    @type string $post_zip                                Listing zip.
108
-     *    @type string $post_latitude                           Listing latitude.
109
-     *    @type string $post_longitude                          Listing longitude.
110
-     *    @type string $post_mapview                            Listing mapview. Default "ROADMAP".
111
-     *    @type string $post_mapzoom                            Listing mapzoom Default "9".
112
-     *    @type string $geodir_timing                           Business timing info.
113
-     *    @type string $geodir_contact                          Contact number.
114
-     *    @type string $geodir_email                            Business contact email.
115
-     *    @type string $geodir_website                          Business website.
116
-     *    @type string $geodir_twitter                          Twitter link.
117
-     *    @type string $geodir_facebook                         Facebook link.
118
-     *    @type string $geodir_video                            Video link.
119
-     *    @type string $geodir_special_offers                   Speacial offers.
120
-     *    @type string $post_images                             Post image urls.
121
-     *    @type string $post_imagesimage_limit                  Post images limit.
122
-     *    @type string $post_imagestotImg                       Todo Desc needed.
123
-     *    @type string $geodir_accept_term_condition            Has accepted terms and conditions?.
124
-     *    @type string $geodir_spamblocker                      Todo Desc needed.
125
-     *    @type string $geodir_filled_by_spam_bot               Todo Desc needed.
126
-     *
127
-     * }
128
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
129
-     * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false.
130
-     * @return int|string|WP_Error Created post id or WP_Error on failure.
131
-     */
132
-    function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false)
133
-    {
134
-        global $wpdb, $current_user, $gd_session;
135
-
136
-        $last_post_id = '';
137
-
138
-        if ($gd_session->get('listing') && !$dummy) {
139
-            $request_info = array();
140
-            $request_session = $gd_session->get('listing');
141
-            $request_info = array_merge($_REQUEST, $request_session);
142
-        } else if (!$gd_session->get('listing') && !$dummy) {
143
-            global $post;
144
-            $request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
145
-            $request_info['post_title'] = $request_info['post_title'];
146
-            $request_info['listing_type'] = $post->post_type;
147
-            $request_info['post_desc'] = $request_info['content'];
148
-        } else if (!$dummy) {
149
-            return false;
150
-        }
151
-
152
-        /**
153
-         * Filter the request_info array.
154
-         *
155
-         * You can use this filter to modify request_info array.
156
-         *
157
-         * @since 1.0.0
158
-         * @package GeoDirectory
159
-         * @param array $request_info See {@see geodir_save_listing()} for accepted args.
160
-         */
161
-        $request_info = apply_filters('geodir_action_get_request_info', $request_info);
162
-
163
-        // Check if we need to save post location as new location
164
-        $location_result = geodir_get_default_location();
165
-
166
-        if ($location_result->location_id > 0) {
167
-            if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
168
-                $request_info['post_location'] = array(
169
-                    'city' => $request_info['post_city'],
170
-                    'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
171
-                    'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
172
-                    'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
173
-                    'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
174
-                );
175
-
176
-                $post_location_info = $request_info['post_location'];
177
-
178
-                if ($location_id = geodir_add_new_location($post_location_info)) {
179
-                    $post_location_id = $location_id;
180
-                }
181
-            } else {
182
-                $post_location_id = $location_result->location_id;
183
-            }
184
-        } else {
185
-            $post_location_id = $location_result->location_id;
186
-        }
187
-
188
-        if ($dummy) {
189
-            $post_status = 'publish';
190
-        } else {
191
-            $post_status = geodir_new_post_default_status();
192
-        }
193
-
194
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
195
-            $post_status = get_post_status($request_info['pid']);
196
-        }
197
-
198
-        /* fix change of slug on every title edit */
199
-        if (!isset($request_info['post_name'])) {
200
-            $request_info['post_name'] = $request_info['post_title'];
201
-
202
-            if (!empty($request_info['pid'])) {
203
-                $post_info = get_post($request_info['pid']);
204
-
205
-                if (!empty($post_info) && isset($post_info->post_name)) {
206
-                    $request_info['post_name'] = $post_info->post_name;
207
-                }
208
-            }
209
-        }
210
-
211
-        $post = array(
212
-            'post_content' => $request_info['post_desc'],
213
-            'post_status' => $post_status,
214
-            'post_title' => $request_info['post_title'],
215
-            'post_name' => $request_info['post_name'],
216
-            'post_type' => $request_info['listing_type']
217
-        );
218
-
219
-        /**
220
-         * Called before a listing is saved to the database.
221
-         *
222
-         * @since 1.0.0
223
-         * @param object $post The post object.
224
-         */
225
-        do_action_ref_array('geodir_before_save_listing', $post);
83
+	 * @param array $request_info {
84
+	 *    Array of request info arguments.
85
+	 *
86
+	 *    @type string $action                                  Ajax action name.
87
+	 *    @type string $geodir_ajax                             Ajax type.
88
+	 *    @type string $ajax_action                             Ajax action.
89
+	 *    @type string $listing_type                            Listing type.
90
+	 *    @type string $pid                                     Default Post ID.
91
+	 *    @type string $preview                                 Todo Desc needed.
92
+	 *    @type string $add_listing_page_id                     Add listing page ID.
93
+	 *    @type string $post_title                              Listing title.
94
+	 *    @type string $post_desc                               Listing Description.
95
+	 *    @type string $post_tags                               Listing tags.
96
+	 *    @type array  $cat_limit                               Category limit.
97
+	 *    @type array  $post_category                           Category IDs.
98
+	 *    @type array  $post_category_str                       Category string.
99
+	 *    @type string $post_default_category                   Default category ID.
100
+	 *    @type string $post_address                            Listing address.
101
+	 *    @type string $geodir_location_add_listing_country_val Add listing country value.
102
+	 *    @type string $post_country                            Listing country.
103
+	 *    @type string $geodir_location_add_listing_region_val  Add listing region value.
104
+	 *    @type string $post_region                             Listing region.
105
+	 *    @type string $geodir_location_add_listing_city_val    Add listing city value.
106
+	 *    @type string $post_city                               Listing city.
107
+	 *    @type string $post_zip                                Listing zip.
108
+	 *    @type string $post_latitude                           Listing latitude.
109
+	 *    @type string $post_longitude                          Listing longitude.
110
+	 *    @type string $post_mapview                            Listing mapview. Default "ROADMAP".
111
+	 *    @type string $post_mapzoom                            Listing mapzoom Default "9".
112
+	 *    @type string $geodir_timing                           Business timing info.
113
+	 *    @type string $geodir_contact                          Contact number.
114
+	 *    @type string $geodir_email                            Business contact email.
115
+	 *    @type string $geodir_website                          Business website.
116
+	 *    @type string $geodir_twitter                          Twitter link.
117
+	 *    @type string $geodir_facebook                         Facebook link.
118
+	 *    @type string $geodir_video                            Video link.
119
+	 *    @type string $geodir_special_offers                   Speacial offers.
120
+	 *    @type string $post_images                             Post image urls.
121
+	 *    @type string $post_imagesimage_limit                  Post images limit.
122
+	 *    @type string $post_imagestotImg                       Todo Desc needed.
123
+	 *    @type string $geodir_accept_term_condition            Has accepted terms and conditions?.
124
+	 *    @type string $geodir_spamblocker                      Todo Desc needed.
125
+	 *    @type string $geodir_filled_by_spam_bot               Todo Desc needed.
126
+	 *
127
+	 * }
128
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
129
+	 * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false.
130
+	 * @return int|string|WP_Error Created post id or WP_Error on failure.
131
+	 */
132
+	function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false)
133
+	{
134
+		global $wpdb, $current_user, $gd_session;
135
+
136
+		$last_post_id = '';
137
+
138
+		if ($gd_session->get('listing') && !$dummy) {
139
+			$request_info = array();
140
+			$request_session = $gd_session->get('listing');
141
+			$request_info = array_merge($_REQUEST, $request_session);
142
+		} else if (!$gd_session->get('listing') && !$dummy) {
143
+			global $post;
144
+			$request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
145
+			$request_info['post_title'] = $request_info['post_title'];
146
+			$request_info['listing_type'] = $post->post_type;
147
+			$request_info['post_desc'] = $request_info['content'];
148
+		} else if (!$dummy) {
149
+			return false;
150
+		}
151
+
152
+		/**
153
+		 * Filter the request_info array.
154
+		 *
155
+		 * You can use this filter to modify request_info array.
156
+		 *
157
+		 * @since 1.0.0
158
+		 * @package GeoDirectory
159
+		 * @param array $request_info See {@see geodir_save_listing()} for accepted args.
160
+		 */
161
+		$request_info = apply_filters('geodir_action_get_request_info', $request_info);
162
+
163
+		// Check if we need to save post location as new location
164
+		$location_result = geodir_get_default_location();
165
+
166
+		if ($location_result->location_id > 0) {
167
+			if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
168
+				$request_info['post_location'] = array(
169
+					'city' => $request_info['post_city'],
170
+					'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
171
+					'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
172
+					'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
173
+					'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
174
+				);
175
+
176
+				$post_location_info = $request_info['post_location'];
177
+
178
+				if ($location_id = geodir_add_new_location($post_location_info)) {
179
+					$post_location_id = $location_id;
180
+				}
181
+			} else {
182
+				$post_location_id = $location_result->location_id;
183
+			}
184
+		} else {
185
+			$post_location_id = $location_result->location_id;
186
+		}
226 187
 
227
-        $send_post_submit_mail = false;
188
+		if ($dummy) {
189
+			$post_status = 'publish';
190
+		} else {
191
+			$post_status = geodir_new_post_default_status();
192
+		}
228 193
 
229
-        // unhook this function so it doesn't loop infinitely
230
-        remove_action('save_post', 'geodir_post_information_save',10,2);
194
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
195
+			$post_status = get_post_status($request_info['pid']);
196
+		}
231 197
 
232
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
233
-            $post['ID'] = $request_info['pid'];
198
+		/* fix change of slug on every title edit */
199
+		if (!isset($request_info['post_name'])) {
200
+			$request_info['post_name'] = $request_info['post_title'];
234 201
 
235
-            $last_post_id = wp_update_post($post, $wp_error);
236
-        } else {
237
-            $last_post_id = wp_insert_post($post, $wp_error);
202
+			if (!empty($request_info['pid'])) {
203
+				$post_info = get_post($request_info['pid']);
238 204
 
239
-            if (!$dummy && $last_post_id) {
240
-                $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email)
241
-                //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
242
-            }
243
-        }
205
+				if (!empty($post_info) && isset($post_info->post_name)) {
206
+					$request_info['post_name'] = $post_info->post_name;
207
+				}
208
+			}
209
+		}
210
+
211
+		$post = array(
212
+			'post_content' => $request_info['post_desc'],
213
+			'post_status' => $post_status,
214
+			'post_title' => $request_info['post_title'],
215
+			'post_name' => $request_info['post_name'],
216
+			'post_type' => $request_info['listing_type']
217
+		);
218
+
219
+		/**
220
+		 * Called before a listing is saved to the database.
221
+		 *
222
+		 * @since 1.0.0
223
+		 * @param object $post The post object.
224
+		 */
225
+		do_action_ref_array('geodir_before_save_listing', $post);
226
+
227
+		$send_post_submit_mail = false;
228
+
229
+		// unhook this function so it doesn't loop infinitely
230
+		remove_action('save_post', 'geodir_post_information_save',10,2);
231
+
232
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
233
+			$post['ID'] = $request_info['pid'];
234
+
235
+			$last_post_id = wp_update_post($post, $wp_error);
236
+		} else {
237
+			$last_post_id = wp_insert_post($post, $wp_error);
238
+
239
+			if (!$dummy && $last_post_id) {
240
+				$send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email)
241
+				//geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
242
+			}
243
+		}
244 244
 
245
-        if ($wp_error && is_wp_error($last_post_id)) {
246
-            return $last_post_id; // Return WP_Error on save failure.
247
-        }
245
+		if ($wp_error && is_wp_error($last_post_id)) {
246
+			return $last_post_id; // Return WP_Error on save failure.
247
+		}
248 248
 
249
-        if (!$last_post_id) {
250
-            return false; // Save failure.
251
-        }
249
+		if (!$last_post_id) {
250
+			return false; // Save failure.
251
+		}
252 252
 
253
-        // re-hook this function
254
-        add_action('save_post', 'geodir_post_information_save',10,2);
253
+		// re-hook this function
254
+		add_action('save_post', 'geodir_post_information_save',10,2);
255 255
 
256
-        $post_tags = '';
257
-        if (!isset($request_info['post_tags'])) {
256
+		$post_tags = '';
257
+		if (!isset($request_info['post_tags'])) {
258 258
 
259
-            $post_type = $request_info['listing_type'];
260
-            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
259
+			$post_type = $request_info['listing_type'];
260
+			$post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
261 261
 
262
-        }
262
+		}
263 263
 
264
-        $gd_post_info = array(
265
-            "post_title" => $request_info['post_title'],
266
-            "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
267
-            "post_status" => $post_status,
268
-            "post_location_id" => $post_location_id,
269
-            "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
270
-            "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
271
-            "submit_time" => time(),
272
-            "submit_ip" => $_SERVER['REMOTE_ADDR'],
273
-        );
264
+		$gd_post_info = array(
265
+			"post_title" => $request_info['post_title'],
266
+			"post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
267
+			"post_status" => $post_status,
268
+			"post_location_id" => $post_location_id,
269
+			"claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
270
+			"businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
271
+			"submit_time" => time(),
272
+			"submit_ip" => $_SERVER['REMOTE_ADDR'],
273
+		);
274 274
 
275
-        $payment_info = array();
276
-        $package_info = array();
275
+		$payment_info = array();
276
+		$package_info = array();
277 277
 
278
-        $package_info = (array)geodir_post_package_info($package_info, $post);
278
+		$package_info = (array)geodir_post_package_info($package_info, $post);
279 279
 
280
-        $post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
280
+		$post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
281 281
 
282
-        if (!empty($package_info) && !$post_package_id) {
283
-            if (isset($package_info['days']) && $package_info['days'] != 0) {
284
-                $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
285
-            } else {
286
-                $payment_info['expire_date'] = 'Never';
287
-            }
282
+		if (!empty($package_info) && !$post_package_id) {
283
+			if (isset($package_info['days']) && $package_info['days'] != 0) {
284
+				$payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
285
+			} else {
286
+				$payment_info['expire_date'] = 'Never';
287
+			}
288 288
 
289
-            $payment_info['package_id'] = $package_info['pid'];
290
-            $payment_info['alive_days'] = $package_info['days'];
291
-            $payment_info['is_featured'] = $package_info['is_featured'];
289
+			$payment_info['package_id'] = $package_info['pid'];
290
+			$payment_info['alive_days'] = $package_info['days'];
291
+			$payment_info['is_featured'] = $package_info['is_featured'];
292 292
 
293
-            $gd_post_info = array_merge($gd_post_info, $payment_info);
294
-        }
293
+			$gd_post_info = array_merge($gd_post_info, $payment_info);
294
+		}
295 295
 
296
-        $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
296
+		$custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
297 297
 
298
-        foreach ($custom_metaboxes as $key => $val):
298
+		foreach ($custom_metaboxes as $key => $val):
299 299
 
300
-            $name = $val['name'];
301
-            $type = $val['type'];
302
-            $extrafields = $val['extra_fields'];
300
+			$name = $val['name'];
301
+			$type = $val['type'];
302
+			$extrafields = $val['extra_fields'];
303 303
 
304
-            if (trim($type) == 'address') {
305
-                $prefix = $name . '_';
306
-                $address = $prefix . 'address';
304
+			if (trim($type) == 'address') {
305
+				$prefix = $name . '_';
306
+				$address = $prefix . 'address';
307 307
 
308
-                if (isset($request_info[$address]) && $request_info[$address] != '') {
309
-                    $gd_post_info[$address] = wp_slash($request_info[$address]);
310
-                }
308
+				if (isset($request_info[$address]) && $request_info[$address] != '') {
309
+					$gd_post_info[$address] = wp_slash($request_info[$address]);
310
+				}
311 311
 
312
-                if ($extrafields != '') {
313
-                    $extrafields = unserialize($extrafields);
312
+				if ($extrafields != '') {
313
+					$extrafields = unserialize($extrafields);
314 314
 
315 315
 
316
-                    if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
316
+					if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
317 317
 
318
-                        $location_result = geodir_get_default_location();
318
+						$location_result = geodir_get_default_location();
319 319
 
320
-                        $gd_post_info[$prefix . 'city'] = $location_result->city;
321
-                        $gd_post_info[$prefix . 'region'] = $location_result->region;
322
-                        $gd_post_info[$prefix . 'country'] = $location_result->country;
320
+						$gd_post_info[$prefix . 'city'] = $location_result->city;
321
+						$gd_post_info[$prefix . 'region'] = $location_result->region;
322
+						$gd_post_info[$prefix . 'country'] = $location_result->country;
323 323
 
324
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
324
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
325 325
 
326
-                    } else {
326
+					} else {
327 327
 
328
-                        $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
329
-                        $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
330
-                        $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
328
+						$gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
329
+						$gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
330
+						$gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
331 331
 
332
-                        //----------set post locations when import dummy data-------
333
-                        $location_result = geodir_get_default_location();
332
+						//----------set post locations when import dummy data-------
333
+						$location_result = geodir_get_default_location();
334 334
 
335
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
336
-                        //-----------------------------------------------------------------
335
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
336
+						//-----------------------------------------------------------------
337 337
 
338
-                    }
338
+					}
339 339
 
340 340
 
341
-                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
342
-                        $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
343
-                    }
341
+					if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
342
+						$gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
343
+					}
344 344
 
345 345
 
346
-                    if (isset($extrafields['show_map']) && $extrafields['show_map']) {
346
+					if (isset($extrafields['show_map']) && $extrafields['show_map']) {
347 347
 
348
-                        if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
349
-                            $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
350
-                        }
348
+						if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
349
+							$gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
350
+						}
351 351
 
352
-                        if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
353
-                            $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
354
-                        }
352
+						if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
353
+							$gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
354
+						}
355 355
 
356
-                        if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
357
-                            $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
358
-                        }
356
+						if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
357
+							$gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
358
+						}
359 359
 
360
-                        if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
361
-                            $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
362
-                        }
360
+						if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
361
+							$gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
362
+						}
363 363
 
364
-                    }
364
+					}
365 365
 
366
-                    // show lat lng
367
-                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
368
-                        $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
369
-                    }
370
-                }
366
+					// show lat lng
367
+					if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
368
+						$gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
369
+					}
370
+				}
371 371
 
372
-            } elseif (trim($type) == 'file') {
373
-                if (isset($request_info[$name])) {
374
-                    $request_files = array();
375
-                    if ($request_info[$name] != '')
376
-                        $request_files = explode(",", $request_info[$name]);
372
+			} elseif (trim($type) == 'file') {
373
+				if (isset($request_info[$name])) {
374
+					$request_files = array();
375
+					if ($request_info[$name] != '')
376
+						$request_files = explode(",", $request_info[$name]);
377 377
 
378
-                    $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
379
-                    geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
378
+					$extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
379
+					geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
380 380
 
381
-                }
382
-            } elseif (trim($type) == 'datepicker') {
383
-                $datetime = '';
384
-                if (isset($request_info[$name]) && $request_info[$name] != '') {
385
-                    $date_format = geodir_default_date_format();
386
-                    if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
387
-                        $extra_fields = unserialize($val['extra_fields']);
388
-                        $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
389
-                    }
381
+				}
382
+			} elseif (trim($type) == 'datepicker') {
383
+				$datetime = '';
384
+				if (isset($request_info[$name]) && $request_info[$name] != '') {
385
+					$date_format = geodir_default_date_format();
386
+					if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
387
+						$extra_fields = unserialize($val['extra_fields']);
388
+						$date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
389
+					}
390 390
 
391
-                    // check if we need to change the format or not
392
-                    $date_format_len = strlen(str_replace(' ', '', $date_format));
393
-                    if($date_format_len>5){// if greater then 5 then it's the old style format.
391
+					// check if we need to change the format or not
392
+					$date_format_len = strlen(str_replace(' ', '', $date_format));
393
+					if($date_format_len>5){// if greater then 5 then it's the old style format.
394 394
 
395
-                        $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
396
-                        $replace = array('d','j','l','m','n','F','Y');//PHP date format
395
+						$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
396
+						$replace = array('d','j','l','m','n','F','Y');//PHP date format
397 397
 
398
-                        $date_format = str_replace($search, $replace, $date_format);
398
+						$date_format = str_replace($search, $replace, $date_format);
399 399
 
400
-                        $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
400
+						$post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
401 401
 
402
-                    }else{
403
-                        $post_htmlvar_value = $request_info[$name];
404
-                    }
402
+					}else{
403
+						$post_htmlvar_value = $request_info[$name];
404
+					}
405 405
 
406
-                    $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
407
-                    $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
406
+					$post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
407
+					$datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
408 408
 
409
-                    //$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
409
+					//$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
410 410
 
411
-                }
412
-                $gd_post_info[$name] = $datetime;
413
-            } else if ($type == 'multiselect') {
414
-                if (isset($request_info[$name])) {
415
-                    $gd_post_info[$name] = $request_info[$name];
416
-                } else {
417
-                    if (isset($request_info['gd_field_' . $name])) {
418
-                        $gd_post_info[$name] = ''; /* fix de-select for multiselect */
419
-                    }
420
-                }
421
-            } else if (isset($request_info[$name])) {
422
-                $gd_post_info[$name] = $request_info[$name];
423
-            }
411
+				}
412
+				$gd_post_info[$name] = $datetime;
413
+			} else if ($type == 'multiselect') {
414
+				if (isset($request_info[$name])) {
415
+					$gd_post_info[$name] = $request_info[$name];
416
+				} else {
417
+					if (isset($request_info['gd_field_' . $name])) {
418
+						$gd_post_info[$name] = ''; /* fix de-select for multiselect */
419
+					}
420
+				}
421
+			} else if (isset($request_info[$name])) {
422
+				$gd_post_info[$name] = $request_info[$name];
423
+			}
424 424
 
425
-        endforeach;
425
+		endforeach;
426 426
 
427
-        if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
428
-            $gd_post_info['post_dummy'] = $request_info['post_dummy'];
429
-        }
427
+		if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
428
+			$gd_post_info['post_dummy'] = $request_info['post_dummy'];
429
+		}
430 430
 
431
-        // Save post detail info in detail table
432
-        if (!empty($gd_post_info)) {
433
-            geodir_save_post_info($last_post_id, $gd_post_info);
434
-        }
431
+		// Save post detail info in detail table
432
+		if (!empty($gd_post_info)) {
433
+			geodir_save_post_info($last_post_id, $gd_post_info);
434
+		}
435 435
 
436 436
 
437
-        // Set categories to the listing
438
-        if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
439
-            $post_category = array();
437
+		// Set categories to the listing
438
+		if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
439
+			$post_category = array();
440 440
 
441
-            foreach ($request_info['post_category'] as $taxonomy => $cat) {
441
+			foreach ($request_info['post_category'] as $taxonomy => $cat) {
442 442
 
443
-                if ($dummy)
444
-                    $post_category = $cat;
445
-                else {
443
+				if ($dummy)
444
+					$post_category = $cat;
445
+				else {
446 446
 
447
-                    if (!is_array($cat) && strstr($cat, ','))
448
-                        $cat = explode(',', $cat);
447
+					if (!is_array($cat) && strstr($cat, ','))
448
+						$cat = explode(',', $cat);
449 449
 
450
-                    if (!empty($cat) && is_array($cat))
451
-                        $post_category = array_map('intval', $cat);
452
-                }
450
+					if (!empty($cat) && is_array($cat))
451
+						$post_category = array_map('intval', $cat);
452
+				}
453 453
 
454
-                wp_set_object_terms($last_post_id, $post_category, $taxonomy);
455
-            }
454
+				wp_set_object_terms($last_post_id, $post_category, $taxonomy);
455
+			}
456 456
 
457
-            $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
457
+			$post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
458 458
 
459
-            $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
460
-            geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
459
+			$post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
460
+			geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
461 461
 
462
-        }
462
+		}
463 463
 
464
-        $post_tags = '';
465
-        // Set tags to the listing
466
-        if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
467
-            $post_tags = explode(",", $request_info['post_tags']);
468
-        } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
469
-            if ($dummy)
470
-                $post_tags = $request_info['post_tags'];
471
-        } else {
472
-            if ($dummy)
473
-                $post_tags = array($request_info['post_title']);
474
-        }
464
+		$post_tags = '';
465
+		// Set tags to the listing
466
+		if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
467
+			$post_tags = explode(",", $request_info['post_tags']);
468
+		} elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
469
+			if ($dummy)
470
+				$post_tags = $request_info['post_tags'];
471
+		} else {
472
+			if ($dummy)
473
+				$post_tags = array($request_info['post_title']);
474
+		}
475 475
 
476
-        if (is_array($post_tags)) {
477
-            $taxonomy = $request_info['listing_type'] . '_tags';
478
-            wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
479
-        }
476
+		if (is_array($post_tags)) {
477
+			$taxonomy = $request_info['listing_type'] . '_tags';
478
+			wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
479
+		}
480 480
 
481 481
 
482
-        // Insert attechment
482
+		// Insert attechment
483 483
 
484
-        if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
485
-            if (!$dummy) {
486
-                $tmpimgArr = trim($request_info['post_images'], ",");
487
-                $tmpimgArr = explode(",", $tmpimgArr);
488
-                geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
489
-            } else{
490
-                geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
491
-            }
484
+		if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
485
+			if (!$dummy) {
486
+				$tmpimgArr = trim($request_info['post_images'], ",");
487
+				$tmpimgArr = explode(",", $tmpimgArr);
488
+				geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
489
+			} else{
490
+				geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
491
+			}
492 492
 
493 493
 
494
-        } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
494
+		} elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
495 495
 
496
-            /* Delete Attachments
496
+			/* Delete Attachments
497 497
 			$postcurr_images = geodir_get_images($last_post_id);
498 498
 
499 499
 			$wpdb->query(
@@ -509,34 +509,34 @@  discard block
 block discarded – undo
509 509
 			geodir_save_post_info($last_post_id, $gd_post_featured_img);
510 510
 			*/
511 511
 
512
-        }
512
+		}
513 513
 
514
-        geodir_remove_temp_images();
515
-        geodir_set_wp_featured_image($last_post_id);
514
+		geodir_remove_temp_images();
515
+		geodir_set_wp_featured_image($last_post_id);
516 516
 
517
-        /**
518
-         * Called after a listing is saved to the database and before any email have been sent.
519
-         *
520
-         * @since 1.0.0
521
-         * @param int $last_post_id The saved post ID.
522
-         * @param array $request_info The post details in an array.
523
-         * @see 'geodir_after_save_listinginfo'
524
-         */
525
-        do_action('geodir_after_save_listing', $last_post_id, $request_info);
517
+		/**
518
+		 * Called after a listing is saved to the database and before any email have been sent.
519
+		 *
520
+		 * @since 1.0.0
521
+		 * @param int $last_post_id The saved post ID.
522
+		 * @param array $request_info The post details in an array.
523
+		 * @see 'geodir_after_save_listinginfo'
524
+		 */
525
+		do_action('geodir_after_save_listing', $last_post_id, $request_info);
526 526
 
527
-        //die;
527
+		//die;
528 528
 
529
-        if ($send_post_submit_mail) { // if new post send out email
530
-            $to_name = geodir_get_client_name($current_user->ID);
531
-            geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
532
-        }
533
-        /*
529
+		if ($send_post_submit_mail) { // if new post send out email
530
+			$to_name = geodir_get_client_name($current_user->ID);
531
+			geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
532
+		}
533
+		/*
534 534
          * Unset the session so we don't loop.
535 535
          */
536
-        $gd_session->un_set('listing');
537
-        return $last_post_id;
536
+		$gd_session->un_set('listing');
537
+		return $last_post_id;
538 538
 
539
-    }
539
+	}
540 540
 
541 541
 }
542 542
 
@@ -555,593 +555,593 @@  discard block
 block discarded – undo
555 555
 function geodir_get_post_info($post_id = '')
556 556
 {
557 557
 
558
-    global $wpdb, $plugin_prefix, $post, $post_info;
558
+	global $wpdb, $plugin_prefix, $post, $post_info;
559 559
 
560
-    if ($post_id == '' && !empty($post))
561
-        $post_id = $post->ID;
560
+	if ($post_id == '' && !empty($post))
561
+		$post_id = $post->ID;
562 562
 
563
-    $post_type = get_post_type($post_id);
563
+	$post_type = get_post_type($post_id);
564 564
 
565
-    $all_postypes = geodir_get_posttypes();
565
+	$all_postypes = geodir_get_posttypes();
566 566
 
567
-    if (!in_array($post_type, $all_postypes))
568
-        return false;
567
+	if (!in_array($post_type, $all_postypes))
568
+		return false;
569 569
 
570
-    $table = $plugin_prefix . $post_type . '_detail';
570
+	$table = $plugin_prefix . $post_type . '_detail';
571 571
 
572
-    /**
573
-     * Apply Filter to change Post info
574
-     *
575
-     * You can use this filter to change Post info.
576
-     *
577
-     * @since 1.0.0
578
-     * @package GeoDirectory
579
-     */
580
-    $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
572
+	/**
573
+	 * Apply Filter to change Post info
574
+	 *
575
+	 * You can use this filter to change Post info.
576
+	 *
577
+	 * @since 1.0.0
578
+	 * @package GeoDirectory
579
+	 */
580
+	$query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
581 581
 			  WHERE p.ID = pd.post_id
582 582
 			  AND post_id = " . $post_id);
583 583
 
584
-    $post_detail = $wpdb->get_row($query);
584
+	$post_detail = $wpdb->get_row($query);
585 585
 
586
-    return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
586
+	return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
587 587
 
588 588
 }
589 589
 
590 590
 
591 591
 if (!function_exists('geodir_save_post_info')) {
592
-    /**
593
-     * Saves post detail info in detail table.
594
-     *
595
-     * @since 1.0.0
596
-     * @package GeoDirectory
597
-     * @global object $wpdb WordPress Database object.
598
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
599
-     * @param int $post_id The post ID.
600
-     * @param array $postinfo_array {
601
-     *    Post info that needs to be saved in detail table.
602
-     *
603
-     *    @type string $post_title              Listing title.
604
-     *    @type string $post_tags               Listing tags.
605
-     *    @type string $post_status             Listing post status.
606
-     *    @type string $post_location_id        Listing location ID.
607
-     *    @type string $claimed                 Todo Desc needed.
608
-     *    @type string $businesses              Todo Desc needed.
609
-     *    @type int    $submit_time             Submitted time in unix timestamp.
610
-     *    @type string $submit_ip               Submitted IP.
611
-     *    @type string $expire_date             Listing expiration date.
612
-     *    @type int    $package_id              Listing package ID.
613
-     *    @type int    $alive_days              Todo Desc needed.
614
-     *    @type int    $is_featured             Is this a featured listing?.
615
-     *    @type string $post_address            Listing address.
616
-     *    @type string $post_city               Listing city.
617
-     *    @type string $post_region             Listing region.
618
-     *    @type string $post_country            Listing country.
619
-     *    @type string $post_locations          Listing locations.
620
-     *    @type string $post_zip                Listing zip.
621
-     *    @type string $post_latitude           Listing latitude.
622
-     *    @type string $post_longitude          Listing longitude.
623
-     *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
624
-     *    @type string $post_mapzoom            Listing mapzoom Default "9".
625
-     *    @type string $geodir_timing           Business timing info.
626
-     *    @type string $geodir_contact          Contact number.
627
-     *    @type string $geodir_email            Business contact email.
628
-     *    @type string $geodir_website          Business website.
629
-     *    @type string $geodir_twitter          Twitter link.
630
-     *    @type string $geodir_facebook         Facebook link.
631
-     *    @type string $geodir_video            Video link.
632
-     *    @type string $geodir_special_offers   Speacial offers.
633
-     *
634
-     * }
635
-     * @return bool
636
-     */
637
-    function geodir_save_post_info($post_id, $postinfo_array = array())
638
-    {
639
-        global $wpdb, $plugin_prefix;
640
-
641
-        $post_type = get_post_type($post_id);
642
-
643
-        $table = $plugin_prefix . $post_type . '_detail';
644
-
645
-        /**
646
-         * Filter to change Post info
647
-         *
648
-         * You can use this filter to change Post info.
649
-         *
650
-         * @since 1.0.0
651
-         * @package GeoDirectory
652
-         * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
653
-         * @param int $post_id The post ID.
654
-         */
655
-        $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
592
+	/**
593
+	 * Saves post detail info in detail table.
594
+	 *
595
+	 * @since 1.0.0
596
+	 * @package GeoDirectory
597
+	 * @global object $wpdb WordPress Database object.
598
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
599
+	 * @param int $post_id The post ID.
600
+	 * @param array $postinfo_array {
601
+	 *    Post info that needs to be saved in detail table.
602
+	 *
603
+	 *    @type string $post_title              Listing title.
604
+	 *    @type string $post_tags               Listing tags.
605
+	 *    @type string $post_status             Listing post status.
606
+	 *    @type string $post_location_id        Listing location ID.
607
+	 *    @type string $claimed                 Todo Desc needed.
608
+	 *    @type string $businesses              Todo Desc needed.
609
+	 *    @type int    $submit_time             Submitted time in unix timestamp.
610
+	 *    @type string $submit_ip               Submitted IP.
611
+	 *    @type string $expire_date             Listing expiration date.
612
+	 *    @type int    $package_id              Listing package ID.
613
+	 *    @type int    $alive_days              Todo Desc needed.
614
+	 *    @type int    $is_featured             Is this a featured listing?.
615
+	 *    @type string $post_address            Listing address.
616
+	 *    @type string $post_city               Listing city.
617
+	 *    @type string $post_region             Listing region.
618
+	 *    @type string $post_country            Listing country.
619
+	 *    @type string $post_locations          Listing locations.
620
+	 *    @type string $post_zip                Listing zip.
621
+	 *    @type string $post_latitude           Listing latitude.
622
+	 *    @type string $post_longitude          Listing longitude.
623
+	 *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
624
+	 *    @type string $post_mapzoom            Listing mapzoom Default "9".
625
+	 *    @type string $geodir_timing           Business timing info.
626
+	 *    @type string $geodir_contact          Contact number.
627
+	 *    @type string $geodir_email            Business contact email.
628
+	 *    @type string $geodir_website          Business website.
629
+	 *    @type string $geodir_twitter          Twitter link.
630
+	 *    @type string $geodir_facebook         Facebook link.
631
+	 *    @type string $geodir_video            Video link.
632
+	 *    @type string $geodir_special_offers   Speacial offers.
633
+	 *
634
+	 * }
635
+	 * @return bool
636
+	 */
637
+	function geodir_save_post_info($post_id, $postinfo_array = array())
638
+	{
639
+		global $wpdb, $plugin_prefix;
640
+
641
+		$post_type = get_post_type($post_id);
642
+
643
+		$table = $plugin_prefix . $post_type . '_detail';
644
+
645
+		/**
646
+		 * Filter to change Post info
647
+		 *
648
+		 * You can use this filter to change Post info.
649
+		 *
650
+		 * @since 1.0.0
651
+		 * @package GeoDirectory
652
+		 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
653
+		 * @param int $post_id The post ID.
654
+		 */
655
+		$postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
656
+
657
+		if (!empty($postmeta) && $post_id) {
658
+			$post_meta_set_query = '';
659
+
660
+			foreach ($postmeta as $mkey => $mval) {
661
+				if (geodir_column_exist($table, $mkey)) {
662
+					if (is_array($mval)) {
663
+						$mval = implode(",", $mval);
664
+					}
665
+
666
+					$post_meta_set_query .= $mkey . " = '" . $mval . "', ";
667
+				}
668
+			}
656 669
 
657
-        if (!empty($postmeta) && $post_id) {
658
-            $post_meta_set_query = '';
670
+			$post_meta_set_query = trim($post_meta_set_query, ", ");
671
+            
672
+			if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
673
+				return false;
674
+			}
659 675
 
660
-            foreach ($postmeta as $mkey => $mval) {
661
-                if (geodir_column_exist($table, $mkey)) {
662
-                    if (is_array($mval)) {
663
-                        $mval = implode(",", $mval);
664
-                    }
676
+			$post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
665 677
 
666
-                    $post_meta_set_query .= $mkey . " = '" . $mval . "', ";
667
-                }
668
-            }
678
+			/**
679
+			 * Called before saving the listing info.
680
+			 *
681
+			 * @since 1.0.0
682
+			 * @package GeoDirectory
683
+			 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
684
+			 * @param int $post_id The post ID.
685
+			 */
686
+			do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
669 687
 
670
-            $post_meta_set_query = trim($post_meta_set_query, ", ");
671
-            
672
-            if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
673
-                return false;
674
-            }
688
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
675 689
 
676
-            $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
690
+				$wpdb->query(
691
+					$wpdb->prepare(
692
+						"UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d",
693
+						array($post_id)
694
+					)
695
+				);
677 696
 
678
-            /**
679
-             * Called before saving the listing info.
680
-             *
681
-             * @since 1.0.0
682
-             * @package GeoDirectory
683
-             * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
684
-             * @param int $post_id The post ID.
685
-             */
686
-            do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
687 697
 
688
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
698
+			} else {
689 699
 
690
-                $wpdb->query(
691
-                    $wpdb->prepare(
692
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d",
693
-                        array($post_id)
694
-                    )
695
-                );
700
+				$wpdb->query(
701
+					$wpdb->prepare(
702
+						"INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query,
703
+						array($post_id)
704
+					)
705
+				);
696 706
 
707
+			}
697 708
 
698
-            } else {
709
+			/**
710
+			 * Called after saving the listing info.
711
+			 *
712
+			 * @since 1.0.0
713
+			 * @package GeoDirectory
714
+			 * @param array $postinfo_array Post info that needs to be saved in detail table.
715
+			 * @param int $post_id The post ID.
716
+			 * @see 'geodir_after_save_listing'
717
+			 */
718
+			do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
719
+
720
+			return true;
721
+		} else
722
+			return false;
699 723
 
700
-                $wpdb->query(
701
-                    $wpdb->prepare(
702
-                        "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query,
703
-                        array($post_id)
704
-                    )
705
-                );
724
+	}
725
+}
706 726
 
707
-            }
708 727
 
709
-            /**
710
-             * Called after saving the listing info.
711
-             *
712
-             * @since 1.0.0
713
-             * @package GeoDirectory
714
-             * @param array $postinfo_array Post info that needs to be saved in detail table.
715
-             * @param int $post_id The post ID.
716
-             * @see 'geodir_after_save_listing'
717
-             */
718
-            do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
728
+if (!function_exists('geodir_save_post_meta')) {
729
+	/**
730
+	 * Save or update post custom fields.
731
+	 *
732
+	 * @since 1.0.0
733
+	 * @package GeoDirectory
734
+	 * @global object $wpdb WordPress Database object.
735
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
736
+	 * @param int $post_id The post ID.
737
+	 * @param string $postmeta Detail table column name.
738
+	 * @param string $meta_value Detail table column value.
739
+	 * @return void|bool
740
+	 */
741
+	function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
742
+	{
743
+
744
+		global $wpdb, $plugin_prefix;
745
+
746
+		$post_type = get_post_type($post_id);
747
+
748
+		$table = $plugin_prefix . $post_type . '_detail';
749
+
750
+		if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
751
+
752
+			if (is_array($meta_value)) {
753
+				$meta_value = implode(",", $meta_value);
754
+			}
719 755
 
720
-            return true;
721
-        } else
722
-            return false;
756
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
723 757
 
724
-    }
725
-}
758
+				$wpdb->query(
759
+					$wpdb->prepare(
760
+						"UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
761
+						array($post_id)
762
+					)
763
+				);
726 764
 
765
+			} else {
727 766
 
728
-if (!function_exists('geodir_save_post_meta')) {
729
-    /**
730
-     * Save or update post custom fields.
731
-     *
732
-     * @since 1.0.0
733
-     * @package GeoDirectory
734
-     * @global object $wpdb WordPress Database object.
735
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
736
-     * @param int $post_id The post ID.
737
-     * @param string $postmeta Detail table column name.
738
-     * @param string $meta_value Detail table column value.
739
-     * @return void|bool
740
-     */
741
-    function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
742
-    {
743
-
744
-        global $wpdb, $plugin_prefix;
745
-
746
-        $post_type = get_post_type($post_id);
747
-
748
-        $table = $plugin_prefix . $post_type . '_detail';
749
-
750
-        if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
751
-
752
-            if (is_array($meta_value)) {
753
-                $meta_value = implode(",", $meta_value);
754
-            }
755
-
756
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
757
-
758
-                $wpdb->query(
759
-                    $wpdb->prepare(
760
-                        "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
761
-                        array($post_id)
762
-                    )
763
-                );
764
-
765
-            } else {
766
-
767
-                $wpdb->query(
768
-                    $wpdb->prepare(
769
-                        "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
770
-                        array($post_id)
771
-                    )
772
-                );
773
-            }
774
-
775
-
776
-        } else
777
-            return false;
778
-    }
767
+				$wpdb->query(
768
+					$wpdb->prepare(
769
+						"INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
770
+						array($post_id)
771
+					)
772
+				);
773
+			}
774
+
775
+
776
+		} else
777
+			return false;
778
+	}
779 779
 }
780 780
 
781 781
 if (!function_exists('geodir_delete_post_meta')) {
782
-    /**
783
-     * Delete post custom fields.
784
-     *
785
-     * @since 1.0.0
786
-     * @package GeoDirectory
787
-     * @global object $wpdb WordPress Database object.
788
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
789
-     * @param int $post_id The post ID.
790
-     * @param string $postmeta Detail table column name.
791
-     * @todo check if this is depreciated
792
-     * @todo Fix unknown variable mval
793
-     * @return bool
794
-     */
795
-    function geodir_delete_post_meta($post_id, $postmeta)
796
-    {
797
-
798
-        global $wpdb, $plugin_prefix;
799
-
800
-        $post_type = get_post_type($post_id);
801
-
802
-        $table = $plugin_prefix . $post_type . '_detail';
803
-
804
-        if (is_array($postmeta) && !empty($postmeta) && $post_id) {
805
-            $post_meta_set_query = '';
806
-
807
-            foreach ($postmeta as $mkey) {
808
-                if ($mval != '')
809
-                    $post_meta_set_query .= $mkey . " = '', ";
810
-            }
811
-
812
-            $post_meta_set_query = trim($post_meta_set_query, ", ");
782
+	/**
783
+	 * Delete post custom fields.
784
+	 *
785
+	 * @since 1.0.0
786
+	 * @package GeoDirectory
787
+	 * @global object $wpdb WordPress Database object.
788
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
789
+	 * @param int $post_id The post ID.
790
+	 * @param string $postmeta Detail table column name.
791
+	 * @todo check if this is depreciated
792
+	 * @todo Fix unknown variable mval
793
+	 * @return bool
794
+	 */
795
+	function geodir_delete_post_meta($post_id, $postmeta)
796
+	{
797
+
798
+		global $wpdb, $plugin_prefix;
799
+
800
+		$post_type = get_post_type($post_id);
801
+
802
+		$table = $plugin_prefix . $post_type . '_detail';
803
+
804
+		if (is_array($postmeta) && !empty($postmeta) && $post_id) {
805
+			$post_meta_set_query = '';
806
+
807
+			foreach ($postmeta as $mkey) {
808
+				if ($mval != '')
809
+					$post_meta_set_query .= $mkey . " = '', ";
810
+			}
811
+
812
+			$post_meta_set_query = trim($post_meta_set_query, ", ");
813 813
             
814
-            if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
815
-                return false;
816
-            }
817
-
818
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
819
-
820
-                $wpdb->query(
821
-                    $wpdb->prepare(
822
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
823
-                        array($post_id)
824
-                    )
825
-                );
826
-
827
-                return true;
828
-            }
829
-
830
-        } elseif ($postmeta != '' && $post_id) {
831
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
832
-
833
-                $wpdb->query(
834
-                    $wpdb->prepare(
835
-                        "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
836
-                        array($post_id)
837
-                    )
838
-                );
839
-
840
-                return true;
841
-            }
842
-
843
-        } else
844
-            return false;
845
-    }
814
+			if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
815
+				return false;
816
+			}
817
+
818
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
819
+
820
+				$wpdb->query(
821
+					$wpdb->prepare(
822
+						"UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
823
+						array($post_id)
824
+					)
825
+				);
826
+
827
+				return true;
828
+			}
829
+
830
+		} elseif ($postmeta != '' && $post_id) {
831
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
832
+
833
+				$wpdb->query(
834
+					$wpdb->prepare(
835
+						"UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
836
+						array($post_id)
837
+					)
838
+				);
839
+
840
+				return true;
841
+			}
842
+
843
+		} else
844
+			return false;
845
+	}
846 846
 }
847 847
 
848 848
 
849 849
 if (!function_exists('geodir_get_post_meta')) {
850
-    /**
851
-     * Get post custom meta.
852
-     *
853
-     * @since 1.0.0
854
-     * @package GeoDirectory
855
-     * @global object $wpdb WordPress Database object.
856
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
857
-     * @param int $post_id The post ID.
858
-     * @param string $meta_key The meta key to retrieve.
859
-     * @param bool $single Optional. Whether to return a single value. Default false.
860
-     * @todo single variable not yet implemented.
861
-     * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
862
-     */
863
-    function geodir_get_post_meta($post_id, $meta_key, $single = false)
864
-    {
865
-        if (!$post_id) {
866
-            return false;
867
-        }
868
-        global $wpdb, $plugin_prefix;
869
-
870
-        $all_postypes = geodir_get_posttypes();
871
-
872
-        $post_type = get_post_type($post_id);
873
-
874
-        if (!in_array($post_type, $all_postypes))
875
-            return false;
876
-
877
-        $table = $plugin_prefix . $post_type . '_detail';
878
-
879
-        if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
880
-            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
850
+	/**
851
+	 * Get post custom meta.
852
+	 *
853
+	 * @since 1.0.0
854
+	 * @package GeoDirectory
855
+	 * @global object $wpdb WordPress Database object.
856
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
857
+	 * @param int $post_id The post ID.
858
+	 * @param string $meta_key The meta key to retrieve.
859
+	 * @param bool $single Optional. Whether to return a single value. Default false.
860
+	 * @todo single variable not yet implemented.
861
+	 * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
862
+	 */
863
+	function geodir_get_post_meta($post_id, $meta_key, $single = false)
864
+	{
865
+		if (!$post_id) {
866
+			return false;
867
+		}
868
+		global $wpdb, $plugin_prefix;
869
+
870
+		$all_postypes = geodir_get_posttypes();
871
+
872
+		$post_type = get_post_type($post_id);
873
+
874
+		if (!in_array($post_type, $all_postypes))
875
+			return false;
876
+
877
+		$table = $plugin_prefix . $post_type . '_detail';
878
+
879
+		if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
880
+			$meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
881 881
             
882
-            if ($meta_value && $meta_value !== '') {
883
-                return maybe_serialize($meta_value);
884
-            } else
885
-                return $meta_value;
886
-        } else {
887
-            return false;
888
-        }
889
-    }
882
+			if ($meta_value && $meta_value !== '') {
883
+				return maybe_serialize($meta_value);
884
+			} else
885
+				return $meta_value;
886
+		} else {
887
+			return false;
888
+		}
889
+	}
890 890
 }
891 891
 
892 892
 
893 893
 if (!function_exists('geodir_save_post_images')) {
894
-    /**
895
-     * Save post attachments.
896
-     *
897
-     * @since 1.0.0
898
-     * @package GeoDirectory
899
-     * @global object $wpdb WordPress Database object.
900
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
901
-     * @global object $current_user Current user object.
902
-     * @param int $post_id The post ID.
903
-     * @param array $post_image Post image urls as an array.
904
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
905
-     */
906
-    function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
907
-    {
908
-
894
+	/**
895
+	 * Save post attachments.
896
+	 *
897
+	 * @since 1.0.0
898
+	 * @package GeoDirectory
899
+	 * @global object $wpdb WordPress Database object.
900
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
901
+	 * @global object $current_user Current user object.
902
+	 * @param int $post_id The post ID.
903
+	 * @param array $post_image Post image urls as an array.
904
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
905
+	 */
906
+	function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
907
+	{
909 908
 
910
-        global $wpdb, $plugin_prefix, $current_user;
911 909
 
912
-        $post_type = get_post_type($post_id);
910
+		global $wpdb, $plugin_prefix, $current_user;
913 911
 
914
-        $table = $plugin_prefix . $post_type . '_detail';
912
+		$post_type = get_post_type($post_id);
915 913
 
916
-        $post_images = geodir_get_images($post_id);
914
+		$table = $plugin_prefix . $post_type . '_detail';
917 915
 
918
-        $wpdb->query(
919
-            $wpdb->prepare(
920
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
921
-                array($post_id)
922
-            )
923
-        );
916
+		$post_images = geodir_get_images($post_id);
924 917
 
925
-        $invalid_files = $post_images;
926
-        $valid_file_ids = array();
927
-        $valid_files_condition = '';
928
-        $geodir_uploaddir = '';
918
+		$wpdb->query(
919
+			$wpdb->prepare(
920
+				"UPDATE " . $table . " SET featured_image = '' where post_id =%d",
921
+				array($post_id)
922
+			)
923
+		);
929 924
 
930
-        $remove_files = array();
925
+		$invalid_files = $post_images;
926
+		$valid_file_ids = array();
927
+		$valid_files_condition = '';
928
+		$geodir_uploaddir = '';
931 929
 
932
-        if (!empty($post_image)) {
930
+		$remove_files = array();
933 931
 
934
-            $uploads = wp_upload_dir();
935
-            $uploads_dir = $uploads['path'];
932
+		if (!empty($post_image)) {
936 933
 
937
-            $geodir_uploadpath = $uploads['path'];
938
-            $geodir_uploadurl = $uploads['url'];
939
-            $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
934
+			$uploads = wp_upload_dir();
935
+			$uploads_dir = $uploads['path'];
940 936
 
941
-            $invalid_files = array();
942
-            $postcurr_images = array();
937
+			$geodir_uploadpath = $uploads['path'];
938
+			$geodir_uploadurl = $uploads['url'];
939
+			$sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
943 940
 
944
-            for ($m = 0; $m < count($post_image); $m++) {
945
-                $menu_order = $m + 1;
941
+			$invalid_files = array();
942
+			$postcurr_images = array();
946 943
 
947
-                $file_path = '';
948
-                /* --------- start ------- */
944
+			for ($m = 0; $m < count($post_image); $m++) {
945
+				$menu_order = $m + 1;
949 946
 
950
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
947
+				$file_path = '';
948
+				/* --------- start ------- */
951 949
 
952
-                $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
950
+				$split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
953 951
 
952
+				$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
954 953
 
955
-                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
956 954
 
957
-                    /* --------- end ------- */
958
-                    $curr_img_url = $post_image[$m];
955
+				if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
959 956
 
960
-                    $image_name_arr = explode('/', $curr_img_url);
957
+					/* --------- end ------- */
958
+					$curr_img_url = $post_image[$m];
961 959
 
962
-                    $count_image_name_arr = count($image_name_arr) - 2;
960
+					$image_name_arr = explode('/', $curr_img_url);
963 961
 
964
-                    $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
962
+					$count_image_name_arr = count($image_name_arr) - 2;
965 963
 
966
-                    $curr_img_dir = $image_name_arr[$count_image_name_arr];
964
+					$count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
967 965
 
968
-                    $filename = end($image_name_arr);
969
-                    if (strpos($filename, '?') !== false) {
970
-                        list($filename) = explode('?', $filename);
971
-                    }
966
+					$curr_img_dir = $image_name_arr[$count_image_name_arr];
972 967
 
973
-                    $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
974
-                    $curr_img_dir = str_replace($filename, "", $curr_img_dir);
968
+					$filename = end($image_name_arr);
969
+					if (strpos($filename, '?') !== false) {
970
+						list($filename) = explode('?', $filename);
971
+					}
975 972
 
976
-                    $img_name_arr = explode('.', $filename);
973
+					$curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
974
+					$curr_img_dir = str_replace($filename, "", $curr_img_dir);
977 975
 
978
-                    $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
979
-                    if (!empty($img_name_arr) && count($img_name_arr) > 2) {
980
-                        $new_img_name_arr = $img_name_arr;
981
-                        if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
982
-                            unset($new_img_name_arr[count($img_name_arr) - 1]);
983
-                            $file_title = implode('.', $new_img_name_arr);
984
-                        }
985
-                    }
986
-                    $file_title = sanitize_file_name($file_title);
987
-                    $file_name = sanitize_file_name($filename);
976
+					$img_name_arr = explode('.', $filename);
988 977
 
989
-                    $arr_file_type = wp_check_filetype($filename);
978
+					$file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
979
+					if (!empty($img_name_arr) && count($img_name_arr) > 2) {
980
+						$new_img_name_arr = $img_name_arr;
981
+						if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
982
+							unset($new_img_name_arr[count($img_name_arr) - 1]);
983
+							$file_title = implode('.', $new_img_name_arr);
984
+						}
985
+					}
986
+					$file_title = sanitize_file_name($file_title);
987
+					$file_name = sanitize_file_name($filename);
990 988
 
991
-                    $uploaded_file_type = $arr_file_type['type'];
989
+					$arr_file_type = wp_check_filetype($filename);
992 990
 
993
-                    // Set an array containing a list of acceptable formats
994
-                    $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
991
+					$uploaded_file_type = $arr_file_type['type'];
995 992
 
996
-                    // If the uploaded file is the right format
997
-                    if (in_array($uploaded_file_type, $allowed_file_types)) {
998
-                        if (!function_exists('wp_handle_upload')) {
999
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1000
-                        }
993
+					// Set an array containing a list of acceptable formats
994
+					$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
1001 995
 
1002
-                        if (!is_dir($geodir_uploadpath)) {
1003
-                            mkdir($geodir_uploadpath);
1004
-                        }
996
+					// If the uploaded file is the right format
997
+					if (in_array($uploaded_file_type, $allowed_file_types)) {
998
+						if (!function_exists('wp_handle_upload')) {
999
+							require_once(ABSPATH . 'wp-admin/includes/file.php');
1000
+						}
1005 1001
 
1006
-                        $external_img = false;
1007
-                        if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
1008
-                        } else {
1009
-                            $external_img = true;
1010
-                        }
1002
+						if (!is_dir($geodir_uploadpath)) {
1003
+							mkdir($geodir_uploadpath);
1004
+						}
1011 1005
 
1012
-                        if ($dummy || $external_img) {
1013
-                            $uploaded_file = array();
1014
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1006
+						$external_img = false;
1007
+						if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
1008
+						} else {
1009
+							$external_img = true;
1010
+						}
1015 1011
 
1016
-                            if (isset($uploaded['error']) && empty($uploaded['error'])) {
1017
-                                $new_name = basename($uploaded['file']);
1018
-                                $uploaded_file = $uploaded;
1019
-                            }else{
1020
-                                print_r($uploaded);exit;
1021
-                            }
1022
-                            $external_img = false;
1023
-                        } else {
1024
-                            $new_name = $post_id . '_' . $file_name;
1012
+						if ($dummy || $external_img) {
1013
+							$uploaded_file = array();
1014
+							$uploaded = (array)fetch_remote_file($curr_img_url);
1025 1015
 
1026
-                            if ($curr_img_dir == $sub_dir) {
1027
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1028
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1029
-                            } else {
1030
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1031
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1032
-                            }
1016
+							if (isset($uploaded['error']) && empty($uploaded['error'])) {
1017
+								$new_name = basename($uploaded['file']);
1018
+								$uploaded_file = $uploaded;
1019
+							}else{
1020
+								print_r($uploaded);exit;
1021
+							}
1022
+							$external_img = false;
1023
+						} else {
1024
+							$new_name = $post_id . '_' . $file_name;
1033 1025
 
1034
-                            $uploaded_file = '';
1026
+							if ($curr_img_dir == $sub_dir) {
1027
+								$img_path = $geodir_uploadpath . '/' . $filename;
1028
+								$img_url = $geodir_uploadurl . '/' . $filename;
1029
+							} else {
1030
+								$img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1031
+								$img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1032
+							}
1035 1033
 
1036
-                            if (file_exists($img_path)) {
1037
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1038
-                                $file_path = '';
1039
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1040
-                                $uploaded_file = true;
1041
-                                $file_path = $curr_img_dir . '/' . $filename;
1042
-                            }
1034
+							$uploaded_file = '';
1043 1035
 
1044
-                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1045
-                                unlink($img_path);
1046
-                        }
1036
+							if (file_exists($img_path)) {
1037
+								$uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1038
+								$file_path = '';
1039
+							} else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1040
+								$uploaded_file = true;
1041
+								$file_path = $curr_img_dir . '/' . $filename;
1042
+							}
1047 1043
 
1048
-                        if (!empty($uploaded_file)) {
1049
-                            if (!isset($file_path) || !$file_path) {
1050
-                                $file_path = $sub_dir . '/' . $new_name;
1051
-                            }
1044
+							if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1045
+								unlink($img_path);
1046
+						}
1052 1047
 
1053
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1048
+						if (!empty($uploaded_file)) {
1049
+							if (!isset($file_path) || !$file_path) {
1050
+								$file_path = $sub_dir . '/' . $new_name;
1051
+							}
1054 1052
 
1055
-                            if ($menu_order == 1) {
1053
+							$postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1056 1054
 
1057
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1055
+							if ($menu_order == 1) {
1058 1056
 
1059
-                            }
1057
+								$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1060 1058
 
1061
-                            // Set up options array to add this file as an attachment
1062
-                            $attachment = array();
1063
-                            $attachment['post_id'] = $post_id;
1064
-                            $attachment['title'] = $file_title;
1065
-                            $attachment['content'] = '';
1066
-                            $attachment['file'] = $file_path;
1067
-                            $attachment['mime_type'] = $uploaded_file_type;
1068
-                            $attachment['menu_order'] = $menu_order;
1069
-                            $attachment['is_featured'] = 0;
1059
+							}
1070 1060
 
1071
-                            $attachment_set = '';
1061
+							// Set up options array to add this file as an attachment
1062
+							$attachment = array();
1063
+							$attachment['post_id'] = $post_id;
1064
+							$attachment['title'] = $file_title;
1065
+							$attachment['content'] = '';
1066
+							$attachment['file'] = $file_path;
1067
+							$attachment['mime_type'] = $uploaded_file_type;
1068
+							$attachment['menu_order'] = $menu_order;
1069
+							$attachment['is_featured'] = 0;
1072 1070
 
1073
-                            foreach ($attachment as $key => $val) {
1074
-                                if ($val != '')
1075
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1076
-                            }
1071
+							$attachment_set = '';
1077 1072
 
1078
-                            $attachment_set = trim($attachment_set, ", ");
1073
+							foreach ($attachment as $key => $val) {
1074
+								if ($val != '')
1075
+									$attachment_set .= $key . " = '" . $val . "', ";
1076
+							}
1079 1077
 
1080
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1078
+							$attachment_set = trim($attachment_set, ", ");
1079
+
1080
+							$wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1081 1081
 
1082
-                            $valid_file_ids[] = $wpdb->insert_id;
1083
-                        }
1082
+							$valid_file_ids[] = $wpdb->insert_id;
1083
+						}
1084 1084
 
1085
-                    }
1085
+					}
1086 1086
 
1087 1087
 
1088
-                } else {
1089
-                    $valid_file_ids[] = $find_image;
1088
+				} else {
1089
+					$valid_file_ids[] = $find_image;
1090 1090
 
1091
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1091
+					$postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1092 1092
 
1093
-                    $wpdb->query(
1094
-                        $wpdb->prepare(
1095
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1096
-                            array($menu_order, $split_img_path[1], $post_id)
1097
-                        )
1098
-                    );
1093
+					$wpdb->query(
1094
+						$wpdb->prepare(
1095
+							"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1096
+							array($menu_order, $split_img_path[1], $post_id)
1097
+						)
1098
+					);
1099 1099
 
1100
-                    if ($menu_order == 1)
1101
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1100
+					if ($menu_order == 1)
1101
+						$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1102 1102
 
1103
-                }
1103
+				}
1104 1104
 
1105 1105
 
1106
-            }
1106
+			}
1107 1107
 
1108
-            if (!empty($valid_file_ids)) {
1108
+			if (!empty($valid_file_ids)) {
1109 1109
 
1110
-                $remove_files = $valid_file_ids;
1110
+				$remove_files = $valid_file_ids;
1111 1111
 
1112
-                $remove_files_length = count($remove_files);
1113
-                $remove_files_format = array_fill(0, $remove_files_length, '%d');
1114
-                $format = implode(',', $remove_files_format);
1115
-                $valid_files_condition = " ID NOT IN ($format) AND ";
1112
+				$remove_files_length = count($remove_files);
1113
+				$remove_files_format = array_fill(0, $remove_files_length, '%d');
1114
+				$format = implode(',', $remove_files_format);
1115
+				$valid_files_condition = " ID NOT IN ($format) AND ";
1116 1116
 
1117
-            }
1117
+			}
1118 1118
 
1119
-            //Get and remove all old images of post from database to set by new order
1119
+			//Get and remove all old images of post from database to set by new order
1120 1120
 
1121
-            if (!empty($post_images)) {
1121
+			if (!empty($post_images)) {
1122 1122
 
1123
-                foreach ($post_images as $img) {
1123
+				foreach ($post_images as $img) {
1124 1124
 
1125
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1125
+					if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1126 1126
 
1127
-                        $invalid_files[] = (object)array('src' => $img->src);
1127
+						$invalid_files[] = (object)array('src' => $img->src);
1128 1128
 
1129
-                    }
1129
+					}
1130 1130
 
1131
-                }
1131
+				}
1132 1132
 
1133
-            }
1133
+			}
1134 1134
 
1135
-            $invalid_files = (object)$invalid_files;
1136
-        }
1135
+			$invalid_files = (object)$invalid_files;
1136
+		}
1137 1137
 
1138
-        $remove_files[] = $post_id;
1138
+		$remove_files[] = $post_id;
1139 1139
 
1140
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1140
+		$wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1141 1141
 
1142
-        if (!empty($invalid_files))
1143
-            geodir_remove_attachments($invalid_files);
1144
-    }
1142
+		if (!empty($invalid_files))
1143
+			geodir_remove_attachments($invalid_files);
1144
+	}
1145 1145
 
1146 1146
 }
1147 1147
 
@@ -1155,12 +1155,12 @@  discard block
 block discarded – undo
1155 1155
 function geodir_remove_temp_images()
1156 1156
 {
1157 1157
 
1158
-    global $current_user;
1158
+	global $current_user;
1159 1159
 
1160
-    $uploads = wp_upload_dir();
1161
-    $uploads_dir = $uploads['path'];
1160
+	$uploads = wp_upload_dir();
1161
+	$uploads_dir = $uploads['path'];
1162 1162
 
1163
-    /*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1163
+	/*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1164 1164
 
1165 1165
 			$dirPath = $uploads_dir.'/temp_'.$current_user->data->ID;
1166 1166
 			if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
@@ -1177,8 +1177,8 @@  discard block
 block discarded – undo
1177 1177
 			rmdir($dirPath);
1178 1178
 	}	*/
1179 1179
 
1180
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1181
-    geodir_delete_directory($dirname);
1180
+	$dirname = $uploads_dir . '/temp_' . $current_user->ID;
1181
+	geodir_delete_directory($dirname);
1182 1182
 }
1183 1183
 
1184 1184
 
@@ -1192,116 +1192,116 @@  discard block
 block discarded – undo
1192 1192
  */
1193 1193
 function geodir_delete_directory($dirname)
1194 1194
 {
1195
-    $dir_handle = '';
1196
-    if (is_dir($dirname))
1197
-        $dir_handle = opendir($dirname);
1198
-    if (!$dir_handle)
1199
-        return false;
1200
-    while ($file = readdir($dir_handle)) {
1201
-        if ($file != "." && $file != "..") {
1202
-            if (!is_dir($dirname . "/" . $file))
1203
-                unlink($dirname . "/" . $file);
1204
-            else
1205
-                geodir_delete_directory($dirname . '/' . $file);
1206
-        }
1207
-    }
1208
-    closedir($dir_handle);
1209
-    rmdir($dirname);
1210
-    return true;
1195
+	$dir_handle = '';
1196
+	if (is_dir($dirname))
1197
+		$dir_handle = opendir($dirname);
1198
+	if (!$dir_handle)
1199
+		return false;
1200
+	while ($file = readdir($dir_handle)) {
1201
+		if ($file != "." && $file != "..") {
1202
+			if (!is_dir($dirname . "/" . $file))
1203
+				unlink($dirname . "/" . $file);
1204
+			else
1205
+				geodir_delete_directory($dirname . '/' . $file);
1206
+		}
1207
+	}
1208
+	closedir($dir_handle);
1209
+	rmdir($dirname);
1210
+	return true;
1211 1211
 
1212 1212
 }
1213 1213
 
1214 1214
 
1215 1215
 if (!function_exists('geodir_remove_attachments')) {
1216
-    /**
1217
-     * Remove post attachments.
1218
-     *
1219
-     * @since 1.0.0
1220
-     * @package GeoDirectory
1221
-     * @param array $postcurr_images Array of image objects.
1222
-     */
1223
-    function geodir_remove_attachments($postcurr_images = array())
1224
-    {
1225
-        // Unlink all past images of post
1226
-        if (!empty($postcurr_images)) {
1227
-
1228
-            $uploads = wp_upload_dir();
1229
-            $uploads_dir = $uploads['path'];
1230
-
1231
-            foreach ($postcurr_images as $postimg) {
1232
-                $image_name_arr = explode('/', $postimg->src);
1233
-                $filename = end($image_name_arr);
1234
-                if (file_exists($uploads_dir . '/' . $filename))
1235
-                    unlink($uploads_dir . '/' . $filename);
1236
-            }
1237
-
1238
-        } // endif
1239
-        // Unlink all past images of post end
1240
-    }
1216
+	/**
1217
+	 * Remove post attachments.
1218
+	 *
1219
+	 * @since 1.0.0
1220
+	 * @package GeoDirectory
1221
+	 * @param array $postcurr_images Array of image objects.
1222
+	 */
1223
+	function geodir_remove_attachments($postcurr_images = array())
1224
+	{
1225
+		// Unlink all past images of post
1226
+		if (!empty($postcurr_images)) {
1227
+
1228
+			$uploads = wp_upload_dir();
1229
+			$uploads_dir = $uploads['path'];
1230
+
1231
+			foreach ($postcurr_images as $postimg) {
1232
+				$image_name_arr = explode('/', $postimg->src);
1233
+				$filename = end($image_name_arr);
1234
+				if (file_exists($uploads_dir . '/' . $filename))
1235
+					unlink($uploads_dir . '/' . $filename);
1236
+			}
1237
+
1238
+		} // endif
1239
+		// Unlink all past images of post end
1240
+	}
1241 1241
 }
1242 1242
 
1243 1243
 if (!function_exists('geodir_get_featured_image')) {
1244
-    /**
1245
-     * Gets the post featured image.
1246
-     *
1247
-     * @since 1.0.0
1248
-     * @package GeoDirectory
1249
-     * @global object $wpdb WordPress Database object.
1250
-     * @global object $post The current post object.
1251
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1252
-     * @param int|string $post_id The post ID.
1253
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1254
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1255
-     * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1256
-     * @return bool|object Image details as an object.
1257
-     */
1258
-    function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1259
-    {
1260
-
1261
-        /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1244
+	/**
1245
+	 * Gets the post featured image.
1246
+	 *
1247
+	 * @since 1.0.0
1248
+	 * @package GeoDirectory
1249
+	 * @global object $wpdb WordPress Database object.
1250
+	 * @global object $post The current post object.
1251
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1252
+	 * @param int|string $post_id The post ID.
1253
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1254
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1255
+	 * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1256
+	 * @return bool|object Image details as an object.
1257
+	 */
1258
+	function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1259
+	{
1260
+
1261
+		/*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1262 1262
         $img_arr['path'] = '';
1263 1263
         $img_arr['width'] = '';
1264 1264
         $img_arr['height'] = '';
1265 1265
         $img_arr['title'] = '';
1266 1266
         return (object)$img_arr;*/
1267
-        global $wpdb, $plugin_prefix, $post;
1267
+		global $wpdb, $plugin_prefix, $post;
1268 1268
 
1269
-        if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1270
-            $post_type = $post->post_type;
1271
-        } else {
1272
-            $post_type = get_post_type($post_id);
1273
-        }
1269
+		if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1270
+			$post_type = $post->post_type;
1271
+		} else {
1272
+			$post_type = get_post_type($post_id);
1273
+		}
1274 1274
 
1275
-        if (!in_array($post_type, geodir_get_posttypes())) {
1276
-            return false;// if not a GD CPT return;
1277
-        }
1275
+		if (!in_array($post_type, geodir_get_posttypes())) {
1276
+			return false;// if not a GD CPT return;
1277
+		}
1278 1278
 
1279
-        $table = $plugin_prefix . $post_type . '_detail';
1279
+		$table = $plugin_prefix . $post_type . '_detail';
1280 1280
 
1281
-        if (!$file) {
1282
-            if (isset($post->featured_image)) {
1283
-                $file = $post->featured_image;
1284
-            } else {
1285
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1286
-            }
1287
-        }
1281
+		if (!$file) {
1282
+			if (isset($post->featured_image)) {
1283
+				$file = $post->featured_image;
1284
+			} else {
1285
+				$file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1286
+			}
1287
+		}
1288 1288
 
1289
-        if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1290
-            $img_arr = array();
1289
+		if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1290
+			$img_arr = array();
1291 1291
 
1292
-            $file_info = pathinfo($file);
1293
-            $sub_dir = '';
1294
-            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1295
-                $sub_dir = stripslashes_deep($file_info['dirname']);
1292
+			$file_info = pathinfo($file);
1293
+			$sub_dir = '';
1294
+			if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1295
+				$sub_dir = stripslashes_deep($file_info['dirname']);
1296 1296
 
1297
-            $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1298
-            $uploads_baseurl = $uploads['baseurl'];
1299
-            $uploads_path = $uploads['path'];
1297
+			$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1298
+			$uploads_baseurl = $uploads['baseurl'];
1299
+			$uploads_path = $uploads['path'];
1300 1300
 
1301
-            $file_name = $file_info['basename'];
1301
+			$file_name = $file_info['basename'];
1302 1302
 
1303
-            $uploads_url = $uploads_baseurl . $sub_dir;
1304
-            /*
1303
+			$uploads_url = $uploads_baseurl . $sub_dir;
1304
+			/*
1305 1305
              * Allows the filter of image src for such things as CDN change.
1306 1306
              *
1307 1307
              * @since 1.5.7
@@ -1310,158 +1310,158 @@  discard block
 block discarded – undo
1310 1310
              * @param string $uploads_url The server upload directory url.
1311 1311
              * @param string $uploads_baseurl The uploads dir base url.
1312 1312
              */
1313
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1314
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1315
-            $width = 0;
1316
-            $height = 0;
1317
-            if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1318
-                $imagesize = getimagesize($img_arr['path']);
1319
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1320
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1321
-            }
1322
-            $img_arr['width'] = $width;
1323
-            $img_arr['height'] = $height;
1324
-            $img_arr['title'] = '';
1325
-        } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1326
-            foreach ($post_images as $image) {
1327
-                return $image;
1328
-            }
1329
-        } else if ($no_image) {
1330
-            $img_arr = array();
1331
-
1332
-            $default_img = '';
1333
-            if (isset($post->default_category) && $post->default_category) {
1334
-                $default_cat = $post->default_category;
1335
-            } else {
1336
-                $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1337
-            }
1338
-
1339
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1340
-                $default_img = $default_catimg['src'];
1341
-            elseif ($no_image) {
1342
-                $default_img = get_option('geodir_listing_no_img');
1343
-            }
1344
-
1345
-            if (!empty($default_img)) {
1346
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1347
-                $uploads_baseurl = $uploads['baseurl'];
1348
-                $uploads_path = $uploads['path'];
1349
-
1350
-                $img_arr = array();
1351
-
1352
-                $file_info = pathinfo($default_img);
1353
-
1354
-                $file_name = $file_info['basename'];
1355
-
1356
-                $img_arr['src'] = $default_img;
1357
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1358
-
1359
-                $width = 0;
1360
-                $height = 0;
1361
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1362
-                    $imagesize = getimagesize($img_arr['path']);
1363
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1364
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1365
-                }
1366
-                $img_arr['width'] = $width;
1367
-                $img_arr['height'] = $height;
1368
-
1369
-                $img_arr['title'] = ''; // add the title to the array
1370
-            }
1371
-        }
1372
-
1373
-        if (!empty($img_arr))
1374
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1375
-        else
1376
-            return false;
1377
-    }
1313
+			$img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1314
+			$img_arr['path'] = $uploads_path . '/' . $file_name;
1315
+			$width = 0;
1316
+			$height = 0;
1317
+			if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1318
+				$imagesize = getimagesize($img_arr['path']);
1319
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1320
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1321
+			}
1322
+			$img_arr['width'] = $width;
1323
+			$img_arr['height'] = $height;
1324
+			$img_arr['title'] = '';
1325
+		} elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1326
+			foreach ($post_images as $image) {
1327
+				return $image;
1328
+			}
1329
+		} else if ($no_image) {
1330
+			$img_arr = array();
1331
+
1332
+			$default_img = '';
1333
+			if (isset($post->default_category) && $post->default_category) {
1334
+				$default_cat = $post->default_category;
1335
+			} else {
1336
+				$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1337
+			}
1338
+
1339
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1340
+				$default_img = $default_catimg['src'];
1341
+			elseif ($no_image) {
1342
+				$default_img = get_option('geodir_listing_no_img');
1343
+			}
1344
+
1345
+			if (!empty($default_img)) {
1346
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1347
+				$uploads_baseurl = $uploads['baseurl'];
1348
+				$uploads_path = $uploads['path'];
1349
+
1350
+				$img_arr = array();
1351
+
1352
+				$file_info = pathinfo($default_img);
1353
+
1354
+				$file_name = $file_info['basename'];
1355
+
1356
+				$img_arr['src'] = $default_img;
1357
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1358
+
1359
+				$width = 0;
1360
+				$height = 0;
1361
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1362
+					$imagesize = getimagesize($img_arr['path']);
1363
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1364
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1365
+				}
1366
+				$img_arr['width'] = $width;
1367
+				$img_arr['height'] = $height;
1368
+
1369
+				$img_arr['title'] = ''; // add the title to the array
1370
+			}
1371
+		}
1372
+
1373
+		if (!empty($img_arr))
1374
+			return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1375
+		else
1376
+			return false;
1377
+	}
1378 1378
 }
1379 1379
 
1380 1380
 if (!function_exists('geodir_show_featured_image')) {
1381
-    /**
1382
-     * Gets the post featured image.
1383
-     *
1384
-     * @since 1.0.0
1385
-     * @package GeoDirectory
1386
-     * @param int|string $post_id The post ID.
1387
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1388
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1389
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1390
-     * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1391
-     * @return bool|string Returns image html.
1392
-     */
1393
-    function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1394
-    {
1395
-        $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1396
-
1397
-        $html = geodir_show_image($image, $size, $no_image, false);
1398
-
1399
-        if (!empty($html) && $echo) {
1400
-            echo $html;
1401
-        } elseif (!empty($html)) {
1402
-            return $html;
1403
-        } else
1404
-            return false;
1405
-    }
1381
+	/**
1382
+	 * Gets the post featured image.
1383
+	 *
1384
+	 * @since 1.0.0
1385
+	 * @package GeoDirectory
1386
+	 * @param int|string $post_id The post ID.
1387
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1388
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1389
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1390
+	 * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1391
+	 * @return bool|string Returns image html.
1392
+	 */
1393
+	function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1394
+	{
1395
+		$image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1396
+
1397
+		$html = geodir_show_image($image, $size, $no_image, false);
1398
+
1399
+		if (!empty($html) && $echo) {
1400
+			echo $html;
1401
+		} elseif (!empty($html)) {
1402
+			return $html;
1403
+		} else
1404
+			return false;
1405
+	}
1406 1406
 }
1407 1407
 
1408 1408
 if (!function_exists('geodir_get_images')) {
1409
-    /**
1410
-     * Gets the post images.
1411
-     *
1412
-     * @since 1.0.0
1413
-     * @package GeoDirectory
1414
-     * @global object $wpdb WordPress Database object.
1415
-     * @param int $post_id The post ID.
1416
-     * @param string $img_size Optional. Thumbnail size.
1417
-     * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1418
-     * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1419
-     * @param int|string $limit Optional. Number of images.
1420
-     * @return array|bool Returns images as an array. Each item is an object.
1421
-     */
1422
-    function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1423
-    {
1424
-        global $wpdb;
1425
-        if ($limit) {
1426
-            $limit_q = " LIMIT $limit ";
1427
-        } else {
1428
-            $limit_q = '';
1429
-        }
1430
-        $not_featured = '';
1431
-        $sub_dir = '';
1432
-        if (!$add_featured)
1433
-            $not_featured = " AND is_featured = 0 ";
1434
-
1435
-        $arrImages = $wpdb->get_results(
1436
-            $wpdb->prepare(
1437
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ",
1438
-                array('%image%', $post_id)
1439
-            )
1440
-        );
1441
-
1442
-        $counter = 0;
1443
-        $return_arr = array();
1444
-
1445
-        if (!empty($arrImages)) {
1446
-            foreach ($arrImages as $attechment) {
1447
-
1448
-                $img_arr = array();
1449
-                $img_arr['id'] = $attechment->ID;
1450
-                $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1451
-
1452
-                $file_info = pathinfo($attechment->file);
1453
-
1454
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1455
-                    $sub_dir = stripslashes_deep($file_info['dirname']);
1456
-
1457
-                $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1458
-                $uploads_baseurl = $uploads['baseurl'];
1459
-                $uploads_path = $uploads['path'];
1460
-
1461
-                $file_name = $file_info['basename'];
1462
-
1463
-                $uploads_url = $uploads_baseurl . $sub_dir;
1464
-                /*
1409
+	/**
1410
+	 * Gets the post images.
1411
+	 *
1412
+	 * @since 1.0.0
1413
+	 * @package GeoDirectory
1414
+	 * @global object $wpdb WordPress Database object.
1415
+	 * @param int $post_id The post ID.
1416
+	 * @param string $img_size Optional. Thumbnail size.
1417
+	 * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1418
+	 * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1419
+	 * @param int|string $limit Optional. Number of images.
1420
+	 * @return array|bool Returns images as an array. Each item is an object.
1421
+	 */
1422
+	function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1423
+	{
1424
+		global $wpdb;
1425
+		if ($limit) {
1426
+			$limit_q = " LIMIT $limit ";
1427
+		} else {
1428
+			$limit_q = '';
1429
+		}
1430
+		$not_featured = '';
1431
+		$sub_dir = '';
1432
+		if (!$add_featured)
1433
+			$not_featured = " AND is_featured = 0 ";
1434
+
1435
+		$arrImages = $wpdb->get_results(
1436
+			$wpdb->prepare(
1437
+				"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ",
1438
+				array('%image%', $post_id)
1439
+			)
1440
+		);
1441
+
1442
+		$counter = 0;
1443
+		$return_arr = array();
1444
+
1445
+		if (!empty($arrImages)) {
1446
+			foreach ($arrImages as $attechment) {
1447
+
1448
+				$img_arr = array();
1449
+				$img_arr['id'] = $attechment->ID;
1450
+				$img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1451
+
1452
+				$file_info = pathinfo($attechment->file);
1453
+
1454
+				if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1455
+					$sub_dir = stripslashes_deep($file_info['dirname']);
1456
+
1457
+				$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1458
+				$uploads_baseurl = $uploads['baseurl'];
1459
+				$uploads_path = $uploads['path'];
1460
+
1461
+				$file_name = $file_info['basename'];
1462
+
1463
+				$uploads_url = $uploads_baseurl . $sub_dir;
1464
+				/*
1465 1465
                 * Allows the filter of image src for such things as CDN change.
1466 1466
                 *
1467 1467
                 * @since 1.5.7
@@ -1470,516 +1470,516 @@  discard block
 block discarded – undo
1470 1470
                 * @param string $uploads_url The server upload directory url.
1471 1471
                 * @param string $uploads_baseurl The uploads dir base url.
1472 1472
                 */
1473
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1474
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1475
-                $width = 0;
1476
-                $height = 0;
1477
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1478
-                    $imagesize = getimagesize($img_arr['path']);
1479
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1480
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1481
-                }
1482
-                $img_arr['width'] = $width;
1483
-                $img_arr['height'] = $height;
1484
-
1485
-                $img_arr['file'] = $file_name; // add the title to the array
1486
-                $img_arr['title'] = $attechment->title; // add the title to the array
1487
-                $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1488
-                $img_arr['content'] = $attechment->content; // add the description to the array
1489
-                $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1490
-
1491
-                $return_arr[] = (object)$img_arr;
1492
-
1493
-                $counter++;
1494
-            }
1495
-            return (object)$return_arr;
1496
-        } else if ($no_images) {
1497
-            $default_img = '';
1498
-            $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1499
-            $post_type = get_post_type($post_id);
1500
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1501
-                $default_img = $default_catimg['src'];
1502
-            elseif ($no_images) {
1503
-                $default_img = get_option('geodir_listing_no_img');
1504
-            }
1505
-
1506
-            if (!empty($default_img)) {
1507
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1473
+				$img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1474
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1475
+				$width = 0;
1476
+				$height = 0;
1477
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1478
+					$imagesize = getimagesize($img_arr['path']);
1479
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1480
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1481
+				}
1482
+				$img_arr['width'] = $width;
1483
+				$img_arr['height'] = $height;
1484
+
1485
+				$img_arr['file'] = $file_name; // add the title to the array
1486
+				$img_arr['title'] = $attechment->title; // add the title to the array
1487
+				$img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1488
+				$img_arr['content'] = $attechment->content; // add the description to the array
1489
+				$img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1490
+
1491
+				$return_arr[] = (object)$img_arr;
1492
+
1493
+				$counter++;
1494
+			}
1495
+			return (object)$return_arr;
1496
+		} else if ($no_images) {
1497
+			$default_img = '';
1498
+			$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1499
+			$post_type = get_post_type($post_id);
1500
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1501
+				$default_img = $default_catimg['src'];
1502
+			elseif ($no_images) {
1503
+				$default_img = get_option('geodir_listing_no_img');
1504
+			}
1505
+
1506
+			if (!empty($default_img)) {
1507
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1508 1508
                 
1509
-                $image_path = $default_img;
1510
-                if (!path_is_absolute($image_path)) {
1511
-                    $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1512
-                }
1513
-
1514
-                $file_info = pathinfo($default_img);
1515
-                $file_name = $file_info['basename'];
1516
-
1517
-                $width = '';
1518
-                $height = '';
1519
-                if (is_file($image_path) && file_exists($image_path)) {
1520
-                    $imagesize = getimagesize($image_path);
1521
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1522
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1523
-                }
1509
+				$image_path = $default_img;
1510
+				if (!path_is_absolute($image_path)) {
1511
+					$image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1512
+				}
1513
+
1514
+				$file_info = pathinfo($default_img);
1515
+				$file_name = $file_info['basename'];
1516
+
1517
+				$width = '';
1518
+				$height = '';
1519
+				if (is_file($image_path) && file_exists($image_path)) {
1520
+					$imagesize = getimagesize($image_path);
1521
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1522
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1523
+				}
1524 1524
                 
1525
-                $img_arr = array();
1526
-                $img_arr['src'] = $default_img;
1527
-                $img_arr['path'] = $image_path;
1528
-                $img_arr['width'] = $width;
1529
-                $img_arr['height'] = $height;
1530
-                $img_arr['file'] = $file_name; // add the title to the array
1531
-                $img_arr['title'] = $file_info['filename']; // add the title to the array
1532
-                $img_arr['content'] = $file_info['filename']; // add the description to the array
1533
-
1534
-                $return_arr[] = (object)$img_arr;
1535
-
1536
-                return $return_arr;
1537
-            } else
1538
-                return false;
1539
-        }
1540
-    }
1525
+				$img_arr = array();
1526
+				$img_arr['src'] = $default_img;
1527
+				$img_arr['path'] = $image_path;
1528
+				$img_arr['width'] = $width;
1529
+				$img_arr['height'] = $height;
1530
+				$img_arr['file'] = $file_name; // add the title to the array
1531
+				$img_arr['title'] = $file_info['filename']; // add the title to the array
1532
+				$img_arr['content'] = $file_info['filename']; // add the description to the array
1533
+
1534
+				$return_arr[] = (object)$img_arr;
1535
+
1536
+				return $return_arr;
1537
+			} else
1538
+				return false;
1539
+		}
1540
+	}
1541 1541
 }
1542 1542
 
1543 1543
 if (!function_exists('geodir_show_image')) {
1544
-    /**
1545
-     * Show image using image details.
1546
-     *
1547
-     * @since 1.0.0
1548
-     * @package GeoDirectory
1549
-     * @param array|object $request Image info either as an array or object.
1550
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1551
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1552
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1553
-     * @return bool|string Returns image html.
1554
-     */
1555
-    function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1556
-    {
1557
-        $image = new stdClass();
1558
-
1559
-        $html = '';
1560
-        if (!empty($request)) {
1561
-            if (!is_object($request)){
1562
-                $request = (object)$request;
1563
-            }
1564
-
1565
-            if (isset($request->src) && !isset($request->path)) {
1566
-                $request->path = $request->src;
1567
-            }
1568
-
1569
-            /*
1544
+	/**
1545
+	 * Show image using image details.
1546
+	 *
1547
+	 * @since 1.0.0
1548
+	 * @package GeoDirectory
1549
+	 * @param array|object $request Image info either as an array or object.
1550
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1551
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1552
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1553
+	 * @return bool|string Returns image html.
1554
+	 */
1555
+	function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1556
+	{
1557
+		$image = new stdClass();
1558
+
1559
+		$html = '';
1560
+		if (!empty($request)) {
1561
+			if (!is_object($request)){
1562
+				$request = (object)$request;
1563
+			}
1564
+
1565
+			if (isset($request->src) && !isset($request->path)) {
1566
+				$request->path = $request->src;
1567
+			}
1568
+
1569
+			/*
1570 1570
              * getimagesize() works faster from path than url so we try and get path if we can.
1571 1571
              */
1572
-            $upload_dir = wp_upload_dir();
1573
-            $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1574
-            $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1575
-            if (strpos($img_no_http, $upload_no_http) !== false) {
1576
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1577
-            }
1572
+			$upload_dir = wp_upload_dir();
1573
+			$img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1574
+			$upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1575
+			if (strpos($img_no_http, $upload_no_http) !== false) {
1576
+				$request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1577
+			}
1578 1578
             
1579
-            $width = 0;
1580
-            $height = 0;
1581
-            if (is_file($request->path) && file_exists($request->path)) {
1582
-                $imagesize = getimagesize($request->path);
1583
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1584
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1585
-            }
1586
-
1587
-            $image->src = $request->src;
1588
-            $image->width = $width;
1589
-            $image->height = $height;
1590
-
1591
-            $max_size = (object)geodir_get_imagesize($size);
1592
-
1593
-            if (!is_wp_error($max_size)) {
1594
-                if ($image->width) {
1595
-                    if ($image->height >= $image->width) {
1596
-                        $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1597
-                    } else if ($image->width < ($max_size->h)) {
1598
-                        $width_per = round((($image->width / $max_size->w) * 100), 2);
1599
-                    } else
1600
-                        $width_per = 100;
1601
-                }
1602
-
1603
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1604
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1605
-                } else {
1606
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1607
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1608
-                    }else{
1609
-                        //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1610
-                        //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1611
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1612
-
1613
-                    }
1614
-
1615
-                }
1616
-            }
1617
-        }
1618
-
1619
-        if (!empty($html) && $echo) {
1620
-            echo $html;
1621
-        } elseif (!empty($html)) {
1622
-            return $html;
1623
-        } else
1624
-            return false;
1625
-    }
1626
-}
1579
+			$width = 0;
1580
+			$height = 0;
1581
+			if (is_file($request->path) && file_exists($request->path)) {
1582
+				$imagesize = getimagesize($request->path);
1583
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1584
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1585
+			}
1627 1586
 
1628
-if (!function_exists('geodir_set_post_terms')) {
1629
-    /**
1630
-     * Set post Categories.
1631
-     *
1632
-     * @since 1.0.0
1633
-     * @package GeoDirectory
1634
-     * @global object $wpdb WordPress Database object.
1635
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1636
-     * @param int $post_id The post ID.
1637
-     * @param array $terms An array of term objects.
1638
-     * @param array $tt_ids An array of term taxonomy IDs.
1639
-     * @param string $taxonomy Taxonomy slug.
1640
-     */
1641
-    function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1642
-    {
1643
-        global $wpdb, $plugin_prefix;
1587
+			$image->src = $request->src;
1588
+			$image->width = $width;
1589
+			$image->height = $height;
1644 1590
 
1645
-        $post_type = get_post_type($post_id);
1591
+			$max_size = (object)geodir_get_imagesize($size);
1646 1592
 
1647
-        $table = $plugin_prefix . $post_type . '_detail';
1593
+			if (!is_wp_error($max_size)) {
1594
+				if ($image->width) {
1595
+					if ($image->height >= $image->width) {
1596
+						$width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1597
+					} else if ($image->width < ($max_size->h)) {
1598
+						$width_per = round((($image->width / $max_size->w) * 100), 2);
1599
+					} else
1600
+						$width_per = 100;
1601
+				}
1648 1602
 
1649
-        if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1603
+				if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1604
+					$html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1605
+				} else {
1606
+					if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1607
+						$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1608
+					}else{
1609
+						//$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1610
+						//$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1611
+						$html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1612
+
1613
+					}
1614
+
1615
+				}
1616
+			}
1617
+		}
1618
+
1619
+		if (!empty($html) && $echo) {
1620
+			echo $html;
1621
+		} elseif (!empty($html)) {
1622
+			return $html;
1623
+		} else
1624
+			return false;
1625
+	}
1626
+}
1650 1627
 
1651
-            if ($taxonomy == $post_type . '_tags') {
1652
-                if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1653
-                    geodir_save_post_meta($post_id, 'post_tags', $terms);
1654
-                }
1655
-            } elseif ($taxonomy == $post_type . 'category') {
1656
-                $srcharr = array('"', '\\');
1657
-                $replarr = array("&quot;", '');
1628
+if (!function_exists('geodir_set_post_terms')) {
1629
+	/**
1630
+	 * Set post Categories.
1631
+	 *
1632
+	 * @since 1.0.0
1633
+	 * @package GeoDirectory
1634
+	 * @global object $wpdb WordPress Database object.
1635
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1636
+	 * @param int $post_id The post ID.
1637
+	 * @param array $terms An array of term objects.
1638
+	 * @param array $tt_ids An array of term taxonomy IDs.
1639
+	 * @param string $taxonomy Taxonomy slug.
1640
+	 */
1641
+	function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1642
+	{
1643
+		global $wpdb, $plugin_prefix;
1644
+
1645
+		$post_type = get_post_type($post_id);
1646
+
1647
+		$table = $plugin_prefix . $post_type . '_detail';
1648
+
1649
+		if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1650
+
1651
+			if ($taxonomy == $post_type . '_tags') {
1652
+				if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1653
+					geodir_save_post_meta($post_id, 'post_tags', $terms);
1654
+				}
1655
+			} elseif ($taxonomy == $post_type . 'category') {
1656
+				$srcharr = array('"', '\\');
1657
+				$replarr = array("&quot;", '');
1658 1658
 
1659
-                $post_obj = get_post($post_id);
1659
+				$post_obj = get_post($post_id);
1660 1660
 
1661
-                $cat_ids = array('0');
1662
-                if (is_array($tt_ids))
1663
-                    $cat_ids = $tt_ids;
1661
+				$cat_ids = array('0');
1662
+				if (is_array($tt_ids))
1663
+					$cat_ids = $tt_ids;
1664 1664
 
1665 1665
 
1666
-                if (!empty($cat_ids)) {
1667
-                    $cat_ids_array = $cat_ids;
1668
-                    $cat_ids_length = count($cat_ids_array);
1669
-                    $cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1670
-                    $format = implode(',', $cat_ids_format);
1666
+				if (!empty($cat_ids)) {
1667
+					$cat_ids_array = $cat_ids;
1668
+					$cat_ids_length = count($cat_ids_array);
1669
+					$cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1670
+					$format = implode(',', $cat_ids_format);
1671 1671
 
1672
-                    $cat_ids_array_del = $cat_ids_array;
1673
-                    $cat_ids_array_del[] = $post_id;
1672
+					$cat_ids_array_del = $cat_ids_array;
1673
+					$cat_ids_array_del[] = $post_id;
1674 1674
 
1675
-                    $wpdb->get_var(
1676
-                        $wpdb->prepare(
1677
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1678
-                            $cat_ids_array_del
1679
-                        )
1680
-                    );
1675
+					$wpdb->get_var(
1676
+						$wpdb->prepare(
1677
+							"DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1678
+							$cat_ids_array_del
1679
+						)
1680
+					);
1681 1681
 
1682 1682
 
1683
-                    $post_term = $wpdb->get_col(
1684
-                        $wpdb->prepare(
1685
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1686
-                            $cat_ids_array
1687
-                        )
1688
-                    );
1683
+					$post_term = $wpdb->get_col(
1684
+						$wpdb->prepare(
1685
+							"SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1686
+							$cat_ids_array
1687
+						)
1688
+					);
1689 1689
 
1690
-                }
1690
+				}
1691 1691
 
1692
-                $post_marker_json = '';
1692
+				$post_marker_json = '';
1693 1693
 
1694
-                if (!empty($post_term)):
1694
+				if (!empty($post_term)):
1695 1695
 
1696
-                    foreach ($post_term as $cat_id):
1696
+					foreach ($post_term as $cat_id):
1697 1697
 
1698
-                        $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1699
-                        $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1698
+						$term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1699
+						$term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1700 1700
 
1701
-                        $post_title = $post_obj->title;
1702
-                        $title = str_replace($srcharr, $replarr, $post_title);
1701
+						$post_title = $post_obj->title;
1702
+						$title = str_replace($srcharr, $replarr, $post_title);
1703 1703
 
1704
-                        $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1705
-                        $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1704
+						$lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1705
+						$lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1706 1706
 
1707
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1708
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1707
+						$timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1708
+						$timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1709 1709
 
1710
-                        $json = '{';
1711
-                        $json .= '"id":"' . $post_id . '",';
1712
-                        $json .= '"lat_pos": "' . $lat . '",';
1713
-                        $json .= '"long_pos": "' . $lng . '",';
1714
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1715
-                        $json .= '"icon":"' . $term_icon . '",';
1716
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1717
-                        $json .= '}';
1710
+						$json = '{';
1711
+						$json .= '"id":"' . $post_id . '",';
1712
+						$json .= '"lat_pos": "' . $lat . '",';
1713
+						$json .= '"long_pos": "' . $lng . '",';
1714
+						$json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1715
+						$json .= '"icon":"' . $term_icon . '",';
1716
+						$json .= '"group":"catgroup' . $cat_id . '"';
1717
+						$json .= '}';
1718 1718
 
1719 1719
 
1720
-                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1721
-                            $post_marker_json = $json;
1720
+						if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1721
+							$post_marker_json = $json;
1722 1722
 
1723 1723
 
1724
-                        if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1724
+						if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1725 1725
 
1726
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1726
+							$json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1727 1727
 										post_title = %s,
1728 1728
 										json = %s
1729 1729
 										WHERE post_id = %d AND cat_id = %d ",
1730
-                                array($post_title, $json, $post_id, $cat_id));
1730
+								array($post_title, $json, $post_id, $cat_id));
1731 1731
 
1732
-                        } else {
1732
+						} else {
1733 1733
 
1734
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1734
+							$json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1735 1735
 										post_id = %d,
1736 1736
 										post_title = %s,
1737 1737
 										cat_id = %d,
1738 1738
 										json = %s",
1739
-                                array($post_id, $post_title, $cat_id, $json));
1739
+								array($post_id, $post_title, $cat_id, $json));
1740 1740
 
1741
-                        }
1741
+						}
1742 1742
 
1743
-                        $wpdb->query($json_query);
1743
+						$wpdb->query($json_query);
1744 1744
 
1745
-                    endforeach;
1745
+					endforeach;
1746 1746
 
1747
-                endif;
1747
+				endif;
1748 1748
 
1749
-                if (!empty($post_term) && is_array($post_term)) {
1750
-                    $categories = implode(',', $post_term);
1749
+				if (!empty($post_term) && is_array($post_term)) {
1750
+					$categories = implode(',', $post_term);
1751 1751
 
1752
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1752
+					if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1753 1753
 
1754
-                    if (empty($post_marker_json))
1755
-                        $post_marker_json = isset($json) ? $json : '';
1754
+					if (empty($post_marker_json))
1755
+						$post_marker_json = isset($json) ? $json : '';
1756 1756
 
1757
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1757
+					if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1758 1758
 
1759
-                        $wpdb->query(
1760
-                            $wpdb->prepare(
1761
-                                "UPDATE " . $table . " SET
1759
+						$wpdb->query(
1760
+							$wpdb->prepare(
1761
+								"UPDATE " . $table . " SET
1762 1762
 								" . $taxonomy . " = %s,
1763 1763
 								marker_json = %s
1764 1764
 								where post_id = %d",
1765
-                                array($categories, $post_marker_json, $post_id)
1766
-                            )
1767
-                        );
1765
+								array($categories, $post_marker_json, $post_id)
1766
+							)
1767
+						);
1768 1768
 
1769
-                        if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1769
+						if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1770 1770
 
1771
-                            $categories = trim($categories, ',');
1771
+							$categories = trim($categories, ',');
1772 1772
 
1773
-                            if ($categories) {
1773
+							if ($categories) {
1774 1774
 
1775
-                                $categories = explode(',', $categories);
1775
+								$categories = explode(',', $categories);
1776 1776
 
1777
-                                $default_category = geodir_get_post_meta($post_id, 'default_category', true);
1777
+								$default_category = geodir_get_post_meta($post_id, 'default_category', true);
1778 1778
 
1779
-                                if (!in_array($default_category, $categories)) {
1779
+								if (!in_array($default_category, $categories)) {
1780 1780
 
1781
-                                    $wpdb->query(
1782
-                                        $wpdb->prepare(
1783
-                                            "UPDATE " . $table . " SET
1781
+									$wpdb->query(
1782
+										$wpdb->prepare(
1783
+											"UPDATE " . $table . " SET
1784 1784
 											default_category = %s
1785 1785
 											where post_id = %d",
1786
-                                            array($categories[0], $post_id)
1787
-                                        )
1788
-                                    );
1786
+											array($categories[0], $post_id)
1787
+										)
1788
+									);
1789 1789
 
1790
-                                    $default_category = $categories[0];
1790
+									$default_category = $categories[0];
1791 1791
 
1792
-                                }
1792
+								}
1793 1793
 
1794
-                                if ($default_category == '')
1795
-                                    $default_category = $categories[0];
1794
+								if ($default_category == '')
1795
+									$default_category = $categories[0];
1796 1796
 
1797
-                                geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1797
+								geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1798 1798
 
1799
-                            }
1799
+							}
1800 1800
 
1801
-                        }
1801
+						}
1802 1802
 
1803 1803
 
1804
-                    } else {
1804
+					} else {
1805 1805
 
1806
-                        $wpdb->query(
1807
-                            $wpdb->prepare(
1808
-                                "INSERT INTO " . $table . " SET
1806
+						$wpdb->query(
1807
+							$wpdb->prepare(
1808
+								"INSERT INTO " . $table . " SET
1809 1809
 								post_id = %d,
1810 1810
 								" . $taxonomy . " = %s,
1811 1811
 								marker_json = %s ",
1812 1812
 
1813
-                                array($post_id, $categories, $post_marker_json)
1814
-                            )
1815
-                        );
1816
-                    }
1817
-                }
1818
-            }
1819
-        }
1820
-    }
1813
+								array($post_id, $categories, $post_marker_json)
1814
+							)
1815
+						);
1816
+					}
1817
+				}
1818
+			}
1819
+		}
1820
+	}
1821 1821
 }
1822 1822
 
1823 1823
 if (!function_exists('geodir_get_infowindow_html')) {
1824
-    /**
1825
-     * Set post Map Marker info html.
1826
-     *
1827
-     * @since 1.0.0
1828
-     * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1829
-     * @package GeoDirectory
1830
-     * @global array $geodir_addon_list List of active GeoDirectory extensions.
1831
-     * @global object $gd_session GeoDirectory Session object.
1832
-     * @param object $postinfo_obj The post details object.
1833
-     * @param string $post_preview Is this a post preview?.
1834
-     * @return mixed|string|void
1835
-     */
1836
-    function geodir_get_infowindow_html($postinfo_obj, $post_preview = '')
1837
-    {
1838
-        global $preview, $gd_session;
1839
-        $srcharr = array("'", "/", "-", '"', '\\');
1840
-        $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1841
-
1842
-        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1843
-            $ID = '';
1844
-            $plink = '';
1845
-
1846
-            if (isset($postinfo_obj->pid)) {
1847
-                $ID = $postinfo_obj->pid;
1848
-                $plink = get_permalink($ID);
1849
-            }
1850
-
1851
-            $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1852
-            $lat = $postinfo_obj->post_latitude;
1853
-            $lng = $postinfo_obj->post_longitude;
1854
-        } else {
1855
-            $ID = $postinfo_obj->post_id;
1856
-            $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1857
-            $plink = get_permalink($ID);
1858
-            $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1859
-            $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1860
-        }
1861
-
1862
-        // filter field as per price package
1863
-        global $geodir_addon_list;
1864
-        if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1865
-            $post_type = get_post_type($ID);
1866
-            $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1867
-            $field_name = 'geodir_contact';
1868
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1869
-                $contact = '';
1870
-            }
1871
-
1872
-            $field_name = 'geodir_timing';
1873
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1874
-                $timing = '';
1875
-            }
1876
-        }
1877
-
1878
-        if ($lat && $lng) {
1879
-            ob_start(); ?>
1824
+	/**
1825
+	 * Set post Map Marker info html.
1826
+	 *
1827
+	 * @since 1.0.0
1828
+	 * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1829
+	 * @package GeoDirectory
1830
+	 * @global array $geodir_addon_list List of active GeoDirectory extensions.
1831
+	 * @global object $gd_session GeoDirectory Session object.
1832
+	 * @param object $postinfo_obj The post details object.
1833
+	 * @param string $post_preview Is this a post preview?.
1834
+	 * @return mixed|string|void
1835
+	 */
1836
+	function geodir_get_infowindow_html($postinfo_obj, $post_preview = '')
1837
+	{
1838
+		global $preview, $gd_session;
1839
+		$srcharr = array("'", "/", "-", '"', '\\');
1840
+		$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1841
+
1842
+		if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1843
+			$ID = '';
1844
+			$plink = '';
1845
+
1846
+			if (isset($postinfo_obj->pid)) {
1847
+				$ID = $postinfo_obj->pid;
1848
+				$plink = get_permalink($ID);
1849
+			}
1850
+
1851
+			$title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1852
+			$lat = $postinfo_obj->post_latitude;
1853
+			$lng = $postinfo_obj->post_longitude;
1854
+		} else {
1855
+			$ID = $postinfo_obj->post_id;
1856
+			$title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1857
+			$plink = get_permalink($ID);
1858
+			$lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1859
+			$lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1860
+		}
1861
+
1862
+		// filter field as per price package
1863
+		global $geodir_addon_list;
1864
+		if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1865
+			$post_type = get_post_type($ID);
1866
+			$package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1867
+			$field_name = 'geodir_contact';
1868
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1869
+				$contact = '';
1870
+			}
1871
+
1872
+			$field_name = 'geodir_timing';
1873
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1874
+				$timing = '';
1875
+			}
1876
+		}
1877
+
1878
+		if ($lat && $lng) {
1879
+			ob_start(); ?>
1880 1880
             <div class="gd-bubble" style="">
1881 1881
                 <div class="gd-bubble-inside">
1882 1882
                     <?php
1883
-                    $comment_count = '';
1884
-                    $rating_star = '';
1885
-                    if ($ID != '') {
1886
-                        $rating_star = '';
1887
-                        $comment_count = geodir_get_review_count_total($ID);
1888
-
1889
-                        if (!$preview) {
1890
-                            $post_avgratings = geodir_get_post_rating($ID);
1891
-
1892
-                            $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1893
-
1894
-                            /**
1895
-                             * Filter to change rating stars
1896
-                             *
1897
-                             * You can use this filter to change Rating stars.
1898
-                             *
1899
-                             * @since 1.0.0
1900
-                             * @package GeoDirectory
1901
-                             * @param string $rating_star Rating stars.
1902
-                             * @param float $post_avgratings Average ratings of the post.
1903
-                             * @param int $ID The post ID.
1904
-                             */
1905
-                            $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1906
-                        }
1907
-                    }
1908
-                    ?>
1883
+					$comment_count = '';
1884
+					$rating_star = '';
1885
+					if ($ID != '') {
1886
+						$rating_star = '';
1887
+						$comment_count = geodir_get_review_count_total($ID);
1888
+
1889
+						if (!$preview) {
1890
+							$post_avgratings = geodir_get_post_rating($ID);
1891
+
1892
+							$rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1893
+
1894
+							/**
1895
+							 * Filter to change rating stars
1896
+							 *
1897
+							 * You can use this filter to change Rating stars.
1898
+							 *
1899
+							 * @since 1.0.0
1900
+							 * @package GeoDirectory
1901
+							 * @param string $rating_star Rating stars.
1902
+							 * @param float $post_avgratings Average ratings of the post.
1903
+							 * @param int $ID The post ID.
1904
+							 */
1905
+							$rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1906
+						}
1907
+					}
1908
+					?>
1909 1909
                     <div class="geodir-bubble_desc">
1910 1910
                         <h4>
1911 1911
                             <a href="<?php if ($plink != '') {
1912
-                                echo $plink;
1913
-                            } else {
1914
-                                echo 'javascript:void(0);';
1915
-                            } ?>"><?php echo $title; ?></a>
1912
+								echo $plink;
1913
+							} else {
1914
+								echo 'javascript:void(0);';
1915
+							} ?>"><?php echo $title; ?></a>
1916 1916
                         </h4>
1917 1917
                         <?php
1918
-                        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1919
-                            $post_images = array();
1920
-                            if (!empty($postinfo_obj->post_images)) {
1921
-                                $post_images = explode(",", $postinfo_obj->post_images);
1922
-                            }
1923
-
1924
-                            if (!empty($post_images)) {
1925
-                                ?>
1918
+						if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1919
+							$post_images = array();
1920
+							if (!empty($postinfo_obj->post_images)) {
1921
+								$post_images = explode(",", $postinfo_obj->post_images);
1922
+							}
1923
+
1924
+							if (!empty($post_images)) {
1925
+								?>
1926 1926
                                 <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
1927
-                                        echo $plink;
1928
-                                    } else {
1929
-                                        echo 'javascript:void(0);';
1930
-                                    } ?>"><img alt="bubble image" style="max-height:50px;"
1927
+										echo $plink;
1928
+									} else {
1929
+										echo 'javascript:void(0);';
1930
+									} ?>"><img alt="bubble image" style="max-height:50px;"
1931 1931
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1932 1932
                             <?php
1933
-                            }else{
1934
-                                echo '<div class="geodir-bubble_image"></div>';
1935
-                            }
1936
-                        } else {
1937
-                            if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1938
-                                ?>
1933
+							}else{
1934
+								echo '<div class="geodir-bubble_image"></div>';
1935
+							}
1936
+						} else {
1937
+							if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1938
+								?>
1939 1939
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1940 1940
                             <?php
1941
-                            }else{
1942
-                                echo '<div class="geodir-bubble_image"></div>';
1943
-                            }
1944
-                        }
1945
-                        ?>
1941
+							}else{
1942
+								echo '<div class="geodir-bubble_image"></div>';
1943
+							}
1944
+						}
1945
+						?>
1946 1946
                         <div class="geodir-bubble-meta-side">
1947 1947
                             <?php
1948
-                            /**
1949
-                             * Fires before the meta info in the map info window.
1950
-                             *
1951
-                             * This can be used to add more info to the map info window before the normal meta info.
1952
-                             *
1953
-                             * @since 1.5.4
1954
-                             * @param int $ID The post id.
1955
-                             * @param object $postinfo_obj The posts info as an object.
1956
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1957
-                             */
1958
-                            do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
1959
-
1960
-
1961
-                            echo geodir_show_listing_info('mapbubble');
1948
+							/**
1949
+							 * Fires before the meta info in the map info window.
1950
+							 *
1951
+							 * This can be used to add more info to the map info window before the normal meta info.
1952
+							 *
1953
+							 * @since 1.5.4
1954
+							 * @param int $ID The post id.
1955
+							 * @param object $postinfo_obj The posts info as an object.
1956
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1957
+							 */
1958
+							do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
1959
+
1960
+
1961
+							echo geodir_show_listing_info('mapbubble');
1962 1962
                             
1963 1963
                                                       
1964 1964
 
1965
-                            /**
1966
-                             * Fires after the meta info in the map info window.
1967
-                             *
1968
-                             * This can be used to add more info to the map info window after the normal meta info.
1969
-                             *
1970
-                             * @since 1.4.2
1971
-                             * @param object $postinfo_obj The posts info as an object.
1972
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1973
-                             */
1974
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1975
-                            ?>
1965
+							/**
1966
+							 * Fires after the meta info in the map info window.
1967
+							 *
1968
+							 * This can be used to add more info to the map info window after the normal meta info.
1969
+							 *
1970
+							 * @since 1.4.2
1971
+							 * @param object $postinfo_obj The posts info as an object.
1972
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1973
+							 */
1974
+							do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1975
+							?>
1976 1976
                         </div>
1977 1977
                         <?php
1978 1978
 
1979
-                        if ($ID) {
1979
+						if ($ID) {
1980 1980
 
1981
-                            $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
1982
-                            ?>
1981
+							$post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
1982
+							?>
1983 1983
                             <div class="geodir-bubble-meta-fade"></div>
1984 1984
 
1985 1985
                             <div class="geodir-bubble-meta-bottom">
@@ -1999,69 +1999,69 @@  discard block
 block discarded – undo
1999 1999
                 </div>
2000 2000
             </div>
2001 2001
             <?php
2002
-            $html = ob_get_clean();
2003
-            /**
2004
-             * Filter to change infowindow html
2005
-             *
2006
-             * You can use this filter to change infowindow html.
2007
-             *
2008
-             * @since 1.0.0
2009
-             * @package GeoDirectory
2010
-             * @param string $html Infowindow html.
2011
-             * @param object $postinfo_obj The Post object.
2012
-             * @param bool|string $post_preview Is this a post preview?
2013
-             */
2014
-            $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2015
-            return $html;
2016
-        }
2017
-    }
2002
+			$html = ob_get_clean();
2003
+			/**
2004
+			 * Filter to change infowindow html
2005
+			 *
2006
+			 * You can use this filter to change infowindow html.
2007
+			 *
2008
+			 * @since 1.0.0
2009
+			 * @package GeoDirectory
2010
+			 * @param string $html Infowindow html.
2011
+			 * @param object $postinfo_obj The Post object.
2012
+			 * @param bool|string $post_preview Is this a post preview?
2013
+			 */
2014
+			$html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2015
+			return $html;
2016
+		}
2017
+	}
2018 2018
 }
2019 2019
 
2020 2020
 
2021 2021
 if (!function_exists('geodir_new_post_default_status')) {
2022
-    /**
2023
-     * Default post status for new posts.
2024
-     *
2025
-     * @since 1.0.0
2026
-     * @package GeoDirectory
2027
-     * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2028
-     */
2029
-    function geodir_new_post_default_status()
2030
-    {
2031
-        if (get_option('geodir_new_post_default_status'))
2032
-            return get_option('geodir_new_post_default_status');
2033
-        else
2034
-            return 'publish';
2035
-
2036
-    }
2022
+	/**
2023
+	 * Default post status for new posts.
2024
+	 *
2025
+	 * @since 1.0.0
2026
+	 * @package GeoDirectory
2027
+	 * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2028
+	 */
2029
+	function geodir_new_post_default_status()
2030
+	{
2031
+		if (get_option('geodir_new_post_default_status'))
2032
+			return get_option('geodir_new_post_default_status');
2033
+		else
2034
+			return 'publish';
2035
+
2036
+	}
2037 2037
 }
2038 2038
 
2039 2039
 if (!function_exists('geodir_change_post_status')) {
2040
-    /**
2041
-     * Change post status of a post.
2042
-     *
2043
-     * @global object $wpdb WordPress Database object.
2044
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2045
-     * @param int|string $post_id The post ID.
2046
-     * @param string $status New post status. Ex: draft, publish etc.
2047
-     */
2048
-    function geodir_change_post_status($post_id = '', $status = '')
2049
-    {
2050
-        global $wpdb, $plugin_prefix;
2051
-
2052
-        $post_type = get_post_type($post_id);
2053
-
2054
-        $table = $plugin_prefix . $post_type . '_detail';
2055
-
2056
-        $wpdb->query(
2057
-            $wpdb->prepare(
2058
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2059
-                array($status, $post_id)
2060
-            )
2061
-        );
2062
-
2063
-
2064
-    }
2040
+	/**
2041
+	 * Change post status of a post.
2042
+	 *
2043
+	 * @global object $wpdb WordPress Database object.
2044
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2045
+	 * @param int|string $post_id The post ID.
2046
+	 * @param string $status New post status. Ex: draft, publish etc.
2047
+	 */
2048
+	function geodir_change_post_status($post_id = '', $status = '')
2049
+	{
2050
+		global $wpdb, $plugin_prefix;
2051
+
2052
+		$post_type = get_post_type($post_id);
2053
+
2054
+		$table = $plugin_prefix . $post_type . '_detail';
2055
+
2056
+		$wpdb->query(
2057
+			$wpdb->prepare(
2058
+				"UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2059
+				array($status, $post_id)
2060
+			)
2061
+		);
2062
+
2063
+
2064
+	}
2065 2065
 }
2066 2066
 
2067 2067
 /**
@@ -2075,13 +2075,13 @@  discard block
 block discarded – undo
2075 2075
  */
2076 2076
 function geodir_set_post_status($pid, $status)
2077 2077
 {
2078
-    if ($pid) {
2079
-        global $wpdb;
2080
-        $my_post = array();
2081
-        $my_post['post_status'] = $status;
2082
-        $my_post['ID'] = $pid;
2083
-        $last_postid = wp_update_post($my_post);
2084
-    }
2078
+	if ($pid) {
2079
+		global $wpdb;
2080
+		$my_post = array();
2081
+		$my_post['post_status'] = $status;
2082
+		$my_post['ID'] = $pid;
2083
+		$last_postid = wp_update_post($my_post);
2084
+	}
2085 2085
 }
2086 2086
 
2087 2087
 
@@ -2097,384 +2097,384 @@  discard block
 block discarded – undo
2097 2097
  */
2098 2098
 function geodir_update_poststatus($new_status, $old_status, $post)
2099 2099
 {
2100
-    global $wpdb;
2100
+	global $wpdb;
2101 2101
 
2102
-    $geodir_posttypes = geodir_get_posttypes();
2102
+	$geodir_posttypes = geodir_get_posttypes();
2103 2103
 
2104
-    if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2104
+	if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2105 2105
 
2106
-        geodir_change_post_status($post->ID, $new_status);
2107
-    }
2106
+		geodir_change_post_status($post->ID, $new_status);
2107
+	}
2108 2108
 }
2109 2109
 
2110 2110
 
2111 2111
 if (!function_exists('geodir_update_listing_info')) {
2112
-    /**
2113
-     * Update post info.
2114
-     *
2115
-     * @since 1.0.0
2116
-     * @package GeoDirectory
2117
-     * @global object $wpdb WordPress Database object.
2118
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2119
-     * @param int $updatingpost The updating post ID.
2120
-     * @param int $temppost The temporary post ID.
2121
-     * @todo fix post_id variable
2122
-     */
2123
-    function geodir_update_listing_info($updatingpost, $temppost)
2124
-    {
2125
-
2126
-        global $wpdb, $plugin_prefix;
2127
-
2128
-        $post_type = get_post_type($post_id);
2129
-
2130
-        $table = $plugin_prefix . $post_type . '_detail';
2131
-
2132
-        $wpdb->query(
2133
-            $wpdb->prepare(
2134
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2135
-                array($updatingpost, $temppost)
2136
-            )
2137
-        );
2138
-
2139
-        $wpdb->query(
2140
-            $wpdb->prepare(
2141
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2142
-                array($updatingpost, $temppost)
2143
-            )
2144
-        );
2145
-
2146
-        /* Update Attachments*/
2147
-
2148
-        $wpdb->query(
2149
-            $wpdb->prepare(
2150
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2151
-                array($updatingpost, $temppost)
2152
-            )
2153
-        );
2154
-
2155
-    }
2112
+	/**
2113
+	 * Update post info.
2114
+	 *
2115
+	 * @since 1.0.0
2116
+	 * @package GeoDirectory
2117
+	 * @global object $wpdb WordPress Database object.
2118
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2119
+	 * @param int $updatingpost The updating post ID.
2120
+	 * @param int $temppost The temporary post ID.
2121
+	 * @todo fix post_id variable
2122
+	 */
2123
+	function geodir_update_listing_info($updatingpost, $temppost)
2124
+	{
2125
+
2126
+		global $wpdb, $plugin_prefix;
2127
+
2128
+		$post_type = get_post_type($post_id);
2129
+
2130
+		$table = $plugin_prefix . $post_type . '_detail';
2131
+
2132
+		$wpdb->query(
2133
+			$wpdb->prepare(
2134
+				"UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2135
+				array($updatingpost, $temppost)
2136
+			)
2137
+		);
2138
+
2139
+		$wpdb->query(
2140
+			$wpdb->prepare(
2141
+				"UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2142
+				array($updatingpost, $temppost)
2143
+			)
2144
+		);
2145
+
2146
+		/* Update Attachments*/
2147
+
2148
+		$wpdb->query(
2149
+			$wpdb->prepare(
2150
+				"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2151
+				array($updatingpost, $temppost)
2152
+			)
2153
+		);
2154
+
2155
+	}
2156 2156
 }
2157 2157
 
2158 2158
 
2159 2159
 if (!function_exists('geodir_delete_listing_info')) {
2160
-    /**
2161
-     * Delete Listing info from details table for the given post id.
2162
-     *
2163
-     * @since 1.0.0
2164
-     * @package GeoDirectory
2165
-     * @global object $wpdb WordPress Database object.
2166
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2167
-     * @param int $deleted_postid The post ID.
2168
-     * @param bool $force Optional. Do you want to force delete it? Default: false.
2169
-     * @return bool|void
2170
-     */
2171
-    function geodir_delete_listing_info($deleted_postid, $force = false)
2172
-    {
2173
-        global $wpdb, $plugin_prefix;
2174
-
2175
-        // check for multisite deletions
2176
-        if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2177
-        } else {
2178
-            return;
2179
-        }
2180
-
2181
-        $post_type = get_post_type($deleted_postid);
2182
-
2183
-        $all_postypes = geodir_get_posttypes();
2184
-
2185
-        if (!in_array($post_type, $all_postypes))
2186
-            return false;
2187
-
2188
-        $table = $plugin_prefix . $post_type . '_detail';
2189
-
2190
-        /* Delete custom post meta*/
2191
-        $wpdb->query(
2192
-            $wpdb->prepare(
2193
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2194
-                array($deleted_postid)
2195
-            )
2196
-        );
2197
-
2198
-        /* Delete post map icons*/
2199
-
2200
-        $wpdb->query(
2201
-            $wpdb->prepare(
2202
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2203
-                array($deleted_postid)
2204
-            )
2205
-        );
2206
-
2207
-        /* Delete Attachments*/
2208
-        $postcurr_images = geodir_get_images($deleted_postid);
2209
-
2210
-        $wpdb->query(
2211
-            $wpdb->prepare(
2212
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2213
-                array($deleted_postid)
2214
-            )
2215
-        );
2216
-        geodir_remove_attachments($postcurr_images);
2217
-
2218
-    }
2160
+	/**
2161
+	 * Delete Listing info from details table for the given post id.
2162
+	 *
2163
+	 * @since 1.0.0
2164
+	 * @package GeoDirectory
2165
+	 * @global object $wpdb WordPress Database object.
2166
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2167
+	 * @param int $deleted_postid The post ID.
2168
+	 * @param bool $force Optional. Do you want to force delete it? Default: false.
2169
+	 * @return bool|void
2170
+	 */
2171
+	function geodir_delete_listing_info($deleted_postid, $force = false)
2172
+	{
2173
+		global $wpdb, $plugin_prefix;
2174
+
2175
+		// check for multisite deletions
2176
+		if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2177
+		} else {
2178
+			return;
2179
+		}
2180
+
2181
+		$post_type = get_post_type($deleted_postid);
2182
+
2183
+		$all_postypes = geodir_get_posttypes();
2184
+
2185
+		if (!in_array($post_type, $all_postypes))
2186
+			return false;
2187
+
2188
+		$table = $plugin_prefix . $post_type . '_detail';
2189
+
2190
+		/* Delete custom post meta*/
2191
+		$wpdb->query(
2192
+			$wpdb->prepare(
2193
+				"DELETE FROM " . $table . " WHERE `post_id` = %d",
2194
+				array($deleted_postid)
2195
+			)
2196
+		);
2197
+
2198
+		/* Delete post map icons*/
2199
+
2200
+		$wpdb->query(
2201
+			$wpdb->prepare(
2202
+				"DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2203
+				array($deleted_postid)
2204
+			)
2205
+		);
2206
+
2207
+		/* Delete Attachments*/
2208
+		$postcurr_images = geodir_get_images($deleted_postid);
2209
+
2210
+		$wpdb->query(
2211
+			$wpdb->prepare(
2212
+				"DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2213
+				array($deleted_postid)
2214
+			)
2215
+		);
2216
+		geodir_remove_attachments($postcurr_images);
2217
+
2218
+	}
2219 2219
 }
2220 2220
 
2221 2221
 
2222 2222
 if (!function_exists('geodir_add_to_favorite')) {
2223
-    /**
2224
-     * This function would add listing to favorite listing.
2225
-     *
2226
-     * @since 1.0.0
2227
-     * @package GeoDirectory
2228
-     * @global object $current_user Current user object.
2229
-     * @param int $post_id The post ID.
2230
-     */
2231
-    function geodir_add_to_favorite($post_id)
2232
-    {
2233
-
2234
-        global $current_user;
2235
-
2236
-        /**
2237
-         * Filter to modify "Unfavorite" text
2238
-         *
2239
-         * You can use this filter to rename "Unfavorite" text to something else.
2240
-         *
2241
-         * @since 1.0.0
2242
-         * @package GeoDirectory
2243
-         */
2244
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2245
-
2246
-        /**
2247
-         * Filter to modify "Remove from Favorites" text
2248
-         *
2249
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2250
-         *
2251
-         * @since 1.0.0
2252
-         * @package GeoDirectory
2253
-         */
2254
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2255
-
2256
-        /**
2257
-         * Filter to modify "fa fa-heart" icon
2258
-         *
2259
-         * You can use this filter to change "fa fa-heart" icon to something else.
2260
-         *
2261
-         * @since 1.0.0
2262
-         * @package GeoDirectory
2263
-         */
2264
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2223
+	/**
2224
+	 * This function would add listing to favorite listing.
2225
+	 *
2226
+	 * @since 1.0.0
2227
+	 * @package GeoDirectory
2228
+	 * @global object $current_user Current user object.
2229
+	 * @param int $post_id The post ID.
2230
+	 */
2231
+	function geodir_add_to_favorite($post_id)
2232
+	{
2233
+
2234
+		global $current_user;
2235
+
2236
+		/**
2237
+		 * Filter to modify "Unfavorite" text
2238
+		 *
2239
+		 * You can use this filter to rename "Unfavorite" text to something else.
2240
+		 *
2241
+		 * @since 1.0.0
2242
+		 * @package GeoDirectory
2243
+		 */
2244
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2245
+
2246
+		/**
2247
+		 * Filter to modify "Remove from Favorites" text
2248
+		 *
2249
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2250
+		 *
2251
+		 * @since 1.0.0
2252
+		 * @package GeoDirectory
2253
+		 */
2254
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2255
+
2256
+		/**
2257
+		 * Filter to modify "fa fa-heart" icon
2258
+		 *
2259
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2260
+		 *
2261
+		 * @since 1.0.0
2262
+		 * @package GeoDirectory
2263
+		 */
2264
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2265
+
2266
+		$user_meta_data = array();
2267
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2268
+
2269
+		if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2270
+			$user_meta_data[] = $post_id;
2271
+		}
2272
+
2273
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2274
+
2275
+		/**
2276
+		 * Called before adding the post from favourites.
2277
+		 *
2278
+		 * @since 1.0.0
2279
+		 * @package GeoDirectory
2280
+		 * @param int $post_id The post ID.
2281
+		 */
2282
+		do_action('geodir_before_add_from_favorite', $post_id);
2283
+
2284
+		echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>';
2285
+
2286
+		/**
2287
+		 * Called after adding the post from favourites.
2288
+		 *
2289
+		 * @since 1.0.0
2290
+		 * @package GeoDirectory
2291
+		 * @param int $post_id The post ID.
2292
+		 */
2293
+		do_action('geodir_after_add_from_favorite', $post_id);
2265 2294
 
2266
-        $user_meta_data = array();
2267
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2268
-
2269
-        if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2270
-            $user_meta_data[] = $post_id;
2271
-        }
2272
-
2273
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2274
-
2275
-        /**
2276
-         * Called before adding the post from favourites.
2277
-         *
2278
-         * @since 1.0.0
2279
-         * @package GeoDirectory
2280
-         * @param int $post_id The post ID.
2281
-         */
2282
-        do_action('geodir_before_add_from_favorite', $post_id);
2283
-
2284
-        echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>';
2285
-
2286
-        /**
2287
-         * Called after adding the post from favourites.
2288
-         *
2289
-         * @since 1.0.0
2290
-         * @package GeoDirectory
2291
-         * @param int $post_id The post ID.
2292
-         */
2293
-        do_action('geodir_after_add_from_favorite', $post_id);
2294
-
2295
-    }
2295
+	}
2296 2296
 }
2297 2297
 
2298 2298
 if (!function_exists('geodir_remove_from_favorite')) {
2299
-    /**
2300
-     * This function would remove the favourited property earlier.
2301
-     *
2302
-     * @since 1.0.0
2303
-     * @package GeoDirectory
2304
-     * @global object $current_user Current user object.
2305
-     * @param int $post_id The post ID.
2306
-     */
2307
-    function geodir_remove_from_favorite($post_id)
2308
-    {
2309
-        global $current_user;
2310
-
2311
-        /**
2312
-         * Filter to modify "Add to Favorites" text
2313
-         *
2314
-         * You can use this filter to rename "Add to Favorites" text to something else.
2315
-         *
2316
-         * @since 1.0.0
2317
-         * @package GeoDirectory
2318
-         */
2319
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2320
-
2321
-        /**
2322
-         * Filter to modify "Favourite" text
2323
-         *
2324
-         * You can use this filter to rename "Favourite" text to something else.
2325
-         *
2326
-         * @since 1.0.0
2327
-         * @package GeoDirectory
2328
-         */
2329
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2330
-
2331
-        /**
2332
-         * Filter to modify "fa fa-heart" icon
2333
-         *
2334
-         * You can use this filter to change "fa fa-heart" icon to something else.
2335
-         *
2336
-         * @since 1.0.0
2337
-         * @package GeoDirectory
2338
-         */
2339
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2340
-
2341
-        $user_meta_data = array();
2342
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2343
-
2344
-        if (!empty($user_meta_data)) {
2299
+	/**
2300
+	 * This function would remove the favourited property earlier.
2301
+	 *
2302
+	 * @since 1.0.0
2303
+	 * @package GeoDirectory
2304
+	 * @global object $current_user Current user object.
2305
+	 * @param int $post_id The post ID.
2306
+	 */
2307
+	function geodir_remove_from_favorite($post_id)
2308
+	{
2309
+		global $current_user;
2310
+
2311
+		/**
2312
+		 * Filter to modify "Add to Favorites" text
2313
+		 *
2314
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2315
+		 *
2316
+		 * @since 1.0.0
2317
+		 * @package GeoDirectory
2318
+		 */
2319
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2320
+
2321
+		/**
2322
+		 * Filter to modify "Favourite" text
2323
+		 *
2324
+		 * You can use this filter to rename "Favourite" text to something else.
2325
+		 *
2326
+		 * @since 1.0.0
2327
+		 * @package GeoDirectory
2328
+		 */
2329
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2330
+
2331
+		/**
2332
+		 * Filter to modify "fa fa-heart" icon
2333
+		 *
2334
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2335
+		 *
2336
+		 * @since 1.0.0
2337
+		 * @package GeoDirectory
2338
+		 */
2339
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2340
+
2341
+		$user_meta_data = array();
2342
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2343
+
2344
+		if (!empty($user_meta_data)) {
2345
+
2346
+			if (($key = array_search($post_id, $user_meta_data)) !== false) {
2347
+				unset($user_meta_data[$key]);
2348
+			}
2345 2349
 
2346
-            if (($key = array_search($post_id, $user_meta_data)) !== false) {
2347
-                unset($user_meta_data[$key]);
2348
-            }
2350
+		}
2349 2351
 
2350
-        }
2352
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2351 2353
 
2352
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2354
+		/**
2355
+		 * Called before removing the post from favourites.
2356
+		 *
2357
+		 * @since 1.0.0
2358
+		 * @package GeoDirectory
2359
+		 * @param int $post_id The post ID.
2360
+		 */
2361
+		do_action('geodir_before_remove_from_favorite', $post_id);
2353 2362
 
2354
-        /**
2355
-         * Called before removing the post from favourites.
2356
-         *
2357
-         * @since 1.0.0
2358
-         * @package GeoDirectory
2359
-         * @param int $post_id The post ID.
2360
-         */
2361
-        do_action('geodir_before_remove_from_favorite', $post_id);
2363
+		echo '<a href="javascript:void(0);"  title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>';
2362 2364
 
2363
-        echo '<a href="javascript:void(0);"  title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>';
2365
+		/**
2366
+		 * Called after removing the post from favourites.
2367
+		 *
2368
+		 * @since 1.0.0
2369
+		 * @package GeoDirectory
2370
+		 * @param int $post_id The post ID.
2371
+		 */
2372
+		do_action('geodir_after_remove_from_favorite', $post_id);
2364 2373
 
2365
-        /**
2366
-         * Called after removing the post from favourites.
2367
-         *
2368
-         * @since 1.0.0
2369
-         * @package GeoDirectory
2370
-         * @param int $post_id The post ID.
2371
-         */
2372
-        do_action('geodir_after_remove_from_favorite', $post_id);
2373
-
2374
-    }
2374
+	}
2375 2375
 }
2376 2376
 
2377 2377
 if (!function_exists('geodir_favourite_html')) {
2378
-    /**
2379
-     * This function would display the html content for add to favorite or remove from favorite.
2380
-     *
2381
-     * @since 1.0.0
2382
-     * @package GeoDirectory
2383
-     * @global object $current_user Current user object.
2384
-     * @global object $post The current post object.
2385
-     * @param int $user_id The user ID.
2386
-     * @param int $post_id The post ID.
2387
-     */
2388
-    function geodir_favourite_html($user_id, $post_id)
2389
-    {
2390
-
2391
-        global $current_user, $post;
2392
-
2393
-        /**
2394
-         * Filter to modify "Add to Favorites" text
2395
-         *
2396
-         * You can use this filter to rename "Add to Favorites" text to something else.
2397
-         *
2398
-         * @since 1.0.0
2399
-         * @package GeoDirectory
2400
-         */
2401
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2402
-
2403
-        /**
2404
-         * Filter to modify "Favourite" text
2405
-         *
2406
-         * You can use this filter to rename "Favourite" text to something else.
2407
-         *
2408
-         * @since 1.0.0
2409
-         * @package GeoDirectory
2410
-         */
2411
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2412
-
2413
-        /**
2414
-         * Filter to modify "Unfavorite" text
2415
-         *
2416
-         * You can use this filter to rename "Unfavorite" text to something else.
2417
-         *
2418
-         * @since 1.0.0
2419
-         * @package GeoDirectory
2420
-         */
2421
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2422
-
2423
-        /**
2424
-         * Filter to modify "Remove from Favorites" text
2425
-         *
2426
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2427
-         *
2428
-         * @since 1.0.0
2429
-         * @package GeoDirectory
2430
-         */
2431
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2432
-
2433
-        /**
2434
-         * Filter to modify "fa fa-heart" icon
2435
-         *
2436
-         * You can use this filter to change "fa fa-heart" icon to something else.
2437
-         *
2438
-         * @since 1.0.0
2439
-         * @package GeoDirectory
2440
-         */
2441
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2442
-
2443
-        /**
2444
-         * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2445
-         *
2446
-         * You can use this filter to change "fa fa-heart" icon to something else.
2447
-         *
2448
-         * @since 1.0.0
2449
-         * @package GeoDirectory
2450
-         */
2451
-        $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2452
-
2453
-        $user_meta_data = '';
2454
-        if (isset($current_user->data->ID))
2455
-            $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2456
-
2457
-        if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2458
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2378
+	/**
2379
+	 * This function would display the html content for add to favorite or remove from favorite.
2380
+	 *
2381
+	 * @since 1.0.0
2382
+	 * @package GeoDirectory
2383
+	 * @global object $current_user Current user object.
2384
+	 * @global object $post The current post object.
2385
+	 * @param int $user_id The user ID.
2386
+	 * @param int $post_id The post ID.
2387
+	 */
2388
+	function geodir_favourite_html($user_id, $post_id)
2389
+	{
2390
+
2391
+		global $current_user, $post;
2392
+
2393
+		/**
2394
+		 * Filter to modify "Add to Favorites" text
2395
+		 *
2396
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2397
+		 *
2398
+		 * @since 1.0.0
2399
+		 * @package GeoDirectory
2400
+		 */
2401
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2402
+
2403
+		/**
2404
+		 * Filter to modify "Favourite" text
2405
+		 *
2406
+		 * You can use this filter to rename "Favourite" text to something else.
2407
+		 *
2408
+		 * @since 1.0.0
2409
+		 * @package GeoDirectory
2410
+		 */
2411
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2412
+
2413
+		/**
2414
+		 * Filter to modify "Unfavorite" text
2415
+		 *
2416
+		 * You can use this filter to rename "Unfavorite" text to something else.
2417
+		 *
2418
+		 * @since 1.0.0
2419
+		 * @package GeoDirectory
2420
+		 */
2421
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2422
+
2423
+		/**
2424
+		 * Filter to modify "Remove from Favorites" text
2425
+		 *
2426
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2427
+		 *
2428
+		 * @since 1.0.0
2429
+		 * @package GeoDirectory
2430
+		 */
2431
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2432
+
2433
+		/**
2434
+		 * Filter to modify "fa fa-heart" icon
2435
+		 *
2436
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2437
+		 *
2438
+		 * @since 1.0.0
2439
+		 * @package GeoDirectory
2440
+		 */
2441
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2442
+
2443
+		/**
2444
+		 * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2445
+		 *
2446
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2447
+		 *
2448
+		 * @since 1.0.0
2449
+		 * @package GeoDirectory
2450
+		 */
2451
+		$unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2452
+
2453
+		$user_meta_data = '';
2454
+		if (isset($current_user->data->ID))
2455
+			$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2456
+
2457
+		if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2458
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2459 2459
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2460 2460
                 onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2461 2461
                 title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2462 2462
             </a>   </span><?php
2463 2463
 
2464
-        } else {
2464
+		} else {
2465 2465
 
2466
-            if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2467
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2468
-            } else
2469
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2466
+			if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2467
+				$script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2468
+			} else
2469
+				$script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2470 2470
 
2471
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2471
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2472 2472
                                                                                         href="javascript:void(0);"
2473 2473
                                                                                         onclick="<?php echo $script_text;?>"
2474 2474
                                                                                         title="<?php echo $add_favourite_text;?>"><i
2475 2475
                     class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2476 2476
         <?php }
2477
-    }
2477
+	}
2478 2478
 }
2479 2479
 
2480 2480
 
@@ -2491,54 +2491,54 @@  discard block
 block discarded – undo
2491 2491
 function geodir_get_cat_postcount($term = array())
2492 2492
 {
2493 2493
 
2494
-    if (!empty($term)) {
2494
+	if (!empty($term)) {
2495 2495
 
2496
-        global $wpdb, $plugin_prefix;
2496
+		global $wpdb, $plugin_prefix;
2497 2497
 
2498
-        $where = '';
2499
-        $join = '';
2500
-        if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2501
-            $taxonomy_obj = get_taxonomy($term->taxonomy);
2498
+		$where = '';
2499
+		$join = '';
2500
+		if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2501
+			$taxonomy_obj = get_taxonomy($term->taxonomy);
2502 2502
 
2503
-            $post_type = $taxonomy_obj->object_type[0];
2503
+			$post_type = $taxonomy_obj->object_type[0];
2504 2504
 
2505
-            $table = $plugin_prefix . $post_type . '_detail';
2505
+			$table = $plugin_prefix . $post_type . '_detail';
2506 2506
 
2507
-            /**
2508
-             * Filter to modify the 'join' query
2509
-             *
2510
-             * @since 1.0.0
2511
-             * @package GeoDirectory
2512
-             * @param object|array $term category / term object that need to be processed.
2513
-             * @param string $join The join query.
2514
-             */
2515
-            $join = apply_filters('geodir_cat_post_count_join', $join, $term);
2507
+			/**
2508
+			 * Filter to modify the 'join' query
2509
+			 *
2510
+			 * @since 1.0.0
2511
+			 * @package GeoDirectory
2512
+			 * @param object|array $term category / term object that need to be processed.
2513
+			 * @param string $join The join query.
2514
+			 */
2515
+			$join = apply_filters('geodir_cat_post_count_join', $join, $term);
2516 2516
 
2517
-            /**
2518
-             * Filter to modify the 'where' query
2519
-             *
2520
-             * @since 1.0.0
2521
-             * @package GeoDirectory
2522
-             * @param object|array $term category / term object that need to be processed.
2523
-             * @param string $where The where query.
2524
-             */
2525
-            $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2517
+			/**
2518
+			 * Filter to modify the 'where' query
2519
+			 *
2520
+			 * @since 1.0.0
2521
+			 * @package GeoDirectory
2522
+			 * @param object|array $term category / term object that need to be processed.
2523
+			 * @param string $where The where query.
2524
+			 */
2525
+			$where = apply_filters('geodir_cat_post_count_where', $where, $term);
2526 2526
 
2527
-            $count_query = "SELECT count(post_id) FROM
2527
+			$count_query = "SELECT count(post_id) FROM
2528 2528
 							" . $table . " as pd " . $join . "
2529 2529
 							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2530 2530
 
2531
-            $cat_post_count = $wpdb->get_var($count_query);
2532
-            if (empty($cat_post_count) || is_wp_error($cat_post_count))
2533
-                $cat_post_count = 0;
2531
+			$cat_post_count = $wpdb->get_var($count_query);
2532
+			if (empty($cat_post_count) || is_wp_error($cat_post_count))
2533
+				$cat_post_count = 0;
2534 2534
 
2535
-            return $cat_post_count;
2535
+			return $cat_post_count;
2536 2536
 
2537
-        } else
2537
+		} else
2538 2538
 
2539
-            return $term->count;
2540
-    }
2541
-    return false;
2539
+			return $term->count;
2540
+	}
2541
+	return false;
2542 2542
 
2543 2543
 }
2544 2544
 
@@ -2551,17 +2551,17 @@  discard block
 block discarded – undo
2551 2551
  */
2552 2552
 function geodir_allow_post_type_frontend()
2553 2553
 {
2554
-    $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2554
+	$geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2555 2555
 
2556
-    if (!is_admin() && isset($_REQUEST['listing_type'])
2557
-        && !empty($geodir_allow_posttype_frontend)
2558
-        && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2559
-    ) {
2556
+	if (!is_admin() && isset($_REQUEST['listing_type'])
2557
+		&& !empty($geodir_allow_posttype_frontend)
2558
+		&& !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2559
+	) {
2560 2560
 
2561
-        wp_redirect(home_url());
2562
-        exit;
2561
+		wp_redirect(home_url());
2562
+		exit;
2563 2563
 
2564
-    }
2564
+	}
2565 2565
 
2566 2566
 }
2567 2567
 
@@ -2578,20 +2578,20 @@  discard block
 block discarded – undo
2578 2578
  */
2579 2579
 function geodir_excerpt_length($length)
2580 2580
 {
2581
-    global $wp_query, $geodir_is_widget_listing;
2581
+	global $wp_query, $geodir_is_widget_listing;
2582 2582
 	if ($geodir_is_widget_listing) {
2583 2583
 		return $length;
2584 2584
 	}
2585 2585
 	
2586
-    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2587
-        $length = get_option('geodir_desc_word_limit');
2588
-    elseif (get_query_var('excerpt_length'))
2589
-        $length = get_query_var('excerpt_length');
2586
+	if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2587
+		$length = get_option('geodir_desc_word_limit');
2588
+	elseif (get_query_var('excerpt_length'))
2589
+		$length = get_query_var('excerpt_length');
2590 2590
 
2591
-    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2592
-        $length = get_option('geodir_author_desc_word_limit');
2591
+	if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2592
+		$length = get_option('geodir_author_desc_word_limit');
2593 2593
 
2594
-    return $length;
2594
+	return $length;
2595 2595
 }
2596 2596
 
2597 2597
 /**
@@ -2606,13 +2606,13 @@  discard block
 block discarded – undo
2606 2606
  */
2607 2607
 function geodir_excerpt_more($more)
2608 2608
 {
2609
-    global $post;
2610
-    $all_postypes = geodir_get_posttypes();
2611
-    if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2612
-        return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2613
-    }
2609
+	global $post;
2610
+	$all_postypes = geodir_get_posttypes();
2611
+	if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2612
+		return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2613
+	}
2614 2614
 
2615
-    return $more;
2615
+	return $more;
2616 2616
 }
2617 2617
 
2618 2618
 
@@ -2629,63 +2629,63 @@  discard block
 block discarded – undo
2629 2629
  */
2630 2630
 function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy)
2631 2631
 {
2632
-    global $plugin_prefix, $wpdb;
2632
+	global $plugin_prefix, $wpdb;
2633 2633
 
2634
-    $gd_taxonomies = geodir_get_taxonomies();
2634
+	$gd_taxonomies = geodir_get_taxonomies();
2635 2635
 
2636
-    if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2636
+	if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2637 2637
 
2638
-        $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2639
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2638
+		$geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2639
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
2640 2640
 
2641
-        $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2642
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2641
+		$path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2642
+		$term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2643 2643
 
2644
-        $posts = $wpdb->get_results(
2645
-            $wpdb->prepare(
2646
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2647
-                array($term_id, $taxonomy)
2648
-            )
2649
-        );
2644
+		$posts = $wpdb->get_results(
2645
+			$wpdb->prepare(
2646
+				"SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2647
+				array($term_id, $taxonomy)
2648
+			)
2649
+		);
2650 2650
 
2651
-        if (!empty($posts)):
2652
-            foreach ($posts as $post_obj) {
2651
+		if (!empty($posts)):
2652
+			foreach ($posts as $post_obj) {
2653 2653
 
2654
-                $lat = $post_obj->post_latitude;
2655
-                $lng = $post_obj->post_longitude;
2654
+				$lat = $post_obj->post_latitude;
2655
+				$lng = $post_obj->post_longitude;
2656 2656
 
2657
-                $json = '{';
2658
-                $json .= '"id":"' . $post_obj->post_id . '",';
2659
-                $json .= '"lat_pos": "' . $lat . '",';
2660
-                $json .= '"long_pos": "' . $lng . '",';
2661
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2662
-                $json .= '"icon":"' . $term_icon . '",';
2663
-                $json .= '"group":"catgroup' . $term_id . '"';
2664
-                $json .= '}';
2657
+				$json = '{';
2658
+				$json .= '"id":"' . $post_obj->post_id . '",';
2659
+				$json .= '"lat_pos": "' . $lat . '",';
2660
+				$json .= '"long_pos": "' . $lng . '",';
2661
+				$json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2662
+				$json .= '"icon":"' . $term_icon . '",';
2663
+				$json .= '"group":"catgroup' . $term_id . '"';
2664
+				$json .= '}';
2665 2665
 
2666
-                if ($post_obj->default_category == $term_id) {
2666
+				if ($post_obj->default_category == $term_id) {
2667 2667
 
2668
-                    $wpdb->query(
2669
-                        $wpdb->prepare(
2670
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2671
-                            array($json, $post_obj->post_id)
2672
-                        )
2673
-                    );
2674
-                }
2668
+					$wpdb->query(
2669
+						$wpdb->prepare(
2670
+							"UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2671
+							array($json, $post_obj->post_id)
2672
+						)
2673
+					);
2674
+				}
2675 2675
 
2676
-                $wpdb->query(
2677
-                    $wpdb->prepare(
2678
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2679
-                        array($json, $post_obj->post_id, $term_id)
2680
-                    )
2681
-                );
2676
+				$wpdb->query(
2677
+					$wpdb->prepare(
2678
+						"UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2679
+						array($json, $post_obj->post_id, $term_id)
2680
+					)
2681
+				);
2682 2682
 
2683
-            }
2683
+			}
2684 2684
 
2685 2685
 
2686
-        endif;
2686
+		endif;
2687 2687
 
2688
-    }
2688
+	}
2689 2689
 
2690 2690
 }
2691 2691
 
@@ -2699,14 +2699,14 @@  discard block
 block discarded – undo
2699 2699
  */
2700 2700
 function geodir_get_listing_author($listing_id = '')
2701 2701
 {
2702
-    if ($listing_id == '') {
2703
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2704
-            $listing_id = $_REQUEST['pid'];
2705
-        }
2706
-    }
2707
-    $listing = get_post(strip_tags($listing_id));
2708
-    $listing_author_id = $listing->post_author;
2709
-    return $listing_author_id;
2702
+	if ($listing_id == '') {
2703
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2704
+			$listing_id = $_REQUEST['pid'];
2705
+		}
2706
+	}
2707
+	$listing = get_post(strip_tags($listing_id));
2708
+	$listing_author_id = $listing->post_author;
2709
+	return $listing_author_id;
2710 2710
 }
2711 2711
 
2712 2712
 
@@ -2721,11 +2721,11 @@  discard block
 block discarded – undo
2721 2721
  */
2722 2722
 function geodir_lisiting_belong_to_user($listing_id, $user_id)
2723 2723
 {
2724
-    $listing_author_id = geodir_get_listing_author($listing_id);
2725
-    if ($listing_author_id == $user_id)
2726
-        return true;
2727
-    else
2728
-        return false;
2724
+	$listing_author_id = geodir_get_listing_author($listing_id);
2725
+	if ($listing_author_id == $user_id)
2726
+		return true;
2727
+	else
2728
+		return false;
2729 2729
 
2730 2730
 }
2731 2731
 
@@ -2741,17 +2741,17 @@  discard block
 block discarded – undo
2741 2741
  */
2742 2742
 function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true)
2743 2743
 {
2744
-    global $current_user;
2745
-    if ($exclude_admin) {
2746
-        foreach ($current_user->caps as $key => $caps) {
2747
-            if (geodir_strtolower($key) == 'administrator') {
2748
-                return true;
2749
-                break;
2750
-            }
2751
-        }
2752
-    }
2753
-
2754
-    return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2744
+	global $current_user;
2745
+	if ($exclude_admin) {
2746
+		foreach ($current_user->caps as $key => $caps) {
2747
+			if (geodir_strtolower($key) == 'administrator') {
2748
+				return true;
2749
+				break;
2750
+			}
2751
+		}
2752
+	}
2753
+
2754
+	return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2755 2755
 }
2756 2756
 
2757 2757
 
@@ -2767,17 +2767,17 @@  discard block
 block discarded – undo
2767 2767
 function geodir_only_supportable_attachments_remove($file)
2768 2768
 {
2769 2769
 
2770
-    global $wpdb;
2770
+	global $wpdb;
2771 2771
 
2772
-    $matches = array();
2772
+	$matches = array();
2773 2773
 
2774
-    $pattern = '/-\d+x\d+\./';
2775
-    preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2774
+	$pattern = '/-\d+x\d+\./';
2775
+	preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2776 2776
 
2777
-    if (empty($matches))
2778
-        return '';
2779
-    else
2780
-        return $file;
2777
+	if (empty($matches))
2778
+		return '';
2779
+	else
2780
+		return $file;
2781 2781
 
2782 2782
 }
2783 2783
 
@@ -2794,78 +2794,78 @@  discard block
 block discarded – undo
2794 2794
 function geodir_set_wp_featured_image($post_id)
2795 2795
 {
2796 2796
 
2797
-    global $wpdb, $plugin_prefix;
2798
-    $uploads = wp_upload_dir();
2797
+	global $wpdb, $plugin_prefix;
2798
+	$uploads = wp_upload_dir();
2799 2799
 //	print_r($uploads ) ;
2800
-    $post_first_image = $wpdb->get_results(
2801
-        $wpdb->prepare(
2802
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2803
-        )
2804
-    );
2800
+	$post_first_image = $wpdb->get_results(
2801
+		$wpdb->prepare(
2802
+			"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2803
+		)
2804
+	);
2805 2805
 
2806
-    $old_attachment_name = '';
2807
-    $post_thumbnail_id = '';
2808
-    if (has_post_thumbnail($post_id)) {
2806
+	$old_attachment_name = '';
2807
+	$post_thumbnail_id = '';
2808
+	if (has_post_thumbnail($post_id)) {
2809 2809
 
2810
-        if (has_post_thumbnail($post_id)) {
2810
+		if (has_post_thumbnail($post_id)) {
2811 2811
 
2812
-            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2812
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
2813 2813
 
2814
-            $old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2814
+			$old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2815 2815
 
2816
-        }
2817
-    }
2818
-
2819
-    if (!empty($post_first_image)) {
2816
+		}
2817
+	}
2820 2818
 
2821
-        $post_type = get_post_type($post_id);
2819
+	if (!empty($post_first_image)) {
2822 2820
 
2823
-        $table_name = $plugin_prefix . $post_type . '_detail';
2821
+		$post_type = get_post_type($post_id);
2824 2822
 
2825
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2823
+		$table_name = $plugin_prefix . $post_type . '_detail';
2826 2824
 
2827
-        $new_attachment_name = basename($post_first_image[0]->file);
2825
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2828 2826
 
2829
-        if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2827
+		$new_attachment_name = basename($post_first_image[0]->file);
2830 2828
 
2831
-            if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2829
+		if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2832 2830
 
2833
-                add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2831
+			if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2834 2832
 
2835
-                wp_delete_attachment($post_thumbnail_id);
2833
+				add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2836 2834
 
2837
-            }
2838
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2835
+				wp_delete_attachment($post_thumbnail_id);
2839 2836
 
2840
-            $attachment = array(
2841
-                'post_mime_type' => $post_first_image[0]->mime_type,
2842
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2843
-                'post_parent' => $post_id,
2844
-                'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2845
-                'post_content' => ''
2846
-            );
2837
+			}
2838
+			$filename = $uploads['basedir'] . $post_first_image[0]->file;
2839
+
2840
+			$attachment = array(
2841
+				'post_mime_type' => $post_first_image[0]->mime_type,
2842
+				'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2843
+				'post_parent' => $post_id,
2844
+				'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2845
+				'post_content' => ''
2846
+			);
2847 2847
 
2848 2848
 
2849
-            $id = wp_insert_attachment($attachment, $filename, $post_id);
2849
+			$id = wp_insert_attachment($attachment, $filename, $post_id);
2850 2850
 
2851
-            if (!is_wp_error($id)) {
2851
+			if (!is_wp_error($id)) {
2852 2852
 
2853
-                set_post_thumbnail($post_id, $id);
2853
+				set_post_thumbnail($post_id, $id);
2854 2854
 
2855
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2856
-                wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2855
+				require_once(ABSPATH . 'wp-admin/includes/image.php');
2856
+				wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2857 2857
 
2858
-            }
2858
+			}
2859 2859
 
2860
-        }
2860
+		}
2861 2861
 
2862
-    } else {
2863
-        //set_post_thumbnail($post_id,-1);
2862
+	} else {
2863
+		//set_post_thumbnail($post_id,-1);
2864 2864
 
2865
-        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2866
-            wp_delete_attachment($post_thumbnail_id);
2865
+		if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2866
+			wp_delete_attachment($post_thumbnail_id);
2867 2867
 
2868
-    }
2868
+	}
2869 2869
 }
2870 2870
 
2871 2871
 
@@ -2880,53 +2880,53 @@  discard block
 block discarded – undo
2880 2880
  */
2881 2881
 function gd_copy_original_translation()
2882 2882
 {
2883
-    if (function_exists('icl_object_id')) {
2884
-        global $wpdb, $table_prefix, $plugin_prefix;
2885
-        $post_id = absint($_POST['post_id']);
2886
-        $upload_dir = wp_upload_dir();
2887
-        $post_type = get_post_type($_POST['post_id']);
2888
-        $table = $plugin_prefix . $post_type . '_detail';
2889
-
2890
-        $post_arr = $wpdb->get_results($wpdb->prepare(
2891
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2892
-            array($post_id)
2893
-        )
2894
-            , ARRAY_A);
2895
-
2896
-        $arrImages = $wpdb->get_results(
2897
-            $wpdb->prepare(
2898
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2899
-                array('%image%', $post_id)
2900
-            )
2901
-        );
2902
-        if ($arrImages) {
2903
-            $image_arr = array();
2904
-            foreach ($arrImages as $img) {
2905
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
2906
-            }
2907
-            $comma_separated = implode(",", $image_arr);
2908
-            $post_arr[0]['post_images'] = $comma_separated;
2909
-        }
2910
-
2911
-
2912
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2913
-        $cat_arr = array_filter(explode(",", $cats));
2914
-        $trans_cat = array();
2915
-        foreach ($cat_arr as $cat) {
2916
-            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2917
-        }
2918
-
2919
-
2920
-        $post_arr[0]['categories'] = array_filter($trans_cat);
2883
+	if (function_exists('icl_object_id')) {
2884
+		global $wpdb, $table_prefix, $plugin_prefix;
2885
+		$post_id = absint($_POST['post_id']);
2886
+		$upload_dir = wp_upload_dir();
2887
+		$post_type = get_post_type($_POST['post_id']);
2888
+		$table = $plugin_prefix . $post_type . '_detail';
2889
+
2890
+		$post_arr = $wpdb->get_results($wpdb->prepare(
2891
+			"SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2892
+			array($post_id)
2893
+		)
2894
+			, ARRAY_A);
2895
+
2896
+		$arrImages = $wpdb->get_results(
2897
+			$wpdb->prepare(
2898
+				"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2899
+				array('%image%', $post_id)
2900
+			)
2901
+		);
2902
+		if ($arrImages) {
2903
+			$image_arr = array();
2904
+			foreach ($arrImages as $img) {
2905
+				$image_arr[] = $upload_dir['baseurl'] . $img->file;
2906
+			}
2907
+			$comma_separated = implode(",", $image_arr);
2908
+			$post_arr[0]['post_images'] = $comma_separated;
2909
+		}
2910
+
2911
+
2912
+		$cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2913
+		$cat_arr = array_filter(explode(",", $cats));
2914
+		$trans_cat = array();
2915
+		foreach ($cat_arr as $cat) {
2916
+			$trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2917
+		}
2918
+
2919
+
2920
+		$post_arr[0]['categories'] = array_filter($trans_cat);
2921 2921
 //print_r($image_arr);
2922
-        //print_r($arrImages);
2923
-        //echo $_REQUEST['lang'];
2922
+		//print_r($arrImages);
2923
+		//echo $_REQUEST['lang'];
2924 2924
 //print_r($post_arr);
2925 2925
 //print_r($trans_cat);
2926
-        echo json_encode($post_arr[0]);
2926
+		echo json_encode($post_arr[0]);
2927 2927
 
2928
-    }
2929
-    die();
2928
+	}
2929
+	die();
2930 2930
 }
2931 2931
 
2932 2932
 
@@ -2946,54 +2946,54 @@  discard block
 block discarded – undo
2946 2946
 function geodir_get_custom_fields_type($listing_type = '')
2947 2947
 {
2948 2948
 
2949
-    global $wpdb;
2949
+	global $wpdb;
2950 2950
 
2951
-    if ($listing_type == '')
2952
-        $listing_type = 'gd_place';
2951
+	if ($listing_type == '')
2952
+		$listing_type = 'gd_place';
2953 2953
 
2954
-    $fields_info = array();
2954
+	$fields_info = array();
2955 2955
 
2956
-    $get_data = $wpdb->get_results(
2957
-        $wpdb->prepare(
2958
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2959
-            array($listing_type)
2960
-        )
2961
-    );
2956
+	$get_data = $wpdb->get_results(
2957
+		$wpdb->prepare(
2958
+			"SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2959
+			array($listing_type)
2960
+		)
2961
+	);
2962 2962
 
2963
-    if (!empty($get_data)) {
2963
+	if (!empty($get_data)) {
2964 2964
 
2965
-        foreach ($get_data as $data) {
2965
+		foreach ($get_data as $data) {
2966 2966
 
2967
-            if ($data->field_type == 'address') {
2967
+			if ($data->field_type == 'address') {
2968 2968
 
2969
-                $extra_fields = unserialize($data->extra_fields);
2969
+				$extra_fields = unserialize($data->extra_fields);
2970 2970
 
2971
-                $prefix = $data->htmlvar_name . '_';
2971
+				$prefix = $data->htmlvar_name . '_';
2972 2972
 
2973
-                $fields_info[$prefix . 'address'] = $data->field_type;
2973
+				$fields_info[$prefix . 'address'] = $data->field_type;
2974 2974
 
2975
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2976
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
2975
+				if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2976
+					$fields_info[$prefix . 'zip'] = $data->field_type;
2977 2977
 
2978
-            } else {
2978
+			} else {
2979 2979
 
2980
-                $fields_info[$data->htmlvar_name] = $data->field_type;
2980
+				$fields_info[$data->htmlvar_name] = $data->field_type;
2981 2981
 
2982
-            }
2982
+			}
2983 2983
 
2984
-        }
2984
+		}
2985 2985
 
2986
-    }
2986
+	}
2987 2987
 
2988
-    /**
2989
-     * Filter to modify custom fields info using listing post type.
2990
-     *
2991
-     * @since 1.0.0
2992
-     * @package GeoDirectory
2993
-     * @return array $fields_info Custom fields info.
2994
-     * @param string $listing_type The listing post type.
2995
-     */
2996
-    return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
2988
+	/**
2989
+	 * Filter to modify custom fields info using listing post type.
2990
+	 *
2991
+	 * @since 1.0.0
2992
+	 * @package GeoDirectory
2993
+	 * @return array $fields_info Custom fields info.
2994
+	 * @param string $listing_type The listing post type.
2995
+	 */
2996
+	return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
2997 2997
 }
2998 2998
 
2999 2999
 
@@ -3008,58 +3008,58 @@  discard block
 block discarded – undo
3008 3008
  */
3009 3009
 function geodir_function_post_updated($post_ID, $post_after, $post_before)
3010 3010
 {
3011
-    $post_type = get_post_type($post_ID);
3011
+	$post_type = get_post_type($post_ID);
3012 3012
 
3013
-    if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3014
-        // send notification to client when post moves from draft to publish
3015
-        if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
3016
-            $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3017
-            $post_author_data = get_userdata($post_author_id);
3013
+	if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3014
+		// send notification to client when post moves from draft to publish
3015
+		if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
3016
+			$post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3017
+			$post_author_data = get_userdata($post_author_id);
3018 3018
 
3019
-            $to_name = geodir_get_client_name($post_author_id);
3019
+			$to_name = geodir_get_client_name($post_author_id);
3020 3020
 
3021
-            $from_email = geodir_get_site_email_id();
3022
-            $from_name = get_site_emailName();
3023
-            $to_email = $post_author_data->user_email;
3021
+			$from_email = geodir_get_site_email_id();
3022
+			$from_name = get_site_emailName();
3023
+			$to_email = $post_author_data->user_email;
3024 3024
 
3025
-            if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3026
-                $to_email = $post_author_data->user_email;
3027
-            }
3025
+			if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3026
+				$to_email = $post_author_data->user_email;
3027
+			}
3028 3028
 
3029
-            $message_type = 'listing_published';
3029
+			$message_type = 'listing_published';
3030 3030
 
3031
-            if (get_option('geodir_post_published_email_subject') == '') {
3032
-                update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3033
-            }
3031
+			if (get_option('geodir_post_published_email_subject') == '') {
3032
+				update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3033
+			}
3034 3034
 
3035
-            if (get_option('geodir_post_published_email_content') == '') {
3036
-                update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
3037
-            }
3035
+			if (get_option('geodir_post_published_email_content') == '') {
3036
+				update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
3037
+			}
3038 3038
 
3039
-            /**
3040
-             * Called before sending the email when listing gets published.
3041
-             *
3042
-             * @since 1.0.0
3043
-             * @package GeoDirectory
3044
-             * @param object $post_after The post object after update.
3045
-             * @param object $post_before The post object before update.
3046
-             */
3047
-            do_action('geodir_before_listing_published_email', $post_after, $post_before);
3048
-            if (is_email($to_email)) {
3049
-                geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3050
-            }
3039
+			/**
3040
+			 * Called before sending the email when listing gets published.
3041
+			 *
3042
+			 * @since 1.0.0
3043
+			 * @package GeoDirectory
3044
+			 * @param object $post_after The post object after update.
3045
+			 * @param object $post_before The post object before update.
3046
+			 */
3047
+			do_action('geodir_before_listing_published_email', $post_after, $post_before);
3048
+			if (is_email($to_email)) {
3049
+				geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3050
+			}
3051 3051
 
3052
-            /**
3053
-             * Called after sending the email when listing gets published.
3054
-             *
3055
-             * @since 1.0.0
3056
-             * @package GeoDirectory
3057
-             * @param object $post_after The post object after update.
3058
-             * @param object $post_before The post object before update.
3059
-             */
3060
-            do_action('geodir_after_listing_published_email', $post_after, $post_before);
3061
-        }
3062
-    }
3052
+			/**
3053
+			 * Called after sending the email when listing gets published.
3054
+			 *
3055
+			 * @since 1.0.0
3056
+			 * @package GeoDirectory
3057
+			 * @param object $post_after The post object after update.
3058
+			 * @param object $post_before The post object before update.
3059
+			 */
3060
+			do_action('geodir_after_listing_published_email', $post_after, $post_before);
3061
+		}
3062
+	}
3063 3063
 }
3064 3064
 
3065 3065
 add_action('wp_head', 'geodir_fb_like_thumbnail');
@@ -3073,14 +3073,14 @@  discard block
 block discarded – undo
3073 3073
  */
3074 3074
 function geodir_fb_like_thumbnail(){
3075 3075
 
3076
-    // return if not a single post
3077
-    if(!is_single()){return;}
3076
+	// return if not a single post
3077
+	if(!is_single()){return;}
3078 3078
 
3079
-    global $post;
3080
-    if(isset($post->featured_image) && $post->featured_image){
3081
-        $upload_dir = wp_upload_dir();
3082
-        $thumb = $upload_dir['baseurl'].$post->featured_image;
3083
-        echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3079
+	global $post;
3080
+	if(isset($post->featured_image) && $post->featured_image){
3081
+		$upload_dir = wp_upload_dir();
3082
+		$thumb = $upload_dir['baseurl'].$post->featured_image;
3083
+		echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3084 3084
 
3085
-    }
3085
+	}
3086 3086
 }
3087 3087
\ No newline at end of file
Please login to merge, or discard this patch.