Test Failed
Push — master ( c1a3f2...8bc267 )
by
unknown
04:43
created
geodirectory-widgets/geodirectory_bestof_widget.php 1 patch
Indentation   +519 added lines, -519 removed lines patch added patch discarded remove patch
@@ -14,282 +14,282 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class geodir_bestof_widget extends WP_Widget
16 16
 {
17
-    /**
18
-     * Register the best of widget with WordPress.
19
-     *
20
-     * @since 1.3.9
21
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
-     */
23
-    public function __construct()
24
-    {
25
-        $widget_ops = array('classname' => 'geodir_bestof_widget', 'description' => __('GD > Best of widget', 'geodirectory'));
26
-        parent::__construct(
27
-            'bestof_widget', // Base ID
28
-            __('GD > Best of widget', 'geodirectory'), // Name
29
-            $widget_ops// Args
30
-        );
31
-    }
32
-
33
-    /**
34
-     * Front-end display content for best of widget.
35
-     *
36
-     * @since 1.3.9
37
-     * @since 1.5.1 Added filter to view all link.
38
-     * @since 1.5.1 Declare function public.
39
-     *
40
-     * @param array $args Widget arguments.
41
-     * @param array $instance Saved values from database.
42
-     */
43
-    public function widget($args, $instance)
44
-    {
45
-        extract($args);
46
-        /**
47
-         * Filter the best of widget tab layout.
48
-         *
49
-         * @since 1.3.9
50
-         *
51
-         * @param string $instance ['tab_layout'] Best of widget tab layout name.
52
-         */
53
-        $tab_layout = empty($instance['tab_layout']) ? 'bestof-tabs-on-top' : apply_filters('bestof_widget_tab_layout', $instance['tab_layout']);
54
-        echo '<div class="bestof-widget-tab-layout ' . $tab_layout . '">';
55
-        echo $before_widget;
56
-        $loc_terms = geodir_get_current_location_terms();
57
-        if (!empty($loc_terms)) {
58
-            $cur_location = ' : ' . geodir_ucwords(str_replace('-', ' ', end($loc_terms)));
59
-        } else {
60
-            $cur_location = '';
61
-        }
62
-
63
-        /**
64
-         * Filter the current location name.
65
-         *
66
-         * @since 1.3.9
67
-         *
68
-         * @param string $cur_location Current location name.
69
-         */
70
-        $cur_location = apply_filters('bestof_widget_cur_location', $cur_location);
71
-
72
-        /**
73
-         * Filter the widget title.
74
-         *
75
-         * @since 1.3.9
76
-         *
77
-         * @param string $instance ['title'] The widget title.
78
-         */
79
-        $title = empty($instance['title']) ? wp_sprintf(__('Best of %s', 'geodirectory'), get_bloginfo('name') . $cur_location) : apply_filters('bestof_widget_title', __($instance['title'], 'geodirectory'));
80
-
81
-        /**
82
-         * Filter the post type.
83
-         *
84
-         * @since 1.3.9
85
-         *
86
-         * @param string $instance ['post_type'] The post type.
87
-         */
88
-        $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('bestof_widget_post_type', $instance['post_type']);
89
-
90
-        /**
91
-         * Filter the excerpt type.
92
-         *
93
-         * @since 1.5.4
94
-         *
95
-         * @param string $instance ['excerpt_type'] The excerpt type.
96
-         */
97
-        $excerpt_type = empty($instance['excerpt_type']) ? 'show-desc' : apply_filters('bestof_widget_excerpt_type', $instance['excerpt_type']);
98
-
99
-
100
-        /**
101
-         * Filter the listing limit.
102
-         *
103
-         * @since 1.3.9
104
-         *
105
-         * @param int $instance ['post_limit'] No. of posts to display.
106
-         */
107
-        $post_limit = empty($instance['post_limit']) ? '5' : apply_filters('bestof_widget_post_limit', $instance['post_limit']);
108
-
109
-        /**
110
-         * Filter the category limit.
111
-         *
112
-         * @since 1.3.9
113
-         *
114
-         * @param int $instance ['categ_limit'] No. of categories to display.
115
-         */
116
-        $categ_limit = empty($instance['categ_limit']) ? '3' : apply_filters('bestof_widget_categ_limit', $instance['categ_limit']);
117
-        $use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
118
-
119
-        /**
120
-         * Filter the use of location filter.
121
-         *
122
-         * @since 1.3.9
123
-         *
124
-         * @param int|bool $instance ['add_location_filter'] Filter listings using current location.
125
-         */
126
-        $add_location_filter = empty($instance['add_location_filter']) ? '1' : apply_filters('bestof_widget_location_filter', $instance['add_location_filter']);
127
-
128
-        // set post type to current viewing post type
129
-        if ($use_viewing_post_type) {
130
-            $current_post_type = geodir_get_current_posttype();
131
-            if ($current_post_type != '' && $current_post_type != $post_type) {
132
-                $post_type = $current_post_type;
133
-            }
134
-        }
135
-
136
-        if (isset($instance['character_count'])) {
137
-            /**
138
-             * Filter the widget's excerpt character count.
139
-             *
140
-             * @since 1.3.9
141
-             *
142
-             * @param int $instance ['character_count'] Excerpt character count.
143
-             */
144
-            $character_count = apply_filters('bestof_widget_list_character_count', $instance['character_count']);
145
-        } else {
146
-            $character_count = '';
147
-        }
148
-
149
-        $category_taxonomy = geodir_get_taxonomies($post_type);
150
-
151
-        $term_args = array(
152
-            'hide_empty' => true,
153
-            'parent' => 0
154
-        );
155
-
156
-        $term_args = apply_filters('bestof_widget_term_args', $term_args);
157
-
158
-        if (is_tax()) {
159
-            $taxonomy = get_query_var('taxonomy');
160
-            $cur_term = get_query_var('term');
161
-            $term_data = get_term_by('name', $cur_term, $taxonomy);
162
-            $term_args['parent'] = $term_data->term_id;
163
-        }
164
-
165
-        $terms = get_terms($category_taxonomy[0], $term_args);
166
-
167
-        $term_reviews = geodir_count_reviews_by_terms();
168
-        $a_terms = array();
169
-        foreach ($terms as $term) {
170
-
171
-
172
-            if ($term->count > 0) {
173
-                if (isset($term_reviews[$term->term_id])) {
174
-                    $term->review_count = $term_reviews[$term->term_id];
175
-                } else {
176
-                    $term->review_count = '0';
177
-                }
178
-
179
-                $a_terms[] = $term;
180
-            }
181
-
182
-        }
183
-
184
-
185
-        $terms = apply_filters('bestof_widget_sort_terms', geodir_sort_terms($a_terms, 'review_count'), $a_terms);
186
-
187
-        $query_args = array(
188
-            'posts_per_page' => $post_limit,
189
-            'is_geodir_loop' => true,
190
-            'post_type' => $post_type,
191
-            'gd_location' => $add_location_filter ? true : false,
192
-            'order_by' => 'high_review'
193
-        );
194
-        if ($character_count >= 0) {
195
-            $query_args['excerpt_length'] = $character_count;
196
-        }
197
-
198
-        $layout = array();
199
-        if ($tab_layout == 'bestof-tabs-as-dropdown') {
200
-            $layout[] = $tab_layout;
201
-        } else {
202
-            $layout[] = 'bestof-tabs-as-dropdown';
203
-            $layout[] = $tab_layout;
204
-        }
205
-
206
-
207
-        echo $before_title . __($title,'geodirectory') . $after_title;
208
-
209
-        //term navigation - start
210
-        echo '<div class="geodir-tabs gd-bestof-tabs" id="gd-bestof-tabs" style="position:relative;">';
211
-
212
-        $final_html = '';
213
-        foreach ($layout as $tab_layout) {
214
-            $nav_html = '';
215
-            $is_dropdown = ($tab_layout == 'bestof-tabs-as-dropdown') ? true : false;
216
-
217
-            if ($is_dropdown) {
218
-                $nav_html .= '<select id="geodir_bestof_tab_dd" class="chosen_select" name="geodir_bestof_tab_dd" data-placeholder="' . esc_attr(__('Select Category', 'geodirectory')) . '">';
219
-            } else {
220
-                $nav_html .= '<dl class="geodir-tab-head geodir-bestof-cat-list">';
221
-                $nav_html .= '<dt></dt>';
222
-            }
223
-
224
-
225
-            $term_icon = geodir_get_term_icon();
226
-            $cat_count = 0;
227
-            if (!empty($terms)) {
228
-                foreach ($terms as $cat) {
229
-                    $cat_count++;
230
-                    if ($cat_count > $categ_limit) {
231
-                        break;
232
-                    }
233
-                    if ($is_dropdown) {
234
-                        $selected = ($cat_count == 1) ? 'selected="selected"' : '';
235
-                        $nav_html .= '<option ' . $selected . ' value="' . $cat->term_id . '">' . geodir_ucwords($cat->name) . '</option>';
236
-                    } else {
237
-                        if ($cat_count == 1) {
238
-                            $nav_html .= '<dd class="geodir-tab-active">';
239
-                        } else {
240
-                            $nav_html .= '<dd class="">';
241
-                        }
242
-                        $term_icon_url = !empty($term_icon) && isset($term_icon[$cat->term_id]) ? $term_icon[$cat->term_id] : '';
243
-                        $nav_html .= '<a data-termid="' . $cat->term_id . '" href="' . get_term_link($cat, $cat->taxonomy) . '">';
244
-                        $nav_html .= '<img alt="' . $cat->name . ' icon" class="bestof-cat-icon" src="' . $term_icon_url . '"/>';
245
-                        $nav_html .= '<span>';
246
-                        $nav_html .= geodir_ucwords($cat->name);
247
-                        $nav_html .= '<small>';
248
-                        if (isset($cat->review_count)) {
249
-                            $num_reviews = $cat->review_count;
250
-                            if ($num_reviews == 0) {
251
-                                $reviews = __('No Reviews', 'geodirectory');
252
-                            } elseif ($num_reviews > 1) {
253
-                                $reviews = $num_reviews . __(' Reviews', 'geodirectory');
254
-                            } else {
255
-                                $reviews = __('1 Review', 'geodirectory');
256
-                            }
257
-                            $nav_html .= $reviews;
258
-                        }
259
-                        $nav_html .= '</small>';
260
-                        $nav_html .= '</span>';
261
-                        $nav_html .= '</a>';
262
-                        $nav_html .= '</dd>';
263
-                    }
264
-                }
265
-            }
266
-
267
-            if ($is_dropdown) {
268
-                $nav_html .= '</select>';
269
-            } else {
270
-                $nav_html .= '</dl>';
271
-            }
272
-            $final_html .= $nav_html;
273
-        }
274
-        if ($terms) {
275
-            echo $final_html;
276
-        }
277
-        echo '</div>';
278
-        //term navigation - end
279
-
280
-        //first term listings by default - start
281
-        $first_term = '';
282
-        if ($terms) {
283
-            $first_term = $terms[0];
284
-            $tax_query = array(
285
-                'taxonomy' => $category_taxonomy[0],
286
-                'field' => 'id',
287
-                'terms' => $first_term->term_id
288
-            );
289
-            $query_args['tax_query'] = array($tax_query);
290
-        }
291
-
292
-        ?>
17
+	/**
18
+	 * Register the best of widget with WordPress.
19
+	 *
20
+	 * @since 1.3.9
21
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
+	 */
23
+	public function __construct()
24
+	{
25
+		$widget_ops = array('classname' => 'geodir_bestof_widget', 'description' => __('GD > Best of widget', 'geodirectory'));
26
+		parent::__construct(
27
+			'bestof_widget', // Base ID
28
+			__('GD > Best of widget', 'geodirectory'), // Name
29
+			$widget_ops// Args
30
+		);
31
+	}
32
+
33
+	/**
34
+	 * Front-end display content for best of widget.
35
+	 *
36
+	 * @since 1.3.9
37
+	 * @since 1.5.1 Added filter to view all link.
38
+	 * @since 1.5.1 Declare function public.
39
+	 *
40
+	 * @param array $args Widget arguments.
41
+	 * @param array $instance Saved values from database.
42
+	 */
43
+	public function widget($args, $instance)
44
+	{
45
+		extract($args);
46
+		/**
47
+		 * Filter the best of widget tab layout.
48
+		 *
49
+		 * @since 1.3.9
50
+		 *
51
+		 * @param string $instance ['tab_layout'] Best of widget tab layout name.
52
+		 */
53
+		$tab_layout = empty($instance['tab_layout']) ? 'bestof-tabs-on-top' : apply_filters('bestof_widget_tab_layout', $instance['tab_layout']);
54
+		echo '<div class="bestof-widget-tab-layout ' . $tab_layout . '">';
55
+		echo $before_widget;
56
+		$loc_terms = geodir_get_current_location_terms();
57
+		if (!empty($loc_terms)) {
58
+			$cur_location = ' : ' . geodir_ucwords(str_replace('-', ' ', end($loc_terms)));
59
+		} else {
60
+			$cur_location = '';
61
+		}
62
+
63
+		/**
64
+		 * Filter the current location name.
65
+		 *
66
+		 * @since 1.3.9
67
+		 *
68
+		 * @param string $cur_location Current location name.
69
+		 */
70
+		$cur_location = apply_filters('bestof_widget_cur_location', $cur_location);
71
+
72
+		/**
73
+		 * Filter the widget title.
74
+		 *
75
+		 * @since 1.3.9
76
+		 *
77
+		 * @param string $instance ['title'] The widget title.
78
+		 */
79
+		$title = empty($instance['title']) ? wp_sprintf(__('Best of %s', 'geodirectory'), get_bloginfo('name') . $cur_location) : apply_filters('bestof_widget_title', __($instance['title'], 'geodirectory'));
80
+
81
+		/**
82
+		 * Filter the post type.
83
+		 *
84
+		 * @since 1.3.9
85
+		 *
86
+		 * @param string $instance ['post_type'] The post type.
87
+		 */
88
+		$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('bestof_widget_post_type', $instance['post_type']);
89
+
90
+		/**
91
+		 * Filter the excerpt type.
92
+		 *
93
+		 * @since 1.5.4
94
+		 *
95
+		 * @param string $instance ['excerpt_type'] The excerpt type.
96
+		 */
97
+		$excerpt_type = empty($instance['excerpt_type']) ? 'show-desc' : apply_filters('bestof_widget_excerpt_type', $instance['excerpt_type']);
98
+
99
+
100
+		/**
101
+		 * Filter the listing limit.
102
+		 *
103
+		 * @since 1.3.9
104
+		 *
105
+		 * @param int $instance ['post_limit'] No. of posts to display.
106
+		 */
107
+		$post_limit = empty($instance['post_limit']) ? '5' : apply_filters('bestof_widget_post_limit', $instance['post_limit']);
108
+
109
+		/**
110
+		 * Filter the category limit.
111
+		 *
112
+		 * @since 1.3.9
113
+		 *
114
+		 * @param int $instance ['categ_limit'] No. of categories to display.
115
+		 */
116
+		$categ_limit = empty($instance['categ_limit']) ? '3' : apply_filters('bestof_widget_categ_limit', $instance['categ_limit']);
117
+		$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
118
+
119
+		/**
120
+		 * Filter the use of location filter.
121
+		 *
122
+		 * @since 1.3.9
123
+		 *
124
+		 * @param int|bool $instance ['add_location_filter'] Filter listings using current location.
125
+		 */
126
+		$add_location_filter = empty($instance['add_location_filter']) ? '1' : apply_filters('bestof_widget_location_filter', $instance['add_location_filter']);
127
+
128
+		// set post type to current viewing post type
129
+		if ($use_viewing_post_type) {
130
+			$current_post_type = geodir_get_current_posttype();
131
+			if ($current_post_type != '' && $current_post_type != $post_type) {
132
+				$post_type = $current_post_type;
133
+			}
134
+		}
135
+
136
+		if (isset($instance['character_count'])) {
137
+			/**
138
+			 * Filter the widget's excerpt character count.
139
+			 *
140
+			 * @since 1.3.9
141
+			 *
142
+			 * @param int $instance ['character_count'] Excerpt character count.
143
+			 */
144
+			$character_count = apply_filters('bestof_widget_list_character_count', $instance['character_count']);
145
+		} else {
146
+			$character_count = '';
147
+		}
148
+
149
+		$category_taxonomy = geodir_get_taxonomies($post_type);
150
+
151
+		$term_args = array(
152
+			'hide_empty' => true,
153
+			'parent' => 0
154
+		);
155
+
156
+		$term_args = apply_filters('bestof_widget_term_args', $term_args);
157
+
158
+		if (is_tax()) {
159
+			$taxonomy = get_query_var('taxonomy');
160
+			$cur_term = get_query_var('term');
161
+			$term_data = get_term_by('name', $cur_term, $taxonomy);
162
+			$term_args['parent'] = $term_data->term_id;
163
+		}
164
+
165
+		$terms = get_terms($category_taxonomy[0], $term_args);
166
+
167
+		$term_reviews = geodir_count_reviews_by_terms();
168
+		$a_terms = array();
169
+		foreach ($terms as $term) {
170
+
171
+
172
+			if ($term->count > 0) {
173
+				if (isset($term_reviews[$term->term_id])) {
174
+					$term->review_count = $term_reviews[$term->term_id];
175
+				} else {
176
+					$term->review_count = '0';
177
+				}
178
+
179
+				$a_terms[] = $term;
180
+			}
181
+
182
+		}
183
+
184
+
185
+		$terms = apply_filters('bestof_widget_sort_terms', geodir_sort_terms($a_terms, 'review_count'), $a_terms);
186
+
187
+		$query_args = array(
188
+			'posts_per_page' => $post_limit,
189
+			'is_geodir_loop' => true,
190
+			'post_type' => $post_type,
191
+			'gd_location' => $add_location_filter ? true : false,
192
+			'order_by' => 'high_review'
193
+		);
194
+		if ($character_count >= 0) {
195
+			$query_args['excerpt_length'] = $character_count;
196
+		}
197
+
198
+		$layout = array();
199
+		if ($tab_layout == 'bestof-tabs-as-dropdown') {
200
+			$layout[] = $tab_layout;
201
+		} else {
202
+			$layout[] = 'bestof-tabs-as-dropdown';
203
+			$layout[] = $tab_layout;
204
+		}
205
+
206
+
207
+		echo $before_title . __($title,'geodirectory') . $after_title;
208
+
209
+		//term navigation - start
210
+		echo '<div class="geodir-tabs gd-bestof-tabs" id="gd-bestof-tabs" style="position:relative;">';
211
+
212
+		$final_html = '';
213
+		foreach ($layout as $tab_layout) {
214
+			$nav_html = '';
215
+			$is_dropdown = ($tab_layout == 'bestof-tabs-as-dropdown') ? true : false;
216
+
217
+			if ($is_dropdown) {
218
+				$nav_html .= '<select id="geodir_bestof_tab_dd" class="chosen_select" name="geodir_bestof_tab_dd" data-placeholder="' . esc_attr(__('Select Category', 'geodirectory')) . '">';
219
+			} else {
220
+				$nav_html .= '<dl class="geodir-tab-head geodir-bestof-cat-list">';
221
+				$nav_html .= '<dt></dt>';
222
+			}
223
+
224
+
225
+			$term_icon = geodir_get_term_icon();
226
+			$cat_count = 0;
227
+			if (!empty($terms)) {
228
+				foreach ($terms as $cat) {
229
+					$cat_count++;
230
+					if ($cat_count > $categ_limit) {
231
+						break;
232
+					}
233
+					if ($is_dropdown) {
234
+						$selected = ($cat_count == 1) ? 'selected="selected"' : '';
235
+						$nav_html .= '<option ' . $selected . ' value="' . $cat->term_id . '">' . geodir_ucwords($cat->name) . '</option>';
236
+					} else {
237
+						if ($cat_count == 1) {
238
+							$nav_html .= '<dd class="geodir-tab-active">';
239
+						} else {
240
+							$nav_html .= '<dd class="">';
241
+						}
242
+						$term_icon_url = !empty($term_icon) && isset($term_icon[$cat->term_id]) ? $term_icon[$cat->term_id] : '';
243
+						$nav_html .= '<a data-termid="' . $cat->term_id . '" href="' . get_term_link($cat, $cat->taxonomy) . '">';
244
+						$nav_html .= '<img alt="' . $cat->name . ' icon" class="bestof-cat-icon" src="' . $term_icon_url . '"/>';
245
+						$nav_html .= '<span>';
246
+						$nav_html .= geodir_ucwords($cat->name);
247
+						$nav_html .= '<small>';
248
+						if (isset($cat->review_count)) {
249
+							$num_reviews = $cat->review_count;
250
+							if ($num_reviews == 0) {
251
+								$reviews = __('No Reviews', 'geodirectory');
252
+							} elseif ($num_reviews > 1) {
253
+								$reviews = $num_reviews . __(' Reviews', 'geodirectory');
254
+							} else {
255
+								$reviews = __('1 Review', 'geodirectory');
256
+							}
257
+							$nav_html .= $reviews;
258
+						}
259
+						$nav_html .= '</small>';
260
+						$nav_html .= '</span>';
261
+						$nav_html .= '</a>';
262
+						$nav_html .= '</dd>';
263
+					}
264
+				}
265
+			}
266
+
267
+			if ($is_dropdown) {
268
+				$nav_html .= '</select>';
269
+			} else {
270
+				$nav_html .= '</dl>';
271
+			}
272
+			$final_html .= $nav_html;
273
+		}
274
+		if ($terms) {
275
+			echo $final_html;
276
+		}
277
+		echo '</div>';
278
+		//term navigation - end
279
+
280
+		//first term listings by default - start
281
+		$first_term = '';
282
+		if ($terms) {
283
+			$first_term = $terms[0];
284
+			$tax_query = array(
285
+				'taxonomy' => $category_taxonomy[0],
286
+				'field' => 'id',
287
+				'terms' => $first_term->term_id
288
+			);
289
+			$query_args['tax_query'] = array($tax_query);
290
+		}
291
+
292
+		?>
293 293
         <input type="hidden" id="bestof_widget_post_type" name="bestof_widget_post_type"
294 294
                value="<?php echo $post_type; ?>">
295 295
         <input type="hidden" id="bestof_widget_excerpt_type" name="bestof_widget_excerpt_type"
@@ -300,110 +300,110 @@  discard block
 block discarded – undo
300 300
                value="<?php echo $category_taxonomy[0]; ?>">
301 301
         <input type="hidden" id="bestof_widget_location_filter" name="bestof_widget_location_filter"
302 302
                value="<?php if ($add_location_filter) {
303
-                   echo 1;
304
-               } else {
305
-                   echo 0;
306
-               } ?>">
303
+				   echo 1;
304
+			   } else {
305
+				   echo 0;
306
+			   } ?>">
307 307
         <input type="hidden" id="bestof_widget_char_count" name="bestof_widget_char_count"
308 308
                value="<?php echo $character_count; ?>">
309 309
         <div class="geo-bestof-contentwrap geodir-tabs-content" style="position: relative; z-index: 0;">
310 310
             <p id="geodir-bestof-loading" class="geodir-bestof-loading"><i class="fa fa-cog fa-spin"></i></p>
311 311
             <?php
312
-            echo '<div id="geodir-bestof-places">';
313
-            if ($terms) {
314
-                $view_all_link = add_query_arg(array('sort_by' => 'rating_count_desc'), get_term_link($first_term, $first_term->taxonomy));
315
-                /**
316
-                 * Filter the page link to view all lisitngs.
317
-                 *
318
-                 * @since 1.5.1
319
-                 *
320
-                 * @param array $view_all_link View all listings page link.
321
-                 * @param array $post_type The Post type.
322
-                 * @param array $first_term The category term object.
323
-                 */
324
-                $view_all_link = apply_filters('geodir_bestof_widget_view_all_link', $view_all_link, $post_type, $first_term);
325
-
326
-                echo '<h3 class="bestof-cat-title">' . wp_sprintf(__('Best of %s', 'geodirectory'), $first_term->name) . '<a href="' . esc_url($view_all_link) . '">' . __("View all", 'geodirectory') . '</a></h3>';
327
-            }
328
-            if ($excerpt_type == 'show-reviews') {
329
-                add_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
330
-            }
331
-            geodir_bestof_places_by_term($query_args);
332
-            if ($excerpt_type == 'show-reviews') {
333
-                remove_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
334
-            }
335
-            echo "</div>";
336
-            ?>
312
+			echo '<div id="geodir-bestof-places">';
313
+			if ($terms) {
314
+				$view_all_link = add_query_arg(array('sort_by' => 'rating_count_desc'), get_term_link($first_term, $first_term->taxonomy));
315
+				/**
316
+				 * Filter the page link to view all lisitngs.
317
+				 *
318
+				 * @since 1.5.1
319
+				 *
320
+				 * @param array $view_all_link View all listings page link.
321
+				 * @param array $post_type The Post type.
322
+				 * @param array $first_term The category term object.
323
+				 */
324
+				$view_all_link = apply_filters('geodir_bestof_widget_view_all_link', $view_all_link, $post_type, $first_term);
325
+
326
+				echo '<h3 class="bestof-cat-title">' . wp_sprintf(__('Best of %s', 'geodirectory'), $first_term->name) . '<a href="' . esc_url($view_all_link) . '">' . __("View all", 'geodirectory') . '</a></h3>';
327
+			}
328
+			if ($excerpt_type == 'show-reviews') {
329
+				add_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
330
+			}
331
+			geodir_bestof_places_by_term($query_args);
332
+			if ($excerpt_type == 'show-reviews') {
333
+				remove_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
334
+			}
335
+			echo "</div>";
336
+			?>
337 337
         </div>
338 338
         <?php //first term listings by default - end
339
-        ?>
339
+		?>
340 340
         <?php echo $after_widget;
341
-        echo "</div>";
342
-    }
343
-
344
-    /**
345
-     * Sanitize best of widget form values as they are saved.
346
-     *
347
-     * @since 1.3.9
348
-     * @since 1.5.1 Declare function public.
349
-     *
350
-     * @param array $new_instance Values just sent to be saved.
351
-     * @param array $old_instance Previously saved values from database.
352
-     *
353
-     * @return array Updated safe values to be saved.
354
-     */
355
-    public function update($new_instance, $old_instance)
356
-    {
357
-        $instance = $old_instance;
358
-        $instance['title'] = strip_tags($new_instance['title']);
359
-        $instance['post_type'] = strip_tags($new_instance['post_type']);
360
-        $instance['post_limit'] = strip_tags($new_instance['post_limit']);
361
-        $instance['categ_limit'] = strip_tags($new_instance['categ_limit']);
362
-        $instance['character_count'] = $new_instance['character_count'];
363
-        $instance['tab_layout'] = $new_instance['tab_layout'];
364
-        $instance['excerpt_type'] = $new_instance['excerpt_type'];
365
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
366
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
367
-        else
368
-            $instance['add_location_filter'] = '0';
369
-        $instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0;
370
-        return $instance;
371
-    }
372
-
373
-    /**
374
-     * Back-end best of widget settings form.
375
-     *
376
-     * @since 1.3.9
377
-     * @since 1.5.1 Declare function public.
378
-     *
379
-     * @param array $instance Previously saved values from database.
380
-     */
381
-    public function form($instance)
382
-    {
383
-        $instance = wp_parse_args((array)$instance,
384
-            array(
385
-                'title' => '',
386
-                'post_type' => '',
387
-                'post_limit' => '5',
388
-                'categ_limit' => '3',
389
-                'character_count' => '20',
390
-                'add_location_filter' => '1',
391
-                'tab_layout' => 'bestof-tabs-on-top',
392
-                'excerpt_type' => 'show-desc',
393
-                'use_viewing_post_type' => ''
394
-            )
395
-        );
396
-        $title = strip_tags($instance['title']);
397
-        $post_type = strip_tags($instance['post_type']);
398
-        $post_limit = strip_tags($instance['post_limit']);
399
-        $categ_limit = strip_tags($instance['categ_limit']);
400
-        $character_count = strip_tags($instance['character_count']);
401
-        $tab_layout = strip_tags($instance['tab_layout']);
402
-        $excerpt_type = strip_tags($instance['excerpt_type']);
403
-        $add_location_filter = strip_tags($instance['add_location_filter']);
404
-        $use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false;
405
-
406
-        ?>
341
+		echo "</div>";
342
+	}
343
+
344
+	/**
345
+	 * Sanitize best of widget form values as they are saved.
346
+	 *
347
+	 * @since 1.3.9
348
+	 * @since 1.5.1 Declare function public.
349
+	 *
350
+	 * @param array $new_instance Values just sent to be saved.
351
+	 * @param array $old_instance Previously saved values from database.
352
+	 *
353
+	 * @return array Updated safe values to be saved.
354
+	 */
355
+	public function update($new_instance, $old_instance)
356
+	{
357
+		$instance = $old_instance;
358
+		$instance['title'] = strip_tags($new_instance['title']);
359
+		$instance['post_type'] = strip_tags($new_instance['post_type']);
360
+		$instance['post_limit'] = strip_tags($new_instance['post_limit']);
361
+		$instance['categ_limit'] = strip_tags($new_instance['categ_limit']);
362
+		$instance['character_count'] = $new_instance['character_count'];
363
+		$instance['tab_layout'] = $new_instance['tab_layout'];
364
+		$instance['excerpt_type'] = $new_instance['excerpt_type'];
365
+		if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
366
+			$instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
367
+		else
368
+			$instance['add_location_filter'] = '0';
369
+		$instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0;
370
+		return $instance;
371
+	}
372
+
373
+	/**
374
+	 * Back-end best of widget settings form.
375
+	 *
376
+	 * @since 1.3.9
377
+	 * @since 1.5.1 Declare function public.
378
+	 *
379
+	 * @param array $instance Previously saved values from database.
380
+	 */
381
+	public function form($instance)
382
+	{
383
+		$instance = wp_parse_args((array)$instance,
384
+			array(
385
+				'title' => '',
386
+				'post_type' => '',
387
+				'post_limit' => '5',
388
+				'categ_limit' => '3',
389
+				'character_count' => '20',
390
+				'add_location_filter' => '1',
391
+				'tab_layout' => 'bestof-tabs-on-top',
392
+				'excerpt_type' => 'show-desc',
393
+				'use_viewing_post_type' => ''
394
+			)
395
+		);
396
+		$title = strip_tags($instance['title']);
397
+		$post_type = strip_tags($instance['post_type']);
398
+		$post_limit = strip_tags($instance['post_limit']);
399
+		$categ_limit = strip_tags($instance['categ_limit']);
400
+		$character_count = strip_tags($instance['character_count']);
401
+		$tab_layout = strip_tags($instance['tab_layout']);
402
+		$excerpt_type = strip_tags($instance['excerpt_type']);
403
+		$add_location_filter = strip_tags($instance['add_location_filter']);
404
+		$use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false;
405
+
406
+		?>
407 407
         <p>
408 408
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
409 409
 
@@ -418,14 +418,14 @@  discard block
 block discarded – undo
418 418
                 for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory');?>
419 419
 
420 420
                 <?php $postypes = geodir_get_posttypes();
421
-                /**
422
-                 * Filter the post types to display in widget.
423
-                 *
424
-                 * @since 1.3.9
425
-                 *
426
-                 * @param array $postypes Post types array.
427
-                 */
428
-                $postypes = apply_filters('geodir_post_type_list_in_p_widget', $postypes); ?>
421
+				/**
422
+				 * Filter the post types to display in widget.
423
+				 *
424
+				 * @since 1.3.9
425
+				 *
426
+				 * @param array $postypes Post types array.
427
+				 */
428
+				$postypes = apply_filters('geodir_post_type_list_in_p_widget', $postypes); ?>
429 429
 
430 430
                 <select class="widefat" id="<?php echo $this->get_field_id('post_type'); ?>"
431 431
                         name="<?php echo $this->get_field_name('post_type'); ?>"
@@ -434,9 +434,9 @@  discard block
 block discarded – undo
434 434
                     <?php foreach ($postypes as $postypes_obj) { ?>
435 435
 
436 436
                         <option <?php if ($post_type == $postypes_obj) {
437
-                            echo 'selected="selected"';
438
-                        } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
439
-                            echo ucfirst($extvalue[1]); ?></option>
437
+							echo 'selected="selected"';
438
+						} ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
439
+							echo ucfirst($extvalue[1]); ?></option>
440 440
 
441 441
                     <?php } ?>
442 442
 
@@ -482,14 +482,14 @@  discard block
 block discarded – undo
482 482
                         name="<?php echo $this->get_field_name('tab_layout'); ?>">
483 483
 
484 484
                     <option <?php if ($tab_layout == 'bestof-tabs-on-top') {
485
-                        echo 'selected="selected"';
486
-                    } ?> value="bestof-tabs-on-top"><?php _e('Tabs on Top', 'geodirectory'); ?></option>
485
+						echo 'selected="selected"';
486
+					} ?> value="bestof-tabs-on-top"><?php _e('Tabs on Top', 'geodirectory'); ?></option>
487 487
                     <option <?php if ($tab_layout == 'bestof-tabs-on-left') {
488
-                        echo 'selected="selected"';
489
-                    } ?> value="bestof-tabs-on-left"><?php _e('Tabs on Left', 'geodirectory'); ?></option>
488
+						echo 'selected="selected"';
489
+					} ?> value="bestof-tabs-on-left"><?php _e('Tabs on Left', 'geodirectory'); ?></option>
490 490
                     <option <?php if ($tab_layout == 'bestof-tabs-as-dropdown') {
491
-                        echo 'selected="selected"';
492
-                    } ?>
491
+						echo 'selected="selected"';
492
+					} ?>
493 493
                         value="bestof-tabs-as-dropdown"><?php _e('Tabs as Dropdown', 'geodirectory'); ?></option>
494 494
                 </select>
495 495
             </label>
@@ -503,11 +503,11 @@  discard block
 block discarded – undo
503 503
                         name="<?php echo $this->get_field_name('excerpt_type'); ?>">
504 504
 
505 505
                     <option <?php if ($excerpt_type == 'show-desc') {
506
-                        echo 'selected="selected"';
507
-                    } ?> value="show-desc"><?php _e('Show Description', 'geodirectory'); ?></option>
506
+						echo 'selected="selected"';
507
+					} ?> value="show-desc"><?php _e('Show Description', 'geodirectory'); ?></option>
508 508
                     <option <?php if ($excerpt_type == 'show-reviews') {
509
-                        echo 'selected="selected"';
510
-                    } ?> value="show-reviews"><?php _e('Show Reviews if Available', 'geodirectory'); ?></option>
509
+						echo 'selected="selected"';
510
+					} ?> value="show-reviews"><?php _e('Show Reviews if Available', 'geodirectory'); ?></option>
511 511
                 </select>
512 512
             </label>
513 513
         </p>
@@ -526,12 +526,12 @@  discard block
 block discarded – undo
526 526
                 for="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"><?php _e('Use current viewing post type:', 'geodirectory'); ?>
527 527
                 <input type="checkbox" id="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"
528 528
                        name="<?php echo $this->get_field_name('use_viewing_post_type'); ?>" <?php if ($use_viewing_post_type) {
529
-                    echo 'checked="checked"';
530
-                } ?>  value="1"/>
529
+					echo 'checked="checked"';
530
+				} ?>  value="1"/>
531 531
             </label>
532 532
         </p>
533 533
     <?php
534
-    }
534
+	}
535 535
 } // class geodir_bestof_widget
536 536
 
537 537
 register_widget('geodir_bestof_widget');
@@ -551,68 +551,68 @@  discard block
 block discarded – undo
551 551
  */
552 552
 function geodir_bestof_places_by_term($query_args)
553 553
 {
554
-    global $gd_session;
555
-
556
-    /**
557
-     * This action called before querying widget listings.
558
-     *
559
-     * @since 1.0.0
560
-     */
561
-    do_action('geodir_bestof_get_widget_listings_before');
562
-
563
-    $widget_listings = geodir_get_widget_listings($query_args);
564
-
565
-    /**
566
-     * This action called after querying widget listings.
567
-     *
568
-     * @since 1.0.0
569
-     */
570
-    do_action('geodir_bestof_get_widget_listings_after');
571
-
572
-    $character_count = isset($query_args['excerpt_length']) ? $query_args['excerpt_length'] : '';
573
-
574
-    if (!isset($character_count)) {
575
-        /** This filter is documented in geodirectory-widgets/geodirectory_bestof_widget.php */
576
-        $character_count = $character_count == '' ? 50 : apply_filters('bestof_widget_character_count', $character_count);
577
-    }
578
-
579
-    /** This filter is documented in geodirectory-functions/general_functions.php */
580
-    $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
581
-
582
-    global $post, $map_jason, $map_canvas_arr, $gridview_columns_widget, $geodir_is_widget_listing;
583
-    $current_post = $post;
584
-    $current_map_jason = $map_jason;
585
-    $current_map_canvas_arr = $map_canvas_arr;
586
-    $current_grid_view = $gridview_columns_widget;
587
-    $gridview_columns_widget = null;
588
-
589
-    $gd_listing_view_set = $gd_session->get('gd_listing_view') ? true : false;
590
-    $gd_listing_view_old = $gd_listing_view_set ? $gd_session->get('gd_listing_view') : '';
591
-
592
-    $gd_session->set('gd_listing_view', '1');
593
-    $geodir_is_widget_listing = true;
594
-
595
-    /**
596
-     * Includes the template for the listing listview.
597
-     *
598
-     * @since 1.3.9
599
-     */
600
-    include($template);
601
-
602
-    $geodir_is_widget_listing = false;
603
-
604
-    $GLOBALS['post'] = $current_post;
605
-    if (!empty($current_post)) {
606
-        setup_postdata($current_post);
607
-    }
608
-    if ($gd_listing_view_set) { // Set back previous value
609
-        $gd_session->set('gd_listing_view', $gd_listing_view_old);
610
-    } else {
611
-        $gd_session->un_set('gd_listing_view');
612
-    }
613
-    $map_jason = $current_map_jason;
614
-    $map_canvas_arr = $current_map_canvas_arr;
615
-    $gridview_columns_widget = $current_grid_view;
554
+	global $gd_session;
555
+
556
+	/**
557
+	 * This action called before querying widget listings.
558
+	 *
559
+	 * @since 1.0.0
560
+	 */
561
+	do_action('geodir_bestof_get_widget_listings_before');
562
+
563
+	$widget_listings = geodir_get_widget_listings($query_args);
564
+
565
+	/**
566
+	 * This action called after querying widget listings.
567
+	 *
568
+	 * @since 1.0.0
569
+	 */
570
+	do_action('geodir_bestof_get_widget_listings_after');
571
+
572
+	$character_count = isset($query_args['excerpt_length']) ? $query_args['excerpt_length'] : '';
573
+
574
+	if (!isset($character_count)) {
575
+		/** This filter is documented in geodirectory-widgets/geodirectory_bestof_widget.php */
576
+		$character_count = $character_count == '' ? 50 : apply_filters('bestof_widget_character_count', $character_count);
577
+	}
578
+
579
+	/** This filter is documented in geodirectory-functions/general_functions.php */
580
+	$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
581
+
582
+	global $post, $map_jason, $map_canvas_arr, $gridview_columns_widget, $geodir_is_widget_listing;
583
+	$current_post = $post;
584
+	$current_map_jason = $map_jason;
585
+	$current_map_canvas_arr = $map_canvas_arr;
586
+	$current_grid_view = $gridview_columns_widget;
587
+	$gridview_columns_widget = null;
588
+
589
+	$gd_listing_view_set = $gd_session->get('gd_listing_view') ? true : false;
590
+	$gd_listing_view_old = $gd_listing_view_set ? $gd_session->get('gd_listing_view') : '';
591
+
592
+	$gd_session->set('gd_listing_view', '1');
593
+	$geodir_is_widget_listing = true;
594
+
595
+	/**
596
+	 * Includes the template for the listing listview.
597
+	 *
598
+	 * @since 1.3.9
599
+	 */
600
+	include($template);
601
+
602
+	$geodir_is_widget_listing = false;
603
+
604
+	$GLOBALS['post'] = $current_post;
605
+	if (!empty($current_post)) {
606
+		setup_postdata($current_post);
607
+	}
608
+	if ($gd_listing_view_set) { // Set back previous value
609
+		$gd_session->set('gd_listing_view', $gd_listing_view_old);
610
+	} else {
611
+		$gd_session->un_set('gd_listing_view');
612
+	}
613
+	$map_jason = $current_map_jason;
614
+	$map_canvas_arr = $current_map_canvas_arr;
615
+	$gridview_columns_widget = $current_grid_view;
616 616
 }
