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