@@ -15,40 +15,40 @@ discard block |
||
15 | 15 | class geodir_listing_slider_widget extends WP_Widget |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
18 | + /** |
|
19 | 19 | * Register the listing slider widget. |
20 | 20 | * |
21 | 21 | * @since 1.0.0 |
22 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
22 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
23 | 23 | */ |
24 | - public function __construct() { |
|
25 | - $widget_ops = array('classname' => 'geodir_listing_slider_view', 'description' => __('GD > Listing Slider', 'geodirectory')); |
|
26 | - parent::__construct( |
|
27 | - 'listing_slider_view', // Base ID |
|
28 | - __('GD > Listing Slider', 'geodirectory'), // Name |
|
29 | - $widget_ops// Args |
|
30 | - ); |
|
31 | - } |
|
24 | + public function __construct() { |
|
25 | + $widget_ops = array('classname' => 'geodir_listing_slider_view', 'description' => __('GD > Listing Slider', 'geodirectory')); |
|
26 | + parent::__construct( |
|
27 | + 'listing_slider_view', // Base ID |
|
28 | + __('GD > Listing Slider', 'geodirectory'), // Name |
|
29 | + $widget_ops// Args |
|
30 | + ); |
|
31 | + } |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * Front-end display content for listing slider widget. |
35 | 35 | * |
36 | 36 | * @since 1.0.0 |
37 | - * @since 1.5.1 Declare function public. |
|
37 | + * @since 1.5.1 Declare function public. |
|
38 | 38 | * |
39 | 39 | * @param array $args Widget arguments. |
40 | 40 | * @param array $instance Saved values from database. |
41 | 41 | */ |
42 | - public function widget($args, $instance) |
|
43 | - { |
|
44 | - geodir_listing_slider_widget_output($args, $instance); |
|
45 | - } |
|
42 | + public function widget($args, $instance) |
|
43 | + { |
|
44 | + geodir_listing_slider_widget_output($args, $instance); |
|
45 | + } |
|
46 | 46 | |
47 | 47 | /** |
48 | 48 | * Sanitize listing slider widget form values as they are saved. |
49 | 49 | * |
50 | 50 | * @since 1.0.0 |
51 | - * @since 1.5.1 Declare function public. |
|
51 | + * @since 1.5.1 Declare function public. |
|
52 | 52 | * |
53 | 53 | * @param array $new_instance Values just sent to be saved. |
54 | 54 | * @param array $old_instance Previously saved values from database. |
@@ -56,101 +56,101 @@ discard block |
||
56 | 56 | * @return array Updated safe values to be saved. |
57 | 57 | */ |
58 | 58 | public function update($new_instance, $old_instance) |
59 | - { |
|
60 | - //save the widget |
|
61 | - $instance = $old_instance; |
|
62 | - $instance['title'] = strip_tags($new_instance['title']); |
|
63 | - $instance['post_type'] = strip_tags($new_instance['post_type']); |
|
64 | - $instance['category'] = strip_tags($new_instance['category']); |
|
65 | - $instance['post_number'] = strip_tags($new_instance['post_number']); |
|
66 | - $instance['max_show'] = strip_tags($new_instance['max_show']); |
|
67 | - $instance['slide_width'] = strip_tags($new_instance['slide_width']); |
|
68 | - $instance['show_title'] = isset($new_instance['show_title']) ? $new_instance['show_title'] : ''; |
|
69 | - $instance['slideshow'] = isset($new_instance['slideshow']) ? $new_instance['slideshow'] : ''; |
|
70 | - $instance['animationLoop'] = isset($new_instance['animationLoop']) ? $new_instance['animationLoop'] : ''; |
|
71 | - $instance['directionNav'] = isset($new_instance['directionNav']) ? $new_instance['directionNav'] : ''; |
|
72 | - $instance['slideshowSpeed'] = $new_instance['slideshowSpeed']; |
|
73 | - $instance['animationSpeed'] = $new_instance['animationSpeed']; |
|
74 | - $instance['animation'] = $new_instance['animation']; |
|
75 | - $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : ''; |
|
76 | - $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
|
77 | - if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') |
|
78 | - $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
79 | - else |
|
80 | - $instance['add_location_filter'] = '0'; |
|
81 | - |
|
82 | - return $instance; |
|
83 | - } |
|
59 | + { |
|
60 | + //save the widget |
|
61 | + $instance = $old_instance; |
|
62 | + $instance['title'] = strip_tags($new_instance['title']); |
|
63 | + $instance['post_type'] = strip_tags($new_instance['post_type']); |
|
64 | + $instance['category'] = strip_tags($new_instance['category']); |
|
65 | + $instance['post_number'] = strip_tags($new_instance['post_number']); |
|
66 | + $instance['max_show'] = strip_tags($new_instance['max_show']); |
|
67 | + $instance['slide_width'] = strip_tags($new_instance['slide_width']); |
|
68 | + $instance['show_title'] = isset($new_instance['show_title']) ? $new_instance['show_title'] : ''; |
|
69 | + $instance['slideshow'] = isset($new_instance['slideshow']) ? $new_instance['slideshow'] : ''; |
|
70 | + $instance['animationLoop'] = isset($new_instance['animationLoop']) ? $new_instance['animationLoop'] : ''; |
|
71 | + $instance['directionNav'] = isset($new_instance['directionNav']) ? $new_instance['directionNav'] : ''; |
|
72 | + $instance['slideshowSpeed'] = $new_instance['slideshowSpeed']; |
|
73 | + $instance['animationSpeed'] = $new_instance['animationSpeed']; |
|
74 | + $instance['animation'] = $new_instance['animation']; |
|
75 | + $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : ''; |
|
76 | + $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
|
77 | + if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') |
|
78 | + $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
79 | + else |
|
80 | + $instance['add_location_filter'] = '0'; |
|
81 | + |
|
82 | + return $instance; |
|
83 | + } |
|
84 | 84 | |
85 | 85 | /** |
86 | 86 | * Back-end listing slider widget settings form. |
87 | 87 | * |
88 | 88 | * @since 1.0.0 |
89 | - * @since 1.5.1 Declare function public. |
|
89 | + * @since 1.5.1 Declare function public. |
|
90 | 90 | * |
91 | 91 | * @param array $instance Previously saved values from database. |
92 | 92 | */ |
93 | 93 | public function form($instance) |
94 | - { |
|
94 | + { |
|
95 | 95 | |
96 | - //widgetform in backend |
|
97 | - $instance = wp_parse_args((array)$instance, |
|
98 | - array('title' => '', |
|
99 | - 'post_type' => '', |
|
100 | - 'category' => '', |
|
101 | - 'post_number' => '5', |
|
102 | - 'max_show' => '1', |
|
103 | - 'slide_width' => '', |
|
104 | - 'show_title' => '', |
|
105 | - 'slideshow' => '', |
|
106 | - 'animationLoop' => '', |
|
107 | - 'directionNav' => '', |
|
108 | - 'slideshowSpeed' => 5000, |
|
109 | - 'animationSpeed' => 600, |
|
110 | - 'animation' => '', |
|
111 | - 'list_sort' => 'latest', |
|
112 | - 'show_featured_only' => '', |
|
113 | - 'add_location_filter' => '0', |
|
114 | - ) |
|
115 | - ); |
|
96 | + //widgetform in backend |
|
97 | + $instance = wp_parse_args((array)$instance, |
|
98 | + array('title' => '', |
|
99 | + 'post_type' => '', |
|
100 | + 'category' => '', |
|
101 | + 'post_number' => '5', |
|
102 | + 'max_show' => '1', |
|
103 | + 'slide_width' => '', |
|
104 | + 'show_title' => '', |
|
105 | + 'slideshow' => '', |
|
106 | + 'animationLoop' => '', |
|
107 | + 'directionNav' => '', |
|
108 | + 'slideshowSpeed' => 5000, |
|
109 | + 'animationSpeed' => 600, |
|
110 | + 'animation' => '', |
|
111 | + 'list_sort' => 'latest', |
|
112 | + 'show_featured_only' => '', |
|
113 | + 'add_location_filter' => '0', |
|
114 | + ) |
|
115 | + ); |
|
116 | 116 | |
117 | - $title = strip_tags($instance['title']); |
|
117 | + $title = strip_tags($instance['title']); |
|
118 | 118 | |
119 | - $post_type = strip_tags($instance['post_type']); |
|
119 | + $post_type = strip_tags($instance['post_type']); |
|
120 | 120 | |
121 | - $category = strip_tags($instance['category']); |
|
121 | + $category = strip_tags($instance['category']); |
|
122 | 122 | |
123 | - $post_number = strip_tags($instance['post_number']); |
|
123 | + $post_number = strip_tags($instance['post_number']); |
|
124 | 124 | |
125 | - $max_show = strip_tags($instance['max_show']); |
|
125 | + $max_show = strip_tags($instance['max_show']); |
|
126 | 126 | |
127 | - $slide_width = strip_tags($instance['slide_width']); |
|
127 | + $slide_width = strip_tags($instance['slide_width']); |
|
128 | 128 | |
129 | - $show_title = $instance['show_title']; |
|
129 | + $show_title = $instance['show_title']; |
|
130 | 130 | |
131 | - $slideshow = $instance['slideshow']; |
|
131 | + $slideshow = $instance['slideshow']; |
|
132 | 132 | |
133 | - $animationLoop = $instance['animationLoop']; |
|
133 | + $animationLoop = $instance['animationLoop']; |
|
134 | 134 | |
135 | - $directionNav = $instance['directionNav']; |
|
135 | + $directionNav = $instance['directionNav']; |
|
136 | 136 | |
137 | - $slideshowSpeed = $instance['slideshowSpeed']; |
|
137 | + $slideshowSpeed = $instance['slideshowSpeed']; |
|
138 | 138 | |
139 | - $animationSpeed = $instance['animationSpeed']; |
|
139 | + $animationSpeed = $instance['animationSpeed']; |
|
140 | 140 | |
141 | - $add_location_filter = strip_tags($instance['add_location_filter']); |
|
141 | + $add_location_filter = strip_tags($instance['add_location_filter']); |
|
142 | 142 | |
143 | - $animation = $instance['animation']; |
|
144 | - $list_sort = $instance['list_sort']; |
|
145 | - $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false; |
|
143 | + $animation = $instance['animation']; |
|
144 | + $list_sort = $instance['list_sort']; |
|
145 | + $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false; |
|
146 | 146 | |
147 | - $sort_fields = array(); |
|
148 | - $sort_fields[] = array('field' => 'latest', 'label' => __('Latest', 'geodirectory')); |
|
149 | - $sort_fields[] = array('field' => 'featured', 'label' => __('Featured', 'geodirectory')); |
|
150 | - $sort_fields[] = array('field' => 'high_review', 'label' => __('Review', 'geodirectory')); |
|
151 | - $sort_fields[] = array('field' => 'high_rating', 'label' => __('Rating', 'geodirectory')); |
|
152 | - $sort_fields[] = array('field' => 'random', 'label' => __('Random', 'geodirectory')); |
|
153 | - ?> |
|
147 | + $sort_fields = array(); |
|
148 | + $sort_fields[] = array('field' => 'latest', 'label' => __('Latest', 'geodirectory')); |
|
149 | + $sort_fields[] = array('field' => 'featured', 'label' => __('Featured', 'geodirectory')); |
|
150 | + $sort_fields[] = array('field' => 'high_review', 'label' => __('Review', 'geodirectory')); |
|
151 | + $sort_fields[] = array('field' => 'high_rating', 'label' => __('Rating', 'geodirectory')); |
|
152 | + $sort_fields[] = array('field' => 'random', 'label' => __('Random', 'geodirectory')); |
|
153 | + ?> |
|
154 | 154 | |
155 | 155 | <p> |
156 | 156 | <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?> |
@@ -174,9 +174,9 @@ discard block |
||
174 | 174 | <?php foreach ($postypes as $postypes_obj) { ?> |
175 | 175 | |
176 | 176 | <option <?php if ($post_type == $postypes_obj) { |
177 | - echo 'selected="selected"'; |
|
178 | - } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj); |
|
179 | - echo ucfirst($extvalue[1]); ?></option> |
|
177 | + echo 'selected="selected"'; |
|
178 | + } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj); |
|
179 | + echo ucfirst($extvalue[1]); ?></option> |
|
180 | 180 | |
181 | 181 | <?php } ?> |
182 | 182 | |
@@ -190,20 +190,20 @@ discard block |
||
190 | 190 | for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?> |
191 | 191 | |
192 | 192 | <?php |
193 | - $category_taxonomy = geodir_get_taxonomies('gd_place'); |
|
194 | - $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC')); |
|
195 | - ?> |
|
193 | + $category_taxonomy = geodir_get_taxonomies('gd_place'); |
|
194 | + $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC')); |
|
195 | + ?> |
|
196 | 196 | |
197 | 197 | <select class="widefat" id="<?php echo $this->get_field_id('category'); ?>" |
198 | 198 | name="<?php echo $this->get_field_name('category'); ?>"> |
199 | 199 | <option <?php if ($category == '0') { |
200 | - echo 'selected="selected"'; |
|
201 | - } ?> value="0"><?php _e('All', 'geodirectory'); ?></option> |
|
200 | + echo 'selected="selected"'; |
|
201 | + } ?> value="0"><?php _e('All', 'geodirectory'); ?></option> |
|
202 | 202 | <?php foreach ($categories as $category_obj) { ?> |
203 | 203 | |
204 | 204 | <option <?php if ($category == $category_obj->term_id) { |
205 | - echo 'selected="selected"'; |
|
206 | - } ?> |
|
205 | + echo 'selected="selected"'; |
|
206 | + } ?> |
|
207 | 207 | value="<?php echo $category_obj->term_id; ?>"><?php echo ucfirst($category_obj->name); ?></option> |
208 | 208 | |
209 | 209 | <?php } ?> |
@@ -256,12 +256,12 @@ discard block |
||
256 | 256 | <select class="widefat" id="<?php echo $this->get_field_id('animation'); ?>" |
257 | 257 | name="<?php echo $this->get_field_name('animation'); ?>"> |
258 | 258 | <option <?php if ($animation == 'slide') { |
259 | - echo 'selected="selected"'; |
|
260 | - } ?> value="slide">Slide |
|
259 | + echo 'selected="selected"'; |
|
260 | + } ?> value="slide">Slide |
|
261 | 261 | </option> |
262 | 262 | <option <?php if ($animation == 'fade') { |
263 | - echo 'selected="selected"'; |
|
264 | - } ?> value="fade">Fade |
|
263 | + echo 'selected="selected"'; |
|
264 | + } ?> value="fade">Fade |
|
265 | 265 | </option> |
266 | 266 | </select> |
267 | 267 | </label> |
@@ -292,8 +292,8 @@ discard block |
||
292 | 292 | for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory');?> |
293 | 293 | |
294 | 294 | <input type="checkbox" <?php if ($slideshow) { |
295 | - echo 'checked="checked"'; |
|
296 | - } ?> id="<?php echo $this->get_field_id('slideshow'); ?>" value="1" |
|
295 | + echo 'checked="checked"'; |
|
296 | + } ?> id="<?php echo $this->get_field_id('slideshow'); ?>" value="1" |
|
297 | 297 | name="<?php echo $this->get_field_name('slideshow'); ?>"/> |
298 | 298 | |
299 | 299 | </label> |
@@ -304,8 +304,8 @@ discard block |
||
304 | 304 | for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory');?> |
305 | 305 | |
306 | 306 | <input type="checkbox" <?php if ($animationLoop) { |
307 | - echo 'checked="checked"'; |
|
308 | - } ?> id="<?php echo $this->get_field_id('animationLoop'); ?>" value="1" |
|
307 | + echo 'checked="checked"'; |
|
308 | + } ?> id="<?php echo $this->get_field_id('animationLoop'); ?>" value="1" |
|
309 | 309 | name="<?php echo $this->get_field_name('animationLoop'); ?>"/> |
310 | 310 | |
311 | 311 | </label> |
@@ -316,8 +316,8 @@ discard block |
||
316 | 316 | for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory');?> |
317 | 317 | |
318 | 318 | <input type="checkbox" <?php if ($directionNav) { |
319 | - echo 'checked="checked"'; |
|
320 | - } ?> id="<?php echo $this->get_field_id('directionNav'); ?>" value="1" |
|
319 | + echo 'checked="checked"'; |
|
320 | + } ?> id="<?php echo $this->get_field_id('directionNav'); ?>" value="1" |
|
321 | 321 | name="<?php echo $this->get_field_name('directionNav'); ?>"/> |
322 | 322 | |
323 | 323 | </label> |
@@ -329,8 +329,8 @@ discard block |
||
329 | 329 | for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory');?> |
330 | 330 | |
331 | 331 | <input type="checkbox" <?php if ($show_title) { |
332 | - echo 'checked="checked"'; |
|
333 | - } ?> id="<?php echo $this->get_field_id('show_title'); ?>" value="1" |
|
332 | + echo 'checked="checked"'; |
|
333 | + } ?> id="<?php echo $this->get_field_id('show_title'); ?>" value="1" |
|
334 | 334 | name="<?php echo $this->get_field_name('show_title'); ?>"/> |
335 | 335 | |
336 | 336 | </label> |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | |
379 | 379 | |
380 | 380 | <?php |
381 | - } |
|
381 | + } |
|
382 | 382 | } // class geodir_listing_slider_widget |
383 | 383 | |
384 | 384 | register_widget('geodir_listing_slider_widget'); |
385 | 385 | \ No newline at end of file |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | { |
95 | 95 | |
96 | 96 | //widgetform in backend |
97 | - $instance = wp_parse_args((array)$instance, |
|
97 | + $instance = wp_parse_args((array) $instance, |
|
98 | 98 | array('title' => '', |
99 | 99 | 'post_type' => '', |
100 | 100 | 'category' => '', |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | ?> |
154 | 154 | |
155 | 155 | <p> |
156 | - <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?> |
|
156 | + <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?> |
|
157 | 157 | |
158 | 158 | <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" |
159 | 159 | name="<?php echo $this->get_field_name('title'); ?>" type="text" |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | |
164 | 164 | <p> |
165 | 165 | <label |
166 | - for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory');?> |
|
166 | + for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory'); ?> |
|
167 | 167 | |
168 | 168 | <?php $postypes = geodir_get_posttypes(); ?> |
169 | 169 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | |
188 | 188 | <p> |
189 | 189 | <label |
190 | - for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?> |
|
190 | + for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory'); ?> |
|
191 | 191 | |
192 | 192 | <?php |
193 | 193 | $category_taxonomy = geodir_get_taxonomies('gd_place'); |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | </p> |
225 | 225 | <p> |
226 | 226 | <label |
227 | - for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts(total):', 'geodirectory');?> |
|
227 | + for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts(total):', 'geodirectory'); ?> |
|
228 | 228 | <input class="widefat" id="<?php echo $this->get_field_id('post_number'); ?>" |
229 | 229 | name="<?php echo $this->get_field_name('post_number'); ?>" type="text" |
230 | 230 | value="<?php echo esc_attr($post_number); ?>"/> |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | |
234 | 234 | <p> |
235 | 235 | <label |
236 | - for="<?php echo $this->get_field_id('max_show'); ?>"><?php _e('Number of posts(shown at one time, requires a slide width to be set):', 'geodirectory');?> |
|
236 | + for="<?php echo $this->get_field_id('max_show'); ?>"><?php _e('Number of posts(shown at one time, requires a slide width to be set):', 'geodirectory'); ?> |
|
237 | 237 | <input class="widefat" id="<?php echo $this->get_field_id('max_show'); ?>" |
238 | 238 | name="<?php echo $this->get_field_name('max_show'); ?>" type="text" |
239 | 239 | value="<?php echo esc_attr($max_show); ?>"/> |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | |
243 | 243 | <p> |
244 | 244 | <label |
245 | - for="<?php echo $this->get_field_id('slide_width'); ?>"><?php _e('Slide width(leave blank unless showing more than one slide at a time, ex: 210):', 'geodirectory');?> |
|
245 | + for="<?php echo $this->get_field_id('slide_width'); ?>"><?php _e('Slide width(leave blank unless showing more than one slide at a time, ex: 210):', 'geodirectory'); ?> |
|
246 | 246 | <input class="widefat" id="<?php echo $this->get_field_id('slide_width'); ?>" |
247 | 247 | name="<?php echo $this->get_field_name('slide_width'); ?>" type="text" |
248 | 248 | value="<?php echo esc_attr($slide_width); ?>"/> |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | |
252 | 252 | <p> |
253 | 253 | <label |
254 | - for="<?php echo $this->get_field_id('animation'); ?>"><?php _e('Animation:', 'geodirectory');?> |
|
254 | + for="<?php echo $this->get_field_id('animation'); ?>"><?php _e('Animation:', 'geodirectory'); ?> |
|
255 | 255 | |
256 | 256 | <select class="widefat" id="<?php echo $this->get_field_id('animation'); ?>" |
257 | 257 | name="<?php echo $this->get_field_name('animation'); ?>"> |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | |
270 | 270 | <p> |
271 | 271 | <label |
272 | - for="<?php echo $this->get_field_id('slideshowSpeed'); ?>"><?php _e('Slide Show Speed: (milliseconds)', 'geodirectory');?> |
|
272 | + for="<?php echo $this->get_field_id('slideshowSpeed'); ?>"><?php _e('Slide Show Speed: (milliseconds)', 'geodirectory'); ?> |
|
273 | 273 | |
274 | 274 | <input class="widefat" id="<?php echo $this->get_field_id('slideshowSpeed'); ?>" |
275 | 275 | name="<?php echo $this->get_field_name('slideshowSpeed'); ?>" type="text" |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | |
280 | 280 | <p> |
281 | 281 | <label |
282 | - for="<?php echo $this->get_field_id('animationSpeed'); ?>"><?php _e('Animation Speed: (milliseconds)', 'geodirectory');?> |
|
282 | + for="<?php echo $this->get_field_id('animationSpeed'); ?>"><?php _e('Animation Speed: (milliseconds)', 'geodirectory'); ?> |
|
283 | 283 | |
284 | 284 | <input class="widefat" id="<?php echo $this->get_field_id('animationSpeed'); ?>" |
285 | 285 | name="<?php echo $this->get_field_name('animationSpeed'); ?>" type="text" |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | |
290 | 290 | <p> |
291 | 291 | <label |
292 | - for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory');?> |
|
292 | + for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory'); ?> |
|
293 | 293 | |
294 | 294 | <input type="checkbox" <?php if ($slideshow) { |
295 | 295 | echo 'checked="checked"'; |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | |
302 | 302 | <p> |
303 | 303 | <label |
304 | - for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory');?> |
|
304 | + for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory'); ?> |
|
305 | 305 | |
306 | 306 | <input type="checkbox" <?php if ($animationLoop) { |
307 | 307 | echo 'checked="checked"'; |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | |
314 | 314 | <p> |
315 | 315 | <label |
316 | - for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory');?> |
|
316 | + for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory'); ?> |
|
317 | 317 | |
318 | 318 | <input type="checkbox" <?php if ($directionNav) { |
319 | 319 | echo 'checked="checked"'; |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | |
327 | 327 | <p> |
328 | 328 | <label |
329 | - for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory');?> |
|
329 | + for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory'); ?> |
|
330 | 330 | |
331 | 331 | <input type="checkbox" <?php if ($show_title) { |
332 | 332 | echo 'checked="checked"'; |
@@ -345,9 +345,9 @@ discard block |
||
345 | 345 | </p> |
346 | 346 | <p> |
347 | 347 | <label for="<?php echo $this->get_field_id('add_location_filter'); ?>"> |
348 | - <?php _e('Enable Location Filter:', 'geodirectory');?> |
|
348 | + <?php _e('Enable Location Filter:', 'geodirectory'); ?> |
|
349 | 349 | <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>" |
350 | - name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?> |
|
350 | + name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"'; ?> |
|
351 | 351 | value="1"/> |
352 | 352 | </label> |
353 | 353 | </p> |
@@ -368,10 +368,10 @@ discard block |
||
368 | 368 | |
369 | 369 | } |
370 | 370 | |
371 | - <?php if(is_active_widget( false, false, $this->id_base, true )){ ?> |
|
371 | + <?php if (is_active_widget(false, false, $this->id_base, true)) { ?> |
|
372 | 372 | var post_type = jQuery('#<?php echo $this->get_field_id('post_type'); ?>').val(); |
373 | 373 | |
374 | - geodir_change_category_list(post_type, '<?php echo $category;?>'); |
|
374 | + geodir_change_category_list(post_type, '<?php echo $category; ?>'); |
|
375 | 375 | <?php } ?> |
376 | 376 | |
377 | 377 | </script> |
@@ -74,10 +74,11 @@ discard block |
||
74 | 74 | $instance['animation'] = $new_instance['animation']; |
75 | 75 | $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : ''; |
76 | 76 | $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
77 | - if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') |
|
78 | - $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
79 | - else |
|
80 | - $instance['add_location_filter'] = '0'; |
|
77 | + if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') { |
|
78 | + $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
79 | + } else { |
|
80 | + $instance['add_location_filter'] = '0'; |
|
81 | + } |
|
81 | 82 | |
82 | 83 | return $instance; |
83 | 84 | } |
@@ -339,7 +340,10 @@ discard block |
||
339 | 340 | <label |
340 | 341 | for="<?php echo $this->get_field_id('show_featured_only'); ?>"><?php _e('Show only featured listings:', 'geodirectory'); ?> |
341 | 342 | <input type="checkbox" id="<?php echo $this->get_field_id('show_featured_only'); ?>" |
342 | - name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"'; ?> |
|
343 | + name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) { |
|
344 | + echo 'checked="checked"'; |
|
345 | +} |
|
346 | +?> |
|
343 | 347 | value="1"/> |
344 | 348 | </label> |
345 | 349 | </p> |
@@ -347,7 +351,10 @@ discard block |
||
347 | 351 | <label for="<?php echo $this->get_field_id('add_location_filter'); ?>"> |
348 | 352 | <?php _e('Enable Location Filter:', 'geodirectory');?> |
349 | 353 | <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>" |
350 | - name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?> |
|
354 | + name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) { |
|
355 | + echo 'checked="checked"'; |
|
356 | +} |
|
357 | +?> |
|
351 | 358 | value="1"/> |
352 | 359 | </label> |
353 | 360 | </p> |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * Get All Plugin functions from WordPress |
12 | 12 | */ |
13 | -include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
13 | +include_once(ABSPATH.'wp-admin/includes/plugin.php'); |
|
14 | 14 | |
15 | 15 | /*-----------------------------------------------------------------------------------*/ |
16 | 16 | /* Helper functions */ |
@@ -27,10 +27,10 @@ discard block |
||
27 | 27 | */ |
28 | 28 | function geodir_plugin_url() { |
29 | 29 | |
30 | - if ( is_ssl() ) : |
|
31 | - return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
|
30 | + if (is_ssl()) : |
|
31 | + return str_replace('http://', 'https://', WP_PLUGIN_URL)."/".plugin_basename(dirname(dirname(__FILE__))); |
|
32 | 32 | else : |
33 | - return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
|
33 | + return WP_PLUGIN_URL."/".plugin_basename(dirname(dirname(__FILE__))); |
|
34 | 34 | endif; |
35 | 35 | } |
36 | 36 | |
@@ -45,10 +45,10 @@ discard block |
||
45 | 45 | * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory |
46 | 46 | */ |
47 | 47 | function geodir_plugin_path() { |
48 | - if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) { |
|
49 | - return dirname( dirname( __FILE__ ) ); |
|
48 | + if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) { |
|
49 | + return dirname(dirname(__FILE__)); |
|
50 | 50 | } else { |
51 | - return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
|
51 | + return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__))); |
|
52 | 52 | } |
53 | 53 | } |
54 | 54 | |
@@ -63,10 +63,10 @@ discard block |
||
63 | 63 | * @return bool true or false. |
64 | 64 | * @todo check if this is faster than normal WP check and remove if not. |
65 | 65 | */ |
66 | -function geodir_is_plugin_active( $plugin ) { |
|
67 | - $active_plugins = get_option( 'active_plugins' ); |
|
68 | - foreach ( $active_plugins as $key => $active_plugin ) { |
|
69 | - if ( strstr( $active_plugin, $plugin ) ) { |
|
66 | +function geodir_is_plugin_active($plugin) { |
|
67 | + $active_plugins = get_option('active_plugins'); |
|
68 | + foreach ($active_plugins as $key => $active_plugin) { |
|
69 | + if (strstr($active_plugin, $plugin)) { |
|
70 | 70 | return true; |
71 | 71 | } |
72 | 72 | } |
@@ -88,8 +88,8 @@ discard block |
||
88 | 88 | * |
89 | 89 | * @return bool|int|string the formatted date. |
90 | 90 | */ |
91 | -function geodir_get_formated_date( $date ) { |
|
92 | - return mysql2date( get_option( 'date_format' ), $date ); |
|
91 | +function geodir_get_formated_date($date) { |
|
92 | + return mysql2date(get_option('date_format'), $date); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | * |
106 | 106 | * @return bool|int|string the formatted time. |
107 | 107 | */ |
108 | -function geodir_get_formated_time( $time ) { |
|
109 | - return mysql2date( get_option( 'time_format' ), $time, $translate = true ); |
|
108 | +function geodir_get_formated_time($time) { |
|
109 | + return mysql2date(get_option('time_format'), $time, $translate = true); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | |
@@ -124,35 +124,35 @@ discard block |
||
124 | 124 | * |
125 | 125 | * @return string Formatted link. |
126 | 126 | */ |
127 | -function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) { |
|
128 | - if ( $use_existing_arguments ) { |
|
127 | +function geodir_getlink($url, $params = array(), $use_existing_arguments = false) { |
|
128 | + if ($use_existing_arguments) { |
|
129 | 129 | $params = $params + $_GET; |
130 | 130 | } |
131 | - if ( ! $params ) { |
|
131 | + if (!$params) { |
|
132 | 132 | return $url; |
133 | 133 | } |
134 | 134 | $link = $url; |
135 | - if ( strpos( $link, '?' ) === false ) { |
|
135 | + if (strpos($link, '?') === false) { |
|
136 | 136 | $link .= '?'; |
137 | 137 | } //If there is no '?' add one at the end |
138 | - elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) { |
|
138 | + elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) { |
|
139 | 139 | $link .= '&'; |
140 | 140 | } //If there is no '&' at the END, add one. |
141 | - elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) { |
|
141 | + elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) { |
|
142 | 142 | $link .= '&'; |
143 | 143 | } //If there is no '&' at the END, add one. |
144 | 144 | |
145 | 145 | $params_arr = array(); |
146 | - foreach ( $params as $key => $value ) { |
|
147 | - if ( gettype( $value ) == 'array' ) { //Handle array data properly |
|
148 | - foreach ( $value as $val ) { |
|
149 | - $params_arr[] = $key . '[]=' . urlencode( $val ); |
|
146 | + foreach ($params as $key => $value) { |
|
147 | + if (gettype($value) == 'array') { //Handle array data properly |
|
148 | + foreach ($value as $val) { |
|
149 | + $params_arr[] = $key.'[]='.urlencode($val); |
|
150 | 150 | } |
151 | 151 | } else { |
152 | - $params_arr[] = $key . '=' . urlencode( $value ); |
|
152 | + $params_arr[] = $key.'='.urlencode($value); |
|
153 | 153 | } |
154 | 154 | } |
155 | - $link .= implode( '&', $params_arr ); |
|
155 | + $link .= implode('&', $params_arr); |
|
156 | 156 | |
157 | 157 | return $link; |
158 | 158 | } |
@@ -169,18 +169,18 @@ discard block |
||
169 | 169 | * |
170 | 170 | * @return string Listing page url if valid. Otherwise home url will be returned. |
171 | 171 | */ |
172 | -function geodir_get_addlisting_link( $post_type = '' ) { |
|
172 | +function geodir_get_addlisting_link($post_type = '') { |
|
173 | 173 | global $wpdb; |
174 | 174 | |
175 | 175 | //$check_pkg = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'"); |
176 | 176 | $check_pkg = 1; |
177 | - if ( post_type_exists( $post_type ) && $check_pkg ) { |
|
177 | + if (post_type_exists($post_type) && $check_pkg) { |
|
178 | 178 | |
179 | - $add_listing_link = get_page_link( geodir_add_listing_page_id() ); |
|
179 | + $add_listing_link = get_page_link(geodir_add_listing_page_id()); |
|
180 | 180 | |
181 | - return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) ); |
|
181 | + return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link)); |
|
182 | 182 | } else { |
183 | - return get_bloginfo( 'url' ); |
|
183 | + return get_bloginfo('url'); |
|
184 | 184 | } |
185 | 185 | } |
186 | 186 | |
@@ -194,11 +194,11 @@ discard block |
||
194 | 194 | */ |
195 | 195 | function geodir_curPageURL() { |
196 | 196 | $pageURL = 'http'; |
197 | - if ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ) { |
|
197 | + if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") { |
|
198 | 198 | $pageURL .= "s"; |
199 | 199 | } |
200 | 200 | $pageURL .= "://"; |
201 | - $pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"]; |
|
201 | + $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; |
|
202 | 202 | |
203 | 203 | /** |
204 | 204 | * Filter the current page URL returned by function geodir_curPageURL(). |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | * |
208 | 208 | * @param string $pageURL The URL of the current page. |
209 | 209 | */ |
210 | - return apply_filters( 'geodir_curPageURL', $pageURL ); |
|
210 | + return apply_filters('geodir_curPageURL', $pageURL); |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | |
@@ -223,12 +223,12 @@ discard block |
||
223 | 223 | * |
224 | 224 | * @return string Cleaned variable. |
225 | 225 | */ |
226 | -function geodir_clean( $string ) { |
|
226 | +function geodir_clean($string) { |
|
227 | 227 | |
228 | - $string = trim( strip_tags( stripslashes( $string ) ) ); |
|
229 | - $string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens. |
|
230 | - $string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars. |
|
231 | - $string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one. |
|
228 | + $string = trim(strip_tags(stripslashes($string))); |
|
229 | + $string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens. |
|
230 | + $string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars. |
|
231 | + $string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one. |
|
232 | 232 | |
233 | 233 | return $string; |
234 | 234 | } |
@@ -242,13 +242,13 @@ discard block |
||
242 | 242 | */ |
243 | 243 | function geodir_get_weekday() { |
244 | 244 | return array( |
245 | - __( 'Sunday', 'geodirectory' ), |
|
246 | - __( 'Monday', 'geodirectory' ), |
|
247 | - __( 'Tuesday', 'geodirectory' ), |
|
248 | - __( 'Wednesday', 'geodirectory' ), |
|
249 | - __( 'Thursday', 'geodirectory' ), |
|
250 | - __( 'Friday', 'geodirectory' ), |
|
251 | - __( 'Saturday', 'geodirectory' ) |
|
245 | + __('Sunday', 'geodirectory'), |
|
246 | + __('Monday', 'geodirectory'), |
|
247 | + __('Tuesday', 'geodirectory'), |
|
248 | + __('Wednesday', 'geodirectory'), |
|
249 | + __('Thursday', 'geodirectory'), |
|
250 | + __('Friday', 'geodirectory'), |
|
251 | + __('Saturday', 'geodirectory') |
|
252 | 252 | ); |
253 | 253 | } |
254 | 254 | |
@@ -261,11 +261,11 @@ discard block |
||
261 | 261 | */ |
262 | 262 | function geodir_get_weeks() { |
263 | 263 | return array( |
264 | - __( 'First', 'geodirectory' ), |
|
265 | - __( 'Second', 'geodirectory' ), |
|
266 | - __( 'Third', 'geodirectory' ), |
|
267 | - __( 'Fourth', 'geodirectory' ), |
|
268 | - __( 'Last', 'geodirectory' ) |
|
264 | + __('First', 'geodirectory'), |
|
265 | + __('Second', 'geodirectory'), |
|
266 | + __('Third', 'geodirectory'), |
|
267 | + __('Fourth', 'geodirectory'), |
|
268 | + __('Last', 'geodirectory') |
|
269 | 269 | ); |
270 | 270 | } |
271 | 271 | |
@@ -284,112 +284,112 @@ discard block |
||
284 | 284 | * |
285 | 285 | * @return bool If valid returns true. Otherwise false. |
286 | 286 | */ |
287 | -function geodir_is_page( $gdpage = '' ) { |
|
287 | +function geodir_is_page($gdpage = '') { |
|
288 | 288 | |
289 | 289 | global $wp_query, $post, $wp; |
290 | 290 | //if(!is_admin()): |
291 | 291 | |
292 | - switch ( $gdpage ): |
|
292 | + switch ($gdpage): |
|
293 | 293 | case 'add-listing': |
294 | 294 | |
295 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) { |
|
295 | + if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) { |
|
296 | 296 | return true; |
297 | - } elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) { |
|
297 | + } elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) { |
|
298 | 298 | return true; |
299 | 299 | } |
300 | 300 | |
301 | 301 | break; |
302 | 302 | case 'preview': |
303 | - if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] ) |
|
304 | - && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() ) |
|
303 | + if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type']) |
|
304 | + && in_array($_REQUEST['listing_type'], geodir_get_posttypes()) |
|
305 | 305 | ) { |
306 | 306 | return true; |
307 | 307 | } |
308 | 308 | break; |
309 | 309 | case 'listing-success': |
310 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) { |
|
310 | + if (is_page() && get_query_var('page_id') == geodir_success_page_id()) { |
|
311 | 311 | return true; |
312 | 312 | } |
313 | 313 | break; |
314 | 314 | case 'detail': |
315 | - $post_type = get_query_var( 'post_type' ); |
|
316 | - if ( is_array( $post_type ) ) { |
|
317 | - $post_type = reset( $post_type ); |
|
315 | + $post_type = get_query_var('post_type'); |
|
316 | + if (is_array($post_type)) { |
|
317 | + $post_type = reset($post_type); |
|
318 | 318 | } |
319 | - if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) { |
|
319 | + if (is_single() && in_array($post_type, geodir_get_posttypes())) { |
|
320 | 320 | return true; |
321 | 321 | } |
322 | 322 | break; |
323 | 323 | case 'pt': |
324 | - $post_type = get_query_var( 'post_type' ); |
|
325 | - if ( is_array( $post_type ) ) { |
|
326 | - $post_type = reset( $post_type ); |
|
324 | + $post_type = get_query_var('post_type'); |
|
325 | + if (is_array($post_type)) { |
|
326 | + $post_type = reset($post_type); |
|
327 | 327 | } |
328 | - if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) { |
|
328 | + if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) { |
|
329 | 329 | return true; |
330 | 330 | } |
331 | 331 | |
332 | 332 | break; |
333 | 333 | case 'listing': |
334 | - if ( is_tax() && geodir_get_taxonomy_posttype() ) { |
|
334 | + if (is_tax() && geodir_get_taxonomy_posttype()) { |
|
335 | 335 | global $current_term, $taxonomy, $term; |
336 | 336 | |
337 | 337 | return true; |
338 | 338 | } |
339 | - $post_type = get_query_var( 'post_type' ); |
|
340 | - if ( is_array( $post_type ) ) { |
|
341 | - $post_type = reset( $post_type ); |
|
339 | + $post_type = get_query_var('post_type'); |
|
340 | + if (is_array($post_type)) { |
|
341 | + $post_type = reset($post_type); |
|
342 | 342 | } |
343 | - if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) { |
|
343 | + if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) { |
|
344 | 344 | return true; |
345 | 345 | } |
346 | 346 | |
347 | 347 | break; |
348 | 348 | case 'home': |
349 | 349 | |
350 | - if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) { |
|
350 | + if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) { |
|
351 | 351 | return true; |
352 | 352 | } |
353 | 353 | |
354 | 354 | break; |
355 | 355 | case 'location': |
356 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) { |
|
356 | + if (is_page() && get_query_var('page_id') == geodir_location_page_id()) { |
|
357 | 357 | return true; |
358 | 358 | } |
359 | 359 | break; |
360 | 360 | case 'author': |
361 | - if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) { |
|
361 | + if (is_author() && isset($_REQUEST['geodir_dashbord'])) { |
|
362 | 362 | return true; |
363 | 363 | } |
364 | 364 | |
365 | - if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) { |
|
366 | - if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) { |
|
365 | + if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) { |
|
366 | + if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) { |
|
367 | 367 | return true; |
368 | 368 | } |
369 | 369 | } |
370 | 370 | break; |
371 | 371 | case 'search': |
372 | - if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) { |
|
372 | + if (is_search() && isset($_REQUEST['geodir_search'])) { |
|
373 | 373 | return true; |
374 | 374 | } |
375 | 375 | break; |
376 | 376 | case 'info': |
377 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) { |
|
377 | + if (is_page() && get_query_var('page_id') == geodir_info_page_id()) { |
|
378 | 378 | return true; |
379 | 379 | } |
380 | 380 | break; |
381 | 381 | case 'login': |
382 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) { |
|
382 | + if (is_page() && get_query_var('page_id') == geodir_login_page_id()) { |
|
383 | 383 | return true; |
384 | 384 | } |
385 | 385 | break; |
386 | 386 | case 'checkout': |
387 | - if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) { |
|
387 | + if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) { |
|
388 | 388 | return true; |
389 | 389 | } |
390 | 390 | break; |
391 | 391 | case 'invoices': |
392 | - if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) { |
|
392 | + if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) { |
|
393 | 393 | return true; |
394 | 394 | } |
395 | 395 | break; |
@@ -414,28 +414,28 @@ discard block |
||
414 | 414 | * |
415 | 415 | * @param object $wp WordPress object. |
416 | 416 | */ |
417 | -function geodir_set_is_geodir_page( $wp ) { |
|
418 | - if ( ! is_admin() ) { |
|
417 | +function geodir_set_is_geodir_page($wp) { |
|
418 | + if (!is_admin()) { |
|
419 | 419 | //$wp->query_vars['gd_is_geodir_page'] = false; |
420 | 420 | //print_r() |
421 | - if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array( |
|
421 | + if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array( |
|
422 | 422 | 'preview', |
423 | 423 | 'page', |
424 | 424 | 'paged', |
425 | 425 | 'cpage' |
426 | - ) ) |
|
426 | + )) |
|
427 | 427 | ) { |
428 | - if ( get_option( 'geodir_set_as_home' ) ) { |
|
428 | + if (get_option('geodir_set_as_home')) { |
|
429 | 429 | $wp->query_vars['gd_is_geodir_page'] = true; |
430 | 430 | } |
431 | - if ( geodir_is_page( 'home' ) ) { |
|
431 | + if (geodir_is_page('home')) { |
|
432 | 432 | $wp->query_vars['gd_is_geodir_page'] = true; |
433 | 433 | } |
434 | 434 | |
435 | 435 | |
436 | 436 | } |
437 | 437 | |
438 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) { |
|
438 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) { |
|
439 | 439 | if ( |
440 | 440 | $wp->query_vars['page_id'] == geodir_add_listing_page_id() |
441 | 441 | || $wp->query_vars['page_id'] == geodir_preview_page_id() |
@@ -444,26 +444,26 @@ discard block |
||
444 | 444 | || $wp->query_vars['page_id'] == geodir_home_page_id() |
445 | 445 | || $wp->query_vars['page_id'] == geodir_info_page_id() |
446 | 446 | || $wp->query_vars['page_id'] == geodir_login_page_id() |
447 | - || ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() ) |
|
448 | - || ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() ) |
|
447 | + || (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id()) |
|
448 | + || (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id()) |
|
449 | 449 | ) { |
450 | 450 | $wp->query_vars['gd_is_geodir_page'] = true; |
451 | 451 | } |
452 | 452 | } |
453 | 453 | |
454 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) { |
|
455 | - $page = get_page_by_path( $wp->query_vars['pagename'] ); |
|
454 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) { |
|
455 | + $page = get_page_by_path($wp->query_vars['pagename']); |
|
456 | 456 | |
457 | - if ( ! empty( $page ) && ( |
|
457 | + if (!empty($page) && ( |
|
458 | 458 | $page->ID == geodir_add_listing_page_id() |
459 | 459 | || $page->ID == geodir_preview_page_id() |
460 | 460 | || $page->ID == geodir_success_page_id() |
461 | 461 | || $page->ID == geodir_location_page_id() |
462 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() ) |
|
463 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() ) |
|
464 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() ) |
|
465 | - || ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() ) |
|
466 | - || ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() ) |
|
462 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id()) |
|
463 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id()) |
|
464 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id()) |
|
465 | + || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id()) |
|
466 | + || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id()) |
|
467 | 467 | ) |
468 | 468 | ) { |
469 | 469 | $wp->query_vars['gd_is_geodir_page'] = true; |
@@ -471,20 +471,20 @@ discard block |
||
471 | 471 | } |
472 | 472 | |
473 | 473 | |
474 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) { |
|
474 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') { |
|
475 | 475 | $requested_post_type = $wp->query_vars['post_type']; |
476 | 476 | // check if this post type is geodirectory post types |
477 | 477 | $post_type_array = geodir_get_posttypes(); |
478 | - if ( in_array( $requested_post_type, $post_type_array ) ) { |
|
478 | + if (in_array($requested_post_type, $post_type_array)) { |
|
479 | 479 | $wp->query_vars['gd_is_geodir_page'] = true; |
480 | 480 | } |
481 | 481 | } |
482 | 482 | |
483 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) { |
|
484 | - $geodir_taxonomis = geodir_get_taxonomies( '', true ); |
|
485 | - if ( ! empty( $geodir_taxonomis ) ) { |
|
486 | - foreach ( $geodir_taxonomis as $taxonomy ) { |
|
487 | - if ( array_key_exists( $taxonomy, $wp->query_vars ) ) { |
|
483 | + if (!isset($wp->query_vars['gd_is_geodir_page'])) { |
|
484 | + $geodir_taxonomis = geodir_get_taxonomies('', true); |
|
485 | + if (!empty($geodir_taxonomis)) { |
|
486 | + foreach ($geodir_taxonomis as $taxonomy) { |
|
487 | + if (array_key_exists($taxonomy, $wp->query_vars)) { |
|
488 | 488 | $wp->query_vars['gd_is_geodir_page'] = true; |
489 | 489 | break; |
490 | 490 | } |
@@ -493,20 +493,20 @@ discard block |
||
493 | 493 | |
494 | 494 | } |
495 | 495 | |
496 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) { |
|
496 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) { |
|
497 | 497 | $wp->query_vars['gd_is_geodir_page'] = true; |
498 | 498 | } |
499 | 499 | |
500 | 500 | |
501 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) { |
|
501 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) { |
|
502 | 502 | $wp->query_vars['gd_is_geodir_page'] = true; |
503 | 503 | } |
504 | 504 | |
505 | 505 | |
506 | 506 | //check if homepage |
507 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) |
|
508 | - && ! isset( $wp->query_vars['page_id'] ) |
|
509 | - && ! isset( $wp->query_vars['pagename'] ) |
|
507 | + if (!isset($wp->query_vars['gd_is_geodir_page']) |
|
508 | + && !isset($wp->query_vars['page_id']) |
|
509 | + && !isset($wp->query_vars['pagename']) |
|
510 | 510 | && is_page_geodir_home() |
511 | 511 | ) { |
512 | 512 | $wp->query_vars['gd_is_geodir_page'] = true; |
@@ -530,14 +530,14 @@ discard block |
||
530 | 530 | */ |
531 | 531 | function geodir_is_geodir_page() { |
532 | 532 | global $wp; |
533 | - if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) { |
|
533 | + if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) { |
|
534 | 534 | return true; |
535 | 535 | } else { |
536 | 536 | return false; |
537 | 537 | } |
538 | 538 | } |
539 | 539 | |
540 | -if ( ! function_exists( 'geodir_get_imagesize' ) ) { |
|
540 | +if (!function_exists('geodir_get_imagesize')) { |
|
541 | 541 | /** |
542 | 542 | * Get image size using the size key . |
543 | 543 | * |
@@ -548,13 +548,13 @@ discard block |
||
548 | 548 | * |
549 | 549 | * @return array|mixed|void|WP_Error If valid returns image size. Else returns error. |
550 | 550 | */ |
551 | - function geodir_get_imagesize( $size = '' ) { |
|
551 | + function geodir_get_imagesize($size = '') { |
|
552 | 552 | |
553 | 553 | $imagesizes = array( |
554 | - 'list-thumb' => array( 'w' => 283, 'h' => 188 ), |
|
555 | - 'thumbnail' => array( 'w' => 125, 'h' => 125 ), |
|
556 | - 'widget-thumb' => array( 'w' => 50, 'h' => 50 ), |
|
557 | - 'slider-thumb' => array( 'w' => 100, 'h' => 100 ) |
|
554 | + 'list-thumb' => array('w' => 283, 'h' => 188), |
|
555 | + 'thumbnail' => array('w' => 125, 'h' => 125), |
|
556 | + 'widget-thumb' => array('w' => 50, 'h' => 50), |
|
557 | + 'slider-thumb' => array('w' => 100, 'h' => 100) |
|
558 | 558 | ); |
559 | 559 | |
560 | 560 | /** |
@@ -564,9 +564,9 @@ discard block |
||
564 | 564 | * |
565 | 565 | * @param array $imagesizes Image size array. |
566 | 566 | */ |
567 | - $imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes ); |
|
567 | + $imagesizes = apply_filters('geodir_imagesizes', $imagesizes); |
|
568 | 568 | |
569 | - if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) { |
|
569 | + if (!empty($size) && array_key_exists($size, $imagesizes)) { |
|
570 | 570 | /** |
571 | 571 | * Filters image size of the passed key. |
572 | 572 | * |
@@ -574,11 +574,11 @@ discard block |
||
574 | 574 | * |
575 | 575 | * @param array $imagesizes [$size] Image size array of the passed key. |
576 | 576 | */ |
577 | - return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] ); |
|
577 | + return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]); |
|
578 | 578 | |
579 | - } elseif ( ! empty( $size ) ) { |
|
579 | + } elseif (!empty($size)) { |
|
580 | 580 | |
581 | - return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) ); |
|
581 | + return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory')); |
|
582 | 582 | |
583 | 583 | } |
584 | 584 | |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | */ |
603 | 603 | |
604 | 604 | |
605 | -if ( ! function_exists( 'createRandomString' ) ) { |
|
605 | +if (!function_exists('createRandomString')) { |
|
606 | 606 | /** |
607 | 607 | * Creates random string. |
608 | 608 | * |
@@ -612,21 +612,21 @@ discard block |
||
612 | 612 | */ |
613 | 613 | function createRandomString() { |
614 | 614 | $chars = "abcdefghijkmlnopqrstuvwxyz1023456789"; |
615 | - srand( (double) microtime() * 1000000 ); |
|
615 | + srand((double) microtime() * 1000000); |
|
616 | 616 | $i = 0; |
617 | 617 | $rstring = ''; |
618 | - while ( $i <= 25 ) { |
|
618 | + while ($i <= 25) { |
|
619 | 619 | $num = rand() % 33; |
620 | - $tmp = substr( $chars, $num, 1 ); |
|
621 | - $rstring = $rstring . $tmp; |
|
622 | - $i ++; |
|
620 | + $tmp = substr($chars, $num, 1); |
|
621 | + $rstring = $rstring.$tmp; |
|
622 | + $i++; |
|
623 | 623 | } |
624 | 624 | |
625 | 625 | return $rstring; |
626 | 626 | } |
627 | 627 | } |
628 | 628 | |
629 | -if ( ! function_exists( 'geodir_getDistanceRadius' ) ) { |
|
629 | +if (!function_exists('geodir_getDistanceRadius')) { |
|
630 | 630 | /** |
631 | 631 | * Calculates the distance radius. |
632 | 632 | * |
@@ -637,9 +637,9 @@ discard block |
||
637 | 637 | * |
638 | 638 | * @return float The mean radius. |
639 | 639 | */ |
640 | - function geodir_getDistanceRadius( $uom = 'km' ) { |
|
640 | + function geodir_getDistanceRadius($uom = 'km') { |
|
641 | 641 | // Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude |
642 | - switch ( geodir_strtolower( $uom ) ): |
|
642 | + switch (geodir_strtolower($uom)): |
|
643 | 643 | case 'km' : |
644 | 644 | $earthMeanRadius = 6371.009; // km |
645 | 645 | break; |
@@ -671,7 +671,7 @@ discard block |
||
671 | 671 | } |
672 | 672 | |
673 | 673 | |
674 | -if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) { |
|
674 | +if (!function_exists('geodir_calculateDistanceFromLatLong')) { |
|
675 | 675 | /** |
676 | 676 | * Calculate the great circle distance between two points identified by longitude and latitude. |
677 | 677 | * |
@@ -684,17 +684,17 @@ discard block |
||
684 | 684 | * |
685 | 685 | * @return float The distance. |
686 | 686 | */ |
687 | - function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) { |
|
687 | + function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') { |
|
688 | 688 | // Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude |
689 | 689 | |
690 | - $earthMeanRadius = geodir_getDistanceRadius( $uom ); |
|
690 | + $earthMeanRadius = geodir_getDistanceRadius($uom); |
|
691 | 691 | |
692 | - $deltaLatitude = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] ); |
|
693 | - $deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] ); |
|
694 | - $a = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) + |
|
695 | - cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) * |
|
696 | - sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 ); |
|
697 | - $c = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) ); |
|
692 | + $deltaLatitude = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']); |
|
693 | + $deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']); |
|
694 | + $a = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) + |
|
695 | + cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) * |
|
696 | + sin($deltaLongitude / 2) * sin($deltaLongitude / 2); |
|
697 | + $c = 2 * atan2(sqrt($a), sqrt(1 - $a)); |
|
698 | 698 | $distance = $earthMeanRadius * $c; |
699 | 699 | |
700 | 700 | return $distance; |
@@ -703,7 +703,7 @@ discard block |
||
703 | 703 | } |
704 | 704 | |
705 | 705 | |
706 | -if ( ! function_exists( 'geodir_sendEmail' ) ) { |
|
706 | +if (!function_exists('geodir_sendEmail')) { |
|
707 | 707 | /** |
708 | 708 | * The main function that send transactional emails using the args provided. |
709 | 709 | * |
@@ -722,83 +722,83 @@ discard block |
||
722 | 722 | * @param string $post_id The post ID. |
723 | 723 | * @param string $user_id The user ID. |
724 | 724 | */ |
725 | - function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) { |
|
725 | + function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') { |
|
726 | 726 | $login_details = ''; |
727 | 727 | |
728 | 728 | // strip slashes from subject & message text |
729 | - $to_subject = stripslashes_deep( $to_subject ); |
|
730 | - $to_message = stripslashes_deep( $to_message ); |
|
731 | - |
|
732 | - if ( $message_type == 'send_friend' ) { |
|
733 | - $subject = get_option( 'geodir_email_friend_subject' ); |
|
734 | - $message = get_option( 'geodir_email_friend_content' ); |
|
735 | - } elseif ( $message_type == 'send_enquiry' ) { |
|
736 | - $subject = get_option( 'geodir_email_enquiry_subject' ); |
|
737 | - $message = get_option( 'geodir_email_enquiry_content' ); |
|
738 | - } elseif ( $message_type == 'forgot_password' ) { |
|
739 | - $subject = get_option( 'geodir_forgot_password_subject' ); |
|
740 | - $message = get_option( 'geodir_forgot_password_content' ); |
|
729 | + $to_subject = stripslashes_deep($to_subject); |
|
730 | + $to_message = stripslashes_deep($to_message); |
|
731 | + |
|
732 | + if ($message_type == 'send_friend') { |
|
733 | + $subject = get_option('geodir_email_friend_subject'); |
|
734 | + $message = get_option('geodir_email_friend_content'); |
|
735 | + } elseif ($message_type == 'send_enquiry') { |
|
736 | + $subject = get_option('geodir_email_enquiry_subject'); |
|
737 | + $message = get_option('geodir_email_enquiry_content'); |
|
738 | + } elseif ($message_type == 'forgot_password') { |
|
739 | + $subject = get_option('geodir_forgot_password_subject'); |
|
740 | + $message = get_option('geodir_forgot_password_content'); |
|
741 | 741 | $login_details = $to_message; |
742 | - } elseif ( $message_type == 'registration' ) { |
|
743 | - $subject = get_option( 'geodir_registration_success_email_subject' ); |
|
744 | - $message = get_option( 'geodir_registration_success_email_content' ); |
|
742 | + } elseif ($message_type == 'registration') { |
|
743 | + $subject = get_option('geodir_registration_success_email_subject'); |
|
744 | + $message = get_option('geodir_registration_success_email_content'); |
|
745 | 745 | $login_details = $to_message; |
746 | - } elseif ( $message_type == 'post_submit' ) { |
|
747 | - $subject = get_option( 'geodir_post_submited_success_email_subject' ); |
|
748 | - $message = get_option( 'geodir_post_submited_success_email_content' ); |
|
749 | - } elseif ( $message_type == 'listing_published' ) { |
|
750 | - $subject = get_option( 'geodir_post_published_email_subject' ); |
|
751 | - $message = get_option( 'geodir_post_published_email_content' ); |
|
752 | - } elseif ( $message_type == 'listing_edited' ) { |
|
753 | - $subject = get_option( 'geodir_post_edited_email_subject_admin' ); |
|
754 | - $message = get_option( 'geodir_post_edited_email_content_admin' ); |
|
746 | + } elseif ($message_type == 'post_submit') { |
|
747 | + $subject = get_option('geodir_post_submited_success_email_subject'); |
|
748 | + $message = get_option('geodir_post_submited_success_email_content'); |
|
749 | + } elseif ($message_type == 'listing_published') { |
|
750 | + $subject = get_option('geodir_post_published_email_subject'); |
|
751 | + $message = get_option('geodir_post_published_email_content'); |
|
752 | + } elseif ($message_type == 'listing_edited') { |
|
753 | + $subject = get_option('geodir_post_edited_email_subject_admin'); |
|
754 | + $message = get_option('geodir_post_edited_email_content_admin'); |
|
755 | 755 | } |
756 | 756 | |
757 | - if ( ! empty( $subject ) ) { |
|
758 | - $subject = __( stripslashes_deep( $subject ), 'geodirectory' ); |
|
757 | + if (!empty($subject)) { |
|
758 | + $subject = __(stripslashes_deep($subject), 'geodirectory'); |
|
759 | 759 | } |
760 | 760 | |
761 | - if ( ! empty( $message ) ) { |
|
762 | - $message = __( stripslashes_deep( $message ), 'geodirectory' ); |
|
761 | + if (!empty($message)) { |
|
762 | + $message = __(stripslashes_deep($message), 'geodirectory'); |
|
763 | 763 | } |
764 | 764 | |
765 | - $to_message = nl2br( $to_message ); |
|
766 | - $sitefromEmail = get_option( 'site_email' ); |
|
765 | + $to_message = nl2br($to_message); |
|
766 | + $sitefromEmail = get_option('site_email'); |
|
767 | 767 | $sitefromEmailName = get_site_emailName(); |
768 | - $productlink = get_permalink( $post_id ); |
|
768 | + $productlink = get_permalink($post_id); |
|
769 | 769 | |
770 | 770 | $user_login = ''; |
771 | - if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) { |
|
771 | + if ($user_id > 0 && $user_info = get_userdata($user_id)) { |
|
772 | 772 | $user_login = $user_info->user_login; |
773 | 773 | } |
774 | 774 | |
775 | 775 | $posted_date = ''; |
776 | 776 | $listingLink = ''; |
777 | 777 | |
778 | - $post_info = get_post( $post_id ); |
|
778 | + $post_info = get_post($post_id); |
|
779 | 779 | |
780 | - if ( $post_info ) { |
|
780 | + if ($post_info) { |
|
781 | 781 | $posted_date = $post_info->post_date; |
782 | - $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>'; |
|
782 | + $listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>'; |
|
783 | 783 | } |
784 | 784 | $siteurl = home_url(); |
785 | - $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>'; |
|
785 | + $siteurl_link = '<a href="'.$siteurl.'">'.$siteurl.'</a>'; |
|
786 | 786 | $loginurl = geodir_login_url(); |
787 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
787 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
788 | 788 | |
789 | - $post_author_id = ! empty( $post_info ) ? $post_info->post_author : 0; |
|
790 | - $post_author_name = geodir_get_client_name( $post_author_id ); |
|
791 | - $current_date = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) ); |
|
789 | + $post_author_id = !empty($post_info) ? $post_info->post_author : 0; |
|
790 | + $post_author_name = geodir_get_client_name($post_author_id); |
|
791 | + $current_date = date_i18n('Y-m-d H:i:s', current_time('timestamp')); |
|
792 | 792 | |
793 | - if ( $fromEmail == '' ) { |
|
794 | - $fromEmail = get_option( 'site_email' ); |
|
793 | + if ($fromEmail == '') { |
|
794 | + $fromEmail = get_option('site_email'); |
|
795 | 795 | } |
796 | 796 | |
797 | - if ( $fromEmailName == '' ) { |
|
798 | - $fromEmailName = get_option( 'site_email_name' ); |
|
797 | + if ($fromEmailName == '') { |
|
798 | + $fromEmailName = get_option('site_email_name'); |
|
799 | 799 | } |
800 | 800 | |
801 | - $search_array = array( |
|
801 | + $search_array = array( |
|
802 | 802 | '[#listing_link#]', |
803 | 803 | '[#site_name_url#]', |
804 | 804 | '[#post_id#]', |
@@ -838,7 +838,7 @@ discard block |
||
838 | 838 | $post_author_name, |
839 | 839 | $current_date |
840 | 840 | ); |
841 | - $message = str_replace( $search_array, $replace_array, $message ); |
|
841 | + $message = str_replace($search_array, $replace_array, $message); |
|
842 | 842 | |
843 | 843 | $search_array = array( |
844 | 844 | '[#listing_link#]', |
@@ -874,12 +874,12 @@ discard block |
||
874 | 874 | $post_author_name, |
875 | 875 | $current_date |
876 | 876 | ); |
877 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
877 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
878 | 878 | |
879 | - $headers = 'MIME-Version: 1.0' . "\r\n"; |
|
880 | - $headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n"; |
|
881 | - $headers .= "Reply-To: " . $fromEmail . "\r\n"; |
|
882 | - $headers .= 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>' . "\r\n"; |
|
879 | + $headers = 'MIME-Version: 1.0'."\r\n"; |
|
880 | + $headers .= 'Content-type: text/html; charset=UTF-8'."\r\n"; |
|
881 | + $headers .= "Reply-To: ".$fromEmail."\r\n"; |
|
882 | + $headers .= 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>'."\r\n"; |
|
883 | 883 | |
884 | 884 | $to = $toEmail; |
885 | 885 | |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | * @param string $post_id The post ID. |
902 | 902 | * @param string $user_id The user ID. |
903 | 903 | */ |
904 | - $to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
904 | + $to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
905 | 905 | /** |
906 | 906 | * Filter the client email subject. |
907 | 907 | * |
@@ -920,7 +920,7 @@ discard block |
||
920 | 920 | * @param string $post_id The post ID. |
921 | 921 | * @param string $user_id The user ID. |
922 | 922 | */ |
923 | - $subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
923 | + $subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
924 | 924 | /** |
925 | 925 | * Filter the client email message. |
926 | 926 | * |
@@ -939,7 +939,7 @@ discard block |
||
939 | 939 | * @param string $post_id The post ID. |
940 | 940 | * @param string $user_id The user ID. |
941 | 941 | */ |
942 | - $message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
942 | + $message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
943 | 943 | /** |
944 | 944 | * Filter the client email headers. |
945 | 945 | * |
@@ -958,39 +958,39 @@ discard block |
||
958 | 958 | * @param string $post_id The post ID. |
959 | 959 | * @param string $user_id The user ID. |
960 | 960 | */ |
961 | - $headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
961 | + $headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
962 | 962 | |
963 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
963 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
964 | 964 | |
965 | - if ( ! $sent ) { |
|
966 | - if ( is_array( $to ) ) { |
|
967 | - $to = implode( ',', $to ); |
|
965 | + if (!$sent) { |
|
966 | + if (is_array($to)) { |
|
967 | + $to = implode(',', $to); |
|
968 | 968 | } |
969 | 969 | $log_message = sprintf( |
970 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
970 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'), |
|
971 | 971 | $message_type, |
972 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
972 | + date_i18n('F j Y H:i:s', current_time('timestamp')), |
|
973 | 973 | $to, |
974 | 974 | $subject |
975 | 975 | ); |
976 | - geodir_error_log( $log_message ); |
|
976 | + geodir_error_log($log_message); |
|
977 | 977 | } |
978 | 978 | |
979 | 979 | ///////// ADMIN BCC EMIALS |
980 | - $adminEmail = get_bloginfo( 'admin_email' ); |
|
980 | + $adminEmail = get_bloginfo('admin_email'); |
|
981 | 981 | $to = $adminEmail; |
982 | 982 | |
983 | 983 | $admin_bcc = false; |
984 | - if ( $message_type == 'registration' ) { |
|
985 | - $message_raw = explode( __( "Password:", 'geodirectory' ), $message ); |
|
986 | - $message_raw2 = explode( "</p>", $message_raw[1], 2 ); |
|
987 | - $message = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1]; |
|
984 | + if ($message_type == 'registration') { |
|
985 | + $message_raw = explode(__("Password:", 'geodirectory'), $message); |
|
986 | + $message_raw2 = explode("</p>", $message_raw[1], 2); |
|
987 | + $message = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1]; |
|
988 | 988 | } |
989 | - if ( $message_type == 'post_submit' ) { |
|
990 | - $subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' ); |
|
991 | - $message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' ); |
|
989 | + if ($message_type == 'post_submit') { |
|
990 | + $subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory'); |
|
991 | + $message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory'); |
|
992 | 992 | |
993 | - $search_array = array( |
|
993 | + $search_array = array( |
|
994 | 994 | '[#listing_link#]', |
995 | 995 | '[#site_name_url#]', |
996 | 996 | '[#post_id#]', |
@@ -1022,7 +1022,7 @@ discard block |
||
1022 | 1022 | $user_login, |
1023 | 1023 | $user_login |
1024 | 1024 | ); |
1025 | - $message = str_replace( $search_array, $replace_array, $message ); |
|
1025 | + $message = str_replace($search_array, $replace_array, $message); |
|
1026 | 1026 | |
1027 | 1027 | $search_array = array( |
1028 | 1028 | '[#listing_link#]', |
@@ -1050,40 +1050,40 @@ discard block |
||
1050 | 1050 | $user_login, |
1051 | 1051 | $user_login |
1052 | 1052 | ); |
1053 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
1053 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
1054 | 1054 | |
1055 | 1055 | $subject .= ' - ADMIN BCC COPY'; |
1056 | 1056 | $admin_bcc = true; |
1057 | 1057 | |
1058 | - } elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) { |
|
1058 | + } elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) { |
|
1059 | 1059 | $subject .= ' - ADMIN BCC COPY'; |
1060 | 1060 | $admin_bcc = true; |
1061 | - } elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) { |
|
1061 | + } elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) { |
|
1062 | 1062 | $subject .= ' - ADMIN BCC COPY'; |
1063 | 1063 | $admin_bcc = true; |
1064 | - } elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) { |
|
1064 | + } elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) { |
|
1065 | 1065 | $subject .= ' - ADMIN BCC COPY'; |
1066 | 1066 | $admin_bcc = true; |
1067 | - } elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) { |
|
1067 | + } elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) { |
|
1068 | 1068 | $subject .= ' - ADMIN BCC COPY'; |
1069 | 1069 | $admin_bcc = true; |
1070 | 1070 | } |
1071 | 1071 | |
1072 | - if ( $admin_bcc === true ) { |
|
1073 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
1072 | + if ($admin_bcc === true) { |
|
1073 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
1074 | 1074 | |
1075 | - if ( ! $sent ) { |
|
1076 | - if ( is_array( $to ) ) { |
|
1077 | - $to = implode( ',', $to ); |
|
1075 | + if (!$sent) { |
|
1076 | + if (is_array($to)) { |
|
1077 | + $to = implode(',', $to); |
|
1078 | 1078 | } |
1079 | 1079 | $log_message = sprintf( |
1080 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
1080 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'), |
|
1081 | 1081 | $message_type, |
1082 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
1082 | + date_i18n('F j Y H:i:s', current_time('timestamp')), |
|
1083 | 1083 | $to, |
1084 | 1084 | $subject |
1085 | 1085 | ); |
1086 | - geodir_error_log( $log_message ); |
|
1086 | + geodir_error_log($log_message); |
|
1087 | 1087 | } |
1088 | 1088 | } |
1089 | 1089 | |
@@ -1099,27 +1099,27 @@ discard block |
||
1099 | 1099 | */ |
1100 | 1100 | function geodir_taxonomy_breadcrumb() { |
1101 | 1101 | |
1102 | - $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); |
|
1102 | + $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy')); |
|
1103 | 1103 | $parent = $term->parent; |
1104 | 1104 | |
1105 | - while ( $parent ): |
|
1105 | + while ($parent): |
|
1106 | 1106 | $parents[] = $parent; |
1107 | - $new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) ); |
|
1107 | + $new_parent = get_term_by('id', $parent, get_query_var('taxonomy')); |
|
1108 | 1108 | $parent = $new_parent->parent; |
1109 | 1109 | endwhile; |
1110 | 1110 | |
1111 | - if ( ! empty( $parents ) ): |
|
1112 | - $parents = array_reverse( $parents ); |
|
1111 | + if (!empty($parents)): |
|
1112 | + $parents = array_reverse($parents); |
|
1113 | 1113 | |
1114 | - foreach ( $parents as $parent ): |
|
1115 | - $item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) ); |
|
1116 | - $url = get_term_link( $item, get_query_var( 'taxonomy' ) ); |
|
1117 | - echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>'; |
|
1114 | + foreach ($parents as $parent): |
|
1115 | + $item = get_term_by('id', $parent, get_query_var('taxonomy')); |
|
1116 | + $url = get_term_link($item, get_query_var('taxonomy')); |
|
1117 | + echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>'; |
|
1118 | 1118 | endforeach; |
1119 | 1119 | |
1120 | 1120 | endif; |
1121 | 1121 | |
1122 | - echo '<li> > ' . $term->name . '</li>'; |
|
1122 | + echo '<li> > '.$term->name.'</li>'; |
|
1123 | 1123 | } |
1124 | 1124 | |
1125 | 1125 | |
@@ -1141,9 +1141,9 @@ discard block |
||
1141 | 1141 | * |
1142 | 1142 | * @since 1.0.0 |
1143 | 1143 | */ |
1144 | - $separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' ); |
|
1144 | + $separator = apply_filters('geodir_breadcrumb_separator', ' > '); |
|
1145 | 1145 | |
1146 | - if ( ! geodir_is_page( 'home' ) ) { |
|
1146 | + if (!geodir_is_page('home')) { |
|
1147 | 1147 | $breadcrumb = ''; |
1148 | 1148 | $url_categoris = ''; |
1149 | 1149 | $breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">'; |
@@ -1152,162 +1152,162 @@ discard block |
||
1152 | 1152 | * |
1153 | 1153 | * @since 1.0.0 |
1154 | 1154 | */ |
1155 | - $breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>'; |
|
1155 | + $breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>'; |
|
1156 | 1156 | |
1157 | 1157 | $gd_post_type = geodir_get_current_posttype(); |
1158 | - $post_type_info = get_post_type_object( $gd_post_type ); |
|
1158 | + $post_type_info = get_post_type_object($gd_post_type); |
|
1159 | 1159 | |
1160 | - remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' ); |
|
1160 | + remove_filter('post_type_archive_link', 'geodir_get_posttype_link'); |
|
1161 | 1161 | |
1162 | - $listing_link = get_post_type_archive_link( $gd_post_type ); |
|
1162 | + $listing_link = get_post_type_archive_link($gd_post_type); |
|
1163 | 1163 | |
1164 | - add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 ); |
|
1165 | - $listing_link = rtrim( $listing_link, '/' ); |
|
1164 | + add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2); |
|
1165 | + $listing_link = rtrim($listing_link, '/'); |
|
1166 | 1166 | $listing_link .= '/'; |
1167 | 1167 | |
1168 | 1168 | $post_type_for_location_link = $listing_link; |
1169 | - $location_terms = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
1169 | + $location_terms = geodir_get_current_location_terms('query_vars', $gd_post_type); |
|
1170 | 1170 | |
1171 | 1171 | global $wp, $gd_session; |
1172 | 1172 | $location_link = $post_type_for_location_link; |
1173 | 1173 | |
1174 | - if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) { |
|
1174 | + if (geodir_is_page('detail') || geodir_is_page('listing')) { |
|
1175 | 1175 | global $post; |
1176 | - $location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false; |
|
1177 | - $neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false; |
|
1176 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false; |
|
1177 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false; |
|
1178 | 1178 | |
1179 | - if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) { |
|
1179 | + if (geodir_is_page('detail') && isset($post->country_slug)) { |
|
1180 | 1180 | $location_terms = array( |
1181 | 1181 | 'gd_country' => $post->country_slug, |
1182 | 1182 | 'gd_region' => $post->region_slug, |
1183 | 1183 | 'gd_city' => $post->city_slug |
1184 | 1184 | ); |
1185 | 1185 | |
1186 | - if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) { |
|
1186 | + if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) { |
|
1187 | 1187 | $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood; |
1188 | 1188 | } |
1189 | 1189 | } |
1190 | 1190 | |
1191 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
1191 | + $geodir_show_location_url = get_option('geodir_show_location_url'); |
|
1192 | 1192 | |
1193 | 1193 | $hide_url_part = array(); |
1194 | - if ( $location_manager ) { |
|
1195 | - $hide_country_part = get_option( 'geodir_location_hide_country_part' ); |
|
1196 | - $hide_region_part = get_option( 'geodir_location_hide_region_part' ); |
|
1197 | - |
|
1198 | - if ( $hide_region_part && $hide_country_part ) { |
|
1199 | - $hide_url_part = array( 'gd_country', 'gd_region' ); |
|
1200 | - } else if ( $hide_region_part && ! $hide_country_part ) { |
|
1201 | - $hide_url_part = array( 'gd_region' ); |
|
1202 | - } else if ( ! $hide_region_part && $hide_country_part ) { |
|
1203 | - $hide_url_part = array( 'gd_country' ); |
|
1194 | + if ($location_manager) { |
|
1195 | + $hide_country_part = get_option('geodir_location_hide_country_part'); |
|
1196 | + $hide_region_part = get_option('geodir_location_hide_region_part'); |
|
1197 | + |
|
1198 | + if ($hide_region_part && $hide_country_part) { |
|
1199 | + $hide_url_part = array('gd_country', 'gd_region'); |
|
1200 | + } else if ($hide_region_part && !$hide_country_part) { |
|
1201 | + $hide_url_part = array('gd_region'); |
|
1202 | + } else if (!$hide_region_part && $hide_country_part) { |
|
1203 | + $hide_url_part = array('gd_country'); |
|
1204 | 1204 | } |
1205 | 1205 | } |
1206 | 1206 | |
1207 | 1207 | $hide_text_part = array(); |
1208 | - if ( $geodir_show_location_url == 'country_city' ) { |
|
1209 | - $hide_text_part = array( 'gd_region' ); |
|
1208 | + if ($geodir_show_location_url == 'country_city') { |
|
1209 | + $hide_text_part = array('gd_region'); |
|
1210 | 1210 | |
1211 | - if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) { |
|
1212 | - unset( $location_terms['gd_region'] ); |
|
1211 | + if (isset($location_terms['gd_region']) && !$location_manager) { |
|
1212 | + unset($location_terms['gd_region']); |
|
1213 | 1213 | } |
1214 | - } else if ( $geodir_show_location_url == 'region_city' ) { |
|
1215 | - $hide_text_part = array( 'gd_country' ); |
|
1214 | + } else if ($geodir_show_location_url == 'region_city') { |
|
1215 | + $hide_text_part = array('gd_country'); |
|
1216 | 1216 | |
1217 | - if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) { |
|
1218 | - unset( $location_terms['gd_country'] ); |
|
1217 | + if (isset($location_terms['gd_country']) && !$location_manager) { |
|
1218 | + unset($location_terms['gd_country']); |
|
1219 | 1219 | } |
1220 | - } else if ( $geodir_show_location_url == 'city' ) { |
|
1221 | - $hide_text_part = array( 'gd_country', 'gd_region' ); |
|
1220 | + } else if ($geodir_show_location_url == 'city') { |
|
1221 | + $hide_text_part = array('gd_country', 'gd_region'); |
|
1222 | 1222 | |
1223 | - if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) { |
|
1224 | - unset( $location_terms['gd_country'] ); |
|
1223 | + if (isset($location_terms['gd_country']) && !$location_manager) { |
|
1224 | + unset($location_terms['gd_country']); |
|
1225 | 1225 | } |
1226 | - if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) { |
|
1227 | - unset( $location_terms['gd_region'] ); |
|
1226 | + if (isset($location_terms['gd_region']) && !$location_manager) { |
|
1227 | + unset($location_terms['gd_region']); |
|
1228 | 1228 | } |
1229 | 1229 | } |
1230 | 1230 | |
1231 | 1231 | $is_location_last = ''; |
1232 | 1232 | $is_taxonomy_last = ''; |
1233 | 1233 | $breadcrumb .= '<li>'; |
1234 | - if ( get_query_var( $gd_post_type . 'category' ) ) { |
|
1235 | - $gd_taxonomy = $gd_post_type . 'category'; |
|
1236 | - } elseif ( get_query_var( $gd_post_type . '_tags' ) ) { |
|
1237 | - $gd_taxonomy = $gd_post_type . '_tags'; |
|
1234 | + if (get_query_var($gd_post_type.'category')) { |
|
1235 | + $gd_taxonomy = $gd_post_type.'category'; |
|
1236 | + } elseif (get_query_var($gd_post_type.'_tags')) { |
|
1237 | + $gd_taxonomy = $gd_post_type.'_tags'; |
|
1238 | 1238 | } |
1239 | 1239 | |
1240 | - $breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>'; |
|
1241 | - if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) { |
|
1240 | + $breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>'; |
|
1241 | + if (!empty($gd_taxonomy) || geodir_is_page('detail')) { |
|
1242 | 1242 | $is_location_last = false; |
1243 | 1243 | } else { |
1244 | 1244 | $is_location_last = true; |
1245 | 1245 | } |
1246 | 1246 | |
1247 | - if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) { |
|
1247 | + if (!empty($gd_taxonomy) && geodir_is_page('listing')) { |
|
1248 | 1248 | $is_taxonomy_last = true; |
1249 | 1249 | } else { |
1250 | 1250 | $is_taxonomy_last = false; |
1251 | 1251 | } |
1252 | 1252 | |
1253 | - if ( ! empty( $location_terms ) ) { |
|
1254 | - $geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false; |
|
1253 | + if (!empty($location_terms)) { |
|
1254 | + $geodir_get_locations = function_exists('get_actual_location_name') ? true : false; |
|
1255 | 1255 | |
1256 | - foreach ( $location_terms as $key => $location_term ) { |
|
1257 | - if ( $location_term != '' ) { |
|
1258 | - if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb. |
|
1256 | + foreach ($location_terms as $key => $location_term) { |
|
1257 | + if ($location_term != '') { |
|
1258 | + if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb. |
|
1259 | 1259 | continue; |
1260 | 1260 | } |
1261 | 1261 | |
1262 | - $gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term ); |
|
1263 | - $gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text ); |
|
1264 | - $gd_location_link_text = ucfirst( $gd_location_link_text ); |
|
1262 | + $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term); |
|
1263 | + $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text); |
|
1264 | + $gd_location_link_text = ucfirst($gd_location_link_text); |
|
1265 | 1265 | |
1266 | 1266 | $location_term_actual_country = ''; |
1267 | 1267 | $location_term_actual_region = ''; |
1268 | 1268 | $location_term_actual_city = ''; |
1269 | - if ( $geodir_get_locations ) { |
|
1270 | - if ( $key == 'gd_country' ) { |
|
1271 | - $location_term_actual_country = get_actual_location_name( 'country', $location_term, true ); |
|
1272 | - } else if ( $key == 'gd_region' ) { |
|
1273 | - $location_term_actual_region = get_actual_location_name( 'region', $location_term, true ); |
|
1274 | - } else if ( $key == 'gd_city' ) { |
|
1275 | - $location_term_actual_city = get_actual_location_name( 'city', $location_term, true ); |
|
1269 | + if ($geodir_get_locations) { |
|
1270 | + if ($key == 'gd_country') { |
|
1271 | + $location_term_actual_country = get_actual_location_name('country', $location_term, true); |
|
1272 | + } else if ($key == 'gd_region') { |
|
1273 | + $location_term_actual_region = get_actual_location_name('region', $location_term, true); |
|
1274 | + } else if ($key == 'gd_city') { |
|
1275 | + $location_term_actual_city = get_actual_location_name('city', $location_term, true); |
|
1276 | 1276 | } |
1277 | 1277 | } else { |
1278 | 1278 | $location_info = geodir_get_location(); |
1279 | 1279 | |
1280 | - if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) { |
|
1281 | - if ( $key == 'gd_country' ) { |
|
1282 | - $location_term_actual_country = __( $location_info->country, 'geodirectory' ); |
|
1283 | - } else if ( $key == 'gd_region' ) { |
|
1284 | - $location_term_actual_region = __( $location_info->region, 'geodirectory' ); |
|
1285 | - } else if ( $key == 'gd_city' ) { |
|
1286 | - $location_term_actual_city = __( $location_info->city, 'geodirectory' ); |
|
1280 | + if (!empty($location_info) && isset($location_info->location_id)) { |
|
1281 | + if ($key == 'gd_country') { |
|
1282 | + $location_term_actual_country = __($location_info->country, 'geodirectory'); |
|
1283 | + } else if ($key == 'gd_region') { |
|
1284 | + $location_term_actual_region = __($location_info->region, 'geodirectory'); |
|
1285 | + } else if ($key == 'gd_city') { |
|
1286 | + $location_term_actual_city = __($location_info->city, 'geodirectory'); |
|
1287 | 1287 | } |
1288 | 1288 | } |
1289 | 1289 | } |
1290 | 1290 | |
1291 | - if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) { |
|
1292 | - $breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text; |
|
1293 | - } else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) { |
|
1294 | - $breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text; |
|
1295 | - } else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) { |
|
1296 | - $breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text; |
|
1297 | - } else if ( $is_location_last && $key == 'gd_neighbourhood' ) { |
|
1298 | - $breadcrumb .= $separator . $gd_location_link_text; |
|
1291 | + if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) { |
|
1292 | + $breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text; |
|
1293 | + } else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) { |
|
1294 | + $breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text; |
|
1295 | + } else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) { |
|
1296 | + $breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text; |
|
1297 | + } else if ($is_location_last && $key == 'gd_neighbourhood') { |
|
1298 | + $breadcrumb .= $separator.$gd_location_link_text; |
|
1299 | 1299 | } else { |
1300 | - if ( get_option( 'permalink_structure' ) != '' ) { |
|
1301 | - $location_link .= $location_term . '/'; |
|
1300 | + if (get_option('permalink_structure') != '') { |
|
1301 | + $location_link .= $location_term.'/'; |
|
1302 | 1302 | } else { |
1303 | - $location_link .= "&$key=" . $location_term; |
|
1303 | + $location_link .= "&$key=".$location_term; |
|
1304 | 1304 | } |
1305 | 1305 | |
1306 | - if ( $key == 'gd_country' && $location_term_actual_country != '' ) { |
|
1306 | + if ($key == 'gd_country' && $location_term_actual_country != '') { |
|
1307 | 1307 | $gd_location_link_text = $location_term_actual_country; |
1308 | - } else if ( $key == 'gd_region' && $location_term_actual_region != '' ) { |
|
1308 | + } else if ($key == 'gd_region' && $location_term_actual_region != '') { |
|
1309 | 1309 | $gd_location_link_text = $location_term_actual_region; |
1310 | - } else if ( $key == 'gd_city' && $location_term_actual_city != '' ) { |
|
1310 | + } else if ($key == 'gd_city' && $location_term_actual_city != '') { |
|
1311 | 1311 | $gd_location_link_text = $location_term_actual_city; |
1312 | 1312 | } |
1313 | 1313 | |
@@ -1317,76 +1317,76 @@ discard block |
||
1317 | 1317 | } |
1318 | 1318 | */ |
1319 | 1319 | |
1320 | - $breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>'; |
|
1320 | + $breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>'; |
|
1321 | 1321 | } |
1322 | 1322 | } |
1323 | 1323 | } |
1324 | 1324 | } |
1325 | 1325 | |
1326 | - if ( ! empty( $gd_taxonomy ) ) { |
|
1326 | + if (!empty($gd_taxonomy)) { |
|
1327 | 1327 | $term_index = 1; |
1328 | 1328 | |
1329 | 1329 | //if(get_option('geodir_add_categories_url')) |
1330 | 1330 | { |
1331 | - if ( get_query_var( $gd_post_type . '_tags' ) ) { |
|
1332 | - $cat_link = $listing_link . 'tags/'; |
|
1331 | + if (get_query_var($gd_post_type.'_tags')) { |
|
1332 | + $cat_link = $listing_link.'tags/'; |
|
1333 | 1333 | } else { |
1334 | 1334 | $cat_link = $listing_link; |
1335 | 1335 | } |
1336 | 1336 | |
1337 | - foreach ( $location_terms as $key => $location_term ) { |
|
1338 | - if ( $location_manager && in_array( $key, $hide_url_part ) ) { |
|
1337 | + foreach ($location_terms as $key => $location_term) { |
|
1338 | + if ($location_manager && in_array($key, $hide_url_part)) { |
|
1339 | 1339 | continue; |
1340 | 1340 | } |
1341 | 1341 | |
1342 | - if ( $location_term != '' ) { |
|
1343 | - if ( get_option( 'permalink_structure' ) != '' ) { |
|
1344 | - $cat_link .= $location_term . '/'; |
|
1342 | + if ($location_term != '') { |
|
1343 | + if (get_option('permalink_structure') != '') { |
|
1344 | + $cat_link .= $location_term.'/'; |
|
1345 | 1345 | } |
1346 | 1346 | } |
1347 | 1347 | } |
1348 | 1348 | |
1349 | - $term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) ); |
|
1350 | - foreach ( $term_array as $term ) { |
|
1351 | - $term_link_text = preg_replace( '/-(\d+)$/', '', $term ); |
|
1352 | - $term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text ); |
|
1349 | + $term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/")); |
|
1350 | + foreach ($term_array as $term) { |
|
1351 | + $term_link_text = preg_replace('/-(\d+)$/', '', $term); |
|
1352 | + $term_link_text = preg_replace('/[_-]/', ' ', $term_link_text); |
|
1353 | 1353 | |
1354 | 1354 | // get term actual name |
1355 | - $term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' ); |
|
1356 | - if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) { |
|
1357 | - $term_link_text = urldecode( $term_info['name'] ); |
|
1355 | + $term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A'); |
|
1356 | + if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') { |
|
1357 | + $term_link_text = urldecode($term_info['name']); |
|
1358 | 1358 | } else { |
1359 | 1359 | continue; |
1360 | 1360 | //$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text))); |
1361 | 1361 | } |
1362 | 1362 | |
1363 | - if ( $term_index == count( $term_array ) && $is_taxonomy_last ) { |
|
1364 | - $breadcrumb .= $separator . $term_link_text; |
|
1363 | + if ($term_index == count($term_array) && $is_taxonomy_last) { |
|
1364 | + $breadcrumb .= $separator.$term_link_text; |
|
1365 | 1365 | } else { |
1366 | - $cat_link .= $term . '/'; |
|
1367 | - $breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>'; |
|
1366 | + $cat_link .= $term.'/'; |
|
1367 | + $breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>'; |
|
1368 | 1368 | } |
1369 | - $term_index ++; |
|
1369 | + $term_index++; |
|
1370 | 1370 | } |
1371 | 1371 | } |
1372 | 1372 | |
1373 | 1373 | |
1374 | 1374 | } |
1375 | 1375 | |
1376 | - if ( geodir_is_page( 'detail' ) ) { |
|
1377 | - $breadcrumb .= $separator . get_the_title(); |
|
1376 | + if (geodir_is_page('detail')) { |
|
1377 | + $breadcrumb .= $separator.get_the_title(); |
|
1378 | 1378 | } |
1379 | 1379 | |
1380 | 1380 | $breadcrumb .= '</li>'; |
1381 | 1381 | |
1382 | 1382 | |
1383 | - } elseif ( geodir_is_page( 'author' ) ) { |
|
1383 | + } elseif (geodir_is_page('author')) { |
|
1384 | 1384 | $user_id = get_current_user_id(); |
1385 | - $author_link = get_author_posts_url( $user_id ); |
|
1386 | - $default_author_link = geodir_getlink( $author_link, array( |
|
1385 | + $author_link = get_author_posts_url($user_id); |
|
1386 | + $default_author_link = geodir_getlink($author_link, array( |
|
1387 | 1387 | 'geodir_dashbord' => 'true', |
1388 | 1388 | 'stype' => 'gd_place' |
1389 | - ), false ); |
|
1389 | + ), false); |
|
1390 | 1390 | |
1391 | 1391 | /** |
1392 | 1392 | * Filter author page link. |
@@ -1396,16 +1396,16 @@ discard block |
||
1396 | 1396 | * @param string $default_author_link Default author link. |
1397 | 1397 | * @param int $user_id Author ID. |
1398 | 1398 | */ |
1399 | - $default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id ); |
|
1399 | + $default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id); |
|
1400 | 1400 | |
1401 | 1401 | $breadcrumb .= '<li>'; |
1402 | - $breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>'; |
|
1402 | + $breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>'; |
|
1403 | 1403 | |
1404 | - if ( isset( $_REQUEST['list'] ) ) { |
|
1405 | - $author_link = geodir_getlink( $author_link, array( |
|
1404 | + if (isset($_REQUEST['list'])) { |
|
1405 | + $author_link = geodir_getlink($author_link, array( |
|
1406 | 1406 | 'geodir_dashbord' => 'true', |
1407 | 1407 | 'stype' => $_REQUEST['stype'] |
1408 | - ), false ); |
|
1408 | + ), false); |
|
1409 | 1409 | |
1410 | 1410 | /** |
1411 | 1411 | * Filter author page link. |
@@ -1416,61 +1416,61 @@ discard block |
||
1416 | 1416 | * @param int $user_id Author ID. |
1417 | 1417 | * @param string $_REQUEST ['stype'] Post type. |
1418 | 1418 | */ |
1419 | - $author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] ); |
|
1419 | + $author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']); |
|
1420 | 1420 | |
1421 | - $breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>'; |
|
1422 | - $breadcrumb .= $separator . ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] ); |
|
1421 | + $breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>'; |
|
1422 | + $breadcrumb .= $separator.ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']); |
|
1423 | 1423 | } else { |
1424 | - $breadcrumb .= $separator . __( ucfirst( $post_type_info->label ), 'geodirectory' ); |
|
1424 | + $breadcrumb .= $separator.__(ucfirst($post_type_info->label), 'geodirectory'); |
|
1425 | 1425 | } |
1426 | 1426 | |
1427 | 1427 | $breadcrumb .= '</li>'; |
1428 | - } elseif ( is_category() || is_single() ) { |
|
1428 | + } elseif (is_category() || is_single()) { |
|
1429 | 1429 | $category = get_the_category(); |
1430 | - if ( is_category() ) { |
|
1431 | - $breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>'; |
|
1430 | + if (is_category()) { |
|
1431 | + $breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>'; |
|
1432 | 1432 | } |
1433 | - if ( is_single() ) { |
|
1434 | - $breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>'; |
|
1435 | - $breadcrumb .= '<li>' . $separator . get_the_title() . '</li>'; |
|
1433 | + if (is_single()) { |
|
1434 | + $breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>'; |
|
1435 | + $breadcrumb .= '<li>'.$separator.get_the_title().'</li>'; |
|
1436 | 1436 | } |
1437 | 1437 | /* End of my version ##################################################### */ |
1438 | - } else if ( is_page() ) { |
|
1438 | + } else if (is_page()) { |
|
1439 | 1439 | $page_title = get_the_title(); |
1440 | 1440 | |
1441 | - if ( geodir_is_page( 'location' ) ) { |
|
1441 | + if (geodir_is_page('location')) { |
|
1442 | 1442 | $location_page_id = geodir_location_page_id(); |
1443 | - $loc_post = get_post( $location_page_id ); |
|
1443 | + $loc_post = get_post($location_page_id); |
|
1444 | 1444 | $post_name = $loc_post->post_name; |
1445 | - $slug = ucwords( str_replace( '-', ' ', $post_name ) ); |
|
1446 | - $page_title = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' ); |
|
1445 | + $slug = ucwords(str_replace('-', ' ', $post_name)); |
|
1446 | + $page_title = !empty($slug) ? $slug : __('Location', 'geodirectory'); |
|
1447 | 1447 | } |
1448 | 1448 | |
1449 | - $breadcrumb .= '<li>' . $separator; |
|
1450 | - $breadcrumb .= stripslashes_deep( $page_title ); |
|
1449 | + $breadcrumb .= '<li>'.$separator; |
|
1450 | + $breadcrumb .= stripslashes_deep($page_title); |
|
1451 | 1451 | $breadcrumb .= '</li>'; |
1452 | - } else if ( is_tag() ) { |
|
1453 | - $breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>'; |
|
1454 | - } else if ( is_day() ) { |
|
1455 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
1456 | - the_time( 'F jS, Y' ); |
|
1452 | + } else if (is_tag()) { |
|
1453 | + $breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>'; |
|
1454 | + } else if (is_day()) { |
|
1455 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." "; |
|
1456 | + the_time('F jS, Y'); |
|
1457 | 1457 | $breadcrumb .= '</li>'; |
1458 | - } else if ( is_month() ) { |
|
1459 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
1460 | - the_time( 'F, Y' ); |
|
1458 | + } else if (is_month()) { |
|
1459 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." "; |
|
1460 | + the_time('F, Y'); |
|
1461 | 1461 | $breadcrumb .= '</li>'; |
1462 | - } else if ( is_year() ) { |
|
1463 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
1464 | - the_time( 'Y' ); |
|
1462 | + } else if (is_year()) { |
|
1463 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." "; |
|
1464 | + the_time('Y'); |
|
1465 | 1465 | $breadcrumb .= '</li>'; |
1466 | - } else if ( is_author() ) { |
|
1467 | - $breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' ); |
|
1466 | + } else if (is_author()) { |
|
1467 | + $breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory'); |
|
1468 | 1468 | $breadcrumb .= '</li>'; |
1469 | - } else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) { |
|
1470 | - $breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' ); |
|
1469 | + } else if (isset($_GET['paged']) && !empty($_GET['paged'])) { |
|
1470 | + $breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory'); |
|
1471 | 1471 | $breadcrumb .= '</li>'; |
1472 | - } else if ( is_search() ) { |
|
1473 | - $breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' ); |
|
1472 | + } else if (is_search()) { |
|
1473 | + $breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory'); |
|
1474 | 1474 | $breadcrumb .= '</li>'; |
1475 | 1475 | } |
1476 | 1476 | $breadcrumb .= '</ul></div>'; |
@@ -1483,13 +1483,13 @@ discard block |
||
1483 | 1483 | * @param string $breadcrumb Breadcrumb HTML. |
1484 | 1484 | * @param string $separator Breadcrumb separator. |
1485 | 1485 | */ |
1486 | - echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator ); |
|
1486 | + echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator); |
|
1487 | 1487 | } |
1488 | 1488 | } |
1489 | 1489 | |
1490 | 1490 | |
1491 | -add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin |
|
1492 | -if ( ! function_exists( 'geodir_allow_wpadmin' ) ) { |
|
1491 | +add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin |
|
1492 | +if (!function_exists('geodir_allow_wpadmin')) { |
|
1493 | 1493 | /** |
1494 | 1494 | * Allow only admins to access wp-admin. |
1495 | 1495 | * |
@@ -1501,12 +1501,12 @@ discard block |
||
1501 | 1501 | */ |
1502 | 1502 | function geodir_allow_wpadmin() { |
1503 | 1503 | global $wpdb; |
1504 | - if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through |
|
1504 | + if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through |
|
1505 | 1505 | { |
1506 | - if ( current_user_can( 'administrator' ) ) { |
|
1506 | + if (current_user_can('administrator')) { |
|
1507 | 1507 | } else { |
1508 | 1508 | |
1509 | - wp_redirect( home_url() ); |
|
1509 | + wp_redirect(home_url()); |
|
1510 | 1510 | exit; |
1511 | 1511 | } |
1512 | 1512 | |
@@ -1525,23 +1525,23 @@ discard block |
||
1525 | 1525 | * |
1526 | 1526 | * @return array|WP_Error The uploaded data as array. When failure returns error. |
1527 | 1527 | */ |
1528 | -function fetch_remote_file( $url ) { |
|
1528 | +function fetch_remote_file($url) { |
|
1529 | 1529 | // extract the file name and extension from the url |
1530 | - require_once( ABSPATH . 'wp-includes/pluggable.php' ); |
|
1531 | - $file_name = basename( $url ); |
|
1532 | - if ( strpos( $file_name, '?' ) !== false ) { |
|
1533 | - list( $file_name ) = explode( '?', $file_name ); |
|
1530 | + require_once(ABSPATH.'wp-includes/pluggable.php'); |
|
1531 | + $file_name = basename($url); |
|
1532 | + if (strpos($file_name, '?') !== false) { |
|
1533 | + list($file_name) = explode('?', $file_name); |
|
1534 | 1534 | } |
1535 | 1535 | $dummy = false; |
1536 | 1536 | $add_to_cache = false; |
1537 | 1537 | $key = null; |
1538 | - if ( strpos( $url, '/dummy/' ) !== false ) { |
|
1538 | + if (strpos($url, '/dummy/') !== false) { |
|
1539 | 1539 | $dummy = true; |
1540 | - $key = "dummy_" . str_replace( '.', '_', $file_name ); |
|
1541 | - $value = get_transient( 'cached_dummy_images' ); |
|
1542 | - if ( $value ) { |
|
1543 | - if ( isset( $value[ $key ] ) ) { |
|
1544 | - return $value[ $key ]; |
|
1540 | + $key = "dummy_".str_replace('.', '_', $file_name); |
|
1541 | + $value = get_transient('cached_dummy_images'); |
|
1542 | + if ($value) { |
|
1543 | + if (isset($value[$key])) { |
|
1544 | + return $value[$key]; |
|
1545 | 1545 | } else { |
1546 | 1546 | $add_to_cache = true; |
1547 | 1547 | } |
@@ -1552,58 +1552,58 @@ discard block |
||
1552 | 1552 | |
1553 | 1553 | // get placeholder file in the upload dir with a unique, sanitized filename |
1554 | 1554 | |
1555 | - $post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : ''; |
|
1555 | + $post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : ''; |
|
1556 | 1556 | |
1557 | - $upload = wp_upload_bits( $file_name, 0, '', $post_upload_date ); |
|
1558 | - if ( $upload['error'] ) { |
|
1559 | - return new WP_Error( 'upload_dir_error', $upload['error'] ); |
|
1557 | + $upload = wp_upload_bits($file_name, 0, '', $post_upload_date); |
|
1558 | + if ($upload['error']) { |
|
1559 | + return new WP_Error('upload_dir_error', $upload['error']); |
|
1560 | 1560 | } |
1561 | 1561 | |
1562 | 1562 | |
1563 | - sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay |
|
1563 | + sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay |
|
1564 | 1564 | |
1565 | 1565 | // fetch the remote url and write it to the placeholder file |
1566 | - $headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) ); |
|
1566 | + $headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file'])); |
|
1567 | 1567 | |
1568 | 1568 | $log_message = ''; |
1569 | - if ( is_wp_error( $headers ) ) { |
|
1570 | - echo 'file: ' . $url; |
|
1569 | + if (is_wp_error($headers)) { |
|
1570 | + echo 'file: '.$url; |
|
1571 | 1571 | |
1572 | - return new WP_Error( 'import_file_error', $headers->get_error_message() ); |
|
1572 | + return new WP_Error('import_file_error', $headers->get_error_message()); |
|
1573 | 1573 | } |
1574 | 1574 | |
1575 | - $filesize = filesize( $upload['file'] ); |
|
1575 | + $filesize = filesize($upload['file']); |
|
1576 | 1576 | // request failed |
1577 | - if ( ! $headers ) { |
|
1578 | - $log_message = __( 'Remote server did not respond', 'geodirectory' ); |
|
1577 | + if (!$headers) { |
|
1578 | + $log_message = __('Remote server did not respond', 'geodirectory'); |
|
1579 | 1579 | } // make sure the fetch was successful |
1580 | - elseif ( $headers['response']['code'] != '200' ) { |
|
1581 | - $log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) ); |
|
1582 | - } elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) { |
|
1583 | - $log_message = __( 'Remote file is incorrect size', 'geodirectory' ); |
|
1584 | - } elseif ( 0 == $filesize ) { |
|
1585 | - $log_message = __( 'Zero size file downloaded', 'geodirectory' ); |
|
1586 | - } |
|
1587 | - |
|
1588 | - if ( $log_message ) { |
|
1589 | - $del = unlink( $upload['file'] ); |
|
1590 | - if ( ! $del ) { |
|
1591 | - geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) ); |
|
1580 | + elseif ($headers['response']['code'] != '200') { |
|
1581 | + $log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response'])); |
|
1582 | + } elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) { |
|
1583 | + $log_message = __('Remote file is incorrect size', 'geodirectory'); |
|
1584 | + } elseif (0 == $filesize) { |
|
1585 | + $log_message = __('Zero size file downloaded', 'geodirectory'); |
|
1586 | + } |
|
1587 | + |
|
1588 | + if ($log_message) { |
|
1589 | + $del = unlink($upload['file']); |
|
1590 | + if (!$del) { |
|
1591 | + geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory')); |
|
1592 | 1592 | } |
1593 | 1593 | |
1594 | - return new WP_Error( 'import_file_error', $log_message ); |
|
1594 | + return new WP_Error('import_file_error', $log_message); |
|
1595 | 1595 | } |
1596 | 1596 | |
1597 | - if ( $dummy && $add_to_cache && is_array( $upload ) ) { |
|
1598 | - $images = get_transient( 'cached_dummy_images' ); |
|
1599 | - if ( is_array( $images ) ) { |
|
1600 | - $images[ $key ] = $upload; |
|
1597 | + if ($dummy && $add_to_cache && is_array($upload)) { |
|
1598 | + $images = get_transient('cached_dummy_images'); |
|
1599 | + if (is_array($images)) { |
|
1600 | + $images[$key] = $upload; |
|
1601 | 1601 | } else { |
1602 | - $images = array( $key => $upload ); |
|
1602 | + $images = array($key => $upload); |
|
1603 | 1603 | } |
1604 | 1604 | |
1605 | 1605 | //setting the cache using the WP Transient API |
1606 | - set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache |
|
1606 | + set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache |
|
1607 | 1607 | } |
1608 | 1608 | |
1609 | 1609 | return $upload; |
@@ -1617,12 +1617,12 @@ discard block |
||
1617 | 1617 | * @return string|void Max upload size. |
1618 | 1618 | */ |
1619 | 1619 | function geodir_max_upload_size() { |
1620 | - $max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 ); |
|
1620 | + $max_filesize = (float) get_option('geodir_upload_max_filesize', 2); |
|
1621 | 1621 | |
1622 | - if ( $max_filesize > 0 && $max_filesize < 1 ) { |
|
1623 | - $max_filesize = (int) ( $max_filesize * 1024 ) . 'kb'; |
|
1622 | + if ($max_filesize > 0 && $max_filesize < 1) { |
|
1623 | + $max_filesize = (int) ($max_filesize * 1024).'kb'; |
|
1624 | 1624 | } else { |
1625 | - $max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb'; |
|
1625 | + $max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb'; |
|
1626 | 1626 | } |
1627 | 1627 | |
1628 | 1628 | /** |
@@ -1632,7 +1632,7 @@ discard block |
||
1632 | 1632 | * |
1633 | 1633 | * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb. |
1634 | 1634 | */ |
1635 | - return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize ); |
|
1635 | + return apply_filters('geodir_default_image_upload_size_limit', $max_filesize); |
|
1636 | 1636 | } |
1637 | 1637 | |
1638 | 1638 | /** |
@@ -1645,8 +1645,8 @@ discard block |
||
1645 | 1645 | * @return bool If dummy folder exists returns true, else false. |
1646 | 1646 | */ |
1647 | 1647 | function geodir_dummy_folder_exists() { |
1648 | - $path = geodir_plugin_path() . '/geodirectory-admin/dummy/'; |
|
1649 | - if ( ! is_dir( $path ) ) { |
|
1648 | + $path = geodir_plugin_path().'/geodirectory-admin/dummy/'; |
|
1649 | + if (!is_dir($path)) { |
|
1650 | 1650 | return false; |
1651 | 1651 | } else { |
1652 | 1652 | return true; |
@@ -1665,17 +1665,17 @@ discard block |
||
1665 | 1665 | * |
1666 | 1666 | * @return object Author info. |
1667 | 1667 | */ |
1668 | -function geodir_get_author_info( $aid ) { |
|
1668 | +function geodir_get_author_info($aid) { |
|
1669 | 1669 | global $wpdb; |
1670 | 1670 | /*$infosql = "select * from $wpdb->users where ID=$aid";*/ |
1671 | - $infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) ); |
|
1672 | - $info = $wpdb->get_results( $infosql ); |
|
1673 | - if ( $info ) { |
|
1671 | + $infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid)); |
|
1672 | + $info = $wpdb->get_results($infosql); |
|
1673 | + if ($info) { |
|
1674 | 1674 | return $info[0]; |
1675 | 1675 | } |
1676 | 1676 | } |
1677 | 1677 | |
1678 | -if ( ! function_exists( 'adminEmail' ) ) { |
|
1678 | +if (!function_exists('adminEmail')) { |
|
1679 | 1679 | /** |
1680 | 1680 | * Send emails to client on post submission, renew etc. |
1681 | 1681 | * |
@@ -1688,67 +1688,67 @@ discard block |
||
1688 | 1688 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1689 | 1689 | * @param string $custom_1 Custom data to be sent. |
1690 | 1690 | */ |
1691 | - function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) { |
|
1691 | + function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') { |
|
1692 | 1692 | global $wpdb; |
1693 | - if ( $message_type == 'expiration' ) { |
|
1694 | - $subject = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) ); |
|
1695 | - $client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) ); |
|
1696 | - } elseif ( $message_type == 'post_submited' ) { |
|
1697 | - $subject = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' ); |
|
1698 | - $client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' ); |
|
1699 | - } elseif ( $message_type == 'renew' ) { |
|
1700 | - $subject = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' ); |
|
1701 | - $client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' ); |
|
1702 | - } elseif ( $message_type == 'upgrade' ) { |
|
1703 | - $subject = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' ); |
|
1704 | - $client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' ); |
|
1705 | - } elseif ( $message_type == 'claim_approved' ) { |
|
1706 | - $subject = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' ); |
|
1707 | - $client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' ); |
|
1708 | - } elseif ( $message_type == 'claim_rejected' ) { |
|
1709 | - $subject = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' ); |
|
1710 | - $client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' ); |
|
1711 | - } elseif ( $message_type == 'claim_requested' ) { |
|
1712 | - $subject = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' ); |
|
1713 | - $client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' ); |
|
1714 | - } elseif ( $message_type == 'auto_claim' ) { |
|
1715 | - $subject = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' ); |
|
1716 | - $client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' ); |
|
1717 | - } elseif ( $message_type == 'payment_success' ) { |
|
1718 | - $subject = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' ); |
|
1719 | - $client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' ); |
|
1720 | - } elseif ( $message_type == 'payment_fail' ) { |
|
1721 | - $subject = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' ); |
|
1722 | - $client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' ); |
|
1693 | + if ($message_type == 'expiration') { |
|
1694 | + $subject = stripslashes(__(get_option('renew_email_subject'), 'geodirectory')); |
|
1695 | + $client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory')); |
|
1696 | + } elseif ($message_type == 'post_submited') { |
|
1697 | + $subject = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory'); |
|
1698 | + $client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory'); |
|
1699 | + } elseif ($message_type == 'renew') { |
|
1700 | + $subject = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory'); |
|
1701 | + $client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory'); |
|
1702 | + } elseif ($message_type == 'upgrade') { |
|
1703 | + $subject = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory'); |
|
1704 | + $client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory'); |
|
1705 | + } elseif ($message_type == 'claim_approved') { |
|
1706 | + $subject = __(get_option('claim_approved_email_subject'), 'geodirectory'); |
|
1707 | + $client_message = __(get_option('claim_approved_email_content'), 'geodirectory'); |
|
1708 | + } elseif ($message_type == 'claim_rejected') { |
|
1709 | + $subject = __(get_option('claim_rejected_email_subject'), 'geodirectory'); |
|
1710 | + $client_message = __(get_option('claim_rejected_email_content'), 'geodirectory'); |
|
1711 | + } elseif ($message_type == 'claim_requested') { |
|
1712 | + $subject = __(get_option('claim_email_subject_admin'), 'geodirectory'); |
|
1713 | + $client_message = __(get_option('claim_email_content_admin'), 'geodirectory'); |
|
1714 | + } elseif ($message_type == 'auto_claim') { |
|
1715 | + $subject = __(get_option('auto_claim_email_subject'), 'geodirectory'); |
|
1716 | + $client_message = __(get_option('auto_claim_email_content'), 'geodirectory'); |
|
1717 | + } elseif ($message_type == 'payment_success') { |
|
1718 | + $subject = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory'); |
|
1719 | + $client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory'); |
|
1720 | + } elseif ($message_type == 'payment_fail') { |
|
1721 | + $subject = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory'); |
|
1722 | + $client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory'); |
|
1723 | 1723 | } |
1724 | 1724 | $transaction_details = $custom_1; |
1725 | - $fromEmail = get_option( 'site_email' ); |
|
1725 | + $fromEmail = get_option('site_email'); |
|
1726 | 1726 | $fromEmailName = get_site_emailName(); |
1727 | 1727 | //$alivedays = get_post_meta($page_id,'alive_days',true); |
1728 | - $pkg_limit = get_property_price_info_listing( $page_id ); |
|
1728 | + $pkg_limit = get_property_price_info_listing($page_id); |
|
1729 | 1729 | $alivedays = $pkg_limit['days']; |
1730 | - $productlink = get_permalink( $page_id ); |
|
1731 | - $post_info = get_post( $page_id ); |
|
1732 | - $post_date = date( 'dS F,Y', strtotime( $post_info->post_date ) ); |
|
1733 | - $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>'; |
|
1730 | + $productlink = get_permalink($page_id); |
|
1731 | + $post_info = get_post($page_id); |
|
1732 | + $post_date = date('dS F,Y', strtotime($post_info->post_date)); |
|
1733 | + $listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>'; |
|
1734 | 1734 | $loginurl = geodir_login_url(); |
1735 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
1735 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
1736 | 1736 | $siteurl = home_url(); |
1737 | - $siteurl_link = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>'; |
|
1738 | - $user_info = get_userdata( $user_id ); |
|
1737 | + $siteurl_link = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>'; |
|
1738 | + $user_info = get_userdata($user_id); |
|
1739 | 1739 | $user_email = $user_info->user_email; |
1740 | - $display_name = geodir_get_client_name( $user_id ); |
|
1740 | + $display_name = geodir_get_client_name($user_id); |
|
1741 | 1741 | $user_login = $user_info->user_login; |
1742 | - $number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' ); |
|
1743 | - if ( $number_of_grace_days == '' ) { |
|
1742 | + $number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days'); |
|
1743 | + if ($number_of_grace_days == '') { |
|
1744 | 1744 | $number_of_grace_days = 1; |
1745 | 1745 | } |
1746 | - if ( $post_info->post_type == 'event' ) { |
|
1746 | + if ($post_info->post_type == 'event') { |
|
1747 | 1747 | $post_type = 'event'; |
1748 | 1748 | } else { |
1749 | 1749 | $post_type = 'listing'; |
1750 | 1750 | } |
1751 | - $renew_link = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>'; |
|
1751 | + $renew_link = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>'; |
|
1752 | 1752 | $search_array = array( |
1753 | 1753 | '[#client_name#]', |
1754 | 1754 | '[#listing_link#]', |
@@ -1764,7 +1764,7 @@ discard block |
||
1764 | 1764 | '[#site_name#]', |
1765 | 1765 | '[#transaction_details#]' |
1766 | 1766 | ); |
1767 | - $replace_array = array( |
|
1767 | + $replace_array = array( |
|
1768 | 1768 | $display_name, |
1769 | 1769 | $listingLink, |
1770 | 1770 | $post_date, |
@@ -1779,11 +1779,11 @@ discard block |
||
1779 | 1779 | $fromEmailName, |
1780 | 1780 | $transaction_details |
1781 | 1781 | ); |
1782 | - $client_message = str_replace( $search_array, $replace_array, $client_message ); |
|
1783 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
1784 | - $headers = 'MIME-Version: 1.0' . "\r\n"; |
|
1785 | - $headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n"; |
|
1786 | - $headers .= 'From: ' . $fromEmailName . ' <' . $fromEmail . '>' . "\r\n"; |
|
1782 | + $client_message = str_replace($search_array, $replace_array, $client_message); |
|
1783 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
1784 | + $headers = 'MIME-Version: 1.0'."\r\n"; |
|
1785 | + $headers .= 'Content-type: text/html; charset=UTF-8'."\r\n"; |
|
1786 | + $headers .= 'From: '.$fromEmailName.' <'.$fromEmail.'>'."\r\n"; |
|
1787 | 1787 | |
1788 | 1788 | $to = $fromEmail; |
1789 | 1789 | $message = $client_message; |
@@ -1801,7 +1801,7 @@ discard block |
||
1801 | 1801 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1802 | 1802 | * @param string $custom_1 Custom data to be sent. |
1803 | 1803 | */ |
1804 | - $to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 ); |
|
1804 | + $to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1); |
|
1805 | 1805 | /** |
1806 | 1806 | * Filter the admin email subject. |
1807 | 1807 | * |
@@ -1814,7 +1814,7 @@ discard block |
||
1814 | 1814 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1815 | 1815 | * @param string $custom_1 Custom data to be sent. |
1816 | 1816 | */ |
1817 | - $subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 ); |
|
1817 | + $subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1); |
|
1818 | 1818 | /** |
1819 | 1819 | * Filter the admin email message. |
1820 | 1820 | * |
@@ -1827,7 +1827,7 @@ discard block |
||
1827 | 1827 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1828 | 1828 | * @param string $custom_1 Custom data to be sent. |
1829 | 1829 | */ |
1830 | - $message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 ); |
|
1830 | + $message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1); |
|
1831 | 1831 | /** |
1832 | 1832 | * Filter the admin email headers. |
1833 | 1833 | * |
@@ -1840,22 +1840,22 @@ discard block |
||
1840 | 1840 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1841 | 1841 | * @param string $custom_1 Custom data to be sent. |
1842 | 1842 | */ |
1843 | - $headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 ); |
|
1843 | + $headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1); |
|
1844 | 1844 | |
1845 | 1845 | |
1846 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
1847 | - if ( ! $sent ) { |
|
1848 | - if ( is_array( $to ) ) { |
|
1849 | - $to = implode( ',', $to ); |
|
1846 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
1847 | + if (!$sent) { |
|
1848 | + if (is_array($to)) { |
|
1849 | + $to = implode(',', $to); |
|
1850 | 1850 | } |
1851 | 1851 | $log_message = sprintf( |
1852 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
1852 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'), |
|
1853 | 1853 | $message_type, |
1854 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
1854 | + date_i18n('F j Y H:i:s', current_time('timestamp')), |
|
1855 | 1855 | $to, |
1856 | 1856 | $subject |
1857 | 1857 | ); |
1858 | - geodir_error_log( $log_message ); |
|
1858 | + geodir_error_log($log_message); |
|
1859 | 1859 | } |
1860 | 1860 | } |
1861 | 1861 | } |
@@ -1875,12 +1875,12 @@ discard block |
||
1875 | 1875 | * |
1876 | 1876 | * @return array Category IDs. |
1877 | 1877 | */ |
1878 | -function gd_lang_object_ids( $ids_array, $type ) { |
|
1879 | - if ( function_exists( 'icl_object_id' ) ) { |
|
1878 | +function gd_lang_object_ids($ids_array, $type) { |
|
1879 | + if (function_exists('icl_object_id')) { |
|
1880 | 1880 | $res = array(); |
1881 | - foreach ( $ids_array as $id ) { |
|
1882 | - $xlat = icl_object_id( $id, $type, false ); |
|
1883 | - if ( ! is_null( $xlat ) ) { |
|
1881 | + foreach ($ids_array as $id) { |
|
1882 | + $xlat = icl_object_id($id, $type, false); |
|
1883 | + if (!is_null($xlat)) { |
|
1884 | 1884 | $res[] = $xlat; |
1885 | 1885 | } |
1886 | 1886 | } |
@@ -1904,20 +1904,20 @@ discard block |
||
1904 | 1904 | * |
1905 | 1905 | * @return array Modified Body CSS classes. |
1906 | 1906 | */ |
1907 | -function geodir_custom_posts_body_class( $classes ) { |
|
1907 | +function geodir_custom_posts_body_class($classes) { |
|
1908 | 1908 | global $wpdb, $wp; |
1909 | - $post_types = geodir_get_posttypes( 'object' ); |
|
1910 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) { |
|
1909 | + $post_types = geodir_get_posttypes('object'); |
|
1910 | + if (!empty($post_types) && count((array) $post_types) > 1) { |
|
1911 | 1911 | $classes[] = 'geodir_custom_posts'; |
1912 | 1912 | } |
1913 | 1913 | |
1914 | 1914 | // fix body class for signup page |
1915 | - if ( geodir_is_page( 'login' ) ) { |
|
1915 | + if (geodir_is_page('login')) { |
|
1916 | 1916 | $new_classes = array(); |
1917 | 1917 | $new_classes[] = 'signup page-geodir-signup'; |
1918 | - if ( ! empty( $classes ) ) { |
|
1919 | - foreach ( $classes as $class ) { |
|
1920 | - if ( $class && $class != 'home' && $class != 'blog' ) { |
|
1918 | + if (!empty($classes)) { |
|
1919 | + foreach ($classes as $class) { |
|
1920 | + if ($class && $class != 'home' && $class != 'blog') { |
|
1921 | 1921 | $new_classes[] = $class; |
1922 | 1922 | } |
1923 | 1923 | } |
@@ -1925,14 +1925,14 @@ discard block |
||
1925 | 1925 | $classes = $new_classes; |
1926 | 1926 | } |
1927 | 1927 | |
1928 | - if ( geodir_is_geodir_page() ) { |
|
1928 | + if (geodir_is_geodir_page()) { |
|
1929 | 1929 | $classes[] = 'geodir-page'; |
1930 | 1930 | } |
1931 | 1931 | |
1932 | 1932 | return $classes; |
1933 | 1933 | } |
1934 | 1934 | |
1935 | -add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search |
|
1935 | +add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search |
|
1936 | 1936 | |
1937 | 1937 | |
1938 | 1938 | /** |
@@ -1948,7 +1948,7 @@ discard block |
||
1948 | 1948 | * |
1949 | 1949 | * @since 1.0.0 |
1950 | 1950 | */ |
1951 | - return apply_filters( 'geodir_map_zoom_level', array( |
|
1951 | + return apply_filters('geodir_map_zoom_level', array( |
|
1952 | 1952 | 1, |
1953 | 1953 | 2, |
1954 | 1954 | 3, |
@@ -1968,7 +1968,7 @@ discard block |
||
1968 | 1968 | 17, |
1969 | 1969 | 18, |
1970 | 1970 | 19 |
1971 | - ) ); |
|
1971 | + )); |
|
1972 | 1972 | |
1973 | 1973 | } |
1974 | 1974 | |
@@ -1981,12 +1981,12 @@ discard block |
||
1981 | 1981 | * |
1982 | 1982 | * @param string $geodir_option_name Option key. |
1983 | 1983 | */ |
1984 | -function geodir_option_version_backup( $geodir_option_name ) { |
|
1984 | +function geodir_option_version_backup($geodir_option_name) { |
|
1985 | 1985 | $version_date = time(); |
1986 | - $geodir_option = get_option( $geodir_option_name ); |
|
1986 | + $geodir_option = get_option($geodir_option_name); |
|
1987 | 1987 | |
1988 | - if ( ! empty( $geodir_option ) ) { |
|
1989 | - add_option( $geodir_option_name . '_' . $version_date, $geodir_option ); |
|
1988 | + if (!empty($geodir_option)) { |
|
1989 | + add_option($geodir_option_name.'_'.$version_date, $geodir_option); |
|
1990 | 1990 | } |
1991 | 1991 | } |
1992 | 1992 | |
@@ -2000,10 +2000,10 @@ discard block |
||
2000 | 2000 | * |
2001 | 2001 | * @return int Page ID. |
2002 | 2002 | */ |
2003 | -function get_page_id_geodir_add_listing_page( $page_id ) { |
|
2004 | - if ( geodir_wpml_multilingual_status() ) { |
|
2003 | +function get_page_id_geodir_add_listing_page($page_id) { |
|
2004 | + if (geodir_wpml_multilingual_status()) { |
|
2005 | 2005 | $post_type = 'post_page'; |
2006 | - $page_id = geodir_get_wpml_element_id( $page_id, $post_type ); |
|
2006 | + $page_id = geodir_get_wpml_element_id($page_id, $post_type); |
|
2007 | 2007 | } |
2008 | 2008 | |
2009 | 2009 | return $page_id; |
@@ -2017,7 +2017,7 @@ discard block |
||
2017 | 2017 | * @return bool Returns true when sitepress multilingual CMS active. else returns false. |
2018 | 2018 | */ |
2019 | 2019 | function geodir_wpml_multilingual_status() { |
2020 | - if ( function_exists( 'icl_object_id' ) ) { |
|
2020 | + if (function_exists('icl_object_id')) { |
|
2021 | 2021 | return true; |
2022 | 2022 | } |
2023 | 2023 | |
@@ -2035,19 +2035,19 @@ discard block |
||
2035 | 2035 | * |
2036 | 2036 | * @return int Element ID when exists. Else the page id. |
2037 | 2037 | */ |
2038 | -function geodir_get_wpml_element_id( $page_id, $post_type ) { |
|
2038 | +function geodir_get_wpml_element_id($page_id, $post_type) { |
|
2039 | 2039 | global $sitepress; |
2040 | - if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) { |
|
2041 | - $trid = $sitepress->get_element_trid( $page_id, $post_type ); |
|
2040 | + if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) { |
|
2041 | + $trid = $sitepress->get_element_trid($page_id, $post_type); |
|
2042 | 2042 | |
2043 | - if ( $trid > 0 ) { |
|
2044 | - $translations = $sitepress->get_element_translations( $trid, $post_type ); |
|
2043 | + if ($trid > 0) { |
|
2044 | + $translations = $sitepress->get_element_translations($trid, $post_type); |
|
2045 | 2045 | |
2046 | 2046 | $lang = $sitepress->get_current_language(); |
2047 | 2047 | $lang = $lang ? $lang : $sitepress->get_default_language(); |
2048 | 2048 | |
2049 | - if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) { |
|
2050 | - $page_id = $translations[ $lang ]->element_id; |
|
2049 | + if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) { |
|
2050 | + $page_id = $translations[$lang]->element_id; |
|
2051 | 2051 | } |
2052 | 2052 | } |
2053 | 2053 | } |
@@ -2064,15 +2064,15 @@ discard block |
||
2064 | 2064 | */ |
2065 | 2065 | function geodir_wpml_check_element_id() { |
2066 | 2066 | global $sitepress; |
2067 | - if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) { |
|
2067 | + if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) { |
|
2068 | 2068 | $el_type = 'post_page'; |
2069 | - $el_id = get_option( 'geodir_add_listing_page' ); |
|
2069 | + $el_id = get_option('geodir_add_listing_page'); |
|
2070 | 2070 | $default_lang = $sitepress->get_default_language(); |
2071 | - $el_details = $sitepress->get_element_language_details( $el_id, $el_type ); |
|
2071 | + $el_details = $sitepress->get_element_language_details($el_id, $el_type); |
|
2072 | 2072 | |
2073 | - if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) { |
|
2074 | - if ( ! $el_details->source_language_code ) { |
|
2075 | - $sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang ); |
|
2073 | + if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) { |
|
2074 | + if (!$el_details->source_language_code) { |
|
2075 | + $sitepress->set_element_language_details($el_id, $el_type, '', $default_lang); |
|
2076 | 2076 | $sitepress->icl_translations_cache->clear(); |
2077 | 2077 | } |
2078 | 2078 | } |
@@ -2091,41 +2091,41 @@ discard block |
||
2091 | 2091 | * |
2092 | 2092 | * @return string Orderby SQL. |
2093 | 2093 | */ |
2094 | -function geodir_widget_listings_get_order( $query_args ) { |
|
2094 | +function geodir_widget_listings_get_order($query_args) { |
|
2095 | 2095 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2096 | 2096 | |
2097 | 2097 | $query_args = $gd_query_args_widgets; |
2098 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2099 | - return $wpdb->posts . ".post_date DESC, "; |
|
2098 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2099 | + return $wpdb->posts.".post_date DESC, "; |
|
2100 | 2100 | } |
2101 | 2101 | |
2102 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
2103 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2102 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
2103 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2104 | 2104 | |
2105 | - $sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : ''; |
|
2105 | + $sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : ''; |
|
2106 | 2106 | |
2107 | - switch ( $sort_by ) { |
|
2107 | + switch ($sort_by) { |
|
2108 | 2108 | case 'latest': |
2109 | 2109 | case 'newest': |
2110 | - $orderby = $wpdb->posts . ".post_date DESC, "; |
|
2110 | + $orderby = $wpdb->posts.".post_date DESC, "; |
|
2111 | 2111 | break; |
2112 | 2112 | case 'featured': |
2113 | - $orderby = $table . ".is_featured ASC, "; |
|
2113 | + $orderby = $table.".is_featured ASC, "; |
|
2114 | 2114 | break; |
2115 | 2115 | case 'az': |
2116 | - $orderby = $wpdb->posts . ".post_title ASC, "; |
|
2116 | + $orderby = $wpdb->posts.".post_title ASC, "; |
|
2117 | 2117 | break; |
2118 | 2118 | case 'high_review': |
2119 | - $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, "; |
|
2119 | + $orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, "; |
|
2120 | 2120 | break; |
2121 | 2121 | case 'high_rating': |
2122 | - $orderby = "( " . $table . ".overall_rating ) DESC, "; |
|
2122 | + $orderby = "( ".$table.".overall_rating ) DESC, "; |
|
2123 | 2123 | break; |
2124 | 2124 | case 'random': |
2125 | 2125 | $orderby = "RAND(), "; |
2126 | 2126 | break; |
2127 | 2127 | default: |
2128 | - $orderby = $wpdb->posts . ".post_title ASC, "; |
|
2128 | + $orderby = $wpdb->posts.".post_title ASC, "; |
|
2129 | 2129 | break; |
2130 | 2130 | } |
2131 | 2131 | |
@@ -2147,15 +2147,15 @@ discard block |
||
2147 | 2147 | * |
2148 | 2148 | * @return mixed Result object. |
2149 | 2149 | */ |
2150 | -function geodir_get_widget_listings( $query_args = array(), $count_only = false ) { |
|
2150 | +function geodir_get_widget_listings($query_args = array(), $count_only = false) { |
|
2151 | 2151 | global $wpdb, $plugin_prefix, $table_prefix; |
2152 | 2152 | $GLOBALS['gd_query_args_widgets'] = $query_args; |
2153 | 2153 | $gd_query_args_widgets = $query_args; |
2154 | 2154 | |
2155 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
2156 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2155 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
2156 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2157 | 2157 | |
2158 | - $fields = $wpdb->posts . ".*, " . $table . ".*"; |
|
2158 | + $fields = $wpdb->posts.".*, ".$table.".*"; |
|
2159 | 2159 | /** |
2160 | 2160 | * Filter widget listing fields string part that is being used for query. |
2161 | 2161 | * |
@@ -2165,17 +2165,17 @@ discard block |
||
2165 | 2165 | * @param string $table Table name. |
2166 | 2166 | * @param string $post_type Post type. |
2167 | 2167 | */ |
2168 | - $fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type ); |
|
2168 | + $fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type); |
|
2169 | 2169 | |
2170 | - $join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)"; |
|
2170 | + $join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)"; |
|
2171 | 2171 | |
2172 | 2172 | ########### WPML ########### |
2173 | 2173 | |
2174 | - if ( function_exists( 'icl_object_id' ) ) { |
|
2174 | + if (function_exists('icl_object_id')) { |
|
2175 | 2175 | global $sitepress; |
2176 | 2176 | $lang_code = ICL_LANGUAGE_CODE; |
2177 | - if ( $lang_code ) { |
|
2178 | - $join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID"; |
|
2177 | + if ($lang_code) { |
|
2178 | + $join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID"; |
|
2179 | 2179 | } |
2180 | 2180 | } |
2181 | 2181 | |
@@ -2189,15 +2189,15 @@ discard block |
||
2189 | 2189 | * @param string $join Join clause string. |
2190 | 2190 | * @param string $post_type Post type. |
2191 | 2191 | */ |
2192 | - $join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type ); |
|
2192 | + $join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type); |
|
2193 | 2193 | |
2194 | - $post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : ''; |
|
2194 | + $post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : ''; |
|
2195 | 2195 | |
2196 | - $where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'"; |
|
2196 | + $where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'"; |
|
2197 | 2197 | |
2198 | 2198 | ########### WPML ########### |
2199 | - if ( function_exists( 'icl_object_id' ) ) { |
|
2200 | - if ( $lang_code ) { |
|
2199 | + if (function_exists('icl_object_id')) { |
|
2200 | + if ($lang_code) { |
|
2201 | 2201 | $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' "; |
2202 | 2202 | } |
2203 | 2203 | } |
@@ -2210,8 +2210,8 @@ discard block |
||
2210 | 2210 | * @param string $where Where clause string. |
2211 | 2211 | * @param string $post_type Post type. |
2212 | 2212 | */ |
2213 | - $where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type ); |
|
2214 | - $where = $where != '' ? " WHERE 1=1 " . $where : ''; |
|
2213 | + $where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type); |
|
2214 | + $where = $where != '' ? " WHERE 1=1 ".$where : ''; |
|
2215 | 2215 | |
2216 | 2216 | $groupby = " GROUP BY $wpdb->posts.ID "; |
2217 | 2217 | /** |
@@ -2222,15 +2222,15 @@ discard block |
||
2222 | 2222 | * @param string $groupby Group by clause string. |
2223 | 2223 | * @param string $post_type Post type. |
2224 | 2224 | */ |
2225 | - $groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type ); |
|
2225 | + $groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type); |
|
2226 | 2226 | |
2227 | - if ( $count_only ) { |
|
2228 | - $sql = "SELECT COUNT(" . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . " |
|
2229 | - " . $join . " |
|
2227 | + if ($count_only) { |
|
2228 | + $sql = "SELECT COUNT(".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts." |
|
2229 | + " . $join." |
|
2230 | 2230 | " . $where; |
2231 | - $rows = (int) $wpdb->get_var( $sql ); |
|
2231 | + $rows = (int) $wpdb->get_var($sql); |
|
2232 | 2232 | } else { |
2233 | - $orderby = geodir_widget_listings_get_order( $query_args ); |
|
2233 | + $orderby = geodir_widget_listings_get_order($query_args); |
|
2234 | 2234 | /** |
2235 | 2235 | * Filter widget listing orderby clause string part that is being used for query. |
2236 | 2236 | * |
@@ -2240,11 +2240,11 @@ discard block |
||
2240 | 2240 | * @param string $table Table name. |
2241 | 2241 | * @param string $post_type Post type. |
2242 | 2242 | */ |
2243 | - $orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type ); |
|
2244 | - $orderby .= $wpdb->posts . ".post_title ASC"; |
|
2245 | - $orderby = $orderby != '' ? " ORDER BY " . $orderby : ''; |
|
2243 | + $orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type); |
|
2244 | + $orderby .= $wpdb->posts.".post_title ASC"; |
|
2245 | + $orderby = $orderby != '' ? " ORDER BY ".$orderby : ''; |
|
2246 | 2246 | |
2247 | - $limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5; |
|
2247 | + $limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5; |
|
2248 | 2248 | /** |
2249 | 2249 | * Filter widget listing limit that is being used for query. |
2250 | 2250 | * |
@@ -2253,26 +2253,26 @@ discard block |
||
2253 | 2253 | * @param int $limit Query results limit. |
2254 | 2254 | * @param string $post_type Post type. |
2255 | 2255 | */ |
2256 | - $limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type ); |
|
2256 | + $limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type); |
|
2257 | 2257 | |
2258 | - $page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1; |
|
2259 | - if ( ! $page ) { |
|
2258 | + $page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1; |
|
2259 | + if (!$page) { |
|
2260 | 2260 | $page = 1; |
2261 | 2261 | } |
2262 | 2262 | |
2263 | - $limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : ""; |
|
2263 | + $limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : ""; |
|
2264 | 2264 | |
2265 | - $sql = "SELECT SQL_CALC_FOUND_ROWS " . $fields . " FROM " . $wpdb->posts . " |
|
2266 | - " . $join . " |
|
2267 | - " . $where . " |
|
2268 | - " . $groupby . " |
|
2269 | - " . $orderby . " |
|
2265 | + $sql = "SELECT SQL_CALC_FOUND_ROWS ".$fields." FROM ".$wpdb->posts." |
|
2266 | + " . $join." |
|
2267 | + " . $where." |
|
2268 | + " . $groupby." |
|
2269 | + " . $orderby." |
|
2270 | 2270 | " . $limit; |
2271 | - $rows = $wpdb->get_results( $sql ); |
|
2271 | + $rows = $wpdb->get_results($sql); |
|
2272 | 2272 | } |
2273 | 2273 | |
2274 | - unset( $GLOBALS['gd_query_args_widgets'] ); |
|
2275 | - unset( $gd_query_args_widgets ); |
|
2274 | + unset($GLOBALS['gd_query_args_widgets']); |
|
2275 | + unset($gd_query_args_widgets); |
|
2276 | 2276 | |
2277 | 2277 | return $rows; |
2278 | 2278 | } |
@@ -2289,11 +2289,11 @@ discard block |
||
2289 | 2289 | * |
2290 | 2290 | * @return string Modified fields SQL. |
2291 | 2291 | */ |
2292 | -function geodir_function_widget_listings_fields( $fields ) { |
|
2292 | +function geodir_function_widget_listings_fields($fields) { |
|
2293 | 2293 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2294 | 2294 | |
2295 | 2295 | $query_args = $gd_query_args_widgets; |
2296 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2296 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2297 | 2297 | return $fields; |
2298 | 2298 | } |
2299 | 2299 | |
@@ -2312,24 +2312,24 @@ discard block |
||
2312 | 2312 | * |
2313 | 2313 | * @return string Modified join clause SQL. |
2314 | 2314 | */ |
2315 | -function geodir_function_widget_listings_join( $join ) { |
|
2315 | +function geodir_function_widget_listings_join($join) { |
|
2316 | 2316 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2317 | 2317 | |
2318 | 2318 | $query_args = $gd_query_args_widgets; |
2319 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2319 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2320 | 2320 | return $join; |
2321 | 2321 | } |
2322 | 2322 | |
2323 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
2324 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2323 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
2324 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2325 | 2325 | |
2326 | - if ( ! empty( $query_args['with_pics_only'] ) ) { |
|
2327 | - $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )"; |
|
2326 | + if (!empty($query_args['with_pics_only'])) { |
|
2327 | + $join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )"; |
|
2328 | 2328 | } |
2329 | 2329 | |
2330 | - if ( ! empty( $query_args['tax_query'] ) ) { |
|
2331 | - $tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' ); |
|
2332 | - if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) { |
|
2330 | + if (!empty($query_args['tax_query'])) { |
|
2331 | + $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID'); |
|
2332 | + if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) { |
|
2333 | 2333 | $join .= $tax_queries['join']; |
2334 | 2334 | } |
2335 | 2335 | } |
@@ -2349,49 +2349,49 @@ discard block |
||
2349 | 2349 | * |
2350 | 2350 | * @return string Modified where clause SQL. |
2351 | 2351 | */ |
2352 | -function geodir_function_widget_listings_where( $where ) { |
|
2352 | +function geodir_function_widget_listings_where($where) { |
|
2353 | 2353 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2354 | 2354 | |
2355 | 2355 | $query_args = $gd_query_args_widgets; |
2356 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2356 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2357 | 2357 | return $where; |
2358 | 2358 | } |
2359 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
2360 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2359 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
2360 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2361 | 2361 | |
2362 | - if ( ! empty( $query_args ) ) { |
|
2363 | - if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) { |
|
2364 | - $where = geodir_default_location_where( $where, $table ); |
|
2362 | + if (!empty($query_args)) { |
|
2363 | + if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) { |
|
2364 | + $where = geodir_default_location_where($where, $table); |
|
2365 | 2365 | } |
2366 | 2366 | |
2367 | - if ( ! empty( $query_args['post_author'] ) ) { |
|
2368 | - $where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author']; |
|
2367 | + if (!empty($query_args['post_author'])) { |
|
2368 | + $where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author']; |
|
2369 | 2369 | } |
2370 | 2370 | |
2371 | - if ( ! empty( $query_args['show_featured_only'] ) ) { |
|
2372 | - $where .= " AND " . $table . ".is_featured = '1'"; |
|
2371 | + if (!empty($query_args['show_featured_only'])) { |
|
2372 | + $where .= " AND ".$table.".is_featured = '1'"; |
|
2373 | 2373 | } |
2374 | 2374 | |
2375 | - if ( ! empty( $query_args['show_special_only'] ) ) { |
|
2376 | - $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )"; |
|
2375 | + if (!empty($query_args['show_special_only'])) { |
|
2376 | + $where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )"; |
|
2377 | 2377 | } |
2378 | 2378 | |
2379 | - if ( ! empty( $query_args['with_pics_only'] ) ) { |
|
2380 | - $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL "; |
|
2379 | + if (!empty($query_args['with_pics_only'])) { |
|
2380 | + $where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL "; |
|
2381 | 2381 | } |
2382 | 2382 | |
2383 | - if ( ! empty( $query_args['featured_image_only'] ) ) { |
|
2384 | - $where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' "; |
|
2383 | + if (!empty($query_args['featured_image_only'])) { |
|
2384 | + $where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' "; |
|
2385 | 2385 | } |
2386 | 2386 | |
2387 | - if ( ! empty( $query_args['with_videos_only'] ) ) { |
|
2388 | - $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )"; |
|
2387 | + if (!empty($query_args['with_videos_only'])) { |
|
2388 | + $where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )"; |
|
2389 | 2389 | } |
2390 | 2390 | |
2391 | - if ( ! empty( $query_args['tax_query'] ) ) { |
|
2392 | - $tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' ); |
|
2391 | + if (!empty($query_args['tax_query'])) { |
|
2392 | + $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID'); |
|
2393 | 2393 | |
2394 | - if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) { |
|
2394 | + if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) { |
|
2395 | 2395 | $where .= $tax_queries['where']; |
2396 | 2396 | } |
2397 | 2397 | } |
@@ -2412,11 +2412,11 @@ discard block |
||
2412 | 2412 | * |
2413 | 2413 | * @return string Modified orderby clause SQL. |
2414 | 2414 | */ |
2415 | -function geodir_function_widget_listings_orderby( $orderby ) { |
|
2415 | +function geodir_function_widget_listings_orderby($orderby) { |
|
2416 | 2416 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2417 | 2417 | |
2418 | 2418 | $query_args = $gd_query_args_widgets; |
2419 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2419 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2420 | 2420 | return $orderby; |
2421 | 2421 | } |
2422 | 2422 | |
@@ -2435,15 +2435,15 @@ discard block |
||
2435 | 2435 | * |
2436 | 2436 | * @return int Query limit. |
2437 | 2437 | */ |
2438 | -function geodir_function_widget_listings_limit( $limit ) { |
|
2438 | +function geodir_function_widget_listings_limit($limit) { |
|
2439 | 2439 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2440 | 2440 | |
2441 | 2441 | $query_args = $gd_query_args_widgets; |
2442 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2442 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2443 | 2443 | return $limit; |
2444 | 2444 | } |
2445 | 2445 | |
2446 | - if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) { |
|
2446 | + if (!empty($query_args) && !empty($query_args['posts_per_page'])) { |
|
2447 | 2447 | $limit = (int) $query_args['posts_per_page']; |
2448 | 2448 | } |
2449 | 2449 | |
@@ -2461,12 +2461,12 @@ discard block |
||
2461 | 2461 | * |
2462 | 2462 | * @return int Large size width. |
2463 | 2463 | */ |
2464 | -function geodir_media_image_large_width( $default = 800, $params = '' ) { |
|
2465 | - $large_size_w = get_option( 'large_size_w' ); |
|
2464 | +function geodir_media_image_large_width($default = 800, $params = '') { |
|
2465 | + $large_size_w = get_option('large_size_w'); |
|
2466 | 2466 | $large_size_w = $large_size_w > 0 ? $large_size_w : $default; |
2467 | - $large_size_w = absint( $large_size_w ); |
|
2467 | + $large_size_w = absint($large_size_w); |
|
2468 | 2468 | |
2469 | - if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) { |
|
2469 | + if (!get_option('geodir_use_wp_media_large_size')) { |
|
2470 | 2470 | $large_size_w = 800; |
2471 | 2471 | } |
2472 | 2472 | |
@@ -2479,7 +2479,7 @@ discard block |
||
2479 | 2479 | * @param int $default Default width. |
2480 | 2480 | * @param string|array $params Image parameters. |
2481 | 2481 | */ |
2482 | - $large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params ); |
|
2482 | + $large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params); |
|
2483 | 2483 | |
2484 | 2484 | return $large_size_w; |
2485 | 2485 | } |
@@ -2495,12 +2495,12 @@ discard block |
||
2495 | 2495 | * |
2496 | 2496 | * @return int Large size height. |
2497 | 2497 | */ |
2498 | -function geodir_media_image_large_height( $default = 800, $params = '' ) { |
|
2499 | - $large_size_h = get_option( 'large_size_h' ); |
|
2498 | +function geodir_media_image_large_height($default = 800, $params = '') { |
|
2499 | + $large_size_h = get_option('large_size_h'); |
|
2500 | 2500 | $large_size_h = $large_size_h > 0 ? $large_size_h : $default; |
2501 | - $large_size_h = absint( $large_size_h ); |
|
2501 | + $large_size_h = absint($large_size_h); |
|
2502 | 2502 | |
2503 | - if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) { |
|
2503 | + if (!get_option('geodir_use_wp_media_large_size')) { |
|
2504 | 2504 | $large_size_h = 800; |
2505 | 2505 | } |
2506 | 2506 | |
@@ -2513,7 +2513,7 @@ discard block |
||
2513 | 2513 | * @param int $default Default height. |
2514 | 2514 | * @param string|array $params Image parameters. |
2515 | 2515 | */ |
2516 | - $large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params ); |
|
2516 | + $large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params); |
|
2517 | 2517 | |
2518 | 2518 | return $large_size_h; |
2519 | 2519 | } |
@@ -2530,8 +2530,8 @@ discard block |
||
2530 | 2530 | * |
2531 | 2531 | * @return string Sanitized name. |
2532 | 2532 | */ |
2533 | -function geodir_sanitize_location_name( $type, $name, $translate = true ) { |
|
2534 | - if ( $name == '' ) { |
|
2533 | +function geodir_sanitize_location_name($type, $name, $translate = true) { |
|
2534 | + if ($name == '') { |
|
2535 | 2535 | return null; |
2536 | 2536 | } |
2537 | 2537 | |
@@ -2540,13 +2540,13 @@ discard block |
||
2540 | 2540 | $type = $type == 'gd_city' ? 'city' : $type; |
2541 | 2541 | |
2542 | 2542 | $return = $name; |
2543 | - if ( function_exists( 'get_actual_location_name' ) ) { |
|
2544 | - $return = get_actual_location_name( $type, $name, $translate ); |
|
2543 | + if (function_exists('get_actual_location_name')) { |
|
2544 | + $return = get_actual_location_name($type, $name, $translate); |
|
2545 | 2545 | } else { |
2546 | - $return = preg_replace( '/-(\d+)$/', '', $return ); |
|
2547 | - $return = preg_replace( '/[_-]/', ' ', $return ); |
|
2548 | - $return = geodir_ucwords( $return ); |
|
2549 | - $return = $translate ? __( $return, 'geodirectory' ) : $return; |
|
2546 | + $return = preg_replace('/-(\d+)$/', '', $return); |
|
2547 | + $return = preg_replace('/[_-]/', ' ', $return); |
|
2548 | + $return = geodir_ucwords($return); |
|
2549 | + $return = $translate ? __($return, 'geodirectory') : $return; |
|
2550 | 2550 | } |
2551 | 2551 | |
2552 | 2552 | return $return; |
@@ -2561,14 +2561,14 @@ discard block |
||
2561 | 2561 | * |
2562 | 2562 | * @param int $number Comments number. |
2563 | 2563 | */ |
2564 | -function geodir_comments_number( $number ) { |
|
2564 | +function geodir_comments_number($number) { |
|
2565 | 2565 | |
2566 | - if ( $number > 1 ) { |
|
2567 | - $output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) ); |
|
2568 | - } elseif ( $number == 0 || $number == '' ) { |
|
2569 | - $output = __( 'No Reviews', 'geodirectory' ); |
|
2566 | + if ($number > 1) { |
|
2567 | + $output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory')); |
|
2568 | + } elseif ($number == 0 || $number == '') { |
|
2569 | + $output = __('No Reviews', 'geodirectory'); |
|
2570 | 2570 | } else { // must be one |
2571 | - $output = __( '1 Review', 'geodirectory' ); |
|
2571 | + $output = __('1 Review', 'geodirectory'); |
|
2572 | 2572 | } |
2573 | 2573 | echo $output; |
2574 | 2574 | } |
@@ -2583,18 +2583,18 @@ discard block |
||
2583 | 2583 | */ |
2584 | 2584 | function is_page_geodir_home() { |
2585 | 2585 | global $wpdb; |
2586 | - $cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() ); |
|
2587 | - if ( function_exists( 'geodir_location_geo_home_link' ) ) { |
|
2588 | - remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 ); |
|
2586 | + $cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL()); |
|
2587 | + if (function_exists('geodir_location_geo_home_link')) { |
|
2588 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
|
2589 | 2589 | } |
2590 | - $home_url = home_url( '', 'http' ); |
|
2591 | - if ( function_exists( 'geodir_location_geo_home_link' ) ) { |
|
2592 | - add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 ); |
|
2590 | + $home_url = home_url('', 'http'); |
|
2591 | + if (function_exists('geodir_location_geo_home_link')) { |
|
2592 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
|
2593 | 2593 | } |
2594 | - $home_url = str_replace( "www.", "", $home_url ); |
|
2595 | - if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) { |
|
2594 | + $home_url = str_replace("www.", "", $home_url); |
|
2595 | + if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) { |
|
2596 | 2596 | return true; |
2597 | - } elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) { |
|
2597 | + } elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) { |
|
2598 | 2598 | return true; |
2599 | 2599 | } else { |
2600 | 2600 | return false; |
@@ -2614,18 +2614,18 @@ discard block |
||
2614 | 2614 | * |
2615 | 2615 | * @return string The canonical URL. |
2616 | 2616 | */ |
2617 | -function geodir_wpseo_homepage_canonical( $url ) { |
|
2617 | +function geodir_wpseo_homepage_canonical($url) { |
|
2618 | 2618 | global $post; |
2619 | 2619 | |
2620 | - if ( is_page_geodir_home() ) { |
|
2620 | + if (is_page_geodir_home()) { |
|
2621 | 2621 | return home_url(); |
2622 | 2622 | } |
2623 | 2623 | |
2624 | 2624 | return $url; |
2625 | 2625 | } |
2626 | 2626 | |
2627 | -add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 ); |
|
2628 | -add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 ); |
|
2627 | +add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10); |
|
2628 | +add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10); |
|
2629 | 2629 | |
2630 | 2630 | /** |
2631 | 2631 | * Add extra fields to google maps script call. |
@@ -2638,20 +2638,20 @@ discard block |
||
2638 | 2638 | * |
2639 | 2639 | * @return string Modified extra string. |
2640 | 2640 | */ |
2641 | -function geodir_googlemap_script_extra_details_page( $extra ) { |
|
2641 | +function geodir_googlemap_script_extra_details_page($extra) { |
|
2642 | 2642 | global $post; |
2643 | 2643 | $add_google_places_api = false; |
2644 | - if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) { |
|
2644 | + if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) { |
|
2645 | 2645 | $add_google_places_api = true; |
2646 | 2646 | } |
2647 | - if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) { |
|
2647 | + if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) { |
|
2648 | 2648 | $extra .= "&libraries=places"; |
2649 | 2649 | } |
2650 | 2650 | |
2651 | 2651 | return $extra; |
2652 | 2652 | } |
2653 | 2653 | |
2654 | -add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 ); |
|
2654 | +add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1); |
|
2655 | 2655 | |
2656 | 2656 | |
2657 | 2657 | /** |
@@ -2669,99 +2669,99 @@ discard block |
||
2669 | 2669 | * after_widget. |
2670 | 2670 | * @param array|string $instance The settings for the particular instance of the widget. |
2671 | 2671 | */ |
2672 | -function geodir_popular_post_category_output( $args = '', $instance = '' ) { |
|
2672 | +function geodir_popular_post_category_output($args = '', $instance = '') { |
|
2673 | 2673 | // prints the widget |
2674 | 2674 | global $wpdb, $plugin_prefix, $geodir_post_category_str; |
2675 | - extract( $args, EXTR_SKIP ); |
|
2675 | + extract($args, EXTR_SKIP); |
|
2676 | 2676 | |
2677 | 2677 | echo $before_widget; |
2678 | 2678 | |
2679 | 2679 | /** This filter is documented in geodirectory_widgets.php */ |
2680 | - $title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
2680 | + $title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
2681 | 2681 | |
2682 | 2682 | $gd_post_type = geodir_get_current_posttype(); |
2683 | 2683 | |
2684 | - $category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15; |
|
2685 | - if ( ! empty( $gd_post_type ) ) { |
|
2684 | + $category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15; |
|
2685 | + if (!empty($gd_post_type)) { |
|
2686 | 2686 | $default_post_type = $gd_post_type; |
2687 | - } elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) { |
|
2687 | + } elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) { |
|
2688 | 2688 | $default_post_type = $instance['default_post_type']; |
2689 | 2689 | } else { |
2690 | 2690 | $all_gd_post_type = geodir_get_posttypes(); |
2691 | - $default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : ''; |
|
2691 | + $default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : ''; |
|
2692 | 2692 | } |
2693 | - $parent_only = !empty( $instance['parent_only'] ) ? true : false; |
|
2693 | + $parent_only = !empty($instance['parent_only']) ? true : false; |
|
2694 | 2694 | |
2695 | 2695 | $taxonomy = array(); |
2696 | - if ( ! empty( $gd_post_type ) ) { |
|
2697 | - $taxonomy[] = $gd_post_type . "category"; |
|
2696 | + if (!empty($gd_post_type)) { |
|
2697 | + $taxonomy[] = $gd_post_type."category"; |
|
2698 | 2698 | } else { |
2699 | - $taxonomy = geodir_get_taxonomies( $gd_post_type ); |
|
2699 | + $taxonomy = geodir_get_taxonomies($gd_post_type); |
|
2700 | 2700 | } |
2701 | 2701 | |
2702 | - $term_args = array( 'taxonomy' => $taxonomy ); |
|
2703 | - if ( $parent_only ) { |
|
2702 | + $term_args = array('taxonomy' => $taxonomy); |
|
2703 | + if ($parent_only) { |
|
2704 | 2704 | $term_args['parent'] = 0; |
2705 | 2705 | } |
2706 | 2706 | |
2707 | - $terms = get_terms( $term_args ); |
|
2707 | + $terms = get_terms($term_args); |
|
2708 | 2708 | $a_terms = array(); |
2709 | 2709 | $b_terms = array(); |
2710 | 2710 | |
2711 | - foreach ( $terms as $term ) { |
|
2712 | - if ( $term->count > 0 ) { |
|
2713 | - $a_terms[ $term->taxonomy ][] = $term; |
|
2711 | + foreach ($terms as $term) { |
|
2712 | + if ($term->count > 0) { |
|
2713 | + $a_terms[$term->taxonomy][] = $term; |
|
2714 | 2714 | } |
2715 | 2715 | } |
2716 | 2716 | |
2717 | - if ( ! empty( $a_terms ) ) { |
|
2718 | - foreach ( $a_terms as $b_key => $b_val ) { |
|
2719 | - $b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' ); |
|
2717 | + if (!empty($a_terms)) { |
|
2718 | + foreach ($a_terms as $b_key => $b_val) { |
|
2719 | + $b_terms[$b_key] = geodir_sort_terms($b_val, 'count'); |
|
2720 | 2720 | } |
2721 | 2721 | |
2722 | - $default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : ''; |
|
2722 | + $default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : ''; |
|
2723 | 2723 | |
2724 | 2724 | $tax_change_output = ''; |
2725 | - if ( count( $b_terms ) > 1 ) { |
|
2726 | - $tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax' onchange='geodir_get_post_term(this);'>"; |
|
2727 | - foreach ( $b_terms as $key => $val ) { |
|
2728 | - $ptype = get_post_type_object( str_replace( "category", "", $key ) ); |
|
2729 | - $cpt_name = __( $ptype->labels->singular_name, 'geodirectory' ); |
|
2730 | - $tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>"; |
|
2725 | + if (count($b_terms) > 1) { |
|
2726 | + $tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax' onchange='geodir_get_post_term(this);'>"; |
|
2727 | + foreach ($b_terms as $key => $val) { |
|
2728 | + $ptype = get_post_type_object(str_replace("category", "", $key)); |
|
2729 | + $cpt_name = __($ptype->labels->singular_name, 'geodirectory'); |
|
2730 | + $tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>"; |
|
2731 | 2731 | } |
2732 | 2732 | $tax_change_output .= "</select>"; |
2733 | 2733 | } |
2734 | 2734 | |
2735 | - if ( ! empty( $b_terms ) ) { |
|
2736 | - $terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array |
|
2737 | - global $cat_count;//make global so we can change via function |
|
2735 | + if (!empty($b_terms)) { |
|
2736 | + $terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array |
|
2737 | + global $cat_count; //make global so we can change via function |
|
2738 | 2738 | $cat_count = 0; |
2739 | 2739 | ?> |
2740 | 2740 | <div class="geodir-category-list-in clearfix"> |
2741 | 2741 | <div class="geodir-cat-list clearfix"> |
2742 | 2742 | <?php |
2743 | - echo $before_title . __( $title ) . $after_title; |
|
2743 | + echo $before_title.__($title).$after_title; |
|
2744 | 2744 | |
2745 | 2745 | echo $tax_change_output; |
2746 | 2746 | |
2747 | 2747 | echo '<ul class="geodir-popular-cat-list">'; |
2748 | 2748 | |
2749 | - geodir_helper_cat_list_output( $terms, $category_limit ); |
|
2749 | + geodir_helper_cat_list_output($terms, $category_limit); |
|
2750 | 2750 | |
2751 | 2751 | echo '</ul>'; |
2752 | 2752 | ?> |
2753 | 2753 | </div> |
2754 | 2754 | <?php |
2755 | 2755 | $hide = ''; |
2756 | - if ( $cat_count < $category_limit ) { |
|
2756 | + if ($cat_count < $category_limit) { |
|
2757 | 2757 | $hide = 'style="display:none;"'; |
2758 | 2758 | } |
2759 | 2759 | echo "<div class='geodir-cat-list-more' $hide >"; |
2760 | - echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>'; |
|
2761 | - echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>'; |
|
2760 | + echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>'; |
|
2761 | + echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>'; |
|
2762 | 2762 | echo "</div>"; |
2763 | 2763 | /* add scripts */ |
2764 | - add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 ); |
|
2764 | + add_action('wp_footer', 'geodir_popular_category_add_scripts', 100); |
|
2765 | 2765 | ?> |
2766 | 2766 | </div> |
2767 | 2767 | <?php |
@@ -2780,25 +2780,25 @@ discard block |
||
2780 | 2780 | * @param array $terms An array of term objects. |
2781 | 2781 | * @param int $category_limit Number of categories to display by default. |
2782 | 2782 | */ |
2783 | -function geodir_helper_cat_list_output( $terms, $category_limit ) { |
|
2783 | +function geodir_helper_cat_list_output($terms, $category_limit) { |
|
2784 | 2784 | global $geodir_post_category_str, $cat_count; |
2785 | 2785 | $term_icons = geodir_get_term_icon(); |
2786 | 2786 | |
2787 | 2787 | $geodir_post_category_str = array(); |
2788 | 2788 | |
2789 | 2789 | |
2790 | - foreach ( $terms as $cat ) { |
|
2791 | - $post_type = str_replace( "category", "", $cat->taxonomy ); |
|
2792 | - $term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : ''; |
|
2790 | + foreach ($terms as $cat) { |
|
2791 | + $post_type = str_replace("category", "", $cat->taxonomy); |
|
2792 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : ''; |
|
2793 | 2793 | |
2794 | - $cat_count ++; |
|
2794 | + $cat_count++; |
|
2795 | 2795 | |
2796 | - $geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id ); |
|
2796 | + $geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id); |
|
2797 | 2797 | |
2798 | 2798 | $class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show'; |
2799 | 2799 | $total_post = $cat->count; |
2800 | 2800 | |
2801 | - $term_link = get_term_link( $cat, $cat->taxonomy ); |
|
2801 | + $term_link = get_term_link($cat, $cat->taxonomy); |
|
2802 | 2802 | /** |
2803 | 2803 | * Filer the category term link. |
2804 | 2804 | * |
@@ -2808,11 +2808,11 @@ discard block |
||
2808 | 2808 | * @param int $cat ->term_id The term id. |
2809 | 2809 | * @param string $post_type Wordpress post type. |
2810 | 2810 | */ |
2811 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type ); |
|
2811 | + $term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type); |
|
2812 | 2812 | |
2813 | - echo '<li class="' . $class_row . '"><a href="' . $term_link . '">'; |
|
2814 | - echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">'; |
|
2815 | - echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> '; |
|
2813 | + echo '<li class="'.$class_row.'"><a href="'.$term_link.'">'; |
|
2814 | + echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">'; |
|
2815 | + echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> '; |
|
2816 | 2816 | echo '</a></li>'; |
2817 | 2817 | } |
2818 | 2818 | } |
@@ -2827,14 +2827,14 @@ discard block |
||
2827 | 2827 | * @param array|string $args Display arguments including before_title, after_title, before_widget, and after_widget. |
2828 | 2828 | * @param array|string $instance The settings for the particular instance of the widget. |
2829 | 2829 | */ |
2830 | -function geodir_listing_slider_widget_output( $args = '', $instance = '' ) { |
|
2830 | +function geodir_listing_slider_widget_output($args = '', $instance = '') { |
|
2831 | 2831 | // prints the widget |
2832 | - extract( $args, EXTR_SKIP ); |
|
2832 | + extract($args, EXTR_SKIP); |
|
2833 | 2833 | |
2834 | 2834 | echo $before_widget; |
2835 | 2835 | |
2836 | 2836 | /** This filter is documented in geodirectory_widgets.php */ |
2837 | - $title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
2837 | + $title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
2838 | 2838 | /** |
2839 | 2839 | * Filter the widget post type. |
2840 | 2840 | * |
@@ -2842,7 +2842,7 @@ discard block |
||
2842 | 2842 | * |
2843 | 2843 | * @param string $instance ['post_type'] Post type of listing. |
2844 | 2844 | */ |
2845 | - $post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] ); |
|
2845 | + $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']); |
|
2846 | 2846 | /** |
2847 | 2847 | * Filter the widget's term. |
2848 | 2848 | * |
@@ -2850,7 +2850,7 @@ discard block |
||
2850 | 2850 | * |
2851 | 2851 | * @param string $instance ['category'] Filter by term. Can be any valid term. |
2852 | 2852 | */ |
2853 | - $category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] ); |
|
2853 | + $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']); |
|
2854 | 2854 | /** |
2855 | 2855 | * Filter widget's "add_location_filter" value. |
2856 | 2856 | * |
@@ -2858,7 +2858,7 @@ discard block |
||
2858 | 2858 | * |
2859 | 2859 | * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0. |
2860 | 2860 | */ |
2861 | - $add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] ); |
|
2861 | + $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']); |
|
2862 | 2862 | /** |
2863 | 2863 | * Filter the widget listings limit. |
2864 | 2864 | * |
@@ -2866,7 +2866,7 @@ discard block |
||
2866 | 2866 | * |
2867 | 2867 | * @param string $instance ['post_number'] Number of listings to display. |
2868 | 2868 | */ |
2869 | - $post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] ); |
|
2869 | + $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']); |
|
2870 | 2870 | /** |
2871 | 2871 | * Filter the widget listings limit shown at one time. |
2872 | 2872 | * |
@@ -2874,7 +2874,7 @@ discard block |
||
2874 | 2874 | * |
2875 | 2875 | * @param string $instance ['max_show'] Number of listings to display on screen. |
2876 | 2876 | */ |
2877 | - $max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] ); |
|
2877 | + $max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']); |
|
2878 | 2878 | /** |
2879 | 2879 | * Filter the widget slide width. |
2880 | 2880 | * |
@@ -2882,7 +2882,7 @@ discard block |
||
2882 | 2882 | * |
2883 | 2883 | * @param string $instance ['slide_width'] Width of the slides shown. |
2884 | 2884 | */ |
2885 | - $slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] ); |
|
2885 | + $slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']); |
|
2886 | 2886 | /** |
2887 | 2887 | * Filter widget's "show title" value. |
2888 | 2888 | * |
@@ -2890,7 +2890,7 @@ discard block |
||
2890 | 2890 | * |
2891 | 2891 | * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0. |
2892 | 2892 | */ |
2893 | - $show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] ); |
|
2893 | + $show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']); |
|
2894 | 2894 | /** |
2895 | 2895 | * Filter widget's "slideshow" value. |
2896 | 2896 | * |
@@ -2898,7 +2898,7 @@ discard block |
||
2898 | 2898 | * |
2899 | 2899 | * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically. |
2900 | 2900 | */ |
2901 | - $slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] ); |
|
2901 | + $slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']); |
|
2902 | 2902 | /** |
2903 | 2903 | * Filter widget's "animationLoop" value. |
2904 | 2904 | * |
@@ -2906,7 +2906,7 @@ discard block |
||
2906 | 2906 | * |
2907 | 2907 | * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop. |
2908 | 2908 | */ |
2909 | - $animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] ); |
|
2909 | + $animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']); |
|
2910 | 2910 | /** |
2911 | 2911 | * Filter widget's "directionNav" value. |
2912 | 2912 | * |
@@ -2914,7 +2914,7 @@ discard block |
||
2914 | 2914 | * |
2915 | 2915 | * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0. |
2916 | 2916 | */ |
2917 | - $directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] ); |
|
2917 | + $directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']); |
|
2918 | 2918 | /** |
2919 | 2919 | * Filter widget's "slideshowSpeed" value. |
2920 | 2920 | * |
@@ -2922,7 +2922,7 @@ discard block |
||
2922 | 2922 | * |
2923 | 2923 | * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds. |
2924 | 2924 | */ |
2925 | - $slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] ); |
|
2925 | + $slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']); |
|
2926 | 2926 | /** |
2927 | 2927 | * Filter widget's "animationSpeed" value. |
2928 | 2928 | * |
@@ -2930,7 +2930,7 @@ discard block |
||
2930 | 2930 | * |
2931 | 2931 | * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds. |
2932 | 2932 | */ |
2933 | - $animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] ); |
|
2933 | + $animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']); |
|
2934 | 2934 | /** |
2935 | 2935 | * Filter widget's "animation" value. |
2936 | 2936 | * |
@@ -2938,7 +2938,7 @@ discard block |
||
2938 | 2938 | * |
2939 | 2939 | * @param string $instance ['animation'] Controls the animation type, "fade" or "slide". |
2940 | 2940 | */ |
2941 | - $animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] ); |
|
2941 | + $animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']); |
|
2942 | 2942 | /** |
2943 | 2943 | * Filter widget's "list_sort" type. |
2944 | 2944 | * |
@@ -2946,10 +2946,10 @@ discard block |
||
2946 | 2946 | * |
2947 | 2947 | * @param string $instance ['list_sort'] Listing sort by type. |
2948 | 2948 | */ |
2949 | - $list_sort = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] ); |
|
2950 | - $show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null; |
|
2949 | + $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']); |
|
2950 | + $show_featured_only = !empty($instance['show_featured_only']) ? 1 : null; |
|
2951 | 2951 | |
2952 | - wp_enqueue_script( 'geodirectory-jquery-flexslider-js' ); |
|
2952 | + wp_enqueue_script('geodirectory-jquery-flexslider-js'); |
|
2953 | 2953 | ?> |
2954 | 2954 | <script type="text/javascript"> |
2955 | 2955 | jQuery(window).load(function () { |
@@ -2964,23 +2964,23 @@ discard block |
||
2964 | 2964 | itemWidth: 75, |
2965 | 2965 | itemMargin: 5, |
2966 | 2966 | asNavFor: '#geodir_widget_slider', |
2967 | - rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?> |
|
2967 | + rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?> |
|
2968 | 2968 | }); |
2969 | 2969 | |
2970 | 2970 | jQuery('#geodir_widget_slider').flexslider({ |
2971 | - animation: "<?php echo $animation;?>", |
|
2971 | + animation: "<?php echo $animation; ?>", |
|
2972 | 2972 | selector: ".geodir-slides > li", |
2973 | 2973 | namespace: "geodir-", |
2974 | 2974 | controlNav: true, |
2975 | - animationLoop: <?php echo $animationLoop;?>, |
|
2976 | - slideshow: <?php echo $slideshow;?>, |
|
2977 | - slideshowSpeed: <?php echo $slideshowSpeed;?>, |
|
2978 | - animationSpeed: <?php echo $animationSpeed;?>, |
|
2979 | - directionNav: <?php echo $directionNav;?>, |
|
2980 | - maxItems: <?php echo $max_show;?>, |
|
2975 | + animationLoop: <?php echo $animationLoop; ?>, |
|
2976 | + slideshow: <?php echo $slideshow; ?>, |
|
2977 | + slideshowSpeed: <?php echo $slideshowSpeed; ?>, |
|
2978 | + animationSpeed: <?php echo $animationSpeed; ?>, |
|
2979 | + directionNav: <?php echo $directionNav; ?>, |
|
2980 | + maxItems: <?php echo $max_show; ?>, |
|
2981 | 2981 | move: 1, |
2982 | - <?php if ( $slide_width ) { |
|
2983 | - echo "itemWidth: " . $slide_width . ","; |
|
2982 | + <?php if ($slide_width) { |
|
2983 | + echo "itemWidth: ".$slide_width.","; |
|
2984 | 2984 | }?> |
2985 | 2985 | sync: "#geodir_widget_carousel", |
2986 | 2986 | start: function (slider) { |
@@ -2988,7 +2988,7 @@ discard block |
||
2988 | 2988 | jQuery('#geodir_widget_slider').css({'visibility': 'visible'}); |
2989 | 2989 | jQuery('#geodir_widget_carousel').css({'visibility': 'visible'}); |
2990 | 2990 | }, |
2991 | - rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?> |
|
2991 | + rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?> |
|
2992 | 2992 | }); |
2993 | 2993 | }); |
2994 | 2994 | </script> |
@@ -3001,62 +3001,62 @@ discard block |
||
3001 | 3001 | 'order_by' => $list_sort |
3002 | 3002 | ); |
3003 | 3003 | |
3004 | - if ( $show_featured_only ) { |
|
3004 | + if ($show_featured_only) { |
|
3005 | 3005 | $query_args['show_featured_only'] = 1; |
3006 | 3006 | } |
3007 | 3007 | |
3008 | - if ( $category != 0 || $category != '' ) { |
|
3009 | - $category_taxonomy = geodir_get_taxonomies( $post_type ); |
|
3008 | + if ($category != 0 || $category != '') { |
|
3009 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
3010 | 3010 | $tax_query = array( |
3011 | 3011 | 'taxonomy' => $category_taxonomy[0], |
3012 | 3012 | 'field' => 'id', |
3013 | 3013 | 'terms' => $category |
3014 | 3014 | ); |
3015 | 3015 | |
3016 | - $query_args['tax_query'] = array( $tax_query ); |
|
3016 | + $query_args['tax_query'] = array($tax_query); |
|
3017 | 3017 | } |
3018 | 3018 | |
3019 | 3019 | // we want listings with featured image only |
3020 | 3020 | $query_args['featured_image_only'] = 1; |
3021 | 3021 | |
3022 | - if ( $post_type == 'gd_event' ) { |
|
3022 | + if ($post_type == 'gd_event') { |
|
3023 | 3023 | $query_args['gedir_event_listing_filter'] = 'upcoming'; |
3024 | 3024 | }// show only upcoming events |
3025 | 3025 | |
3026 | - $widget_listings = geodir_get_widget_listings( $query_args ); |
|
3027 | - if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) { |
|
3028 | - if ( $title ) { |
|
3029 | - echo $before_title . $title . $after_title; |
|
3026 | + $widget_listings = geodir_get_widget_listings($query_args); |
|
3027 | + if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) { |
|
3028 | + if ($title) { |
|
3029 | + echo $before_title.$title.$after_title; |
|
3030 | 3030 | } |
3031 | 3031 | |
3032 | 3032 | global $post; |
3033 | 3033 | |
3034 | - $current_post = $post;// keep current post info |
|
3034 | + $current_post = $post; // keep current post info |
|
3035 | 3035 | |
3036 | 3036 | $widget_main_slides = ''; |
3037 | 3037 | $nav_slides = ''; |
3038 | 3038 | $widget_slides = 0; |
3039 | 3039 | |
3040 | - foreach ( $widget_listings as $widget_listing ) { |
|
3040 | + foreach ($widget_listings as $widget_listing) { |
|
3041 | 3041 | global $gd_widget_listing_type; |
3042 | 3042 | $post = $widget_listing; |
3043 | - $widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) ); |
|
3043 | + $widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img')); |
|
3044 | 3044 | |
3045 | - if ( ! empty( $widget_image ) ) { |
|
3046 | - if ( $widget_image->height >= 200 ) { |
|
3045 | + if (!empty($widget_image)) { |
|
3046 | + if ($widget_image->height >= 200) { |
|
3047 | 3047 | $widget_spacer_height = 0; |
3048 | 3048 | } else { |
3049 | - $widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 ); |
|
3049 | + $widget_spacer_height = ((200 - $widget_image->height) / 2); |
|
3050 | 3050 | } |
3051 | 3051 | |
3052 | - $widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />'; |
|
3052 | + $widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />'; |
|
3053 | 3053 | |
3054 | 3054 | $title = ''; |
3055 | - if ( $show_title ) { |
|
3056 | - $title_html = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>'; |
|
3055 | + if ($show_title) { |
|
3056 | + $title_html = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>'; |
|
3057 | 3057 | $post_id = $post->ID; |
3058 | - $post_permalink = get_permalink( $post->ID ); |
|
3059 | - $post_title = get_the_title( $post->ID ); |
|
3058 | + $post_permalink = get_permalink($post->ID); |
|
3059 | + $post_title = get_the_title($post->ID); |
|
3060 | 3060 | /** |
3061 | 3061 | * Filter the listing slider widget title. |
3062 | 3062 | * |
@@ -3067,12 +3067,12 @@ discard block |
||
3067 | 3067 | * @param string $post_permalink The post permalink url. |
3068 | 3068 | * @param string $post_title The post title text. |
3069 | 3069 | */ |
3070 | - $title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title ); |
|
3070 | + $title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title); |
|
3071 | 3071 | } |
3072 | 3072 | |
3073 | - $widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>'; |
|
3074 | - $nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>'; |
|
3075 | - $widget_slides ++; |
|
3073 | + $widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>'; |
|
3074 | + $nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>'; |
|
3075 | + $widget_slides++; |
|
3076 | 3076 | } |
3077 | 3077 | } |
3078 | 3078 | ?> |
@@ -3081,7 +3081,7 @@ discard block |
||
3081 | 3081 | <div id="geodir_widget_slider" class="geodir_flexslider"> |
3082 | 3082 | <ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul> |
3083 | 3083 | </div> |
3084 | - <?php if ( $widget_slides > 1 ) { ?> |
|
3084 | + <?php if ($widget_slides > 1) { ?> |
|
3085 | 3085 | <div id="geodir_widget_carousel" class="geodir_flexslider"> |
3086 | 3086 | <ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul> |
3087 | 3087 | </div> |
@@ -3089,7 +3089,7 @@ discard block |
||
3089 | 3089 | </div> |
3090 | 3090 | <?php |
3091 | 3091 | $GLOBALS['post'] = $current_post; |
3092 | - setup_postdata( $current_post ); |
|
3092 | + setup_postdata($current_post); |
|
3093 | 3093 | } |
3094 | 3094 | echo $after_widget; |
3095 | 3095 | } |
@@ -3105,46 +3105,46 @@ discard block |
||
3105 | 3105 | * @param array|string $args Display arguments including before_title, after_title, before_widget, and after_widget. |
3106 | 3106 | * @param array|string $instance The settings for the particular instance of the widget. |
3107 | 3107 | */ |
3108 | -function geodir_loginwidget_output( $args = '', $instance = '' ) { |
|
3108 | +function geodir_loginwidget_output($args = '', $instance = '') { |
|
3109 | 3109 | //print_r($args); |
3110 | 3110 | //print_r($instance); |
3111 | 3111 | // prints the widget |
3112 | - extract( $args, EXTR_SKIP ); |
|
3112 | + extract($args, EXTR_SKIP); |
|
3113 | 3113 | |
3114 | 3114 | /** This filter is documented in geodirectory_widgets.php */ |
3115 | - $title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
3115 | + $title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory')); |
|
3116 | 3116 | |
3117 | 3117 | echo $before_widget; |
3118 | - echo $before_title . $title . $after_title; |
|
3118 | + echo $before_title.$title.$after_title; |
|
3119 | 3119 | |
3120 | - if ( is_user_logged_in() ) { |
|
3120 | + if (is_user_logged_in()) { |
|
3121 | 3121 | global $current_user; |
3122 | 3122 | |
3123 | - $author_link = get_author_posts_url( $current_user->data->ID ); |
|
3124 | - $author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false ); |
|
3123 | + $author_link = get_author_posts_url($current_user->data->ID); |
|
3124 | + $author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false); |
|
3125 | 3125 | |
3126 | 3126 | echo '<ul class="geodir-loginbox-list">'; |
3127 | 3127 | ob_start(); |
3128 | 3128 | ?> |
3129 | 3129 | <li><a class="signin" |
3130 | - href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li> |
|
3130 | + href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li> |
|
3131 | 3131 | <?php |
3132 | - $post_types = geodir_get_posttypes( 'object' ); |
|
3133 | - $show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' ); |
|
3134 | - $geodir_allow_posttype_frontend = get_option( 'geodir_allow_posttype_frontend' ); |
|
3132 | + $post_types = geodir_get_posttypes('object'); |
|
3133 | + $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard'); |
|
3134 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend'); |
|
3135 | 3135 | |
3136 | - if ( ! empty( $show_add_listing_post_types_main_nav ) ) { |
|
3136 | + if (!empty($show_add_listing_post_types_main_nav)) { |
|
3137 | 3137 | $addlisting_links = ''; |
3138 | - foreach ( $post_types as $key => $postobj ) { |
|
3138 | + foreach ($post_types as $key => $postobj) { |
|
3139 | 3139 | |
3140 | - if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) { |
|
3140 | + if (in_array($key, $show_add_listing_post_types_main_nav)) { |
|
3141 | 3141 | |
3142 | - if ( $add_link = geodir_get_addlisting_link( $key ) ) { |
|
3142 | + if ($add_link = geodir_get_addlisting_link($key)) { |
|
3143 | 3143 | |
3144 | 3144 | $name = $postobj->labels->name; |
3145 | 3145 | |
3146 | 3146 | $selected = ''; |
3147 | - if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) { |
|
3147 | + if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) { |
|
3148 | 3148 | $selected = 'selected="selected"'; |
3149 | 3149 | } |
3150 | 3150 | |
@@ -3157,22 +3157,22 @@ discard block |
||
3157 | 3157 | * @param string $key Add listing array key. |
3158 | 3158 | * @param int $current_user ->ID Current user ID. |
3159 | 3159 | */ |
3160 | - $add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID ); |
|
3160 | + $add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID); |
|
3161 | 3161 | |
3162 | - $addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
3162 | + $addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
3163 | 3163 | |
3164 | 3164 | } |
3165 | 3165 | } |
3166 | 3166 | |
3167 | 3167 | } |
3168 | 3168 | |
3169 | - if ( $addlisting_links != '' ) { ?> |
|
3169 | + if ($addlisting_links != '') { ?> |
|
3170 | 3170 | |
3171 | 3171 | <li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value" |
3172 | 3172 | option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false" |
3173 | - data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>"> |
|
3173 | + data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>"> |
|
3174 | 3174 | <option value="" disabled="disabled" selected="selected" |
3175 | - style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option> |
|
3175 | + style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option> |
|
3176 | 3176 | <?php echo $addlisting_links; ?> |
3177 | 3177 | </select></li> <?php |
3178 | 3178 | |
@@ -3180,23 +3180,23 @@ discard block |
||
3180 | 3180 | |
3181 | 3181 | } |
3182 | 3182 | // My Favourites in Dashboard |
3183 | - $show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' ); |
|
3183 | + $show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard'); |
|
3184 | 3184 | $user_favourite = geodir_user_favourite_listing_count(); |
3185 | 3185 | |
3186 | - if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) { |
|
3186 | + if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) { |
|
3187 | 3187 | $favourite_links = ''; |
3188 | 3188 | |
3189 | - foreach ( $post_types as $key => $postobj ) { |
|
3190 | - if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) { |
|
3189 | + foreach ($post_types as $key => $postobj) { |
|
3190 | + if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) { |
|
3191 | 3191 | $name = $postobj->labels->name; |
3192 | - $post_type_link = geodir_getlink( $author_link, array( |
|
3192 | + $post_type_link = geodir_getlink($author_link, array( |
|
3193 | 3193 | 'stype' => $key, |
3194 | 3194 | 'list' => 'favourite' |
3195 | - ), false ); |
|
3195 | + ), false); |
|
3196 | 3196 | |
3197 | 3197 | $selected = ''; |
3198 | 3198 | |
3199 | - if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) { |
|
3199 | + if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) { |
|
3200 | 3200 | $selected = 'selected="selected"'; |
3201 | 3201 | } |
3202 | 3202 | /** |
@@ -3208,20 +3208,20 @@ discard block |
||
3208 | 3208 | * @param string $key Favorite listing array key. |
3209 | 3209 | * @param int $current_user ->ID Current user ID. |
3210 | 3210 | */ |
3211 | - $post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID ); |
|
3211 | + $post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID); |
|
3212 | 3212 | |
3213 | - $favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
3213 | + $favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
3214 | 3214 | } |
3215 | 3215 | } |
3216 | 3216 | |
3217 | - if ( $favourite_links != '' ) { |
|
3217 | + if ($favourite_links != '') { |
|
3218 | 3218 | ?> |
3219 | 3219 | <li> |
3220 | 3220 | <select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value" |
3221 | 3221 | option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false" |
3222 | - data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>"> |
|
3222 | + data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>"> |
|
3223 | 3223 | <option value="" disabled="disabled" selected="selected" |
3224 | - style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option> |
|
3224 | + style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option> |
|
3225 | 3225 | <?php echo $favourite_links; ?> |
3226 | 3226 | </select> |
3227 | 3227 | </li> |
@@ -3230,19 +3230,19 @@ discard block |
||
3230 | 3230 | } |
3231 | 3231 | |
3232 | 3232 | |
3233 | - $show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' ); |
|
3233 | + $show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard'); |
|
3234 | 3234 | $user_listing = geodir_user_post_listing_count(); |
3235 | 3235 | |
3236 | - if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) { |
|
3236 | + if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) { |
|
3237 | 3237 | $listing_links = ''; |
3238 | 3238 | |
3239 | - foreach ( $post_types as $key => $postobj ) { |
|
3240 | - if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) { |
|
3239 | + foreach ($post_types as $key => $postobj) { |
|
3240 | + if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) { |
|
3241 | 3241 | $name = $postobj->labels->name; |
3242 | - $listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false ); |
|
3242 | + $listing_link = geodir_getlink($author_link, array('stype' => $key), false); |
|
3243 | 3243 | |
3244 | 3244 | $selected = ''; |
3245 | - if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) { |
|
3245 | + if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) { |
|
3246 | 3246 | $selected = 'selected="selected"'; |
3247 | 3247 | } |
3248 | 3248 | |
@@ -3255,20 +3255,20 @@ discard block |
||
3255 | 3255 | * @param string $key My listing array key. |
3256 | 3256 | * @param int $current_user ->ID Current user ID. |
3257 | 3257 | */ |
3258 | - $listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID ); |
|
3258 | + $listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID); |
|
3259 | 3259 | |
3260 | - $listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
3260 | + $listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
3261 | 3261 | } |
3262 | 3262 | } |
3263 | 3263 | |
3264 | - if ( $listing_links != '' ) { |
|
3264 | + if ($listing_links != '') { |
|
3265 | 3265 | ?> |
3266 | 3266 | <li> |
3267 | 3267 | <select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value" |
3268 | 3268 | option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false" |
3269 | - data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>"> |
|
3269 | + data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>"> |
|
3270 | 3270 | <option value="" disabled="disabled" selected="selected" |
3271 | - style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option> |
|
3271 | + style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option> |
|
3272 | 3272 | <?php echo $listing_links; ?> |
3273 | 3273 | </select> |
3274 | 3274 | </li> |
@@ -3284,7 +3284,7 @@ discard block |
||
3284 | 3284 | * |
3285 | 3285 | * @param string $dashboard_link Dashboard links HTML. |
3286 | 3286 | */ |
3287 | - echo apply_filters( 'geodir_dashboard_links', $dashboard_link ); |
|
3287 | + echo apply_filters('geodir_dashboard_links', $dashboard_link); |
|
3288 | 3288 | echo '</ul>'; |
3289 | 3289 | |
3290 | 3290 | /** |
@@ -3292,7 +3292,7 @@ discard block |
||
3292 | 3292 | * |
3293 | 3293 | * @since 1.6.6 |
3294 | 3294 | */ |
3295 | - do_action( 'geodir_after_loginwidget_form_logged_in' ); |
|
3295 | + do_action('geodir_after_loginwidget_form_logged_in'); |
|
3296 | 3296 | |
3297 | 3297 | |
3298 | 3298 | } else { |
@@ -3307,18 +3307,18 @@ discard block |
||
3307 | 3307 | <form name="loginform" class="loginform1" |
3308 | 3308 | action="<?php echo geodir_login_url(); ?>" |
3309 | 3309 | method="post"> |
3310 | - <div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log" |
|
3310 | + <div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log" |
|
3311 | 3311 | type="text" class="textfield user_login1"/> <span |
3312 | 3312 | class="user_loginInfo"></span></div> |
3313 | - <div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>" |
|
3313 | + <div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>" |
|
3314 | 3314 | name="pwd" type="password" |
3315 | 3315 | class="textfield user_pass1 input-text"/><span |
3316 | 3316 | class="user_passInfo"></span></div> |
3317 | 3317 | |
3318 | - <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/> |
|
3318 | + <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/> |
|
3319 | 3319 | <input type="hidden" name="testcookie" value="1"/> |
3320 | 3320 | |
3321 | - <?php do_action( 'login_form' ); ?> |
|
3321 | + <?php do_action('login_form'); ?> |
|
3322 | 3322 | |
3323 | 3323 | <div class="geodir_form_row clearfix"><input type="submit" name="submit" |
3324 | 3324 | value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/> |
@@ -3331,7 +3331,7 @@ discard block |
||
3331 | 3331 | * @since 1.0.0 |
3332 | 3332 | */ |
3333 | 3333 | ?> |
3334 | - <a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>" |
|
3334 | + <a href="<?php echo geodir_login_url(array('signup' => true)); ?>" |
|
3335 | 3335 | class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a> |
3336 | 3336 | |
3337 | 3337 | <?php |
@@ -3341,7 +3341,7 @@ discard block |
||
3341 | 3341 | * @since 1.0.0 |
3342 | 3342 | */ |
3343 | 3343 | ?> |
3344 | - <a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>" |
|
3344 | + <a href="<?php echo geodir_login_url(array('forgot' => true)); ?>" |
|
3345 | 3345 | class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div> |
3346 | 3346 | </form> |
3347 | 3347 | <?php |
@@ -3350,7 +3350,7 @@ discard block |
||
3350 | 3350 | * |
3351 | 3351 | * @since 1.6.6 |
3352 | 3352 | */ |
3353 | - do_action( 'geodir_after_loginwidget_form_logged_out' ); |
|
3353 | + do_action('geodir_after_loginwidget_form_logged_out'); |
|
3354 | 3354 | } |
3355 | 3355 | |
3356 | 3356 | echo $after_widget; |
@@ -3372,16 +3372,16 @@ discard block |
||
3372 | 3372 | * after_widget. |
3373 | 3373 | * @param array|string $instance The settings for the particular instance of the widget. |
3374 | 3374 | */ |
3375 | -function geodir_popular_postview_output( $args = '', $instance = '' ) { |
|
3375 | +function geodir_popular_postview_output($args = '', $instance = '') { |
|
3376 | 3376 | global $gd_session; |
3377 | 3377 | |
3378 | 3378 | // prints the widget |
3379 | - extract( $args, EXTR_SKIP ); |
|
3379 | + extract($args, EXTR_SKIP); |
|
3380 | 3380 | |
3381 | 3381 | echo $before_widget; |
3382 | 3382 | |
3383 | 3383 | /** This filter is documented in geodirectory_widgets.php */ |
3384 | - $title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
3384 | + $title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
3385 | 3385 | /** |
3386 | 3386 | * Filter the widget post type. |
3387 | 3387 | * |
@@ -3389,7 +3389,7 @@ discard block |
||
3389 | 3389 | * |
3390 | 3390 | * @param string $instance ['post_type'] Post type of listing. |
3391 | 3391 | */ |
3392 | - $post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] ); |
|
3392 | + $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']); |
|
3393 | 3393 | /** |
3394 | 3394 | * Filter the widget's term. |
3395 | 3395 | * |
@@ -3397,7 +3397,7 @@ discard block |
||
3397 | 3397 | * |
3398 | 3398 | * @param string $instance ['category'] Filter by term. Can be any valid term. |
3399 | 3399 | */ |
3400 | - $category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] ); |
|
3400 | + $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']); |
|
3401 | 3401 | /** |
3402 | 3402 | * Filter the widget listings limit. |
3403 | 3403 | * |
@@ -3405,7 +3405,7 @@ discard block |
||
3405 | 3405 | * |
3406 | 3406 | * @param string $instance ['post_number'] Number of listings to display. |
3407 | 3407 | */ |
3408 | - $post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] ); |
|
3408 | + $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']); |
|
3409 | 3409 | /** |
3410 | 3410 | * Filter widget's "layout" type. |
3411 | 3411 | * |
@@ -3413,7 +3413,7 @@ discard block |
||
3413 | 3413 | * |
3414 | 3414 | * @param string $instance ['layout'] Widget layout type. |
3415 | 3415 | */ |
3416 | - $layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] ); |
|
3416 | + $layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']); |
|
3417 | 3417 | /** |
3418 | 3418 | * Filter widget's "add_location_filter" value. |
3419 | 3419 | * |
@@ -3421,7 +3421,7 @@ discard block |
||
3421 | 3421 | * |
3422 | 3422 | * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0. |
3423 | 3423 | */ |
3424 | - $add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] ); |
|
3424 | + $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']); |
|
3425 | 3425 | /** |
3426 | 3426 | * Filter widget's listing width. |
3427 | 3427 | * |
@@ -3429,7 +3429,7 @@ discard block |
||
3429 | 3429 | * |
3430 | 3430 | * @param string $instance ['listing_width'] Listing width. |
3431 | 3431 | */ |
3432 | - $listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] ); |
|
3432 | + $listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']); |
|
3433 | 3433 | /** |
3434 | 3434 | * Filter widget's "list_sort" type. |
3435 | 3435 | * |
@@ -3437,25 +3437,25 @@ discard block |
||
3437 | 3437 | * |
3438 | 3438 | * @param string $instance ['list_sort'] Listing sort by type. |
3439 | 3439 | */ |
3440 | - $list_sort = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] ); |
|
3441 | - $use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false; |
|
3440 | + $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']); |
|
3441 | + $use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false; |
|
3442 | 3442 | |
3443 | 3443 | // set post type to current viewing post type |
3444 | - if ( $use_viewing_post_type ) { |
|
3444 | + if ($use_viewing_post_type) { |
|
3445 | 3445 | $current_post_type = geodir_get_current_posttype(); |
3446 | - if ( $current_post_type != '' && $current_post_type != $post_type ) { |
|
3446 | + if ($current_post_type != '' && $current_post_type != $post_type) { |
|
3447 | 3447 | $post_type = $current_post_type; |
3448 | 3448 | $category = array(); // old post type category will not work for current changed post type |
3449 | 3449 | } |
3450 | 3450 | } |
3451 | 3451 | // replace widget title dynamically |
3452 | - $posttype_plural_label = __( get_post_type_plural_label( $post_type ), 'geodirectory' ); |
|
3453 | - $posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' ); |
|
3452 | + $posttype_plural_label = __(get_post_type_plural_label($post_type), 'geodirectory'); |
|
3453 | + $posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory'); |
|
3454 | 3454 | |
3455 | - $title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title ); |
|
3456 | - $title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title ); |
|
3455 | + $title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title); |
|
3456 | + $title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title); |
|
3457 | 3457 | |
3458 | - if ( isset( $instance['character_count'] ) ) { |
|
3458 | + if (isset($instance['character_count'])) { |
|
3459 | 3459 | /** |
3460 | 3460 | * Filter the widget's excerpt character count. |
3461 | 3461 | * |
@@ -3463,37 +3463,37 @@ discard block |
||
3463 | 3463 | * |
3464 | 3464 | * @param int $instance ['character_count'] Excerpt character count. |
3465 | 3465 | */ |
3466 | - $character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] ); |
|
3466 | + $character_count = apply_filters('widget_list_character_count', $instance['character_count']); |
|
3467 | 3467 | } else { |
3468 | 3468 | $character_count = ''; |
3469 | 3469 | } |
3470 | 3470 | |
3471 | - if ( empty( $title ) || $title == 'All' ) { |
|
3472 | - $title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' ); |
|
3471 | + if (empty($title) || $title == 'All') { |
|
3472 | + $title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory'); |
|
3473 | 3473 | } |
3474 | 3474 | |
3475 | 3475 | $location_url = array(); |
3476 | - $city = get_query_var( 'gd_city' ); |
|
3477 | - if ( ! empty( $city ) ) { |
|
3478 | - $country = get_query_var( 'gd_country' ); |
|
3479 | - $region = get_query_var( 'gd_region' ); |
|
3476 | + $city = get_query_var('gd_city'); |
|
3477 | + if (!empty($city)) { |
|
3478 | + $country = get_query_var('gd_country'); |
|
3479 | + $region = get_query_var('gd_region'); |
|
3480 | 3480 | |
3481 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
3481 | + $geodir_show_location_url = get_option('geodir_show_location_url'); |
|
3482 | 3482 | |
3483 | - if ( $geodir_show_location_url == 'all' ) { |
|
3484 | - if ( $country != '' ) { |
|
3483 | + if ($geodir_show_location_url == 'all') { |
|
3484 | + if ($country != '') { |
|
3485 | 3485 | $location_url[] = $country; |
3486 | 3486 | } |
3487 | 3487 | |
3488 | - if ( $region != '' ) { |
|
3488 | + if ($region != '') { |
|
3489 | 3489 | $location_url[] = $region; |
3490 | 3490 | } |
3491 | - } else if ( $geodir_show_location_url == 'country_city' ) { |
|
3492 | - if ( $country != '' ) { |
|
3491 | + } else if ($geodir_show_location_url == 'country_city') { |
|
3492 | + if ($country != '') { |
|
3493 | 3493 | $location_url[] = $country; |
3494 | 3494 | } |
3495 | - } else if ( $geodir_show_location_url == 'region_city' ) { |
|
3496 | - if ( $region != '' ) { |
|
3495 | + } else if ($geodir_show_location_url == 'region_city') { |
|
3496 | + if ($region != '') { |
|
3497 | 3497 | $location_url[] = $region; |
3498 | 3498 | } |
3499 | 3499 | } |
@@ -3501,37 +3501,37 @@ discard block |
||
3501 | 3501 | $location_url[] = $city; |
3502 | 3502 | } |
3503 | 3503 | |
3504 | - $location_url = implode( '/', $location_url ); |
|
3504 | + $location_url = implode('/', $location_url); |
|
3505 | 3505 | $skip_location = false; |
3506 | - if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) { |
|
3506 | + if (!$add_location_filter && $gd_session->get('gd_multi_location')) { |
|
3507 | 3507 | $skip_location = true; |
3508 | - $gd_session->un_set( 'gd_multi_location' ); |
|
3508 | + $gd_session->un_set('gd_multi_location'); |
|
3509 | 3509 | } |
3510 | 3510 | |
3511 | - if ( get_option( 'permalink_structure' ) ) { |
|
3512 | - $viewall_url = get_post_type_archive_link( $post_type ); |
|
3511 | + if (get_option('permalink_structure')) { |
|
3512 | + $viewall_url = get_post_type_archive_link($post_type); |
|
3513 | 3513 | } else { |
3514 | - $viewall_url = get_post_type_archive_link( $post_type ); |
|
3514 | + $viewall_url = get_post_type_archive_link($post_type); |
|
3515 | 3515 | } |
3516 | 3516 | |
3517 | - if ( ! empty( $category ) && $category[0] != '0' ) { |
|
3517 | + if (!empty($category) && $category[0] != '0') { |
|
3518 | 3518 | global $geodir_add_location_url; |
3519 | 3519 | |
3520 | 3520 | $geodir_add_location_url = '0'; |
3521 | 3521 | |
3522 | - if ( $add_location_filter != '0' ) { |
|
3522 | + if ($add_location_filter != '0') { |
|
3523 | 3523 | $geodir_add_location_url = '1'; |
3524 | 3524 | } |
3525 | 3525 | |
3526 | - $viewall_url = get_term_link( (int) $category[0], $post_type . 'category' ); |
|
3526 | + $viewall_url = get_term_link((int) $category[0], $post_type.'category'); |
|
3527 | 3527 | |
3528 | 3528 | $geodir_add_location_url = null; |
3529 | 3529 | } |
3530 | - if ( $skip_location ) { |
|
3531 | - $gd_session->set( 'gd_multi_location', 1 ); |
|
3530 | + if ($skip_location) { |
|
3531 | + $gd_session->set('gd_multi_location', 1); |
|
3532 | 3532 | } |
3533 | 3533 | |
3534 | - if ( is_wp_error( $viewall_url ) ) { |
|
3534 | + if (is_wp_error($viewall_url)) { |
|
3535 | 3535 | $viewall_url = ''; |
3536 | 3536 | } |
3537 | 3537 | |
@@ -3543,34 +3543,34 @@ discard block |
||
3543 | 3543 | 'order_by' => $list_sort |
3544 | 3544 | ); |
3545 | 3545 | |
3546 | - if ( $character_count ) { |
|
3546 | + if ($character_count) { |
|
3547 | 3547 | $query_args['excerpt_length'] = $character_count; |
3548 | 3548 | } |
3549 | 3549 | |
3550 | - if ( ! empty( $instance['show_featured_only'] ) ) { |
|
3550 | + if (!empty($instance['show_featured_only'])) { |
|
3551 | 3551 | $query_args['show_featured_only'] = 1; |
3552 | 3552 | } |
3553 | 3553 | |
3554 | - if ( ! empty( $instance['show_special_only'] ) ) { |
|
3554 | + if (!empty($instance['show_special_only'])) { |
|
3555 | 3555 | $query_args['show_special_only'] = 1; |
3556 | 3556 | } |
3557 | 3557 | |
3558 | - if ( ! empty( $instance['with_pics_only'] ) ) { |
|
3558 | + if (!empty($instance['with_pics_only'])) { |
|
3559 | 3559 | $query_args['with_pics_only'] = 0; |
3560 | 3560 | $query_args['featured_image_only'] = 1; |
3561 | 3561 | } |
3562 | 3562 | |
3563 | - if ( ! empty( $instance['with_videos_only'] ) ) { |
|
3563 | + if (!empty($instance['with_videos_only'])) { |
|
3564 | 3564 | $query_args['with_videos_only'] = 1; |
3565 | 3565 | } |
3566 | - $with_no_results = ! empty( $instance['without_no_results'] ) ? false : true; |
|
3566 | + $with_no_results = !empty($instance['without_no_results']) ? false : true; |
|
3567 | 3567 | |
3568 | - if ( ! empty( $category ) && $category[0] != '0' ) { |
|
3569 | - $category_taxonomy = geodir_get_taxonomies( $post_type ); |
|
3568 | + if (!empty($category) && $category[0] != '0') { |
|
3569 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
3570 | 3570 | |
3571 | 3571 | ######### WPML ######### |
3572 | - if ( function_exists( 'icl_object_id' ) ) { |
|
3573 | - $category = gd_lang_object_ids( $category, $category_taxonomy[0] ); |
|
3572 | + if (function_exists('icl_object_id')) { |
|
3573 | + $category = gd_lang_object_ids($category, $category_taxonomy[0]); |
|
3574 | 3574 | } |
3575 | 3575 | ######### WPML ######### |
3576 | 3576 | |
@@ -3580,14 +3580,14 @@ discard block |
||
3580 | 3580 | 'terms' => $category |
3581 | 3581 | ); |
3582 | 3582 | |
3583 | - $query_args['tax_query'] = array( $tax_query ); |
|
3583 | + $query_args['tax_query'] = array($tax_query); |
|
3584 | 3584 | } |
3585 | 3585 | |
3586 | 3586 | global $gridview_columns_widget, $geodir_is_widget_listing; |
3587 | 3587 | |
3588 | - $widget_listings = geodir_get_widget_listings( $query_args ); |
|
3588 | + $widget_listings = geodir_get_widget_listings($query_args); |
|
3589 | 3589 | |
3590 | - if ( ! empty( $widget_listings ) || $with_no_results ) { |
|
3590 | + if (!empty($widget_listings) || $with_no_results) { |
|
3591 | 3591 | ?> |
3592 | 3592 | <div class="geodir_locations geodir_location_listing"> |
3593 | 3593 | |
@@ -3597,11 +3597,11 @@ discard block |
||
3597 | 3597 | * |
3598 | 3598 | * @since 1.0.0 |
3599 | 3599 | */ |
3600 | - do_action( 'geodir_before_view_all_link_in_widget' ); ?> |
|
3600 | + do_action('geodir_before_view_all_link_in_widget'); ?> |
|
3601 | 3601 | <div class="geodir_list_heading clearfix"> |
3602 | - <?php echo $before_title . $title . $after_title; ?> |
|
3602 | + <?php echo $before_title.$title.$after_title; ?> |
|
3603 | 3603 | <a href="<?php echo $viewall_url; ?>" |
3604 | - class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a> |
|
3604 | + class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a> |
|
3605 | 3605 | </div> |
3606 | 3606 | <?php |
3607 | 3607 | /** |
@@ -3609,10 +3609,10 @@ discard block |
||
3609 | 3609 | * |
3610 | 3610 | * @since 1.0.0 |
3611 | 3611 | */ |
3612 | - do_action( 'geodir_after_view_all_link_in_widget' ); ?> |
|
3612 | + do_action('geodir_after_view_all_link_in_widget'); ?> |
|
3613 | 3613 | <?php |
3614 | - if ( strstr( $layout, 'gridview' ) ) { |
|
3615 | - $listing_view_exp = explode( '_', $layout ); |
|
3614 | + if (strstr($layout, 'gridview')) { |
|
3615 | + $listing_view_exp = explode('_', $layout); |
|
3616 | 3616 | $gridview_columns_widget = $layout; |
3617 | 3617 | $layout = $listing_view_exp[0]; |
3618 | 3618 | } else { |
@@ -3624,8 +3624,8 @@ discard block |
||
3624 | 3624 | * |
3625 | 3625 | * @since 1.0.0 |
3626 | 3626 | */ |
3627 | - $template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) ); |
|
3628 | - if ( ! isset( $character_count ) ) { |
|
3627 | + $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview')); |
|
3628 | + if (!isset($character_count)) { |
|
3629 | 3629 | /** |
3630 | 3630 | * Filter the widget's excerpt character count. |
3631 | 3631 | * |
@@ -3633,7 +3633,7 @@ discard block |
||
3633 | 3633 | * |
3634 | 3634 | * @param int $instance ['character_count'] Excerpt character count. |
3635 | 3635 | */ |
3636 | - $character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count ); |
|
3636 | + $character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count); |
|
3637 | 3637 | } |
3638 | 3638 | |
3639 | 3639 | global $post, $map_jason, $map_canvas_arr; |
@@ -3648,13 +3648,13 @@ discard block |
||
3648 | 3648 | * |
3649 | 3649 | * @since 1.0.0 |
3650 | 3650 | */ |
3651 | - include( $template ); |
|
3651 | + include($template); |
|
3652 | 3652 | |
3653 | 3653 | $geodir_is_widget_listing = false; |
3654 | 3654 | |
3655 | 3655 | $GLOBALS['post'] = $current_post; |
3656 | - if ( ! empty( $current_post ) ) { |
|
3657 | - setup_postdata( $current_post ); |
|
3656 | + if (!empty($current_post)) { |
|
3657 | + setup_postdata($current_post); |
|
3658 | 3658 | } |
3659 | 3659 | $map_jason = $current_map_jason; |
3660 | 3660 | $map_canvas_arr = $current_map_canvas_arr; |
@@ -3685,12 +3685,12 @@ discard block |
||
3685 | 3685 | * |
3686 | 3686 | * @return int Reviews count. |
3687 | 3687 | */ |
3688 | -function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) { |
|
3688 | +function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) { |
|
3689 | 3689 | global $wpdb, $plugin_prefix; |
3690 | 3690 | |
3691 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
3691 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
3692 | 3692 | |
3693 | - $sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")"; |
|
3693 | + $sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")"; |
|
3694 | 3694 | |
3695 | 3695 | /** |
3696 | 3696 | * Filter count review sql query. |
@@ -3702,9 +3702,9 @@ discard block |
||
3702 | 3702 | * @param int $taxonomy The taxonomy Id. |
3703 | 3703 | * @param string $post_type The post type. |
3704 | 3704 | */ |
3705 | - $sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type ); |
|
3705 | + $sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type); |
|
3706 | 3706 | |
3707 | - $count = $wpdb->get_var( $sql ); |
|
3707 | + $count = $wpdb->get_var($sql); |
|
3708 | 3708 | |
3709 | 3709 | return $count; |
3710 | 3710 | } |
@@ -3722,7 +3722,7 @@ discard block |
||
3722 | 3722 | * |
3723 | 3723 | * @return array Term array data. |
3724 | 3724 | */ |
3725 | -function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) { |
|
3725 | +function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) { |
|
3726 | 3726 | /** |
3727 | 3727 | * Filter review count option data. |
3728 | 3728 | * |
@@ -3732,78 +3732,78 @@ discard block |
||
3732 | 3732 | * @param bool $force_update Force update option value?. Default.false. |
3733 | 3733 | * @param int $post_ID The post id to update if any. |
3734 | 3734 | */ |
3735 | - $option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID ); |
|
3736 | - if ( ! empty( $option_data ) ) { |
|
3735 | + $option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID); |
|
3736 | + if (!empty($option_data)) { |
|
3737 | 3737 | return $option_data; |
3738 | 3738 | } |
3739 | 3739 | |
3740 | - $option_data = get_option( 'geodir_global_review_count' ); |
|
3740 | + $option_data = get_option('geodir_global_review_count'); |
|
3741 | 3741 | |
3742 | - if ( ! $option_data || $force_update ) { |
|
3743 | - if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only. |
|
3742 | + if (!$option_data || $force_update) { |
|
3743 | + if ((int) $post_ID > 0) { // Update reviews count for specific post categories only. |
|
3744 | 3744 | global $gd_session; |
3745 | 3745 | $term_array = (array) $option_data; |
3746 | - $post_type = get_post_type( $post_ID ); |
|
3747 | - $taxonomy = $post_type . 'category'; |
|
3748 | - $terms = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) ); |
|
3749 | - |
|
3750 | - if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) { |
|
3751 | - foreach ( $terms as $term_id ) { |
|
3752 | - $count = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ); |
|
3753 | - $children = get_term_children( $term_id, $taxonomy ); |
|
3754 | - $term_array[ $term_id ] = $count; |
|
3746 | + $post_type = get_post_type($post_ID); |
|
3747 | + $taxonomy = $post_type.'category'; |
|
3748 | + $terms = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids')); |
|
3749 | + |
|
3750 | + if (!empty($terms) && !is_wp_error($terms)) { |
|
3751 | + foreach ($terms as $term_id) { |
|
3752 | + $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type); |
|
3753 | + $children = get_term_children($term_id, $taxonomy); |
|
3754 | + $term_array[$term_id] = $count; |
|
3755 | 3755 | } |
3756 | 3756 | } |
3757 | 3757 | |
3758 | - $session_listing = $gd_session->get( 'listing' ); |
|
3758 | + $session_listing = $gd_session->get('listing'); |
|
3759 | 3759 | |
3760 | 3760 | $terms = array(); |
3761 | - if ( isset( $_POST['post_category'][ $taxonomy ] ) ) { |
|
3762 | - $terms = (array) $_POST['post_category'][ $taxonomy ]; |
|
3763 | - } else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) { |
|
3764 | - $terms = (array) $session_listing['post_category'][ $taxonomy ]; |
|
3761 | + if (isset($_POST['post_category'][$taxonomy])) { |
|
3762 | + $terms = (array) $_POST['post_category'][$taxonomy]; |
|
3763 | + } else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) { |
|
3764 | + $terms = (array) $session_listing['post_category'][$taxonomy]; |
|
3765 | 3765 | } |
3766 | 3766 | |
3767 | - if ( ! empty( $terms ) ) { |
|
3768 | - foreach ( $terms as $term_id ) { |
|
3769 | - if ( $term_id > 0 ) { |
|
3770 | - $count = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ); |
|
3771 | - $children = get_term_children( $term_id, $taxonomy ); |
|
3772 | - $term_array[ $term_id ] = $count; |
|
3767 | + if (!empty($terms)) { |
|
3768 | + foreach ($terms as $term_id) { |
|
3769 | + if ($term_id > 0) { |
|
3770 | + $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type); |
|
3771 | + $children = get_term_children($term_id, $taxonomy); |
|
3772 | + $term_array[$term_id] = $count; |
|
3773 | 3773 | } |
3774 | 3774 | } |
3775 | 3775 | } |
3776 | 3776 | } else { // Update reviews count for all post categories. |
3777 | 3777 | $term_array = array(); |
3778 | 3778 | $post_types = geodir_get_posttypes(); |
3779 | - foreach ( $post_types as $post_type ) { |
|
3779 | + foreach ($post_types as $post_type) { |
|
3780 | 3780 | |
3781 | - $taxonomy = geodir_get_taxonomies( $post_type ); |
|
3781 | + $taxonomy = geodir_get_taxonomies($post_type); |
|
3782 | 3782 | $taxonomy = $taxonomy[0]; |
3783 | 3783 | |
3784 | 3784 | $args = array( |
3785 | 3785 | 'hide_empty' => false |
3786 | 3786 | ); |
3787 | 3787 | |
3788 | - $terms = get_terms( $taxonomy, $args ); |
|
3788 | + $terms = get_terms($taxonomy, $args); |
|
3789 | 3789 | |
3790 | - foreach ( $terms as $term ) { |
|
3791 | - $count = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type ); |
|
3792 | - $children = get_term_children( $term->term_id, $taxonomy ); |
|
3790 | + foreach ($terms as $term) { |
|
3791 | + $count = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type); |
|
3792 | + $children = get_term_children($term->term_id, $taxonomy); |
|
3793 | 3793 | /*if ( is_array( $children ) ) { |
3794 | 3794 | foreach ( $children as $child_id ) { |
3795 | 3795 | $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type); |
3796 | 3796 | $count = $count + $child_count; |
3797 | 3797 | } |
3798 | 3798 | }*/ |
3799 | - $term_array[ $term->term_id ] = $count; |
|
3799 | + $term_array[$term->term_id] = $count; |
|
3800 | 3800 | } |
3801 | 3801 | } |
3802 | 3802 | } |
3803 | 3803 | |
3804 | - update_option( 'geodir_global_review_count', $term_array ); |
|
3804 | + update_option('geodir_global_review_count', $term_array); |
|
3805 | 3805 | //clear cache |
3806 | - wp_cache_delete( 'geodir_global_review_count' ); |
|
3806 | + wp_cache_delete('geodir_global_review_count'); |
|
3807 | 3807 | |
3808 | 3808 | return $term_array; |
3809 | 3809 | } else { |
@@ -3819,39 +3819,39 @@ discard block |
||
3819 | 3819 | * @package GeoDirectory |
3820 | 3820 | * @return bool |
3821 | 3821 | */ |
3822 | -function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) { |
|
3823 | - if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) { |
|
3822 | +function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') { |
|
3823 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') { |
|
3824 | 3824 | return; // do not run if importing listings |
3825 | 3825 | } |
3826 | 3826 | |
3827 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
3827 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { |
|
3828 | 3828 | return; |
3829 | 3829 | } |
3830 | 3830 | |
3831 | 3831 | $post_ID = 0; |
3832 | - if ( ! empty( $post ) ) { |
|
3833 | - if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) { |
|
3832 | + if (!empty($post)) { |
|
3833 | + if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) { |
|
3834 | 3834 | return; |
3835 | 3835 | } |
3836 | 3836 | |
3837 | - if ( $new_status == 'auto-draft' && $old_status == 'new' ) { |
|
3837 | + if ($new_status == 'auto-draft' && $old_status == 'new') { |
|
3838 | 3838 | return; |
3839 | 3839 | } |
3840 | 3840 | |
3841 | - if ( ! empty( $post->ID ) ) { |
|
3841 | + if (!empty($post->ID)) { |
|
3842 | 3842 | $post_ID = $post->ID; |
3843 | 3843 | } |
3844 | 3844 | } |
3845 | 3845 | |
3846 | - if ( $new_status != $old_status ) { |
|
3847 | - geodir_count_reviews_by_terms( true, $post_ID ); |
|
3846 | + if ($new_status != $old_status) { |
|
3847 | + geodir_count_reviews_by_terms(true, $post_ID); |
|
3848 | 3848 | } |
3849 | 3849 | |
3850 | 3850 | return true; |
3851 | 3851 | } |
3852 | 3852 | |
3853 | -function geodir_term_review_count_force_update_single_post( $post_id ) { |
|
3854 | - geodir_count_reviews_by_terms( true, $post_id ); |
|
3853 | +function geodir_term_review_count_force_update_single_post($post_id) { |
|
3854 | + geodir_count_reviews_by_terms(true, $post_id); |
|
3855 | 3855 | } |
3856 | 3856 | |
3857 | 3857 | /*-----------------------------------------------------------------------------------*/ |
@@ -3868,11 +3868,11 @@ discard block |
||
3868 | 3868 | * |
3869 | 3869 | * @return int Post count. |
3870 | 3870 | */ |
3871 | -function geodir_count_posts_by_term( $data, $term ) { |
|
3871 | +function geodir_count_posts_by_term($data, $term) { |
|
3872 | 3872 | |
3873 | - if ( $data ) { |
|
3874 | - if ( isset( $data[ $term->term_id ] ) ) { |
|
3875 | - return $data[ $term->term_id ]; |
|
3873 | + if ($data) { |
|
3874 | + if (isset($data[$term->term_id])) { |
|
3875 | + return $data[$term->term_id]; |
|
3876 | 3876 | } else { |
3877 | 3877 | return 0; |
3878 | 3878 | } |
@@ -3889,8 +3889,8 @@ discard block |
||
3889 | 3889 | * param array $terms An array of term objects. |
3890 | 3890 | * @return array Sorted terms array. |
3891 | 3891 | */ |
3892 | -function geodir_sort_terms_by_count( $terms ) { |
|
3893 | - usort( $terms, "geodir_sort_by_count_obj" ); |
|
3892 | +function geodir_sort_terms_by_count($terms) { |
|
3893 | + usort($terms, "geodir_sort_by_count_obj"); |
|
3894 | 3894 | |
3895 | 3895 | return $terms; |
3896 | 3896 | } |
@@ -3905,8 +3905,8 @@ discard block |
||
3905 | 3905 | * |
3906 | 3906 | * @return array Sorted terms array. |
3907 | 3907 | */ |
3908 | -function geodir_sort_terms_by_review_count( $terms ) { |
|
3909 | - usort( $terms, "geodir_sort_by_review_count_obj" ); |
|
3908 | +function geodir_sort_terms_by_review_count($terms) { |
|
3909 | + usort($terms, "geodir_sort_by_review_count_obj"); |
|
3910 | 3910 | |
3911 | 3911 | return $terms; |
3912 | 3912 | } |
@@ -3922,12 +3922,12 @@ discard block |
||
3922 | 3922 | * |
3923 | 3923 | * @return array Sorted terms array. |
3924 | 3924 | */ |
3925 | -function geodir_sort_terms( $terms, $sort = 'count' ) { |
|
3926 | - if ( $sort == 'count' ) { |
|
3927 | - return geodir_sort_terms_by_count( $terms ); |
|
3925 | +function geodir_sort_terms($terms, $sort = 'count') { |
|
3926 | + if ($sort == 'count') { |
|
3927 | + return geodir_sort_terms_by_count($terms); |
|
3928 | 3928 | } |
3929 | - if ( $sort == 'review_count' ) { |
|
3930 | - return geodir_sort_terms_by_review_count( $terms ); |
|
3929 | + if ($sort == 'review_count') { |
|
3930 | + return geodir_sort_terms_by_review_count($terms); |
|
3931 | 3931 | } |
3932 | 3932 | } |
3933 | 3933 | |
@@ -3945,7 +3945,7 @@ discard block |
||
3945 | 3945 | * |
3946 | 3946 | * @return bool |
3947 | 3947 | */ |
3948 | -function geodir_sort_by_count( $a, $b ) { |
|
3948 | +function geodir_sort_by_count($a, $b) { |
|
3949 | 3949 | return $a['count'] < $b['count']; |
3950 | 3950 | } |
3951 | 3951 | |
@@ -3960,7 +3960,7 @@ discard block |
||
3960 | 3960 | * |
3961 | 3961 | * @return bool |
3962 | 3962 | */ |
3963 | -function geodir_sort_by_count_obj( $a, $b ) { |
|
3963 | +function geodir_sort_by_count_obj($a, $b) { |
|
3964 | 3964 | return $a->count < $b->count; |
3965 | 3965 | } |
3966 | 3966 | |
@@ -3975,7 +3975,7 @@ discard block |
||
3975 | 3975 | * |
3976 | 3976 | * @return bool |
3977 | 3977 | */ |
3978 | -function geodir_sort_by_review_count_obj( $a, $b ) { |
|
3978 | +function geodir_sort_by_review_count_obj($a, $b) { |
|
3979 | 3979 | return $a->review_count < $b->review_count; |
3980 | 3980 | } |
3981 | 3981 | |
@@ -3992,35 +3992,35 @@ discard block |
||
3992 | 3992 | * @since 1.4.2 |
3993 | 3993 | * @package GeoDirectory |
3994 | 3994 | */ |
3995 | - $locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' ); |
|
3995 | + $locale = apply_filters('plugin_locale', get_locale(), 'geodirectory'); |
|
3996 | 3996 | |
3997 | - load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' ); |
|
3998 | - load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' ); |
|
3997 | + load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo'); |
|
3998 | + load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages'); |
|
3999 | 3999 | |
4000 | 4000 | /** |
4001 | 4001 | * Define language constants. |
4002 | 4002 | * |
4003 | 4003 | * @since 1.0.0 |
4004 | 4004 | */ |
4005 | - require_once( geodir_plugin_path() . '/language.php' ); |
|
4005 | + require_once(geodir_plugin_path().'/language.php'); |
|
4006 | 4006 | |
4007 | - $language_file = geodir_plugin_path() . '/db-language.php'; |
|
4007 | + $language_file = geodir_plugin_path().'/db-language.php'; |
|
4008 | 4008 | |
4009 | 4009 | // Load language string file if not created yet |
4010 | - if ( ! file_exists( $language_file ) ) { |
|
4010 | + if (!file_exists($language_file)) { |
|
4011 | 4011 | geodirectory_load_db_language(); |
4012 | 4012 | } |
4013 | 4013 | |
4014 | - if ( file_exists( $language_file ) ) { |
|
4014 | + if (file_exists($language_file)) { |
|
4015 | 4015 | /** |
4016 | 4016 | * Language strings from database. |
4017 | 4017 | * |
4018 | 4018 | * @since 1.4.2 |
4019 | 4019 | */ |
4020 | 4020 | try { |
4021 | - require_once( $language_file ); |
|
4022 | - } catch ( Exception $e ) { |
|
4023 | - error_log( 'Language Error: ' . $e->getMessage() ); |
|
4021 | + require_once($language_file); |
|
4022 | + } catch (Exception $e) { |
|
4023 | + error_log('Language Error: '.$e->getMessage()); |
|
4024 | 4024 | } |
4025 | 4025 | } |
4026 | 4026 | } |
@@ -4037,19 +4037,19 @@ discard block |
||
4037 | 4037 | */ |
4038 | 4038 | function geodirectory_load_db_language() { |
4039 | 4039 | global $wp_filesystem; |
4040 | - if ( empty( $wp_filesystem ) ) { |
|
4041 | - require_once( ABSPATH . '/wp-admin/includes/file.php' ); |
|
4040 | + if (empty($wp_filesystem)) { |
|
4041 | + require_once(ABSPATH.'/wp-admin/includes/file.php'); |
|
4042 | 4042 | WP_Filesystem(); |
4043 | 4043 | global $wp_filesystem; |
4044 | 4044 | } |
4045 | 4045 | |
4046 | - $language_file = geodir_plugin_path() . '/db-language.php'; |
|
4046 | + $language_file = geodir_plugin_path().'/db-language.php'; |
|
4047 | 4047 | |
4048 | - if ( is_file( $language_file ) && ! is_writable( $language_file ) ) { |
|
4048 | + if (is_file($language_file) && !is_writable($language_file)) { |
|
4049 | 4049 | return false; |
4050 | 4050 | } // Not possible to create. |
4051 | 4051 | |
4052 | - if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) { |
|
4052 | + if (!is_file($language_file) && !is_writable(dirname($language_file))) { |
|
4053 | 4053 | return false; |
4054 | 4054 | } // Not possible to create. |
4055 | 4055 | |
@@ -4062,9 +4062,9 @@ discard block |
||
4062 | 4062 | * |
4063 | 4063 | * @param array $contents_strings Array of strings. |
4064 | 4064 | */ |
4065 | - $contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings ); |
|
4065 | + $contents_strings = apply_filters('geodir_load_db_language', $contents_strings); |
|
4066 | 4066 | |
4067 | - $contents_strings = array_unique( $contents_strings ); |
|
4067 | + $contents_strings = array_unique($contents_strings); |
|
4068 | 4068 | |
4069 | 4069 | $contents_head = array(); |
4070 | 4070 | $contents_head[] = "<?php"; |
@@ -4081,20 +4081,20 @@ discard block |
||
4081 | 4081 | $contents_foot[] = ""; |
4082 | 4082 | $contents_foot[] = ""; |
4083 | 4083 | |
4084 | - $contents = implode( PHP_EOL, $contents_head ); |
|
4084 | + $contents = implode(PHP_EOL, $contents_head); |
|
4085 | 4085 | |
4086 | - if ( ! empty( $contents_strings ) ) { |
|
4087 | - foreach ( $contents_strings as $string ) { |
|
4088 | - if ( is_scalar( $string ) && $string != '' ) { |
|
4089 | - $string = str_replace( "'", "\'", $string ); |
|
4090 | - $contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');"; |
|
4086 | + if (!empty($contents_strings)) { |
|
4087 | + foreach ($contents_strings as $string) { |
|
4088 | + if (is_scalar($string) && $string != '') { |
|
4089 | + $string = str_replace("'", "\'", $string); |
|
4090 | + $contents .= PHP_EOL."__('".$string."', 'geodirectory');"; |
|
4091 | 4091 | } |
4092 | 4092 | } |
4093 | 4093 | } |
4094 | 4094 | |
4095 | - $contents .= implode( PHP_EOL, $contents_foot ); |
|
4095 | + $contents .= implode(PHP_EOL, $contents_foot); |
|
4096 | 4096 | |
4097 | - if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) { |
|
4097 | + if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) { |
|
4098 | 4098 | return false; |
4099 | 4099 | } // Failure; could not write file. |
4100 | 4100 | |
@@ -4114,45 +4114,45 @@ discard block |
||
4114 | 4114 | * |
4115 | 4115 | * @return array Translation texts. |
4116 | 4116 | */ |
4117 | -function geodir_load_custom_field_translation( $translation_texts = array() ) { |
|
4117 | +function geodir_load_custom_field_translation($translation_texts = array()) { |
|
4118 | 4118 | global $wpdb; |
4119 | 4119 | |
4120 | 4120 | // Custom fields table |
4121 | - $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values FROM " . GEODIR_CUSTOM_FIELDS_TABLE; |
|
4122 | - $rows = $wpdb->get_results( $sql ); |
|
4121 | + $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values FROM ".GEODIR_CUSTOM_FIELDS_TABLE; |
|
4122 | + $rows = $wpdb->get_results($sql); |
|
4123 | 4123 | |
4124 | - if ( ! empty( $rows ) ) { |
|
4125 | - foreach ( $rows as $row ) { |
|
4126 | - if ( ! empty( $row->admin_title ) ) { |
|
4127 | - $translation_texts[] = stripslashes_deep( $row->admin_title ); |
|
4124 | + if (!empty($rows)) { |
|
4125 | + foreach ($rows as $row) { |
|
4126 | + if (!empty($row->admin_title)) { |
|
4127 | + $translation_texts[] = stripslashes_deep($row->admin_title); |
|
4128 | 4128 | } |
4129 | 4129 | |
4130 | - if ( ! empty( $row->admin_desc ) ) { |
|
4131 | - $translation_texts[] = stripslashes_deep( $row->admin_desc ); |
|
4130 | + if (!empty($row->admin_desc)) { |
|
4131 | + $translation_texts[] = stripslashes_deep($row->admin_desc); |
|
4132 | 4132 | } |
4133 | 4133 | |
4134 | - if ( ! empty( $row->site_title ) ) { |
|
4135 | - $translation_texts[] = stripslashes_deep( $row->site_title ); |
|
4134 | + if (!empty($row->site_title)) { |
|
4135 | + $translation_texts[] = stripslashes_deep($row->site_title); |
|
4136 | 4136 | } |
4137 | 4137 | |
4138 | - if ( ! empty( $row->clabels ) ) { |
|
4139 | - $translation_texts[] = stripslashes_deep( $row->clabels ); |
|
4138 | + if (!empty($row->clabels)) { |
|
4139 | + $translation_texts[] = stripslashes_deep($row->clabels); |
|
4140 | 4140 | } |
4141 | 4141 | |
4142 | - if ( ! empty( $row->required_msg ) ) { |
|
4143 | - $translation_texts[] = stripslashes_deep( $row->required_msg ); |
|
4142 | + if (!empty($row->required_msg)) { |
|
4143 | + $translation_texts[] = stripslashes_deep($row->required_msg); |
|
4144 | 4144 | } |
4145 | 4145 | |
4146 | - if ( ! empty( $row->default_value ) ) { |
|
4147 | - $translation_texts[] = stripslashes_deep( $row->default_value ); |
|
4146 | + if (!empty($row->default_value)) { |
|
4147 | + $translation_texts[] = stripslashes_deep($row->default_value); |
|
4148 | 4148 | } |
4149 | 4149 | |
4150 | - if ( ! empty( $row->option_values ) ) { |
|
4151 | - $option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) ); |
|
4150 | + if (!empty($row->option_values)) { |
|
4151 | + $option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values)); |
|
4152 | 4152 | |
4153 | - if ( ! empty( $option_values ) ) { |
|
4154 | - foreach ( $option_values as $option_value ) { |
|
4155 | - if ( ! empty( $option_value['label'] ) ) { |
|
4153 | + if (!empty($option_values)) { |
|
4154 | + foreach ($option_values as $option_value) { |
|
4155 | + if (!empty($option_value['label'])) { |
|
4156 | 4156 | $translation_texts[] = $option_value['label']; |
4157 | 4157 | } |
4158 | 4158 | } |
@@ -4162,48 +4162,48 @@ discard block |
||
4162 | 4162 | } |
4163 | 4163 | |
4164 | 4164 | // Custom sorting fields table |
4165 | - $sql = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE; |
|
4166 | - $rows = $wpdb->get_results( $sql ); |
|
4165 | + $sql = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE; |
|
4166 | + $rows = $wpdb->get_results($sql); |
|
4167 | 4167 | |
4168 | - if ( ! empty( $rows ) ) { |
|
4169 | - foreach ( $rows as $row ) { |
|
4170 | - if ( ! empty( $row->site_title ) ) { |
|
4171 | - $translation_texts[] = stripslashes_deep( $row->site_title ); |
|
4168 | + if (!empty($rows)) { |
|
4169 | + foreach ($rows as $row) { |
|
4170 | + if (!empty($row->site_title)) { |
|
4171 | + $translation_texts[] = stripslashes_deep($row->site_title); |
|
4172 | 4172 | } |
4173 | 4173 | |
4174 | - if ( ! empty( $row->asc_title ) ) { |
|
4175 | - $translation_texts[] = stripslashes_deep( $row->asc_title ); |
|
4174 | + if (!empty($row->asc_title)) { |
|
4175 | + $translation_texts[] = stripslashes_deep($row->asc_title); |
|
4176 | 4176 | } |
4177 | 4177 | |
4178 | - if ( ! empty( $row->desc_title ) ) { |
|
4179 | - $translation_texts[] = stripslashes_deep( $row->desc_title ); |
|
4178 | + if (!empty($row->desc_title)) { |
|
4179 | + $translation_texts[] = stripslashes_deep($row->desc_title); |
|
4180 | 4180 | } |
4181 | 4181 | } |
4182 | 4182 | } |
4183 | 4183 | |
4184 | 4184 | // Advance search filter fields table |
4185 | - if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) { |
|
4186 | - $sql = "SELECT field_site_name, front_search_title, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE; |
|
4187 | - $rows = $wpdb->get_results( $sql ); |
|
4188 | - |
|
4189 | - if ( ! empty( $rows ) ) { |
|
4190 | - foreach ( $rows as $row ) { |
|
4191 | - if ( ! empty( $row->field_site_name ) ) { |
|
4192 | - $translation_texts[] = stripslashes_deep( $row->field_site_name ); |
|
4185 | + if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) { |
|
4186 | + $sql = "SELECT field_site_name, front_search_title, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE; |
|
4187 | + $rows = $wpdb->get_results($sql); |
|
4188 | + |
|
4189 | + if (!empty($rows)) { |
|
4190 | + foreach ($rows as $row) { |
|
4191 | + if (!empty($row->field_site_name)) { |
|
4192 | + $translation_texts[] = stripslashes_deep($row->field_site_name); |
|
4193 | 4193 | } |
4194 | 4194 | |
4195 | - if ( ! empty( $row->front_search_title ) ) { |
|
4196 | - $translation_texts[] = stripslashes_deep( $row->front_search_title ); |
|
4195 | + if (!empty($row->front_search_title)) { |
|
4196 | + $translation_texts[] = stripslashes_deep($row->front_search_title); |
|
4197 | 4197 | } |
4198 | 4198 | |
4199 | - if ( ! empty( $row->field_desc ) ) { |
|
4200 | - $translation_texts[] = stripslashes_deep( $row->field_desc ); |
|
4199 | + if (!empty($row->field_desc)) { |
|
4200 | + $translation_texts[] = stripslashes_deep($row->field_desc); |
|
4201 | 4201 | } |
4202 | 4202 | } |
4203 | 4203 | } |
4204 | 4204 | } |
4205 | 4205 | |
4206 | - $translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts; |
|
4206 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
4207 | 4207 | |
4208 | 4208 | return $translation_texts; |
4209 | 4209 | } |
@@ -4225,7 +4225,7 @@ discard block |
||
4225 | 4225 | * |
4226 | 4226 | * @param array $geodir_allowed_mime_types and file extensions. |
4227 | 4227 | */ |
4228 | - return apply_filters( 'geodir_allowed_mime_types', array( |
|
4228 | + return apply_filters('geodir_allowed_mime_types', array( |
|
4229 | 4229 | 'Image' => array( // Image formats. |
4230 | 4230 | 'jpg' => 'image/jpeg', |
4231 | 4231 | 'jpe' => 'image/jpeg', |
@@ -4293,18 +4293,18 @@ discard block |
||
4293 | 4293 | * |
4294 | 4294 | * @return string User display name. |
4295 | 4295 | */ |
4296 | -function geodir_get_client_name( $user_id ) { |
|
4296 | +function geodir_get_client_name($user_id) { |
|
4297 | 4297 | $client_name = ''; |
4298 | 4298 | |
4299 | - $user_data = get_userdata( $user_id ); |
|
4299 | + $user_data = get_userdata($user_id); |
|
4300 | 4300 | |
4301 | - if ( ! empty( $user_data ) ) { |
|
4302 | - if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) { |
|
4303 | - $client_name = trim( $user_data->display_name ); |
|
4304 | - } else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) { |
|
4305 | - $client_name = trim( $user_data->user_nicename ); |
|
4301 | + if (!empty($user_data)) { |
|
4302 | + if (isset($user_data->display_name) && trim($user_data->display_name) != '') { |
|
4303 | + $client_name = trim($user_data->display_name); |
|
4304 | + } else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') { |
|
4305 | + $client_name = trim($user_data->user_nicename); |
|
4306 | 4306 | } else { |
4307 | - $client_name = trim( $user_data->user_login ); |
|
4307 | + $client_name = trim($user_data->user_login); |
|
4308 | 4308 | } |
4309 | 4309 | } |
4310 | 4310 | |
@@ -4312,19 +4312,19 @@ discard block |
||
4312 | 4312 | } |
4313 | 4313 | |
4314 | 4314 | |
4315 | -add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 ); |
|
4315 | +add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1); |
|
4316 | 4316 | /* |
4317 | 4317 | * Add location variables to wpseo replacements. |
4318 | 4318 | * |
4319 | 4319 | * @since 1.5.4 |
4320 | 4320 | */ |
4321 | -function geodir_wpseo_replacements( $vars ) { |
|
4321 | +function geodir_wpseo_replacements($vars) { |
|
4322 | 4322 | |
4323 | 4323 | global $wp; |
4324 | 4324 | $title = ''; |
4325 | 4325 | // location variables |
4326 | 4326 | $gd_post_type = geodir_get_current_posttype(); |
4327 | - $location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
4327 | + $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type); |
|
4328 | 4328 | /** |
4329 | 4329 | * Filter the title variables location variables array |
4330 | 4330 | * |
@@ -4334,105 +4334,105 @@ discard block |
||
4334 | 4334 | * @param array $location_array The array of location variables. |
4335 | 4335 | * @param array $vars The page title variables. |
4336 | 4336 | */ |
4337 | - $location_array = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars ); |
|
4337 | + $location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars); |
|
4338 | 4338 | $location_titles = array(); |
4339 | - if ( get_query_var( 'gd_country_full' ) ) { |
|
4340 | - if ( get_query_var( 'gd_country_full' ) ) { |
|
4341 | - $location_array['gd_country'] = get_query_var( 'gd_country_full' ); |
|
4339 | + if (get_query_var('gd_country_full')) { |
|
4340 | + if (get_query_var('gd_country_full')) { |
|
4341 | + $location_array['gd_country'] = get_query_var('gd_country_full'); |
|
4342 | 4342 | } |
4343 | - if ( get_query_var( 'gd_region_full' ) ) { |
|
4344 | - $location_array['gd_region'] = get_query_var( 'gd_region_full' ); |
|
4343 | + if (get_query_var('gd_region_full')) { |
|
4344 | + $location_array['gd_region'] = get_query_var('gd_region_full'); |
|
4345 | 4345 | } |
4346 | - if ( get_query_var( 'gd_city_full' ) ) { |
|
4347 | - $location_array['gd_city'] = get_query_var( 'gd_city_full' ); |
|
4346 | + if (get_query_var('gd_city_full')) { |
|
4347 | + $location_array['gd_city'] = get_query_var('gd_city_full'); |
|
4348 | 4348 | } |
4349 | 4349 | } |
4350 | 4350 | $location_single = ''; |
4351 | - $gd_country = ( isset( $wp->query_vars['gd_country'] ) && $wp->query_vars['gd_country'] != '' ) ? $wp->query_vars['gd_country'] : ''; |
|
4352 | - $gd_region = ( isset( $wp->query_vars['gd_region'] ) && $wp->query_vars['gd_region'] != '' ) ? $wp->query_vars['gd_region'] : ''; |
|
4353 | - $gd_city = ( isset( $wp->query_vars['gd_city'] ) && $wp->query_vars['gd_city'] != '' ) ? $wp->query_vars['gd_city'] : ''; |
|
4351 | + $gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : ''; |
|
4352 | + $gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : ''; |
|
4353 | + $gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : ''; |
|
4354 | 4354 | |
4355 | 4355 | $gd_country_actual = $gd_region_actual = $gd_city_actual = ''; |
4356 | 4356 | |
4357 | - if ( function_exists( 'get_actual_location_name' ) ) { |
|
4358 | - $gd_country_actual = $gd_country != '' ? get_actual_location_name( 'country', $gd_country, true ) : $gd_country; |
|
4359 | - $gd_region_actual = $gd_region != '' ? get_actual_location_name( 'region', $gd_region ) : $gd_region; |
|
4360 | - $gd_city_actual = $gd_city != '' ? get_actual_location_name( 'city', $gd_city ) : $gd_city; |
|
4357 | + if (function_exists('get_actual_location_name')) { |
|
4358 | + $gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country; |
|
4359 | + $gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region; |
|
4360 | + $gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city; |
|
4361 | 4361 | } |
4362 | 4362 | |
4363 | - if ( $gd_city != '' ) { |
|
4364 | - if ( $gd_city_actual != '' ) { |
|
4363 | + if ($gd_city != '') { |
|
4364 | + if ($gd_city_actual != '') { |
|
4365 | 4365 | $gd_city = $gd_city_actual; |
4366 | 4366 | } else { |
4367 | - $gd_city = preg_replace( '/-(\d+)$/', '', $gd_city ); |
|
4368 | - $gd_city = preg_replace( '/[_-]/', ' ', $gd_city ); |
|
4369 | - $gd_city = __( geodir_ucwords( $gd_city ), 'geodirectory' ); |
|
4367 | + $gd_city = preg_replace('/-(\d+)$/', '', $gd_city); |
|
4368 | + $gd_city = preg_replace('/[_-]/', ' ', $gd_city); |
|
4369 | + $gd_city = __(geodir_ucwords($gd_city), 'geodirectory'); |
|
4370 | 4370 | } |
4371 | 4371 | $location_single = $gd_city; |
4372 | 4372 | |
4373 | - } else if ( $gd_region != '' ) { |
|
4374 | - if ( $gd_region_actual != '' ) { |
|
4373 | + } else if ($gd_region != '') { |
|
4374 | + if ($gd_region_actual != '') { |
|
4375 | 4375 | $gd_region = $gd_region_actual; |
4376 | 4376 | } else { |
4377 | - $gd_region = preg_replace( '/-(\d+)$/', '', $gd_region ); |
|
4378 | - $gd_region = preg_replace( '/[_-]/', ' ', $gd_region ); |
|
4379 | - $gd_region = __( geodir_ucwords( $gd_region ), 'geodirectory' ); |
|
4377 | + $gd_region = preg_replace('/-(\d+)$/', '', $gd_region); |
|
4378 | + $gd_region = preg_replace('/[_-]/', ' ', $gd_region); |
|
4379 | + $gd_region = __(geodir_ucwords($gd_region), 'geodirectory'); |
|
4380 | 4380 | } |
4381 | 4381 | |
4382 | 4382 | $location_single = $gd_region; |
4383 | - } else if ( $gd_country != '' ) { |
|
4384 | - if ( $gd_country_actual != '' ) { |
|
4383 | + } else if ($gd_country != '') { |
|
4384 | + if ($gd_country_actual != '') { |
|
4385 | 4385 | $gd_country = $gd_country_actual; |
4386 | 4386 | } else { |
4387 | - $gd_country = preg_replace( '/-(\d+)$/', '', $gd_country ); |
|
4388 | - $gd_country = preg_replace( '/[_-]/', ' ', $gd_country ); |
|
4389 | - $gd_country = __( geodir_ucwords( $gd_country ), 'geodirectory' ); |
|
4387 | + $gd_country = preg_replace('/-(\d+)$/', '', $gd_country); |
|
4388 | + $gd_country = preg_replace('/[_-]/', ' ', $gd_country); |
|
4389 | + $gd_country = __(geodir_ucwords($gd_country), 'geodirectory'); |
|
4390 | 4390 | } |
4391 | 4391 | |
4392 | 4392 | $location_single = $gd_country; |
4393 | 4393 | } |
4394 | 4394 | |
4395 | - if ( ! empty( $location_array ) ) { |
|
4395 | + if (!empty($location_array)) { |
|
4396 | 4396 | |
4397 | - $actual_location_name = function_exists( 'get_actual_location_name' ) ? true : false; |
|
4398 | - $location_array = array_reverse( $location_array ); |
|
4397 | + $actual_location_name = function_exists('get_actual_location_name') ? true : false; |
|
4398 | + $location_array = array_reverse($location_array); |
|
4399 | 4399 | |
4400 | - foreach ( $location_array as $location_type => $location ) { |
|
4401 | - $gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location ); |
|
4402 | - $gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text ); |
|
4400 | + foreach ($location_array as $location_type => $location) { |
|
4401 | + $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location); |
|
4402 | + $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text); |
|
4403 | 4403 | |
4404 | - $location_name = geodir_ucwords( $gd_location_link_text ); |
|
4405 | - $location_name = __( $location_name, 'geodirectory' ); |
|
4404 | + $location_name = geodir_ucwords($gd_location_link_text); |
|
4405 | + $location_name = __($location_name, 'geodirectory'); |
|
4406 | 4406 | |
4407 | - if ( $actual_location_name ) { |
|
4408 | - $location_type = strpos( $location_type, 'gd_' ) === 0 ? substr( $location_type, 3 ) : $location_type; |
|
4409 | - $location_name = get_actual_location_name( $location_type, $location, true ); |
|
4407 | + if ($actual_location_name) { |
|
4408 | + $location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type; |
|
4409 | + $location_name = get_actual_location_name($location_type, $location, true); |
|
4410 | 4410 | } |
4411 | 4411 | |
4412 | 4412 | $location_titles[] = $location_name; |
4413 | 4413 | } |
4414 | - if ( ! empty( $location_titles ) ) { |
|
4415 | - $location_titles = array_unique( $location_titles ); |
|
4414 | + if (!empty($location_titles)) { |
|
4415 | + $location_titles = array_unique($location_titles); |
|
4416 | 4416 | } |
4417 | 4417 | } |
4418 | 4418 | |
4419 | 4419 | |
4420 | - if ( ! empty( $location_titles ) ) { |
|
4421 | - $vars['%%location%%'] = implode( ", ", $location_titles ); |
|
4420 | + if (!empty($location_titles)) { |
|
4421 | + $vars['%%location%%'] = implode(", ", $location_titles); |
|
4422 | 4422 | } |
4423 | 4423 | |
4424 | 4424 | |
4425 | - if ( ! empty( $location_titles ) ) { |
|
4426 | - $vars['%%in_location%%'] = __( 'in ', 'geodirectory' ) . implode( ", ", $location_titles ); |
|
4425 | + if (!empty($location_titles)) { |
|
4426 | + $vars['%%in_location%%'] = __('in ', 'geodirectory').implode(", ", $location_titles); |
|
4427 | 4427 | } |
4428 | 4428 | |
4429 | 4429 | |
4430 | - if ( $location_single ) { |
|
4431 | - $vars['%%in_location_single%%'] = __( 'in', 'geodirectory' ) . ' ' . $location_single; |
|
4430 | + if ($location_single) { |
|
4431 | + $vars['%%in_location_single%%'] = __('in', 'geodirectory').' '.$location_single; |
|
4432 | 4432 | } |
4433 | 4433 | |
4434 | 4434 | |
4435 | - if ( $location_single ) { |
|
4435 | + if ($location_single) { |
|
4436 | 4436 | $vars['%%location_single%%'] = $location_single; |
4437 | 4437 | } |
4438 | 4438 | |
@@ -4445,13 +4445,13 @@ discard block |
||
4445 | 4445 | * @param string $vars The title with variables. |
4446 | 4446 | * @param array $location_array The array of location variables. |
4447 | 4447 | */ |
4448 | - return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array ); |
|
4448 | + return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array); |
|
4449 | 4449 | } |
4450 | 4450 | |
4451 | 4451 | |
4452 | -add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 ); |
|
4453 | -add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 ); |
|
4454 | -add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 ); |
|
4452 | +add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3); |
|
4453 | +add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2); |
|
4454 | +add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3); |
|
4455 | 4455 | |
4456 | 4456 | /** |
4457 | 4457 | * Filter the title variables. |
@@ -4493,14 +4493,14 @@ discard block |
||
4493 | 4493 | * |
4494 | 4494 | * @return string Title after filtered variables. |
4495 | 4495 | */ |
4496 | -function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) { |
|
4496 | +function geodir_filter_title_variables($title, $gd_page, $sep = '') { |
|
4497 | 4497 | global $wp, $post; |
4498 | 4498 | |
4499 | - if ( ! $gd_page || ! $title ) { |
|
4499 | + if (!$gd_page || !$title) { |
|
4500 | 4500 | return $title; // if no a GD page then bail. |
4501 | 4501 | } |
4502 | 4502 | |
4503 | - if ( $sep == '' ) { |
|
4503 | + if ($sep == '') { |
|
4504 | 4504 | /** |
4505 | 4505 | * Filter the page title separator. |
4506 | 4506 | * |
@@ -4509,100 +4509,100 @@ discard block |
||
4509 | 4509 | * |
4510 | 4510 | * @param string $sep The separator, default: `|`. |
4511 | 4511 | */ |
4512 | - $sep = apply_filters( 'geodir_page_title_separator', '|' ); |
|
4512 | + $sep = apply_filters('geodir_page_title_separator', '|'); |
|
4513 | 4513 | } |
4514 | 4514 | |
4515 | - if ( strpos( $title, '%%title%%' ) !== false ) { |
|
4516 | - $title = str_replace( "%%title%%", $post->post_title, $title ); |
|
4515 | + if (strpos($title, '%%title%%') !== false) { |
|
4516 | + $title = str_replace("%%title%%", $post->post_title, $title); |
|
4517 | 4517 | } |
4518 | 4518 | |
4519 | - if ( strpos( $title, '%%sitename%%' ) !== false ) { |
|
4520 | - $title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title ); |
|
4519 | + if (strpos($title, '%%sitename%%') !== false) { |
|
4520 | + $title = str_replace("%%sitename%%", get_bloginfo('name'), $title); |
|
4521 | 4521 | } |
4522 | 4522 | |
4523 | - if ( strpos( $title, '%%sitedesc%%' ) !== false ) { |
|
4524 | - $title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title ); |
|
4523 | + if (strpos($title, '%%sitedesc%%') !== false) { |
|
4524 | + $title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title); |
|
4525 | 4525 | } |
4526 | 4526 | |
4527 | - if ( strpos( $title, '%%excerpt%%' ) !== false ) { |
|
4528 | - $title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title ); |
|
4527 | + if (strpos($title, '%%excerpt%%') !== false) { |
|
4528 | + $title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title); |
|
4529 | 4529 | } |
4530 | 4530 | |
4531 | - if ( $gd_page == 'search' || $gd_page == 'author' ) { |
|
4532 | - $post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : ''; |
|
4533 | - } else if ( $gd_page == 'add-listing' ) { |
|
4534 | - $post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : ''; |
|
4535 | - $post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type; |
|
4536 | - } else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) { |
|
4531 | + if ($gd_page == 'search' || $gd_page == 'author') { |
|
4532 | + $post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : ''; |
|
4533 | + } else if ($gd_page == 'add-listing') { |
|
4534 | + $post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : ''; |
|
4535 | + $post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type; |
|
4536 | + } else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) { |
|
4537 | 4537 | $post_type = $post->post_type; |
4538 | 4538 | } else { |
4539 | - $post_type = get_query_var( 'post_type' ); |
|
4539 | + $post_type = get_query_var('post_type'); |
|
4540 | 4540 | } |
4541 | 4541 | |
4542 | - if ( strpos( $title, '%%pt_single%%' ) !== false ) { |
|
4542 | + if (strpos($title, '%%pt_single%%') !== false) { |
|
4543 | 4543 | $singular_name = ''; |
4544 | - if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) { |
|
4545 | - $singular_name = __( $singular_name, 'geodirectory' ); |
|
4544 | + if ($post_type && $singular_name = get_post_type_singular_label($post_type)) { |
|
4545 | + $singular_name = __($singular_name, 'geodirectory'); |
|
4546 | 4546 | } |
4547 | 4547 | |
4548 | - $title = str_replace( "%%pt_single%%", $singular_name, $title ); |
|
4548 | + $title = str_replace("%%pt_single%%", $singular_name, $title); |
|
4549 | 4549 | } |
4550 | 4550 | |
4551 | - if ( strpos( $title, '%%pt_plural%%' ) !== false ) { |
|
4551 | + if (strpos($title, '%%pt_plural%%') !== false) { |
|
4552 | 4552 | $plural_name = ''; |
4553 | - if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) { |
|
4554 | - $plural_name = __( $plural_name, 'geodirectory' ); |
|
4553 | + if ($post_type && $plural_name = get_post_type_plural_label($post_type)) { |
|
4554 | + $plural_name = __($plural_name, 'geodirectory'); |
|
4555 | 4555 | } |
4556 | 4556 | |
4557 | - $title = str_replace( "%%pt_plural%%", $plural_name, $title ); |
|
4557 | + $title = str_replace("%%pt_plural%%", $plural_name, $title); |
|
4558 | 4558 | } |
4559 | 4559 | |
4560 | - if ( strpos( $title, '%%category%%' ) !== false ) { |
|
4560 | + if (strpos($title, '%%category%%') !== false) { |
|
4561 | 4561 | $cat_name = ''; |
4562 | 4562 | |
4563 | - if ( $gd_page == 'detail' ) { |
|
4564 | - if ( $post->default_category ) { |
|
4565 | - $cat = get_term( $post->default_category, $post->post_type . 'category' ); |
|
4566 | - $cat_name = ( isset( $cat->name ) ) ? $cat->name : ''; |
|
4563 | + if ($gd_page == 'detail') { |
|
4564 | + if ($post->default_category) { |
|
4565 | + $cat = get_term($post->default_category, $post->post_type.'category'); |
|
4566 | + $cat_name = (isset($cat->name)) ? $cat->name : ''; |
|
4567 | 4567 | } |
4568 | - } else if ( $gd_page == 'listing' ) { |
|
4568 | + } else if ($gd_page == 'listing') { |
|
4569 | 4569 | $queried_object = get_queried_object(); |
4570 | - if ( isset( $queried_object->name ) ) { |
|
4570 | + if (isset($queried_object->name)) { |
|
4571 | 4571 | $cat_name = $queried_object->name; |
4572 | 4572 | } |
4573 | 4573 | } |
4574 | - $title = str_replace( "%%category%%", $cat_name, $title ); |
|
4574 | + $title = str_replace("%%category%%", $cat_name, $title); |
|
4575 | 4575 | } |
4576 | 4576 | |
4577 | - if ( strpos( $title, '%%tag%%' ) !== false ) { |
|
4577 | + if (strpos($title, '%%tag%%') !== false) { |
|
4578 | 4578 | $cat_name = ''; |
4579 | 4579 | |
4580 | - if ( $gd_page == 'detail' ) { |
|
4581 | - if ( $post->default_category ) { |
|
4582 | - $cat = get_term( $post->default_category, $post->post_type . 'category' ); |
|
4583 | - $cat_name = ( isset( $cat->name ) ) ? $cat->name : ''; |
|
4580 | + if ($gd_page == 'detail') { |
|
4581 | + if ($post->default_category) { |
|
4582 | + $cat = get_term($post->default_category, $post->post_type.'category'); |
|
4583 | + $cat_name = (isset($cat->name)) ? $cat->name : ''; |
|
4584 | 4584 | } |
4585 | - } else if ( $gd_page == 'listing' ) { |
|
4585 | + } else if ($gd_page == 'listing') { |
|
4586 | 4586 | $queried_object = get_queried_object(); |
4587 | - if ( isset( $queried_object->name ) ) { |
|
4587 | + if (isset($queried_object->name)) { |
|
4588 | 4588 | $cat_name = $queried_object->name; |
4589 | 4589 | } |
4590 | 4590 | } |
4591 | - $title = str_replace( "%%tag%%", $cat_name, $title ); |
|
4591 | + $title = str_replace("%%tag%%", $cat_name, $title); |
|
4592 | 4592 | } |
4593 | 4593 | |
4594 | - if ( strpos( $title, '%%id%%' ) !== false ) { |
|
4595 | - $ID = ( isset( $post->ID ) ) ? $post->ID : ''; |
|
4596 | - $title = str_replace( "%%id%%", $ID, $title ); |
|
4594 | + if (strpos($title, '%%id%%') !== false) { |
|
4595 | + $ID = (isset($post->ID)) ? $post->ID : ''; |
|
4596 | + $title = str_replace("%%id%%", $ID, $title); |
|
4597 | 4597 | } |
4598 | 4598 | |
4599 | - if ( strpos( $title, '%%sep%%' ) !== false ) { |
|
4600 | - $title = str_replace( "%%sep%%", $sep, $title ); |
|
4599 | + if (strpos($title, '%%sep%%') !== false) { |
|
4600 | + $title = str_replace("%%sep%%", $sep, $title); |
|
4601 | 4601 | } |
4602 | 4602 | |
4603 | 4603 | // location variables |
4604 | 4604 | $gd_post_type = geodir_get_current_posttype(); |
4605 | - $location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
4605 | + $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type); |
|
4606 | 4606 | /** |
4607 | 4607 | * Filter the title variables location variables array |
4608 | 4608 | * |
@@ -4614,166 +4614,166 @@ discard block |
||
4614 | 4614 | * @param string $gd_page The page being filtered. |
4615 | 4615 | * @param string $sep The separator, default: `|`. |
4616 | 4616 | */ |
4617 | - $location_array = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep ); |
|
4617 | + $location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep); |
|
4618 | 4618 | $location_titles = array(); |
4619 | - if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) { |
|
4620 | - if ( get_query_var( 'gd_country_full' ) ) { |
|
4621 | - $location_array['gd_country'] = get_query_var( 'gd_country_full' ); |
|
4619 | + if ($gd_page == 'location' && get_query_var('gd_country_full')) { |
|
4620 | + if (get_query_var('gd_country_full')) { |
|
4621 | + $location_array['gd_country'] = get_query_var('gd_country_full'); |
|
4622 | 4622 | } |
4623 | - if ( get_query_var( 'gd_region_full' ) ) { |
|
4624 | - $location_array['gd_region'] = get_query_var( 'gd_region_full' ); |
|
4623 | + if (get_query_var('gd_region_full')) { |
|
4624 | + $location_array['gd_region'] = get_query_var('gd_region_full'); |
|
4625 | 4625 | } |
4626 | - if ( get_query_var( 'gd_city_full' ) ) { |
|
4627 | - $location_array['gd_city'] = get_query_var( 'gd_city_full' ); |
|
4626 | + if (get_query_var('gd_city_full')) { |
|
4627 | + $location_array['gd_city'] = get_query_var('gd_city_full'); |
|
4628 | 4628 | } |
4629 | 4629 | } |
4630 | 4630 | $location_single = ''; |
4631 | - $gd_country = ( isset( $wp->query_vars['gd_country'] ) && $wp->query_vars['gd_country'] != '' ) ? $wp->query_vars['gd_country'] : ''; |
|
4632 | - $gd_region = ( isset( $wp->query_vars['gd_region'] ) && $wp->query_vars['gd_region'] != '' ) ? $wp->query_vars['gd_region'] : ''; |
|
4633 | - $gd_city = ( isset( $wp->query_vars['gd_city'] ) && $wp->query_vars['gd_city'] != '' ) ? $wp->query_vars['gd_city'] : ''; |
|
4631 | + $gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : ''; |
|
4632 | + $gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : ''; |
|
4633 | + $gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : ''; |
|
4634 | 4634 | |
4635 | 4635 | $gd_country_actual = $gd_region_actual = $gd_city_actual = ''; |
4636 | 4636 | |
4637 | - if ( function_exists( 'get_actual_location_name' ) ) { |
|
4638 | - $gd_country_actual = $gd_country != '' ? get_actual_location_name( 'country', $gd_country, true ) : $gd_country; |
|
4639 | - $gd_region_actual = $gd_region != '' ? get_actual_location_name( 'region', $gd_region ) : $gd_region; |
|
4640 | - $gd_city_actual = $gd_city != '' ? get_actual_location_name( 'city', $gd_city ) : $gd_city; |
|
4637 | + if (function_exists('get_actual_location_name')) { |
|
4638 | + $gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country; |
|
4639 | + $gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region; |
|
4640 | + $gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city; |
|
4641 | 4641 | } |
4642 | 4642 | |
4643 | - if ( $gd_city != '' ) { |
|
4644 | - if ( $gd_city_actual != '' ) { |
|
4643 | + if ($gd_city != '') { |
|
4644 | + if ($gd_city_actual != '') { |
|
4645 | 4645 | $gd_city = $gd_city_actual; |
4646 | 4646 | } else { |
4647 | - $gd_city = preg_replace( '/-(\d+)$/', '', $gd_city ); |
|
4648 | - $gd_city = preg_replace( '/[_-]/', ' ', $gd_city ); |
|
4649 | - $gd_city = __( geodir_ucwords( $gd_city ), 'geodirectory' ); |
|
4647 | + $gd_city = preg_replace('/-(\d+)$/', '', $gd_city); |
|
4648 | + $gd_city = preg_replace('/[_-]/', ' ', $gd_city); |
|
4649 | + $gd_city = __(geodir_ucwords($gd_city), 'geodirectory'); |
|
4650 | 4650 | } |
4651 | 4651 | $location_single = $gd_city; |
4652 | 4652 | |
4653 | - } else if ( $gd_region != '' ) { |
|
4654 | - if ( $gd_region_actual != '' ) { |
|
4653 | + } else if ($gd_region != '') { |
|
4654 | + if ($gd_region_actual != '') { |
|
4655 | 4655 | $gd_region = $gd_region_actual; |
4656 | 4656 | } else { |
4657 | - $gd_region = preg_replace( '/-(\d+)$/', '', $gd_region ); |
|
4658 | - $gd_region = preg_replace( '/[_-]/', ' ', $gd_region ); |
|
4659 | - $gd_region = __( geodir_ucwords( $gd_region ), 'geodirectory' ); |
|
4657 | + $gd_region = preg_replace('/-(\d+)$/', '', $gd_region); |
|
4658 | + $gd_region = preg_replace('/[_-]/', ' ', $gd_region); |
|
4659 | + $gd_region = __(geodir_ucwords($gd_region), 'geodirectory'); |
|
4660 | 4660 | } |
4661 | 4661 | |
4662 | 4662 | $location_single = $gd_region; |
4663 | - } else if ( $gd_country != '' ) { |
|
4664 | - if ( $gd_country_actual != '' ) { |
|
4663 | + } else if ($gd_country != '') { |
|
4664 | + if ($gd_country_actual != '') { |
|
4665 | 4665 | $gd_country = $gd_country_actual; |
4666 | 4666 | } else { |
4667 | - $gd_country = preg_replace( '/-(\d+)$/', '', $gd_country ); |
|
4668 | - $gd_country = preg_replace( '/[_-]/', ' ', $gd_country ); |
|
4669 | - $gd_country = __( geodir_ucwords( $gd_country ), 'geodirectory' ); |
|
4667 | + $gd_country = preg_replace('/-(\d+)$/', '', $gd_country); |
|
4668 | + $gd_country = preg_replace('/[_-]/', ' ', $gd_country); |
|
4669 | + $gd_country = __(geodir_ucwords($gd_country), 'geodirectory'); |
|
4670 | 4670 | } |
4671 | 4671 | |
4672 | 4672 | $location_single = $gd_country; |
4673 | 4673 | } |
4674 | 4674 | |
4675 | - if ( ! empty( $location_array ) ) { |
|
4675 | + if (!empty($location_array)) { |
|
4676 | 4676 | |
4677 | - $actual_location_name = function_exists( 'get_actual_location_name' ) ? true : false; |
|
4678 | - $location_array = array_reverse( $location_array ); |
|
4677 | + $actual_location_name = function_exists('get_actual_location_name') ? true : false; |
|
4678 | + $location_array = array_reverse($location_array); |
|
4679 | 4679 | |
4680 | - foreach ( $location_array as $location_type => $location ) { |
|
4681 | - $gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location ); |
|
4682 | - $gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text ); |
|
4680 | + foreach ($location_array as $location_type => $location) { |
|
4681 | + $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location); |
|
4682 | + $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text); |
|
4683 | 4683 | |
4684 | - $location_name = geodir_ucwords( $gd_location_link_text ); |
|
4685 | - $location_name = __( $location_name, 'geodirectory' ); |
|
4684 | + $location_name = geodir_ucwords($gd_location_link_text); |
|
4685 | + $location_name = __($location_name, 'geodirectory'); |
|
4686 | 4686 | |
4687 | - if ( $actual_location_name ) { |
|
4688 | - $location_type = strpos( $location_type, 'gd_' ) === 0 ? substr( $location_type, 3 ) : $location_type; |
|
4689 | - $location_name = get_actual_location_name( $location_type, $location, true ); |
|
4687 | + if ($actual_location_name) { |
|
4688 | + $location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type; |
|
4689 | + $location_name = get_actual_location_name($location_type, $location, true); |
|
4690 | 4690 | } |
4691 | 4691 | |
4692 | 4692 | $location_titles[] = $location_name; |
4693 | 4693 | } |
4694 | - if ( ! empty( $location_titles ) ) { |
|
4695 | - $location_titles = array_unique( $location_titles ); |
|
4694 | + if (!empty($location_titles)) { |
|
4695 | + $location_titles = array_unique($location_titles); |
|
4696 | 4696 | } |
4697 | 4697 | } |
4698 | 4698 | |
4699 | 4699 | |
4700 | - if ( strpos( $title, '%%location%%' ) !== false ) { |
|
4700 | + if (strpos($title, '%%location%%') !== false) { |
|
4701 | 4701 | $location = ''; |
4702 | - if ( $location_titles ) { |
|
4703 | - $location = implode( ", ", $location_titles ); |
|
4702 | + if ($location_titles) { |
|
4703 | + $location = implode(", ", $location_titles); |
|
4704 | 4704 | } |
4705 | - $title = str_replace( "%%location%%", $location, $title ); |
|
4705 | + $title = str_replace("%%location%%", $location, $title); |
|
4706 | 4706 | } |
4707 | 4707 | |
4708 | - if ( strpos( $title, '%%in_location%%' ) !== false ) { |
|
4708 | + if (strpos($title, '%%in_location%%') !== false) { |
|
4709 | 4709 | $location = ''; |
4710 | - if ( $location_titles ) { |
|
4711 | - $location = __( 'in ', 'geodirectory' ) . implode( ", ", $location_titles ); |
|
4710 | + if ($location_titles) { |
|
4711 | + $location = __('in ', 'geodirectory').implode(", ", $location_titles); |
|
4712 | 4712 | } |
4713 | - $title = str_replace( "%%in_location%%", $location, $title ); |
|
4713 | + $title = str_replace("%%in_location%%", $location, $title); |
|
4714 | 4714 | } |
4715 | 4715 | |
4716 | - if ( strpos( $title, '%%in_location_single%%' ) !== false ) { |
|
4717 | - if ( $location_single ) { |
|
4718 | - $location_single = __( 'in', 'geodirectory' ) . ' ' . $location_single; |
|
4716 | + if (strpos($title, '%%in_location_single%%') !== false) { |
|
4717 | + if ($location_single) { |
|
4718 | + $location_single = __('in', 'geodirectory').' '.$location_single; |
|
4719 | 4719 | } |
4720 | - $title = str_replace( "%%in_location_single%%", $location_single, $title ); |
|
4720 | + $title = str_replace("%%in_location_single%%", $location_single, $title); |
|
4721 | 4721 | } |
4722 | 4722 | |
4723 | - if ( strpos( $title, '%%location_single%%' ) !== false ) { |
|
4724 | - $title = str_replace( "%%location_single%%", $location_single, $title ); |
|
4723 | + if (strpos($title, '%%location_single%%') !== false) { |
|
4724 | + $title = str_replace("%%location_single%%", $location_single, $title); |
|
4725 | 4725 | } |
4726 | 4726 | |
4727 | 4727 | |
4728 | - if ( strpos( $title, '%%search_term%%' ) !== false ) { |
|
4728 | + if (strpos($title, '%%search_term%%') !== false) { |
|
4729 | 4729 | $search_term = ''; |
4730 | - if ( isset( $_REQUEST['s'] ) ) { |
|
4731 | - $search_term = esc_attr( $_REQUEST['s'] ); |
|
4730 | + if (isset($_REQUEST['s'])) { |
|
4731 | + $search_term = esc_attr($_REQUEST['s']); |
|
4732 | 4732 | } |
4733 | - $title = str_replace( "%%search_term%%", $search_term, $title ); |
|
4733 | + $title = str_replace("%%search_term%%", $search_term, $title); |
|
4734 | 4734 | } |
4735 | 4735 | |
4736 | - if ( strpos( $title, '%%search_near%%' ) !== false ) { |
|
4736 | + if (strpos($title, '%%search_near%%') !== false) { |
|
4737 | 4737 | $search_term = ''; |
4738 | - if ( isset( $_REQUEST['snear'] ) ) { |
|
4739 | - $search_term = esc_attr( $_REQUEST['snear'] ); |
|
4738 | + if (isset($_REQUEST['snear'])) { |
|
4739 | + $search_term = esc_attr($_REQUEST['snear']); |
|
4740 | 4740 | } |
4741 | - $title = str_replace( "%%search_near%%", $search_term, $title ); |
|
4741 | + $title = str_replace("%%search_near%%", $search_term, $title); |
|
4742 | 4742 | } |
4743 | 4743 | |
4744 | - if ( strpos( $title, '%%name%%' ) !== false ) { |
|
4745 | - if ( is_author() ) { |
|
4746 | - $curauth = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) ); |
|
4744 | + if (strpos($title, '%%name%%') !== false) { |
|
4745 | + if (is_author()) { |
|
4746 | + $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author')); |
|
4747 | 4747 | $author_name = $curauth->display_name; |
4748 | 4748 | } else { |
4749 | 4749 | $author_name = get_the_author(); |
4750 | 4750 | } |
4751 | - if ( ! $author_name || $author_name === '' ) { |
|
4751 | + if (!$author_name || $author_name === '') { |
|
4752 | 4752 | $queried_object = get_queried_object(); |
4753 | 4753 | |
4754 | - if ( isset( $queried_object->data->user_nicename ) ) { |
|
4754 | + if (isset($queried_object->data->user_nicename)) { |
|
4755 | 4755 | $author_name = $queried_object->data->display_name; |
4756 | 4756 | } |
4757 | 4757 | } |
4758 | - $title = str_replace( "%%name%%", $author_name, $title ); |
|
4758 | + $title = str_replace("%%name%%", $author_name, $title); |
|
4759 | 4759 | } |
4760 | 4760 | |
4761 | - if ( strpos( $title, '%%page%%' ) !== false ) { |
|
4762 | - $page = geodir_title_meta_page( $sep ); |
|
4763 | - $title = str_replace( "%%page%%", $page, $title ); |
|
4761 | + if (strpos($title, '%%page%%') !== false) { |
|
4762 | + $page = geodir_title_meta_page($sep); |
|
4763 | + $title = str_replace("%%page%%", $page, $title); |
|
4764 | 4764 | } |
4765 | - if ( strpos( $title, '%%pagenumber%%' ) !== false ) { |
|
4765 | + if (strpos($title, '%%pagenumber%%') !== false) { |
|
4766 | 4766 | $pagenumber = geodir_title_meta_pagenumber(); |
4767 | - $title = str_replace( "%%pagenumber%%", $pagenumber, $title ); |
|
4767 | + $title = str_replace("%%pagenumber%%", $pagenumber, $title); |
|
4768 | 4768 | } |
4769 | - if ( strpos( $title, '%%pagetotal%%' ) !== false ) { |
|
4769 | + if (strpos($title, '%%pagetotal%%') !== false) { |
|
4770 | 4770 | $pagetotal = geodir_title_meta_pagetotal(); |
4771 | - $title = str_replace( "%%pagetotal%%", $pagetotal, $title ); |
|
4771 | + $title = str_replace("%%pagetotal%%", $pagetotal, $title); |
|
4772 | 4772 | } |
4773 | 4773 | |
4774 | - $title = wptexturize( $title ); |
|
4775 | - $title = convert_chars( $title ); |
|
4776 | - $title = esc_html( $title ); |
|
4774 | + $title = wptexturize($title); |
|
4775 | + $title = convert_chars($title); |
|
4776 | + $title = esc_html($title); |
|
4777 | 4777 | |
4778 | 4778 | /** |
4779 | 4779 | * Filter the title variables after standard ones have been filtered. |
@@ -4787,7 +4787,7 @@ discard block |
||
4787 | 4787 | * @param string $sep The separator, default: `|`. |
4788 | 4788 | */ |
4789 | 4789 | |
4790 | - return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep ); |
|
4790 | + return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep); |
|
4791 | 4791 | } |
4792 | 4792 | |
4793 | 4793 | /** |
@@ -4800,82 +4800,82 @@ discard block |
||
4800 | 4800 | * |
4801 | 4801 | * @return array Translation texts. |
4802 | 4802 | */ |
4803 | -function geodir_load_cpt_text_translation( $translation_texts = array() ) { |
|
4804 | - $gd_post_types = geodir_get_posttypes( 'array' ); |
|
4803 | +function geodir_load_cpt_text_translation($translation_texts = array()) { |
|
4804 | + $gd_post_types = geodir_get_posttypes('array'); |
|
4805 | 4805 | |
4806 | - if ( ! empty( $gd_post_types ) ) { |
|
4807 | - foreach ( $gd_post_types as $post_type => $cpt_info ) { |
|
4808 | - $labels = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : ''; |
|
4809 | - $description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : ''; |
|
4810 | - $seo = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : ''; |
|
4806 | + if (!empty($gd_post_types)) { |
|
4807 | + foreach ($gd_post_types as $post_type => $cpt_info) { |
|
4808 | + $labels = isset($cpt_info['labels']) ? $cpt_info['labels'] : ''; |
|
4809 | + $description = isset($cpt_info['description']) ? $cpt_info['description'] : ''; |
|
4810 | + $seo = isset($cpt_info['seo']) ? $cpt_info['seo'] : ''; |
|
4811 | 4811 | |
4812 | - if ( ! empty( $labels ) ) { |
|
4813 | - if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) { |
|
4812 | + if (!empty($labels)) { |
|
4813 | + if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) { |
|
4814 | 4814 | $translation_texts[] = $labels['name']; |
4815 | 4815 | } |
4816 | - if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) { |
|
4816 | + if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) { |
|
4817 | 4817 | $translation_texts[] = $labels['singular_name']; |
4818 | 4818 | } |
4819 | - if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) { |
|
4819 | + if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) { |
|
4820 | 4820 | $translation_texts[] = $labels['add_new']; |
4821 | 4821 | } |
4822 | - if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) { |
|
4822 | + if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) { |
|
4823 | 4823 | $translation_texts[] = $labels['add_new_item']; |
4824 | 4824 | } |
4825 | - if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) { |
|
4825 | + if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) { |
|
4826 | 4826 | $translation_texts[] = $labels['edit_item']; |
4827 | 4827 | } |
4828 | - if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) { |
|
4828 | + if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) { |
|
4829 | 4829 | $translation_texts[] = $labels['new_item']; |
4830 | 4830 | } |
4831 | - if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) { |
|
4831 | + if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) { |
|
4832 | 4832 | $translation_texts[] = $labels['view_item']; |
4833 | 4833 | } |
4834 | - if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) { |
|
4834 | + if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) { |
|
4835 | 4835 | $translation_texts[] = $labels['search_items']; |
4836 | 4836 | } |
4837 | - if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) { |
|
4837 | + if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) { |
|
4838 | 4838 | $translation_texts[] = $labels['not_found']; |
4839 | 4839 | } |
4840 | - if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) { |
|
4840 | + if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) { |
|
4841 | 4841 | $translation_texts[] = $labels['not_found_in_trash']; |
4842 | 4842 | } |
4843 | - if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) { |
|
4843 | + if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) { |
|
4844 | 4844 | $translation_texts[] = $labels['label_post_profile']; |
4845 | 4845 | } |
4846 | - if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) { |
|
4846 | + if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) { |
|
4847 | 4847 | $translation_texts[] = $labels['label_post_info']; |
4848 | 4848 | } |
4849 | - if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) { |
|
4849 | + if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) { |
|
4850 | 4850 | $translation_texts[] = $labels['label_post_images']; |
4851 | 4851 | } |
4852 | - if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) { |
|
4852 | + if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) { |
|
4853 | 4853 | $translation_texts[] = $labels['label_post_map']; |
4854 | 4854 | } |
4855 | - if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) { |
|
4855 | + if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) { |
|
4856 | 4856 | $translation_texts[] = $labels['label_reviews']; |
4857 | 4857 | } |
4858 | - if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) { |
|
4858 | + if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) { |
|
4859 | 4859 | $translation_texts[] = $labels['label_related_listing']; |
4860 | 4860 | } |
4861 | 4861 | } |
4862 | 4862 | |
4863 | - if ( $description != '' && ! in_array( $description, $translation_texts ) ) { |
|
4864 | - $translation_texts[] = normalize_whitespace( $description ); |
|
4863 | + if ($description != '' && !in_array($description, $translation_texts)) { |
|
4864 | + $translation_texts[] = normalize_whitespace($description); |
|
4865 | 4865 | } |
4866 | 4866 | |
4867 | - if ( ! empty( $seo ) ) { |
|
4868 | - if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) { |
|
4869 | - $translation_texts[] = normalize_whitespace( $seo['meta_keyword'] ); |
|
4867 | + if (!empty($seo)) { |
|
4868 | + if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) { |
|
4869 | + $translation_texts[] = normalize_whitespace($seo['meta_keyword']); |
|
4870 | 4870 | } |
4871 | 4871 | |
4872 | - if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) { |
|
4873 | - $translation_texts[] = normalize_whitespace( $seo['meta_description'] ); |
|
4872 | + if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) { |
|
4873 | + $translation_texts[] = normalize_whitespace($seo['meta_description']); |
|
4874 | 4874 | } |
4875 | 4875 | } |
4876 | 4876 | } |
4877 | 4877 | } |
4878 | - $translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts; |
|
4878 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
4879 | 4879 | |
4880 | 4880 | return $translation_texts; |
4881 | 4881 | } |
@@ -4890,27 +4890,27 @@ discard block |
||
4890 | 4890 | * |
4891 | 4891 | * @return array Location terms. |
4892 | 4892 | */ |
4893 | -function geodir_remove_location_terms( $location_terms = array() ) { |
|
4894 | - $location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false; |
|
4893 | +function geodir_remove_location_terms($location_terms = array()) { |
|
4894 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false; |
|
4895 | 4895 | |
4896 | - if ( ! empty( $location_terms ) && $location_manager ) { |
|
4897 | - $hide_country_part = get_option( 'geodir_location_hide_country_part' ); |
|
4898 | - $hide_region_part = get_option( 'geodir_location_hide_region_part' ); |
|
4896 | + if (!empty($location_terms) && $location_manager) { |
|
4897 | + $hide_country_part = get_option('geodir_location_hide_country_part'); |
|
4898 | + $hide_region_part = get_option('geodir_location_hide_region_part'); |
|
4899 | 4899 | |
4900 | - if ( $hide_region_part && $hide_country_part ) { |
|
4901 | - if ( isset( $location_terms['gd_country'] ) ) { |
|
4902 | - unset( $location_terms['gd_country'] ); |
|
4900 | + if ($hide_region_part && $hide_country_part) { |
|
4901 | + if (isset($location_terms['gd_country'])) { |
|
4902 | + unset($location_terms['gd_country']); |
|
4903 | 4903 | } |
4904 | - if ( isset( $location_terms['gd_region'] ) ) { |
|
4905 | - unset( $location_terms['gd_region'] ); |
|
4904 | + if (isset($location_terms['gd_region'])) { |
|
4905 | + unset($location_terms['gd_region']); |
|
4906 | 4906 | } |
4907 | - } else if ( $hide_region_part && ! $hide_country_part ) { |
|
4908 | - if ( isset( $location_terms['gd_region'] ) ) { |
|
4909 | - unset( $location_terms['gd_region'] ); |
|
4907 | + } else if ($hide_region_part && !$hide_country_part) { |
|
4908 | + if (isset($location_terms['gd_region'])) { |
|
4909 | + unset($location_terms['gd_region']); |
|
4910 | 4910 | } |
4911 | - } else if ( ! $hide_region_part && $hide_country_part ) { |
|
4912 | - if ( isset( $location_terms['gd_country'] ) ) { |
|
4913 | - unset( $location_terms['gd_country'] ); |
|
4911 | + } else if (!$hide_region_part && $hide_country_part) { |
|
4912 | + if (isset($location_terms['gd_country'])) { |
|
4913 | + unset($location_terms['gd_country']); |
|
4914 | 4914 | } |
4915 | 4915 | } |
4916 | 4916 | } |
@@ -4928,33 +4928,33 @@ discard block |
||
4928 | 4928 | * @param WP_Post $post Post object. |
4929 | 4929 | * @param bool $update Whether this is an existing listing being updated or not. |
4930 | 4930 | */ |
4931 | -function geodir_on_wp_insert_post( $post_ID, $post, $update ) { |
|
4932 | - if ( ! $update ) { |
|
4931 | +function geodir_on_wp_insert_post($post_ID, $post, $update) { |
|
4932 | + if (!$update) { |
|
4933 | 4933 | return; |
4934 | 4934 | } |
4935 | 4935 | |
4936 | - $action = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : ''; |
|
4937 | - $is_admin = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false; |
|
4936 | + $action = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : ''; |
|
4937 | + $is_admin = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false; |
|
4938 | 4938 | $inline_save = $action == 'inline-save' ? true : false; |
4939 | 4939 | |
4940 | - if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) { |
|
4940 | + if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) { |
|
4941 | 4941 | return; |
4942 | 4942 | } |
4943 | 4943 | |
4944 | - if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) { |
|
4944 | + if ($action != '' && in_array($action, array('geodir_import_export'))) { |
|
4945 | 4945 | return; |
4946 | 4946 | } |
4947 | 4947 | |
4948 | 4948 | $user_id = (int) get_current_user_id(); |
4949 | 4949 | |
4950 | - if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) { |
|
4951 | - $author_id = ! empty( $post->post_author ) ? $post->post_author : 0; |
|
4950 | + if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) { |
|
4951 | + $author_id = !empty($post->post_author) ? $post->post_author : 0; |
|
4952 | 4952 | |
4953 | - if ( $user_id == $author_id && ! is_super_admin() ) { |
|
4954 | - $from_email = get_option( 'site_email' ); |
|
4953 | + if ($user_id == $author_id && !is_super_admin()) { |
|
4954 | + $from_email = get_option('site_email'); |
|
4955 | 4955 | $from_name = get_site_emailName(); |
4956 | - $to_email = get_option( 'admin_email' ); |
|
4957 | - $to_name = get_option( 'name' ); |
|
4956 | + $to_email = get_option('admin_email'); |
|
4957 | + $to_name = get_option('name'); |
|
4958 | 4958 | $message_type = 'listing_edited'; |
4959 | 4959 | |
4960 | 4960 | $notify_edited = true; |
@@ -4966,9 +4966,9 @@ discard block |
||
4966 | 4966 | * @param bool $notify_edited Notify on listing edited by author? |
4967 | 4967 | * @param object $post The current post object. |
4968 | 4968 | */ |
4969 | - $notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post ); |
|
4969 | + $notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post); |
|
4970 | 4970 | |
4971 | - geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID ); |
|
4971 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
4972 | 4972 | } |
4973 | 4973 | } |
4974 | 4974 | } |
@@ -4983,14 +4983,14 @@ discard block |
||
4983 | 4983 | * |
4984 | 4984 | * @return string|null The current page start & end numbering. |
4985 | 4985 | */ |
4986 | -function geodir_title_meta_page( $sep ) { |
|
4986 | +function geodir_title_meta_page($sep) { |
|
4987 | 4987 | $replacement = null; |
4988 | 4988 | |
4989 | - $max = geodir_title_meta_pagenumbering( 'max' ); |
|
4990 | - $nr = geodir_title_meta_pagenumbering( 'nr' ); |
|
4989 | + $max = geodir_title_meta_pagenumbering('max'); |
|
4990 | + $nr = geodir_title_meta_pagenumbering('nr'); |
|
4991 | 4991 | |
4992 | - if ( $max > 1 && $nr > 1 ) { |
|
4993 | - $replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max ); |
|
4992 | + if ($max > 1 && $nr > 1) { |
|
4993 | + $replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max); |
|
4994 | 4994 | } |
4995 | 4995 | |
4996 | 4996 | return $replacement; |
@@ -5007,8 +5007,8 @@ discard block |
||
5007 | 5007 | function geodir_title_meta_pagenumber() { |
5008 | 5008 | $replacement = null; |
5009 | 5009 | |
5010 | - $nr = geodir_title_meta_pagenumbering( 'nr' ); |
|
5011 | - if ( isset( $nr ) && $nr > 0 ) { |
|
5010 | + $nr = geodir_title_meta_pagenumbering('nr'); |
|
5011 | + if (isset($nr) && $nr > 0) { |
|
5012 | 5012 | $replacement = (string) $nr; |
5013 | 5013 | } |
5014 | 5014 | |
@@ -5026,8 +5026,8 @@ discard block |
||
5026 | 5026 | function geodir_title_meta_pagetotal() { |
5027 | 5027 | $replacement = null; |
5028 | 5028 | |
5029 | - $max = geodir_title_meta_pagenumbering( 'max' ); |
|
5030 | - if ( isset( $max ) && $max > 0 ) { |
|
5029 | + $max = geodir_title_meta_pagenumbering('max'); |
|
5030 | + if (isset($max) && $max > 0) { |
|
5031 | 5031 | $replacement = (string) $max; |
5032 | 5032 | } |
5033 | 5033 | |
@@ -5047,36 +5047,36 @@ discard block |
||
5047 | 5047 | * |
5048 | 5048 | * @return int|null The current page numbering. |
5049 | 5049 | */ |
5050 | -function geodir_title_meta_pagenumbering( $request = 'nr' ) { |
|
5050 | +function geodir_title_meta_pagenumbering($request = 'nr') { |
|
5051 | 5051 | global $wp_query, $post; |
5052 | 5052 | $max_num_pages = null; |
5053 | 5053 | $page_number = null; |
5054 | 5054 | |
5055 | 5055 | $max_num_pages = 1; |
5056 | 5056 | |
5057 | - if ( ! is_singular() ) { |
|
5058 | - $page_number = get_query_var( 'paged' ); |
|
5059 | - if ( $page_number === 0 || $page_number === '' ) { |
|
5057 | + if (!is_singular()) { |
|
5058 | + $page_number = get_query_var('paged'); |
|
5059 | + if ($page_number === 0 || $page_number === '') { |
|
5060 | 5060 | $page_number = 1; |
5061 | 5061 | } |
5062 | 5062 | |
5063 | - if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) { |
|
5063 | + if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) { |
|
5064 | 5064 | $max_num_pages = $wp_query->max_num_pages; |
5065 | 5065 | } |
5066 | 5066 | } else { |
5067 | - $page_number = get_query_var( 'page' ); |
|
5068 | - if ( $page_number === 0 || $page_number === '' ) { |
|
5067 | + $page_number = get_query_var('page'); |
|
5068 | + if ($page_number === 0 || $page_number === '') { |
|
5069 | 5069 | $page_number = 1; |
5070 | 5070 | } |
5071 | 5071 | |
5072 | - if ( isset( $post->post_content ) ) { |
|
5073 | - $max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 ); |
|
5072 | + if (isset($post->post_content)) { |
|
5073 | + $max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1); |
|
5074 | 5074 | } |
5075 | 5075 | } |
5076 | 5076 | |
5077 | 5077 | $return = null; |
5078 | 5078 | |
5079 | - switch ( $request ) { |
|
5079 | + switch ($request) { |
|
5080 | 5080 | case 'nr': |
5081 | 5081 | $return = $page_number; |
5082 | 5082 | break; |
@@ -5097,14 +5097,14 @@ discard block |
||
5097 | 5097 | * |
5098 | 5098 | * @return array Terms. |
5099 | 5099 | */ |
5100 | -function geodir_filter_empty_terms( $terms ) { |
|
5101 | - if ( empty( $terms ) ) { |
|
5100 | +function geodir_filter_empty_terms($terms) { |
|
5101 | + if (empty($terms)) { |
|
5102 | 5102 | return $terms; |
5103 | 5103 | } |
5104 | 5104 | |
5105 | 5105 | $return = array(); |
5106 | - foreach ( $terms as $term ) { |
|
5107 | - if ( isset( $term->count ) && $term->count > 0 ) { |
|
5106 | + foreach ($terms as $term) { |
|
5107 | + if (isset($term->count) && $term->count > 0) { |
|
5108 | 5108 | $return[] = $term; |
5109 | 5109 | } else { |
5110 | 5110 | /** |
@@ -5115,7 +5115,7 @@ discard block |
||
5115 | 5115 | * @param array $return The array of terms to return. |
5116 | 5116 | * @param object $term The term object. |
5117 | 5117 | */ |
5118 | - $return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term ); |
|
5118 | + $return = apply_filters('geodir_filter_empty_terms_filter', $return, $term); |
|
5119 | 5119 | } |
5120 | 5120 | } |
5121 | 5121 | |
@@ -5132,12 +5132,12 @@ discard block |
||
5132 | 5132 | * |
5133 | 5133 | * @return array |
5134 | 5134 | */ |
5135 | -function geodir_remove_hentry( $class ) { |
|
5136 | - if ( geodir_is_page( 'detail' ) ) { |
|
5137 | - $class = array_diff( $class, array( 'hentry' ) ); |
|
5135 | +function geodir_remove_hentry($class) { |
|
5136 | + if (geodir_is_page('detail')) { |
|
5137 | + $class = array_diff($class, array('hentry')); |
|
5138 | 5138 | } |
5139 | 5139 | |
5140 | 5140 | return $class; |
5141 | 5141 | } |
5142 | 5142 | |
5143 | -add_filter( 'post_class', 'geodir_remove_hentry' ); |
|
5144 | 5143 | \ No newline at end of file |
5144 | +add_filter('post_class', 'geodir_remove_hentry'); |
|
5145 | 5145 | \ No newline at end of file |