617 617
 
618 618
 //Ajax functions
@@ -629,51 +629,51 @@  discard block
 block discarded – undo
629 629
  */
630 630
 function geodir_bestof_callback()
631 631
 {
632
-    check_ajax_referer('geodir-bestof-nonce', 'geodir_bestof_nonce');
633
-    //set variables
634
-    $post_type = strip_tags(esc_sql($_POST['post_type']));
635
-    $post_limit = strip_tags(esc_sql($_POST['post_limit']));
636
-    $character_count = strip_tags(esc_sql($_POST['char_count']));
637
-    $taxonomy = strip_tags(esc_sql($_POST['taxonomy']));
638
-    $add_location_filter = strip_tags(esc_sql($_POST['add_location_filter']));
639
-    $term_id = strip_tags(esc_sql($_POST['term_id']));
640
-    $excerpt_type = strip_tags(esc_sql($_POST['excerpt_type']));
641
-
642
-    $query_args = array(
643
-        'posts_per_page' => $post_limit,
644
-        'is_geodir_loop' => true,
645
-        'post_type' => $post_type,
646
-        'gd_location' => $add_location_filter ? true : false,
647
-        'order_by' => 'high_review'
648
-    );
649
-
650
-    if ($character_count >= 0) {
651
-        $query_args['excerpt_length'] = $character_count;
652
-    }
653
-
654
-    $tax_query = array(
655
-        'taxonomy' => $taxonomy,
656
-        'field' => 'id',
657
-        'terms' => $term_id
658
-    );
659
-
660
-    $query_args['tax_query'] = array($tax_query);
661
-    if ($term_id && $taxonomy) {
662
-        $term = get_term_by('id', $term_id, $taxonomy);
663
-        $view_all_link = add_query_arg(array('sort_by' => 'rating_count_desc'), get_term_link($term));
664
-        /** This filter is documented in geodirectory-widgets/geodirectory_bestof_widget.php */
665
-        $view_all_link = apply_filters('geodir_bestof_widget_view_all_link', $view_all_link, $post_type, $term);
666
-
667
-        echo '<h3 class="bestof-cat-title">' . wp_sprintf(__('Best of %s', 'geodirectory'), $term->name) . '<a href="' . esc_url($view_all_link) . '">' . __("View all", 'geodirectory') . '</a></h3>';
668
-    }
669
-    if ($excerpt_type == 'show-reviews') {
670
-        add_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
671
-    }
672
-    geodir_bestof_places_by_term($query_args);
673
-    if ($excerpt_type == 'show-reviews') {
674
-        remove_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
675
-    }
676
-    gd_die();
632
+	check_ajax_referer('geodir-bestof-nonce', 'geodir_bestof_nonce');
633
+	//set variables
634
+	$post_type = strip_tags(esc_sql($_POST['post_type']));
635
+	$post_limit = strip_tags(esc_sql($_POST['post_limit']));
636
+	$character_count = strip_tags(esc_sql($_POST['char_count']));
637
+	$taxonomy = strip_tags(esc_sql($_POST['taxonomy']));
638
+	$add_location_filter = strip_tags(esc_sql($_POST['add_location_filter']));
639
+	$term_id = strip_tags(esc_sql($_POST['term_id']));
640
+	$excerpt_type = strip_tags(esc_sql($_POST['excerpt_type']));
641
+
642
+	$query_args = array(
643
+		'posts_per_page' => $post_limit,
644
+		'is_geodir_loop' => true,
645
+		'post_type' => $post_type,
646
+		'gd_location' => $add_location_filter ? true : false,
647
+		'order_by' => 'high_review'
648
+	);
649
+
650
+	if ($character_count >= 0) {
651
+		$query_args['excerpt_length'] = $character_count;
652
+	}
653
+
654
+	$tax_query = array(
655
+		'taxonomy' => $taxonomy,
656
+		'field' => 'id',
657
+		'terms' => $term_id
658
+	);
659
+
660
+	$query_args['tax_query'] = array($tax_query);
661
+	if ($term_id && $taxonomy) {
662
+		$term = get_term_by('id', $term_id, $taxonomy);
663
+		$view_all_link = add_query_arg(array('sort_by' => 'rating_count_desc'), get_term_link($term));
664
+		/** This filter is documented in geodirectory-widgets/geodirectory_bestof_widget.php */
665
+		$view_all_link = apply_filters('geodir_bestof_widget_view_all_link', $view_all_link, $post_type, $term);
666
+
667
+		echo '<h3 class="bestof-cat-title">' . wp_sprintf(__('Best of %s', 'geodirectory'), $term->name) . '<a href="' . esc_url($view_all_link) . '">' . __("View all", 'geodirectory') . '</a></h3>';
668
+	}
669
+	if ($excerpt_type == 'show-reviews') {
670
+		add_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
671
+	}
672
+	geodir_bestof_places_by_term($query_args);
673
+	if ($excerpt_type == 'show-reviews') {
674
+		remove_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
675
+	}
676
+	gd_die();
677 677
 }
678 678
 
679 679
 //Javascript
@@ -686,8 +686,8 @@  discard block
 block discarded – undo
686 686
  */
687 687
 function geodir_bestof_js()
688 688
 {
689
-    $ajax_nonce = wp_create_nonce("geodir-bestof-nonce");
690
-    ?>
689
+	$ajax_nonce = wp_create_nonce("geodir-bestof-nonce");
690
+	?>
691 691
     <script type="text/javascript">
692 692
         jQuery(document).ready(function () {
693 693
             jQuery('.geodir-bestof-cat-list a, #geodir_bestof_tab_dd').on("click change", function (e) {
@@ -766,18 +766,18 @@  discard block
 block discarded – undo
766 766
 
767 767
 function best_of_show_review_in_excerpt($excerpt)
768 768
 {
769
-    global $wpdb, $post;
770
-    $review_table = GEODIR_REVIEW_TABLE;
771
-    $request = "SELECT comment_ID FROM $review_table WHERE post_id = $post->ID ORDER BY post_date DESC, id DESC LIMIT 1";
772
-    $comments = $wpdb->get_results($request);
773
-
774
-    if ($comments) {
775
-        foreach ($comments as $comment) {
776
-            // Set the extra comment info needed.
777
-            $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
778
-            $comment_content = $comment_extra->comment_content;
779
-            $excerpt = strip_tags($comment_content);
780
-        }
781
-    }
782
-    return $excerpt;
769
+	global $wpdb, $post;
770
+	$review_table = GEODIR_REVIEW_TABLE;
771
+	$request = "SELECT comment_ID FROM $review_table WHERE post_id = $post->ID ORDER BY post_date DESC, id DESC LIMIT 1";
772
+	$comments = $wpdb->get_results($request);
773
+
774
+	if ($comments) {
775
+		foreach ($comments as $comment) {
776
+			// Set the extra comment info needed.
777
+			$comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
778
+			$comment_content = $comment_extra->comment_content;
779
+			$excerpt = strip_tags($comment_content);
780
+		}
781
+	}
782
+	return $excerpt;
783 783
 }
784 784
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/taxonomy_functions.php 1 patch
Indentation   +1225 added lines, -1225 removed lines patch added patch discarded remove patch
@@ -33,265 +33,265 @@  discard block
 block discarded – undo
33 33
  */
34 34
 function geodir_add_nav_menu_items()
35 35
 {
36
-    $items = '';
37
-    // apply filter to add more navigations // -Filter-Location-Manager
38
-
39
-    if (get_option('geodir_show_listing_nav')) {
40
-
41
-        $menu_class = '';
42
-        if (geodir_is_page('listing'))
43
-            $menu_class = 'current-menu-item';
44
-
45
-
46
-        //SHOW LISTING OF POST TYPE IN MAIN NAVIGATION
47
-        $post_types = geodir_get_posttypes('object');
48
-        $show_post_type_main_nav = get_option('geodir_add_posttype_in_main_nav');
49
-        if (!empty($post_types)) {
50
-            foreach ($post_types as $post_type => $args) {
51
-                if (!empty($show_post_type_main_nav)) {
52
-                    if (in_array($post_type, $show_post_type_main_nav)) {
53
-                        if (get_post_type_archive_link($post_type)) {
54
-                            $menu_class = '';
55
-                            if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
56
-                                $menu_class = 'current-menu-item';
57
-                            /**
58
-                             * Filter the menu li class.
59
-                             *
60
-                             * @since 1.0.0
61
-                             * @param string $menu_class The menu HTML class.
62
-                             */
63
-                            $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
64
-                            /**
65
-                             * Filter the menu a class.
66
-                             *
67
-                             * @since 1.0.0
68
-                             */
69
-                            $a_class = apply_filters('geodir_menu_a_class', '');
70
-                            $items .= '<li class="' . $li_class . '">
36
+	$items = '';
37
+	// apply filter to add more navigations // -Filter-Location-Manager
38
+
39
+	if (get_option('geodir_show_listing_nav')) {
40
+
41
+		$menu_class = '';
42
+		if (geodir_is_page('listing'))
43
+			$menu_class = 'current-menu-item';
44
+
45
+
46
+		//SHOW LISTING OF POST TYPE IN MAIN NAVIGATION
47
+		$post_types = geodir_get_posttypes('object');
48
+		$show_post_type_main_nav = get_option('geodir_add_posttype_in_main_nav');
49
+		if (!empty($post_types)) {
50
+			foreach ($post_types as $post_type => $args) {
51
+				if (!empty($show_post_type_main_nav)) {
52
+					if (in_array($post_type, $show_post_type_main_nav)) {
53
+						if (get_post_type_archive_link($post_type)) {
54
+							$menu_class = '';
55
+							if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
56
+								$menu_class = 'current-menu-item';
57
+							/**
58
+							 * Filter the menu li class.
59
+							 *
60
+							 * @since 1.0.0
61
+							 * @param string $menu_class The menu HTML class.
62
+							 */
63
+							$li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
64
+							/**
65
+							 * Filter the menu a class.
66
+							 *
67
+							 * @since 1.0.0
68
+							 */
69
+							$a_class = apply_filters('geodir_menu_a_class', '');
70
+							$items .= '<li class="' . $li_class . '">
71 71
 									<a href="' . get_post_type_archive_link($post_type) . '" class="' . $a_class . '">
72 72
 										' . __(ucfirst($args->labels->name),'geodirectory') . '
73 73
 									</a>
74 74
 								</li>';
75
-                        }
76
-                    }
77
-                }
78
-            }
79
-        }
80
-        //END LISTING OF POST TYPE IN MAIN NAVIGATION
81
-
82
-        $view_posttype_listing = get_option('geodir_add_posttype_in_listing_nav');
83
-        $is_listing_sub_meny_exists = (!empty($view_posttype_listing)) ? true : false;
84
-        if ($is_listing_sub_meny_exists) {
85
-            /**
86
-             * Filter the menu li class.
87
-             *
88
-             * @since 1.0.0
89
-             * @param string $menu_class The menu HTML class.
90
-             */
91
-            $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
92
-            /**
93
-             * Filter the sub menu li class.
94
-             *
95
-             * @since 1.0.0
96
-             * @param string $menu_class The menu HTML class.
97
-             */
98
-            $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
99
-            /**
100
-             * Filter the sub menu ul class.
101
-             *
102
-             * @since 1.0.0
103
-             */
104
-            $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
105
-            /**
106
-             * Filter the menu a class.
107
-             *
108
-             * @since 1.0.0
109
-             */
110
-            $a_class = apply_filters('geodir_menu_a_class', '');
111
-            /**
112
-             * Filter the sub menu a class.
113
-             *
114
-             * @since 1.0.0
115
-             */
116
-            $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
117
-            $items .= '<li class="' . $li_class . '">
75
+						}
76
+					}
77
+				}
78
+			}
79
+		}
80
+		//END LISTING OF POST TYPE IN MAIN NAVIGATION
81
+
82
+		$view_posttype_listing = get_option('geodir_add_posttype_in_listing_nav');
83
+		$is_listing_sub_meny_exists = (!empty($view_posttype_listing)) ? true : false;
84
+		if ($is_listing_sub_meny_exists) {
85
+			/**
86
+			 * Filter the menu li class.
87
+			 *
88
+			 * @since 1.0.0
89
+			 * @param string $menu_class The menu HTML class.
90
+			 */
91
+			$li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
92
+			/**
93
+			 * Filter the sub menu li class.
94
+			 *
95
+			 * @since 1.0.0
96
+			 * @param string $menu_class The menu HTML class.
97
+			 */
98
+			$sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
99
+			/**
100
+			 * Filter the sub menu ul class.
101
+			 *
102
+			 * @since 1.0.0
103
+			 */
104
+			$sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
105
+			/**
106
+			 * Filter the menu a class.
107
+			 *
108
+			 * @since 1.0.0
109
+			 */
110
+			$a_class = apply_filters('geodir_menu_a_class', '');
111
+			/**
112
+			 * Filter the sub menu a class.
113
+			 *
114
+			 * @since 1.0.0
115
+			 */
116
+			$sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
117
+			$items .= '<li class="' . $li_class . '">
118 118
 					<a href="#" class="' . $a_class . '">' . __('Listing', 'geodirectory') . '</a>
119 119
 					<ul class="' . $sub_ul_class . '">';
120
-            $post_types = geodir_get_posttypes('object');
120
+			$post_types = geodir_get_posttypes('object');
121 121
 
122
-            $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
122
+			$show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
123 123
 
124
-            if (!empty($post_types)) {
125
-                global $geodir_add_location_url;
126
-                $geodir_add_location_url = true;
127
-                foreach ($post_types as $post_type => $args) {
128
-                    if (!empty($show_listing_post_types)) {
129
-                        if (in_array($post_type, $show_listing_post_types)) {
130
-                            if (get_post_type_archive_link($post_type)) {
124
+			if (!empty($post_types)) {
125
+				global $geodir_add_location_url;
126
+				$geodir_add_location_url = true;
127
+				foreach ($post_types as $post_type => $args) {
128
+					if (!empty($show_listing_post_types)) {
129
+						if (in_array($post_type, $show_listing_post_types)) {
130
+							if (get_post_type_archive_link($post_type)) {
131 131
 
132
-                                $menu_class = '';
133
-                                if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
134
-                                    $menu_class = 'current-menu-item';
132
+								$menu_class = '';
133
+								if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
134
+									$menu_class = 'current-menu-item';
135 135
 
136
-                                $items .= '<li class="' . $sub_li_class . '">
136
+								$items .= '<li class="' . $sub_li_class . '">
137 137
 														<a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '">
138 138
 															' . __(ucfirst($args->labels->name),'geodirectory') . '
139 139
 														</a>
140 140
 													</li>';
141
-                            }
142
-                        }
143
-                    }
144
-                }
145
-                $geodir_add_location_url = NULL;
146
-            }
141
+							}
142
+						}
143
+					}
144
+				}
145
+				$geodir_add_location_url = NULL;
146
+			}
147 147
 
148
-            $items .= '	</ul> ';
149
-            /**
150
-             * Filter called after the sub menu closing ul tag for dynamic added menu items.
151
-             *
152
-             * @since 1.5.9
153
-             */
154
-            $items .= apply_filters('geodir_menu_after_sub_ul','');
155
-            $items .= '</li>';
156
-        }
157
-    }
158
-
159
-    if (get_option('geodir_show_addlisting_nav')) {
160
-
161
-        $menu_class = '';
162
-        if (geodir_is_page('add-listing'))
163
-            $menu_class = 'current-menu-item';
164
-
165
-        //SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
166
-        $post_types = geodir_get_posttypes('object');
167
-        $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_main_nav');
168
-        $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
169
-
170
-        if (!empty($post_types)) {
171
-            foreach ($post_types as $post_type => $args) {
172
-                if (!empty($geodir_allow_posttype_frontend)) {
173
-                    if (in_array($post_type, $geodir_allow_posttype_frontend)) {
174
-                        if (!empty($show_add_listing_post_types_main_nav)) {
175
-                            if (in_array($post_type, $show_add_listing_post_types_main_nav)) {
176
-                                if (geodir_get_addlisting_link($post_type)) {
177
-
178
-                                    $menu_class = '';
179
-                                    if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
180
-                                        $menu_class = 'current-menu-item';
181
-                                    /**
182
-                                     * Filter the menu li class.
183
-                                     *
184
-                                     * @since 1.0.0
185
-                                     * @param string $menu_class The menu HTML class.
186
-                                     */
187
-                                    $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
188
-                                    /**
189
-                                     * Filter the menu a class.
190
-                                     *
191
-                                     * @since 1.0.0
192
-                                     */
193
-                                    $a_class = apply_filters('geodir_menu_a_class', '');
194
-                                    $cpt_name = __($args->labels->singular_name, 'geodirectory');
195
-                                    $items .= '<li class="' . $li_class . '">
148
+			$items .= '	</ul> ';
149
+			/**
150
+			 * Filter called after the sub menu closing ul tag for dynamic added menu items.
151
+			 *
152
+			 * @since 1.5.9
153
+			 */
154
+			$items .= apply_filters('geodir_menu_after_sub_ul','');
155
+			$items .= '</li>';
156
+		}
157
+	}
158
+
159
+	if (get_option('geodir_show_addlisting_nav')) {
160
+
161
+		$menu_class = '';
162
+		if (geodir_is_page('add-listing'))
163
+			$menu_class = 'current-menu-item';
164
+
165
+		//SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
166
+		$post_types = geodir_get_posttypes('object');
167
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_main_nav');
168
+		$geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
169
+
170
+		if (!empty($post_types)) {
171
+			foreach ($post_types as $post_type => $args) {
172
+				if (!empty($geodir_allow_posttype_frontend)) {
173
+					if (in_array($post_type, $geodir_allow_posttype_frontend)) {
174
+						if (!empty($show_add_listing_post_types_main_nav)) {
175
+							if (in_array($post_type, $show_add_listing_post_types_main_nav)) {
176
+								if (geodir_get_addlisting_link($post_type)) {
177
+
178
+									$menu_class = '';
179
+									if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
180
+										$menu_class = 'current-menu-item';
181
+									/**
182
+									 * Filter the menu li class.
183
+									 *
184
+									 * @since 1.0.0
185
+									 * @param string $menu_class The menu HTML class.
186
+									 */
187
+									$li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
188
+									/**
189
+									 * Filter the menu a class.
190
+									 *
191
+									 * @since 1.0.0
192
+									 */
193
+									$a_class = apply_filters('geodir_menu_a_class', '');
194
+									$cpt_name = __($args->labels->singular_name, 'geodirectory');
195
+									$items .= '<li class="' . $li_class . '">
196 196
 											<a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $a_class . '">
197 197
 												' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
198 198
 											</a>
199 199
 										</li>';
200
-                                }
201
-                            }
202
-                        }
203
-                    }
204
-                }
205
-            }
206
-        }
207
-        //END SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
208
-    }
209
-
210
-    $view_add_posttype_listing = get_option('geodir_add_listing_link_add_listing_nav');
211
-    $is_add_listing_sub_meny_exists = (!empty($view_add_posttype_listing)) ? true : false;
212
-    if ($is_add_listing_sub_meny_exists) {
213
-
214
-        if (get_option('geodir_show_addlisting_nav')) {
215
-            /**
216
-             * Filter the menu li class.
217
-             *
218
-             * @since 1.0.0
219
-             * @param string $menu_class The menu HTML class.
220
-             */
221
-            $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
222
-            /**
223
-             * Filter the sub menu li class.
224
-             *
225
-             * @since 1.0.0
226
-             * @param string $menu_class The menu HTML class.
227
-             */
228
-            $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
229
-            /**
230
-             * Filter the sub menu ul class.
231
-             *
232
-             * @since 1.0.0
233
-             */
234
-            $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
235
-            /**
236
-             * Filter the menu a class.
237
-             *
238
-             * @since 1.0.0
239
-             */
240
-            $a_class = apply_filters('geodir_menu_a_class', '');
241
-            /**
242
-             * Filter the sub menu a class.
243
-             *
244
-             * @since 1.0.0
245
-             */
246
-            $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
247
-            $items .= '<li  class="' . $li_class . '">
200
+								}
201
+							}
202
+						}
203
+					}
204
+				}
205
+			}
206
+		}
207
+		//END SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
208
+	}
209
+
210
+	$view_add_posttype_listing = get_option('geodir_add_listing_link_add_listing_nav');
211
+	$is_add_listing_sub_meny_exists = (!empty($view_add_posttype_listing)) ? true : false;
212
+	if ($is_add_listing_sub_meny_exists) {
213
+
214
+		if (get_option('geodir_show_addlisting_nav')) {
215
+			/**
216
+			 * Filter the menu li class.
217
+			 *
218
+			 * @since 1.0.0
219
+			 * @param string $menu_class The menu HTML class.
220
+			 */
221
+			$li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
222
+			/**
223
+			 * Filter the sub menu li class.
224
+			 *
225
+			 * @since 1.0.0
226
+			 * @param string $menu_class The menu HTML class.
227
+			 */
228
+			$sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
229
+			/**
230
+			 * Filter the sub menu ul class.
231
+			 *
232
+			 * @since 1.0.0
233
+			 */
234
+			$sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
235
+			/**
236
+			 * Filter the menu a class.
237
+			 *
238
+			 * @since 1.0.0
239
+			 */
240
+			$a_class = apply_filters('geodir_menu_a_class', '');
241
+			/**
242
+			 * Filter the sub menu a class.
243
+			 *
244
+			 * @since 1.0.0
245
+			 */
246
+			$sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
247
+			$items .= '<li  class="' . $li_class . '">
248 248
 					<a href="#" class="' . $a_class . '">' . __('Add Listing', 'geodirectory') . '</a>
249 249
 					<ul class="' . $sub_ul_class . '">';
250 250
 
251
-            $post_types = geodir_get_posttypes('object');
252
-
253
-            $show_add_listing_post_types = get_option('geodir_add_listing_link_add_listing_nav');
254
-
255
-            if (!empty($post_types)) {
256
-                foreach ($post_types as $post_type => $args) {
257
-                    if (!empty($geodir_allow_posttype_frontend)) {
258
-                        if (in_array($post_type, $geodir_allow_posttype_frontend)) {
259
-                            if (!empty($show_add_listing_post_types)) {
260
-                                if (in_array($post_type, $show_add_listing_post_types)) {
261
-                                    if (geodir_get_addlisting_link($post_type)) {
262
-
263
-                                        $menu_class = '';
264
-                                        if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
265
-                                            $menu_class = 'current-menu-item';
266
-                                        /**
267
-                                         * Filter the menu li class.
268
-                                         *
269
-                                         * @since 1.0.0
270
-                                         * @param string $menu_class The menu HTML class.
271
-                                         */
272
-                                        $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
273
-                                        $cpt_name = __($args->labels->singular_name, 'geodirectory');
274
-                                        $items .= '<li class="' . $li_class . '">
251
+			$post_types = geodir_get_posttypes('object');
252
+
253
+			$show_add_listing_post_types = get_option('geodir_add_listing_link_add_listing_nav');
254
+
255
+			if (!empty($post_types)) {
256
+				foreach ($post_types as $post_type => $args) {
257
+					if (!empty($geodir_allow_posttype_frontend)) {
258
+						if (in_array($post_type, $geodir_allow_posttype_frontend)) {
259
+							if (!empty($show_add_listing_post_types)) {
260
+								if (in_array($post_type, $show_add_listing_post_types)) {
261
+									if (geodir_get_addlisting_link($post_type)) {
262
+
263
+										$menu_class = '';
264
+										if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
265
+											$menu_class = 'current-menu-item';
266
+										/**
267
+										 * Filter the menu li class.
268
+										 *
269
+										 * @since 1.0.0
270
+										 * @param string $menu_class The menu HTML class.
271
+										 */
272
+										$li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
273
+										$cpt_name = __($args->labels->singular_name, 'geodirectory');
274
+										$items .= '<li class="' . $li_class . '">
275 275
 														<a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $sub_a_class . '">
276 276
 															' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
277 277
 														</a>
278 278
 													</li>';
279
-                                    }
280
-                                }
281
-                            }
282
-                        }
283
-                    }
284
-                }
285
-            }
279
+									}
280
+								}
281
+							}
282
+						}
283
+					}
284
+				}
285
+			}
286 286
 
287
-            $items .= '	</ul> ';
288
-            $items .= apply_filters('geodir_menu_after_sub_ul','');
289
-            $items .= '</li>';
287
+			$items .= '	</ul> ';
288
+			$items .= apply_filters('geodir_menu_after_sub_ul','');
289
+			$items .= '</li>';
290 290
 
291
-        }
292
-    }
293
-    // apply filter to add more navigations // -Filter-Location-Manager
294
-    return $items;
291
+		}
292
+	}
293
+	// apply filter to add more navigations // -Filter-Location-Manager
294
+	return $items;
295 295
 }
296 296
 
297 297
 
@@ -309,20 +309,20 @@  discard block
 block discarded – undo
309 309
  */
310 310
 function geodir_pagemenu_items($menu, $args)
311 311
 {
312
-    $locations = get_nav_menu_locations();
313
-    $geodir_theme_location = get_option('geodir_theme_location_nav');
314
-    $geodir_theme_location_nav = array();
315
-    if (empty($locations) && empty($geodir_theme_location)) {
316
-        $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
317
-        $geodir_theme_location_nav[] = $args['theme_location'];
318
-        update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
319
-    }
320
-    //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet.
312
+	$locations = get_nav_menu_locations();
313
+	$geodir_theme_location = get_option('geodir_theme_location_nav');
314
+	$geodir_theme_location_nav = array();
315
+	if (empty($locations) && empty($geodir_theme_location)) {
316
+		$menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
317
+		$geodir_theme_location_nav[] = $args['theme_location'];
318
+		update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
319
+	}
320
+	//else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet.
321 321
 //		$menu = str_replace("</ul></div>",geodir_add_nav_menu_items()."</ul></div>",$menu);
322
-    else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location))
323
-        $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
322
+	else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location))
323
+		$menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
324 324
 
325
-    return $menu;
325
+	return $menu;
326 326
 
327 327
 }
328 328
 
@@ -342,18 +342,18 @@  discard block
 block discarded – undo
342 342
 function geodir_menu_items($items, $args)
343 343
 {
344 344
 
345
-    $location = $args->theme_location;
345
+	$location = $args->theme_location;
346 346
 
347
-    $geodir_theme_location = get_option('geodir_theme_location_nav');
347
+	$geodir_theme_location = get_option('geodir_theme_location_nav');
348 348
 
349
-    if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
349
+	if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
350 350
 
351
-        $items = $items . geodir_add_nav_menu_items();
352
-        return $items;
351
+		$items = $items . geodir_add_nav_menu_items();
352
+		return $items;
353 353
 
354
-    } else {
355
-        return $items;
356
-    }
354
+	} else {
355
+		return $items;
356
+	}
357 357
 }
358 358
 
359 359
 /**
@@ -368,25 +368,25 @@  discard block
 block discarded – undo
368 368
  */
369 369
 function geodir_get_category_all_array()
370 370
 {
371
-    global $wpdb;
372
-    $return_array = array();
373
-
374
-    $taxonomies = geodir_get_taxonomies();
375
-    $taxonomies = implode("','", $taxonomies);
376
-    $taxonomies = "'" . $taxonomies . "'";
377
-
378
-    $pn_categories = $wpdb->get_results(
379
-        $wpdb->prepare(
380
-            "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy,  $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name",
381
-            array($wpdb->terms . term_id)
382
-        )
383
-    );
384
-
385
-    foreach ($pn_categories as $pn_categories_obj) {
386
-        $return_array[] = array("id" => $pn_categories_obj->cat_ID,
387
-            "title" => $pn_categories_obj->name,);
388
-    }
389
-    return $return_array;
371
+	global $wpdb;
372
+	$return_array = array();
373
+
374
+	$taxonomies = geodir_get_taxonomies();
375
+	$taxonomies = implode("','", $taxonomies);
376
+	$taxonomies = "'" . $taxonomies . "'";
377
+
378
+	$pn_categories = $wpdb->get_results(
379
+		$wpdb->prepare(
380
+			"SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy,  $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name",
381
+			array($wpdb->terms . term_id)
382
+		)
383
+	);
384
+
385
+	foreach ($pn_categories as $pn_categories_obj) {
386
+		$return_array[] = array("id" => $pn_categories_obj->cat_ID,
387
+			"title" => $pn_categories_obj->name,);
388
+	}
389
+	return $return_array;
390 390
 }
391 391
 
392 392
 
@@ -401,41 +401,41 @@  discard block
 block discarded – undo
401 401
  */
402 402
 function geodir_get_current_posttype()
403 403
 {
404
-    global $wp_query, $geodir_post_type;
404
+	global $wp_query, $geodir_post_type;
405 405
 
406
-    $geodir_post_type = get_query_var('post_type');
406
+	$geodir_post_type = get_query_var('post_type');
407 407
 
408
-    if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
409
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
410
-            $geodir_post_type = get_post_type((int)$_REQUEST['pid']);
411
-        elseif (isset($_REQUEST['listing_type']))
412
-            $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
413
-    }
408
+	if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
409
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
410
+			$geodir_post_type = get_post_type((int)$_REQUEST['pid']);
411
+		elseif (isset($_REQUEST['listing_type']))
412
+			$geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
413
+	}
414 414
 
415
-    if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
416
-        $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
415
+	if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
416
+		$geodir_post_type = sanitize_text_field($_REQUEST['stype']);
417 417
 
418
-    if (is_tax())
419
-        $geodir_post_type = geodir_get_taxonomy_posttype();
418
+	if (is_tax())
419
+		$geodir_post_type = geodir_get_taxonomy_posttype();
420 420
 
421 421
 
422
-    $all_postypes = geodir_get_posttypes();
423
-    $all_postypes = stripslashes_deep($all_postypes);
422
+	$all_postypes = geodir_get_posttypes();
423
+	$all_postypes = stripslashes_deep($all_postypes);
424 424
 
425
-    if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
426
-        $geodir_post_type = '';
425
+	if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
426
+		$geodir_post_type = '';
427 427
 
428
-    if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
429
-        $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
430
-    }
428
+	if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
429
+		$geodir_post_type = sanitize_text_field($_REQUEST['stype']);
430
+	}
431 431
 
432 432
 
433
-    /**
434
-     * Filter the default CPT return.
435
-     *
436
-     * @since 1.6.9
437
-     */
438
-    return apply_filters('geodir_get_current_posttype',$geodir_post_type);
433
+	/**
434
+	 * Filter the default CPT return.
435
+	 *
436
+	 * @since 1.6.9
437
+	 */
438
+	return apply_filters('geodir_get_current_posttype',$geodir_post_type);
439 439
 }
440 440
 
441 441
 /**
@@ -449,22 +449,22 @@  discard block
 block discarded – undo
449 449
  */
450 450
 function geodir_get_default_posttype()
451 451
 {
452
-    $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) );
453
-
454
-    $stype = false;
455
-    foreach ( $post_types as $post_type => $info ) {
456
-        global $wpdb;
457
-        $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
458
-        if ( $has_posts ) {
459
-            $stype = $post_type; break;
460
-        }
461
-    }
462
-
463
-    if(!$stype){
464
-        $stype = 'gd_place';
465
-    }
466
-
467
-    return $stype;
452
+	$post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) );
453
+
454
+	$stype = false;
455
+	foreach ( $post_types as $post_type => $info ) {
456
+		global $wpdb;
457
+		$has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
458
+		if ( $has_posts ) {
459
+			$stype = $post_type; break;
460
+		}
461
+	}
462
+
463
+	if(!$stype){
464
+		$stype = 'gd_place';
465
+	}
466
+
467
+	return $stype;
468 468
 }
469 469
 
470 470
 /**
@@ -478,21 +478,21 @@  discard block
 block discarded – undo
478 478
  */
479 479
 function geodir_get_posttypes($output = 'names')
480 480
 {
481
-    $post_types = array();
482
-    $post_types = get_option('geodir_post_types');
483
-    $post_types = stripslashes_deep($post_types);
484
-    if (!empty($post_types)) {
485
-        switch ($output):
486
-            case 'object':
487
-            case 'Object':
488
-                $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types;
489
-                break;
490
-            case 'array':
491
-            case 'Array':
492
-                $post_types = (array)$post_types;
493
-                break;
481
+	$post_types = array();
482
+	$post_types = get_option('geodir_post_types');
483
+	$post_types = stripslashes_deep($post_types);
484
+	if (!empty($post_types)) {
485
+		switch ($output):
486
+			case 'object':
487
+			case 'Object':
488
+				$post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types;
489
+				break;
490
+			case 'array':
491
+			case 'Array':
492
+				$post_types = (array)$post_types;
493
+				break;
494 494
 			case 'options':
495
-                $post_types = (array)$post_types;
495
+				$post_types = (array)$post_types;
496 496
 				
497 497
 				$options = array();
498 498
 				if (!empty($post_types)) {
@@ -501,17 +501,17 @@  discard block
 block discarded – undo
501 501
 					}
502 502
 				}
503 503
 				$post_types = $options;
504
-                break;
505
-            default:
506
-                $post_types = array_keys($post_types);
507
-                break;
508
-        endswitch;
509
-    }
510
-
511
-    if (!empty($post_types))
512
-        return $post_types;
513
-    else
514
-        return array();
504
+				break;
505
+			default:
506
+				$post_types = array_keys($post_types);
507
+				break;
508
+		endswitch;
509
+	}
510
+
511
+	if (!empty($post_types))
512
+		return $post_types;
513
+	else
514
+		return array();
515 515
 }
516 516
 
517 517
 /**
@@ -524,108 +524,108 @@  discard block
 block discarded – undo
524 524
  */
525 525
 function geodir_get_posttype_info($post_type = '')
526 526
 {
527
-    $post_types = array();
528
-    $post_types = get_option('geodir_post_types');
529
-    $post_types = stripslashes_deep($post_types);
530
-    if (!empty($post_types) && $post_type != '') {
531
-        return $post_types[$post_type];
532
-    } else
533
-        return false;
527
+	$post_types = array();
528
+	$post_types = get_option('geodir_post_types');
529
+	$post_types = stripslashes_deep($post_types);
530
+	if (!empty($post_types) && $post_type != '') {
531
+		return $post_types[$post_type];
532
+	} else
533
+		return false;
534 534
 }
535 535
 
536 536
 if (!function_exists('geodir_get_taxonomies')) {
537
-    /**
538
-     * Get all custom taxonomies.
539
-     *
540
-     * @since 1.0.0
541
-     * @package GeoDirectory
542
-     * @param string $post_type The post type.
543
-     * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
544
-     * @return array|bool Taxonomies on success. false on failure.
545
-     */
546
-    function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false)
547
-    {
537
+	/**
538
+	 * Get all custom taxonomies.
539
+	 *
540
+	 * @since 1.0.0
541
+	 * @package GeoDirectory
542
+	 * @param string $post_type The post type.
543
+	 * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
544
+	 * @return array|bool Taxonomies on success. false on failure.
545
+	 */
546
+	function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false)
547
+	{
548 548
 
549
-        $taxonomies = array();
550
-        $gd_taxonomies = array();
549
+		$taxonomies = array();
550
+		$gd_taxonomies = array();
551 551
 
552
-        if ($taxonomies = get_option('geodir_taxonomies')) {
552
+		if ($taxonomies = get_option('geodir_taxonomies')) {
553 553
 
554 554
 
555
-            $gd_taxonomies = array_keys($taxonomies);
555
+			$gd_taxonomies = array_keys($taxonomies);
556 556
 
557 557
 
558
-            if ($post_type != '')
559
-                $gd_taxonomies = array();
558
+			if ($post_type != '')
559
+				$gd_taxonomies = array();
560 560
 
561
-            $i = 0;
562
-            foreach ($taxonomies as $taxonomy => $args) {
561
+			$i = 0;
562
+			foreach ($taxonomies as $taxonomy => $args) {
563 563
 
564
-                if ($post_type != '' && $args['object_type'] == $post_type)
565
-                    $gd_taxonomies[] = $taxonomy;
564
+				if ($post_type != '' && $args['object_type'] == $post_type)
565
+					$gd_taxonomies[] = $taxonomy;
566 566
 
567
-                if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
568
-                    if (array_search($taxonomy, $gd_taxonomies) !== false)
569
-                        unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]);
570
-                }
567
+				if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
568
+					if (array_search($taxonomy, $gd_taxonomies) !== false)
569
+						unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]);
570
+				}
571 571
 
572
-            }
572
+			}
573
+
574
+			$gd_taxonomies = array_values($gd_taxonomies);
575
+		}
573 576
 
574
-            $gd_taxonomies = array_values($gd_taxonomies);
575
-        }
576
-
577
-        /**
578
-         * Filter the taxonomies.
579
-         *
580
-         * @since 1.0.0
581
-         * @param array $gd_taxonomies The taxonomy array.
582
-         */
583
-        $taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
584
-
585
-        if (!empty($taxonomies)) {
586
-            return $taxonomies;
587
-        } else {
588
-            return false;
589
-        }
590
-    }
577
+		/**
578
+		 * Filter the taxonomies.
579
+		 *
580
+		 * @since 1.0.0
581
+		 * @param array $gd_taxonomies The taxonomy array.
582
+		 */
583
+		$taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
584
+
585
+		if (!empty($taxonomies)) {
586
+			return $taxonomies;
587
+		} else {
588
+			return false;
589
+		}
590
+	}
591 591
 }
592 592
 
