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