593 593
 if (!function_exists(' geodir_get_categories_dl')) {
594
-    /**
595
-     * Get categories dropdown HTML.
596
-     *
597
-     * @since 1.0.0
598
-     * @package GeoDirectory
599
-     * @param string $post_type The post type.
600
-     * @param string $selected The selected value.
601
-     * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
602
-     * @param bool $echo Prints the HTML when set to true. Default: true.
603
-     * @return void|string Dropdown HTML.
604
-     */
605
-    function  geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true)
606
-    {
607
-
608
-        $html = '';
609
-        $taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies);
610
-
611
-        $categories = get_terms($taxonomies);
612
-
613
-        $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
614
-
615
-        foreach ($categories as $category_obj) {
616
-            $select_opt = '';
617
-            if ($selected == $category_obj->term_id) {
618
-                $select_opt = 'selected="selected"';
619
-            }
620
-            $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">'
621
-                . ucfirst($category_obj->name) . '</option>';
622
-        }
623
-
624
-        if ($echo)
625
-            echo $html;
626
-        else
627
-            return $html;
628
-    }
594
+	/**
595
+	 * Get categories dropdown HTML.
596
+	 *
597
+	 * @since 1.0.0
598
+	 * @package GeoDirectory
599
+	 * @param string $post_type The post type.
600
+	 * @param string $selected The selected value.
601
+	 * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
602
+	 * @param bool $echo Prints the HTML when set to true. Default: true.
603
+	 * @return void|string Dropdown HTML.
604
+	 */
605
+	function  geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true)
606
+	{
607
+
608
+		$html = '';
609
+		$taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies);
610
+
611
+		$categories = get_terms($taxonomies);
612
+
613
+		$html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
614
+
615
+		foreach ($categories as $category_obj) {
616
+			$select_opt = '';
617
+			if ($selected == $category_obj->term_id) {
618
+				$select_opt = 'selected="selected"';
619
+			}
620
+			$html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">'
621
+				. ucfirst($category_obj->name) . '</option>';
622
+		}
623
+
624
+		if ($echo)
625
+			echo $html;
626
+		else
627
+			return $html;
628
+	}
629 629
 }
630 630
 
631 631
 
@@ -640,28 +640,28 @@  discard block
 block discarded – undo
640 640
 function geodir_get_listing_slug($object_type = '')
641 641
 {
642 642
 
643
-    $listing_slug = '';
643
+	$listing_slug = '';
644 644
 
645
-    $post_types = get_option('geodir_post_types');
646
-    $taxonomies = get_option('geodir_taxonomies');
645
+	$post_types = get_option('geodir_post_types');
646
+	$taxonomies = get_option('geodir_taxonomies');
647 647
 
648 648
 
649
-    if ($object_type != '') {
650
-        if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
649
+	if ($object_type != '') {
650
+		if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
651 651
 
652
-            $object_info = $post_types[$object_type];
653
-            $listing_slug = $object_info['listing_slug'];
654
-        } elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
655
-            $object_info = $taxonomies[$object_type];
656
-            $listing_slug = $object_info['listing_slug'];
657
-        }
652
+			$object_info = $post_types[$object_type];
653
+			$listing_slug = $object_info['listing_slug'];
654
+		} elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
655
+			$object_info = $taxonomies[$object_type];
656
+			$listing_slug = $object_info['listing_slug'];
657
+		}
658 658
 
659
-    }
659
+	}
660 660
 
661
-    if (!empty($listing_slug))
662
-        return $listing_slug;
663
-    else
664
-        return false;
661
+	if (!empty($listing_slug))
662
+		return $listing_slug;
663
+	else
664
+		return false;
665 665
 }
666 666
 
667 667
 
@@ -676,212 +676,212 @@  discard block
 block discarded – undo
676 676
  */
677 677
 function geodir_get_taxonomy_posttype($taxonomy = '')
678 678
 {
679
-    global $wp_query;
680
-
681
-    $post_type = array();
682
-    $taxonomies = array();
683
-
684
-    if (!empty($taxonomy)) {
685
-        $taxonomies[] = $taxonomy;
686
-    } elseif (isset($wp_query->tax_query->queries)) {
687
-        $tax_arr = $wp_query->tax_query->queries;
688
-        //if tax query has 'relation' set then it will break wp_list_pluck so we remove it
689
-        if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
690
-        $taxonomies = wp_list_pluck($tax_arr, 'taxonomy');
691
-    }
692
-
693
-    if (!empty($taxonomies)) {
694
-        foreach (geodir_get_posttypes() as $pt) {
695
-            $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt);
696
-            if (array_intersect($taxonomies, $object_taxonomies))
697
-                $post_type[] = $pt;
698
-        }
699
-    }
700
-
701
-    if (!empty($post_type))
702
-        return $post_type[0];
703
-    else
704
-        return false;
679
+	global $wp_query;
680
+
681
+	$post_type = array();
682
+	$taxonomies = array();
683
+
684
+	if (!empty($taxonomy)) {
685
+		$taxonomies[] = $taxonomy;
686
+	} elseif (isset($wp_query->tax_query->queries)) {
687
+		$tax_arr = $wp_query->tax_query->queries;
688
+		//if tax query has 'relation' set then it will break wp_list_pluck so we remove it
689
+		if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
690
+		$taxonomies = wp_list_pluck($tax_arr, 'taxonomy');
691
+	}
692
+
693
+	if (!empty($taxonomies)) {
694
+		foreach (geodir_get_posttypes() as $pt) {
695
+			$object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt);
696
+			if (array_intersect($taxonomies, $object_taxonomies))
697
+				$post_type[] = $pt;
698
+		}
699
+	}
700
+
701
+	if (!empty($post_type))
702
+		return $post_type[0];
703
+	else
704
+		return false;
705 705
 }
706 706
 
707 707
 if (!function_exists('geodir_custom_taxonomy_walker')) {
708
-    /**
709
-     * Custom taxonomy walker function.
710
-     *
711
-     * @since 1.0.0
712
-     * @package GeoDirectory
713
-     * @param string $cat_taxonomy The taxonomy name.
714
-     * @param int $cat_parent The parent term ID.
715
-     * @param bool $hide_empty Hide empty taxonomies? Default: false.
716
-     * @param int $pading CSS padding in pixels.
717
-     * @return string|void taxonomy HTML.
718
-     */
719
-    function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0)
720
-    {
721
-        global $cat_display, $post_cat, $exclude_cats;
722
-
723
-        $search_terms = trim($post_cat, ",");
724
-
725
-        $search_terms = explode(",", $search_terms);
726
-
727
-        $cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
728
-
729
-        $display = '';
730
-        $onchange = '';
731
-        $term_check = '';
732
-        $main_list_class = '';
733
-        $out = '';
734
-        //If there are terms, start displaying
735
-        if (count($cat_terms) > 0) {
736
-            //Displaying as a list
737
-            $p = $pading * 20;
738
-            $pading++;
739
-
740
-
741
-            if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
742
-                if ($cat_parent == 0) {
743
-                    $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display;
744
-                    $main_list_class = 'class="main_list_selecter"';
745
-                } else {
746
-                    //$display = 'display:none';
747
-                    $list_class = 'sub_list gd-sub-cats-list';
748
-                }
749
-            }
708
+	/**
709
+	 * Custom taxonomy walker function.
710
+	 *
711
+	 * @since 1.0.0
712
+	 * @package GeoDirectory
713
+	 * @param string $cat_taxonomy The taxonomy name.
714
+	 * @param int $cat_parent The parent term ID.
715
+	 * @param bool $hide_empty Hide empty taxonomies? Default: false.
716
+	 * @param int $pading CSS padding in pixels.
717
+	 * @return string|void taxonomy HTML.
718
+	 */
719
+	function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0)
720
+	{
721
+		global $cat_display, $post_cat, $exclude_cats;
722
+
723
+		$search_terms = trim($post_cat, ",");
724
+
725
+		$search_terms = explode(",", $search_terms);
726
+
727
+		$cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
728
+
729
+		$display = '';
730
+		$onchange = '';
731
+		$term_check = '';
732
+		$main_list_class = '';
733
+		$out = '';
734
+		//If there are terms, start displaying
735
+		if (count($cat_terms) > 0) {
736
+			//Displaying as a list
737
+			$p = $pading * 20;
738
+			$pading++;
739
+
740
+
741
+			if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
742
+				if ($cat_parent == 0) {
743
+					$list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display;
744
+					$main_list_class = 'class="main_list_selecter"';
745
+				} else {
746
+					//$display = 'display:none';
747
+					$list_class = 'sub_list gd-sub-cats-list';
748
+				}
749
+			}
750 750
 
751
-            if ($cat_display == 'checkbox' || $cat_display == 'radio') {
752
-                $p = 0;
753
-                $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">';
754
-            }
751
+			if ($cat_display == 'checkbox' || $cat_display == 'radio') {
752
+				$p = 0;
753
+				$out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">';
754
+			}
755 755
 
756
-            foreach ($cat_terms as $cat_term) {
756
+			foreach ($cat_terms as $cat_term) {
757 757
 
758
-                $checked = '';
758
+				$checked = '';
759 759
 
760
-                if (in_array($cat_term->term_id, $search_terms)) {
761
-                    if ($cat_display == 'select' || $cat_display == 'multiselect')
762
-                        $checked = 'selected="selected"';
763
-                    else
764
-                        $checked = 'checked="checked"';
765
-                }
760
+				if (in_array($cat_term->term_id, $search_terms)) {
761
+					if ($cat_display == 'select' || $cat_display == 'multiselect')
762
+						$checked = 'selected="selected"';
763
+					else
764
+						$checked = 'checked="checked"';
765
+				}
766 766
 
767
-                if ($cat_display == 'radio')
768
-                    $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
769
-                elseif ($cat_display == 'select' || $cat_display == 'multiselect')
770
-                    $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>';
767
+				if ($cat_display == 'radio')
768
+					$out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
769
+				elseif ($cat_display == 'select' || $cat_display == 'multiselect')
770
+					$out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>';
771 771
 
772
-                else {
773
-                    $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
774
-                }
772
+				else {
773
+					$out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
774
+				}
775 775
 
776
-                // Call recurson to print sub cats
777
-                $out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading);
776
+				// Call recurson to print sub cats
777
+				$out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading);
778 778
 
779
-            }
779
+			}
780 780
 
781
-            if ($cat_display == 'checkbox' || $cat_display == 'radio')
782
-                $out .= '</div>';
781
+			if ($cat_display == 'checkbox' || $cat_display == 'radio')
782
+				$out .= '</div>';
783 783
 
784
-            return $out;
785
-        }
786
-        return;
787
-    }
784
+			return $out;
785
+		}
786
+		return;
787
+	}
788 788
 }
789 789
 
790 790
 if (!function_exists('geodir_custom_taxonomy_walker2')) {
791
-    /**
792
-     * Custom taxonomy walker function.
793
-     *
794
-     * @since 1.0.0
795
-     * @package GeoDirectory
796
-     * @global object $post WordPress Post object.
797
-     * @global object $gd_session GeoDirectory Session object.
798
-     * @param string $cat_taxonomy The taxonomy name.
799
-     * @param string $cat_limit Number of categories to display.
800
-     */
801
-    function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '')
802
-    {
803
-        $post_category = '';
804
-        $post_category_str = '';
805
-        global $exclude_cats, $gd_session;
806
-
807
-        $cat_exclude = '';
808
-        if (is_array($exclude_cats) && !empty($exclude_cats))
809
-            $cat_exclude = serialize($exclude_cats);
810
-
811
-        if (isset($_REQUEST['backandedit'])) {
812
-            $post = (object)$gd_session->get('listing');
813
-
814
-            if (!is_array($post->post_category[$cat_taxonomy]))
815
-                $post_category = $post->post_category[$cat_taxonomy];
816
-
817
-            $post_categories = $post->post_category_str;
818
-            if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories))
819
-                $post_category_str = $post_categories[$cat_taxonomy];
820
-
821
-        } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
822
-            global $post;
823
-
824
-            $post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true);
825
-            if (empty($post_category) && isset($post->{$cat_taxonomy})) {
826
-                $post_category = $post->{$cat_taxonomy};
827
-            }
791
+	/**
792
+	 * Custom taxonomy walker function.
793
+	 *
794
+	 * @since 1.0.0
795
+	 * @package GeoDirectory
796
+	 * @global object $post WordPress Post object.
797
+	 * @global object $gd_session GeoDirectory Session object.
798
+	 * @param string $cat_taxonomy The taxonomy name.
799
+	 * @param string $cat_limit Number of categories to display.
800
+	 */
801
+	function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '')
802
+	{
803
+		$post_category = '';
804
+		$post_category_str = '';
805
+		global $exclude_cats, $gd_session;
806
+
807
+		$cat_exclude = '';
808
+		if (is_array($exclude_cats) && !empty($exclude_cats))
809
+			$cat_exclude = serialize($exclude_cats);
810
+
811
+		if (isset($_REQUEST['backandedit'])) {
812
+			$post = (object)$gd_session->get('listing');
813
+
814
+			if (!is_array($post->post_category[$cat_taxonomy]))
815
+				$post_category = $post->post_category[$cat_taxonomy];
816
+
817
+			$post_categories = $post->post_category_str;
818
+			if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories))
819
+				$post_category_str = $post_categories[$cat_taxonomy];
820
+
821
+		} elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
822
+			global $post;
823
+
824
+			$post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true);
825
+			if (empty($post_category) && isset($post->{$cat_taxonomy})) {
826
+				$post_category = $post->{$cat_taxonomy};
827
+			}
828 828
 
829
-            $post_categories = get_post_meta($post->ID, 'post_categories', true);
829
+			$post_categories = get_post_meta($post->ID, 'post_categories', true);
830 830
 
831
-            if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
832
-                foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
833
-                    if (is_numeric($cat_part)) {
834
-                        $cat_part_arr[] = $cat_part;
835
-                    }
836
-                }
837
-                if (is_array($cat_part_arr)) {
838
-                    $post_category = implode(',', $cat_part_arr);
839
-                }
840
-            }
831
+			if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
832
+				foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
833
+					if (is_numeric($cat_part)) {
834
+						$cat_part_arr[] = $cat_part;
835
+					}
836
+				}
837
+				if (is_array($cat_part_arr)) {
838
+					$post_category = implode(',', $cat_part_arr);
839
+				}
840
+			}
841 841
 
842
-            if (!empty($post_category)) {
843
-                $cat1 = array_filter(explode(',', $post_category));
844
-                $post_category = ',' . implode(',', $cat1) . ',';
842
+			if (!empty($post_category)) {
843
+				$cat1 = array_filter(explode(',', $post_category));
844
+				$post_category = ',' . implode(',', $cat1) . ',';
845 845
 
846
-            }
846
+			}
847 847
 
848
-            if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
848
+			if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
849 849
 
850
-                $post_category_upd = explode(',', $post_category);
851
-                $post_category_change = '';
852
-                foreach ($post_category_upd as $cat) {
850
+				$post_category_upd = explode(',', $post_category);
851
+				$post_category_change = '';
852
+				foreach ($post_category_upd as $cat) {
853 853
 
854
-                    if (!in_array($cat, $exclude_cats) && $cat != '') {
855
-                        $post_category_change .= ',' . $cat;
856
-                    }
857
-                }
858
-                $post_category = $post_category_change;
859
-            }
854
+					if (!in_array($cat, $exclude_cats) && $cat != '') {
855
+						$post_category_change .= ',' . $cat;
856
+					}
857
+				}
858
+				$post_category = $post_category_change;
859
+			}
860 860
 
861 861
 
862
-            if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
863
-                $post_category_str = $post_categories[$cat_taxonomy];
864
-            }
865
-        }
862
+			if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
863
+				$post_category_str = $post_categories[$cat_taxonomy];
864
+			}
865
+		}
866 866
 
867
-        echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']"  />';
867
+		echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']"  />';
868 868
 
869
-        echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']"  />';
869
+		echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']"  />';
870 870
 
871
-        echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']"  />';
871
+		echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']"  />';
872 872
 
873 873
 
874
-        ?>
874
+		?>
875 875
         <div class="cat_sublist">
876 876
             <?php
877 877
 
878
-            $post_id = isset($post->ID) ? $post->ID : '';
878
+			$post_id = isset($post->ID) ? $post->ID : '';
879 879
 
880
-            if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
880
+			if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
881 881
 
882
-                geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories);
883
-            }
884
-            ?>
882
+				geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories);
883
+			}
884
+			?>
885 885
         </div>
886 886
         <script type="text/javascript">
887 887
 
@@ -1004,22 +1004,22 @@  discard block
 block discarded – undo
1004 1004
 
1005 1005
         </script>
1006 1006
         <?php
1007
-        if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
1008
-            $post_cat_str = $post_categories[$cat_taxonomy];
1009
-            $post_cat_array = explode("#", $post_cat_str);
1010
-            if (count($post_cat_array) >= $cat_limit && $cat_limit != 0)
1011
-                $style = "display:none;";
1012
-        }
1013
-        ?>
1007
+		if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
1008
+			$post_cat_str = $post_categories[$cat_taxonomy];
1009
+			$post_cat_array = explode("#", $post_cat_str);
1010
+			if (count($post_cat_array) >= $cat_limit && $cat_limit != 0)
1011
+				$style = "display:none;";
1012
+		}
1013
+		?>
1014 1014
         <div class="main_cat_list" style=" <?php if (isset($style)) {
1015
-            echo $style;
1016
-        }?> ">
1015
+			echo $style;
1016
+		}?> ">
1017 1017
             <?php geodir_get_catlist($cat_taxonomy, 0);  // print main categories list
1018
-            ?>
1018
+			?>
1019 1019
         </div>
1020 1020
     <?php
1021 1021
 
1022
-    }
1022
+	}
1023 1023
 }
1024 1024
 
1025 1025
 /**
@@ -1036,23 +1036,23 @@  discard block
 block discarded – undo
1036 1036
  */
1037 1037
 function geodir_addpost_categories_html($request_taxonomy, $parrent, $selected = false, $main_selected = true, $default = false, $exclude = '')
1038 1038
 {
1039
-    global $exclude_cats;
1039
+	global $exclude_cats;
1040 1040
 
1041
-    if ($exclude != '') {
1042
-        $exclude_cats = maybe_unserialize(base64_decode($exclude));
1041
+	if ($exclude != '') {
1042
+		$exclude_cats = maybe_unserialize(base64_decode($exclude));
1043 1043
 
1044
-        if(is_array( $exclude_cats)){
1045
-            $exclude_cats = array_map( 'intval', $exclude_cats );
1046
-        }else{
1047
-            $exclude_cats = intval($exclude_cats);
1048
-        }
1044
+		if(is_array( $exclude_cats)){
1045
+			$exclude_cats = array_map( 'intval', $exclude_cats );
1046
+		}else{
1047
+			$exclude_cats = intval($exclude_cats);
1048
+		}
1049 1049
 
1050
-    }
1050
+	}
1051 1051
 
1052
-    if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) ||
1053
-        (!is_array($exclude_cats) || empty($exclude_cats))
1054
-    ) {
1055
-        ?>
1052
+	if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) ||
1053
+		(!is_array($exclude_cats) || empty($exclude_cats))
1054
+	) {
1055
+		?>
1056 1056
 
1057 1057
         <?php $main_cat = get_term($parrent, $request_taxonomy); ?>
1058 1058
 
@@ -1081,8 +1081,8 @@  discard block
 block discarded – undo
1081 1081
 
1082 1082
             <br/>
1083 1083
             <?php
1084
-            $cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
1085
-            if (!empty($cat_terms)) { ?>
1084
+			$cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
1085
+			if (!empty($cat_terms)) { ?>
1086 1086
                 <span> <?php printf(__('Add listing in category', 'geodirectory')); ?></span>
1087 1087
                 <?php geodir_get_catlist($request_taxonomy, $parrent, $selected) ?>
1088 1088
             <?php } ?>
@@ -1104,53 +1104,53 @@  discard block
 block discarded – undo
1104 1104
 function geodir_editpost_categories_html($request_taxonomy, $request_postid, $post_categories)
1105 1105
 {
1106 1106
 
1107
-    if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
1108
-        $post_cat_str = $post_categories[$request_taxonomy];
1109
-        $post_cat_array = explode("#", $post_cat_str);
1110
-        if (is_array($post_cat_array)) {
1111
-            $post_cat_array = array_unique( $post_cat_array );
1107
+	if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
1108
+		$post_cat_str = $post_categories[$request_taxonomy];
1109
+		$post_cat_array = explode("#", $post_cat_str);
1110
+		if (is_array($post_cat_array)) {
1111
+			$post_cat_array = array_unique( $post_cat_array );
1112 1112
 
1113 1113
 			foreach ($post_cat_array as $post_cat_html) {
1114 1114
 
1115
-                $post_cat_info = explode(":", $post_cat_html);
1116
-                $post_maincat_str = $post_cat_info[0];
1115
+				$post_cat_info = explode(":", $post_cat_html);
1116
+				$post_maincat_str = $post_cat_info[0];
1117 1117
 
1118
-                if (!empty($post_maincat_str)) {
1119
-                    $post_maincat_info = explode(",", $post_maincat_str);
1120
-                    $post_maincat_id = $post_maincat_info[0];
1121
-                    ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1122
-                    (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1123
-                }
1124
-                $post_sub_catid = '';
1125
-                if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1126
-                    $post_sub_catid = (int)$post_cat_info[1];
1127
-                }
1118
+				if (!empty($post_maincat_str)) {
1119
+					$post_maincat_info = explode(",", $post_maincat_str);
1120
+					$post_maincat_id = $post_maincat_info[0];
1121
+					($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1122
+					(end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1123
+				}
1124
+				$post_sub_catid = '';
1125
+				if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1126
+					$post_sub_catid = (int)$post_cat_info[1];
1127
+				}
1128 1128
 
1129
-                geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1129
+				geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1130 1130
 
1131
-            }
1132
-        } else {
1131
+			}
1132
+		} else {
1133 1133
 
1134
-            $post_cat_info = explode(":", $post_cat_str);
1135
-            $post_maincat_str = $post_cat_info[0];
1134
+			$post_cat_info = explode(":", $post_cat_str);
1135
+			$post_maincat_str = $post_cat_info[0];
1136 1136
 
1137
-            $post_sub_catid = '';
1137
+			$post_sub_catid = '';
1138 1138
 
1139
-            if (!empty($post_maincat_str)) {
1140
-                $post_maincat_info = explode(",", $post_maincat_str);
1141
-                $post_maincat_id = $post_maincat_info[0];
1142
-                ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1143
-                (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1144
-            }
1139
+			if (!empty($post_maincat_str)) {
1140
+				$post_maincat_info = explode(",", $post_maincat_str);
1141
+				$post_maincat_id = $post_maincat_info[0];
1142
+				($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1143
+				(end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1144
+			}
1145 1145
 
1146
-            if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1147
-                $post_sub_catid = (int)$post_cat_info[1];
1148
-            }
1146
+			if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1147
+				$post_sub_catid = (int)$post_cat_info[1];
1148
+			}
1149 1149
 
1150
-            geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1150
+			geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1151 1151
 
1152
-        }
1153
-    }
1152
+		}
1153
+	}
1154 1154
 }
1155 1155
 
1156 1156
 /**
@@ -1164,35 +1164,35 @@  discard block
 block discarded – undo
1164 1164
  */
1165 1165
 function geodir_get_catlist($cat_taxonomy, $parrent = 0, $selected = false)
1166 1166
 {
1167
-    global $exclude_cats;
1167
+	global $exclude_cats;
1168 1168
 
1169
-    $cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
1169
+	$cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
1170 1170
 
1171
-    if (!empty($cat_terms)) {
1172
-        $onchange = '';
1173
-        $onchange = ' onchange="show_subcatlist(this.value, this)" ';
1171
+	if (!empty($cat_terms)) {
1172
+		$onchange = '';
1173
+		$onchange = ' onchange="show_subcatlist(this.value, this)" ';
1174 1174
 
1175
-        $option_selected = '';
1176
-        if (!$selected)
1177
-            $option_slected = ' selected="selected" ';
1175
+		$option_selected = '';
1176
+		if (!$selected)
1177
+			$option_slected = ' selected="selected" ';
1178 1178
 
1179
-        echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1179
+		echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1180 1180
 
1181
-        echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
1181
+		echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
1182 1182
 
1183
-        foreach ($cat_terms as $cat_term) {
1184
-            $option_selected = '';
1185
-            if ($selected == $cat_term->term_id)
1186
-                $option_selected = ' selected="selected" ';
1183
+		foreach ($cat_terms as $cat_term) {
1184
+			$option_selected = '';
1185
+			if ($selected == $cat_term->term_id)
1186
+				$option_selected = ' selected="selected" ';
1187 1187
 
1188
-            // Count child terms
1189
-            $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
1190
-            $has_child = !empty( $child_terms ) ? 't' : 'f';
1188
+			// Count child terms
1189
+			$child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
1190
+			$has_child = !empty( $child_terms ) ? 't' : 'f';
1191 1191
 
1192
-            echo '<option  ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . ucfirst($cat_term->name) . '</option>';
1193
-        }
1194
-        echo '</select>';
1195
-    }
1192
+			echo '<option  ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . ucfirst($cat_term->name) . '</option>';
1193
+		}
1194
+		echo '</select>';
1195
+	}
1196 1196
 }
1197 1197
 
1198 1198
 /**
@@ -1208,28 +1208,28 @@  discard block
 block discarded – undo
1208 1208
  */
1209 1209
 function geodir_custom_update_messages($messages)
1210 1210
 {
1211
-    global $post, $post_ID;
1212
-
1213
-    $post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
1214
-
1215
-    foreach ($post_types as $post_type => $post_object) {
1216
-
1217
-        $messages[$post_type] = array(
1218
-            0 => '', // Unused. Messages start at index 1.
1219
-            1 => sprintf(__('%s updated. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1220
-            2 => __('Custom field updated.', 'geodirectory'),
1221
-            3 => __('Custom field deleted.', 'geodirectory'),
1222
-            4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
1223
-            5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
1224
-            6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1225
-            7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
1226
-            8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
1227
-            9 => sprintf(__('%s scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, date_i18n(__('M j, Y @ G:i', 'geodirectory'), strtotime($post->post_date)), esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1228
-            10 => sprintf(__('%s draft updated. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
1229
-        );
1230
-    }
1231
-
1232
-    return $messages;
1211
+	global $post, $post_ID;
1212
+
1213
+	$post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
1214
+
1215
+	foreach ($post_types as $post_type => $post_object) {
1216
+
1217
+		$messages[$post_type] = array(
1218
+			0 => '', // Unused. Messages start at index 1.
1219
+			1 => sprintf(__('%s updated. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1220
+			2 => __('Custom field updated.', 'geodirectory'),
1221
+			3 => __('Custom field deleted.', 'geodirectory'),
1222
+			4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
1223
+			5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
1224
+			6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1225
+			7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
1226
+			8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
1227
+			9 => sprintf(__('%s scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, date_i18n(__('M j, Y @ G:i', 'geodirectory'), strtotime($post->post_date)), esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1228
+			10 => sprintf(__('%s draft updated. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
1229
+		);
1230
+	}
1231
+
1232
+	return $messages;
1233 1233
 }
1234 1234
 
1235 1235
 
@@ -1244,183 +1244,183 @@  discard block
 block discarded – undo
1244 1244
 function geodir_register_defaults()
1245 1245
 {
1246 1246
 
1247
-    global $wpdb;
1248
-
1249
-    $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1250
-
1251
-    if (!$listing_slug = get_option('geodir_listing_prefix'))
1252
-        $listing_slug = 'places';
1253
-
1254
-    /**
1255
-     * Taxonomies
1256
-     **/
1257
-    //if ( ! taxonomy_exists('gd_place_tags') )
1258
-    {
1259
-
1260
-        $gd_placetags = array();
1261
-        $gd_placetags['object_type'] = 'gd_place';
1262
-        $gd_placetags['listing_slug'] = $listing_slug . '/tags';
1263
-        $gd_placetags['args'] = array(
1264
-            'public' => true,
1265
-            'hierarchical' => false,
1266
-            'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
1267
-            'query_var' => true,
1268
-
1269
-            'labels' => array(
1270
-                'name' => __('Place Tags', 'geodirectory'),
1271
-                'singular_name' => __('Place Tag', 'geodirectory'),
1272
-                'search_items' => __('Search Place Tags', 'geodirectory'),
1273
-                'popular_items' => __('Popular Place Tags', 'geodirectory'),
1274
-                'all_items' => __('All Place Tags', 'geodirectory'),
1275
-                'edit_item' => __('Edit Place Tag', 'geodirectory'),
1276
-                'update_item' => __('Update Place Tag', 'geodirectory'),
1277
-                'add_new_item' => __('Add New Place Tag', 'geodirectory'),
1278
-                'new_item_name' => __('New Place Tag Name', 'geodirectory'),
1279
-                'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
1280
-                'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
1281
-                'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
1282
-            ),
1283
-        );
1284
-
1285
-
1286
-        $geodir_taxonomies = get_option('geodir_taxonomies');
1287
-        $geodir_taxonomies['gd_place_tags'] = $gd_placetags;
1288
-        update_option('geodir_taxonomies', $geodir_taxonomies);
1289
-
1290
-
1291
-        // Update post types and delete tmp options
1292
-        flush_rewrite_rules();
1293
-
1294
-    }
1295
-
1296
-    //if ( ! taxonomy_exists('gd_placecategory') )
1297
-    {
1298
-
1299
-        $gd_placecategory = array();
1300
-        $gd_placecategory['object_type'] = 'gd_place';
1301
-        $gd_placecategory['listing_slug'] = $listing_slug;
1302
-        $gd_placecategory['args'] = array(
1303
-            'public' => true,
1304
-            'hierarchical' => true,
1305
-            'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
1306
-            'query_var' => true,
1307
-            'labels' => array(
1308
-                'name' => __('Place Categories', 'geodirectory'),
1309
-                'singular_name' => __('Place Category', 'geodirectory'),
1310
-                'search_items' => __('Search Place Categories', 'geodirectory'),
1311
-                'popular_items' => __('Popular Place Categories', 'geodirectory'),
1312
-                'all_items' => __('All Place Categories', 'geodirectory'),
1313
-                'edit_item' => __('Edit Place Category', 'geodirectory'),
1314
-                'update_item' => __('Update Place Category', 'geodirectory'),
1315
-                'add_new_item' => __('Add New Place Category', 'geodirectory'),
1316
-                'new_item_name' => __('New Place Category', 'geodirectory'),
1317
-                'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
1318
-            ),
1319
-        );
1320
-
1321
-
1322
-        $geodir_taxonomies = get_option('geodir_taxonomies');
1323
-        $geodir_taxonomies['gd_placecategory'] = $gd_placecategory;
1324
-        update_option('geodir_taxonomies', $geodir_taxonomies);
1325
-
1326
-
1327
-        flush_rewrite_rules();
1328
-    }
1329
-
1330
-    /**
1331
-     * Post Types
1332
-     **/
1333
-
1334
-    //if ( ! post_type_exists('gd_place') )
1335
-    {
1336
-
1337
-        $labels = array(
1338
-            'name' => __('Places', 'geodirectory'),
1339
-            'singular_name' => __('Place', 'geodirectory'),
1340
-            'add_new' => __('Add New', 'geodirectory'),
1341
-            'add_new_item' => __('Add New Place', 'geodirectory'),
1342
-            'edit_item' => __('Edit Place', 'geodirectory'),
1343
-            'new_item' => __('New Place', 'geodirectory'),
1344
-            'view_item' => __('View Place', 'geodirectory'),
1345
-            'search_items' => __('Search Places', 'geodirectory'),
1346
-            'not_found' => __('No Place Found', 'geodirectory'),
1347
-            'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
1348
-
1349
-        $place_default = array(
1350
-            'labels' => $labels,
1351
-            'can_export' => true,
1352
-            'capability_type' => 'post',
1353
-            'description' => 'Place post type.',
1354
-            'has_archive' => $listing_slug,
1355
-            'hierarchical' => false,
1356
-            'map_meta_cap' => true,
1357
-            'menu_icon' => $menu_icon,
1358
-            'public' => true,
1359
-            'query_var' => true,
1360
-            'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1361
-            'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
1362
-            'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
1363
-
1364
-        //Update custom post types
1365
-        $geodir_post_types = get_option('geodir_post_types');
1366
-        $geodir_post_types['gd_place'] = $place_default;
1367
-        update_option('geodir_post_types', $geodir_post_types);
1368
-
1369
-        // Update post types and delete tmp options
1370
-        flush_rewrite_rules();
1371
-    }
1372
-
1373
-
1374
-    geodir_register_taxonomies();
1375
-    geodir_register_post_types();
1376
-
1377
-    //die;
1247
+	global $wpdb;
1248
+
1249
+	$menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1250
+
1251
+	if (!$listing_slug = get_option('geodir_listing_prefix'))
1252
+		$listing_slug = 'places';
1253
+
1254
+	/**
1255
+	 * Taxonomies
1256
+	 **/
1257
+	//if ( ! taxonomy_exists('gd_place_tags') )
1258
+	{
1259
+
1260
+		$gd_placetags = array();
1261
+		$gd_placetags['object_type'] = 'gd_place';
1262
+		$gd_placetags['listing_slug'] = $listing_slug . '/tags';
1263
+		$gd_placetags['args'] = array(
1264
+			'public' => true,
1265
+			'hierarchical' => false,
1266
+			'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
1267
+			'query_var' => true,
1268
+
1269
+			'labels' => array(
1270
+				'name' => __('Place Tags', 'geodirectory'),
1271
+				'singular_name' => __('Place Tag', 'geodirectory'),
1272
+				'search_items' => __('Search Place Tags', 'geodirectory'),
1273
+				'popular_items' => __('Popular Place Tags', 'geodirectory'),
1274
+				'all_items' => __('All Place Tags', 'geodirectory'),
1275
+				'edit_item' => __('Edit Place Tag', 'geodirectory'),
1276
+				'update_item' => __('Update Place Tag', 'geodirectory'),
1277
+				'add_new_item' => __('Add New Place Tag', 'geodirectory'),
1278
+				'new_item_name' => __('New Place Tag Name', 'geodirectory'),
1279
+				'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
1280
+				'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
1281
+				'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
1282
+			),
1283
+		);
1284
+
1285
+
1286
+		$geodir_taxonomies = get_option('geodir_taxonomies');
1287
+		$geodir_taxonomies['gd_place_tags'] = $gd_placetags;
1288
+		update_option('geodir_taxonomies', $geodir_taxonomies);
1289
+
1290
+
1291
+		// Update post types and delete tmp options
1292
+		flush_rewrite_rules();
1293
+
1294
+	}
1295
+
1296
+	//if ( ! taxonomy_exists('gd_placecategory') )
1297
+	{
1298
+
1299
+		$gd_placecategory = array();
1300
+		$gd_placecategory['object_type'] = 'gd_place';
1301
+		$gd_placecategory['listing_slug'] = $listing_slug;
1302
+		$gd_placecategory['args'] = array(
1303
+			'public' => true,
1304
+			'hierarchical' => true,
1305
+			'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
1306
+			'query_var' => true,
1307
+			'labels' => array(
1308
+				'name' => __('Place Categories', 'geodirectory'),
1309
+				'singular_name' => __('Place Category', 'geodirectory'),
1310
+				'search_items' => __('Search Place Categories', 'geodirectory'),
1311
+				'popular_items' => __('Popular Place Categories', 'geodirectory'),
1312
+				'all_items' => __('All Place Categories', 'geodirectory'),
1313
+				'edit_item' => __('Edit Place Category', 'geodirectory'),
1314
+				'update_item' => __('Update Place Category', 'geodirectory'),
1315
+				'add_new_item' => __('Add New Place Category', 'geodirectory'),
1316
+				'new_item_name' => __('New Place Category', 'geodirectory'),
1317
+				'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
1318
+			),
1319
+		);
1320
+
1321
+
1322
+		$geodir_taxonomies = get_option('geodir_taxonomies');
1323
+		$geodir_taxonomies['gd_placecategory'] = $gd_placecategory;
1324
+		update_option('geodir_taxonomies', $geodir_taxonomies);
1325
+
1326
+
1327
+		flush_rewrite_rules();
1328
+	}
1329
+
1330
+	/**
1331
+	 * Post Types
1332
+	 **/
1333
+
1334
+	//if ( ! post_type_exists('gd_place') )
1335
+	{
1336
+
1337
+		$labels = array(
1338
+			'name' => __('Places', 'geodirectory'),
1339
+			'singular_name' => __('Place', 'geodirectory'),
1340
+			'add_new' => __('Add New', 'geodirectory'),
1341
+			'add_new_item' => __('Add New Place', 'geodirectory'),
1342
+			'edit_item' => __('Edit Place', 'geodirectory'),
1343
+			'new_item' => __('New Place', 'geodirectory'),
1344
+			'view_item' => __('View Place', 'geodirectory'),
1345
+			'search_items' => __('Search Places', 'geodirectory'),
1346
+			'not_found' => __('No Place Found', 'geodirectory'),
1347
+			'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
1348
+
1349
+		$place_default = array(
1350
+			'labels' => $labels,
1351
+			'can_export' => true,
1352
+			'capability_type' => 'post',
1353
+			'description' => 'Place post type.',
1354
+			'has_archive' => $listing_slug,
1355
+			'hierarchical' => false,
1356
+			'map_meta_cap' => true,
1357
+			'menu_icon' => $menu_icon,
1358
+			'public' => true,
1359
+			'query_var' => true,
1360
+			'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1361
+			'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
1362
+			'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
1363
+
1364
+		//Update custom post types
1365
+		$geodir_post_types = get_option('geodir_post_types');
1366
+		$geodir_post_types['gd_place'] = $place_default;
1367
+		update_option('geodir_post_types', $geodir_post_types);
1368
+
1369
+		// Update post types and delete tmp options
1370
+		flush_rewrite_rules();
1371
+	}
1372
+
1373
+
1374
+	geodir_register_taxonomies();
1375
+	geodir_register_post_types();
1376
+
1377
+	//die;
1378 1378
 
1379 1379
 }
1380 1380
 
1381 1381
 $gd_wpml_get_languages = "";
1382 1382
 function gd_wpml_get_lang_from_url($url){
1383 1383
 
1384
-    global $gd_wpml_get_languages;
1385
-    if(isset($_REQUEST['lang']) && $_REQUEST['lang']){return $_REQUEST['lang'];}
1384
+	global $gd_wpml_get_languages;
1385
+	if(isset($_REQUEST['lang']) && $_REQUEST['lang']){return $_REQUEST['lang'];}
1386 1386
 
1387 1387
 
1388
-    //
1389
-    $url = str_replace(array("http://","https://"),"",$url);
1388
+	//
1389
+	$url = str_replace(array("http://","https://"),"",$url);
1390 1390
 
1391
-    // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
1392
-    $site_url = str_replace(array("http://","https://"),"",site_url());
1391
+	// site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
1392
+	$site_url = str_replace(array("http://","https://"),"",site_url());
1393 1393
 
1394
-    $url = str_replace($site_url,"",$url);
1394
+	$url = str_replace($site_url,"",$url);
1395 1395
 
1396 1396
 
1397
-    $segments = explode('/', trim($url, '/'));
1397
+	$segments = explode('/', trim($url, '/'));
1398 1398
 
1399
-    //print_r( $segments);
1400
-    if($gd_wpml_get_languages){
1401
-        $langs = $gd_wpml_get_languages;
1402
-    }else{
1403
-        global $sitepress;
1404
-        $gd_wpml_get_languages = $sitepress->get_active_languages();
1405
-    }
1399
+	//print_r( $segments);
1400
+	if($gd_wpml_get_languages){
1401
+		$langs = $gd_wpml_get_languages;
1402
+	}else{
1403
+		global $sitepress;
1404
+		$gd_wpml_get_languages = $sitepress->get_active_languages();
1405
+	}
1406 1406
 
1407
-    if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
1408
-        return $segments[0];
1409
-    }
1407
+	if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
1408
+		return $segments[0];
1409
+	}
1410 1410
 
1411
-    return false;
1411
+	return false;
1412 1412
 
1413 1413
 
1414 1414
 }
1415 1415
 
1416 1416
 function gd_wpml_slug_translation_turned_on($post_type) {
1417 1417
 
1418
-    global $sitepress;
1419
-    $settings = $sitepress->get_settings();
1420
-    return isset($settings['posts_slug_translation']['types'][$post_type])
1421
-    && $settings['posts_slug_translation']['types'][$post_type]
1422
-    && isset($settings['posts_slug_translation']['on'])
1423
-    && $settings['posts_slug_translation']['on'];
1418
+	global $sitepress;
1419
+	$settings = $sitepress->get_settings();
1420
+	return isset($settings['posts_slug_translation']['types'][$post_type])
1421
+	&& $settings['posts_slug_translation']['types'][$post_type]
1422
+	&& isset($settings['posts_slug_translation']['on'])
1423
+	&& $settings['posts_slug_translation']['on'];
1424 1424
 }
1425 1425
 
1426 1426
 
@@ -1445,150 +1445,150 @@  discard block
 block discarded – undo
1445 1445
  */
1446 1446
 function geodir_listing_permalink_structure($post_link, $post_obj, $leavename, $sample)
1447 1447
 {
1448
-    //echo $post_link."<br />".$sample ;
1448
+	//echo $post_link."<br />".$sample ;
1449 1449
 
1450 1450
 
1451
-    global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache;
1452
-    if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
1453
-    } elseif (isset($post_obj->post_status) && $post_obj->post_status == 'auto-draft') {
1454
-        return $post_link;
1455
-    } else {
1456
-        $orig_post = $post;
1457
-        $post = $post_obj;
1458
-    }
1451
+	global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache;
1452
+	if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
1453
+	} elseif (isset($post_obj->post_status) && $post_obj->post_status == 'auto-draft') {
1454
+		return $post_link;
1455
+	} else {
1456
+		$orig_post = $post;
1457
+		$post = $post_obj;
1458
+	}
1459 1459
 
1460
-    if (in_array($post->post_type, geodir_get_posttypes())) {
1460
+	if (in_array($post->post_type, geodir_get_posttypes())) {
1461 1461
 
1462 1462
 
1463
-        $post_types = get_option('geodir_post_types');
1464
-        $slug = $post_types[$post->post_type]['rewrite']['slug'];
1463
+		$post_types = get_option('geodir_post_types');
1464
+		$slug = $post_types[$post->post_type]['rewrite']['slug'];
1465 1465
 
1466
-        // Alter the CPT slug if WPML is set to do so
1467
-        if(function_exists('icl_object_id')){
1468
-            if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1466
+		// Alter the CPT slug if WPML is set to do so
1467
+		if(function_exists('icl_object_id')){
1468
+			if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1469 1469
 
1470
-                $org_slug = $slug;
1471
-                $slug = apply_filters( 'wpml_translate_single_string',
1472
-                    $slug,
1473
-                    'WordPress',
1474
-                    'URL slug: ' . $slug,
1475
-                    $language_code);
1470
+				$org_slug = $slug;
1471
+				$slug = apply_filters( 'wpml_translate_single_string',
1472
+					$slug,
1473
+					'WordPress',
1474
+					'URL slug: ' . $slug,
1475
+					$language_code);
1476 1476
 
1477
-                if(!$slug){$slug = $org_slug;}
1477
+				if(!$slug){$slug = $org_slug;}
1478 1478
 
1479
-            }
1480
-        }
1479
+			}
1480
+		}
1481 1481
 
1482
-        if (function_exists('geodir_location_geo_home_link')) {
1483
-            remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
1484
-        }
1482
+		if (function_exists('geodir_location_geo_home_link')) {
1483
+			remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
1484
+		}
1485 1485
         
1486
-        // Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz.
1487
-        $site_url = trailingslashit(get_bloginfo('url'));
1486
+		// Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz.
1487
+		$site_url = trailingslashit(get_bloginfo('url'));
1488 1488
         
1489
-        if (function_exists('geodir_location_geo_home_link')) {
1490
-            add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
1491
-        }
1492
-
1493
-        $fix_url = strpos($post_link, $site_url) === 0 ? true : false;
1494
-        if ($fix_url) {
1495
-            $post_link = str_replace($site_url, '', $post_link);
1496
-        }
1497
-
1498
-        $post_link = trailingslashit(
1499
-            preg_replace(  "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 )
1500
-        );
1501
-
1502
-        if ($fix_url) {
1503
-            $post_link = $site_url . $post_link;
1504
-        }
1505
-
1506
-        if (isset($comment_post_cache[$post->ID])) {
1507
-            $post = $comment_post_cache[$post->ID];
1508
-        }
1509
-        if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
1510
-            $post_id = $post->ID;
1511
-            if (isset($orig_post)) {
1512
-                $post = $orig_post;
1513
-            }
1514
-            return $gd_permalink_cache[$post_id];
1515
-        }
1489
+		if (function_exists('geodir_location_geo_home_link')) {
1490
+			add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
1491
+		}
1516 1492
 
1517
-        if (!isset($post->post_locations)) {
1518
-            $post_type = $post->post_type;
1519
-            $ID = $post->ID;
1520
-            $post2 = $wpdb->get_row(
1521
-                $wpdb->prepare(
1522
-                    "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1523
-                    array($post->ID)
1524
-                )
1525
-            );
1493
+		$fix_url = strpos($post_link, $site_url) === 0 ? true : false;
1494
+		if ($fix_url) {
1495
+			$post_link = str_replace($site_url, '', $post_link);
1496
+		}
1526 1497
 
1527
-            $post = (object)array_merge((array)$post, (array)$post2);
1498
+		$post_link = trailingslashit(
1499
+			preg_replace(  "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 )
1500
+		);
1528 1501
 
1529
-            $comment_post_cache[$post->ID] = $post;
1530
-        }
1502
+		if ($fix_url) {
1503
+			$post_link = $site_url . $post_link;
1504
+		}
1531 1505
 
1506
+		if (isset($comment_post_cache[$post->ID])) {
1507
+			$post = $comment_post_cache[$post->ID];
1508
+		}
1509
+		if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
1510
+			$post_id = $post->ID;
1511
+			if (isset($orig_post)) {
1512
+				$post = $orig_post;
1513
+			}
1514
+			return $gd_permalink_cache[$post_id];
1515
+		}
1532 1516
 
1517
+		if (!isset($post->post_locations)) {
1518
+			$post_type = $post->post_type;
1519
+			$ID = $post->ID;
1520
+			$post2 = $wpdb->get_row(
1521
+				$wpdb->prepare(
1522
+					"SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1523
+					array($post->ID)
1524
+				)
1525
+			);
1533 1526
 
1534
-        if (false !== strpos($post_link, '%gd_taxonomy%')) {
1527
+			$post = (object)array_merge((array)$post, (array)$post2);
1535 1528
 
1536
-            if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
1537
-                $location_request = '';
1529
+			$comment_post_cache[$post->ID] = $post;
1530
+		}
1538 1531
 
1539 1532
 
1540
-                if (!empty($post->post_locations)) {
1541
-                    $geodir_arr_locations = explode(',', $post->post_locations);
1542
-                    if (count($geodir_arr_locations) == 3) {
1543
-                        $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1544
-                        $post->city_slug = str_replace(']', '', $post->city_slug);
1545
-                        $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1546
-                        $post->region_slug = str_replace(']', '', $post->region_slug);
1547
-                        $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1548
-                        $post->country_slug = str_replace(']', '', $post->country_slug);
1549 1533
 
1550
-                        $post_location = (object)array('country_slug' => $post->country_slug,
1551
-                            'region_slug' => $post->region_slug,
1552
-                            'city_slug' => $post->city_slug
1553
-                        );
1534
+		if (false !== strpos($post_link, '%gd_taxonomy%')) {
1554 1535
 
1555
-                    } else
1556
-                        $post_location = geodir_get_location();
1536
+			if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
1537
+				$location_request = '';
1557 1538
 
1558 1539
 
1559
-                } else {
1540
+				if (!empty($post->post_locations)) {
1541
+					$geodir_arr_locations = explode(',', $post->post_locations);
1542
+					if (count($geodir_arr_locations) == 3) {
1543
+						$post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1544
+						$post->city_slug = str_replace(']', '', $post->city_slug);
1545
+						$post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1546
+						$post->region_slug = str_replace(']', '', $post->region_slug);
1547
+						$post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1548
+						$post->country_slug = str_replace(']', '', $post->country_slug);
1560 1549
 
1561
-                    $post_location_sql = $wpdb->get_results(
1562
-                        $wpdb->prepare(
1563
-                            "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1564
-                            array($post->ID)
1565
-                        )
1566
-                    );
1567
-
1568
-                    if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
1569
-
1570
-                        $geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
1571
-                        if (count($geodir_arr_locations) == 3) {
1572
-                            $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1573
-                            $post->city_slug = str_replace(']', '', $post->city_slug);
1574
-                            $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1575
-                            $post->region_slug = str_replace(']', '', $post->region_slug);
1576
-                            $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1577
-                            $post->country_slug = str_replace(']', '', $post->country_slug);
1578
-
1579
-                            $post_location = (object)array('country_slug' => $post->country_slug,
1580
-                                'region_slug' => $post->region_slug,
1581
-                                'city_slug' => $post->city_slug
1582
-                            );
1550
+						$post_location = (object)array('country_slug' => $post->country_slug,
1551
+							'region_slug' => $post->region_slug,
1552
+							'city_slug' => $post->city_slug
1553
+						);
1583 1554
 
1584
-                        }
1585
-                    } else
1586
-                        $post_location = geodir_get_location();
1587
-                }
1555
+					} else
1556
+						$post_location = geodir_get_location();
1588 1557
 
1589 1558
 
1590
-                if (!empty($post_location)) {
1591
-                    $country_slug = isset($post_location->country_slug) ? $post_location->country_slug : '';
1559
+				} else {
1560
+
1561
+					$post_location_sql = $wpdb->get_results(
1562
+						$wpdb->prepare(
1563
+							"SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1564
+							array($post->ID)
1565
+						)
1566
+					);
1567
+
1568
+					if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
1569
+
1570
+						$geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
1571
+						if (count($geodir_arr_locations) == 3) {
1572
+							$post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1573
+							$post->city_slug = str_replace(']', '', $post->city_slug);
1574
+							$post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1575
+							$post->region_slug = str_replace(']', '', $post->region_slug);
1576
+							$post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1577
+							$post->country_slug = str_replace(']', '', $post->country_slug);
1578
+
1579
+							$post_location = (object)array('country_slug' => $post->country_slug,
1580
+								'region_slug' => $post->region_slug,
1581
+								'city_slug' => $post->city_slug
1582
+							);
1583
+
1584
+						}
1585
+					} else
1586
+						$post_location = geodir_get_location();
1587
+				}
1588
+
1589
+
1590
+				if (!empty($post_location)) {
1591
+					$country_slug = isset($post_location->country_slug) ? $post_location->country_slug : '';
1592 1592
 					$region_slug = isset($post_location->region_slug) ? $post_location->region_slug : '';
1593 1593
 					$city_slug = isset($post_location->city_slug) ? $post_location->city_slug : '';
1594 1594
 					
@@ -1606,78 +1606,78 @@  discard block
 block discarded – undo
1606 1606
 					$location_slug[] = $city_slug;
1607 1607
 					
1608 1608
 					$location_request .= implode('/', $location_slug) . '/';
1609
-                }
1610
-            }
1609
+				}
1610
+			}
1611 1611
 
1612
-            if (get_option('geodir_add_categories_url')) {
1612
+			if (get_option('geodir_add_categories_url')) {
1613 1613
 
1614
-                $term_request = '';
1615
-                $taxonomies = geodir_get_taxonomies($post->post_type);
1614
+				$term_request = '';
1615
+				$taxonomies = geodir_get_taxonomies($post->post_type);
1616 1616
 
1617
-                $taxonomies = end($taxonomies);
1617
+				$taxonomies = end($taxonomies);
1618 1618
 
1619
-                if (!empty($post->default_category)) {
1620
-                    $post_terms = $post->default_category;
1621
-                } else {
1622
-                    $post_terms = '';
1619
+				if (!empty($post->default_category)) {
1620
+					$post_terms = $post->default_category;
1621
+				} else {
1622
+					$post_terms = '';
1623 1623
 
1624
-                    if (isset($post->{$taxonomies})) {
1625
-                        $post_terms = explode(",", trim($post->{$taxonomies}, ","));
1626
-                        $post_terms = $post_terms[0];
1627
-                    }
1624
+					if (isset($post->{$taxonomies})) {
1625
+						$post_terms = explode(",", trim($post->{$taxonomies}, ","));
1626
+						$post_terms = $post_terms[0];
1627
+					}
1628 1628
 
1629
-                    if (!$post_terms)
1630
-                        $post_terms = geodir_get_post_meta($post->ID, 'default_category', true);
1629
+					if (!$post_terms)
1630
+						$post_terms = geodir_get_post_meta($post->ID, 'default_category', true);
1631 1631
 
1632
-                    if (!$post_terms) {
1633
-                        $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true);
1632
+					if (!$post_terms) {
1633
+						$post_terms = geodir_get_post_meta($post->ID, $taxonomies, true);
1634 1634
 
1635
-                        if ($post_terms) {
1636
-                            $post_terms = explode(",", trim($post_terms, ","));
1637
-                            $post_terms = $post_terms[0];
1638
-                        }
1639
-                    }
1640
-                }
1635
+						if ($post_terms) {
1636
+							$post_terms = explode(",", trim($post_terms, ","));
1637
+							$post_terms = $post_terms[0];
1638
+						}
1639
+					}
1640
+				}
1641 1641
 
1642
-                $term = get_term_by('id', $post_terms, $taxonomies);
1642
+				$term = get_term_by('id', $post_terms, $taxonomies);
1643 1643
 
1644
-                if (!empty($term))
1645
-                    $term_request = $term->slug;
1646
-                //$term_request = $term->slug.'/';
1647
-            }
1644
+				if (!empty($term))
1645
+					$term_request = $term->slug;
1646
+				//$term_request = $term->slug.'/';
1647
+			}
1648 1648
 
1649
-            $request_term = '';
1650
-            $listingurl_separator = '';
1651
-            //$detailurl_separator = get_option('geodir_detailurl_separator');
1652
-            $detailurl_separator = '';
1653
-            if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
1654
-                $request_term = $location_request;
1655
-                //$listingurl_separator = get_option('geodir_listingurl_separator');
1656
-                //$request_term .= $listingurl_separator.'/'.$term_request;
1657
-                $request_term .= $term_request;
1649
+			$request_term = '';
1650
+			$listingurl_separator = '';
1651
+			//$detailurl_separator = get_option('geodir_detailurl_separator');
1652
+			$detailurl_separator = '';
1653
+			if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
1654
+				$request_term = $location_request;
1655
+				//$listingurl_separator = get_option('geodir_listingurl_separator');
1656
+				//$request_term .= $listingurl_separator.'/'.$term_request;
1657
+				$request_term .= $term_request;
1658 1658
 
1659
-            } else {
1660
-                if (isset($location_request) && $location_request != '') $request_term = $location_request;
1659
+			} else {
1660
+				if (isset($location_request) && $location_request != '') $request_term = $location_request;
1661 1661
 
1662
-                if (isset($term_request) && $term_request != '') $request_term .= $term_request;
1663
-            }
1664
-            $request_term = trim($request_term, '/');
1665
-            if (!empty($request_term))
1666
-                $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1667
-            else
1668
-                $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1669
-            //echo $post_link ;
1670
-        }
1671
-        // temp cache the permalink
1672
-        if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
1673
-            $gd_permalink_cache[$post->ID] = $post_link;
1674
-        }
1675
-    }
1676
-    if (isset($orig_post)) {
1677
-        $post = $orig_post;
1678
-    }
1679
-
1680
-    return $post_link;
1662
+				if (isset($term_request) && $term_request != '') $request_term .= $term_request;
1663
+			}
1664
+			$request_term = trim($request_term, '/');
1665
+			if (!empty($request_term))
1666
+				$post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1667
+			else
1668
+				$post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1669
+			//echo $post_link ;
1670
+		}
1671
+		// temp cache the permalink
1672
+		if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
1673
+			$gd_permalink_cache[$post->ID] = $post_link;
1674
+		}
1675
+	}
1676
+	if (isset($orig_post)) {
1677
+		$post = $orig_post;
1678
+	}
1679
+
1680
+	return $post_link;
1681 1681
 }
1682 1682
 
1683 1683
 /**
@@ -1693,99 +1693,99 @@  discard block
 block discarded – undo
1693 1693
  * @return string The term link.
1694 1694
  */
1695 1695
 function geodir_term_link($termlink, $term, $taxonomy) {
1696
-    $geodir_taxonomies = geodir_get_taxonomies('', true);
1696
+	$geodir_taxonomies = geodir_get_taxonomies('', true);
1697 1697
 
1698
-    if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
1699
-        global $geodir_add_location_url, $gd_session;
1700
-        $include_location = false;
1701
-        $request_term = array();
1702
-        $add_location_url = get_option('geodir_add_location_url');
1703
-        $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
1698
+	if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
1699
+		global $geodir_add_location_url, $gd_session;
1700
+		$include_location = false;
1701
+		$request_term = array();
1702
+		$add_location_url = get_option('geodir_add_location_url');
1703
+		$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
1704 1704
 
1705
-        $listing_slug = geodir_get_listing_slug($taxonomy);
1705
+		$listing_slug = geodir_get_listing_slug($taxonomy);
1706 1706
 
1707
-        if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
1708
-            if ($geodir_add_location_url && $add_location_url) {
1709
-                $include_location = true;
1710
-            }
1711
-        } elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
1712
-            $include_location = true;
1713
-        } elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
1714
-            $include_location = true;
1715
-        }
1716
-
1717
-        if ($include_location) {
1718
-            global $post;
1707
+		if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
1708
+			if ($geodir_add_location_url && $add_location_url) {
1709
+				$include_location = true;
1710
+			}
1711
+		} elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
1712
+			$include_location = true;
1713
+		} elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
1714
+			$include_location = true;
1715
+		}
1716
+
1717
+		if ($include_location) {
1718
+			global $post;
1719 1719
             
1720
-            $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1720
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1721 1721
             
1722
-            if (geodir_is_page('detail') && isset($post->country_slug)) {
1723
-                $location_terms = array(
1724
-                    'gd_country' => $post->country_slug,
1725
-                    'gd_region' => $post->region_slug,
1726
-                    'gd_city' => $post->city_slug
1727
-                );
1722
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1723
+				$location_terms = array(
1724
+					'gd_country' => $post->country_slug,
1725
+					'gd_region' => $post->region_slug,
1726
+					'gd_city' => $post->city_slug
1727
+				);
1728 1728
                 
1729
-                if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1730
-                    $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1731
-                }
1732
-            } else {
1733
-                $location_terms = geodir_get_current_location_terms('query_vars');
1734
-            }
1729
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1730
+					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1731
+				}
1732
+			} else {
1733
+				$location_terms = geodir_get_current_location_terms('query_vars');
1734
+			}
1735 1735
 
1736
-            $geodir_show_location_url = get_option('geodir_show_location_url');
1737
-            $location_terms = geodir_remove_location_terms($location_terms);
1736
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1737
+			$location_terms = geodir_remove_location_terms($location_terms);
1738 1738
 
1739
-            if (!empty($location_terms)) {
1740
-                $url_separator = '';
1739
+			if (!empty($location_terms)) {
1740
+				$url_separator = '';
1741 1741
 
1742
-                if (get_option('permalink_structure') != '') {
1743
-                    $old_listing_slug = '/' . $listing_slug . '/';
1744
-                    $request_term = implode("/", $location_terms);
1745
-                    $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/';
1742
+				if (get_option('permalink_structure') != '') {
1743
+					$old_listing_slug = '/' . $listing_slug . '/';
1744
+					$request_term = implode("/", $location_terms);
1745
+					$new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/';
1746 1746
 
1747
-                    $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug));
1748
-                } else {
1749
-                    $termlink = geodir_getlink($termlink, $request_term);
1750
-                }
1751
-            }
1752
-        }
1747
+					$termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug));
1748
+				} else {
1749
+					$termlink = geodir_getlink($termlink, $request_term);
1750
+				}
1751
+			}
1752
+		}
1753 1753
 
1754
-        // Alter the CPT slug is WPML is set to do so
1755
-        /* we can replace this with the below function
1754
+		// Alter the CPT slug is WPML is set to do so
1755
+		/* we can replace this with the below function
1756 1756
         if(function_exists('icl_object_id')){
1757 1757
             global $sitepress;
1758 1758
             $post_type = str_replace("category","",$taxonomy);
1759 1759
             $termlink = $sitepress->post_type_archive_link_filter( $termlink, $post_type);
1760 1760
         }*/
1761 1761
 
1762
-        // Alter the CPT slug if WPML is set to do so
1763
-        if (function_exists('icl_object_id')) {
1764
-            $post_types = get_option('geodir_post_types');
1765
-            $post_type = str_replace("category","",$taxonomy);
1766
-            $post_type = str_replace("_tags","",$post_type);
1767
-            $slug = $post_types[$post_type]['rewrite']['slug'];
1768
-            if (gd_wpml_slug_translation_turned_on($post_type)) {
1769
-                global $sitepress;
1770
-                $default_lang = $sitepress->get_default_language();
1771
-                $language_code = gd_wpml_get_lang_from_url($termlink);
1772
-                if (!$language_code ) {
1773
-                    $language_code  = $default_lang;
1774
-                }
1762
+		// Alter the CPT slug if WPML is set to do so
1763
+		if (function_exists('icl_object_id')) {
1764
+			$post_types = get_option('geodir_post_types');
1765
+			$post_type = str_replace("category","",$taxonomy);
1766
+			$post_type = str_replace("_tags","",$post_type);
1767
+			$slug = $post_types[$post_type]['rewrite']['slug'];
1768
+			if (gd_wpml_slug_translation_turned_on($post_type)) {
1769
+				global $sitepress;
1770
+				$default_lang = $sitepress->get_default_language();
1771
+				$language_code = gd_wpml_get_lang_from_url($termlink);
1772
+				if (!$language_code ) {
1773
+					$language_code  = $default_lang;
1774
+				}
1775 1775
 
1776
-                $org_slug = $slug;
1777
-                $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
1776
+				$org_slug = $slug;
1777
+				$slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
1778 1778
 
1779
-                if (!$slug) {
1780
-                    $slug = $org_slug;
1781
-                }
1779
+				if (!$slug) {
1780
+					$slug = $org_slug;
1781
+				}
1782 1782
 
1783
-                $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug  ,$termlink, 1));
1784
-            }
1785
-        }
1786
-    }
1783
+				$termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug  ,$termlink, 1));
1784
+			}
1785
+		}
1786
+	}
1787 1787
     
1788
-    return $termlink;
1788
+	return $termlink;
1789 1789
 }
1790 1790
 
1791 1791
 /**
@@ -1811,14 +1811,14 @@  discard block
 block discarded – undo
1811 1811
 	if (in_array($post_type, geodir_get_posttypes())) {
1812 1812
 		if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
1813 1813
 			if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
1814
-                $location_terms = array(
1815
-                    'gd_country' => $post->country_slug,
1816
-                    'gd_region' => $post->region_slug,
1817
-                    'gd_city' => $post->city_slug
1818
-                );
1819
-            } else {
1820
-                $location_terms = geodir_get_current_location_terms('query_vars');
1821
-            }
1814
+				$location_terms = array(
1815
+					'gd_country' => $post->country_slug,
1816
+					'gd_region' => $post->region_slug,
1817
+					'gd_city' => $post->city_slug
1818
+				);
1819
+			} else {
1820
+				$location_terms = geodir_get_current_location_terms('query_vars');
1821
+			}
1822 1822
 			
1823 1823
 			$location_terms = geodir_remove_location_terms($location_terms);
1824 1824
 			
@@ -1850,17 +1850,17 @@  discard block
 block discarded – undo
1850 1850
  * @return void|string Label.
1851 1851
  */
1852 1852
 function get_post_type_singular_label($post_type, $echo = false, $translate = false) {
1853
-    $obj_post_type = get_post_type_object($post_type);
1854
-    if (!is_object($obj_post_type)) {
1855
-        return;
1856
-    }
1853
+	$obj_post_type = get_post_type_object($post_type);
1854
+	if (!is_object($obj_post_type)) {
1855
+		return;
1856
+	}
1857 1857
     
1858
-    $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name;
1858
+	$label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name;
1859 1859
     
1860
-    if ($echo)
1861
-        echo $label;
1862
-    else
1863
-        return $label;
1860
+	if ($echo)
1861
+		echo $label;
1862
+	else
1863
+		return $label;
1864 1864
 }
1865 1865
 
1866 1866
 /**
@@ -1875,19 +1875,19 @@  discard block
 block discarded – undo
1875 1875
  * @return void|string Label.
1876 1876
  */
1877 1877
 function get_post_type_plural_label($post_type, $echo = false, $translate = false) {
1878
-    $all_postypes = geodir_get_posttypes();
1878
+	$all_postypes = geodir_get_posttypes();
1879 1879
 
1880
-    if (!in_array($post_type, $all_postypes))
1881
-        return false;
1880
+	if (!in_array($post_type, $all_postypes))
1881
+		return false;
1882 1882
 
1883
-    $obj_post_type = get_post_type_object($post_type);
1883
+	$obj_post_type = get_post_type_object($post_type);
1884 1884
     
1885
-    $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name;
1885
+	$label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name;
1886 1886
     
1887
-    if ($echo)
1888
-        echo $label;
1889
-    else
1890
-        return $label;
1887
+	if ($echo)
1888
+		echo $label;
1889
+	else
1890
+		return $label;
1891 1891
 }
1892 1892
 
1893 1893
 /**
@@ -1905,51 +1905,51 @@  discard block
 block discarded – undo
1905 1905
  */
1906 1906
 function geodir_term_exists($term, $taxonomy = '', $parent = 0)
1907 1907
 {
1908
-    global $wpdb;
1909
-
1910
-    $select = "SELECT term_id FROM $wpdb->terms as t WHERE ";
1911
-    $tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE ";
1912
-
1913
-    if (is_int($term)) {
1914
-        if (0 == $term)
1915
-            return 0;
1916
-        $where = 't.term_id = %d';
1917
-        if (!empty($taxonomy))
1918
-            return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1919
-        else
1920
-            return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1921
-    }
1908
+	global $wpdb;
1909
+
1910
+	$select = "SELECT term_id FROM $wpdb->terms as t WHERE ";
1911
+	$tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE ";
1912
+
1913
+	if (is_int($term)) {
1914
+		if (0 == $term)
1915
+			return 0;
1916
+		$where = 't.term_id = %d';
1917
+		if (!empty($taxonomy))
1918
+			return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1919
+		else
1920
+			return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1921
+	}
1922 1922
 
1923
-    $term = trim(wp_unslash($term));
1923
+	$term = trim(wp_unslash($term));
1924 1924
 
1925
-    if ('' === $slug = sanitize_title($term))
1926
-        return 0;
1925
+	if ('' === $slug = sanitize_title($term))
1926
+		return 0;
1927 1927
 
1928
-    $where = 't.slug = %s';
1928
+	$where = 't.slug = %s';
1929 1929
 
1930
-    $where_fields = array($slug);
1931
-    if (!empty($taxonomy)) {
1932
-        $parent = (int)$parent;
1933
-        if ($parent > 0) {
1934
-            $where_fields[] = $parent;
1935
-            $else_where_fields[] = $parent;
1936
-            $where .= ' AND tt.parent = %d';
1930
+	$where_fields = array($slug);
1931
+	if (!empty($taxonomy)) {
1932
+		$parent = (int)$parent;
1933
+		if ($parent > 0) {
1934
+			$where_fields[] = $parent;
1935
+			$else_where_fields[] = $parent;
1936
+			$where .= ' AND tt.parent = %d';
1937 1937
 
1938
-        }
1938
+		}
1939 1939
 
1940
-        $where_fields[] = $taxonomy;
1940
+		$where_fields[] = $taxonomy;
1941 1941
 
1942 1942
 
1943
-        if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
1944
-            return $result;
1943
+		if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
1944
+			return $result;
1945 1945
 
1946
-        return false;
1947
-    }
1946
+		return false;
1947
+	}
1948 1948
 
1949
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
1950
-        return $result;
1949
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
1950
+		return $result;
1951 1951
 
1952
-    return false;
1952
+	return false;
1953 1953
 }
1954 1954
 
1955 1955
 /**
@@ -1961,7 +1961,7 @@  discard block
 block discarded – undo
1961 1961
 function geodir_get_term_icon_rebuild()
1962 1962
 {
1963 1963
 
1964
-    update_option('gd_term_icons', '');
1964
+	update_option('gd_term_icons', '');
1965 1965
 
1966 1966
 }
1967 1967
 
@@ -1979,61 +1979,61 @@  discard block
 block discarded – undo
1979 1979
  */
1980 1980
 function geodir_get_term_icon($term_id = false, $rebuild = false)
1981 1981
 {
1982
-    global $wpdb;
1983
-    if (!$rebuild) {
1984
-        $terms_icons = get_option('gd_term_icons');
1985
-    } else {
1986
-        $terms_icons = array();
1987
-    }
1988
-
1989
-    if (empty($terms_icons)) {
1990
-        $terms_icons = array();
1991
-        $default_icon_url = get_option('geodir_default_marker_icon');
1992
-        $taxonomy = geodir_get_taxonomies();
1993
-        $post_types = geodir_get_posttypes();
1994
-        $tax_arr = array();
1995
-        foreach ($post_types as $post_type) {
1996
-            $tax_arr[] = "'" . $post_type . "category'";
1997
-        }
1998
-        $tax_c = implode(',', $tax_arr);
1999
-        $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
2000
-        //$terms = get_terms( $taxonomy );
2001
-
2002
-        if($terms) {
2003
-            foreach ($terms as $term) {
2004
-                $post_type = str_replace("category", "", $term->taxonomy);
2005
-                $a_terms[$post_type][] = $term;
1982
+	global $wpdb;
1983
+	if (!$rebuild) {
1984
+		$terms_icons = get_option('gd_term_icons');
1985
+	} else {
1986
+		$terms_icons = array();
1987
+	}
2006 1988
 
2007
-            }
2008
-        }
1989
+	if (empty($terms_icons)) {
1990
+		$terms_icons = array();
1991
+		$default_icon_url = get_option('geodir_default_marker_icon');
1992
+		$taxonomy = geodir_get_taxonomies();
1993
+		$post_types = geodir_get_posttypes();
1994
+		$tax_arr = array();
1995
+		foreach ($post_types as $post_type) {
1996
+			$tax_arr[] = "'" . $post_type . "category'";
1997
+		}
1998
+		$tax_c = implode(',', $tax_arr);
1999
+		$terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
2000
+		//$terms = get_terms( $taxonomy );
2009 2001
 
2010
-        if($a_terms) {
2011
-            foreach ($a_terms as $pt => $t2) {
2002
+		if($terms) {
2003
+			foreach ($terms as $term) {
2004
+				$post_type = str_replace("category", "", $term->taxonomy);
2005
+				$a_terms[$post_type][] = $term;
2012 2006
 
2013
-                foreach ($t2 as $term) {
2014
-                    $term_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt);
2015
-                    if ($term_icon) {
2016
-                        $term_icon_url = $term_icon["src"];
2017
-                    } else {
2018
-                        $term_icon_url = $default_icon_url;
2019
-                    }
2020
-                    $terms_icons[$term->term_id] = $term_icon_url;
2021
-                }
2022
-            }
2023
-        }
2007
+			}
2008
+		}
2009
+
2010
+		if($a_terms) {
2011
+			foreach ($a_terms as $pt => $t2) {
2012
+
2013
+				foreach ($t2 as $term) {
2014
+					$term_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt);
2015
+					if ($term_icon) {
2016
+						$term_icon_url = $term_icon["src"];
2017
+					} else {
2018
+						$term_icon_url = $default_icon_url;
2019
+					}
2020
+					$terms_icons[$term->term_id] = $term_icon_url;
2021
+				}
2022
+			}
2023
+		}
2024 2024
 
2025
-        update_option('gd_term_icons', $terms_icons);
2026
-    }
2025
+		update_option('gd_term_icons', $terms_icons);
2026
+	}
2027 2027
 
2028
-    if ($term_id && isset($terms_icons[$term_id])) {
2029
-        return $terms_icons[$term_id];
2030
-    } elseif ($term_id && !isset($terms_icons[$term_id])) {
2031
-        return get_option('geodir_default_marker_icon');
2032
-    }
2028
+	if ($term_id && isset($terms_icons[$term_id])) {
2029
+		return $terms_icons[$term_id];
2030
+	} elseif ($term_id && !isset($terms_icons[$term_id])) {
2031
+		return get_option('geodir_default_marker_icon');
2032
+	}
2033 2033
 
2034
-    if (is_ssl()) {
2035
-        $terms_icons = str_replace("http:","https:",$terms_icons );
2036
-    }
2034
+	if (is_ssl()) {
2035
+		$terms_icons = str_replace("http:","https:",$terms_icons );
2036
+	}
2037 2037
 
2038
-    return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
2038
+	return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
2039 2039
 }
2040 2040
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/post_functions.php 1 patch
Indentation   +2234 added lines, -2234 removed lines patch added patch discarded remove patch
@@ -20,491 +20,491 @@  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;
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 144
             
145
-            $gd_post = $post;
146
-            if (!empty($gd_post) && is_array($gd_post)) {
147
-                $gd_post = (object)$post;
145
+			$gd_post = $post;
146
+			if (!empty($gd_post) && is_array($gd_post)) {
147
+				$gd_post = (object)$post;
148 148
                 
149
-                // Fix WPML duplicate.
150
-                if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
151
-                    return false;
152
-                }
153
-            }
149
+				// Fix WPML duplicate.
150
+				if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
151
+					return false;
152
+				}
153
+			}
154 154
             
155
-            $request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
156
-            $request_info['post_title'] = $request_info['post_title'];
157
-            $request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid']));
158
-            $request_info['post_desc'] = $request_info['content'];
159
-        } else if (!$dummy) {
160
-            return false;
161
-        }
162
-
163
-        /**
164
-         * Filter the request_info array.
165
-         *
166
-         * You can use this filter to modify request_info array.
167
-         *
168
-         * @since 1.0.0
169
-         * @package GeoDirectory
170
-         * @param array $request_info See {@see geodir_save_listing()} for accepted args.
171
-         */
172
-        $request_info = apply_filters('geodir_action_get_request_info', $request_info);
173
-
174
-        // Check if we need to save post location as new location
175
-        $location_result = geodir_get_default_location();
176
-
177
-        if ($location_result->location_id > 0) {
178
-            if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
179
-                $request_info['post_location'] = array(
180
-                    'city' => $request_info['post_city'],
181
-                    'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
182
-                    'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
183
-                    'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
184
-                    'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
185
-                );
186
-
187
-                $post_location_info = $request_info['post_location'];
188
-
189
-                if ($location_id = geodir_add_new_location($post_location_info)) {
190
-                    $post_location_id = $location_id;
191
-                }
192
-            } else {
193
-                $post_location_id = $location_result->location_id;
194
-            }
195
-        } else {
196
-            $post_location_id = $location_result->location_id;
197
-        }
198
-
199
-        if ($dummy) {
200
-            $post_status = 'publish';
201
-        } else {
202
-            $post_status = geodir_new_post_default_status();
203
-        }
204
-
205
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
206
-            $post_status = get_post_status($request_info['pid']);
207
-        }
208
-
209
-        /* fix change of slug on every title edit */
210
-        if (!isset($request_info['post_name'])) {
211
-            $request_info['post_name'] = $request_info['post_title'];
212
-
213
-            if (!empty($request_info['pid'])) {
214
-                $post_info = get_post($request_info['pid']);
215
-
216
-                if (!empty($post_info) && isset($post_info->post_name)) {
217
-                    $request_info['post_name'] = $post_info->post_name;
218
-                }
219
-            }
220
-        }
221
-
222
-        $post = array(
223
-            'post_content' => $request_info['post_desc'],
224
-            'post_status' => $post_status,
225
-            'post_title' => $request_info['post_title'],
226
-            'post_name' => $request_info['post_name'],
227
-            'post_type' => $request_info['listing_type']
228
-        );
229
-
230
-        /**
231
-         * Called before a listing is saved to the database.
232
-         *
233
-         * @since 1.0.0
234
-         * @param object $post The post object.
235
-         */
236
-        do_action_ref_array('geodir_before_save_listing', $post);
155
+			$request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
156
+			$request_info['post_title'] = $request_info['post_title'];
157
+			$request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid']));
158
+			$request_info['post_desc'] = $request_info['content'];
159
+		} else if (!$dummy) {
160
+			return false;
161
+		}
162
+
163
+		/**
164
+		 * Filter the request_info array.
165
+		 *
166
+		 * You can use this filter to modify request_info array.
167
+		 *
168
+		 * @since 1.0.0
169
+		 * @package GeoDirectory
170
+		 * @param array $request_info See {@see geodir_save_listing()} for accepted args.
171
+		 */
172
+		$request_info = apply_filters('geodir_action_get_request_info', $request_info);
173
+
174
+		// Check if we need to save post location as new location
175
+		$location_result = geodir_get_default_location();
176
+
177
+		if ($location_result->location_id > 0) {
178
+			if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
179
+				$request_info['post_location'] = array(
180
+					'city' => $request_info['post_city'],
181
+					'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
182
+					'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
183
+					'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
184
+					'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
185
+				);
186
+
187
+				$post_location_info = $request_info['post_location'];
188
+
189
+				if ($location_id = geodir_add_new_location($post_location_info)) {
190
+					$post_location_id = $location_id;
191
+				}
192
+			} else {
193
+				$post_location_id = $location_result->location_id;
194
+			}
195
+		} else {
196
+			$post_location_id = $location_result->location_id;
197
+		}
237 198
 
238
-        $send_post_submit_mail = false;
199
+		if ($dummy) {
200
+			$post_status = 'publish';
201
+		} else {
202
+			$post_status = geodir_new_post_default_status();
203
+		}
239 204
 
240
-        // unhook this function so it doesn't loop infinitely
241
-        remove_action('save_post', 'geodir_post_information_save',10,2);
205
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
206
+			$post_status = get_post_status($request_info['pid']);
207
+		}
242 208
 
243
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
244
-            $post['ID'] = $request_info['pid'];
209
+		/* fix change of slug on every title edit */
210
+		if (!isset($request_info['post_name'])) {
211
+			$request_info['post_name'] = $request_info['post_title'];
245 212
 
246
-            $last_post_id = wp_update_post($post, $wp_error);
247
-        } else {
248
-            $last_post_id = wp_insert_post($post, $wp_error);
213
+			if (!empty($request_info['pid'])) {
214
+				$post_info = get_post($request_info['pid']);
249 215
 
250
-            if (!$dummy && $last_post_id) {
251
-                $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)
252
-                //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
253
-            }
254
-        }
216
+				if (!empty($post_info) && isset($post_info->post_name)) {
217
+					$request_info['post_name'] = $post_info->post_name;
218
+				}
219
+			}
220
+		}
221
+
222
+		$post = array(
223
+			'post_content' => $request_info['post_desc'],
224
+			'post_status' => $post_status,
225
+			'post_title' => $request_info['post_title'],
226
+			'post_name' => $request_info['post_name'],
227
+			'post_type' => $request_info['listing_type']
228
+		);
229
+
230
+		/**
231
+		 * Called before a listing is saved to the database.
232
+		 *
233
+		 * @since 1.0.0
234
+		 * @param object $post The post object.
235
+		 */
236
+		do_action_ref_array('geodir_before_save_listing', $post);
237
+
238
+		$send_post_submit_mail = false;
239
+
240
+		// unhook this function so it doesn't loop infinitely
241
+		remove_action('save_post', 'geodir_post_information_save',10,2);
242
+
243
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
244
+			$post['ID'] = $request_info['pid'];
245
+
246
+			$last_post_id = wp_update_post($post, $wp_error);
247
+		} else {
248
+			$last_post_id = wp_insert_post($post, $wp_error);
249
+
250
+			if (!$dummy && $last_post_id) {
251
+				$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)
252
+				//geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
253
+			}
254
+		}
255 255
 
256
-        if ($wp_error && is_wp_error($last_post_id)) {
257
-            return $last_post_id; // Return WP_Error on save failure.
258
-        }
256
+		if ($wp_error && is_wp_error($last_post_id)) {
257
+			return $last_post_id; // Return WP_Error on save failure.
258
+		}
259 259
 
260
-        if (!$last_post_id) {
261
-            return false; // Save failure.
262
-        }
260
+		if (!$last_post_id) {
261
+			return false; // Save failure.
262
+		}
263 263
 
264
-        // re-hook this function
265
-        add_action('save_post', 'geodir_post_information_save',10,2);
264
+		// re-hook this function
265
+		add_action('save_post', 'geodir_post_information_save',10,2);
266 266
 
267
-        $post_tags = '';
268
-        if (!isset($request_info['post_tags'])) {
267
+		$post_tags = '';
268
+		if (!isset($request_info['post_tags'])) {
269 269
 
270
-            $post_type = $request_info['listing_type'];
271
-            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
270
+			$post_type = $request_info['listing_type'];
271
+			$post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
272 272
 
273
-        }
273
+		}
274 274
 
275
-        $gd_post_info = array(
276
-            "post_title" => $request_info['post_title'],
277
-            "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
278
-            "post_status" => $post_status,
279
-            "post_location_id" => $post_location_id,
280
-            "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
281
-            "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
282
-            "submit_time" => time(),
283
-            "submit_ip" => $_SERVER['REMOTE_ADDR'],
284
-        );
275
+		$gd_post_info = array(
276
+			"post_title" => $request_info['post_title'],
277
+			"post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
278
+			"post_status" => $post_status,
279
+			"post_location_id" => $post_location_id,
280
+			"claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
281
+			"businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
282
+			"submit_time" => time(),
283
+			"submit_ip" => $_SERVER['REMOTE_ADDR'],
284
+		);
285 285
 
286
-        $payment_info = array();
287
-        $package_info = array();
286
+		$payment_info = array();
287
+		$package_info = array();
288 288
 
289
-        $package_info = (array)geodir_post_package_info($package_info, $post);
289
+		$package_info = (array)geodir_post_package_info($package_info, $post);
290 290
 
291
-        $post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
291
+		$post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
292 292
 
293
-        if (!empty($package_info) && !$post_package_id) {
294
-            if (isset($package_info['days']) && $package_info['days'] != 0) {
295
-                $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
296
-            } else {
297
-                $payment_info['expire_date'] = 'Never';
298
-            }
293
+		if (!empty($package_info) && !$post_package_id) {
294
+			if (isset($package_info['days']) && $package_info['days'] != 0) {
295
+				$payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
296
+			} else {
297
+				$payment_info['expire_date'] = 'Never';
298
+			}
299 299
 
300
-            $payment_info['package_id'] = $package_info['pid'];
301
-            $payment_info['alive_days'] = $package_info['days'];
302
-            $payment_info['is_featured'] = $package_info['is_featured'];
300
+			$payment_info['package_id'] = $package_info['pid'];
301
+			$payment_info['alive_days'] = $package_info['days'];
302
+			$payment_info['is_featured'] = $package_info['is_featured'];
303 303
 
304
-            $gd_post_info = array_merge($gd_post_info, $payment_info);
305
-        }
304
+			$gd_post_info = array_merge($gd_post_info, $payment_info);
305
+		}
306 306
 
307
-        $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
307
+		$custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
308 308
 
309
-        foreach ($custom_metaboxes as $key => $val):
309
+		foreach ($custom_metaboxes as $key => $val):
310 310
 
311
-            $name = $val['name'];
312
-            $type = $val['type'];
313
-            $extrafields = $val['extra_fields'];
311
+			$name = $val['name'];
312
+			$type = $val['type'];
313
+			$extrafields = $val['extra_fields'];
314 314
 
315
-            if (trim($type) == 'address') {
316
-                $prefix = $name . '_';
317
-                $address = $prefix . 'address';
315
+			if (trim($type) == 'address') {
316
+				$prefix = $name . '_';
317
+				$address = $prefix . 'address';
318 318
 
319
-                if (isset($request_info[$address]) && $request_info[$address] != '') {
320
-                    $gd_post_info[$address] = wp_slash($request_info[$address]);
321
-                }
319
+				if (isset($request_info[$address]) && $request_info[$address] != '') {
320
+					$gd_post_info[$address] = wp_slash($request_info[$address]);
321
+				}
322 322
 
323
-                if ($extrafields != '') {
324
-                    $extrafields = unserialize($extrafields);
323
+				if ($extrafields != '') {
324
+					$extrafields = unserialize($extrafields);
325 325
 
326 326
 
327
-                    if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
327
+					if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
328 328
 
329
-                        $location_result = geodir_get_default_location();
329
+						$location_result = geodir_get_default_location();
330 330
 
331
-                        $gd_post_info[$prefix . 'city'] = $location_result->city;
332
-                        $gd_post_info[$prefix . 'region'] = $location_result->region;
333
-                        $gd_post_info[$prefix . 'country'] = $location_result->country;
331
+						$gd_post_info[$prefix . 'city'] = $location_result->city;
332
+						$gd_post_info[$prefix . 'region'] = $location_result->region;
333
+						$gd_post_info[$prefix . 'country'] = $location_result->country;
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
335
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
336 336
 
337
-                    } else {
337
+					} else {
338 338
 
339
-                        $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
340
-                        $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
341
-                        $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
339
+						$gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
340
+						$gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
341
+						$gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
342 342
 
343
-                        //----------set post locations when import dummy data-------
344
-                        $location_result = geodir_get_default_location();
343
+						//----------set post locations when import dummy data-------
344
+						$location_result = geodir_get_default_location();
345 345
 
346
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
347
-                        //-----------------------------------------------------------------
346
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
347
+						//-----------------------------------------------------------------
348 348
 
349
-                    }
349
+					}
350 350
 
351 351
 
352
-                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
353
-                        $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
354
-                    }
352
+					if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
353
+						$gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
354
+					}
355 355
 
356 356
 
357
-                    if (isset($extrafields['show_map']) && $extrafields['show_map']) {
357
+					if (isset($extrafields['show_map']) && $extrafields['show_map']) {
358 358
 
359
-                        if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
360
-                            $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
361
-                        }
359
+						if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
360
+							$gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
361
+						}
362 362
 
363
-                        if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
364
-                            $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
365
-                        }
363
+						if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
364
+							$gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
365
+						}
366 366
 
367
-                        if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
368
-                            $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
369
-                        }
367
+						if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
368
+							$gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
369
+						}
370 370
 
371
-                        if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
372
-                            $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
373
-                        }
371
+						if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
372
+							$gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
373
+						}
374 374
 
375
-                    }
375
+					}
376 376
 
377
-                    // show lat lng
378
-                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
379
-                        $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
380
-                    }
381
-                }
377
+					// show lat lng
378
+					if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
379
+						$gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
380
+					}
381
+				}
382 382
 
383
-            } elseif (trim($type) == 'file') {
384
-                if (isset($request_info[$name])) {
385
-                    $request_files = array();
386
-                    if ($request_info[$name] != '')
387
-                        $request_files = explode(",", $request_info[$name]);
383
+			} elseif (trim($type) == 'file') {
384
+				if (isset($request_info[$name])) {
385
+					$request_files = array();
386
+					if ($request_info[$name] != '')
387
+						$request_files = explode(",", $request_info[$name]);
388 388
 
389
-                    $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
390
-                    geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
389
+					$extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
390
+					geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
391 391
 
392
-                }
393
-            } elseif (trim($type) == 'datepicker') {
394
-                $datetime = '';
395
-                if (isset($request_info[$name]) && $request_info[$name] != '') {
396
-                    $date_format = geodir_default_date_format();
397
-                    if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
398
-                        $extra_fields = unserialize($val['extra_fields']);
399
-                        $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
400
-                    }
392
+				}
393
+			} elseif (trim($type) == 'datepicker') {
394
+				$datetime = '';
395
+				if (isset($request_info[$name]) && $request_info[$name] != '') {
396
+					$date_format = geodir_default_date_format();
397
+					if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
398
+						$extra_fields = unserialize($val['extra_fields']);
399
+						$date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
400
+					}
401 401
 
402
-                    // check if we need to change the format or not
403
-                    $date_format_len = strlen(str_replace(' ', '', $date_format));
404
-                    if($date_format_len>5){// if greater then 5 then it's the old style format.
402
+					// check if we need to change the format or not
403
+					$date_format_len = strlen(str_replace(' ', '', $date_format));
404
+					if($date_format_len>5){// if greater then 5 then it's the old style format.
405 405
 
406
-                        $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
407
-                        $replace = array('d','j','l','m','n','F','Y');//PHP date format
406
+						$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
407
+						$replace = array('d','j','l','m','n','F','Y');//PHP date format
408 408
 
409
-                        $date_format = str_replace($search, $replace, $date_format);
409
+						$date_format = str_replace($search, $replace, $date_format);
410 410
 
411
-                        $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
411
+						$post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
412 412
 
413
-                    }else{
414
-                        $post_htmlvar_value = $request_info[$name];
415
-                    }
413
+					}else{
414
+						$post_htmlvar_value = $request_info[$name];
415
+					}
416 416
 
417
-                    $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
418
-                    $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
417
+					$post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
418
+					$datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
419 419
 
420
-                    //$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
420
+					//$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
421 421
 
422
-                }
423
-                $gd_post_info[$name] = $datetime;
424
-            } else if ($type == 'multiselect') {
425
-                if (isset($request_info[$name])) {
426
-                    $gd_post_info[$name] = $request_info[$name];
427
-                } else {
428
-                    if (isset($request_info['gd_field_' . $name])) {
429
-                        $gd_post_info[$name] = ''; /* fix de-select for multiselect */
430
-                    }
431
-                }
432
-            } else if (isset($request_info[$name])) {
433
-                $gd_post_info[$name] = $request_info[$name];
434
-            }
422
+				}
423
+				$gd_post_info[$name] = $datetime;
424
+			} else if ($type == 'multiselect') {
425
+				if (isset($request_info[$name])) {
426
+					$gd_post_info[$name] = $request_info[$name];
427
+				} else {
428
+					if (isset($request_info['gd_field_' . $name])) {
429
+						$gd_post_info[$name] = ''; /* fix de-select for multiselect */
430
+					}
431
+				}
432
+			} else if (isset($request_info[$name])) {
433
+				$gd_post_info[$name] = $request_info[$name];
434
+			}
435 435
 
436
-        endforeach;
436
+		endforeach;
437 437
 
438
-        if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
439
-            $gd_post_info['post_dummy'] = $request_info['post_dummy'];
440
-        }
438
+		if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
439
+			$gd_post_info['post_dummy'] = $request_info['post_dummy'];
440
+		}
441 441
 
442
-        // Save post detail info in detail table
443
-        if (!empty($gd_post_info)) {
444
-            geodir_save_post_info($last_post_id, $gd_post_info);
445
-        }
442
+		// Save post detail info in detail table
443
+		if (!empty($gd_post_info)) {
444
+			geodir_save_post_info($last_post_id, $gd_post_info);
445
+		}
446 446
 
447 447
 
448
-        // Set categories to the listing
449
-        if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
450
-            $post_category = array();
448
+		// Set categories to the listing
449
+		if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
450
+			$post_category = array();
451 451
 
452
-            foreach ($request_info['post_category'] as $taxonomy => $cat) {
452
+			foreach ($request_info['post_category'] as $taxonomy => $cat) {
453 453
 
454
-                if ($dummy)
455
-                    $post_category = $cat;
456
-                else {
454
+				if ($dummy)
455
+					$post_category = $cat;
456
+				else {
457 457
 
458
-                    if (!is_array($cat) && strstr($cat, ','))
459
-                        $cat = explode(',', $cat);
458
+					if (!is_array($cat) && strstr($cat, ','))
459
+						$cat = explode(',', $cat);
460 460
 
461
-                    if (!empty($cat) && is_array($cat))
462
-                        $post_category = array_map('intval', $cat);
463
-                }
461
+					if (!empty($cat) && is_array($cat))
462
+						$post_category = array_map('intval', $cat);
463
+				}
464 464
 
465
-                wp_set_object_terms($last_post_id, $post_category, $taxonomy);
466
-            }
465
+				wp_set_object_terms($last_post_id, $post_category, $taxonomy);
466
+			}
467 467
 
468
-            $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
468
+			$post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
469 469
 
470
-            $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
471
-            geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
470
+			$post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
471
+			geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
472 472
 
473
-        }
473
+		}
474 474
 
475
-        $post_tags = '';
476
-        // Set tags to the listing
477
-        if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
478
-            $post_tags = explode(",", $request_info['post_tags']);
479
-        } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
480
-            if ($dummy)
481
-                $post_tags = $request_info['post_tags'];
482
-        } else {
483
-            if ($dummy)
484
-                $post_tags = array($request_info['post_title']);
485
-        }
475
+		$post_tags = '';
476
+		// Set tags to the listing
477
+		if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
478
+			$post_tags = explode(",", $request_info['post_tags']);
479
+		} elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
480
+			if ($dummy)
481
+				$post_tags = $request_info['post_tags'];
482
+		} else {
483
+			if ($dummy)
484
+				$post_tags = array($request_info['post_title']);
485
+		}
486 486
 
487
-        if (is_array($post_tags)) {
488
-            $taxonomy = $request_info['listing_type'] . '_tags';
489
-            wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
490
-        }
487
+		if (is_array($post_tags)) {
488
+			$taxonomy = $request_info['listing_type'] . '_tags';
489
+			wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
490
+		}
491 491
 
492 492
 
493
-        // Insert attechment
493
+		// Insert attechment
494 494
 
495
-        if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
496
-            if (!$dummy) {
497
-                $tmpimgArr = trim($request_info['post_images'], ",");
498
-                $tmpimgArr = explode(",", $tmpimgArr);
499
-                geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
500
-            } else{
501
-                geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
502
-            }
495
+		if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
496
+			if (!$dummy) {
497
+				$tmpimgArr = trim($request_info['post_images'], ",");
498
+				$tmpimgArr = explode(",", $tmpimgArr);
499
+				geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
500
+			} else{
501
+				geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
502
+			}
503 503
 
504 504
 
505
-        } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
505
+		} elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
506 506
 
507
-            /* Delete Attachments
507
+			/* Delete Attachments
508 508
 			$postcurr_images = geodir_get_images($last_post_id);
509 509
 
510 510
 			$wpdb->query(
@@ -520,34 +520,34 @@  discard block
 block discarded – undo
520 520
 			geodir_save_post_info($last_post_id, $gd_post_featured_img);
521 521
 			*/
522 522
 
523
-        }
523
+		}
524 524
 
525
-        geodir_remove_temp_images();
526
-        geodir_set_wp_featured_image($last_post_id);
525
+		geodir_remove_temp_images();
526
+		geodir_set_wp_featured_image($last_post_id);
527 527
 
528
-        /**
529
-         * Called after a listing is saved to the database and before any email have been sent.
530
-         *
531
-         * @since 1.0.0
532
-         * @param int $last_post_id The saved post ID.
533
-         * @param array $request_info The post details in an array.
534
-         * @see 'geodir_after_save_listinginfo'
535
-         */
536
-        do_action('geodir_after_save_listing', $last_post_id, $request_info);
528
+		/**
529
+		 * Called after a listing is saved to the database and before any email have been sent.
530
+		 *
531
+		 * @since 1.0.0
532
+		 * @param int $last_post_id The saved post ID.
533
+		 * @param array $request_info The post details in an array.
534
+		 * @see 'geodir_after_save_listinginfo'
535
+		 */
536
+		do_action('geodir_after_save_listing', $last_post_id, $request_info);
537 537
 
538
-        //die;
538
+		//die;
539 539
 
540
-        if ($send_post_submit_mail) { // if new post send out email
541
-            $to_name = geodir_get_client_name($current_user->ID);
542
-            geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
543
-        }
544
-        /*
540
+		if ($send_post_submit_mail) { // if new post send out email
541
+			$to_name = geodir_get_client_name($current_user->ID);
542
+			geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
543
+		}
544
+		/*
545 545
          * Unset the session so we don't loop.
546 546
          */
547
-        $gd_session->un_set('listing');
548
-        return $last_post_id;
547
+		$gd_session->un_set('listing');
548
+		return $last_post_id;
549 549
 
550
-    }
550
+	}
551 551
 
552 552
 }
553 553
 
@@ -566,599 +566,599 @@  discard block
 block discarded – undo
566 566
 function geodir_get_post_info($post_id = '')
567 567
 {
568 568
 
569
-    global $wpdb, $plugin_prefix, $post, $post_info;
569
+	global $wpdb, $plugin_prefix, $post, $post_info;
570 570
 
571
-    if ($post_id == '' && !empty($post))
572
-        $post_id = $post->ID;
571
+	if ($post_id == '' && !empty($post))
572
+		$post_id = $post->ID;
573 573
 
574
-    $post_type = get_post_type($post_id);
574
+	$post_type = get_post_type($post_id);
575 575
 
576
-    $all_postypes = geodir_get_posttypes();
576
+	$all_postypes = geodir_get_posttypes();
577 577
 
578
-    if (!in_array($post_type, $all_postypes))
579
-        return false;
578
+	if (!in_array($post_type, $all_postypes))
579
+		return false;
580 580
 
581
-    $table = $plugin_prefix . $post_type . '_detail';
581
+	$table = $plugin_prefix . $post_type . '_detail';
582 582
 
583
-    /**
584
-     * Apply Filter to change Post info
585
-     *
586
-     * You can use this filter to change Post info.
587
-     *
588
-     * @since 1.0.0
589
-     * @package GeoDirectory
590
-     */
591
-    $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
583
+	/**
584
+	 * Apply Filter to change Post info
585
+	 *
586
+	 * You can use this filter to change Post info.
587
+	 *
588
+	 * @since 1.0.0
589
+	 * @package GeoDirectory
590
+	 */
591
+	$query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
592 592
 			  WHERE p.ID = pd.post_id
593 593
 			  AND post_id = " . $post_id);
594 594
 
595
-    $post_detail = $wpdb->get_row($query);
595
+	$post_detail = $wpdb->get_row($query);
596 596
 
597
-    return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
597
+	return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
598 598
 
599 599
 }
600 600
 
601 601
 
602 602
 if (!function_exists('geodir_save_post_info')) {
603
-    /**
604
-     * Saves post detail info in detail table.
605
-     *
606
-     * @since 1.0.0
607
-     * @package GeoDirectory
608
-     * @global object $wpdb WordPress Database object.
609
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
610
-     * @param int $post_id The post ID.
611
-     * @param array $postinfo_array {
612
-     *    Post info that needs to be saved in detail table.
613
-     *
614
-     *    @type string $post_title              Listing title.
615
-     *    @type string $post_tags               Listing tags.
616
-     *    @type string $post_status             Listing post status.
617
-     *    @type string $post_location_id        Listing location ID.
618
-     *    @type string $claimed                 Todo Desc needed.
619
-     *    @type string $businesses              Todo Desc needed.
620
-     *    @type int    $submit_time             Submitted time in unix timestamp.
621
-     *    @type string $submit_ip               Submitted IP.
622
-     *    @type string $expire_date             Listing expiration date.
623
-     *    @type int    $package_id              Listing package ID.
624
-     *    @type int    $alive_days              Todo Desc needed.
625
-     *    @type int    $is_featured             Is this a featured listing?.
626
-     *    @type string $post_address            Listing address.
627
-     *    @type string $post_city               Listing city.
628
-     *    @type string $post_region             Listing region.
629
-     *    @type string $post_country            Listing country.
630
-     *    @type string $post_locations          Listing locations.
631
-     *    @type string $post_zip                Listing zip.
632
-     *    @type string $post_latitude           Listing latitude.
633
-     *    @type string $post_longitude          Listing longitude.
634
-     *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
635
-     *    @type string $post_mapzoom            Listing mapzoom Default "9".
636
-     *    @type string $geodir_timing           Business timing info.
637
-     *    @type string $geodir_contact          Contact number.
638
-     *    @type string $geodir_email            Business contact email.
639
-     *    @type string $geodir_website          Business website.
640
-     *    @type string $geodir_twitter          Twitter link.
641
-     *    @type string $geodir_facebook         Facebook link.
642
-     *    @type string $geodir_video            Video link.
643
-     *    @type string $geodir_special_offers   Speacial offers.
644
-     *
645
-     * }
646
-     * @return bool
647
-     */
648
-    function geodir_save_post_info($post_id, $postinfo_array = array())
649
-    {
650
-        global $wpdb, $plugin_prefix;
651
-
652
-        $post_type = get_post_type($post_id);
653
-
654
-        $table = $plugin_prefix . $post_type . '_detail';
655
-
656
-        /**
657
-         * Filter to change Post info
658
-         *
659
-         * You can use this filter to change Post info.
660
-         *
661
-         * @since 1.0.0
662
-         * @package GeoDirectory
663
-         * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
664
-         * @param int $post_id The post ID.
665
-         */
666
-        $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
603
+	/**
604
+	 * Saves post detail info in detail table.
605
+	 *
606
+	 * @since 1.0.0
607
+	 * @package GeoDirectory
608
+	 * @global object $wpdb WordPress Database object.
609
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
610
+	 * @param int $post_id The post ID.
611
+	 * @param array $postinfo_array {
612
+	 *    Post info that needs to be saved in detail table.
613
+	 *
614
+	 *    @type string $post_title              Listing title.
615
+	 *    @type string $post_tags               Listing tags.
616
+	 *    @type string $post_status             Listing post status.
617
+	 *    @type string $post_location_id        Listing location ID.
618
+	 *    @type string $claimed                 Todo Desc needed.
619
+	 *    @type string $businesses              Todo Desc needed.
620
+	 *    @type int    $submit_time             Submitted time in unix timestamp.
621
+	 *    @type string $submit_ip               Submitted IP.
622
+	 *    @type string $expire_date             Listing expiration date.
623
+	 *    @type int    $package_id              Listing package ID.
624
+	 *    @type int    $alive_days              Todo Desc needed.
625
+	 *    @type int    $is_featured             Is this a featured listing?.
626
+	 *    @type string $post_address            Listing address.
627
+	 *    @type string $post_city               Listing city.
628
+	 *    @type string $post_region             Listing region.
629
+	 *    @type string $post_country            Listing country.
630
+	 *    @type string $post_locations          Listing locations.
631
+	 *    @type string $post_zip                Listing zip.
632
+	 *    @type string $post_latitude           Listing latitude.
633
+	 *    @type string $post_longitude          Listing longitude.
634
+	 *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
635
+	 *    @type string $post_mapzoom            Listing mapzoom Default "9".
636
+	 *    @type string $geodir_timing           Business timing info.
637
+	 *    @type string $geodir_contact          Contact number.
638
+	 *    @type string $geodir_email            Business contact email.
639
+	 *    @type string $geodir_website          Business website.
640
+	 *    @type string $geodir_twitter          Twitter link.
641
+	 *    @type string $geodir_facebook         Facebook link.
642
+	 *    @type string $geodir_video            Video link.
643
+	 *    @type string $geodir_special_offers   Speacial offers.
644
+	 *
645
+	 * }
646
+	 * @return bool
647
+	 */
648
+	function geodir_save_post_info($post_id, $postinfo_array = array())
649
+	{
650
+		global $wpdb, $plugin_prefix;
651
+
652
+		$post_type = get_post_type($post_id);
653
+
654
+		$table = $plugin_prefix . $post_type . '_detail';
655
+
656
+		/**
657
+		 * Filter to change Post info
658
+		 *
659
+		 * You can use this filter to change Post info.
660
+		 *
661
+		 * @since 1.0.0
662
+		 * @package GeoDirectory
663
+		 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
664
+		 * @param int $post_id The post ID.
665
+		 */
666
+		$postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
667
+
668
+		$query_string_escaped = '';
669
+		$query_string_array = array();
670
+
671
+		if (!empty($postmeta) && $post_id) {
672
+
673
+			$columns = $wpdb->get_col("show columns from $table");
674
+			foreach ($postmeta as $mkey => $mval) {
675
+				if(in_array($mkey,$columns)) {
676
+					if (is_array($mval)) {
677
+						$mval = implode(",", $mval);
678
+					}
679
+					$query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above
680
+					$query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare
667 681
 
668
-        $query_string_escaped = '';
669
-        $query_string_array = array();
682
+				}
683
+			}
670 684
 
671
-        if (!empty($postmeta) && $post_id) {
685
+			$query_string_escaped = trim($query_string_escaped, ", ");
672 686
 
673
-            $columns = $wpdb->get_col("show columns from $table");
674
-            foreach ($postmeta as $mkey => $mval) {
675
-                if(in_array($mkey,$columns)) {
676
-                    if (is_array($mval)) {
677
-                        $mval = implode(",", $mval);
678
-                    }
679
-                    $query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above
680
-                    $query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare
687
+			if (empty($query_string_array) || trim($query_string_escaped) == '') {
688
+				return false;
689
+			}
681 690
 
682
-                }
683
-            }
691
+			$query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array);
684 692
 
685
-            $query_string_escaped = trim($query_string_escaped, ", ");
686 693
 
687
-            if (empty($query_string_array) || trim($query_string_escaped) == '') {
688
-                return false;
689
-            }
694
+			/**
695
+			 * Called before saving the listing info.
696
+			 *
697
+			 * @since 1.0.0
698
+			 * @package GeoDirectory
699
+			 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
700
+			 * @param int $post_id The post ID.
701
+			 */
702
+			do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
690 703
 
691
-            $query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array);
704
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
692 705
 
706
+				$query_string_array[] = $post_id;
707
+				$wpdb->query(
708
+					$wpdb->prepare(
709
+						"UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d",
710
+						$query_string_array
711
+					)
712
+				);
693 713
 
694
-            /**
695
-             * Called before saving the listing info.
696
-             *
697
-             * @since 1.0.0
698
-             * @package GeoDirectory
699
-             * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
700
-             * @param int $post_id The post ID.
701
-             */
702
-            do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
703 714
 
704
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
715
+			} else {
705 716
 
706
-                $query_string_array[] = $post_id;
707
-                $wpdb->query(
708
-                    $wpdb->prepare(
709
-                        "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d",
710
-                        $query_string_array
711
-                    )
712
-                );
717
+				array_unshift($query_string_array, $post_id);
718
+				$wpdb->query(
719
+					$wpdb->prepare(
720
+						"INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped,
721
+						$query_string_array
722
+					)
723
+				);
724
+                
725
+			}
713 726
 
727
+			/**
728
+			 * Called after saving the listing info.
729
+			 *
730
+			 * @since 1.0.0
731
+			 * @package GeoDirectory
732
+			 * @param array $postinfo_array Post info that needs to be saved in detail table.
733
+			 * @param int $post_id The post ID.
734
+			 * @see 'geodir_after_save_listing'
735
+			 */
736
+			do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
737
+
738
+			return true;
739
+		} else
740
+			return false;
714 741
 
715
-            } else {
742
+	}
743
+}
716 744
 
717
-                array_unshift($query_string_array, $post_id);
718
-                $wpdb->query(
719
-                    $wpdb->prepare(
720
-                        "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped,
721
-                        $query_string_array
722
-                    )
723
-                );
724
-                
725
-            }
726 745
 
727
-            /**
728
-             * Called after saving the listing info.
729
-             *
730
-             * @since 1.0.0
731
-             * @package GeoDirectory
732
-             * @param array $postinfo_array Post info that needs to be saved in detail table.
733
-             * @param int $post_id The post ID.
734
-             * @see 'geodir_after_save_listing'
735
-             */
736
-            do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
746
+if (!function_exists('geodir_save_post_meta')) {
747
+	/**
748
+	 * Save or update post custom fields.
749
+	 *
750
+	 * @since 1.0.0
751
+	 * @package GeoDirectory
752
+	 * @global object $wpdb WordPress Database object.
753
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
754
+	 * @param int $post_id The post ID.
755
+	 * @param string $postmeta Detail table column name.
756
+	 * @param string $meta_value Detail table column value.
757
+	 * @return void|bool
758
+	 */
759
+	function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
760
+	{
761
+
762
+		global $wpdb, $plugin_prefix;
763
+
764
+		$post_type = get_post_type($post_id);
765
+
766
+		$table = $plugin_prefix . $post_type . '_detail';
767
+
768
+		if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
769
+
770
+			if (is_array($meta_value)) {
771
+				$meta_value = implode(",", $meta_value);
772
+			}
737 773
 
738
-            return true;
739
-        } else
740
-            return false;
774
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
741 775
 
742
-    }
743
-}
776
+				$wpdb->query(
777
+					$wpdb->prepare(
778
+						"UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
779
+						array($post_id)
780
+					)
781
+				);
744 782
 
783
+			} else {
745 784
 
746
-if (!function_exists('geodir_save_post_meta')) {
747
-    /**
748
-     * Save or update post custom fields.
749
-     *
750
-     * @since 1.0.0
751
-     * @package GeoDirectory
752
-     * @global object $wpdb WordPress Database object.
753
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
754
-     * @param int $post_id The post ID.
755
-     * @param string $postmeta Detail table column name.
756
-     * @param string $meta_value Detail table column value.
757
-     * @return void|bool
758
-     */
759
-    function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
760
-    {
761
-
762
-        global $wpdb, $plugin_prefix;
763
-
764
-        $post_type = get_post_type($post_id);
765
-
766
-        $table = $plugin_prefix . $post_type . '_detail';
767
-
768
-        if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
769
-
770
-            if (is_array($meta_value)) {
771
-                $meta_value = implode(",", $meta_value);
772
-            }
773
-
774
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
775
-
776
-                $wpdb->query(
777
-                    $wpdb->prepare(
778
-                        "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
779
-                        array($post_id)
780
-                    )
781
-                );
782
-
783
-            } else {
784
-
785
-                $wpdb->query(
786
-                    $wpdb->prepare(
787
-                        "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
788
-                        array($post_id)
789
-                    )
790
-                );
791
-            }
792
-
793
-
794
-        } else
795
-            return false;
796
-    }
785
+				$wpdb->query(
786
+					$wpdb->prepare(
787
+						"INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
788
+						array($post_id)
789
+					)
790
+				);
791
+			}
792
+
793
+
794
+		} else
795
+			return false;
796
+	}
797 797
 }
798 798
 
799 799
 if (!function_exists('geodir_delete_post_meta')) {
800
-    /**
801
-     * Delete post custom fields.
802
-     *
803
-     * @since 1.0.0
804
-     * @package GeoDirectory
805
-     * @global object $wpdb WordPress Database object.
806
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
807
-     * @param int $post_id The post ID.
808
-     * @param string $postmeta Detail table column name.
809
-     * @todo check if this is depreciated
810
-     * @todo Fix unknown variable mval
811
-     * @return bool
812
-     */
813
-    function geodir_delete_post_meta($post_id, $postmeta)
814
-    {
815
-
816
-        global $wpdb, $plugin_prefix;
817
-
818
-        $post_type = get_post_type($post_id);
819
-
820
-        $table = $plugin_prefix . $post_type . '_detail';
821
-
822
-        if (is_array($postmeta) && !empty($postmeta) && $post_id) {
823
-            $post_meta_set_query = '';
824
-
825
-            foreach ($postmeta as $mkey) {
826
-                if ($mval != '')
827
-                    $post_meta_set_query .= $mkey . " = '', ";
828
-            }
829
-
830
-            $post_meta_set_query = trim($post_meta_set_query, ", ");
800
+	/**
801
+	 * Delete post custom fields.
802
+	 *
803
+	 * @since 1.0.0
804
+	 * @package GeoDirectory
805
+	 * @global object $wpdb WordPress Database object.
806
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
807
+	 * @param int $post_id The post ID.
808
+	 * @param string $postmeta Detail table column name.
809
+	 * @todo check if this is depreciated
810
+	 * @todo Fix unknown variable mval
811
+	 * @return bool
812
+	 */
813
+	function geodir_delete_post_meta($post_id, $postmeta)
814
+	{
815
+
816
+		global $wpdb, $plugin_prefix;
817
+
818
+		$post_type = get_post_type($post_id);
819
+
820
+		$table = $plugin_prefix . $post_type . '_detail';
821
+
822
+		if (is_array($postmeta) && !empty($postmeta) && $post_id) {
823
+			$post_meta_set_query = '';
824
+
825
+			foreach ($postmeta as $mkey) {
826
+				if ($mval != '')
827
+					$post_meta_set_query .= $mkey . " = '', ";
828
+			}
829
+
830
+			$post_meta_set_query = trim($post_meta_set_query, ", ");
831 831
             
832
-            if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
833
-                return false;
834
-            }
835
-
836
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
837
-
838
-                $wpdb->query(
839
-                    $wpdb->prepare(
840
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
841
-                        array($post_id)
842
-                    )
843
-                );
844
-
845
-                return true;
846
-            }
847
-
848
-        } elseif ($postmeta != '' && $post_id) {
849
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
850
-
851
-                $wpdb->query(
852
-                    $wpdb->prepare(
853
-                        "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
854
-                        array($post_id)
855
-                    )
856
-                );
857
-
858
-                return true;
859
-            }
860
-
861
-        } else
862
-            return false;
863
-    }
832
+			if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
833
+				return false;
834
+			}
835
+
836
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
837
+
838
+				$wpdb->query(
839
+					$wpdb->prepare(
840
+						"UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
841
+						array($post_id)
842
+					)
843
+				);
844
+
845
+				return true;
846
+			}
847
+
848
+		} elseif ($postmeta != '' && $post_id) {
849
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
850
+
851
+				$wpdb->query(
852
+					$wpdb->prepare(
853
+						"UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
854
+						array($post_id)
855
+					)
856
+				);
857
+
858
+				return true;
859
+			}
860
+
861
+		} else
862
+			return false;
863
+	}
864 864
 }
865 865
 
866 866
 
867 867
 if (!function_exists('geodir_get_post_meta')) {
868
-    /**
869
-     * Get post custom meta.
870
-     *
871
-     * @since 1.0.0
872
-     * @package GeoDirectory
873
-     * @global object $wpdb WordPress Database object.
874
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
875
-     * @param int $post_id The post ID.
876
-     * @param string $meta_key The meta key to retrieve.
877
-     * @param bool $single Optional. Whether to return a single value. Default false.
878
-     * @todo single variable not yet implemented.
879
-     * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
880
-     */
881
-    function geodir_get_post_meta($post_id, $meta_key, $single = false)
882
-    {
883
-        if (!$post_id) {
884
-            return false;
885
-        }
886
-        global $wpdb, $plugin_prefix;
887
-
888
-        $all_postypes = geodir_get_posttypes();
889
-
890
-        $post_type = get_post_type($post_id);
891
-
892
-        if (!in_array($post_type, $all_postypes))
893
-            return false;
894
-
895
-        $table = $plugin_prefix . $post_type . '_detail';
896
-
897
-        if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
898
-            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
899
-            if ($meta_value && $meta_value !== '') {
900
-                return maybe_serialize($meta_value);
901
-            } else
902
-                return $meta_value;
903
-        } else {
904
-            return false;
905
-        }
906
-    }
868
+	/**
869
+	 * Get post custom meta.
870
+	 *
871
+	 * @since 1.0.0
872
+	 * @package GeoDirectory
873
+	 * @global object $wpdb WordPress Database object.
874
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
875
+	 * @param int $post_id The post ID.
876
+	 * @param string $meta_key The meta key to retrieve.
877
+	 * @param bool $single Optional. Whether to return a single value. Default false.
878
+	 * @todo single variable not yet implemented.
879
+	 * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
880
+	 */
881
+	function geodir_get_post_meta($post_id, $meta_key, $single = false)
882
+	{
883
+		if (!$post_id) {
884
+			return false;
885
+		}
886
+		global $wpdb, $plugin_prefix;
887
+
888
+		$all_postypes = geodir_get_posttypes();
889
+
890
+		$post_type = get_post_type($post_id);
891
+
892
+		if (!in_array($post_type, $all_postypes))
893
+			return false;
894
+
895
+		$table = $plugin_prefix . $post_type . '_detail';
896
+
897
+		if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
898
+			$meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
899
+			if ($meta_value && $meta_value !== '') {
900
+				return maybe_serialize($meta_value);
901
+			} else
902
+				return $meta_value;
903
+		} else {
904
+			return false;
905
+		}
906
+	}
907 907
 }
908 908
 
909 909
 
910 910
 if (!function_exists('geodir_save_post_images')) {
911
-    /**
912
-     * Save post attachments.
913
-     *
914
-     * @since 1.0.0
915
-     * @package GeoDirectory
916
-     * @global object $wpdb WordPress Database object.
917
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
918
-     * @global object $current_user Current user object.
919
-     * @param int $post_id The post ID.
920
-     * @param array $post_image Post image urls as an array.
921
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
922
-     */
923
-    function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
924
-    {
911
+	/**
912
+	 * Save post attachments.
913
+	 *
914
+	 * @since 1.0.0
915
+	 * @package GeoDirectory
916
+	 * @global object $wpdb WordPress Database object.
917
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
918
+	 * @global object $current_user Current user object.
919
+	 * @param int $post_id The post ID.
920
+	 * @param array $post_image Post image urls as an array.
921
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
922
+	 */
923
+	function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
924
+	{
925 925
 
926 926
 
927
-        global $wpdb, $plugin_prefix, $current_user;
927
+		global $wpdb, $plugin_prefix, $current_user;
928 928
 
929
-        $post_type = get_post_type($post_id);
929
+		$post_type = get_post_type($post_id);
930 930
 
931
-        $table = $plugin_prefix . $post_type . '_detail';
931
+		$table = $plugin_prefix . $post_type . '_detail';
932 932
 
933
-        $post_images = geodir_get_images($post_id);
933
+		$post_images = geodir_get_images($post_id);
934 934
 
935
-        $wpdb->query(
936
-            $wpdb->prepare(
937
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
938
-                array($post_id)
939
-            )
940
-        );
935
+		$wpdb->query(
936
+			$wpdb->prepare(
937
+				"UPDATE " . $table . " SET featured_image = '' where post_id =%d",
938
+				array($post_id)
939
+			)
940
+		);
941 941
 
942
-        $invalid_files = $post_images;
943
-        $valid_file_ids = array();
944
-        $valid_files_condition = '';
945
-        $geodir_uploaddir = '';
942
+		$invalid_files = $post_images;
943
+		$valid_file_ids = array();
944
+		$valid_files_condition = '';
945
+		$geodir_uploaddir = '';
946 946
 
947
-        $remove_files = array();
947
+		$remove_files = array();
948 948
 
949
-        if (!empty($post_image)) {
949
+		if (!empty($post_image)) {
950 950
 
951
-            $uploads = wp_upload_dir();
952
-            $uploads_dir = $uploads['path'];
951
+			$uploads = wp_upload_dir();
952
+			$uploads_dir = $uploads['path'];
953 953
 
954
-            $geodir_uploadpath = $uploads['path'];
955
-            $geodir_uploadurl = $uploads['url'];
956
-            $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
954
+			$geodir_uploadpath = $uploads['path'];
955
+			$geodir_uploadurl = $uploads['url'];
956
+			$sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
957 957
 
958
-            $invalid_files = array();
959
-            $postcurr_images = array();
958
+			$invalid_files = array();
959
+			$postcurr_images = array();
960 960
 
961
-            for ($m = 0; $m < count($post_image); $m++) {
962
-                $menu_order = $m + 1;
961
+			for ($m = 0; $m < count($post_image); $m++) {
962
+				$menu_order = $m + 1;
963 963
 
964
-                $file_path = '';
965
-                /* --------- start ------- */
964
+				$file_path = '';
965
+				/* --------- start ------- */
966 966
 
967
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
967
+				$split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
968 968
 
969
-                $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
969
+				$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
970 970
 
971 971
 
972
-                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)))) {
972
+				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)))) {
973 973
 
974
-                    /* --------- end ------- */
975
-                    $curr_img_url = $post_image[$m];
974
+					/* --------- end ------- */
975
+					$curr_img_url = $post_image[$m];
976 976
 
977
-                    $image_name_arr = explode('/', $curr_img_url);
977
+					$image_name_arr = explode('/', $curr_img_url);
978 978
 
979
-                    $count_image_name_arr = count($image_name_arr) - 2;
979
+					$count_image_name_arr = count($image_name_arr) - 2;
980 980
 
981
-                    $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
981
+					$count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
982 982
 
983
-                    $curr_img_dir = $image_name_arr[$count_image_name_arr];
983
+					$curr_img_dir = $image_name_arr[$count_image_name_arr];
984 984
 
985
-                    $filename = end($image_name_arr);
986
-                    if (strpos($filename, '?') !== false) {
987
-                        list($filename) = explode('?', $filename);
988
-                    }
985
+					$filename = end($image_name_arr);
986
+					if (strpos($filename, '?') !== false) {
987
+						list($filename) = explode('?', $filename);
988
+					}
989 989
 
990
-                    $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
991
-                    $curr_img_dir = str_replace($filename, "", $curr_img_dir);
990
+					$curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
991
+					$curr_img_dir = str_replace($filename, "", $curr_img_dir);
992 992
 
993
-                    $img_name_arr = explode('.', $filename);
993
+					$img_name_arr = explode('.', $filename);
994 994
 
995
-                    $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
996
-                    if (!empty($img_name_arr) && count($img_name_arr) > 2) {
997
-                        $new_img_name_arr = $img_name_arr;
998
-                        if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
999
-                            unset($new_img_name_arr[count($img_name_arr) - 1]);
1000
-                            $file_title = implode('.', $new_img_name_arr);
1001
-                        }
1002
-                    }
1003
-                    $file_title = sanitize_file_name($file_title);
1004
-                    $file_name = sanitize_file_name($filename);
995
+					$file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
996
+					if (!empty($img_name_arr) && count($img_name_arr) > 2) {
997
+						$new_img_name_arr = $img_name_arr;
998
+						if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
999
+							unset($new_img_name_arr[count($img_name_arr) - 1]);
1000
+							$file_title = implode('.', $new_img_name_arr);
1001
+						}
1002
+					}
1003
+					$file_title = sanitize_file_name($file_title);
1004
+					$file_name = sanitize_file_name($filename);
1005 1005
 
1006
-                    $arr_file_type = wp_check_filetype($filename);
1006
+					$arr_file_type = wp_check_filetype($filename);
1007 1007
 
1008
-                    $uploaded_file_type = $arr_file_type['type'];
1008
+					$uploaded_file_type = $arr_file_type['type'];
1009 1009
 
1010
-                    // Set an array containing a list of acceptable formats
1011
-                    $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
1010
+					// Set an array containing a list of acceptable formats
1011
+					$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
1012 1012
 
1013
-                    // If the uploaded file is the right format
1014
-                    if (in_array($uploaded_file_type, $allowed_file_types)) {
1015
-                        if (!function_exists('wp_handle_upload')) {
1016
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1017
-                        }
1013
+					// If the uploaded file is the right format
1014
+					if (in_array($uploaded_file_type, $allowed_file_types)) {
1015
+						if (!function_exists('wp_handle_upload')) {
1016
+							require_once(ABSPATH . 'wp-admin/includes/file.php');
1017
+						}
1018 1018
 
1019
-                        if (!is_dir($geodir_uploadpath)) {
1020
-                            mkdir($geodir_uploadpath);
1021
-                        }
1019
+						if (!is_dir($geodir_uploadpath)) {
1020
+							mkdir($geodir_uploadpath);
1021
+						}
1022 1022
 
1023
-                        $external_img = false;
1024
-                        if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1025
-                        } else {
1026
-                            $external_img = true;
1027
-                        }
1023
+						$external_img = false;
1024
+						if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1025
+						} else {
1026
+							$external_img = true;
1027
+						}
1028 1028
 
1029
-                        if ($dummy || $external_img) {
1030
-                            $uploaded_file = array();
1031
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1029
+						if ($dummy || $external_img) {
1030
+							$uploaded_file = array();
1031
+							$uploaded = (array)fetch_remote_file($curr_img_url);
1032 1032
 
1033
-                            if (isset($uploaded['error']) && empty($uploaded['error'])) {
1034
-                                $new_name = basename($uploaded['file']);
1035
-                                $uploaded_file = $uploaded;
1036
-                            }else{
1037
-                                print_r($uploaded);exit;
1038
-                            }
1039
-                            $external_img = false;
1040
-                        } else {
1041
-                            $new_name = $post_id . '_' . $file_name;
1033
+							if (isset($uploaded['error']) && empty($uploaded['error'])) {
1034
+								$new_name = basename($uploaded['file']);
1035
+								$uploaded_file = $uploaded;
1036
+							}else{
1037
+								print_r($uploaded);exit;
1038
+							}
1039
+							$external_img = false;
1040
+						} else {
1041
+							$new_name = $post_id . '_' . $file_name;
1042 1042
 
1043
-                            if ($curr_img_dir == $sub_dir) {
1044
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1045
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1046
-                            } else {
1047
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1048
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1049
-                            }
1043
+							if ($curr_img_dir == $sub_dir) {
1044
+								$img_path = $geodir_uploadpath . '/' . $filename;
1045
+								$img_url = $geodir_uploadurl . '/' . $filename;
1046
+							} else {
1047
+								$img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1048
+								$img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1049
+							}
1050 1050
 
1051
-                            $uploaded_file = '';
1051
+							$uploaded_file = '';
1052 1052
 
1053
-                            if (file_exists($img_path)) {
1054
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1055
-                                $file_path = '';
1056
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1057
-                                $uploaded_file = true;
1058
-                                $file_path = $curr_img_dir . '/' . $filename;
1059
-                            }
1053
+							if (file_exists($img_path)) {
1054
+								$uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1055
+								$file_path = '';
1056
+							} else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1057
+								$uploaded_file = true;
1058
+								$file_path = $curr_img_dir . '/' . $filename;
1059
+							}
1060 1060
 
1061
-                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1062
-                                unlink($img_path);
1063
-                        }
1061
+							if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1062
+								unlink($img_path);
1063
+						}
1064 1064
 
1065
-                        if (!empty($uploaded_file)) {
1066
-                            if (!isset($file_path) || !$file_path) {
1067
-                                $file_path = $sub_dir . '/' . $new_name;
1068
-                            }
1065
+						if (!empty($uploaded_file)) {
1066
+							if (!isset($file_path) || !$file_path) {
1067
+								$file_path = $sub_dir . '/' . $new_name;
1068
+							}
1069 1069
 
1070
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1070
+							$postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1071 1071
 
1072
-                            if ($menu_order == 1) {
1072
+							if ($menu_order == 1) {
1073 1073
 
1074
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1074
+								$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1075 1075
 
1076
-                            }
1076
+							}
1077 1077
 
1078
-                            // Set up options array to add this file as an attachment
1079
-                            $attachment = array();
1080
-                            $attachment['post_id'] = $post_id;
1081
-                            $attachment['title'] = $file_title;
1082
-                            $attachment['content'] = '';
1083
-                            $attachment['file'] = $file_path;
1084
-                            $attachment['mime_type'] = $uploaded_file_type;
1085
-                            $attachment['menu_order'] = $menu_order;
1086
-                            $attachment['is_featured'] = 0;
1078
+							// Set up options array to add this file as an attachment
1079
+							$attachment = array();
1080
+							$attachment['post_id'] = $post_id;
1081
+							$attachment['title'] = $file_title;
1082
+							$attachment['content'] = '';
1083
+							$attachment['file'] = $file_path;
1084
+							$attachment['mime_type'] = $uploaded_file_type;
1085
+							$attachment['menu_order'] = $menu_order;
1086
+							$attachment['is_featured'] = 0;
1087 1087
 
1088
-                            $attachment_set = '';
1088
+							$attachment_set = '';
1089 1089
 
1090
-                            foreach ($attachment as $key => $val) {
1091
-                                if ($val != '')
1092
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1093
-                            }
1090
+							foreach ($attachment as $key => $val) {
1091
+								if ($val != '')
1092
+									$attachment_set .= $key . " = '" . $val . "', ";
1093
+							}
1094 1094
 
1095
-                            $attachment_set = trim($attachment_set, ", ");
1095
+							$attachment_set = trim($attachment_set, ", ");
1096
+
1097
+							$wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1096 1098
 
1097
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1099
+							$valid_file_ids[] = $wpdb->insert_id;
1100
+						}
1098 1101
 
1099
-                            $valid_file_ids[] = $wpdb->insert_id;
1100
-                        }
1102
+					}
1101 1103
 
1102
-                    }
1103 1104
 
1105
+				} else {
1106
+					$valid_file_ids[] = $find_image;
1104 1107
 
1105
-                } else {
1106
-                    $valid_file_ids[] = $find_image;
1107
-
1108
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1108
+					$postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1109 1109
 
1110
-                    $wpdb->query(
1111
-                        $wpdb->prepare(
1112
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1113
-                            array($menu_order, $split_img_path[1], $post_id)
1114
-                        )
1115
-                    );
1110
+					$wpdb->query(
1111
+						$wpdb->prepare(
1112
+							"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1113
+							array($menu_order, $split_img_path[1], $post_id)
1114
+						)
1115
+					);
1116 1116
 
1117
-                    if ($menu_order == 1)
1118
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1117
+					if ($menu_order == 1)
1118
+						$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1119 1119
 
1120
-                }
1120
+				}
1121 1121
 
1122 1122
 
1123
-            }
1123
+			}
1124 1124
 
1125
-            if (!empty($valid_file_ids)) {
1125
+			if (!empty($valid_file_ids)) {
1126 1126
 
1127
-                $remove_files = $valid_file_ids;
1127
+				$remove_files = $valid_file_ids;
1128 1128
 
1129
-                $remove_files_length = count($remove_files);
1130
-                $remove_files_format = array_fill(0, $remove_files_length, '%d');
1131
-                $format = implode(',', $remove_files_format);
1132
-                $valid_files_condition = " ID NOT IN ($format) AND ";
1129
+				$remove_files_length = count($remove_files);
1130
+				$remove_files_format = array_fill(0, $remove_files_length, '%d');
1131
+				$format = implode(',', $remove_files_format);
1132
+				$valid_files_condition = " ID NOT IN ($format) AND ";
1133 1133
 
1134
-            }
1134
+			}
1135 1135
 
1136
-            //Get and remove all old images of post from database to set by new order
1136
+			//Get and remove all old images of post from database to set by new order
1137 1137
 
1138
-            if (!empty($post_images)) {
1138
+			if (!empty($post_images)) {
1139 1139
 
1140
-                foreach ($post_images as $img) {
1140
+				foreach ($post_images as $img) {
1141 1141
 
1142
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1142
+					if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1143 1143
 
1144
-                        $invalid_files[] = (object)array('src' => $img->src);
1144
+						$invalid_files[] = (object)array('src' => $img->src);
1145 1145
 
1146
-                    }
1146
+					}
1147 1147
 
1148
-                }
1148
+				}
1149 1149
 
1150
-            }
1150
+			}
1151 1151
 
1152
-            $invalid_files = (object)$invalid_files;
1153
-        }
1152
+			$invalid_files = (object)$invalid_files;
1153
+		}
1154 1154
 
1155
-        $remove_files[] = $post_id;
1155
+		$remove_files[] = $post_id;
1156 1156
 
1157
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1157
+		$wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1158 1158
 
1159
-        if (!empty($invalid_files))
1160
-            geodir_remove_attachments($invalid_files);
1161
-    }
1159
+		if (!empty($invalid_files))
1160
+			geodir_remove_attachments($invalid_files);
1161
+	}
1162 1162
 
1163 1163
 }
1164 1164
 
@@ -1172,12 +1172,12 @@  discard block
 block discarded – undo
1172 1172
 function geodir_remove_temp_images()
1173 1173
 {
1174 1174
 
1175
-    global $current_user;
1175
+	global $current_user;
1176 1176
 
1177
-    $uploads = wp_upload_dir();
1178
-    $uploads_dir = $uploads['path'];
1177
+	$uploads = wp_upload_dir();
1178
+	$uploads_dir = $uploads['path'];
1179 1179
 
1180
-    /*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1180
+	/*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1181 1181
 
1182 1182
 			$dirPath = $uploads_dir.'/temp_'.$current_user->data->ID;
1183 1183
 			if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
@@ -1194,8 +1194,8 @@  discard block
 block discarded – undo
1194 1194
 			rmdir($dirPath);
1195 1195
 	}	*/
1196 1196
 
1197
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1198
-    geodir_delete_directory($dirname);
1197
+	$dirname = $uploads_dir . '/temp_' . $current_user->ID;
1198
+	geodir_delete_directory($dirname);
1199 1199
 }
1200 1200
 
1201 1201
 
@@ -1209,116 +1209,116 @@  discard block
 block discarded – undo
1209 1209
  */
1210 1210
 function geodir_delete_directory($dirname)
1211 1211
 {
1212
-    $dir_handle = '';
1213
-    if (is_dir($dirname))
1214
-        $dir_handle = opendir($dirname);
1215
-    if (!$dir_handle)
1216
-        return false;
1217
-    while ($file = readdir($dir_handle)) {
1218
-        if ($file != "." && $file != "..") {
1219
-            if (!is_dir($dirname . "/" . $file))
1220
-                unlink($dirname . "/" . $file);
1221
-            else
1222
-                geodir_delete_directory($dirname . '/' . $file);
1223
-        }
1224
-    }
1225
-    closedir($dir_handle);
1226
-    rmdir($dirname);
1227
-    return true;
1212
+	$dir_handle = '';
1213
+	if (is_dir($dirname))
1214
+		$dir_handle = opendir($dirname);
1215
+	if (!$dir_handle)
1216
+		return false;
1217
+	while ($file = readdir($dir_handle)) {
1218
+		if ($file != "." && $file != "..") {
1219
+			if (!is_dir($dirname . "/" . $file))
1220
+				unlink($dirname . "/" . $file);
1221
+			else
1222
+				geodir_delete_directory($dirname . '/' . $file);
1223
+		}
1224
+	}
1225
+	closedir($dir_handle);
1226
+	rmdir($dirname);
1227
+	return true;
1228 1228
 
1229 1229
 }
1230 1230
 
1231 1231
 
1232 1232
 if (!function_exists('geodir_remove_attachments')) {
1233
-    /**
1234
-     * Remove post attachments.
1235
-     *
1236
-     * @since 1.0.0
1237
-     * @package GeoDirectory
1238
-     * @param array $postcurr_images Array of image objects.
1239
-     */
1240
-    function geodir_remove_attachments($postcurr_images = array())
1241
-    {
1242
-        // Unlink all past images of post
1243
-        if (!empty($postcurr_images)) {
1244
-
1245
-            $uploads = wp_upload_dir();
1246
-            $uploads_dir = $uploads['path'];
1247
-
1248
-            foreach ($postcurr_images as $postimg) {
1249
-                $image_name_arr = explode('/', $postimg->src);
1250
-                $filename = end($image_name_arr);
1251
-                if (file_exists($uploads_dir . '/' . $filename))
1252
-                    unlink($uploads_dir . '/' . $filename);
1253
-            }
1254
-
1255
-        } // endif
1256
-        // Unlink all past images of post end
1257
-    }
1233
+	/**
1234
+	 * Remove post attachments.
1235
+	 *
1236
+	 * @since 1.0.0
1237
+	 * @package GeoDirectory
1238
+	 * @param array $postcurr_images Array of image objects.
1239
+	 */
1240
+	function geodir_remove_attachments($postcurr_images = array())
1241
+	{
1242
+		// Unlink all past images of post
1243
+		if (!empty($postcurr_images)) {
1244
+
1245
+			$uploads = wp_upload_dir();
1246
+			$uploads_dir = $uploads['path'];
1247
+
1248
+			foreach ($postcurr_images as $postimg) {
1249
+				$image_name_arr = explode('/', $postimg->src);
1250
+				$filename = end($image_name_arr);
1251
+				if (file_exists($uploads_dir . '/' . $filename))
1252
+					unlink($uploads_dir . '/' . $filename);
1253
+			}
1254
+
1255
+		} // endif
1256
+		// Unlink all past images of post end
1257
+	}
1258 1258
 }
1259 1259
 
1260 1260
 if (!function_exists('geodir_get_featured_image')) {
1261
-    /**
1262
-     * Gets the post featured image.
1263
-     *
1264
-     * @since 1.0.0
1265
-     * @package GeoDirectory
1266
-     * @global object $wpdb WordPress Database object.
1267
-     * @global object $post The current post object.
1268
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1269
-     * @param int|string $post_id The post ID.
1270
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1271
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1272
-     * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1273
-     * @return bool|object Image details as an object.
1274
-     */
1275
-    function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1276
-    {
1277
-
1278
-        /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1261
+	/**
1262
+	 * Gets the post featured image.
1263
+	 *
1264
+	 * @since 1.0.0
1265
+	 * @package GeoDirectory
1266
+	 * @global object $wpdb WordPress Database object.
1267
+	 * @global object $post The current post object.
1268
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1269
+	 * @param int|string $post_id The post ID.
1270
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1271
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1272
+	 * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1273
+	 * @return bool|object Image details as an object.
1274
+	 */
1275
+	function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1276
+	{
1277
+
1278
+		/*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1279 1279
         $img_arr['path'] = '';
1280 1280
         $img_arr['width'] = '';
1281 1281
         $img_arr['height'] = '';
1282 1282
         $img_arr['title'] = '';
1283 1283
         return (object)$img_arr;*/
1284
-        global $wpdb, $plugin_prefix, $post;
1284
+		global $wpdb, $plugin_prefix, $post;
1285 1285
 
1286
-        if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1287
-            $post_type = $post->post_type;
1288
-        } else {
1289
-            $post_type = get_post_type($post_id);
1290
-        }
1286
+		if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1287
+			$post_type = $post->post_type;
1288
+		} else {
1289
+			$post_type = get_post_type($post_id);
1290
+		}
1291 1291
 
1292
-        if (!in_array($post_type, geodir_get_posttypes())) {
1293
-            return false;// if not a GD CPT return;
1294
-        }
1292
+		if (!in_array($post_type, geodir_get_posttypes())) {
1293
+			return false;// if not a GD CPT return;
1294
+		}
1295 1295
 
1296
-        $table = $plugin_prefix . $post_type . '_detail';
1296
+		$table = $plugin_prefix . $post_type . '_detail';
1297 1297
 
1298
-        if (!$file) {
1299
-            if (isset($post->featured_image)) {
1300
-                $file = $post->featured_image;
1301
-            } else {
1302
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1303
-            }
1304
-        }
1298
+		if (!$file) {
1299
+			if (isset($post->featured_image)) {
1300
+				$file = $post->featured_image;
1301
+			} else {
1302
+				$file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1303
+			}
1304
+		}
1305 1305
 
1306
-        if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1307
-            $img_arr = array();
1306
+		if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1307
+			$img_arr = array();
1308 1308
 
1309
-            $file_info = pathinfo($file);
1310
-            $sub_dir = '';
1311
-            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1312
-                $sub_dir = stripslashes_deep($file_info['dirname']);
1309
+			$file_info = pathinfo($file);
1310
+			$sub_dir = '';
1311
+			if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1312
+				$sub_dir = stripslashes_deep($file_info['dirname']);
1313 1313
 
1314
-            $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1315
-            $uploads_baseurl = $uploads['baseurl'];
1316
-            $uploads_path = $uploads['path'];
1314
+			$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1315
+			$uploads_baseurl = $uploads['baseurl'];
1316
+			$uploads_path = $uploads['path'];
1317 1317
 
1318
-            $file_name = $file_info['basename'];
1318
+			$file_name = $file_info['basename'];
1319 1319
 
1320
-            $uploads_url = $uploads_baseurl . $sub_dir;
1321
-            /*
1320
+			$uploads_url = $uploads_baseurl . $sub_dir;
1321
+			/*
1322 1322
              * Allows the filter of image src for such things as CDN change.
1323 1323
              *
1324 1324
              * @since 1.5.7
@@ -1327,158 +1327,158 @@  discard block
 block discarded – undo
1327 1327
              * @param string $uploads_url The server upload directory url.
1328 1328
              * @param string $uploads_baseurl The uploads dir base url.
1329 1329
              */
1330
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1331
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1332
-            $width = 0;
1333
-            $height = 0;
1334
-            if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1335
-                $imagesize = getimagesize($img_arr['path']);
1336
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1337
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1338
-            }
1339
-            $img_arr['width'] = $width;
1340
-            $img_arr['height'] = $height;
1341
-            $img_arr['title'] = '';
1342
-        } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1343
-            foreach ($post_images as $image) {
1344
-                return $image;
1345
-            }
1346
-        } else if ($no_image) {
1347
-            $img_arr = array();
1348
-
1349
-            $default_img = '';
1350
-            if (isset($post->default_category) && $post->default_category) {
1351
-                $default_cat = $post->default_category;
1352
-            } else {
1353
-                $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1354
-            }
1355
-
1356
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1357
-                $default_img = $default_catimg['src'];
1358
-            elseif ($no_image) {
1359
-                $default_img = get_option('geodir_listing_no_img');
1360
-            }
1361
-
1362
-            if (!empty($default_img)) {
1363
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1364
-                $uploads_baseurl = $uploads['baseurl'];
1365
-                $uploads_path = $uploads['path'];
1366
-
1367
-                $img_arr = array();
1368
-
1369
-                $file_info = pathinfo($default_img);
1370
-
1371
-                $file_name = $file_info['basename'];
1372
-
1373
-                $img_arr['src'] = $default_img;
1374
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1375
-
1376
-                $width = 0;
1377
-                $height = 0;
1378
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1379
-                    $imagesize = getimagesize($img_arr['path']);
1380
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1381
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1382
-                }
1383
-                $img_arr['width'] = $width;
1384
-                $img_arr['height'] = $height;
1385
-
1386
-                $img_arr['title'] = ''; // add the title to the array
1387
-            }
1388
-        }
1389
-
1390
-        if (!empty($img_arr))
1391
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1392
-        else
1393
-            return false;
1394
-    }
1330
+			$img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1331
+			$img_arr['path'] = $uploads_path . '/' . $file_name;
1332
+			$width = 0;
1333
+			$height = 0;
1334
+			if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1335
+				$imagesize = getimagesize($img_arr['path']);
1336
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1337
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1338
+			}
1339
+			$img_arr['width'] = $width;
1340
+			$img_arr['height'] = $height;
1341
+			$img_arr['title'] = '';
1342
+		} elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1343
+			foreach ($post_images as $image) {
1344
+				return $image;
1345
+			}
1346
+		} else if ($no_image) {
1347
+			$img_arr = array();
1348
+
1349
+			$default_img = '';
1350
+			if (isset($post->default_category) && $post->default_category) {
1351
+				$default_cat = $post->default_category;
1352
+			} else {
1353
+				$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1354
+			}
1355
+
1356
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1357
+				$default_img = $default_catimg['src'];
1358
+			elseif ($no_image) {
1359
+				$default_img = get_option('geodir_listing_no_img');
1360
+			}
1361
+
1362
+			if (!empty($default_img)) {
1363
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1364
+				$uploads_baseurl = $uploads['baseurl'];
1365
+				$uploads_path = $uploads['path'];
1366
+
1367
+				$img_arr = array();
1368
+
1369
+				$file_info = pathinfo($default_img);
1370
+
1371
+				$file_name = $file_info['basename'];
1372
+
1373
+				$img_arr['src'] = $default_img;
1374
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1375
+
1376
+				$width = 0;
1377
+				$height = 0;
1378
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1379
+					$imagesize = getimagesize($img_arr['path']);
1380
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1381
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1382
+				}
1383
+				$img_arr['width'] = $width;
1384
+				$img_arr['height'] = $height;
1385
+
1386
+				$img_arr['title'] = ''; // add the title to the array
1387
+			}
1388
+		}
1389
+
1390
+		if (!empty($img_arr))
1391
+			return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1392
+		else
1393
+			return false;
1394
+	}
1395 1395
 }
1396 1396
 
1397 1397
 if (!function_exists('geodir_show_featured_image')) {
1398
-    /**
1399
-     * Gets the post featured image.
1400
-     *
1401
-     * @since 1.0.0
1402
-     * @package GeoDirectory
1403
-     * @param int|string $post_id The post ID.
1404
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1405
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1406
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1407
-     * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1408
-     * @return bool|string Returns image html.
1409
-     */
1410
-    function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1411
-    {
1412
-        $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1413
-
1414
-        $html = geodir_show_image($image, $size, $no_image, false);
1415
-
1416
-        if (!empty($html) && $echo) {
1417
-            echo $html;
1418
-        } elseif (!empty($html)) {
1419
-            return $html;
1420
-        } else
1421
-            return false;
1422
-    }
1398
+	/**
1399
+	 * Gets the post featured image.
1400
+	 *
1401
+	 * @since 1.0.0
1402
+	 * @package GeoDirectory
1403
+	 * @param int|string $post_id The post ID.
1404
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1405
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1406
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1407
+	 * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1408
+	 * @return bool|string Returns image html.
1409
+	 */
1410
+	function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1411
+	{
1412
+		$image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1413
+
1414
+		$html = geodir_show_image($image, $size, $no_image, false);
1415
+
1416
+		if (!empty($html) && $echo) {
1417
+			echo $html;
1418
+		} elseif (!empty($html)) {
1419
+			return $html;
1420
+		} else
1421
+			return false;
1422
+	}
1423 1423
 }
1424 1424
 
1425 1425
 if (!function_exists('geodir_get_images')) {
1426
-    /**
1427
-     * Gets the post images.
1428
-     *
1429
-     * @since 1.0.0
1430
-     * @package GeoDirectory
1431
-     * @global object $wpdb WordPress Database object.
1432
-     * @param int $post_id The post ID.
1433
-     * @param string $img_size Optional. Thumbnail size.
1434
-     * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1435
-     * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1436
-     * @param int|string $limit Optional. Number of images.
1437
-     * @return array|bool Returns images as an array. Each item is an object.
1438
-     */
1439
-    function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1440
-    {
1441
-        global $wpdb;
1442
-        if ($limit) {
1443
-            $limit_q = " LIMIT $limit ";
1444
-        } else {
1445
-            $limit_q = '';
1446
-        }
1447
-        $not_featured = '';
1448
-        $sub_dir = '';
1449
-        if (!$add_featured)
1450
-            $not_featured = " AND is_featured = 0 ";
1451
-
1452
-        $arrImages = $wpdb->get_results(
1453
-            $wpdb->prepare(
1454
-                "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 ",
1455
-                array('%image%', $post_id)
1456
-            )
1457
-        );
1458
-
1459
-        $counter = 0;
1460
-        $return_arr = array();
1461
-
1462
-        if (!empty($arrImages)) {
1463
-            foreach ($arrImages as $attechment) {
1464
-
1465
-                $img_arr = array();
1466
-                $img_arr['id'] = $attechment->ID;
1467
-                $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1468
-
1469
-                $file_info = pathinfo($attechment->file);
1470
-
1471
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1472
-                    $sub_dir = stripslashes_deep($file_info['dirname']);
1473
-
1474
-                $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1475
-                $uploads_baseurl = $uploads['baseurl'];
1476
-                $uploads_path = $uploads['path'];
1477
-
1478
-                $file_name = $file_info['basename'];
1479
-
1480
-                $uploads_url = $uploads_baseurl . $sub_dir;
1481
-                /*
1426
+	/**
1427
+	 * Gets the post images.
1428
+	 *
1429
+	 * @since 1.0.0
1430
+	 * @package GeoDirectory
1431
+	 * @global object $wpdb WordPress Database object.
1432
+	 * @param int $post_id The post ID.
1433
+	 * @param string $img_size Optional. Thumbnail size.
1434
+	 * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1435
+	 * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1436
+	 * @param int|string $limit Optional. Number of images.
1437
+	 * @return array|bool Returns images as an array. Each item is an object.
1438
+	 */
1439
+	function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1440
+	{
1441
+		global $wpdb;
1442
+		if ($limit) {
1443
+			$limit_q = " LIMIT $limit ";
1444
+		} else {
1445
+			$limit_q = '';
1446
+		}
1447
+		$not_featured = '';
1448
+		$sub_dir = '';
1449
+		if (!$add_featured)
1450
+			$not_featured = " AND is_featured = 0 ";
1451
+
1452
+		$arrImages = $wpdb->get_results(
1453
+			$wpdb->prepare(
1454
+				"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 ",
1455
+				array('%image%', $post_id)
1456
+			)
1457
+		);
1458
+
1459
+		$counter = 0;
1460
+		$return_arr = array();
1461
+
1462
+		if (!empty($arrImages)) {
1463
+			foreach ($arrImages as $attechment) {
1464
+
1465
+				$img_arr = array();
1466
+				$img_arr['id'] = $attechment->ID;
1467
+				$img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1468
+
1469
+				$file_info = pathinfo($attechment->file);
1470
+
1471
+				if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1472
+					$sub_dir = stripslashes_deep($file_info['dirname']);
1473
+
1474
+				$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1475
+				$uploads_baseurl = $uploads['baseurl'];
1476
+				$uploads_path = $uploads['path'];
1477
+
1478
+				$file_name = $file_info['basename'];
1479
+
1480
+				$uploads_url = $uploads_baseurl . $sub_dir;
1481
+				/*
1482 1482
                 * Allows the filter of image src for such things as CDN change.
1483 1483
                 *
1484 1484
                 * @since 1.5.7
@@ -1487,517 +1487,517 @@  discard block
 block discarded – undo
1487 1487
                 * @param string $uploads_url The server upload directory url.
1488 1488
                 * @param string $uploads_baseurl The uploads dir base url.
1489 1489
                 */
1490
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1491
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1492
-                $width = 0;
1493
-                $height = 0;
1494
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1495
-                    $imagesize = getimagesize($img_arr['path']);
1496
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1497
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1498
-                }
1499
-                $img_arr['width'] = $width;
1500
-                $img_arr['height'] = $height;
1501
-
1502
-                $img_arr['file'] = $file_name; // add the title to the array
1503
-                $img_arr['title'] = $attechment->title; // add the title to the array
1504
-                $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1505
-                $img_arr['content'] = $attechment->content; // add the description to the array
1506
-                $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1507
-
1508
-                $return_arr[] = (object)$img_arr;
1509
-
1510
-                $counter++;
1511
-            }
1512
-            return (object)$return_arr;
1513
-        } else if ($no_images) {
1514
-            $default_img = '';
1515
-            $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1516
-            $post_type = get_post_type($post_id);
1517
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1518
-                $default_img = $default_catimg['src'];
1519
-            elseif ($no_images) {
1520
-                $default_img = get_option('geodir_listing_no_img');
1521
-            }
1522
-
1523
-            if (!empty($default_img)) {
1524
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1490
+				$img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1491
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1492
+				$width = 0;
1493
+				$height = 0;
1494
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1495
+					$imagesize = getimagesize($img_arr['path']);
1496
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1497
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1498
+				}
1499
+				$img_arr['width'] = $width;
1500
+				$img_arr['height'] = $height;
1501
+
1502
+				$img_arr['file'] = $file_name; // add the title to the array
1503
+				$img_arr['title'] = $attechment->title; // add the title to the array
1504
+				$img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1505
+				$img_arr['content'] = $attechment->content; // add the description to the array
1506
+				$img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1507
+
1508
+				$return_arr[] = (object)$img_arr;
1509
+
1510
+				$counter++;
1511
+			}
1512
+			return (object)$return_arr;
1513
+		} else if ($no_images) {
1514
+			$default_img = '';
1515
+			$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1516
+			$post_type = get_post_type($post_id);
1517
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1518
+				$default_img = $default_catimg['src'];
1519
+			elseif ($no_images) {
1520
+				$default_img = get_option('geodir_listing_no_img');
1521
+			}
1522
+
1523
+			if (!empty($default_img)) {
1524
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1525 1525
                 
1526
-                $image_path = $default_img;
1527
-                if (!path_is_absolute($image_path)) {
1528
-                    $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1529
-                }
1530
-
1531
-                $file_info = pathinfo($default_img);
1532
-                $file_name = $file_info['basename'];
1533
-
1534
-                $width = '';
1535
-                $height = '';
1536
-                if (is_file($image_path) && file_exists($image_path)) {
1537
-                    $imagesize = getimagesize($image_path);
1538
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1539
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1540
-                }
1526
+				$image_path = $default_img;
1527
+				if (!path_is_absolute($image_path)) {
1528
+					$image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1529
+				}
1530
+
1531
+				$file_info = pathinfo($default_img);
1532
+				$file_name = $file_info['basename'];
1533
+
1534
+				$width = '';
1535
+				$height = '';
1536
+				if (is_file($image_path) && file_exists($image_path)) {
1537
+					$imagesize = getimagesize($image_path);
1538
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1539
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1540
+				}
1541 1541
                 
1542
-                $img_arr = array();
1543
-                $img_arr['src'] = $default_img;
1544
-                $img_arr['path'] = $image_path;
1545
-                $img_arr['width'] = $width;
1546
-                $img_arr['height'] = $height;
1547
-                $img_arr['file'] = $file_name; // add the title to the array
1548
-                $img_arr['title'] = $file_info['filename']; // add the title to the array
1549
-                $img_arr['content'] = $file_info['filename']; // add the description to the array
1550
-
1551
-                $return_arr[] = (object)$img_arr;
1552
-
1553
-                return $return_arr;
1554
-            } else
1555
-                return false;
1556
-        }
1557
-    }
1542
+				$img_arr = array();
1543
+				$img_arr['src'] = $default_img;
1544
+				$img_arr['path'] = $image_path;
1545
+				$img_arr['width'] = $width;
1546
+				$img_arr['height'] = $height;
1547
+				$img_arr['file'] = $file_name; // add the title to the array
1548
+				$img_arr['title'] = $file_info['filename']; // add the title to the array
1549
+				$img_arr['content'] = $file_info['filename']; // add the description to the array
1550
+
1551
+				$return_arr[] = (object)$img_arr;
1552
+
1553
+				return $return_arr;
1554
+			} else
1555
+				return false;
1556
+		}
1557
+	}
1558 1558
 }
1559 1559
 
1560 1560
 if (!function_exists('geodir_show_image')) {
1561
-    /**
1562
-     * Show image using image details.
1563
-     *
1564
-     * @since 1.0.0
1565
-     * @package GeoDirectory
1566
-     * @param array|object $request Image info either as an array or object.
1567
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1568
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1569
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1570
-     * @return bool|string Returns image html.
1571
-     */
1572
-    function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1573
-    {
1574
-        $image = new stdClass();
1575
-
1576
-        $html = '';
1577
-        if (!empty($request)) {
1578
-            if (!is_object($request)){
1579
-                $request = (object)$request;
1580
-            }
1581
-
1582
-            if (isset($request->src) && !isset($request->path)) {
1583
-                $request->path = $request->src;
1584
-            }
1585
-
1586
-            /*
1561
+	/**
1562
+	 * Show image using image details.
1563
+	 *
1564
+	 * @since 1.0.0
1565
+	 * @package GeoDirectory
1566
+	 * @param array|object $request Image info either as an array or object.
1567
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1568
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1569
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1570
+	 * @return bool|string Returns image html.
1571
+	 */
1572
+	function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1573
+	{
1574
+		$image = new stdClass();
1575
+
1576
+		$html = '';
1577
+		if (!empty($request)) {
1578
+			if (!is_object($request)){
1579
+				$request = (object)$request;
1580
+			}
1581
+
1582
+			if (isset($request->src) && !isset($request->path)) {
1583
+				$request->path = $request->src;
1584
+			}
1585
+
1586
+			/*
1587 1587
              * getimagesize() works faster from path than url so we try and get path if we can.
1588 1588
              */
1589
-            $upload_dir = wp_upload_dir();
1590
-            $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1591
-            $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1592
-            if (strpos($img_no_http, $upload_no_http) !== false) {
1593
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1594
-            }
1589
+			$upload_dir = wp_upload_dir();
1590
+			$img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1591
+			$upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1592
+			if (strpos($img_no_http, $upload_no_http) !== false) {
1593
+				$request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1594
+			}
1595 1595
             
1596
-            $width = 0;
1597
-            $height = 0;
1598
-            if (is_file($request->path) && file_exists($request->path)) {
1599
-                $imagesize = getimagesize($request->path);
1600
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1601
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1602
-            }
1603
-
1604
-            $image->src = $request->src;
1605
-            $image->width = $width;
1606
-            $image->height = $height;
1607
-
1608
-            $max_size = (object)geodir_get_imagesize($size);
1609
-
1610
-            if (!is_wp_error($max_size)) {
1611
-                if ($image->width) {
1612
-                    if ($image->height >= $image->width) {
1613
-                        $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1614
-                    } else if ($image->width < ($max_size->h)) {
1615
-                        $width_per = round((($image->width / $max_size->w) * 100), 2);
1616
-                    } else
1617
-                        $width_per = 100;
1618
-                }
1619
-
1620
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1621
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1622
-                } else {
1623
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1624
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1625
-                    }else{
1626
-                        //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1627
-                        //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1628
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1629
-
1630
-                    }
1631
-
1632
-                }
1633
-            }
1634
-        }
1635
-
1636
-        if (!empty($html) && $echo) {
1637
-            echo $html;
1638
-        } elseif (!empty($html)) {
1639
-            return $html;
1640
-        } else
1641
-            return false;
1642
-    }
1643
-}
1596
+			$width = 0;
1597
+			$height = 0;
1598
+			if (is_file($request->path) && file_exists($request->path)) {
1599
+				$imagesize = getimagesize($request->path);
1600
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1601
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1602
+			}
1644 1603
 
1645
-if (!function_exists('geodir_set_post_terms')) {
1646
-    /**
1647
-     * Set post Categories.
1648
-     *
1649
-     * @since 1.0.0
1650
-     * @package GeoDirectory
1651
-     * @global object $wpdb WordPress Database object.
1652
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1653
-     * @param int $post_id The post ID.
1654
-     * @param array $terms An array of term objects.
1655
-     * @param array $tt_ids An array of term taxonomy IDs.
1656
-     * @param string $taxonomy Taxonomy slug.
1657
-     */
1658
-    function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1659
-    {
1660
-        global $wpdb, $plugin_prefix;
1604
+			$image->src = $request->src;
1605
+			$image->width = $width;
1606
+			$image->height = $height;
1607
+
1608
+			$max_size = (object)geodir_get_imagesize($size);
1661 1609
 
1662
-        $post_type = get_post_type($post_id);
1610
+			if (!is_wp_error($max_size)) {
1611
+				if ($image->width) {
1612
+					if ($image->height >= $image->width) {
1613
+						$width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1614
+					} else if ($image->width < ($max_size->h)) {
1615
+						$width_per = round((($image->width / $max_size->w) * 100), 2);
1616
+					} else
1617
+						$width_per = 100;
1618
+				}
1619
+
1620
+				if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1621
+					$html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1622
+				} else {
1623
+					if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1624
+						$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1625
+					}else{
1626
+						//$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1627
+						//$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1628
+						$html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1663 1629
 
1664
-        $table = $plugin_prefix . $post_type . '_detail';
1630
+					}
1665 1631
 
1666
-        if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1632
+				}
1633
+			}
1634
+		}
1635
+
1636
+		if (!empty($html) && $echo) {
1637
+			echo $html;
1638
+		} elseif (!empty($html)) {
1639
+			return $html;
1640
+		} else
1641
+			return false;
1642
+	}
1643
+}
1667 1644
 
1668
-            if ($taxonomy == $post_type . '_tags') {
1669
-                if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1670
-                    geodir_save_post_meta($post_id, 'post_tags', $terms);
1671
-                }
1672
-            } elseif ($taxonomy == $post_type . 'category') {
1673
-                $srcharr = array('"', '\\');
1674
-                $replarr = array("&quot;", '');
1645
+if (!function_exists('geodir_set_post_terms')) {
1646
+	/**
1647
+	 * Set post Categories.
1648
+	 *
1649
+	 * @since 1.0.0
1650
+	 * @package GeoDirectory
1651
+	 * @global object $wpdb WordPress Database object.
1652
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1653
+	 * @param int $post_id The post ID.
1654
+	 * @param array $terms An array of term objects.
1655
+	 * @param array $tt_ids An array of term taxonomy IDs.
1656
+	 * @param string $taxonomy Taxonomy slug.
1657
+	 */
1658
+	function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1659
+	{
1660
+		global $wpdb, $plugin_prefix;
1661
+
1662
+		$post_type = get_post_type($post_id);
1663
+
1664
+		$table = $plugin_prefix . $post_type . '_detail';
1665
+
1666
+		if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1667
+
1668
+			if ($taxonomy == $post_type . '_tags') {
1669
+				if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1670
+					geodir_save_post_meta($post_id, 'post_tags', $terms);
1671
+				}
1672
+			} elseif ($taxonomy == $post_type . 'category') {
1673
+				$srcharr = array('"', '\\');
1674
+				$replarr = array("&quot;", '');
1675 1675
 
1676
-                $post_obj = get_post($post_id);
1676
+				$post_obj = get_post($post_id);
1677 1677
 
1678
-                $cat_ids = array('0');
1679
-                if (is_array($tt_ids))
1680
-                    $cat_ids = $tt_ids;
1678
+				$cat_ids = array('0');
1679
+				if (is_array($tt_ids))
1680
+					$cat_ids = $tt_ids;
1681 1681
 
1682 1682
 
1683
-                if (!empty($cat_ids)) {
1684
-                    $cat_ids_array = $cat_ids;
1685
-                    $cat_ids_length = count($cat_ids_array);
1686
-                    $cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1687
-                    $format = implode(',', $cat_ids_format);
1683
+				if (!empty($cat_ids)) {
1684
+					$cat_ids_array = $cat_ids;
1685
+					$cat_ids_length = count($cat_ids_array);
1686
+					$cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1687
+					$format = implode(',', $cat_ids_format);
1688 1688
 
1689
-                    $cat_ids_array_del = $cat_ids_array;
1690
-                    $cat_ids_array_del[] = $post_id;
1689
+					$cat_ids_array_del = $cat_ids_array;
1690
+					$cat_ids_array_del[] = $post_id;
1691 1691
 
1692
-                    $wpdb->get_var(
1693
-                        $wpdb->prepare(
1694
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1695
-                            $cat_ids_array_del
1696
-                        )
1697
-                    );
1692
+					$wpdb->get_var(
1693
+						$wpdb->prepare(
1694
+							"DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1695
+							$cat_ids_array_del
1696
+						)
1697
+					);
1698 1698
 
1699 1699
 
1700
-                    $post_term = $wpdb->get_col(
1701
-                        $wpdb->prepare(
1702
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1703
-                            $cat_ids_array
1704
-                        )
1705
-                    );
1700
+					$post_term = $wpdb->get_col(
1701
+						$wpdb->prepare(
1702
+							"SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1703
+							$cat_ids_array
1704
+						)
1705
+					);
1706 1706
 
1707
-                }
1707
+				}
1708 1708
 
1709
-                $post_marker_json = '';
1709
+				$post_marker_json = '';
1710 1710
 
1711
-                if (!empty($post_term)):
1711
+				if (!empty($post_term)):
1712 1712
 
1713
-                    foreach ($post_term as $cat_id):
1713
+					foreach ($post_term as $cat_id):
1714 1714
 
1715
-                        $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1716
-                        $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1715
+						$term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1716
+						$term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1717 1717
 
1718
-                        $post_title = $post_obj->title;
1719
-                        $title = str_replace($srcharr, $replarr, $post_title);
1718
+						$post_title = $post_obj->title;
1719
+						$title = str_replace($srcharr, $replarr, $post_title);
1720 1720
 
1721
-                        $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1722
-                        $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1721
+						$lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1722
+						$lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1723 1723
 
1724
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1725
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1724
+						$timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1725
+						$timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1726 1726
 
1727
-                        $json = '{';
1728
-                        $json .= '"id":"' . $post_id . '",';
1729
-                        $json .= '"lat_pos": "' . $lat . '",';
1730
-                        $json .= '"long_pos": "' . $lng . '",';
1731
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1732
-                        $json .= '"icon":"' . $term_icon . '",';
1733
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1734
-                        $json .= '}';
1727
+						$json = '{';
1728
+						$json .= '"id":"' . $post_id . '",';
1729
+						$json .= '"lat_pos": "' . $lat . '",';
1730
+						$json .= '"long_pos": "' . $lng . '",';
1731
+						$json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1732
+						$json .= '"icon":"' . $term_icon . '",';
1733
+						$json .= '"group":"catgroup' . $cat_id . '"';
1734
+						$json .= '}';
1735 1735
 
1736 1736
 
1737
-                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1738
-                            $post_marker_json = $json;
1737
+						if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1738
+							$post_marker_json = $json;
1739 1739
 
1740 1740
 
1741
-                        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)))) {
1741
+						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)))) {
1742 1742
 
1743
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1743
+							$json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1744 1744
 										post_title = %s,
1745 1745
 										json = %s
1746 1746
 										WHERE post_id = %d AND cat_id = %d ",
1747
-                                array($post_title, $json, $post_id, $cat_id));
1747
+								array($post_title, $json, $post_id, $cat_id));
1748 1748
 
1749
-                        } else {
1749
+						} else {
1750 1750
 
1751
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1751
+							$json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1752 1752
 										post_id = %d,
1753 1753
 										post_title = %s,
1754 1754
 										cat_id = %d,
1755 1755
 										json = %s",
1756
-                                array($post_id, $post_title, $cat_id, $json));
1756
+								array($post_id, $post_title, $cat_id, $json));
1757 1757
 
1758
-                        }
1758
+						}
1759 1759
 
1760
-                        $wpdb->query($json_query);
1760
+						$wpdb->query($json_query);
1761 1761
 
1762
-                    endforeach;
1762
+					endforeach;
1763 1763
 
1764
-                endif;
1764
+				endif;
1765 1765
 
1766
-                if (!empty($post_term) && is_array($post_term)) {
1767
-                    $categories = implode(',', $post_term);
1766
+				if (!empty($post_term) && is_array($post_term)) {
1767
+					$categories = implode(',', $post_term);
1768 1768
 
1769
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1769
+					if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1770 1770
 
1771
-                    if (empty($post_marker_json))
1772
-                        $post_marker_json = isset($json) ? $json : '';
1771
+					if (empty($post_marker_json))
1772
+						$post_marker_json = isset($json) ? $json : '';
1773 1773
 
1774
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1774
+					if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1775 1775
 
1776
-                        $wpdb->query(
1777
-                            $wpdb->prepare(
1778
-                                "UPDATE " . $table . " SET
1776
+						$wpdb->query(
1777
+							$wpdb->prepare(
1778
+								"UPDATE " . $table . " SET
1779 1779
 								" . $taxonomy . " = %s,
1780 1780
 								marker_json = %s
1781 1781
 								where post_id = %d",
1782
-                                array($categories, $post_marker_json, $post_id)
1783
-                            )
1784
-                        );
1782
+								array($categories, $post_marker_json, $post_id)
1783
+							)
1784
+						);
1785 1785
 
1786
-                        if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1786
+						if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1787 1787
 
1788
-                            $categories = trim($categories, ',');
1788
+							$categories = trim($categories, ',');
1789 1789
 
1790
-                            if ($categories) {
1790
+							if ($categories) {
1791 1791
 
1792
-                                $categories = explode(',', $categories);
1792
+								$categories = explode(',', $categories);
1793 1793
 
1794
-                                $default_category = geodir_get_post_meta($post_id, 'default_category', true);
1794
+								$default_category = geodir_get_post_meta($post_id, 'default_category', true);
1795 1795
 
1796
-                                if (!in_array($default_category, $categories)) {
1796
+								if (!in_array($default_category, $categories)) {
1797 1797
 
1798
-                                    $wpdb->query(
1799
-                                        $wpdb->prepare(
1800
-                                            "UPDATE " . $table . " SET
1798
+									$wpdb->query(
1799
+										$wpdb->prepare(
1800
+											"UPDATE " . $table . " SET
1801 1801
 											default_category = %s
1802 1802
 											where post_id = %d",
1803
-                                            array($categories[0], $post_id)
1804
-                                        )
1805
-                                    );
1803
+											array($categories[0], $post_id)
1804
+										)
1805
+									);
1806 1806
 
1807
-                                    $default_category = $categories[0];
1807
+									$default_category = $categories[0];
1808 1808
 
1809
-                                }
1809
+								}
1810 1810
 
1811
-                                if ($default_category == '')
1812
-                                    $default_category = $categories[0];
1811
+								if ($default_category == '')
1812
+									$default_category = $categories[0];
1813 1813
 
1814
-                                geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1814
+								geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1815 1815
 
1816
-                            }
1816
+							}
1817 1817
 
1818
-                        }
1818
+						}
1819 1819
 
1820 1820
 
1821
-                    } else {
1821
+					} else {
1822 1822
 
1823
-                        $wpdb->query(
1824
-                            $wpdb->prepare(
1825
-                                "INSERT INTO " . $table . " SET
1823
+						$wpdb->query(
1824
+							$wpdb->prepare(
1825
+								"INSERT INTO " . $table . " SET
1826 1826
 								post_id = %d,
1827 1827
 								" . $taxonomy . " = %s,
1828 1828
 								marker_json = %s ",
1829 1829
 
1830
-                                array($post_id, $categories, $post_marker_json)
1831
-                            )
1832
-                        );
1833
-                    }
1834
-                }
1835
-            }
1836
-        }
1837
-    }
1830
+								array($post_id, $categories, $post_marker_json)
1831
+							)
1832
+						);
1833
+					}
1834
+				}
1835
+			}
1836
+		}
1837
+	}
1838 1838
 }
1839 1839
 
1840 1840
 if (!function_exists('geodir_get_infowindow_html')) {
1841
-    /**
1842
-     * Set post Map Marker info html.
1843
-     *
1844
-     * @since 1.0.0
1845
-     * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1846
-     * @package GeoDirectory
1847
-     * @global array $geodir_addon_list List of active GeoDirectory extensions.
1848
-     * @global object $gd_session GeoDirectory Session object.
1849
-     * @param object $postinfo_obj The post details object.
1850
-     * @param string $post_preview Is this a post preview?.
1851
-     * @return mixed|string|void
1852
-     */
1853
-    function geodir_get_infowindow_html($postinfo_obj, $post_preview = '')
1854
-    {
1855
-        global $preview, $gd_session;
1856
-        $srcharr = array("'", "/", "-", '"', '\\');
1857
-        $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1858
-
1859
-        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1860
-            $ID = '';
1861
-            $plink = '';
1862
-
1863
-            if (isset($postinfo_obj->pid)) {
1864
-                $ID = $postinfo_obj->pid;
1865
-                $plink = get_permalink($ID);
1866
-            }
1867
-
1868
-            $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1869
-            $lat = $postinfo_obj->post_latitude;
1870
-            $lng = $postinfo_obj->post_longitude;
1871
-        } else {
1872
-            $ID = $postinfo_obj->post_id;
1873
-            $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1874
-            $title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08
1875
-            $plink = get_permalink($ID);
1876
-            $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1877
-            $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1878
-        }
1879
-
1880
-        // filter field as per price package
1881
-        global $geodir_addon_list;
1882
-        if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1883
-            $post_type = get_post_type($ID);
1884
-            $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1885
-            $field_name = 'geodir_contact';
1886
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1887
-                $contact = '';
1888
-            }
1889
-
1890
-            $field_name = 'geodir_timing';
1891
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1892
-                $timing = '';
1893
-            }
1894
-        }
1895
-
1896
-        if ($lat && $lng) {
1897
-            ob_start(); ?>
1841
+	/**
1842
+	 * Set post Map Marker info html.
1843
+	 *
1844
+	 * @since 1.0.0
1845
+	 * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1846
+	 * @package GeoDirectory
1847
+	 * @global array $geodir_addon_list List of active GeoDirectory extensions.
1848
+	 * @global object $gd_session GeoDirectory Session object.
1849
+	 * @param object $postinfo_obj The post details object.
1850
+	 * @param string $post_preview Is this a post preview?.
1851
+	 * @return mixed|string|void
1852
+	 */
1853
+	function geodir_get_infowindow_html($postinfo_obj, $post_preview = '')
1854
+	{
1855
+		global $preview, $gd_session;
1856
+		$srcharr = array("'", "/", "-", '"', '\\');
1857
+		$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1858
+
1859
+		if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1860
+			$ID = '';
1861
+			$plink = '';
1862
+
1863
+			if (isset($postinfo_obj->pid)) {
1864
+				$ID = $postinfo_obj->pid;
1865
+				$plink = get_permalink($ID);
1866
+			}
1867
+
1868
+			$title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1869
+			$lat = $postinfo_obj->post_latitude;
1870
+			$lng = $postinfo_obj->post_longitude;
1871
+		} else {
1872
+			$ID = $postinfo_obj->post_id;
1873
+			$title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1874
+			$title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08
1875
+			$plink = get_permalink($ID);
1876
+			$lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1877
+			$lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1878
+		}
1879
+
1880
+		// filter field as per price package
1881
+		global $geodir_addon_list;
1882
+		if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1883
+			$post_type = get_post_type($ID);
1884
+			$package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1885
+			$field_name = 'geodir_contact';
1886
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1887
+				$contact = '';
1888
+			}
1889
+
1890
+			$field_name = 'geodir_timing';
1891
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1892
+				$timing = '';
1893
+			}
1894
+		}
1895
+
1896
+		if ($lat && $lng) {
1897
+			ob_start(); ?>
1898 1898
             <div class="gd-bubble" style="">
1899 1899
                 <div class="gd-bubble-inside">
1900 1900
                     <?php
1901
-                    $comment_count = '';
1902
-                    $rating_star = '';
1903
-                    if ($ID != '') {
1904
-                        $rating_star = '';
1905
-                        $comment_count = geodir_get_review_count_total($ID);
1906
-
1907
-                        if (!$preview) {
1908
-                            $post_avgratings = geodir_get_post_rating($ID);
1909
-
1910
-                            $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1911
-
1912
-                            /**
1913
-                             * Filter to change rating stars
1914
-                             *
1915
-                             * You can use this filter to change Rating stars.
1916
-                             *
1917
-                             * @since 1.0.0
1918
-                             * @package GeoDirectory
1919
-                             * @param string $rating_star Rating stars.
1920
-                             * @param float $post_avgratings Average ratings of the post.
1921
-                             * @param int $ID The post ID.
1922
-                             */
1923
-                            $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1924
-                        }
1925
-                    }
1926
-                    ?>
1901
+					$comment_count = '';
1902
+					$rating_star = '';
1903
+					if ($ID != '') {
1904
+						$rating_star = '';
1905
+						$comment_count = geodir_get_review_count_total($ID);
1906
+
1907
+						if (!$preview) {
1908
+							$post_avgratings = geodir_get_post_rating($ID);
1909
+
1910
+							$rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1911
+
1912
+							/**
1913
+							 * Filter to change rating stars
1914
+							 *
1915
+							 * You can use this filter to change Rating stars.
1916
+							 *
1917
+							 * @since 1.0.0
1918
+							 * @package GeoDirectory
1919
+							 * @param string $rating_star Rating stars.
1920
+							 * @param float $post_avgratings Average ratings of the post.
1921
+							 * @param int $ID The post ID.
1922
+							 */
1923
+							$rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1924
+						}
1925
+					}
1926
+					?>
1927 1927
                     <div class="geodir-bubble_desc">
1928 1928
                         <h4>
1929 1929
                             <a href="<?php if ($plink != '') {
1930
-                                echo $plink;
1931
-                            } else {
1932
-                                echo 'javascript:void(0);';
1933
-                            } ?>"><?php echo $title; ?></a>
1930
+								echo $plink;
1931
+							} else {
1932
+								echo 'javascript:void(0);';
1933
+							} ?>"><?php echo $title; ?></a>
1934 1934
                         </h4>
1935 1935
                         <?php
1936
-                        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1937
-                            $post_images = array();
1938
-                            if (!empty($postinfo_obj->post_images)) {
1939
-                                $post_images = explode(",", $postinfo_obj->post_images);
1940
-                            }
1941
-
1942
-                            if (!empty($post_images)) {
1943
-                                ?>
1936
+						if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1937
+							$post_images = array();
1938
+							if (!empty($postinfo_obj->post_images)) {
1939
+								$post_images = explode(",", $postinfo_obj->post_images);
1940
+							}
1941
+
1942
+							if (!empty($post_images)) {
1943
+								?>
1944 1944
                                 <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
1945
-                                        echo $plink;
1946
-                                    } else {
1947
-                                        echo 'javascript:void(0);';
1948
-                                    } ?>"><img alt="bubble image" style="max-height:50px;"
1945
+										echo $plink;
1946
+									} else {
1947
+										echo 'javascript:void(0);';
1948
+									} ?>"><img alt="bubble image" style="max-height:50px;"
1949 1949
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1950 1950
                             <?php
1951
-                            }else{
1952
-                                echo '<div class="geodir-bubble_image"></div>';
1953
-                            }
1954
-                        } else {
1955
-                            if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1956
-                                ?>
1951
+							}else{
1952
+								echo '<div class="geodir-bubble_image"></div>';
1953
+							}
1954
+						} else {
1955
+							if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1956
+								?>
1957 1957
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1958 1958
                             <?php
1959
-                            }else{
1960
-                                echo '<div class="geodir-bubble_image"></div>';
1961
-                            }
1962
-                        }
1963
-                        ?>
1959
+							}else{
1960
+								echo '<div class="geodir-bubble_image"></div>';
1961
+							}
1962
+						}
1963
+						?>
1964 1964
                         <div class="geodir-bubble-meta-side">
1965 1965
                             <?php
1966
-                            /**
1967
-                             * Fires before the meta info in the map info window.
1968
-                             *
1969
-                             * This can be used to add more info to the map info window before the normal meta info.
1970
-                             *
1971
-                             * @since 1.5.4
1972
-                             * @param int $ID The post id.
1973
-                             * @param object $postinfo_obj The posts info as an object.
1974
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1975
-                             */
1976
-                            do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
1977
-
1978
-
1979
-                            echo geodir_show_listing_info('mapbubble');
1966
+							/**
1967
+							 * Fires before the meta info in the map info window.
1968
+							 *
1969
+							 * This can be used to add more info to the map info window before the normal meta info.
1970
+							 *
1971
+							 * @since 1.5.4
1972
+							 * @param int $ID The post id.
1973
+							 * @param object $postinfo_obj The posts info as an object.
1974
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1975
+							 */
1976
+							do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
1977
+
1978
+
1979
+							echo geodir_show_listing_info('mapbubble');
1980 1980
                             
1981 1981
                                                       
1982 1982
 
1983
-                            /**
1984
-                             * Fires after the meta info in the map info window.
1985
-                             *
1986
-                             * This can be used to add more info to the map info window after the normal meta info.
1987
-                             *
1988
-                             * @since 1.4.2
1989
-                             * @param object $postinfo_obj The posts info as an object.
1990
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1991
-                             */
1992
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1993
-                            ?>
1983
+							/**
1984
+							 * Fires after the meta info in the map info window.
1985
+							 *
1986
+							 * This can be used to add more info to the map info window after the normal meta info.
1987
+							 *
1988
+							 * @since 1.4.2
1989
+							 * @param object $postinfo_obj The posts info as an object.
1990
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1991
+							 */
1992
+							do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1993
+							?>
1994 1994
                         </div>
1995 1995
                         <?php
1996 1996
 
1997
-                        if ($ID) {
1997
+						if ($ID) {
1998 1998
 
1999
-                            $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
2000
-                            ?>
1999
+							$post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
2000
+							?>
2001 2001
                             <div class="geodir-bubble-meta-fade"></div>
2002 2002
 
2003 2003
                             <div class="geodir-bubble-meta-bottom">
@@ -2017,69 +2017,69 @@  discard block
 block discarded – undo
2017 2017
                 </div>
2018 2018
             </div>
2019 2019
             <?php
2020
-            $html = ob_get_clean();
2021
-            /**
2022
-             * Filter to change infowindow html
2023
-             *
2024
-             * You can use this filter to change infowindow html.
2025
-             *
2026
-             * @since 1.0.0
2027
-             * @package GeoDirectory
2028
-             * @param string $html Infowindow html.
2029
-             * @param object $postinfo_obj The Post object.
2030
-             * @param bool|string $post_preview Is this a post preview?
2031
-             */
2032
-            $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2033
-            return $html;
2034
-        }
2035
-    }
2020
+			$html = ob_get_clean();
2021
+			/**
2022
+			 * Filter to change infowindow html
2023
+			 *
2024
+			 * You can use this filter to change infowindow html.
2025
+			 *
2026
+			 * @since 1.0.0
2027
+			 * @package GeoDirectory
2028
+			 * @param string $html Infowindow html.
2029
+			 * @param object $postinfo_obj The Post object.
2030
+			 * @param bool|string $post_preview Is this a post preview?
2031
+			 */
2032
+			$html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2033
+			return $html;
2034
+		}
2035
+	}
2036 2036
 }
2037 2037
 
2038 2038
 
2039 2039
 if (!function_exists('geodir_new_post_default_status')) {
2040
-    /**
2041
-     * Default post status for new posts.
2042
-     *
2043
-     * @since 1.0.0
2044
-     * @package GeoDirectory
2045
-     * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2046
-     */
2047
-    function geodir_new_post_default_status()
2048
-    {
2049
-        if (get_option('geodir_new_post_default_status'))
2050
-            return get_option('geodir_new_post_default_status');
2051
-        else
2052
-            return 'publish';
2053
-
2054
-    }
2040
+	/**
2041
+	 * Default post status for new posts.
2042
+	 *
2043
+	 * @since 1.0.0
2044
+	 * @package GeoDirectory
2045
+	 * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2046
+	 */
2047
+	function geodir_new_post_default_status()
2048
+	{
2049
+		if (get_option('geodir_new_post_default_status'))
2050
+			return get_option('geodir_new_post_default_status');
2051
+		else
2052
+			return 'publish';
2053
+
2054
+	}
2055 2055
 }
2056 2056
 
2057 2057
 if (!function_exists('geodir_change_post_status')) {
2058
-    /**
2059
-     * Change post status of a post.
2060
-     *
2061
-     * @global object $wpdb WordPress Database object.
2062
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2063
-     * @param int|string $post_id The post ID.
2064
-     * @param string $status New post status. Ex: draft, publish etc.
2065
-     */
2066
-    function geodir_change_post_status($post_id = '', $status = '')
2067
-    {
2068
-        global $wpdb, $plugin_prefix;
2069
-
2070
-        $post_type = get_post_type($post_id);
2071
-
2072
-        $table = $plugin_prefix . $post_type . '_detail';
2073
-
2074
-        $wpdb->query(
2075
-            $wpdb->prepare(
2076
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2077
-                array($status, $post_id)
2078
-            )
2079
-        );
2080
-
2081
-
2082
-    }
2058
+	/**
2059
+	 * Change post status of a post.
2060
+	 *
2061
+	 * @global object $wpdb WordPress Database object.
2062
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2063
+	 * @param int|string $post_id The post ID.
2064
+	 * @param string $status New post status. Ex: draft, publish etc.
2065
+	 */
2066
+	function geodir_change_post_status($post_id = '', $status = '')
2067
+	{
2068
+		global $wpdb, $plugin_prefix;
2069
+
2070
+		$post_type = get_post_type($post_id);
2071
+
2072
+		$table = $plugin_prefix . $post_type . '_detail';
2073
+
2074
+		$wpdb->query(
2075
+			$wpdb->prepare(
2076
+				"UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2077
+				array($status, $post_id)
2078
+			)
2079
+		);
2080
+
2081
+
2082
+	}
2083 2083
 }
2084 2084
 
2085 2085
 /**
@@ -2093,13 +2093,13 @@  discard block
 block discarded – undo
2093 2093
  */
2094 2094
 function geodir_set_post_status($pid, $status)
2095 2095
 {
2096
-    if ($pid) {
2097
-        global $wpdb;
2098
-        $my_post = array();
2099
-        $my_post['post_status'] = $status;
2100
-        $my_post['ID'] = $pid;
2101
-        $last_postid = wp_update_post($my_post);
2102
-    }
2096
+	if ($pid) {
2097
+		global $wpdb;
2098
+		$my_post = array();
2099
+		$my_post['post_status'] = $status;
2100
+		$my_post['ID'] = $pid;
2101
+		$last_postid = wp_update_post($my_post);
2102
+	}
2103 2103
 }
2104 2104
 
2105 2105
 
@@ -2115,384 +2115,384 @@  discard block
 block discarded – undo
2115 2115
  */
2116 2116
 function geodir_update_poststatus($new_status, $old_status, $post)
2117 2117
 {
2118
-    global $wpdb;
2118
+	global $wpdb;
2119 2119
 
2120
-    $geodir_posttypes = geodir_get_posttypes();
2120
+	$geodir_posttypes = geodir_get_posttypes();
2121 2121
 
2122
-    if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2122
+	if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2123 2123
 
2124
-        geodir_change_post_status($post->ID, $new_status);
2125
-    }
2124
+		geodir_change_post_status($post->ID, $new_status);
2125
+	}
2126 2126
 }
2127 2127
 
2128 2128
 
2129 2129
 if (!function_exists('geodir_update_listing_info')) {
2130
-    /**
2131
-     * Update post info.
2132
-     *
2133
-     * @since 1.0.0
2134
-     * @package GeoDirectory
2135
-     * @global object $wpdb WordPress Database object.
2136
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2137
-     * @param int $updatingpost The updating post ID.
2138
-     * @param int $temppost The temporary post ID.
2139
-     * @todo fix post_id variable
2140
-     */
2141
-    function geodir_update_listing_info($updatingpost, $temppost)
2142
-    {
2143
-
2144
-        global $wpdb, $plugin_prefix;
2145
-
2146
-        $post_type = get_post_type($post_id);
2147
-
2148
-        $table = $plugin_prefix . $post_type . '_detail';
2149
-
2150
-        $wpdb->query(
2151
-            $wpdb->prepare(
2152
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2153
-                array($updatingpost, $temppost)
2154
-            )
2155
-        );
2156
-
2157
-        $wpdb->query(
2158
-            $wpdb->prepare(
2159
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2160
-                array($updatingpost, $temppost)
2161
-            )
2162
-        );
2163
-
2164
-        /* Update Attachments*/
2165
-
2166
-        $wpdb->query(
2167
-            $wpdb->prepare(
2168
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2169
-                array($updatingpost, $temppost)
2170
-            )
2171
-        );
2172
-
2173
-    }
2130
+	/**
2131
+	 * Update post info.
2132
+	 *
2133
+	 * @since 1.0.0
2134
+	 * @package GeoDirectory
2135
+	 * @global object $wpdb WordPress Database object.
2136
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2137
+	 * @param int $updatingpost The updating post ID.
2138
+	 * @param int $temppost The temporary post ID.
2139
+	 * @todo fix post_id variable
2140
+	 */
2141
+	function geodir_update_listing_info($updatingpost, $temppost)
2142
+	{
2143
+
2144
+		global $wpdb, $plugin_prefix;
2145
+
2146
+		$post_type = get_post_type($post_id);
2147
+
2148
+		$table = $plugin_prefix . $post_type . '_detail';
2149
+
2150
+		$wpdb->query(
2151
+			$wpdb->prepare(
2152
+				"UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2153
+				array($updatingpost, $temppost)
2154
+			)
2155
+		);
2156
+
2157
+		$wpdb->query(
2158
+			$wpdb->prepare(
2159
+				"UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2160
+				array($updatingpost, $temppost)
2161
+			)
2162
+		);
2163
+
2164
+		/* Update Attachments*/
2165
+
2166
+		$wpdb->query(
2167
+			$wpdb->prepare(
2168
+				"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2169
+				array($updatingpost, $temppost)
2170
+			)
2171
+		);
2172
+
2173
+	}
2174 2174
 }
2175 2175
 
2176 2176
 
2177 2177
 if (!function_exists('geodir_delete_listing_info')) {
2178
-    /**
2179
-     * Delete Listing info from details table for the given post id.
2180
-     *
2181
-     * @since 1.0.0
2182
-     * @package GeoDirectory
2183
-     * @global object $wpdb WordPress Database object.
2184
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2185
-     * @param int $deleted_postid The post ID.
2186
-     * @param bool $force Optional. Do you want to force delete it? Default: false.
2187
-     * @return bool|void
2188
-     */
2189
-    function geodir_delete_listing_info($deleted_postid, $force = false)
2190
-    {
2191
-        global $wpdb, $plugin_prefix;
2192
-
2193
-        // check for multisite deletions
2194
-        if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2195
-        } else {
2196
-            return;
2197
-        }
2198
-
2199
-        $post_type = get_post_type($deleted_postid);
2200
-
2201
-        $all_postypes = geodir_get_posttypes();
2202
-
2203
-        if (!in_array($post_type, $all_postypes))
2204
-            return false;
2205
-
2206
-        $table = $plugin_prefix . $post_type . '_detail';
2207
-
2208
-        /* Delete custom post meta*/
2209
-        $wpdb->query(
2210
-            $wpdb->prepare(
2211
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2212
-                array($deleted_postid)
2213
-            )
2214
-        );
2215
-
2216
-        /* Delete post map icons*/
2217
-
2218
-        $wpdb->query(
2219
-            $wpdb->prepare(
2220
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2221
-                array($deleted_postid)
2222
-            )
2223
-        );
2224
-
2225
-        /* Delete Attachments*/
2226
-        $postcurr_images = geodir_get_images($deleted_postid);
2227
-
2228
-        $wpdb->query(
2229
-            $wpdb->prepare(
2230
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2231
-                array($deleted_postid)
2232
-            )
2233
-        );
2234
-        geodir_remove_attachments($postcurr_images);
2235
-
2236
-    }
2178
+	/**
2179
+	 * Delete Listing info from details table for the given post id.
2180
+	 *
2181
+	 * @since 1.0.0
2182
+	 * @package GeoDirectory
2183
+	 * @global object $wpdb WordPress Database object.
2184
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2185
+	 * @param int $deleted_postid The post ID.
2186
+	 * @param bool $force Optional. Do you want to force delete it? Default: false.
2187
+	 * @return bool|void
2188
+	 */
2189
+	function geodir_delete_listing_info($deleted_postid, $force = false)
2190
+	{
2191
+		global $wpdb, $plugin_prefix;
2192
+
2193
+		// check for multisite deletions
2194
+		if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2195
+		} else {
2196
+			return;
2197
+		}
2198
+
2199
+		$post_type = get_post_type($deleted_postid);
2200
+
2201
+		$all_postypes = geodir_get_posttypes();
2202
+
2203
+		if (!in_array($post_type, $all_postypes))
2204
+			return false;
2205
+
2206
+		$table = $plugin_prefix . $post_type . '_detail';
2207
+
2208
+		/* Delete custom post meta*/
2209
+		$wpdb->query(
2210
+			$wpdb->prepare(
2211
+				"DELETE FROM " . $table . " WHERE `post_id` = %d",
2212
+				array($deleted_postid)
2213
+			)
2214
+		);
2215
+
2216
+		/* Delete post map icons*/
2217
+
2218
+		$wpdb->query(
2219
+			$wpdb->prepare(
2220
+				"DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2221
+				array($deleted_postid)
2222
+			)
2223
+		);
2224
+
2225
+		/* Delete Attachments*/
2226
+		$postcurr_images = geodir_get_images($deleted_postid);
2227
+
2228
+		$wpdb->query(
2229
+			$wpdb->prepare(
2230
+				"DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2231
+				array($deleted_postid)
2232
+			)
2233
+		);
2234
+		geodir_remove_attachments($postcurr_images);
2235
+
2236
+	}
2237 2237
 }
2238 2238
 
2239 2239
 
2240 2240
 if (!function_exists('geodir_add_to_favorite')) {
2241
-    /**
2242
-     * This function would add listing to favorite listing.
2243
-     *
2244
-     * @since 1.0.0
2245
-     * @package GeoDirectory
2246
-     * @global object $current_user Current user object.
2247
-     * @param int $post_id The post ID.
2248
-     */
2249
-    function geodir_add_to_favorite($post_id)
2250
-    {
2251
-
2252
-        global $current_user;
2253
-
2254
-        /**
2255
-         * Filter to modify "Unfavorite" text
2256
-         *
2257
-         * You can use this filter to rename "Unfavorite" text to something else.
2258
-         *
2259
-         * @since 1.0.0
2260
-         * @package GeoDirectory
2261
-         */
2262
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2263
-
2264
-        /**
2265
-         * Filter to modify "Remove from Favorites" text
2266
-         *
2267
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2268
-         *
2269
-         * @since 1.0.0
2270
-         * @package GeoDirectory
2271
-         */
2272
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2273
-
2274
-        /**
2275
-         * Filter to modify "fa fa-heart" icon
2276
-         *
2277
-         * You can use this filter to change "fa fa-heart" icon to something else.
2278
-         *
2279
-         * @since 1.0.0
2280
-         * @package GeoDirectory
2281
-         */
2282
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2283
-
2284
-        $user_meta_data = array();
2285
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2286
-
2287
-        if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2288
-            $user_meta_data[] = $post_id;
2289
-        }
2290
-
2291
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2292
-
2293
-        /**
2294
-         * Called before adding the post from favourites.
2295
-         *
2296
-         * @since 1.0.0
2297
-         * @package GeoDirectory
2298
-         * @param int $post_id The post ID.
2299
-         */
2300
-        do_action('geodir_before_add_from_favorite', $post_id);
2301
-
2302
-        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>';
2241
+	/**
2242
+	 * This function would add listing to favorite listing.
2243
+	 *
2244
+	 * @since 1.0.0
2245
+	 * @package GeoDirectory
2246
+	 * @global object $current_user Current user object.
2247
+	 * @param int $post_id The post ID.
2248
+	 */
2249
+	function geodir_add_to_favorite($post_id)
2250
+	{
2251
+
2252
+		global $current_user;
2253
+
2254
+		/**
2255
+		 * Filter to modify "Unfavorite" text
2256
+		 *
2257
+		 * You can use this filter to rename "Unfavorite" text to something else.
2258
+		 *
2259
+		 * @since 1.0.0
2260
+		 * @package GeoDirectory
2261
+		 */
2262
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2263
+
2264
+		/**
2265
+		 * Filter to modify "Remove from Favorites" text
2266
+		 *
2267
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2268
+		 *
2269
+		 * @since 1.0.0
2270
+		 * @package GeoDirectory
2271
+		 */
2272
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2273
+
2274
+		/**
2275
+		 * Filter to modify "fa fa-heart" icon
2276
+		 *
2277
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2278
+		 *
2279
+		 * @since 1.0.0
2280
+		 * @package GeoDirectory
2281
+		 */
2282
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2283
+
2284
+		$user_meta_data = array();
2285
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2286
+
2287
+		if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2288
+			$user_meta_data[] = $post_id;
2289
+		}
2290
+
2291
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2292
+
2293
+		/**
2294
+		 * Called before adding the post from favourites.
2295
+		 *
2296
+		 * @since 1.0.0
2297
+		 * @package GeoDirectory
2298
+		 * @param int $post_id The post ID.
2299
+		 */
2300
+		do_action('geodir_before_add_from_favorite', $post_id);
2301
+
2302
+		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>';
2303
+
2304
+		/**
2305
+		 * Called after adding the post from favourites.
2306
+		 *
2307
+		 * @since 1.0.0
2308
+		 * @package GeoDirectory
2309
+		 * @param int $post_id The post ID.
2310
+		 */
2311
+		do_action('geodir_after_add_from_favorite', $post_id);
2303 2312
 
2304
-        /**
2305
-         * Called after adding the post from favourites.
2306
-         *
2307
-         * @since 1.0.0
2308
-         * @package GeoDirectory
2309
-         * @param int $post_id The post ID.
2310
-         */
2311
-        do_action('geodir_after_add_from_favorite', $post_id);
2312
-
2313
-    }
2313
+	}
2314 2314
 }
2315 2315
 
2316 2316
 if (!function_exists('geodir_remove_from_favorite')) {
2317
-    /**
2318
-     * This function would remove the favourited property earlier.
2319
-     *
2320
-     * @since 1.0.0
2321
-     * @package GeoDirectory
2322
-     * @global object $current_user Current user object.
2323
-     * @param int $post_id The post ID.
2324
-     */
2325
-    function geodir_remove_from_favorite($post_id)
2326
-    {
2327
-        global $current_user;
2328
-
2329
-        /**
2330
-         * Filter to modify "Add to Favorites" text
2331
-         *
2332
-         * You can use this filter to rename "Add to Favorites" text to something else.
2333
-         *
2334
-         * @since 1.0.0
2335
-         * @package GeoDirectory
2336
-         */
2337
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2338
-
2339
-        /**
2340
-         * Filter to modify "Favourite" text
2341
-         *
2342
-         * You can use this filter to rename "Favourite" text to something else.
2343
-         *
2344
-         * @since 1.0.0
2345
-         * @package GeoDirectory
2346
-         */
2347
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2348
-
2349
-        /**
2350
-         * Filter to modify "fa fa-heart" icon
2351
-         *
2352
-         * You can use this filter to change "fa fa-heart" icon to something else.
2353
-         *
2354
-         * @since 1.0.0
2355
-         * @package GeoDirectory
2356
-         */
2357
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2358
-
2359
-        $user_meta_data = array();
2360
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2361
-
2362
-        if (!empty($user_meta_data)) {
2317
+	/**
2318
+	 * This function would remove the favourited property earlier.
2319
+	 *
2320
+	 * @since 1.0.0
2321
+	 * @package GeoDirectory
2322
+	 * @global object $current_user Current user object.
2323
+	 * @param int $post_id The post ID.
2324
+	 */
2325
+	function geodir_remove_from_favorite($post_id)
2326
+	{
2327
+		global $current_user;
2328
+
2329
+		/**
2330
+		 * Filter to modify "Add to Favorites" text
2331
+		 *
2332
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2333
+		 *
2334
+		 * @since 1.0.0
2335
+		 * @package GeoDirectory
2336
+		 */
2337
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2338
+
2339
+		/**
2340
+		 * Filter to modify "Favourite" text
2341
+		 *
2342
+		 * You can use this filter to rename "Favourite" text to something else.
2343
+		 *
2344
+		 * @since 1.0.0
2345
+		 * @package GeoDirectory
2346
+		 */
2347
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2348
+
2349
+		/**
2350
+		 * Filter to modify "fa fa-heart" icon
2351
+		 *
2352
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2353
+		 *
2354
+		 * @since 1.0.0
2355
+		 * @package GeoDirectory
2356
+		 */
2357
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2358
+
2359
+		$user_meta_data = array();
2360
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2361
+
2362
+		if (!empty($user_meta_data)) {
2363
+
2364
+			if (($key = array_search($post_id, $user_meta_data)) !== false) {
2365
+				unset($user_meta_data[$key]);
2366
+			}
2363 2367
 
2364
-            if (($key = array_search($post_id, $user_meta_data)) !== false) {
2365
-                unset($user_meta_data[$key]);
2366
-            }
2368
+		}
2367 2369
 
2368
-        }
2370
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2369 2371
 
2370
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2372
+		/**
2373
+		 * Called before removing the post from favourites.
2374
+		 *
2375
+		 * @since 1.0.0
2376
+		 * @package GeoDirectory
2377
+		 * @param int $post_id The post ID.
2378
+		 */
2379
+		do_action('geodir_before_remove_from_favorite', $post_id);
2371 2380
 
2372
-        /**
2373
-         * Called before removing the post from favourites.
2374
-         *
2375
-         * @since 1.0.0
2376
-         * @package GeoDirectory
2377
-         * @param int $post_id The post ID.
2378
-         */
2379
-        do_action('geodir_before_remove_from_favorite', $post_id);
2381
+		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>';
2380 2382
 
2381
-        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>';
2383
+		/**
2384
+		 * Called after removing the post from favourites.
2385
+		 *
2386
+		 * @since 1.0.0
2387
+		 * @package GeoDirectory
2388
+		 * @param int $post_id The post ID.
2389
+		 */
2390
+		do_action('geodir_after_remove_from_favorite', $post_id);
2382 2391
 
2383
-        /**
2384
-         * Called after removing the post from favourites.
2385
-         *
2386
-         * @since 1.0.0
2387
-         * @package GeoDirectory
2388
-         * @param int $post_id The post ID.
2389
-         */
2390
-        do_action('geodir_after_remove_from_favorite', $post_id);
2391
-
2392
-    }
2392
+	}
2393 2393
 }
2394 2394
 
2395 2395
 if (!function_exists('geodir_favourite_html')) {
2396
-    /**
2397
-     * This function would display the html content for add to favorite or remove from favorite.
2398
-     *
2399
-     * @since 1.0.0
2400
-     * @package GeoDirectory
2401
-     * @global object $current_user Current user object.
2402
-     * @global object $post The current post object.
2403
-     * @param int $user_id The user ID.
2404
-     * @param int $post_id The post ID.
2405
-     */
2406
-    function geodir_favourite_html($user_id, $post_id)
2407
-    {
2408
-
2409
-        global $current_user, $post;
2410
-
2411
-        /**
2412
-         * Filter to modify "Add to Favorites" text
2413
-         *
2414
-         * You can use this filter to rename "Add to Favorites" text to something else.
2415
-         *
2416
-         * @since 1.0.0
2417
-         * @package GeoDirectory
2418
-         */
2419
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2420
-
2421
-        /**
2422
-         * Filter to modify "Favourite" text
2423
-         *
2424
-         * You can use this filter to rename "Favourite" text to something else.
2425
-         *
2426
-         * @since 1.0.0
2427
-         * @package GeoDirectory
2428
-         */
2429
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2430
-
2431
-        /**
2432
-         * Filter to modify "Unfavorite" text
2433
-         *
2434
-         * You can use this filter to rename "Unfavorite" text to something else.
2435
-         *
2436
-         * @since 1.0.0
2437
-         * @package GeoDirectory
2438
-         */
2439
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2440
-
2441
-        /**
2442
-         * Filter to modify "Remove from Favorites" text
2443
-         *
2444
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2445
-         *
2446
-         * @since 1.0.0
2447
-         * @package GeoDirectory
2448
-         */
2449
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2450
-
2451
-        /**
2452
-         * Filter to modify "fa fa-heart" icon
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
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2460
-
2461
-        /**
2462
-         * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2463
-         *
2464
-         * You can use this filter to change "fa fa-heart" icon to something else.
2465
-         *
2466
-         * @since 1.0.0
2467
-         * @package GeoDirectory
2468
-         */
2469
-        $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2470
-
2471
-        $user_meta_data = '';
2472
-        if (isset($current_user->data->ID))
2473
-            $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2474
-
2475
-        if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2476
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2396
+	/**
2397
+	 * This function would display the html content for add to favorite or remove from favorite.
2398
+	 *
2399
+	 * @since 1.0.0
2400
+	 * @package GeoDirectory
2401
+	 * @global object $current_user Current user object.
2402
+	 * @global object $post The current post object.
2403
+	 * @param int $user_id The user ID.
2404
+	 * @param int $post_id The post ID.
2405
+	 */
2406
+	function geodir_favourite_html($user_id, $post_id)
2407
+	{
2408
+
2409
+		global $current_user, $post;
2410
+
2411
+		/**
2412
+		 * Filter to modify "Add to Favorites" text
2413
+		 *
2414
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2415
+		 *
2416
+		 * @since 1.0.0
2417
+		 * @package GeoDirectory
2418
+		 */
2419
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2420
+
2421
+		/**
2422
+		 * Filter to modify "Favourite" text
2423
+		 *
2424
+		 * You can use this filter to rename "Favourite" text to something else.
2425
+		 *
2426
+		 * @since 1.0.0
2427
+		 * @package GeoDirectory
2428
+		 */
2429
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2430
+
2431
+		/**
2432
+		 * Filter to modify "Unfavorite" text
2433
+		 *
2434
+		 * You can use this filter to rename "Unfavorite" text to something else.
2435
+		 *
2436
+		 * @since 1.0.0
2437
+		 * @package GeoDirectory
2438
+		 */
2439
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2440
+
2441
+		/**
2442
+		 * Filter to modify "Remove from Favorites" text
2443
+		 *
2444
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2445
+		 *
2446
+		 * @since 1.0.0
2447
+		 * @package GeoDirectory
2448
+		 */
2449
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2450
+
2451
+		/**
2452
+		 * Filter to modify "fa fa-heart" icon
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
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2460
+
2461
+		/**
2462
+		 * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2463
+		 *
2464
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2465
+		 *
2466
+		 * @since 1.0.0
2467
+		 * @package GeoDirectory
2468
+		 */
2469
+		$unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2470
+
2471
+		$user_meta_data = '';
2472
+		if (isset($current_user->data->ID))
2473
+			$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2474
+
2475
+		if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2476
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2477 2477
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2478 2478
                 onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2479 2479
                 title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2480 2480
             </a>   </span><?php
2481 2481
 
2482
-        } else {
2482
+		} else {
2483 2483
 
2484
-            if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2485
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2486
-            } else
2487
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2484
+			if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2485
+				$script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2486
+			} else
2487
+				$script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2488 2488
 
2489
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2489
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2490 2490
                                                                                         href="javascript:void(0);"
2491 2491
                                                                                         onclick="<?php echo $script_text;?>"
2492 2492
                                                                                         title="<?php echo $add_favourite_text;?>"><i
2493 2493
                     class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2494 2494
         <?php }
2495
-    }
2495
+	}
2496 2496
 }
2497 2497
 
2498 2498
 
@@ -2509,54 +2509,54 @@  discard block
 block discarded – undo
2509 2509
 function geodir_get_cat_postcount($term = array())
2510 2510
 {
2511 2511
 
2512
-    if (!empty($term)) {
2512
+	if (!empty($term)) {
2513 2513
 
2514
-        global $wpdb, $plugin_prefix;
2514
+		global $wpdb, $plugin_prefix;
2515 2515
 
2516
-        $where = '';
2517
-        $join = '';
2518
-        if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2519
-            $taxonomy_obj = get_taxonomy($term->taxonomy);
2516
+		$where = '';
2517
+		$join = '';
2518
+		if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2519
+			$taxonomy_obj = get_taxonomy($term->taxonomy);
2520 2520
 
2521
-            $post_type = $taxonomy_obj->object_type[0];
2521
+			$post_type = $taxonomy_obj->object_type[0];
2522 2522
 
2523
-            $table = $plugin_prefix . $post_type . '_detail';
2523
+			$table = $plugin_prefix . $post_type . '_detail';
2524 2524
 
2525
-            /**
2526
-             * Filter to modify the 'join' 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 $join The join query.
2532
-             */
2533
-            $join = apply_filters('geodir_cat_post_count_join', $join, $term);
2525
+			/**
2526
+			 * Filter to modify the 'join' 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 $join The join query.
2532
+			 */
2533
+			$join = apply_filters('geodir_cat_post_count_join', $join, $term);
2534 2534
 
2535
-            /**
2536
-             * Filter to modify the 'where' query
2537
-             *
2538
-             * @since 1.0.0
2539
-             * @package GeoDirectory
2540
-             * @param object|array $term category / term object that need to be processed.
2541
-             * @param string $where The where query.
2542
-             */
2543
-            $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2535
+			/**
2536
+			 * Filter to modify the 'where' query
2537
+			 *
2538
+			 * @since 1.0.0
2539
+			 * @package GeoDirectory
2540
+			 * @param object|array $term category / term object that need to be processed.
2541
+			 * @param string $where The where query.
2542
+			 */
2543
+			$where = apply_filters('geodir_cat_post_count_where', $where, $term);
2544 2544
 
2545
-            $count_query = "SELECT count(post_id) FROM
2545
+			$count_query = "SELECT count(post_id) FROM
2546 2546
 							" . $table . " as pd " . $join . "
2547 2547
 							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2548 2548
 
2549
-            $cat_post_count = $wpdb->get_var($count_query);
2550
-            if (empty($cat_post_count) || is_wp_error($cat_post_count))
2551
-                $cat_post_count = 0;
2549
+			$cat_post_count = $wpdb->get_var($count_query);
2550
+			if (empty($cat_post_count) || is_wp_error($cat_post_count))
2551
+				$cat_post_count = 0;
2552 2552
 
2553
-            return $cat_post_count;
2553
+			return $cat_post_count;
2554 2554
 
2555
-        } else
2555
+		} else
2556 2556
 
2557
-            return $term->count;
2558
-    }
2559
-    return false;
2557
+			return $term->count;
2558
+	}
2559
+	return false;
2560 2560
 
2561 2561
 }
2562 2562
 
@@ -2569,17 +2569,17 @@  discard block
 block discarded – undo
2569 2569
  */
2570 2570
 function geodir_allow_post_type_frontend()
2571 2571
 {
2572
-    $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2572
+	$geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2573 2573
 
2574
-    if (!is_admin() && isset($_REQUEST['listing_type'])
2575
-        && !empty($geodir_allow_posttype_frontend)
2576
-        && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2577
-    ) {
2574
+	if (!is_admin() && isset($_REQUEST['listing_type'])
2575
+		&& !empty($geodir_allow_posttype_frontend)
2576
+		&& !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2577
+	) {
2578 2578
 
2579
-        wp_redirect(home_url());
2580
-        exit;
2579
+		wp_redirect(home_url());
2580
+		exit;
2581 2581
 
2582
-    }
2582
+	}
2583 2583
 
2584 2584
 }
2585 2585
 
@@ -2596,20 +2596,20 @@  discard block
 block discarded – undo
2596 2596
  */
2597 2597
 function geodir_excerpt_length($length)
2598 2598
 {
2599
-    global $wp_query, $geodir_is_widget_listing;
2599
+	global $wp_query, $geodir_is_widget_listing;
2600 2600
 	if ($geodir_is_widget_listing) {
2601 2601
 		return $length;
2602 2602
 	}
2603 2603
 	
2604
-    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2605
-        $length = get_option('geodir_desc_word_limit');
2606
-    elseif (get_query_var('excerpt_length'))
2607
-        $length = get_query_var('excerpt_length');
2604
+	if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2605
+		$length = get_option('geodir_desc_word_limit');
2606
+	elseif (get_query_var('excerpt_length'))
2607
+		$length = get_query_var('excerpt_length');
2608 2608
 
2609
-    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2610
-        $length = get_option('geodir_author_desc_word_limit');
2609
+	if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2610
+		$length = get_option('geodir_author_desc_word_limit');
2611 2611
 
2612
-    return $length;
2612
+	return $length;
2613 2613
 }
2614 2614
 
2615 2615
 /**
@@ -2624,13 +2624,13 @@  discard block
 block discarded – undo
2624 2624
  */
2625 2625
 function geodir_excerpt_more($more)
2626 2626
 {
2627
-    global $post;
2628
-    $all_postypes = geodir_get_posttypes();
2629
-    if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2630
-        return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2631
-    }
2627
+	global $post;
2628
+	$all_postypes = geodir_get_posttypes();
2629
+	if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2630
+		return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2631
+	}
2632 2632
 
2633
-    return $more;
2633
+	return $more;
2634 2634
 }
2635 2635
 
2636 2636
 
@@ -2647,63 +2647,63 @@  discard block
 block discarded – undo
2647 2647
  */
2648 2648
 function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy)
2649 2649
 {
2650
-    global $plugin_prefix, $wpdb;
2650
+	global $plugin_prefix, $wpdb;
2651 2651
 
2652
-    $gd_taxonomies = geodir_get_taxonomies();
2652
+	$gd_taxonomies = geodir_get_taxonomies();
2653 2653
 
2654
-    if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2654
+	if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2655 2655
 
2656
-        $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2657
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2656
+		$geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2657
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
2658 2658
 
2659
-        $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2660
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2659
+		$path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2660
+		$term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2661 2661
 
2662
-        $posts = $wpdb->get_results(
2663
-            $wpdb->prepare(
2664
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2665
-                array($term_id, $taxonomy)
2666
-            )
2667
-        );
2662
+		$posts = $wpdb->get_results(
2663
+			$wpdb->prepare(
2664
+				"SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2665
+				array($term_id, $taxonomy)
2666
+			)
2667
+		);
2668 2668
 
2669
-        if (!empty($posts)):
2670
-            foreach ($posts as $post_obj) {
2669
+		if (!empty($posts)):
2670
+			foreach ($posts as $post_obj) {
2671 2671
 
2672
-                $lat = $post_obj->post_latitude;
2673
-                $lng = $post_obj->post_longitude;
2672
+				$lat = $post_obj->post_latitude;
2673
+				$lng = $post_obj->post_longitude;
2674 2674
 
2675
-                $json = '{';
2676
-                $json .= '"id":"' . $post_obj->post_id . '",';
2677
-                $json .= '"lat_pos": "' . $lat . '",';
2678
-                $json .= '"long_pos": "' . $lng . '",';
2679
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2680
-                $json .= '"icon":"' . $term_icon . '",';
2681
-                $json .= '"group":"catgroup' . $term_id . '"';
2682
-                $json .= '}';
2675
+				$json = '{';
2676
+				$json .= '"id":"' . $post_obj->post_id . '",';
2677
+				$json .= '"lat_pos": "' . $lat . '",';
2678
+				$json .= '"long_pos": "' . $lng . '",';
2679
+				$json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2680
+				$json .= '"icon":"' . $term_icon . '",';
2681
+				$json .= '"group":"catgroup' . $term_id . '"';
2682
+				$json .= '}';
2683 2683
 
2684
-                if ($post_obj->default_category == $term_id) {
2684
+				if ($post_obj->default_category == $term_id) {
2685 2685
 
2686
-                    $wpdb->query(
2687
-                        $wpdb->prepare(
2688
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2689
-                            array($json, $post_obj->post_id)
2690
-                        )
2691
-                    );
2692
-                }
2686
+					$wpdb->query(
2687
+						$wpdb->prepare(
2688
+							"UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2689
+							array($json, $post_obj->post_id)
2690
+						)
2691
+					);
2692
+				}
2693 2693
 
2694
-                $wpdb->query(
2695
-                    $wpdb->prepare(
2696
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2697
-                        array($json, $post_obj->post_id, $term_id)
2698
-                    )
2699
-                );
2694
+				$wpdb->query(
2695
+					$wpdb->prepare(
2696
+						"UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2697
+						array($json, $post_obj->post_id, $term_id)
2698
+					)
2699
+				);
2700 2700
 
2701
-            }
2701
+			}
2702 2702
 
2703 2703
 
2704
-        endif;
2704
+		endif;
2705 2705
 
2706
-    }
2706
+	}
2707 2707
 
2708 2708
 }
2709 2709
 
@@ -2717,14 +2717,14 @@  discard block
 block discarded – undo
2717 2717
  */
2718 2718
 function geodir_get_listing_author($listing_id = '')
2719 2719
 {
2720
-    if ($listing_id == '') {
2721
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2722
-            $listing_id = $_REQUEST['pid'];
2723
-        }
2724
-    }
2725
-    $listing = get_post(strip_tags($listing_id));
2726
-    $listing_author_id = $listing->post_author;
2727
-    return $listing_author_id;
2720
+	if ($listing_id == '') {
2721
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2722
+			$listing_id = $_REQUEST['pid'];
2723
+		}
2724
+	}
2725
+	$listing = get_post(strip_tags($listing_id));
2726
+	$listing_author_id = $listing->post_author;
2727
+	return $listing_author_id;
2728 2728
 }
2729 2729
 
2730 2730
 
@@ -2739,11 +2739,11 @@  discard block
 block discarded – undo
2739 2739
  */
2740 2740
 function geodir_lisiting_belong_to_user($listing_id, $user_id)
2741 2741
 {
2742
-    $listing_author_id = geodir_get_listing_author($listing_id);
2743
-    if ($listing_author_id == $user_id)
2744
-        return true;
2745
-    else
2746
-        return false;
2742
+	$listing_author_id = geodir_get_listing_author($listing_id);
2743
+	if ($listing_author_id == $user_id)
2744
+		return true;
2745
+	else
2746
+		return false;
2747 2747
 
2748 2748
 }
2749 2749
 
@@ -2759,17 +2759,17 @@  discard block
 block discarded – undo
2759 2759
  */
2760 2760
 function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true)
2761 2761
 {
2762
-    global $current_user;
2763
-    if ($exclude_admin) {
2764
-        foreach ($current_user->caps as $key => $caps) {
2765
-            if (geodir_strtolower($key) == 'administrator') {
2766
-                return true;
2767
-                break;
2768
-            }
2769
-        }
2770
-    }
2771
-
2772
-    return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2762
+	global $current_user;
2763
+	if ($exclude_admin) {
2764
+		foreach ($current_user->caps as $key => $caps) {
2765
+			if (geodir_strtolower($key) == 'administrator') {
2766
+				return true;
2767
+				break;
2768
+			}
2769
+		}
2770
+	}
2771
+
2772
+	return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2773 2773
 }
2774 2774
 
2775 2775
 
@@ -2785,17 +2785,17 @@  discard block
 block discarded – undo
2785 2785
 function geodir_only_supportable_attachments_remove($file)
2786 2786
 {
2787 2787
 
2788
-    global $wpdb;
2788
+	global $wpdb;
2789 2789
 
2790
-    $matches = array();
2790
+	$matches = array();
2791 2791
 
2792
-    $pattern = '/-\d+x\d+\./';
2793
-    preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2792
+	$pattern = '/-\d+x\d+\./';
2793
+	preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2794 2794
 
2795
-    if (empty($matches))
2796
-        return '';
2797
-    else
2798
-        return $file;
2795
+	if (empty($matches))
2796
+		return '';
2797
+	else
2798
+		return $file;
2799 2799
 
2800 2800
 }
2801 2801
 
@@ -2812,78 +2812,78 @@  discard block
 block discarded – undo
2812 2812
 function geodir_set_wp_featured_image($post_id)
2813 2813
 {
2814 2814
 
2815
-    global $wpdb, $plugin_prefix;
2816
-    $uploads = wp_upload_dir();
2815
+	global $wpdb, $plugin_prefix;
2816
+	$uploads = wp_upload_dir();
2817 2817
 //	print_r($uploads ) ;
2818
-    $post_first_image = $wpdb->get_results(
2819
-        $wpdb->prepare(
2820
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2821
-        )
2822
-    );
2823
-
2824
-    $old_attachment_name = '';
2825
-    $post_thumbnail_id = '';
2826
-    if (has_post_thumbnail($post_id)) {
2818
+	$post_first_image = $wpdb->get_results(
2819
+		$wpdb->prepare(
2820
+			"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2821
+		)
2822
+	);
2827 2823
 
2828
-        if (has_post_thumbnail($post_id)) {
2824
+	$old_attachment_name = '';
2825
+	$post_thumbnail_id = '';
2826
+	if (has_post_thumbnail($post_id)) {
2829 2827
 
2830
-            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2828
+		if (has_post_thumbnail($post_id)) {
2831 2829
 
2832
-            $old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2830
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
2833 2831
 
2834
-        }
2835
-    }
2832
+			$old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2836 2833
 
2837
-    if (!empty($post_first_image)) {
2834
+		}
2835
+	}
2838 2836
 
2839
-        $post_type = get_post_type($post_id);
2837
+	if (!empty($post_first_image)) {
2840 2838
 
2841
-        $table_name = $plugin_prefix . $post_type . '_detail';
2839
+		$post_type = get_post_type($post_id);
2842 2840
 
2843
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2841
+		$table_name = $plugin_prefix . $post_type . '_detail';
2844 2842
 
2845
-        $new_attachment_name = basename($post_first_image[0]->file);
2843
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2846 2844
 
2847
-        if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2845
+		$new_attachment_name = basename($post_first_image[0]->file);
2848 2846
 
2849
-            if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2847
+		if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2850 2848
 
2851
-                add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2849
+			if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2852 2850
 
2853
-                wp_delete_attachment($post_thumbnail_id);
2851
+				add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2854 2852
 
2855
-            }
2856
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2853
+				wp_delete_attachment($post_thumbnail_id);
2857 2854
 
2858
-            $attachment = array(
2859
-                'post_mime_type' => $post_first_image[0]->mime_type,
2860
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2861
-                'post_parent' => $post_id,
2862
-                'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2863
-                'post_content' => ''
2864
-            );
2855
+			}
2856
+			$filename = $uploads['basedir'] . $post_first_image[0]->file;
2857
+
2858
+			$attachment = array(
2859
+				'post_mime_type' => $post_first_image[0]->mime_type,
2860
+				'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2861
+				'post_parent' => $post_id,
2862
+				'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2863
+				'post_content' => ''
2864
+			);
2865 2865
 
2866 2866
 
2867
-            $id = wp_insert_attachment($attachment, $filename, $post_id);
2867
+			$id = wp_insert_attachment($attachment, $filename, $post_id);
2868 2868
 
2869
-            if (!is_wp_error($id)) {
2869
+			if (!is_wp_error($id)) {
2870 2870
 
2871
-                set_post_thumbnail($post_id, $id);
2871
+				set_post_thumbnail($post_id, $id);
2872 2872
 
2873
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2874
-                wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2873
+				require_once(ABSPATH . 'wp-admin/includes/image.php');
2874
+				wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2875 2875
 
2876
-            }
2876
+			}
2877 2877
 
2878
-        }
2878
+		}
2879 2879
 
2880
-    } else {
2881
-        //set_post_thumbnail($post_id,-1);
2880
+	} else {
2881
+		//set_post_thumbnail($post_id,-1);
2882 2882
 
2883
-        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2884
-            wp_delete_attachment($post_thumbnail_id);
2883
+		if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2884
+			wp_delete_attachment($post_thumbnail_id);
2885 2885
 
2886
-    }
2886
+	}
2887 2887
 }
2888 2888
 
2889 2889
 
@@ -2898,53 +2898,53 @@  discard block
 block discarded – undo
2898 2898
  */
2899 2899
 function gd_copy_original_translation()
2900 2900
 {
2901
-    if (function_exists('icl_object_id')) {
2902
-        global $wpdb, $table_prefix, $plugin_prefix;
2903
-        $post_id = absint($_POST['post_id']);
2904
-        $upload_dir = wp_upload_dir();
2905
-        $post_type = get_post_type($_POST['post_id']);
2906
-        $table = $plugin_prefix . $post_type . '_detail';
2907
-
2908
-        $post_arr = $wpdb->get_results($wpdb->prepare(
2909
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2910
-            array($post_id)
2911
-        )
2912
-            , ARRAY_A);
2913
-
2914
-        $arrImages = $wpdb->get_results(
2915
-            $wpdb->prepare(
2916
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2917
-                array('%image%', $post_id)
2918
-            )
2919
-        );
2920
-        if ($arrImages) {
2921
-            $image_arr = array();
2922
-            foreach ($arrImages as $img) {
2923
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
2924
-            }
2925
-            $comma_separated = implode(",", $image_arr);
2926
-            $post_arr[0]['post_images'] = $comma_separated;
2927
-        }
2928
-
2929
-
2930
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2931
-        $cat_arr = array_filter(explode(",", $cats));
2932
-        $trans_cat = array();
2933
-        foreach ($cat_arr as $cat) {
2934
-            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2935
-        }
2936
-
2937
-
2938
-        $post_arr[0]['categories'] = array_filter($trans_cat);
2901
+	if (function_exists('icl_object_id')) {
2902
+		global $wpdb, $table_prefix, $plugin_prefix;
2903
+		$post_id = absint($_POST['post_id']);
2904
+		$upload_dir = wp_upload_dir();
2905
+		$post_type = get_post_type($_POST['post_id']);
2906
+		$table = $plugin_prefix . $post_type . '_detail';
2907
+
2908
+		$post_arr = $wpdb->get_results($wpdb->prepare(
2909
+			"SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2910
+			array($post_id)
2911
+		)
2912
+			, ARRAY_A);
2913
+
2914
+		$arrImages = $wpdb->get_results(
2915
+			$wpdb->prepare(
2916
+				"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2917
+				array('%image%', $post_id)
2918
+			)
2919
+		);
2920
+		if ($arrImages) {
2921
+			$image_arr = array();
2922
+			foreach ($arrImages as $img) {
2923
+				$image_arr[] = $upload_dir['baseurl'] . $img->file;
2924
+			}
2925
+			$comma_separated = implode(",", $image_arr);
2926
+			$post_arr[0]['post_images'] = $comma_separated;
2927
+		}
2928
+
2929
+
2930
+		$cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2931
+		$cat_arr = array_filter(explode(",", $cats));
2932
+		$trans_cat = array();
2933
+		foreach ($cat_arr as $cat) {
2934
+			$trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2935
+		}
2936
+
2937
+
2938
+		$post_arr[0]['categories'] = array_filter($trans_cat);
2939 2939
 //print_r($image_arr);
2940
-        //print_r($arrImages);
2941
-        //echo $_REQUEST['lang'];
2940
+		//print_r($arrImages);
2941
+		//echo $_REQUEST['lang'];
2942 2942
 //print_r($post_arr);
2943 2943
 //print_r($trans_cat);
2944
-        echo json_encode($post_arr[0]);
2944
+		echo json_encode($post_arr[0]);
2945 2945
 
2946
-    }
2947
-    die();
2946
+	}
2947
+	die();
2948 2948
 }
2949 2949
 
2950 2950
 
@@ -2964,54 +2964,54 @@  discard block
 block discarded – undo
2964 2964
 function geodir_get_custom_fields_type($listing_type = '')
2965 2965
 {
2966 2966
 
2967
-    global $wpdb;
2967
+	global $wpdb;
2968 2968
 
2969
-    if ($listing_type == '')
2970
-        $listing_type = 'gd_place';
2969
+	if ($listing_type == '')
2970
+		$listing_type = 'gd_place';
2971 2971
 
2972
-    $fields_info = array();
2972
+	$fields_info = array();
2973 2973
 
2974
-    $get_data = $wpdb->get_results(
2975
-        $wpdb->prepare(
2976
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2977
-            array($listing_type)
2978
-        )
2979
-    );
2974
+	$get_data = $wpdb->get_results(
2975
+		$wpdb->prepare(
2976
+			"SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2977
+			array($listing_type)
2978
+		)
2979
+	);
2980 2980
 
2981
-    if (!empty($get_data)) {
2981
+	if (!empty($get_data)) {
2982 2982
 
2983
-        foreach ($get_data as $data) {
2983
+		foreach ($get_data as $data) {
2984 2984
 
2985
-            if ($data->field_type == 'address') {
2985
+			if ($data->field_type == 'address') {
2986 2986
 
2987
-                $extra_fields = unserialize($data->extra_fields);
2987
+				$extra_fields = unserialize($data->extra_fields);
2988 2988
 
2989
-                $prefix = $data->htmlvar_name . '_';
2989
+				$prefix = $data->htmlvar_name . '_';
2990 2990
 
2991
-                $fields_info[$prefix . 'address'] = $data->field_type;
2991
+				$fields_info[$prefix . 'address'] = $data->field_type;
2992 2992
 
2993
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2994
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
2993
+				if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2994
+					$fields_info[$prefix . 'zip'] = $data->field_type;
2995 2995
 
2996
-            } else {
2996
+			} else {
2997 2997
 
2998
-                $fields_info[$data->htmlvar_name] = $data->field_type;
2998
+				$fields_info[$data->htmlvar_name] = $data->field_type;
2999 2999
 
3000
-            }
3000
+			}
3001 3001
 
3002
-        }
3002
+		}
3003 3003
 
3004
-    }
3004
+	}
3005 3005
 
3006
-    /**
3007
-     * Filter to modify custom fields info using listing post type.
3008
-     *
3009
-     * @since 1.0.0
3010
-     * @package GeoDirectory
3011
-     * @return array $fields_info Custom fields info.
3012
-     * @param string $listing_type The listing post type.
3013
-     */
3014
-    return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
3006
+	/**
3007
+	 * Filter to modify custom fields info using listing post type.
3008
+	 *
3009
+	 * @since 1.0.0
3010
+	 * @package GeoDirectory
3011
+	 * @return array $fields_info Custom fields info.
3012
+	 * @param string $listing_type The listing post type.
3013
+	 */
3014
+	return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
3015 3015
 }
3016 3016
 
3017 3017
 
@@ -3026,58 +3026,58 @@  discard block
 block discarded – undo
3026 3026
  */
3027 3027
 function geodir_function_post_updated($post_ID, $post_after, $post_before)
3028 3028
 {
3029
-    $post_type = get_post_type($post_ID);
3029
+	$post_type = get_post_type($post_ID);
3030 3030
 
3031
-    if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3032
-        // send notification to client when post moves from draft to publish
3033
-        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')) {
3034
-            $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3035
-            $post_author_data = get_userdata($post_author_id);
3031
+	if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3032
+		// send notification to client when post moves from draft to publish
3033
+		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')) {
3034
+			$post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3035
+			$post_author_data = get_userdata($post_author_id);
3036 3036
 
3037
-            $to_name = geodir_get_client_name($post_author_id);
3037
+			$to_name = geodir_get_client_name($post_author_id);
3038 3038
 
3039
-            $from_email = geodir_get_site_email_id();
3040
-            $from_name = get_site_emailName();
3041
-            $to_email = $post_author_data->user_email;
3039
+			$from_email = geodir_get_site_email_id();
3040
+			$from_name = get_site_emailName();
3041
+			$to_email = $post_author_data->user_email;
3042 3042
 
3043
-            if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3044
-                $to_email = $post_author_data->user_email;
3045
-            }
3043
+			if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3044
+				$to_email = $post_author_data->user_email;
3045
+			}
3046 3046
 
3047
-            $message_type = 'listing_published';
3047
+			$message_type = 'listing_published';
3048 3048
 
3049
-            if (get_option('geodir_post_published_email_subject') == '') {
3050
-                update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3051
-            }
3049
+			if (get_option('geodir_post_published_email_subject') == '') {
3050
+				update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3051
+			}
3052 3052
 
3053
-            if (get_option('geodir_post_published_email_content') == '') {
3054
-                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'));
3055
-            }
3053
+			if (get_option('geodir_post_published_email_content') == '') {
3054
+				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'));
3055
+			}
3056 3056
 
3057
-            /**
3058
-             * Called before sending the email when listing gets published.
3059
-             *
3060
-             * @since 1.0.0
3061
-             * @package GeoDirectory
3062
-             * @param object $post_after The post object after update.
3063
-             * @param object $post_before The post object before update.
3064
-             */
3065
-            do_action('geodir_before_listing_published_email', $post_after, $post_before);
3066
-            if (is_email($to_email)) {
3067
-                geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3068
-            }
3057
+			/**
3058
+			 * Called before sending the email when listing gets published.
3059
+			 *
3060
+			 * @since 1.0.0
3061
+			 * @package GeoDirectory
3062
+			 * @param object $post_after The post object after update.
3063
+			 * @param object $post_before The post object before update.
3064
+			 */
3065
+			do_action('geodir_before_listing_published_email', $post_after, $post_before);
3066
+			if (is_email($to_email)) {
3067
+				geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3068
+			}
3069 3069
 
3070
-            /**
3071
-             * Called after sending the email when listing gets published.
3072
-             *
3073
-             * @since 1.0.0
3074
-             * @package GeoDirectory
3075
-             * @param object $post_after The post object after update.
3076
-             * @param object $post_before The post object before update.
3077
-             */
3078
-            do_action('geodir_after_listing_published_email', $post_after, $post_before);
3079
-        }
3080
-    }
3070
+			/**
3071
+			 * Called after sending the email when listing gets published.
3072
+			 *
3073
+			 * @since 1.0.0
3074
+			 * @package GeoDirectory
3075
+			 * @param object $post_after The post object after update.
3076
+			 * @param object $post_before The post object before update.
3077
+			 */
3078
+			do_action('geodir_after_listing_published_email', $post_after, $post_before);
3079
+		}
3080
+	}
3081 3081
 }
3082 3082
 
3083 3083
 add_action('wp_head', 'geodir_fb_like_thumbnail');
@@ -3091,14 +3091,14 @@  discard block
 block discarded – undo
3091 3091
  */
3092 3092
 function geodir_fb_like_thumbnail(){
3093 3093
 
3094
-    // return if not a single post
3095
-    if(!is_single()){return;}
3094
+	// return if not a single post
3095
+	if(!is_single()){return;}
3096 3096
 
3097
-    global $post;
3098
-    if(isset($post->featured_image) && $post->featured_image){
3099
-        $upload_dir = wp_upload_dir();
3100
-        $thumb = $upload_dir['baseurl'].$post->featured_image;
3101
-        echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3097
+	global $post;
3098
+	if(isset($post->featured_image) && $post->featured_image){
3099
+		$upload_dir = wp_upload_dir();
3100
+		$thumb = $upload_dir['baseurl'].$post->featured_image;
3101
+		echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3102 3102
 
3103
-    }
3103
+	}
3104 3104
 }
3105 3105
\ No newline at end of file
Please login to merge, or discard this patch.