@@ -52,31 +52,31 @@ discard block |
||
52 | 52 | jQuery(listSel).children('li').switchClass('gridview_onehalf gridview_onethird gridview_onefourth', 'gridview_onefifth', 600); |
53 | 53 | } |
54 | 54 | |
55 | - jQuery.post("<?php echo geodir_get_ajax_url();?>&gd_listing_view=" + val, function (data) { |
|
55 | + jQuery.post("<?php echo geodir_get_ajax_url(); ?>&gd_listing_view=" + val, function (data) { |
|
56 | 56 | //alert(data ); |
57 | 57 | }); |
58 | 58 | } |
59 | 59 | </script> |
60 | 60 | <div class="geodir-list-view-select"> |
61 | 61 | <select name="gd_list_view" id="gd_list_view" onchange="geodir_list_view_select(this);"> |
62 | - <?php $listing_view = (int) $gd_session->get( 'gd_listing_view' ); ?> |
|
63 | - <option value=""><?php _e( 'View:', 'geodirectory' ); ?></option> |
|
62 | + <?php $listing_view = (int) $gd_session->get('gd_listing_view'); ?> |
|
63 | + <option value=""><?php _e('View:', 'geodirectory'); ?></option> |
|
64 | 64 | <option |
65 | - value="1" <?php selected( 1, $listing_view ); ?>><?php _e( 'View: List', 'geodirectory' ); ?></option> |
|
65 | + value="1" <?php selected(1, $listing_view); ?>><?php _e('View: List', 'geodirectory'); ?></option> |
|
66 | 66 | <option |
67 | - value="2" <?php selected( 2, $listing_view ); ?>><?php _e( 'View: Grid 2', 'geodirectory' ); ?></option> |
|
67 | + value="2" <?php selected(2, $listing_view); ?>><?php _e('View: Grid 2', 'geodirectory'); ?></option> |
|
68 | 68 | <option |
69 | - value="3" <?php selected( 3, $listing_view ); ?>><?php _e( 'View: Grid 3', 'geodirectory' ); ?></option> |
|
69 | + value="3" <?php selected(3, $listing_view); ?>><?php _e('View: Grid 3', 'geodirectory'); ?></option> |
|
70 | 70 | <option |
71 | - value="4" <?php selected( 4, $listing_view ); ?>><?php _e( 'View: Grid 4', 'geodirectory' ); ?></option> |
|
71 | + value="4" <?php selected(4, $listing_view); ?>><?php _e('View: Grid 4', 'geodirectory'); ?></option> |
|
72 | 72 | <option |
73 | - value="5" <?php selected( 5, $listing_view ); ?>><?php _e( 'View: Grid 5', 'geodirectory' ); ?></option> |
|
73 | + value="5" <?php selected(5, $listing_view); ?>><?php _e('View: Grid 5', 'geodirectory'); ?></option> |
|
74 | 74 | </select> |
75 | 75 | </div> |
76 | 76 | <?php |
77 | 77 | } |
78 | 78 | |
79 | -add_action( 'geodir_before_listing', 'geodir_list_view_select', 100 ); |
|
79 | +add_action('geodir_before_listing', 'geodir_list_view_select', 100); |
|
80 | 80 | |
81 | 81 | /** |
82 | 82 | * Limit the listing excerpt. |
@@ -91,9 +91,9 @@ discard block |
||
91 | 91 | * @global object $post The current post object. |
92 | 92 | * @return string The modified excerpt. |
93 | 93 | */ |
94 | -function geodir_max_excerpt( $charlength ) { |
|
94 | +function geodir_max_excerpt($charlength) { |
|
95 | 95 | global $post; |
96 | - if ( $charlength == '0' ) { |
|
96 | + if ($charlength == '0') { |
|
97 | 97 | return; |
98 | 98 | } |
99 | 99 | $out = ''; |
@@ -101,46 +101,46 @@ discard block |
||
101 | 101 | $temp_post = $post; |
102 | 102 | $excerpt = get_the_excerpt(); |
103 | 103 | |
104 | - $charlength ++; |
|
105 | - $excerpt_more = function_exists( 'geodirf_excerpt_more' ) ? geodirf_excerpt_more( '' ) : geodir_excerpt_more( '' ); |
|
106 | - if ( geodir_utf8_strlen( $excerpt ) > $charlength ) { |
|
107 | - if ( geodir_utf8_strlen( $excerpt_more ) > 0 && geodir_utf8_strpos( $excerpt, $excerpt_more ) !== false ) { |
|
108 | - $excut = - ( geodir_utf8_strlen( $excerpt_more ) ); |
|
109 | - $subex = geodir_utf8_substr( $excerpt, 0, $excut ); |
|
110 | - if ( $charlength > 0 && geodir_utf8_strlen( $subex ) > $charlength ) { |
|
111 | - $subex = geodir_utf8_substr( $subex, 0, $charlength ); |
|
104 | + $charlength++; |
|
105 | + $excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more(''); |
|
106 | + if (geodir_utf8_strlen($excerpt) > $charlength) { |
|
107 | + if (geodir_utf8_strlen($excerpt_more) > 0 && geodir_utf8_strpos($excerpt, $excerpt_more) !== false) { |
|
108 | + $excut = - (geodir_utf8_strlen($excerpt_more)); |
|
109 | + $subex = geodir_utf8_substr($excerpt, 0, $excut); |
|
110 | + if ($charlength > 0 && geodir_utf8_strlen($subex) > $charlength) { |
|
111 | + $subex = geodir_utf8_substr($subex, 0, $charlength); |
|
112 | 112 | } |
113 | 113 | $out .= $subex; |
114 | 114 | } else { |
115 | - $subex = geodir_utf8_substr( $excerpt, 0, $charlength - 5 ); |
|
116 | - $exwords = explode( ' ', $subex ); |
|
117 | - $excut = - ( geodir_utf8_strlen( $exwords[ count( $exwords ) - 1 ] ) ); |
|
118 | - if ( $excut < 0 ) { |
|
119 | - $out .= geodir_utf8_substr( $subex, 0, $excut ); |
|
115 | + $subex = geodir_utf8_substr($excerpt, 0, $charlength - 5); |
|
116 | + $exwords = explode(' ', $subex); |
|
117 | + $excut = - (geodir_utf8_strlen($exwords[count($exwords) - 1])); |
|
118 | + if ($excut < 0) { |
|
119 | + $out .= geodir_utf8_substr($subex, 0, $excut); |
|
120 | 120 | } else { |
121 | 121 | $out .= $subex; |
122 | 122 | } |
123 | 123 | } |
124 | - $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
124 | + $out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">'; |
|
125 | 125 | /** |
126 | 126 | * Filter excerpt read more text. |
127 | 127 | * |
128 | 128 | * @since 1.0.0 |
129 | 129 | */ |
130 | - $out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) ); |
|
130 | + $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory')); |
|
131 | 131 | $out .= '</a>'; |
132 | 132 | |
133 | 133 | } else { |
134 | - if ( geodir_utf8_strlen( $excerpt_more ) > 0 && geodir_utf8_strpos( $excerpt, $excerpt_more ) !== false ) { |
|
135 | - $excut = - ( geodir_utf8_strlen( $excerpt_more ) ); |
|
136 | - $out .= geodir_utf8_substr( $excerpt, 0, $excut ); |
|
137 | - $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
134 | + if (geodir_utf8_strlen($excerpt_more) > 0 && geodir_utf8_strpos($excerpt, $excerpt_more) !== false) { |
|
135 | + $excut = - (geodir_utf8_strlen($excerpt_more)); |
|
136 | + $out .= geodir_utf8_substr($excerpt, 0, $excut); |
|
137 | + $out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">'; |
|
138 | 138 | /** |
139 | 139 | * Filter excerpt read more text. |
140 | 140 | * |
141 | 141 | * @since 1.0.0 |
142 | 142 | */ |
143 | - $out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) ); |
|
143 | + $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory')); |
|
144 | 144 | $out .= '</a>'; |
145 | 145 | } else { |
146 | 146 | $out .= $excerpt; |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | * |
164 | 164 | * @return object Returns filtered package info as an object. |
165 | 165 | */ |
166 | -function geodir_post_package_info( $package_info, $post = '', $post_type = '' ) { |
|
166 | +function geodir_post_package_info($package_info, $post = '', $post_type = '') { |
|
167 | 167 | $package_info['pid'] = 0; |
168 | 168 | $package_info['days'] = 0; |
169 | 169 | $package_info['amount'] = 0; |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | * @param object|string $post The post object. |
193 | 193 | * @param string $post_type The post type. |
194 | 194 | */ |
195 | - return (object) apply_filters( 'geodir_post_package_info', $package_info, $post, $post_type ); |
|
195 | + return (object) apply_filters('geodir_post_package_info', $package_info, $post, $post_type); |
|
196 | 196 | |
197 | 197 | } |
198 | 198 | |
@@ -220,11 +220,11 @@ discard block |
||
220 | 220 | * |
221 | 221 | * } |
222 | 222 | */ |
223 | -function geodir_send_inquiry( $request ) { |
|
223 | +function geodir_send_inquiry($request) { |
|
224 | 224 | global $wpdb; |
225 | 225 | |
226 | 226 | // strip slashes from text |
227 | - $request = ! empty( $request ) ? stripslashes_deep( $request ) : $request; |
|
227 | + $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
228 | 228 | |
229 | 229 | $yourname = sanitize_text_field($request['inq_name']); |
230 | 230 | $youremail = sanitize_email($request['inq_email']); |
@@ -232,25 +232,25 @@ discard block |
||
232 | 232 | $frnd_comments = sanitize_text_field($request['inq_msg']); |
233 | 233 | $pid = absint($request['pid']); |
234 | 234 | |
235 | - $author_id = ''; |
|
235 | + $author_id = ''; |
|
236 | 236 | |
237 | - if ( $pid && 'publish' == get_post_status ( $pid ) ) { |
|
237 | + if ($pid && 'publish' == get_post_status($pid)) { |
|
238 | 238 | |
239 | - check_ajax_referer( 'send_inquiry_'.$pid ); |
|
239 | + check_ajax_referer('send_inquiry_'.$pid); |
|
240 | 240 | |
241 | 241 | $p_post = get_post($pid); |
242 | 242 | |
243 | - $author_id = $p_post->post_author; |
|
243 | + $author_id = $p_post->post_author; |
|
244 | 244 | |
245 | - }else{ |
|
245 | + } else { |
|
246 | 246 | gd_die(); |
247 | 247 | } |
248 | 248 | |
249 | - $to_email = geodir_get_post_meta( $pid, 'geodir_email', true ); |
|
250 | - $to_name = geodir_get_client_name( $author_id ); |
|
249 | + $to_email = geodir_get_post_meta($pid, 'geodir_email', true); |
|
250 | + $to_name = geodir_get_client_name($author_id); |
|
251 | 251 | |
252 | - if ( $to_email == '' ) { |
|
253 | - $to_email = get_option( 'admin_email' ); |
|
252 | + if ($to_email == '') { |
|
253 | + $to_email = get_option('admin_email'); |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | /** |
@@ -271,10 +271,10 @@ discard block |
||
271 | 271 | * } |
272 | 272 | * @param string $type The form type, default: `Enquiry`. |
273 | 273 | */ |
274 | - do_action( 'geodir_after_send_enquiry', $request, 'Enquiry' ); |
|
274 | + do_action('geodir_after_send_enquiry', $request, 'Enquiry'); |
|
275 | 275 | |
276 | 276 | $client_message = $frnd_comments; |
277 | - $client_message .= '<br>' . __( 'From :', 'geodirectory' ) . ' ' . $yourname . '<br>' . __( 'Phone :', 'geodirectory' ) . ' ' . $inq_phone . '<br>' . __( 'Email :', 'geodirectory' ) . ' ' . $youremail . '<br><br>' . __( 'Sent from', 'geodirectory' ) . ' - <b><a href="' . trailingslashit( home_url() ) . '">' . get_option( 'blogname' ) . '</a></b>.'; |
|
277 | + $client_message .= '<br>'.__('From :', 'geodirectory').' '.$yourname.'<br>'.__('Phone :', 'geodirectory').' '.$inq_phone.'<br>'.__('Email :', 'geodirectory').' '.$youremail.'<br><br>'.__('Sent from', 'geodirectory').' - <b><a href="'.trailingslashit(home_url()).'">'.get_option('blogname').'</a></b>.'; |
|
278 | 278 | /** |
279 | 279 | * Filter client message text. |
280 | 280 | * |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | * |
283 | 283 | * @param string $client_message Client message text. |
284 | 284 | */ |
285 | - $client_message = apply_filters( 'geodir_inquiry_email_msg', $client_message ); |
|
285 | + $client_message = apply_filters('geodir_inquiry_email_msg', $client_message); |
|
286 | 286 | |
287 | 287 | /** |
288 | 288 | * Called before the send enquiry email is sent. |
@@ -301,12 +301,12 @@ discard block |
||
301 | 301 | * |
302 | 302 | * } |
303 | 303 | */ |
304 | - do_action( 'geodir_before_send_enquiry_email', $request ); |
|
305 | - if ( $to_email ) { |
|
304 | + do_action('geodir_before_send_enquiry_email', $request); |
|
305 | + if ($to_email) { |
|
306 | 306 | // strip slashes message |
307 | - $client_message = stripslashes_deep( $client_message ); |
|
307 | + $client_message = stripslashes_deep($client_message); |
|
308 | 308 | |
309 | - geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid'] );//To client email |
|
309 | + geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']); //To client email |
|
310 | 310 | } |
311 | 311 | |
312 | 312 | /** |
@@ -326,12 +326,12 @@ discard block |
||
326 | 326 | * |
327 | 327 | * } |
328 | 328 | */ |
329 | - do_action( 'geodir_after_send_enquiry_email', $request ); |
|
330 | - $url = get_permalink( $pid ); |
|
331 | - if ( strstr( $url, '?' ) ) { |
|
332 | - $url = $url . "&send_inquiry=success"; |
|
329 | + do_action('geodir_after_send_enquiry_email', $request); |
|
330 | + $url = get_permalink($pid); |
|
331 | + if (strstr($url, '?')) { |
|
332 | + $url = $url."&send_inquiry=success"; |
|
333 | 333 | } else { |
334 | - $url = $url . "?send_inquiry=success"; |
|
334 | + $url = $url."?send_inquiry=success"; |
|
335 | 335 | } |
336 | 336 | /** |
337 | 337 | * Filter redirect url after the send enquiry email is sent. |
@@ -340,8 +340,8 @@ discard block |
||
340 | 340 | * |
341 | 341 | * @param string $url Redirect url. |
342 | 342 | */ |
343 | - $url = apply_filters( 'geodir_send_enquiry_after_submit_redirect', $url ); |
|
344 | - wp_redirect( $url ); |
|
343 | + $url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url); |
|
344 | + wp_redirect($url); |
|
345 | 345 | gd_die(); |
346 | 346 | |
347 | 347 | } |
@@ -372,11 +372,11 @@ discard block |
||
372 | 372 | * |
373 | 373 | * @deprecated 1.6.26 |
374 | 374 | */ |
375 | -function geodir_send_friend( $request ) { |
|
375 | +function geodir_send_friend($request) { |
|
376 | 376 | global $wpdb; |
377 | 377 | |
378 | 378 | // strip slashes from text |
379 | - $request = ! empty( $request ) ? stripslashes_deep( $request ) : $request; |
|
379 | + $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
380 | 380 | |
381 | 381 | $yourname = sanitize_text_field($request['yourname']); |
382 | 382 | $youremail = sanitize_email($request['youremail']); |
@@ -385,11 +385,11 @@ discard block |
||
385 | 385 | $pid = absint($request['pid']); |
386 | 386 | $to_email = sanitize_email($request['to_email']); |
387 | 387 | $to_name = sanitize_text_field($request['to_name']); |
388 | - if ( $pid && 'publish' == get_post_status ( $pid ) ) { |
|
388 | + if ($pid && 'publish' == get_post_status($pid)) { |
|
389 | 389 | |
390 | - check_ajax_referer( 'send_to_frnd_'.$pid ); |
|
390 | + check_ajax_referer('send_to_frnd_'.$pid); |
|
391 | 391 | |
392 | - }else{ |
|
392 | + } else { |
|
393 | 393 | gd_die(); |
394 | 394 | } |
395 | 395 | |
@@ -412,8 +412,8 @@ discard block |
||
412 | 412 | * |
413 | 413 | * } |
414 | 414 | */ |
415 | - do_action( 'geodir_before_send_to_friend_email', $request ); |
|
416 | - geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid'] );//To client email |
|
415 | + do_action('geodir_before_send_to_friend_email', $request); |
|
416 | + geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']); //To client email |
|
417 | 417 | |
418 | 418 | /** |
419 | 419 | * Called after the send to friend email is sent. |
@@ -434,13 +434,13 @@ discard block |
||
434 | 434 | * |
435 | 435 | * } |
436 | 436 | */ |
437 | - do_action( 'geodir_after_send_to_friend_email', $request ); |
|
437 | + do_action('geodir_after_send_to_friend_email', $request); |
|
438 | 438 | |
439 | - $url = get_permalink( $pid ); |
|
440 | - if ( strstr( $url, '?' ) ) { |
|
441 | - $url = $url . "&sendtofrnd=success"; |
|
439 | + $url = get_permalink($pid); |
|
440 | + if (strstr($url, '?')) { |
|
441 | + $url = $url."&sendtofrnd=success"; |
|
442 | 442 | } else { |
443 | - $url = $url . "?sendtofrnd=success"; |
|
443 | + $url = $url."?sendtofrnd=success"; |
|
444 | 444 | } |
445 | 445 | /** |
446 | 446 | * Filter redirect url after the send to friend email is sent. |
@@ -449,8 +449,8 @@ discard block |
||
449 | 449 | * |
450 | 450 | * @param string $url Redirect url. |
451 | 451 | */ |
452 | - $url = apply_filters( 'geodir_send_to_friend_after_submit_redirect', $url ); |
|
453 | - wp_redirect( $url ); |
|
452 | + $url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url); |
|
453 | + wp_redirect($url); |
|
454 | 454 | gd_die(); |
455 | 455 | } |
456 | 456 | |
@@ -464,8 +464,8 @@ discard block |
||
464 | 464 | * |
465 | 465 | * @param string $hash_key |
466 | 466 | */ |
467 | -function geodir_before_tab_content( $hash_key ) { |
|
468 | - switch ( $hash_key ) { |
|
467 | +function geodir_before_tab_content($hash_key) { |
|
468 | + switch ($hash_key) { |
|
469 | 469 | case 'post_info' : |
470 | 470 | echo '<div class="geodir-company_info field-group">'; |
471 | 471 | break; |
@@ -475,7 +475,7 @@ discard block |
||
475 | 475 | * |
476 | 476 | * @since 1.0.0 |
477 | 477 | */ |
478 | - echo ' <div id="' . apply_filters( 'geodir_post_gallery_id', 'geodir-post-gallery' ) . '" class="clearfix" >'; |
|
478 | + echo ' <div id="'.apply_filters('geodir_post_gallery_id', 'geodir-post-gallery').'" class="clearfix" >'; |
|
479 | 479 | break; |
480 | 480 | case 'reviews' : |
481 | 481 | echo '<div id="reviews-wrap" class="clearfix"> '; |
@@ -499,8 +499,8 @@ discard block |
||
499 | 499 | * |
500 | 500 | * @param string $hash_key |
501 | 501 | */ |
502 | -function geodir_after_tab_content( $hash_key ) { |
|
503 | - switch ( $hash_key ) { |
|
502 | +function geodir_after_tab_content($hash_key) { |
|
503 | + switch ($hash_key) { |
|
504 | 504 | case 'post_info' : |
505 | 505 | echo '</div>'; |
506 | 506 | break; |
@@ -531,25 +531,25 @@ discard block |
||
531 | 531 | * @global object $wpdb WordPress Database object. |
532 | 532 | * @return bool|null|string Returns default sort results, when the post type is valid. Otherwise returns false. |
533 | 533 | */ |
534 | -function geodir_get_posts_default_sort( $post_type ) { |
|
534 | +function geodir_get_posts_default_sort($post_type) { |
|
535 | 535 | |
536 | 536 | global $wpdb; |
537 | 537 | |
538 | - if ( $post_type != '' ) { |
|
538 | + if ($post_type != '') { |
|
539 | 539 | |
540 | 540 | $all_postypes = geodir_get_posttypes(); |
541 | 541 | |
542 | - if ( ! in_array( $post_type, $all_postypes ) ) { |
|
542 | + if (!in_array($post_type, $all_postypes)) { |
|
543 | 543 | return false; |
544 | 544 | } |
545 | 545 | |
546 | - $sort_field_info = $wpdb->get_var( $wpdb->prepare( "select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type= %s and is_active=%d and is_default=%d", array( |
|
546 | + $sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where post_type= %s and is_active=%d and is_default=%d", array( |
|
547 | 547 | $post_type, |
548 | 548 | 1, |
549 | 549 | 1 |
550 | - ) ) ); |
|
550 | + ))); |
|
551 | 551 | |
552 | - if ( ! empty( $sort_field_info ) ) { |
|
552 | + if (!empty($sort_field_info)) { |
|
553 | 553 | return $sort_field_info; |
554 | 554 | } |
555 | 555 | |
@@ -569,20 +569,20 @@ discard block |
||
569 | 569 | * @global object $wpdb WordPress Database object. |
570 | 570 | * @return bool|mixed|void Returns sort results, when the post type is valid. Otherwise returns false. |
571 | 571 | */ |
572 | -function geodir_get_sort_options( $post_type ) { |
|
572 | +function geodir_get_sort_options($post_type) { |
|
573 | 573 | global $wpdb; |
574 | 574 | |
575 | - if ( $post_type != '' ) { |
|
575 | + if ($post_type != '') { |
|
576 | 576 | $all_postypes = geodir_get_posttypes(); |
577 | 577 | |
578 | - if ( ! in_array( $post_type, $all_postypes ) ) { |
|
578 | + if (!in_array($post_type, $all_postypes)) { |
|
579 | 579 | return false; |
580 | 580 | } |
581 | 581 | |
582 | - $sort_field_info = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array( |
|
582 | + $sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array( |
|
583 | 583 | $post_type, |
584 | 584 | 1 |
585 | - ) ) ); |
|
585 | + ))); |
|
586 | 586 | |
587 | 587 | /** |
588 | 588 | * Filter post sort options. |
@@ -592,7 +592,7 @@ discard block |
||
592 | 592 | * @param array $sort_field_info Unfiltered sort field array. |
593 | 593 | * @param string $post_type Post type. |
594 | 594 | */ |
595 | - return apply_filters( 'geodir_get_sort_options', $sort_field_info, $post_type ); |
|
595 | + return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type); |
|
596 | 596 | } |
597 | 597 | |
598 | 598 | } |
@@ -613,63 +613,63 @@ discard block |
||
613 | 613 | * |
614 | 614 | * @since 1.4.4 |
615 | 615 | */ |
616 | - if ( is_search() ) { |
|
616 | + if (is_search()) { |
|
617 | 617 | return; |
618 | 618 | } |
619 | 619 | |
620 | 620 | $sort_by = ''; |
621 | 621 | |
622 | - if ( isset( $_REQUEST['sort_by'] ) ) { |
|
622 | + if (isset($_REQUEST['sort_by'])) { |
|
623 | 623 | $sort_by = $_REQUEST['sort_by']; |
624 | 624 | } |
625 | 625 | |
626 | 626 | $gd_post_type = geodir_get_current_posttype(); |
627 | 627 | |
628 | - $sort_options = geodir_get_sort_options( $gd_post_type ); |
|
628 | + $sort_options = geodir_get_sort_options($gd_post_type); |
|
629 | 629 | |
630 | 630 | |
631 | 631 | $sort_field_options = ''; |
632 | 632 | |
633 | - if ( ! empty( $sort_options ) ) { |
|
634 | - foreach ( $sort_options as $sort ) { |
|
635 | - $sort = stripslashes_deep( $sort ); // strip slashes |
|
633 | + if (!empty($sort_options)) { |
|
634 | + foreach ($sort_options as $sort) { |
|
635 | + $sort = stripslashes_deep($sort); // strip slashes |
|
636 | 636 | |
637 | - $label = __( $sort->site_title, 'geodirectory' ); |
|
637 | + $label = __($sort->site_title, 'geodirectory'); |
|
638 | 638 | |
639 | - if ( $sort->field_type == 'random' ) { |
|
639 | + if ($sort->field_type == 'random') { |
|
640 | 640 | $key = $sort->field_type; |
641 | - ( $sort_by == $key || ( $sort->is_default == '1' && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
642 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
641 | + ($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
642 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>'; |
|
643 | 643 | } |
644 | 644 | |
645 | - if ( $sort->htmlvar_name == 'comment_count' ) { |
|
645 | + if ($sort->htmlvar_name == 'comment_count') { |
|
646 | 646 | $sort->htmlvar_name = 'rating_count'; |
647 | 647 | } |
648 | 648 | |
649 | - if ( $sort->sort_asc ) { |
|
650 | - $key = $sort->htmlvar_name . '_asc'; |
|
649 | + if ($sort->sort_asc) { |
|
650 | + $key = $sort->htmlvar_name.'_asc'; |
|
651 | 651 | $label = $sort->site_title; |
652 | - if ( $sort->asc_title ) { |
|
652 | + if ($sort->asc_title) { |
|
653 | 653 | $label = $sort->asc_title; |
654 | 654 | } |
655 | - ( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
656 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
655 | + ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
656 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>'; |
|
657 | 657 | } |
658 | 658 | |
659 | - if ( $sort->sort_desc ) { |
|
660 | - $key = $sort->htmlvar_name . '_desc'; |
|
659 | + if ($sort->sort_desc) { |
|
660 | + $key = $sort->htmlvar_name.'_desc'; |
|
661 | 661 | $label = $sort->site_title; |
662 | - if ( $sort->desc_title ) { |
|
662 | + if ($sort->desc_title) { |
|
663 | 663 | $label = $sort->desc_title; |
664 | 664 | } |
665 | - ( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
666 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
665 | + ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
666 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>'; |
|
667 | 667 | } |
668 | 668 | |
669 | 669 | } |
670 | 670 | } |
671 | 671 | |
672 | - if ( $sort_field_options != '' ) { |
|
672 | + if ($sort_field_options != '') { |
|
673 | 673 | |
674 | 674 | ?> |
675 | 675 | |
@@ -678,9 +678,9 @@ discard block |
||
678 | 678 | <select name="sort_by" id="sort_by" onchange="javascript:window.location=this.value;"> |
679 | 679 | |
680 | 680 | <option |
681 | - value="<?php echo esc_url( add_query_arg( 'sort_by', '' ) ); ?>" <?php if ( $sort_by == '' ) { |
|
681 | + value="<?php echo esc_url(add_query_arg('sort_by', '')); ?>" <?php if ($sort_by == '') { |
|
682 | 682 | echo 'selected="selected"'; |
683 | - } ?>><?php _e( 'Sort By', 'geodirectory' ); ?></option><?php |
|
683 | + } ?>><?php _e('Sort By', 'geodirectory'); ?></option><?php |
|
684 | 684 | |
685 | 685 | echo $sort_field_options; ?> |
686 | 686 | |
@@ -708,9 +708,9 @@ discard block |
||
708 | 708 | * |
709 | 709 | * @return string Returns the section title. |
710 | 710 | */ |
711 | -function geodir_advance_customfields_heading( $title, $field_type ) { |
|
711 | +function geodir_advance_customfields_heading($title, $field_type) { |
|
712 | 712 | |
713 | - if ( in_array( $field_type, array( 'multiselect', 'textarea', 'taxonomy' ) ) ) { |
|
713 | + if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) { |
|
714 | 714 | $title = ''; |
715 | 715 | } |
716 | 716 | |
@@ -732,30 +732,30 @@ discard block |
||
732 | 732 | * @global object $gd_session GeoDirectory Session object. |
733 | 733 | * @return string Returns related posts html. |
734 | 734 | */ |
735 | -function geodir_related_posts_display( $request ) { |
|
736 | - if ( ! empty( $request ) ) { |
|
737 | - $before_title = ( isset( $request['before_title'] ) && ! empty( $request['before_title'] ) ) ? $request['before_title'] : ''; |
|
738 | - $after_title = ( isset( $request['after_title'] ) && ! empty( $request['after_title'] ) ) ? $request['after_title'] : ''; |
|
739 | - |
|
740 | - $title = ( isset( $request['title'] ) && ! empty( $request['title'] ) ) ? $request['title'] : __( 'Related Listings', 'geodirectory' ); |
|
741 | - $post_number = ( isset( $request['post_number'] ) && ! empty( $request['post_number'] ) ) ? $request['post_number'] : '5'; |
|
742 | - $relate_to = ( isset( $request['relate_to'] ) && ! empty( $request['relate_to'] ) ) ? $request['relate_to'] : 'category'; |
|
743 | - $layout = ( isset( $request['layout'] ) && ! empty( $request['layout'] ) ) ? $request['layout'] : 'gridview_onehalf'; |
|
744 | - $add_location_filter = ( isset( $request['add_location_filter'] ) && ! empty( $request['add_location_filter'] ) ) ? $request['add_location_filter'] : '0'; |
|
745 | - $listing_width = ( isset( $request['listing_width'] ) && ! empty( $request['listing_width'] ) ) ? $request['listing_width'] : ''; |
|
746 | - $list_sort = ( isset( $request['list_sort'] ) && ! empty( $request['list_sort'] ) ) ? $request['list_sort'] : 'latest'; |
|
747 | - $character_count = ( isset( $request['character_count'] ) && ! empty( $request['character_count'] ) ) ? $request['character_count'] : ''; |
|
735 | +function geodir_related_posts_display($request) { |
|
736 | + if (!empty($request)) { |
|
737 | + $before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : ''; |
|
738 | + $after_title = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : ''; |
|
739 | + |
|
740 | + $title = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory'); |
|
741 | + $post_number = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5'; |
|
742 | + $relate_to = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category'; |
|
743 | + $layout = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf'; |
|
744 | + $add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0'; |
|
745 | + $listing_width = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : ''; |
|
746 | + $list_sort = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest'; |
|
747 | + $character_count = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : ''; |
|
748 | 748 | |
749 | 749 | global $wpdb, $post, $gd_session, $related_nearest, $related_parent_lat, $related_parent_lon; |
750 | - $related_parent_lat = !empty($post->post_latitude) && geodir_is_page( 'detail' ) ? $post->post_latitude : ''; |
|
751 | - $related_parent_lon = !empty($post->post_longitude) && geodir_is_page( 'detail' ) ? $post->post_longitude : ''; |
|
750 | + $related_parent_lat = !empty($post->post_latitude) && geodir_is_page('detail') ? $post->post_latitude : ''; |
|
751 | + $related_parent_lon = !empty($post->post_longitude) && geodir_is_page('detail') ? $post->post_longitude : ''; |
|
752 | 752 | $arr_detail_page_tabs = geodir_detail_page_tabs_list(); |
753 | 753 | |
754 | 754 | $related_listing_array = array(); |
755 | - if ( get_option( 'geodir_add_related_listing_posttypes' ) ) { |
|
756 | - $related_listing_array = get_option( 'geodir_add_related_listing_posttypes' ); |
|
755 | + if (get_option('geodir_add_related_listing_posttypes')) { |
|
756 | + $related_listing_array = get_option('geodir_add_related_listing_posttypes'); |
|
757 | 757 | } |
758 | - if ( isset($post->post_type) && in_array( $post->post_type, $related_listing_array ) ) { |
|
758 | + if (isset($post->post_type) && in_array($post->post_type, $related_listing_array)) { |
|
759 | 759 | $arr_detail_page_tabs['related_listing']['is_display'] = true; |
760 | 760 | } |
761 | 761 | |
@@ -767,90 +767,90 @@ discard block |
||
767 | 767 | $tax_field = 'id'; |
768 | 768 | $category = array(); |
769 | 769 | |
770 | - if ( isset( $_REQUEST['backandedit'] ) ) { |
|
771 | - $post = (object) $gd_session->get( 'listing' ); |
|
770 | + if (isset($_REQUEST['backandedit'])) { |
|
771 | + $post = (object) $gd_session->get('listing'); |
|
772 | 772 | $post_type = $post->listing_type; |
773 | - if ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) { |
|
773 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
774 | 774 | $post_id = $_REQUEST['pid']; |
775 | 775 | } |
776 | - } elseif ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) { |
|
777 | - $post = geodir_get_post_info( $_REQUEST['pid'] ); |
|
776 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
777 | + $post = geodir_get_post_info($_REQUEST['pid']); |
|
778 | 778 | $post_type = $post->post_type; |
779 | 779 | $post_id = $_REQUEST['pid']; |
780 | - } elseif ( isset( $post->post_type ) && $post->post_type != '' ) { |
|
780 | + } elseif (isset($post->post_type) && $post->post_type != '') { |
|
781 | 781 | $post_type = $post->post_type; |
782 | 782 | $post_id = $post->ID; |
783 | 783 | } |
784 | 784 | |
785 | - if ( $relate_to == 'category' ) { |
|
785 | + if ($relate_to == 'category') { |
|
786 | 786 | |
787 | - $category_taxonomy = $post_type . $relate_to; |
|
788 | - if ( isset( $post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '' ) { |
|
789 | - $category = explode( ',', trim( $post->{$category_taxonomy}, ',' ) ); |
|
787 | + $category_taxonomy = $post_type.$relate_to; |
|
788 | + if (isset($post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '') { |
|
789 | + $category = explode(',', trim($post->{$category_taxonomy}, ',')); |
|
790 | 790 | } |
791 | 791 | |
792 | - } elseif ( $relate_to == 'tags' ) { |
|
792 | + } elseif ($relate_to == 'tags') { |
|
793 | 793 | |
794 | - $category_taxonomy = $post_type . '_' . $relate_to; |
|
795 | - if ( $post->post_tags != '' ) { |
|
796 | - $category = explode( ',', trim( $post->post_tags, ',' ) ); |
|
794 | + $category_taxonomy = $post_type.'_'.$relate_to; |
|
795 | + if ($post->post_tags != '') { |
|
796 | + $category = explode(',', trim($post->post_tags, ',')); |
|
797 | 797 | } |
798 | 798 | $tax_field = 'name'; |
799 | 799 | } |
800 | 800 | |
801 | 801 | /* --- return false in invalid request --- */ |
802 | - if ( empty( $category ) ) { |
|
802 | + if (empty($category)) { |
|
803 | 803 | return false; |
804 | 804 | } |
805 | 805 | |
806 | 806 | $all_postypes = geodir_get_posttypes(); |
807 | 807 | |
808 | - if ( ! in_array( $post_type, $all_postypes ) ) { |
|
808 | + if (!in_array($post_type, $all_postypes)) { |
|
809 | 809 | return false; |
810 | 810 | } |
811 | 811 | |
812 | 812 | /* --- return false in invalid request --- */ |
813 | 813 | |
814 | 814 | $location_url = ''; |
815 | - if ( $add_location_filter != '0' ) { |
|
815 | + if ($add_location_filter != '0') { |
|
816 | 816 | $location_url = array(); |
817 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
817 | + $geodir_show_location_url = get_option('geodir_show_location_url'); |
|
818 | 818 | |
819 | - $gd_city = get_query_var( 'gd_city' ); |
|
819 | + $gd_city = get_query_var('gd_city'); |
|
820 | 820 | |
821 | - if ( $gd_city ) { |
|
822 | - $gd_country = get_query_var( 'gd_country' ); |
|
823 | - $gd_region = get_query_var( 'gd_region' ); |
|
821 | + if ($gd_city) { |
|
822 | + $gd_country = get_query_var('gd_country'); |
|
823 | + $gd_region = get_query_var('gd_region'); |
|
824 | 824 | } else { |
825 | 825 | $location = geodir_get_default_location(); |
826 | 826 | |
827 | - $gd_country = isset( $location->country_slug ) ? $location->country_slug : ''; |
|
828 | - $gd_region = isset( $location->region_slug ) ? $location->region_slug : ''; |
|
829 | - $gd_city = isset( $location->city_slug ) ? $location->city_slug : ''; |
|
827 | + $gd_country = isset($location->country_slug) ? $location->country_slug : ''; |
|
828 | + $gd_region = isset($location->region_slug) ? $location->region_slug : ''; |
|
829 | + $gd_city = isset($location->city_slug) ? $location->city_slug : ''; |
|
830 | 830 | } |
831 | 831 | |
832 | - if ( $geodir_show_location_url == 'all' ) { |
|
832 | + if ($geodir_show_location_url == 'all') { |
|
833 | 833 | $location_url[] = $gd_country; |
834 | 834 | $location_url[] = $gd_region; |
835 | - } else if ( $geodir_show_location_url == 'country_city' ) { |
|
835 | + } else if ($geodir_show_location_url == 'country_city') { |
|
836 | 836 | $location_url[] = $gd_country; |
837 | - } else if ( $geodir_show_location_url == 'region_city' ) { |
|
837 | + } else if ($geodir_show_location_url == 'region_city') { |
|
838 | 838 | $location_url[] = $gd_region; |
839 | 839 | } |
840 | 840 | |
841 | 841 | $location_url[] = $gd_city; |
842 | 842 | |
843 | - $location_url = implode( '/', $location_url ); |
|
843 | + $location_url = implode('/', $location_url); |
|
844 | 844 | } |
845 | 845 | |
846 | 846 | |
847 | - if ( ! empty( $category ) ) { |
|
847 | + if (!empty($category)) { |
|
848 | 848 | global $geodir_add_location_url; |
849 | 849 | $geodir_add_location_url = '0'; |
850 | - if ( $add_location_filter != '0' ) { |
|
850 | + if ($add_location_filter != '0') { |
|
851 | 851 | $geodir_add_location_url = '1'; |
852 | 852 | } |
853 | - $viewall_url = get_term_link( (int) $category[0], $post_type . $category_taxonomy ); |
|
853 | + $viewall_url = get_term_link((int) $category[0], $post_type.$category_taxonomy); |
|
854 | 854 | $geodir_add_location_url = null; |
855 | 855 | } |
856 | 856 | ob_start(); |
@@ -860,24 +860,24 @@ discard block |
||
860 | 860 | <div class="geodir_locations geodir_location_listing"> |
861 | 861 | |
862 | 862 | <?php |
863 | - if ( isset( $request['is_widget'] ) && $request['is_widget'] == '1' ) { |
|
863 | + if (isset($request['is_widget']) && $request['is_widget'] == '1') { |
|
864 | 864 | /** geodir_before_title filter Documented in geodirectory_widgets.php */ |
865 | - $before_title = isset( $before_title ) ? $before_title : apply_filters( 'geodir_before_title', '<h3 class="widget-title">' ); |
|
865 | + $before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">'); |
|
866 | 866 | /** geodir_after_title filter Documented in geodirectory_widgets.php */ |
867 | - $after_title = isset( $after_title ) ? $after_title : apply_filters( 'geodir_after_title', '</h3>' ); |
|
867 | + $after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>'); |
|
868 | 868 | ?> |
869 | 869 | <div class="location_list_heading clearfix"> |
870 | - <?php echo $before_title . $title . $after_title; ?> |
|
870 | + <?php echo $before_title.$title.$after_title; ?> |
|
871 | 871 | </div> |
872 | 872 | <?php |
873 | 873 | } |
874 | 874 | $query_args = array( |
875 | 875 | 'posts_per_page' => $post_number, |
876 | 876 | 'is_geodir_loop' => true, |
877 | - 'gd_location' => ( $add_location_filter ) ? true : false, |
|
877 | + 'gd_location' => ($add_location_filter) ? true : false, |
|
878 | 878 | 'post_type' => $post_type, |
879 | 879 | 'order_by' => $list_sort, |
880 | - 'post__not_in' => array( $post_id ), |
|
880 | + 'post__not_in' => array($post_id), |
|
881 | 881 | 'excerpt_length' => $character_count, |
882 | 882 | 'related_listings' => $is_display |
883 | 883 | ); |
@@ -888,7 +888,7 @@ discard block |
||
888 | 888 | 'terms' => $category |
889 | 889 | ); |
890 | 890 | |
891 | - $query_args['tax_query'] = array( $tax_query ); |
|
891 | + $query_args['tax_query'] = array($tax_query); |
|
892 | 892 | |
893 | 893 | global $gridview_columns_widget, $post; |
894 | 894 | |
@@ -900,21 +900,21 @@ discard block |
||
900 | 900 | * @param array $query_args The query array. |
901 | 901 | * @param array $request Related posts request array. |
902 | 902 | */ |
903 | - $query_args = apply_filters( 'geodir_related_posts_widget_query_args', $query_args, $request ); |
|
903 | + $query_args = apply_filters('geodir_related_posts_widget_query_args', $query_args, $request); |
|
904 | 904 | |
905 | - query_posts( $query_args ); |
|
905 | + query_posts($query_args); |
|
906 | 906 | |
907 | - if ( strstr( $layout, 'gridview' ) ) { |
|
908 | - $listing_view_exp = explode( '_', $layout ); |
|
907 | + if (strstr($layout, 'gridview')) { |
|
908 | + $listing_view_exp = explode('_', $layout); |
|
909 | 909 | $gridview_columns_widget = $layout; |
910 | 910 | $layout = $listing_view_exp[0]; |
911 | - } else if ( $layout == 'list' ) { |
|
911 | + } else if ($layout == 'list') { |
|
912 | 912 | $gridview_columns_widget = ''; |
913 | 913 | } |
914 | 914 | $related_posts = true; |
915 | 915 | |
916 | 916 | $related_nearest = false; |
917 | - if ( $list_sort == 'nearest' ) { |
|
917 | + if ($list_sort == 'nearest') { |
|
918 | 918 | $related_nearest = true; |
919 | 919 | } |
920 | 920 | |
@@ -931,14 +931,14 @@ discard block |
||
931 | 931 | * |
932 | 932 | * @since 1.0.0 |
933 | 933 | */ |
934 | - $template = apply_filters( "geodir_template_part-related-listing-listview", geodir_locate_template( 'widget-listing-listview' ) ); |
|
934 | + $template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('widget-listing-listview')); |
|
935 | 935 | |
936 | 936 | /** |
937 | 937 | * Includes related listing listview template. |
938 | 938 | * |
939 | 939 | * @since 1.0.0 |
940 | 940 | */ |
941 | - include( $template ); |
|
941 | + include($template); |
|
942 | 942 | |
943 | 943 | wp_reset_query(); |
944 | 944 | $post = $origi_post; |
@@ -966,12 +966,12 @@ discard block |
||
966 | 966 | function geodir_category_count_script() { |
967 | 967 | global $geodir_post_category_str; |
968 | 968 | |
969 | - if ( ! empty( $geodir_post_category_str ) ) { |
|
970 | - $geodir_post_category_str = serialize( $geodir_post_category_str ); |
|
969 | + if (!empty($geodir_post_category_str)) { |
|
970 | + $geodir_post_category_str = serialize($geodir_post_category_str); |
|
971 | 971 | } |
972 | 972 | |
973 | - $all_var['post_category_array'] = html_entity_decode( (string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8' ); |
|
974 | - $script = "var post_category_array = " . json_encode( $all_var ) . ';'; |
|
973 | + $all_var['post_category_array'] = html_entity_decode((string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8'); |
|
974 | + $script = "var post_category_array = ".json_encode($all_var).';'; |
|
975 | 975 | echo '<script>'; |
976 | 976 | echo $script; |
977 | 977 | echo '</script>'; |
@@ -986,8 +986,8 @@ discard block |
||
986 | 986 | * @return string Returns the default language. |
987 | 987 | */ |
988 | 988 | function geodir_get_map_default_language() { |
989 | - $geodir_default_map_language = get_option( 'geodir_default_map_language' ); |
|
990 | - if ( empty( $geodir_default_map_language ) ) { |
|
989 | + $geodir_default_map_language = get_option('geodir_default_map_language'); |
|
990 | + if (empty($geodir_default_map_language)) { |
|
991 | 991 | $geodir_default_map_language = 'en'; |
992 | 992 | } |
993 | 993 | |
@@ -998,7 +998,7 @@ discard block |
||
998 | 998 | * |
999 | 999 | * @param string $geodir_default_map_language Default map language. |
1000 | 1000 | */ |
1001 | - return apply_filters( 'geodir_default_map_language', $geodir_default_map_language ); |
|
1001 | + return apply_filters('geodir_default_map_language', $geodir_default_map_language); |
|
1002 | 1002 | } |
1003 | 1003 | |
1004 | 1004 | /** |
@@ -1009,7 +1009,7 @@ discard block |
||
1009 | 1009 | * @return string Returns the api key. |
1010 | 1010 | */ |
1011 | 1011 | function geodir_get_map_api_key() { |
1012 | - $key = get_option( 'geodir_google_api_key' ); |
|
1012 | + $key = get_option('geodir_google_api_key'); |
|
1013 | 1013 | |
1014 | 1014 | /** |
1015 | 1015 | * Filter Google maps api key. |
@@ -1018,7 +1018,7 @@ discard block |
||
1018 | 1018 | * |
1019 | 1019 | * @param string $key Google maps api key. |
1020 | 1020 | */ |
1021 | - return apply_filters( 'geodir_google_api_key', $key ); |
|
1021 | + return apply_filters('geodir_google_api_key', $key); |
|
1022 | 1022 | } |
1023 | 1023 | |
1024 | 1024 | |
@@ -1038,20 +1038,20 @@ discard block |
||
1038 | 1038 | global $wp, $post, $wp_query, $wpdb, $geodir_addon_list; |
1039 | 1039 | |
1040 | 1040 | $is_geodir_page = geodir_is_geodir_page(); |
1041 | - if ( ! $is_geodir_page ) { |
|
1041 | + if (!$is_geodir_page) { |
|
1042 | 1042 | return; |
1043 | 1043 | }// if non GD page, bail |
1044 | 1044 | |
1045 | 1045 | $use_gd_meta = true; |
1046 | - if ( ( class_exists( 'WPSEO_Frontend' ) || class_exists( 'All_in_One_SEO_Pack' ) ) && !geodir_disable_yoast_seo_metas() ) { |
|
1046 | + if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) { |
|
1047 | 1047 | $use_gd_meta = false; |
1048 | 1048 | |
1049 | - if ( geodir_is_page( 'search' ) ) { |
|
1049 | + if (geodir_is_page('search')) { |
|
1050 | 1050 | $use_gd_meta = true; |
1051 | 1051 | } |
1052 | 1052 | } |
1053 | 1053 | |
1054 | - if ( ! $use_gd_meta ) { |
|
1054 | + if (!$use_gd_meta) { |
|
1055 | 1055 | return; |
1056 | 1056 | }// bail if Yoast Wordpress SEO or All_in_One_SEO_Pack active. |
1057 | 1057 | |
@@ -1059,68 +1059,68 @@ discard block |
||
1059 | 1059 | |
1060 | 1060 | $all_postypes = geodir_get_posttypes(); |
1061 | 1061 | |
1062 | - $geodir_taxonomies = geodir_get_taxonomies( '', true ); |
|
1062 | + $geodir_taxonomies = geodir_get_taxonomies('', true); |
|
1063 | 1063 | |
1064 | 1064 | $meta_desc = ''; |
1065 | 1065 | $meta_key = ''; |
1066 | - if ( isset( $current_term->ID ) && $current_term->ID == geodir_location_page_id() ) { |
|
1066 | + if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) { |
|
1067 | 1067 | /** |
1068 | 1068 | * Filter SEO meta location description. |
1069 | 1069 | * |
1070 | 1070 | * @since 1.0.0 |
1071 | 1071 | */ |
1072 | - $meta_desc = apply_filters( 'geodir_seo_meta_location_description', '' ); |
|
1072 | + $meta_desc = apply_filters('geodir_seo_meta_location_description', ''); |
|
1073 | 1073 | $meta_desc .= ''; |
1074 | 1074 | } |
1075 | - if ( have_posts() && is_single() OR is_page() ) { |
|
1076 | - while ( have_posts() ) { |
|
1075 | + if (have_posts() && is_single() OR is_page()) { |
|
1076 | + while (have_posts()) { |
|
1077 | 1077 | the_post(); |
1078 | 1078 | |
1079 | - if ( has_excerpt() ) { |
|
1080 | - $out_excerpt = strip_tags( strip_shortcodes( get_the_excerpt() ) ); |
|
1081 | - if ( empty( $out_excerpt ) ) { |
|
1082 | - $out_excerpt = strip_tags( do_shortcode( get_the_excerpt() ) ); |
|
1079 | + if (has_excerpt()) { |
|
1080 | + $out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt())); |
|
1081 | + if (empty($out_excerpt)) { |
|
1082 | + $out_excerpt = strip_tags(do_shortcode(get_the_excerpt())); |
|
1083 | 1083 | } |
1084 | - $out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $out_excerpt ); |
|
1084 | + $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt); |
|
1085 | 1085 | } else { |
1086 | - $out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $post->post_content ); |
|
1087 | - $out_excerpt = strip_tags( strip_shortcodes( $out_excerpt ) ); |
|
1088 | - if ( empty( $out_excerpt ) ) { |
|
1089 | - $out_excerpt = strip_tags( do_shortcode( $out_excerpt ) ); // parse short code from content |
|
1086 | + $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content); |
|
1087 | + $out_excerpt = strip_tags(strip_shortcodes($out_excerpt)); |
|
1088 | + if (empty($out_excerpt)) { |
|
1089 | + $out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content |
|
1090 | 1090 | } |
1091 | - $out_excerpt = trim( wp_trim_words( $out_excerpt, 35, '' ), '.!?,;:-' ); |
|
1091 | + $out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-'); |
|
1092 | 1092 | } |
1093 | 1093 | |
1094 | 1094 | $meta_desc .= $out_excerpt; |
1095 | 1095 | } |
1096 | - } elseif ( ( is_category() || is_tag() ) && isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) { |
|
1097 | - if ( is_category() ) { |
|
1098 | - $meta_desc .= __( "Posts related to Category:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_cat_title( "", false ) ); |
|
1099 | - } elseif ( is_tag() ) { |
|
1100 | - $meta_desc .= __( "Posts related to Tag:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_tag_title( "", false ) ); |
|
1096 | + } elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) { |
|
1097 | + if (is_category()) { |
|
1098 | + $meta_desc .= __("Posts related to Category:", 'geodirectory')." ".geodir_utf8_ucfirst(single_cat_title("", false)); |
|
1099 | + } elseif (is_tag()) { |
|
1100 | + $meta_desc .= __("Posts related to Tag:", 'geodirectory')." ".geodir_utf8_ucfirst(single_tag_title("", false)); |
|
1101 | 1101 | } |
1102 | - } elseif ( isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) { |
|
1103 | - $meta_desc .= isset( $current_term->description ) ? $current_term->description : ''; |
|
1102 | + } elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) { |
|
1103 | + $meta_desc .= isset($current_term->description) ? $current_term->description : ''; |
|
1104 | 1104 | } |
1105 | 1105 | |
1106 | 1106 | |
1107 | 1107 | $geodir_post_type = geodir_get_current_posttype(); |
1108 | - $geodir_post_type_info = get_post_type_object( $geodir_post_type ); |
|
1109 | - $geodir_is_page_listing = geodir_is_page( 'listing' ) ? true : false; |
|
1110 | - |
|
1111 | - $category_taxonomy = geodir_get_taxonomies( $geodir_post_type ); |
|
1112 | - $tag_taxonomy = geodir_get_taxonomies( $geodir_post_type, true ); |
|
1113 | - |
|
1114 | - $geodir_is_category = isset( $category_taxonomy[0] ) && get_query_var( $category_taxonomy[0] ) ? get_query_var( $category_taxonomy[0] ) : false; |
|
1115 | - $geodir_is_tag = isset( $tag_taxonomy[0] ) && get_query_var( $tag_taxonomy[0] ) ? true : false; |
|
1116 | - |
|
1117 | - $geodir_is_search = geodir_is_page( 'search' ) ? true : false; |
|
1118 | - $geodir_is_location = geodir_is_page( 'location' ) ? true : false; |
|
1119 | - $geodir_location_manager = isset( $geodir_addon_list['geodir_location_manager'] ) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false; |
|
1120 | - $godir_location_terms = geodir_get_current_location_terms( 'query_vars' ); |
|
1121 | - $gd_city = $geodir_location_manager && isset( $godir_location_terms['gd_city'] ) ? $godir_location_terms['gd_city'] : null; |
|
1122 | - $gd_region = $geodir_location_manager && isset( $godir_location_terms['gd_region'] ) ? $godir_location_terms['gd_region'] : null; |
|
1123 | - $gd_country = $geodir_location_manager && isset( $godir_location_terms['gd_country'] ) ? $godir_location_terms['gd_country'] : null; |
|
1108 | + $geodir_post_type_info = get_post_type_object($geodir_post_type); |
|
1109 | + $geodir_is_page_listing = geodir_is_page('listing') ? true : false; |
|
1110 | + |
|
1111 | + $category_taxonomy = geodir_get_taxonomies($geodir_post_type); |
|
1112 | + $tag_taxonomy = geodir_get_taxonomies($geodir_post_type, true); |
|
1113 | + |
|
1114 | + $geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false; |
|
1115 | + $geodir_is_tag = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false; |
|
1116 | + |
|
1117 | + $geodir_is_search = geodir_is_page('search') ? true : false; |
|
1118 | + $geodir_is_location = geodir_is_page('location') ? true : false; |
|
1119 | + $geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false; |
|
1120 | + $godir_location_terms = geodir_get_current_location_terms('query_vars'); |
|
1121 | + $gd_city = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : null; |
|
1122 | + $gd_region = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : null; |
|
1123 | + $gd_country = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : null; |
|
1124 | 1124 | /** |
1125 | 1125 | * Filter the Everywhere text in location description. |
1126 | 1126 | * |
@@ -1128,108 +1128,108 @@ discard block |
||
1128 | 1128 | * |
1129 | 1129 | * @param string $replace_location Everywhere text. |
1130 | 1130 | */ |
1131 | - $replace_location = apply_filters( 'geodir_location_description_everywhere_text', __( 'Everywhere', 'geodirectory' ) ); |
|
1131 | + $replace_location = apply_filters('geodir_location_description_everywhere_text', __('Everywhere', 'geodirectory')); |
|
1132 | 1132 | $location_id = null; |
1133 | - if ( $geodir_location_manager ) { |
|
1134 | - $sql = $wpdb->prepare( "SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array( $gd_city ) ); |
|
1135 | - $location_id = (int) $wpdb->get_var( $sql ); |
|
1133 | + if ($geodir_location_manager) { |
|
1134 | + $sql = $wpdb->prepare("SELECT location_id FROM ".POST_LOCATION_TABLE." WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city)); |
|
1135 | + $location_id = (int) $wpdb->get_var($sql); |
|
1136 | 1136 | $location_type = geodir_what_is_current_location(); |
1137 | - if ( $location_type == 'city' ) { |
|
1138 | - $replace_location = geodir_get_current_location( array( 'what' => 'city', 'echo' => false ) ); |
|
1139 | - } elseif ( $location_type == 'region' ) { |
|
1140 | - $replace_location = geodir_get_current_location( array( 'what' => 'region', 'echo' => false ) ); |
|
1141 | - } elseif ( $location_type == 'country' ) { |
|
1142 | - $replace_location = geodir_get_current_location( array( 'what' => 'country', 'echo' => false ) ); |
|
1143 | - $replace_location = __( $replace_location, 'geodirectory' ); |
|
1144 | - } |
|
1145 | - $country = get_query_var( 'gd_country' ); |
|
1146 | - $region = get_query_var( 'gd_region' ); |
|
1147 | - $city = get_query_var( 'gd_city' ); |
|
1137 | + if ($location_type == 'city') { |
|
1138 | + $replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false)); |
|
1139 | + } elseif ($location_type == 'region') { |
|
1140 | + $replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false)); |
|
1141 | + } elseif ($location_type == 'country') { |
|
1142 | + $replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false)); |
|
1143 | + $replace_location = __($replace_location, 'geodirectory'); |
|
1144 | + } |
|
1145 | + $country = get_query_var('gd_country'); |
|
1146 | + $region = get_query_var('gd_region'); |
|
1147 | + $city = get_query_var('gd_city'); |
|
1148 | 1148 | $current_location = ''; |
1149 | - if ( $country != '' ) { |
|
1150 | - $current_location = get_actual_location_name( 'country', $country, true ); |
|
1149 | + if ($country != '') { |
|
1150 | + $current_location = get_actual_location_name('country', $country, true); |
|
1151 | 1151 | } |
1152 | - if ( $region != '' ) { |
|
1153 | - $current_location = get_actual_location_name( 'region', $region ); |
|
1152 | + if ($region != '') { |
|
1153 | + $current_location = get_actual_location_name('region', $region); |
|
1154 | 1154 | } |
1155 | - if ( $city != '' ) { |
|
1156 | - $current_location = get_actual_location_name( 'city', $city ); |
|
1155 | + if ($city != '') { |
|
1156 | + $current_location = get_actual_location_name('city', $city); |
|
1157 | 1157 | } |
1158 | 1158 | $replace_location = $current_location != '' ? $current_location : $replace_location; |
1159 | 1159 | } |
1160 | 1160 | |
1161 | 1161 | $geodir_meta_keys = ''; |
1162 | 1162 | $geodir_meta_desc = ''; |
1163 | - if ( $is_geodir_page && ! empty( $geodir_post_type_info ) ) { |
|
1164 | - if ( $geodir_is_page_listing || $geodir_is_search || geodir_is_page( 'add-listing' ) ) { |
|
1165 | - $geodir_meta_keys = isset( $geodir_post_type_info->seo['meta_keyword'] ) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys; |
|
1163 | + if ($is_geodir_page && !empty($geodir_post_type_info)) { |
|
1164 | + if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) { |
|
1165 | + $geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys; |
|
1166 | 1166 | |
1167 | - $geodir_meta_desc = isset( $geodir_post_type_info->description ) ? $geodir_post_type_info->description : $geodir_meta_desc; |
|
1168 | - $geodir_meta_desc = isset( $geodir_post_type_info->seo['meta_description'] ) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc; |
|
1167 | + $geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc; |
|
1168 | + $geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc; |
|
1169 | 1169 | |
1170 | - if ( $geodir_is_category ) { |
|
1171 | - $category = $geodir_is_category ? get_term_by( 'slug', $geodir_is_category, $category_taxonomy[0] ) : null; |
|
1172 | - if ( isset( $category->term_id ) && ! empty( $category->term_id ) ) { |
|
1170 | + if ($geodir_is_category) { |
|
1171 | + $category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : null; |
|
1172 | + if (isset($category->term_id) && !empty($category->term_id)) { |
|
1173 | 1173 | $category_id = $category->term_id; |
1174 | - $category_desc = trim( $category->description ) != '' ? trim( $category->description ) : geodir_get_tax_meta( $category_id, 'ct_cat_top_desc', false, $geodir_post_type ); |
|
1175 | - if ( $location_id ) { |
|
1176 | - $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id; |
|
1177 | - $cat_loc_option = get_option( $option_name ); |
|
1178 | - |
|
1179 | - $gd_cat_loc_default = ! empty( $cat_loc_option ) && isset( $cat_loc_option['gd_cat_loc_default'] ) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false; |
|
1180 | - if ( ! $gd_cat_loc_default ) { |
|
1181 | - $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id; |
|
1182 | - $option = get_option( $option_name ); |
|
1183 | - $category_desc = isset( $option['gd_cat_loc_desc'] ) && trim( $option['gd_cat_loc_desc'] ) != '' ? trim( $option['gd_cat_loc_desc'] ) : $category_desc; |
|
1174 | + $category_desc = trim($category->description) != '' ? trim($category->description) : geodir_get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type); |
|
1175 | + if ($location_id) { |
|
1176 | + $option_name = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id; |
|
1177 | + $cat_loc_option = get_option($option_name); |
|
1178 | + |
|
1179 | + $gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false; |
|
1180 | + if (!$gd_cat_loc_default) { |
|
1181 | + $option_name = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id.'_'.$location_id; |
|
1182 | + $option = get_option($option_name); |
|
1183 | + $category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc; |
|
1184 | 1184 | } |
1185 | 1185 | } |
1186 | - $geodir_meta_desc = __( "Posts related to Category:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_cat_title( "", false ) ) . '. ' . $category_desc; |
|
1186 | + $geodir_meta_desc = __("Posts related to Category:", 'geodirectory')." ".geodir_utf8_ucfirst(single_cat_title("", false)).'. '.$category_desc; |
|
1187 | 1187 | } |
1188 | - } else if ( $geodir_is_tag ) { |
|
1189 | - $geodir_meta_desc = __( "Posts related to Tag:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_tag_title( "", false ) ) . '. ' . $geodir_meta_desc; |
|
1188 | + } else if ($geodir_is_tag) { |
|
1189 | + $geodir_meta_desc = __("Posts related to Tag:", 'geodirectory')." ".geodir_utf8_ucfirst(single_tag_title("", false)).'. '.$geodir_meta_desc; |
|
1190 | 1190 | } |
1191 | 1191 | } |
1192 | 1192 | } |
1193 | 1193 | |
1194 | 1194 | |
1195 | 1195 | $gd_page = ''; |
1196 | - if ( geodir_is_page( 'home' ) ) { |
|
1196 | + if (geodir_is_page('home')) { |
|
1197 | 1197 | $gd_page = 'home'; |
1198 | - $meta_desc = ( get_option( 'geodir_meta_desc_homepage' ) ) ? get_option( 'geodir_meta_desc_homepage' ) : $meta_desc; |
|
1199 | - } elseif ( geodir_is_page( 'detail' ) ) { |
|
1198 | + $meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc; |
|
1199 | + } elseif (geodir_is_page('detail')) { |
|
1200 | 1200 | $gd_page = 'detail'; |
1201 | - $meta_desc = ( get_option( 'geodir_meta_desc_detail' ) ) ? get_option( 'geodir_meta_desc_detail' ) : $meta_desc; |
|
1202 | - } elseif ( geodir_is_page( 'pt' ) ) { |
|
1201 | + $meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc; |
|
1202 | + } elseif (geodir_is_page('pt')) { |
|
1203 | 1203 | $gd_page = 'pt'; |
1204 | - $meta_desc = ( get_option( 'geodir_meta_desc_pt' ) ) ? get_option( 'geodir_meta_desc_pt' ) : $meta_desc; |
|
1205 | - } elseif ( geodir_is_page( 'listing' ) ) { |
|
1204 | + $meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc; |
|
1205 | + } elseif (geodir_is_page('listing')) { |
|
1206 | 1206 | $gd_page = 'listing'; |
1207 | - $meta_desc = ( get_option( 'geodir_meta_desc_listing' ) ) ? get_option( 'geodir_meta_desc_listing' ) : $meta_desc; |
|
1208 | - } elseif ( geodir_is_page( 'location' ) ) { |
|
1207 | + $meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc; |
|
1208 | + } elseif (geodir_is_page('location')) { |
|
1209 | 1209 | $gd_page = 'location'; |
1210 | - $meta_desc = ( get_option( 'geodir_meta_desc_location' ) ) ? get_option( 'geodir_meta_desc_location' ) : $meta_desc; |
|
1211 | - $meta_desc = apply_filters( 'geodir_seo_meta_location_description', $meta_desc ); |
|
1210 | + $meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc; |
|
1211 | + $meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc); |
|
1212 | 1212 | |
1213 | - } elseif ( geodir_is_page( 'search' ) ) { |
|
1213 | + } elseif (geodir_is_page('search')) { |
|
1214 | 1214 | $gd_page = 'search'; |
1215 | - $meta_desc = ( get_option( 'geodir_meta_desc_search' ) ) ? get_option( 'geodir_meta_desc_search' ) : $meta_desc; |
|
1216 | - } elseif ( geodir_is_page( 'add-listing' ) ) { |
|
1215 | + $meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc; |
|
1216 | + } elseif (geodir_is_page('add-listing')) { |
|
1217 | 1217 | $gd_page = 'add-listing'; |
1218 | - $meta_desc = ( get_option( 'geodir_meta_desc_add-listing' ) ) ? get_option( 'geodir_meta_desc_add-listing' ) : $meta_desc; |
|
1219 | - } elseif ( geodir_is_page( 'author' ) ) { |
|
1218 | + $meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc; |
|
1219 | + } elseif (geodir_is_page('author')) { |
|
1220 | 1220 | $gd_page = 'author'; |
1221 | - $meta_desc = ( get_option( 'geodir_meta_desc_author' ) ) ? get_option( 'geodir_meta_desc_author' ) : $meta_desc; |
|
1222 | - } elseif ( geodir_is_page( 'login' ) ) { |
|
1221 | + $meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc; |
|
1222 | + } elseif (geodir_is_page('login')) { |
|
1223 | 1223 | $gd_page = 'login'; |
1224 | - $meta_desc = ( get_option( 'geodir_meta_desc_login' ) ) ? get_option( 'geodir_meta_desc_login' ) : $meta_desc; |
|
1225 | - } elseif ( geodir_is_page( 'listing-success' ) ) { |
|
1224 | + $meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc; |
|
1225 | + } elseif (geodir_is_page('listing-success')) { |
|
1226 | 1226 | $gd_page = 'listing-success'; |
1227 | - $meta_desc = ( get_option( 'geodir_meta_desc_listing-success' ) ) ? get_option( 'geodir_meta_desc_listing-success' ) : $meta_desc; |
|
1227 | + $meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc; |
|
1228 | 1228 | } |
1229 | 1229 | |
1230 | 1230 | |
1231 | - if ( $meta_desc ) { |
|
1232 | - $meta_desc = stripslashes_deep( $meta_desc ); |
|
1231 | + if ($meta_desc) { |
|
1232 | + $meta_desc = stripslashes_deep($meta_desc); |
|
1233 | 1233 | /** |
1234 | 1234 | * Filter page description to replace variables. |
1235 | 1235 | * |
@@ -1238,7 +1238,7 @@ discard block |
||
1238 | 1238 | * @param string $title The page description including variables. |
1239 | 1239 | * @param string $gd_page The GeoDirectory page type if any. |
1240 | 1240 | */ |
1241 | - $meta_desc = apply_filters( 'geodir_seo_meta_description_pre', __( $meta_desc, 'geodirectory' ), $gd_page, '' ); |
|
1241 | + $meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'), $gd_page, ''); |
|
1242 | 1242 | |
1243 | 1243 | /** |
1244 | 1244 | * Filter SEO meta description. |
@@ -1247,20 +1247,20 @@ discard block |
||
1247 | 1247 | * |
1248 | 1248 | * @param string $meta_desc Meta description content. |
1249 | 1249 | */ |
1250 | - echo apply_filters( 'geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc ); |
|
1250 | + echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="'.$meta_desc.'" />', $meta_desc); |
|
1251 | 1251 | } |
1252 | 1252 | |
1253 | 1253 | // meta keywords |
1254 | - if ( isset( $post->post_type ) && in_array( $post->post_type, $all_postypes ) ) { |
|
1255 | - $place_tags = wp_get_post_terms( $post->ID, $post->post_type . '_tags', array( "fields" => "names" ) ); |
|
1256 | - $place_cats = wp_get_post_terms( $post->ID, $post->post_type . 'category', array( "fields" => "names" ) ); |
|
1254 | + if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) { |
|
1255 | + $place_tags = wp_get_post_terms($post->ID, $post->post_type.'_tags', array("fields" => "names")); |
|
1256 | + $place_cats = wp_get_post_terms($post->ID, $post->post_type.'category', array("fields" => "names")); |
|
1257 | 1257 | |
1258 | - $meta_key .= implode( ", ", array_merge( (array) $place_cats, (array) $place_tags ) ); |
|
1258 | + $meta_key .= implode(", ", array_merge((array) $place_cats, (array) $place_tags)); |
|
1259 | 1259 | } else { |
1260 | 1260 | $posttags = get_the_tags(); |
1261 | - if ( $posttags ) { |
|
1262 | - foreach ( $posttags as $tag ) { |
|
1263 | - $meta_key .= $tag->name . ' '; |
|
1261 | + if ($posttags) { |
|
1262 | + foreach ($posttags as $tag) { |
|
1263 | + $meta_key .= $tag->name.' '; |
|
1264 | 1264 | } |
1265 | 1265 | } else { |
1266 | 1266 | // $tags = get_tags( array( 'orderby' => 'count', 'order' => 'DESC' ) ); |
@@ -1276,20 +1276,20 @@ discard block |
||
1276 | 1276 | } |
1277 | 1277 | } |
1278 | 1278 | |
1279 | - $meta_key = $meta_key != '' ? rtrim( trim( $meta_key ), "," ) : $meta_key; |
|
1280 | - $geodir_meta_keys = $geodir_meta_keys != '' ? ( $meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys ) : $meta_key; |
|
1281 | - if ( $geodir_meta_keys != '' ) { |
|
1282 | - $geodir_meta_keys = strip_tags( $geodir_meta_keys ); |
|
1283 | - $geodir_meta_keys = esc_html( $geodir_meta_keys ); |
|
1284 | - $geodir_meta_keys = geodir_strtolower( $geodir_meta_keys ); |
|
1285 | - $geodir_meta_keys = wp_html_excerpt( $geodir_meta_keys, 1000, '' ); |
|
1286 | - $geodir_meta_keys = str_replace( '%location%', $replace_location, $geodir_meta_keys ); |
|
1279 | + $meta_key = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key; |
|
1280 | + $geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key.', '.$geodir_meta_keys : $geodir_meta_keys) : $meta_key; |
|
1281 | + if ($geodir_meta_keys != '') { |
|
1282 | + $geodir_meta_keys = strip_tags($geodir_meta_keys); |
|
1283 | + $geodir_meta_keys = esc_html($geodir_meta_keys); |
|
1284 | + $geodir_meta_keys = geodir_strtolower($geodir_meta_keys); |
|
1285 | + $geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, ''); |
|
1286 | + $geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys); |
|
1287 | 1287 | |
1288 | - $meta_key = rtrim( trim( $geodir_meta_keys ), "," ); |
|
1288 | + $meta_key = rtrim(trim($geodir_meta_keys), ","); |
|
1289 | 1289 | } |
1290 | 1290 | |
1291 | - if ( $meta_key ) { |
|
1292 | - $meta_key = stripslashes_deep( $meta_key ); |
|
1291 | + if ($meta_key) { |
|
1292 | + $meta_key = stripslashes_deep($meta_key); |
|
1293 | 1293 | /** |
1294 | 1294 | * Filter SEO meta keywords. |
1295 | 1295 | * |
@@ -1297,7 +1297,7 @@ discard block |
||
1297 | 1297 | * |
1298 | 1298 | * @param string $meta_desc Meta keywords. |
1299 | 1299 | */ |
1300 | - echo apply_filters( 'geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key ); |
|
1300 | + echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="'.$meta_key.'" />', $meta_key); |
|
1301 | 1301 | } |
1302 | 1302 | |
1303 | 1303 | } |
@@ -1317,8 +1317,8 @@ discard block |
||
1317 | 1317 | |
1318 | 1318 | $geodir_detail_page_tabs_array = geodir_detail_page_tabs_array(); |
1319 | 1319 | |
1320 | - foreach ( $geodir_detail_page_tabs_array as $key => $tabs_obj ) { |
|
1321 | - $geodir_detail_page_tabs_key_value_array[ $key ] = $tabs_obj['heading_text']; |
|
1320 | + foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) { |
|
1321 | + $geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text']; |
|
1322 | 1322 | } |
1323 | 1323 | |
1324 | 1324 | return $geodir_detail_page_tabs_key_value_array; |
@@ -1340,57 +1340,57 @@ discard block |
||
1340 | 1340 | * @since 1.0.0 |
1341 | 1341 | */ |
1342 | 1342 | $arr_tabs['post_profile'] = array( |
1343 | - 'heading_text' => __( 'Profile', 'geodirectory' ), |
|
1343 | + 'heading_text' => __('Profile', 'geodirectory'), |
|
1344 | 1344 | 'is_active_tab' => true, |
1345 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_profile' ), |
|
1345 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'), |
|
1346 | 1346 | 'tab_content' => '' |
1347 | 1347 | ); |
1348 | - $arr_tabs['post_info'] = array( |
|
1349 | - 'heading_text' => __( 'More Info', 'geodirectory' ), |
|
1348 | + $arr_tabs['post_info'] = array( |
|
1349 | + 'heading_text' => __('More Info', 'geodirectory'), |
|
1350 | 1350 | 'is_active_tab' => false, |
1351 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_info' ), |
|
1351 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'), |
|
1352 | 1352 | 'tab_content' => '' |
1353 | 1353 | ); |
1354 | 1354 | |
1355 | 1355 | $arr_tabs['post_images'] = array( |
1356 | - 'heading_text' => __( 'Photos', 'geodirectory' ), |
|
1356 | + 'heading_text' => __('Photos', 'geodirectory'), |
|
1357 | 1357 | 'is_active_tab' => false, |
1358 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_images' ), |
|
1358 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'), |
|
1359 | 1359 | 'tab_content' => '' |
1360 | 1360 | ); |
1361 | 1361 | |
1362 | 1362 | $arr_tabs['post_video'] = array( |
1363 | - 'heading_text' => __( 'Video', 'geodirectory' ), |
|
1363 | + 'heading_text' => __('Video', 'geodirectory'), |
|
1364 | 1364 | 'is_active_tab' => false, |
1365 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_video' ), |
|
1365 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'), |
|
1366 | 1366 | 'tab_content' => '' |
1367 | 1367 | ); |
1368 | 1368 | |
1369 | 1369 | $arr_tabs['special_offers'] = array( |
1370 | - 'heading_text' => __( 'Special Offers', 'geodirectory' ), |
|
1370 | + 'heading_text' => __('Special Offers', 'geodirectory'), |
|
1371 | 1371 | 'is_active_tab' => false, |
1372 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'special_offers' ), |
|
1372 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'), |
|
1373 | 1373 | 'tab_content' => '' |
1374 | 1374 | ); |
1375 | 1375 | |
1376 | 1376 | $arr_tabs['post_map'] = array( |
1377 | - 'heading_text' => __( 'Map', 'geodirectory' ), |
|
1377 | + 'heading_text' => __('Map', 'geodirectory'), |
|
1378 | 1378 | 'is_active_tab' => false, |
1379 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_map' ), |
|
1379 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'), |
|
1380 | 1380 | 'tab_content' => '' |
1381 | 1381 | ); |
1382 | 1382 | |
1383 | 1383 | $arr_tabs['reviews'] = array( |
1384 | - 'heading_text' => __( 'Reviews', 'geodirectory' ), |
|
1384 | + 'heading_text' => __('Reviews', 'geodirectory'), |
|
1385 | 1385 | 'is_active_tab' => false, |
1386 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'reviews' ), |
|
1386 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'), |
|
1387 | 1387 | 'tab_content' => 'review display' |
1388 | 1388 | ); |
1389 | 1389 | |
1390 | 1390 | $arr_tabs['related_listing'] = array( |
1391 | - 'heading_text' => __( 'Related Listing', 'geodirectory' ), |
|
1391 | + 'heading_text' => __('Related Listing', 'geodirectory'), |
|
1392 | 1392 | 'is_active_tab' => false, |
1393 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'related_listing' ), |
|
1393 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'), |
|
1394 | 1394 | 'tab_content' => '' |
1395 | 1395 | ); |
1396 | 1396 | |
@@ -1399,7 +1399,7 @@ discard block |
||
1399 | 1399 | * |
1400 | 1400 | * @since 1.0.0 |
1401 | 1401 | */ |
1402 | - return apply_filters( 'geodir_detail_page_tab_list_extend', $arr_tabs ); |
|
1402 | + return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs); |
|
1403 | 1403 | |
1404 | 1404 | |
1405 | 1405 | } |
@@ -1413,13 +1413,13 @@ discard block |
||
1413 | 1413 | * @return mixed|array Tabs array. |
1414 | 1414 | */ |
1415 | 1415 | function geodir_detail_page_tabs_list() { |
1416 | - $tabs_excluded = get_option( 'geodir_detail_page_tabs_excluded' ); |
|
1416 | + $tabs_excluded = get_option('geodir_detail_page_tabs_excluded'); |
|
1417 | 1417 | $tabs_array = geodir_detail_page_tabs_array(); |
1418 | 1418 | |
1419 | - if ( ! empty( $tabs_excluded ) ) { |
|
1420 | - foreach ( $tabs_excluded as $tab ) { |
|
1421 | - if ( array_key_exists( $tab, $tabs_array ) ) { |
|
1422 | - unset( $tabs_array[ $tab ] ); |
|
1419 | + if (!empty($tabs_excluded)) { |
|
1420 | + foreach ($tabs_excluded as $tab) { |
|
1421 | + if (array_key_exists($tab, $tabs_array)) { |
|
1422 | + unset($tabs_array[$tab]); |
|
1423 | 1423 | } |
1424 | 1424 | } |
1425 | 1425 | } |
@@ -1443,66 +1443,66 @@ discard block |
||
1443 | 1443 | function geodir_show_detail_page_tabs() { |
1444 | 1444 | global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields, $preview; |
1445 | 1445 | |
1446 | - $post_id = ! empty( $post ) && isset( $post->ID ) ? (int) $post->ID : 0; |
|
1447 | - $request_post_id = ! empty( $_REQUEST['p'] ) ? (int) $_REQUEST['p'] : 0; |
|
1448 | - $is_backend_preview = ( is_single() && ! empty( $_REQUEST['post_type'] ) && ! empty( $_REQUEST['preview'] ) && ! empty( $_REQUEST['p'] ) ) && is_super_admin() ? true : false; // skip if preview from backend |
|
1446 | + $post_id = !empty($post) && isset($post->ID) ? (int) $post->ID : 0; |
|
1447 | + $request_post_id = !empty($_REQUEST['p']) ? (int) $_REQUEST['p'] : 0; |
|
1448 | + $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend |
|
1449 | 1449 | |
1450 | - if ( $is_backend_preview && ! $post_id > 0 && $request_post_id > 0 ) { |
|
1451 | - $post = geodir_get_post_info( $request_post_id ); |
|
1452 | - setup_postdata( $post ); |
|
1450 | + if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) { |
|
1451 | + $post = geodir_get_post_info($request_post_id); |
|
1452 | + setup_postdata($post); |
|
1453 | 1453 | } |
1454 | 1454 | |
1455 | - $geodir_post_detail_fields = geodir_show_listing_info( 'moreinfo' ); |
|
1455 | + $geodir_post_detail_fields = geodir_show_listing_info('moreinfo'); |
|
1456 | 1456 | |
1457 | 1457 | $package_info = geodir_post_package_info(array(), $post, (!empty($post->post_type) ? $post->post_type : '')); |
1458 | 1458 | $image_limit = ''; |
1459 | 1459 | if (defined('GEODIRPAYMENT_VERSION') && !empty($package_info) && isset($package_info->image_limit) && $package_info->image_limit !== '') { |
1460 | - $image_limit = (int)$package_info->image_limit; |
|
1460 | + $image_limit = (int) $package_info->image_limit; |
|
1461 | 1461 | } |
1462 | 1462 | |
1463 | - if ( geodir_is_page( 'detail' ) ) { |
|
1464 | - $video = geodir_get_video( $post->ID ); |
|
1465 | - $special_offers = geodir_get_special_offers( $post->ID ); |
|
1463 | + if (geodir_is_page('detail')) { |
|
1464 | + $video = geodir_get_video($post->ID); |
|
1465 | + $special_offers = geodir_get_special_offers($post->ID); |
|
1466 | 1466 | $related_listing_array = array(); |
1467 | - if ( get_option( 'geodir_add_related_listing_posttypes' ) ) { |
|
1468 | - $related_listing_array = get_option( 'geodir_add_related_listing_posttypes' ); |
|
1467 | + if (get_option('geodir_add_related_listing_posttypes')) { |
|
1468 | + $related_listing_array = get_option('geodir_add_related_listing_posttypes'); |
|
1469 | 1469 | } |
1470 | 1470 | |
1471 | - $excluded_tabs = get_option( 'geodir_detail_page_tabs_excluded' ); |
|
1472 | - if ( ! $excluded_tabs ) { |
|
1471 | + $excluded_tabs = get_option('geodir_detail_page_tabs_excluded'); |
|
1472 | + if (!$excluded_tabs) { |
|
1473 | 1473 | $excluded_tabs = array(); |
1474 | 1474 | } |
1475 | 1475 | |
1476 | 1476 | $related_listing = ''; |
1477 | - if ( in_array( $post->post_type, $related_listing_array ) && ! in_array( 'related_listing', $excluded_tabs ) ) { |
|
1477 | + if (in_array($post->post_type, $related_listing_array) && !in_array('related_listing', $excluded_tabs)) { |
|
1478 | 1478 | $request = array( |
1479 | - 'post_number' => get_option( 'geodir_related_post_count' ), |
|
1480 | - 'relate_to' => get_option( 'geodir_related_post_relate_to' ), |
|
1481 | - 'layout' => get_option( 'geodir_related_post_listing_view' ), |
|
1482 | - 'add_location_filter' => get_option( 'geodir_related_post_location_filter' ), |
|
1483 | - 'list_sort' => get_option( 'geodir_related_post_sortby' ), |
|
1484 | - 'character_count' => get_option( 'geodir_related_post_excerpt' ) |
|
1479 | + 'post_number' => get_option('geodir_related_post_count'), |
|
1480 | + 'relate_to' => get_option('geodir_related_post_relate_to'), |
|
1481 | + 'layout' => get_option('geodir_related_post_listing_view'), |
|
1482 | + 'add_location_filter' => get_option('geodir_related_post_location_filter'), |
|
1483 | + 'list_sort' => get_option('geodir_related_post_sortby'), |
|
1484 | + 'character_count' => get_option('geodir_related_post_excerpt') |
|
1485 | 1485 | ); |
1486 | 1486 | |
1487 | - if ( $post->post_type == 'gd_event' && defined( 'GDEVENTS_VERSION' ) ) { |
|
1488 | - $related_listing = geodir_get_detail_page_related_events( $request ); |
|
1487 | + if ($post->post_type == 'gd_event' && defined('GDEVENTS_VERSION')) { |
|
1488 | + $related_listing = geodir_get_detail_page_related_events($request); |
|
1489 | 1489 | } else { |
1490 | - $related_listing = geodir_related_posts_display( $request ); |
|
1490 | + $related_listing = geodir_related_posts_display($request); |
|
1491 | 1491 | } |
1492 | 1492 | |
1493 | 1493 | } |
1494 | 1494 | |
1495 | - $post_images = geodir_get_images( $post->ID, 'thumbnail' ); |
|
1495 | + $post_images = geodir_get_images($post->ID, 'thumbnail'); |
|
1496 | 1496 | $thumb_image = ''; |
1497 | - if ( ! empty( $post_images ) ) { |
|
1497 | + if (!empty($post_images)) { |
|
1498 | 1498 | $count = 1; |
1499 | - foreach ( $post_images as $image ) { |
|
1499 | + foreach ($post_images as $image) { |
|
1500 | 1500 | if ($image_limit !== '' && $count > $image_limit) { |
1501 | 1501 | break; |
1502 | 1502 | } |
1503 | - $caption = ( ! empty( $image->caption ) ) ? $image->caption : ''; |
|
1504 | - $thumb_image .= '<a href="' . $image->src . '" title="' . $caption . '">'; |
|
1505 | - $thumb_image .= geodir_show_image( $image, 'thumbnail', true, false ); |
|
1503 | + $caption = (!empty($image->caption)) ? $image->caption : ''; |
|
1504 | + $thumb_image .= '<a href="'.$image->src.'" title="'.$caption.'">'; |
|
1505 | + $thumb_image .= geodir_show_image($image, 'thumbnail', true, false); |
|
1506 | 1506 | $thumb_image .= '</a>'; |
1507 | 1507 | $count++; |
1508 | 1508 | } |
@@ -1512,11 +1512,11 @@ discard block |
||
1512 | 1512 | $map_args['map_canvas_name'] = 'detail_page_map_canvas'; |
1513 | 1513 | $map_args['width'] = '600'; |
1514 | 1514 | $map_args['height'] = '300'; |
1515 | - if ( $post->post_mapzoom ) { |
|
1516 | - $map_args['zoom'] = '' . $post->post_mapzoom . ''; |
|
1515 | + if ($post->post_mapzoom) { |
|
1516 | + $map_args['zoom'] = ''.$post->post_mapzoom.''; |
|
1517 | 1517 | } |
1518 | 1518 | $map_args['autozoom'] = false; |
1519 | - $map_args['scrollwheel'] = ( get_option( 'geodir_add_listing_mouse_scroll' ) ) ? 0 : 1; |
|
1519 | + $map_args['scrollwheel'] = (get_option('geodir_add_listing_mouse_scroll')) ? 0 : 1; |
|
1520 | 1520 | $map_args['child_collapse'] = '0'; |
1521 | 1521 | $map_args['enable_cat_filters'] = false; |
1522 | 1522 | $map_args['enable_text_search'] = false; |
@@ -1525,29 +1525,29 @@ discard block |
||
1525 | 1525 | $map_args['enable_jason_on_load'] = true; |
1526 | 1526 | $map_args['enable_map_direction'] = true; |
1527 | 1527 | $map_args['map_class_name'] = 'geodir-map-detail-page'; |
1528 | - $map_args['maptype'] = ( ! empty( $post->post_mapview ) ) ? $post->post_mapview : 'ROADMAP'; |
|
1529 | - } else if ( geodir_is_page( 'preview' ) ) { |
|
1530 | - $video = isset( $post->geodir_video ) ? $post->geodir_video : ''; |
|
1531 | - $special_offers = isset( $post->geodir_special_offers ) ? $post->geodir_special_offers : ''; |
|
1528 | + $map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP'; |
|
1529 | + } else if (geodir_is_page('preview')) { |
|
1530 | + $video = isset($post->geodir_video) ? $post->geodir_video : ''; |
|
1531 | + $special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : ''; |
|
1532 | 1532 | |
1533 | - if ( isset( $post->post_images ) ) { |
|
1534 | - $post->post_images = trim( $post->post_images, "," ); |
|
1533 | + if (isset($post->post_images)) { |
|
1534 | + $post->post_images = trim($post->post_images, ","); |
|
1535 | 1535 | } |
1536 | 1536 | |
1537 | - if ( isset( $post->post_images ) && ! empty( $post->post_images ) ) { |
|
1538 | - $post_images = explode( ",", $post->post_images ); |
|
1537 | + if (isset($post->post_images) && !empty($post->post_images)) { |
|
1538 | + $post_images = explode(",", $post->post_images); |
|
1539 | 1539 | } |
1540 | 1540 | |
1541 | 1541 | $thumb_image = ''; |
1542 | - if ( ! empty( $post_images ) ) { |
|
1542 | + if (!empty($post_images)) { |
|
1543 | 1543 | $count = 1; |
1544 | - foreach ( $post_images as $image ) { |
|
1545 | - if ( $image != '' ) { |
|
1544 | + foreach ($post_images as $image) { |
|
1545 | + if ($image != '') { |
|
1546 | 1546 | if ($image_limit !== '' && $count > $image_limit) { |
1547 | 1547 | break; |
1548 | 1548 | } |
1549 | - $thumb_image .= '<a href="' . $image . '">'; |
|
1550 | - $thumb_image .= geodir_show_image( array( 'src' => $image ), 'thumbnail', true, false ); |
|
1549 | + $thumb_image .= '<a href="'.$image.'">'; |
|
1550 | + $thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false); |
|
1551 | 1551 | $thumb_image .= '</a>'; |
1552 | 1552 | $count++; |
1553 | 1553 | } |
@@ -1555,18 +1555,18 @@ discard block |
||
1555 | 1555 | } |
1556 | 1556 | |
1557 | 1557 | global $map_jason; |
1558 | - $marker_json = $post->marker_json != '' ? json_decode( $post->marker_json, true ) : array(); |
|
1559 | - $marker_icon = ( ! empty( $marker_json ) && ! empty( $marker_json['i'] ) ) ? $marker_json['i'] : ''; |
|
1560 | - $icon_size = geodir_get_marker_size( $marker_icon ); |
|
1558 | + $marker_json = $post->marker_json != '' ? json_decode($post->marker_json, true) : array(); |
|
1559 | + $marker_icon = (!empty($marker_json) && !empty($marker_json['i'])) ? $marker_json['i'] : ''; |
|
1560 | + $icon_size = geodir_get_marker_size($marker_icon); |
|
1561 | 1561 | $marker_json['w'] = $icon_size['w']; |
1562 | 1562 | $marker_json['h'] = $icon_size['h']; |
1563 | - $map_jason[] = json_encode( $marker_json ); |
|
1563 | + $map_jason[] = json_encode($marker_json); |
|
1564 | 1564 | |
1565 | - $address_latitude = isset( $post->post_latitude ) ? $post->post_latitude : ''; |
|
1566 | - $address_longitude = isset( $post->post_longitude ) ? $post->post_longitude : ''; |
|
1567 | - $mapview = isset( $post->post_mapview ) ? $post->post_mapview : ''; |
|
1568 | - $mapzoom = isset( $post->post_mapzoom ) ? $post->post_mapzoom : ''; |
|
1569 | - if ( ! $mapzoom ) { |
|
1565 | + $address_latitude = isset($post->post_latitude) ? $post->post_latitude : ''; |
|
1566 | + $address_longitude = isset($post->post_longitude) ? $post->post_longitude : ''; |
|
1567 | + $mapview = isset($post->post_mapview) ? $post->post_mapview : ''; |
|
1568 | + $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : ''; |
|
1569 | + if (!$mapzoom) { |
|
1570 | 1570 | $mapzoom = 12; |
1571 | 1571 | } |
1572 | 1572 | |
@@ -1589,37 +1589,37 @@ discard block |
||
1589 | 1589 | $map_args['map_class_name'] = 'geodir-map-preview-page'; |
1590 | 1590 | } |
1591 | 1591 | |
1592 | - $arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user |
|
1592 | + $arr_detail_page_tabs = geodir_detail_page_tabs_list(); // get this sooner so we can get the active tab for the user |
|
1593 | 1593 | |
1594 | 1594 | $active_tab = ''; |
1595 | 1595 | $active_tab_name = ''; |
1596 | 1596 | $default_tab = ''; |
1597 | 1597 | $default_tab_name = ''; |
1598 | - foreach ( $arr_detail_page_tabs as $tab_index => $tabs ) { |
|
1599 | - if ( isset( $tabs['is_active_tab'] ) && $tabs['is_active_tab'] && ! empty( $tabs['is_display'] ) && isset( $tabs['heading_text'] ) && $tabs['heading_text'] ) { |
|
1598 | + foreach ($arr_detail_page_tabs as $tab_index => $tabs) { |
|
1599 | + if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) { |
|
1600 | 1600 | $active_tab = $tab_index; |
1601 | - $active_tab_name = __( $tabs['heading_text'], 'geodirectory' ); |
|
1601 | + $active_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
1602 | 1602 | } |
1603 | 1603 | |
1604 | - if ( $default_tab === '' && ! empty( $tabs['is_display'] ) && ! empty( $tabs['heading_text'] ) ) { |
|
1604 | + if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) { |
|
1605 | 1605 | $default_tab = $tab_index; |
1606 | - $default_tab_name = __( $tabs['heading_text'], 'geodirectory' ); |
|
1606 | + $default_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
1607 | 1607 | } |
1608 | 1608 | } |
1609 | 1609 | |
1610 | - if ( $active_tab === '' && $default_tab !== '' ) { // Make first tab as a active tab if not any tab is active. |
|
1611 | - if ( isset( $arr_detail_page_tabs[ $active_tab ] ) && isset( $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] ) ) { |
|
1612 | - $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] = false; |
|
1610 | + if ($active_tab === '' && $default_tab !== '') { // Make first tab as a active tab if not any tab is active. |
|
1611 | + if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) { |
|
1612 | + $arr_detail_page_tabs[$active_tab]['is_active_tab'] = false; |
|
1613 | 1613 | } |
1614 | 1614 | |
1615 | - $arr_detail_page_tabs[ $default_tab ]['is_active_tab'] = true; |
|
1615 | + $arr_detail_page_tabs[$default_tab]['is_active_tab'] = true; |
|
1616 | 1616 | $active_tab = $default_tab; |
1617 | 1617 | $active_tab_name = $default_tab_name; |
1618 | 1618 | } |
1619 | - $tab_list = ( get_option( 'geodir_disable_tabs', false ) ) ? true : false; |
|
1619 | + $tab_list = (get_option('geodir_disable_tabs', false)) ? true : false; |
|
1620 | 1620 | ?> |
1621 | 1621 | <div class="geodir-tabs" id="gd-tabs" style="position:relative;"> |
1622 | - <?php if ( ! $tab_list ){ ?> |
|
1622 | + <?php if (!$tab_list) { ?> |
|
1623 | 1623 | <div id="geodir-tab-mobile-menu"> |
1624 | 1624 | <i class="fa fa-bars"></i> |
1625 | 1625 | <span class="geodir-mobile-active-tab"><?php echo $active_tab_name; ?></span> |
@@ -1634,26 +1634,26 @@ discard block |
||
1634 | 1634 | * @since 1.0.0 |
1635 | 1635 | * @see 'geodir_after_tab_list' |
1636 | 1636 | */ |
1637 | - do_action( 'geodir_before_tab_list' ); ?> |
|
1637 | + do_action('geodir_before_tab_list'); ?> |
|
1638 | 1638 | <?php |
1639 | 1639 | |
1640 | - foreach ( $arr_detail_page_tabs as $tab_index => $detail_page_tab ) { |
|
1641 | - if ( $detail_page_tab['is_display'] ) { |
|
1640 | + foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) { |
|
1641 | + if ($detail_page_tab['is_display']) { |
|
1642 | 1642 | |
1643 | - if ( ! $tab_list ) { |
|
1643 | + if (!$tab_list) { |
|
1644 | 1644 | ?> |
1645 | 1645 | <dt></dt> <!-- added to comply with validation --> |
1646 | - <dd <?php if ( $detail_page_tab['is_active_tab'] ){ ?>class="geodir-tab-active"<?php } ?> ><a |
|
1646 | + <dd <?php if ($detail_page_tab['is_active_tab']) { ?>class="geodir-tab-active"<?php } ?> ><a |
|
1647 | 1647 | data-tab="#<?php echo $tab_index; ?>" |
1648 | - data-status="enable"><?php _e( $detail_page_tab['heading_text'], 'geodirectory' ); ?></a> |
|
1648 | + data-status="enable"><?php _e($detail_page_tab['heading_text'], 'geodirectory'); ?></a> |
|
1649 | 1649 | </dd> |
1650 | 1650 | <?php |
1651 | 1651 | } |
1652 | 1652 | ob_start() // start tab content buffering |
1653 | 1653 | ?> |
1654 | 1654 | <li id="<?php echo $tab_index; ?>Tab"> |
1655 | - <?php if ( $tab_list ) { |
|
1656 | - $tab_title = '<span class="gd-tab-list-title" ><a href="#' . $tab_index . '">' . __( $detail_page_tab['heading_text'], 'geodirectory' ) . '</a></span><hr />'; |
|
1655 | + <?php if ($tab_list) { |
|
1656 | + $tab_title = '<span class="gd-tab-list-title" ><a href="#'.$tab_index.'">'.__($detail_page_tab['heading_text'], 'geodirectory').'</a></span><hr />'; |
|
1657 | 1657 | /** |
1658 | 1658 | * Filter the tab list title html. |
1659 | 1659 | * |
@@ -1663,7 +1663,7 @@ discard block |
||
1663 | 1663 | * @param string $tab_index The tab index type. |
1664 | 1664 | * @param array $detail_page_tab The array of values including title text. |
1665 | 1665 | */ |
1666 | - echo apply_filters( 'geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab ); |
|
1666 | + echo apply_filters('geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab); |
|
1667 | 1667 | } ?> |
1668 | 1668 | <div id="<?php echo $tab_index; ?>" class="hash-offset"></div> |
1669 | 1669 | <?php |
@@ -1674,7 +1674,7 @@ discard block |
||
1674 | 1674 | * |
1675 | 1675 | * @param string $tab_index The tab name ID. |
1676 | 1676 | */ |
1677 | - do_action( 'geodir_before_tab_content', $tab_index ); |
|
1677 | + do_action('geodir_before_tab_content', $tab_index); |
|
1678 | 1678 | |
1679 | 1679 | /** |
1680 | 1680 | * Called before the details tab content is output per tab. |
@@ -1684,21 +1684,21 @@ discard block |
||
1684 | 1684 | * @since 1.0.0 |
1685 | 1685 | * @todo do we need this if we have the hook above? 'geodir_before_tab_content' |
1686 | 1686 | */ |
1687 | - do_action( 'geodir_before_' . $tab_index . '_tab_content' ); |
|
1687 | + do_action('geodir_before_'.$tab_index.'_tab_content'); |
|
1688 | 1688 | /// write a code to generate content of each tab |
1689 | - switch ( $tab_index ) { |
|
1689 | + switch ($tab_index) { |
|
1690 | 1690 | case 'post_profile': |
1691 | 1691 | /** |
1692 | 1692 | * Called before the listing description content on the details page tab. |
1693 | 1693 | * |
1694 | 1694 | * @since 1.0.0 |
1695 | 1695 | */ |
1696 | - do_action( 'geodir_before_description_on_listing_detail' ); |
|
1697 | - if ( geodir_is_page( 'detail' ) ) { |
|
1696 | + do_action('geodir_before_description_on_listing_detail'); |
|
1697 | + if (geodir_is_page('detail')) { |
|
1698 | 1698 | the_content(); |
1699 | 1699 | } else { |
1700 | 1700 | /** This action is documented in geodirectory_template_actions.php */ |
1701 | - echo apply_filters( 'the_content', stripslashes( $post->post_desc ) ); |
|
1701 | + echo apply_filters('the_content', stripslashes($post->post_desc)); |
|
1702 | 1702 | } |
1703 | 1703 | |
1704 | 1704 | /** |
@@ -1706,7 +1706,7 @@ discard block |
||
1706 | 1706 | * |
1707 | 1707 | * @since 1.0.0 |
1708 | 1708 | */ |
1709 | - do_action( 'geodir_after_description_on_listing_detail' ); |
|
1709 | + do_action('geodir_after_description_on_listing_detail'); |
|
1710 | 1710 | break; |
1711 | 1711 | case 'post_info': |
1712 | 1712 | echo $geodir_post_detail_fields; |
@@ -1716,32 +1716,32 @@ discard block |
||
1716 | 1716 | break; |
1717 | 1717 | case 'post_video': |
1718 | 1718 | // some browsers hide $_POST data if used for embeds so we replace with a placeholder |
1719 | - if ( $preview ) { |
|
1720 | - if ( $video ) { |
|
1721 | - echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />" . __( 'Video Preview Placeholder', 'geodirectory' ) . "</p></span>"; |
|
1719 | + if ($preview) { |
|
1720 | + if ($video) { |
|
1721 | + echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />".__('Video Preview Placeholder', 'geodirectory')."</p></span>"; |
|
1722 | 1722 | } |
1723 | 1723 | } else { |
1724 | 1724 | |
1725 | 1725 | // stop payment manager filtering content length |
1726 | - $filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' ); |
|
1727 | - if ( false !== $filter_priority ) { |
|
1728 | - remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority ); |
|
1726 | + $filter_priority = has_filter('the_content', 'geodir_payments_the_content'); |
|
1727 | + if (false !== $filter_priority) { |
|
1728 | + remove_filter('the_content', 'geodir_payments_the_content', $filter_priority); |
|
1729 | 1729 | } |
1730 | 1730 | |
1731 | 1731 | /** This action is documented in geodirectory_template_actions.php */ |
1732 | - echo apply_filters( 'the_content', stripslashes( $video ) );// we apply the_content filter so oembed works also; |
|
1732 | + echo apply_filters('the_content', stripslashes($video)); // we apply the_content filter so oembed works also; |
|
1733 | 1733 | |
1734 | - if ( false !== $filter_priority ) { |
|
1735 | - add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority ); |
|
1734 | + if (false !== $filter_priority) { |
|
1735 | + add_filter('the_content', 'geodir_payments_the_content', $filter_priority); |
|
1736 | 1736 | } |
1737 | 1737 | } |
1738 | 1738 | break; |
1739 | 1739 | case 'special_offers': |
1740 | - echo apply_filters( 'gd_special_offers_content', wpautop( stripslashes( $special_offers ) ) ); |
|
1740 | + echo apply_filters('gd_special_offers_content', wpautop(stripslashes($special_offers))); |
|
1741 | 1741 | |
1742 | 1742 | break; |
1743 | 1743 | case 'post_map': |
1744 | - geodir_draw_map( $map_args ); |
|
1744 | + geodir_draw_map($map_args); |
|
1745 | 1745 | break; |
1746 | 1746 | case 'reviews': |
1747 | 1747 | comments_template(); |
@@ -1750,7 +1750,7 @@ discard block |
||
1750 | 1750 | echo $related_listing; |
1751 | 1751 | break; |
1752 | 1752 | default: { |
1753 | - if ( ( isset( $post->{$tab_index} ) || ( ! isset( $post->{$tab_index} ) && ( strpos( $tab_index, 'gd_tab_' ) !== false || $tab_index == 'link_business' ) ) ) && ! empty( $detail_page_tab['tab_content'] ) ) { |
|
1753 | + if ((isset($post->{$tab_index} ) || (!isset($post->{$tab_index} ) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) { |
|
1754 | 1754 | echo $detail_page_tab['tab_content']; |
1755 | 1755 | } |
1756 | 1756 | } |
@@ -1762,7 +1762,7 @@ discard block |
||
1762 | 1762 | * |
1763 | 1763 | * @since 1.0.0 |
1764 | 1764 | */ |
1765 | - do_action( 'geodir_after_tab_content', $tab_index ); |
|
1765 | + do_action('geodir_after_tab_content', $tab_index); |
|
1766 | 1766 | |
1767 | 1767 | /** |
1768 | 1768 | * Called after the details tab content is output per tab. |
@@ -1772,7 +1772,7 @@ discard block |
||
1772 | 1772 | * @since 1.0.0 |
1773 | 1773 | * @todo do we need this if we have the hook above? 'geodir_after_tab_content' |
1774 | 1774 | */ |
1775 | - do_action( 'geodir_after_' . $tab_index . '_tab_content' ); |
|
1775 | + do_action('geodir_after_'.$tab_index.'_tab_content'); |
|
1776 | 1776 | ?> </li> |
1777 | 1777 | <?php |
1778 | 1778 | /** |
@@ -1780,7 +1780,7 @@ discard block |
||
1780 | 1780 | * |
1781 | 1781 | * @since 1.0.0 |
1782 | 1782 | */ |
1783 | - $arr_detail_page_tabs[ $tab_index ]['tab_content'] = apply_filters( "geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean() ); |
|
1783 | + $arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_".$detail_page_tab['tab_content']."_tab_content", ob_get_clean()); |
|
1784 | 1784 | } // end of if for is_display |
1785 | 1785 | }// end of foreach |
1786 | 1786 | |
@@ -1790,14 +1790,14 @@ discard block |
||
1790 | 1790 | * @since 1.0.0 |
1791 | 1791 | * @see 'geodir_before_tab_list' |
1792 | 1792 | */ |
1793 | - do_action( 'geodir_after_tab_list' ); |
|
1793 | + do_action('geodir_after_tab_list'); |
|
1794 | 1794 | ?> |
1795 | - <?php if ( ! $tab_list ){ ?></dl><?php } ?> |
|
1796 | - <ul class="geodir-tabs-content entry-content <?php if ( $tab_list ) { ?>geodir-tabs-list<?php } ?>" |
|
1795 | + <?php if (!$tab_list) { ?></dl><?php } ?> |
|
1796 | + <ul class="geodir-tabs-content entry-content <?php if ($tab_list) { ?>geodir-tabs-list<?php } ?>" |
|
1797 | 1797 | style="position:relative;"> |
1798 | 1798 | <?php |
1799 | - foreach ( $arr_detail_page_tabs as $detail_page_tab ) { |
|
1800 | - if ( $detail_page_tab['is_display'] && ! empty( $detail_page_tab['tab_content'] ) ) { |
|
1799 | + foreach ($arr_detail_page_tabs as $detail_page_tab) { |
|
1800 | + if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) { |
|
1801 | 1801 | echo $detail_page_tab['tab_content']; |
1802 | 1802 | }// end of if |
1803 | 1803 | }// end of foreach |
@@ -1807,11 +1807,11 @@ discard block |
||
1807 | 1807 | * |
1808 | 1808 | * @since 1.0.0 |
1809 | 1809 | */ |
1810 | - do_action( 'geodir_add_tab_content' ); ?> |
|
1810 | + do_action('geodir_add_tab_content'); ?> |
|
1811 | 1811 | </ul> |
1812 | 1812 | <!--gd-tabs-content ul end--> |
1813 | 1813 | </div> |
1814 | - <?php if ( ! $tab_list ) { ?> |
|
1814 | + <?php if (!$tab_list) { ?> |
|
1815 | 1815 | <script> |
1816 | 1816 | if (window.location.hash && window.location.hash.indexOf('&') === -1 && jQuery(window.location.hash + 'Tab').length) { |
1817 | 1817 | hashVal = window.location.hash; |
@@ -1843,31 +1843,31 @@ discard block |
||
1843 | 1843 | * |
1844 | 1844 | * @return mixed Image file. |
1845 | 1845 | */ |
1846 | -function geodir_exif( $file ) { |
|
1847 | - if ( empty( $file ) || ! is_array( $file ) ) { |
|
1846 | +function geodir_exif($file) { |
|
1847 | + if (empty($file) || !is_array($file)) { |
|
1848 | 1848 | return $file; |
1849 | 1849 | } |
1850 | 1850 | |
1851 | - $file_path = ! empty( $file['tmp_name'] ) ? sanitize_text_field( $file['tmp_name'] ) : ''; |
|
1852 | - if ( ! ( $file_path && file_exists( $file_path ) ) ) { |
|
1851 | + $file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : ''; |
|
1852 | + if (!($file_path && file_exists($file_path))) { |
|
1853 | 1853 | return $file; |
1854 | 1854 | } |
1855 | 1855 | $file['file'] = $file_path; |
1856 | 1856 | |
1857 | - if ( ! file_is_valid_image( $file_path ) ) { |
|
1857 | + if (!file_is_valid_image($file_path)) { |
|
1858 | 1858 | return $file; // Bail if file is not an image. |
1859 | 1859 | } |
1860 | 1860 | |
1861 | - if ( ! function_exists( 'wp_get_image_editor' ) ) { |
|
1861 | + if (!function_exists('wp_get_image_editor')) { |
|
1862 | 1862 | return $file; |
1863 | 1863 | } |
1864 | 1864 | |
1865 | 1865 | $mime_type = $file['type']; |
1866 | 1866 | $exif = array(); |
1867 | - if ( $mime_type == 'image/jpeg' && function_exists( 'exif_read_data' ) ) { |
|
1867 | + if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) { |
|
1868 | 1868 | try { |
1869 | - $exif = exif_read_data( $file_path ); |
|
1870 | - } catch ( Exception $e ) { |
|
1869 | + $exif = exif_read_data($file_path); |
|
1870 | + } catch (Exception $e) { |
|
1871 | 1871 | $exif = array(); |
1872 | 1872 | } |
1873 | 1873 | } |
@@ -1876,13 +1876,13 @@ discard block |
||
1876 | 1876 | $flip = false; |
1877 | 1877 | $modify = false; |
1878 | 1878 | $orientation = 0; |
1879 | - if ( ! empty( $exif ) && isset( $exif['Orientation'] ) ) { |
|
1880 | - switch ( (int) $exif['Orientation'] ) { |
|
1879 | + if (!empty($exif) && isset($exif['Orientation'])) { |
|
1880 | + switch ((int) $exif['Orientation']) { |
|
1881 | 1881 | case 1: |
1882 | 1882 | // do nothing |
1883 | 1883 | break; |
1884 | 1884 | case 2: |
1885 | - $flip = array( false, true ); |
|
1885 | + $flip = array(false, true); |
|
1886 | 1886 | $modify = true; |
1887 | 1887 | break; |
1888 | 1888 | case 3: |
@@ -1891,13 +1891,13 @@ discard block |
||
1891 | 1891 | $modify = true; |
1892 | 1892 | break; |
1893 | 1893 | case 4: |
1894 | - $flip = array( true, false ); |
|
1894 | + $flip = array(true, false); |
|
1895 | 1895 | $modify = true; |
1896 | 1896 | break; |
1897 | 1897 | case 5: |
1898 | 1898 | $orientation = - 90; |
1899 | 1899 | $rotate = true; |
1900 | - $flip = array( false, true ); |
|
1900 | + $flip = array(false, true); |
|
1901 | 1901 | $modify = true; |
1902 | 1902 | break; |
1903 | 1903 | case 6: |
@@ -1908,7 +1908,7 @@ discard block |
||
1908 | 1908 | case 7: |
1909 | 1909 | $orientation = - 270; |
1910 | 1910 | $rotate = true; |
1911 | - $flip = array( false, true ); |
|
1911 | + $flip = array(false, true); |
|
1912 | 1912 | $modify = true; |
1913 | 1913 | break; |
1914 | 1914 | case 8: |
@@ -1934,31 +1934,31 @@ discard block |
||
1934 | 1934 | * @param int|null $quality Image Compression quality between 1-100% scale. Default null. |
1935 | 1935 | * @param string $quality Image mime type. |
1936 | 1936 | */ |
1937 | - $quality = apply_filters( 'geodir_image_upload_set_quality', $quality, $mime_type ); |
|
1938 | - if ( $quality !== null ) { |
|
1937 | + $quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type); |
|
1938 | + if ($quality !== null) { |
|
1939 | 1939 | $modify = true; |
1940 | 1940 | } |
1941 | 1941 | |
1942 | - if ( ! $modify ) { |
|
1942 | + if (!$modify) { |
|
1943 | 1943 | return $file; // no change |
1944 | 1944 | } |
1945 | 1945 | |
1946 | - $image = wp_get_image_editor( $file_path ); |
|
1947 | - if ( ! is_wp_error( $image ) ) { |
|
1948 | - if ( $rotate ) { |
|
1949 | - $image->rotate( $orientation ); |
|
1946 | + $image = wp_get_image_editor($file_path); |
|
1947 | + if (!is_wp_error($image)) { |
|
1948 | + if ($rotate) { |
|
1949 | + $image->rotate($orientation); |
|
1950 | 1950 | } |
1951 | 1951 | |
1952 | - if ( ! empty( $flip ) ) { |
|
1953 | - $image->flip( $flip[0], $flip[1] ); |
|
1952 | + if (!empty($flip)) { |
|
1953 | + $image->flip($flip[0], $flip[1]); |
|
1954 | 1954 | } |
1955 | 1955 | |
1956 | - if ( $quality !== null ) { |
|
1957 | - $image->set_quality( (int) $quality ); |
|
1956 | + if ($quality !== null) { |
|
1957 | + $image->set_quality((int) $quality); |
|
1958 | 1958 | } |
1959 | 1959 | |
1960 | - $result = $image->save( $file_path ); |
|
1961 | - if ( ! is_wp_error( $result ) ) { |
|
1960 | + $result = $image->save($file_path); |
|
1961 | + if (!is_wp_error($result)) { |
|
1962 | 1962 | $file['file'] = $result['path']; |
1963 | 1963 | $file['tmp_name'] = $result['path']; |
1964 | 1964 | } |
@@ -1986,7 +1986,7 @@ discard block |
||
1986 | 1986 | * |
1987 | 1987 | * @return string Returns the recent reviews html. |
1988 | 1988 | */ |
1989 | -function geodir_get_recent_reviews( $g_size = 60, $no_comments = 5, $comment_lenth = 60, $show_pass_post = false ) { |
|
1989 | +function geodir_get_recent_reviews($g_size = 60, $no_comments = 5, $comment_lenth = 60, $show_pass_post = false) { |
|
1990 | 1990 | global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session, $table_prefix; |
1991 | 1991 | $tablecomments = $wpdb->comments; |
1992 | 1992 | $tableposts = $wpdb->posts; |
@@ -1996,17 +1996,17 @@ discard block |
||
1996 | 1996 | $region_filter = ''; |
1997 | 1997 | $country_filter = ''; |
1998 | 1998 | |
1999 | - if ( $gd_session->get( 'gd_multi_location' ) ) { |
|
2000 | - if ( $gd_ses_country = $gd_session->get( 'gd_country' ) ) { |
|
2001 | - $country_filter = $wpdb->prepare( " AND r.post_country=%s ", str_replace( "-", " ", $gd_ses_country ) ); |
|
1999 | + if ($gd_session->get('gd_multi_location')) { |
|
2000 | + if ($gd_ses_country = $gd_session->get('gd_country')) { |
|
2001 | + $country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country)); |
|
2002 | 2002 | } |
2003 | 2003 | |
2004 | - if ( $gd_ses_region = $gd_session->get( 'gd_region' ) ) { |
|
2005 | - $region_filter = $wpdb->prepare( " AND r.post_region=%s ", str_replace( "-", " ", $gd_ses_region ) ); |
|
2004 | + if ($gd_ses_region = $gd_session->get('gd_region')) { |
|
2005 | + $region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region)); |
|
2006 | 2006 | } |
2007 | 2007 | |
2008 | - if ( $gd_ses_city = $gd_session->get( 'gd_city' ) ) { |
|
2009 | - $city_filter = $wpdb->prepare( " AND r.post_city=%s ", str_replace( "-", " ", $gd_ses_city ) ); |
|
2008 | + if ($gd_ses_city = $gd_session->get('gd_city')) { |
|
2009 | + $city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city)); |
|
2010 | 2010 | } |
2011 | 2011 | } |
2012 | 2012 | |
@@ -2017,84 +2017,84 @@ discard block |
||
2017 | 2017 | $lang_code = ICL_LANGUAGE_CODE; |
2018 | 2018 | |
2019 | 2019 | if ($lang_code) { |
2020 | - $join .= " JOIN " . $table_prefix . "icl_translations AS icltr2 ON icltr2.element_id = c.comment_post_ID AND p.ID = icltr2.element_id AND CONCAT('post_', p.post_type) = icltr2.element_type LEFT JOIN " . $table_prefix . "icl_translations AS icltr_comment ON icltr_comment.element_id = c.comment_ID AND icltr_comment.element_type = 'comment'"; |
|
2021 | - $where .= " AND icltr2.language_code = '" . $lang_code . "' AND (icltr_comment.language_code IS NULL OR icltr_comment.language_code = icltr2.language_code)"; |
|
2020 | + $join .= " JOIN ".$table_prefix."icl_translations AS icltr2 ON icltr2.element_id = c.comment_post_ID AND p.ID = icltr2.element_id AND CONCAT('post_', p.post_type) = icltr2.element_type LEFT JOIN ".$table_prefix."icl_translations AS icltr_comment ON icltr_comment.element_id = c.comment_ID AND icltr_comment.element_type = 'comment'"; |
|
2021 | + $where .= " AND icltr2.language_code = '".$lang_code."' AND (icltr_comment.language_code IS NULL OR icltr_comment.language_code = icltr2.language_code)"; |
|
2022 | 2022 | } |
2023 | 2023 | } |
2024 | 2024 | |
2025 | - $request = "SELECT r.id AS ID, r.post_type, r.comment_id AS comment_ID, r.post_date AS comment_date, r.overall_rating, r.user_id, r.post_id FROM " . GEODIR_REVIEW_TABLE . " AS r JOIN " . $wpdb->comments . " AS c ON c.comment_ID = r.comment_id JOIN " . $wpdb->posts . " AS p ON p.ID = c.comment_post_ID " . $join . " WHERE c.comment_parent = 0 AND c.comment_approved = 1 AND r.status = 1 AND r.overall_rating >= 1 AND p.post_status = 'publish' " . $where . " ORDER BY r.post_date DESC, r.id DESC LIMIT ". $no_comments; |
|
2025 | + $request = "SELECT r.id AS ID, r.post_type, r.comment_id AS comment_ID, r.post_date AS comment_date, r.overall_rating, r.user_id, r.post_id FROM ".GEODIR_REVIEW_TABLE." AS r JOIN ".$wpdb->comments." AS c ON c.comment_ID = r.comment_id JOIN ".$wpdb->posts." AS p ON p.ID = c.comment_post_ID ".$join." WHERE c.comment_parent = 0 AND c.comment_approved = 1 AND r.status = 1 AND r.overall_rating >= 1 AND p.post_status = 'publish' ".$where." ORDER BY r.post_date DESC, r.id DESC LIMIT ".$no_comments; |
|
2026 | 2026 | |
2027 | - $comments = $wpdb->get_results( $request ); |
|
2027 | + $comments = $wpdb->get_results($request); |
|
2028 | 2028 | |
2029 | - foreach ( $comments as $comment ) { |
|
2029 | + foreach ($comments as $comment) { |
|
2030 | 2030 | // Set the extra comment info needed. |
2031 | - $comment_extra = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID" ); |
|
2031 | + $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID"); |
|
2032 | 2032 | $comment->comment_content = $comment_extra->comment_content; |
2033 | 2033 | $comment->comment_author = $comment_extra->comment_author; |
2034 | 2034 | $comment->comment_author_email = $comment_extra->comment_author_email; |
2035 | 2035 | |
2036 | 2036 | $comment_id = ''; |
2037 | 2037 | $comment_id = $comment->comment_ID; |
2038 | - $comment_content = strip_tags( $comment->comment_content ); |
|
2038 | + $comment_content = strip_tags($comment->comment_content); |
|
2039 | 2039 | |
2040 | - $comment_content = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content ); |
|
2040 | + $comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content); |
|
2041 | 2041 | |
2042 | - $permalink = get_permalink( $comment->ID ) . "#comment-" . $comment->comment_ID; |
|
2042 | + $permalink = get_permalink($comment->ID)."#comment-".$comment->comment_ID; |
|
2043 | 2043 | $comment_author_email = $comment->comment_author_email; |
2044 | 2044 | $comment_post_ID = $comment->post_id; |
2045 | 2045 | |
2046 | - $post_title = get_the_title( $comment_post_ID ); |
|
2047 | - $permalink = get_permalink( $comment_post_ID ); |
|
2048 | - $comment_permalink = $permalink . "#comment-" . $comment->comment_ID; |
|
2049 | - $read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __( 'Read more', 'geodirectory' ) . '</a>'; |
|
2046 | + $post_title = get_the_title($comment_post_ID); |
|
2047 | + $permalink = get_permalink($comment_post_ID); |
|
2048 | + $comment_permalink = $permalink."#comment-".$comment->comment_ID; |
|
2049 | + $read_more = '<a class="comment_excerpt" href="'.$comment_permalink.'">'.__('Read more', 'geodirectory').'</a>'; |
|
2050 | 2050 | |
2051 | - $comment_content_length = strlen( $comment_content ); |
|
2052 | - if ( $comment_content_length > $comment_lenth ) { |
|
2053 | - $comment_excerpt = geodir_utf8_substr( $comment_content, 0, $comment_lenth ) . '... ' . $read_more; |
|
2051 | + $comment_content_length = strlen($comment_content); |
|
2052 | + if ($comment_content_length > $comment_lenth) { |
|
2053 | + $comment_excerpt = geodir_utf8_substr($comment_content, 0, $comment_lenth).'... '.$read_more; |
|
2054 | 2054 | } else { |
2055 | 2055 | $comment_excerpt = $comment_content; |
2056 | 2056 | } |
2057 | 2057 | |
2058 | - if ( $comment->user_id ) { |
|
2059 | - $user_profile_url = get_author_posts_url( $comment->user_id ); |
|
2058 | + if ($comment->user_id) { |
|
2059 | + $user_profile_url = get_author_posts_url($comment->user_id); |
|
2060 | 2060 | } else { |
2061 | 2061 | $user_profile_url = ''; |
2062 | 2062 | } |
2063 | 2063 | |
2064 | - if ( $comment_id ) { |
|
2064 | + if ($comment_id) { |
|
2065 | 2065 | $comments_echo .= '<li class="clearfix">'; |
2066 | - $comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">"; |
|
2067 | - if ( function_exists( 'get_avatar' ) ) { |
|
2068 | - if ( ! isset( $comment->comment_type ) ) { |
|
2069 | - if ( $user_profile_url ) { |
|
2070 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
2066 | + $comments_echo .= "<span class=\"li".$comment_id." geodir_reviewer_image\">"; |
|
2067 | + if (function_exists('get_avatar')) { |
|
2068 | + if (!isset($comment->comment_type)) { |
|
2069 | + if ($user_profile_url) { |
|
2070 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
2071 | 2071 | } |
2072 | - $comments_echo .= get_avatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
2073 | - if ( $user_profile_url ) { |
|
2072 | + $comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
2073 | + if ($user_profile_url) { |
|
2074 | 2074 | $comments_echo .= '</a>'; |
2075 | 2075 | } |
2076 | - } elseif ( ( isset( $comment->comment_type ) && $comment->comment_type == 'trackback' ) || ( isset( $comment->comment_type ) && $comment->comment_type == 'pingback' ) ) { |
|
2077 | - if ( $user_profile_url ) { |
|
2078 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
2076 | + } elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) { |
|
2077 | + if ($user_profile_url) { |
|
2078 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
2079 | 2079 | } |
2080 | - $comments_echo .= get_avatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
2080 | + $comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
2081 | 2081 | } |
2082 | - } elseif ( function_exists( 'gravatar' ) ) { |
|
2083 | - if ( $user_profile_url ) { |
|
2084 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
2082 | + } elseif (function_exists('gravatar')) { |
|
2083 | + if ($user_profile_url) { |
|
2084 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
2085 | 2085 | } |
2086 | 2086 | $comments_echo .= "<img src=\""; |
2087 | - if ( '' == $comment->comment_type ) { |
|
2088 | - $comments_echo .= gravatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
2089 | - if ( $user_profile_url ) { |
|
2087 | + if ('' == $comment->comment_type) { |
|
2088 | + $comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
2089 | + if ($user_profile_url) { |
|
2090 | 2090 | $comments_echo .= '</a>'; |
2091 | 2091 | } |
2092 | - } elseif ( ( 'trackback' == $comment->comment_type ) || ( 'pingback' == $comment->comment_type ) ) { |
|
2093 | - if ( $user_profile_url ) { |
|
2094 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
2092 | + } elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) { |
|
2093 | + if ($user_profile_url) { |
|
2094 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
2095 | 2095 | } |
2096 | - $comments_echo .= gravatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
2097 | - if ( $user_profile_url ) { |
|
2096 | + $comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
2097 | + if ($user_profile_url) { |
|
2098 | 2098 | $comments_echo .= '</a>'; |
2099 | 2099 | } |
2100 | 2100 | } |
@@ -2105,17 +2105,17 @@ discard block |
||
2105 | 2105 | |
2106 | 2106 | $comments_echo .= '<span class="geodir_reviewer_content">'; |
2107 | 2107 | $author_link = apply_filters('geodir_reviewer_content_author_link', true); |
2108 | - if ( $comment->user_id && $author_link ) { |
|
2109 | - $comments_echo .= '<a href="' . get_author_posts_url( $comment->user_id ) . '">'; |
|
2108 | + if ($comment->user_id && $author_link) { |
|
2109 | + $comments_echo .= '<a href="'.get_author_posts_url($comment->user_id).'">'; |
|
2110 | 2110 | } |
2111 | - $comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> '; |
|
2112 | - if ( $comment->user_id && $author_link ) { |
|
2111 | + $comments_echo .= '<span class="geodir_reviewer_author">'.$comment->comment_author.'</span> '; |
|
2112 | + if ($comment->user_id && $author_link) { |
|
2113 | 2113 | $comments_echo .= '</a>'; |
2114 | 2114 | } |
2115 | - $comments_echo .= '<span class="geodir_reviewer_reviewed">' . __( 'reviewed', 'geodirectory' ) . '</span> '; |
|
2116 | - $comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>'; |
|
2117 | - $comments_echo .= geodir_get_rating_stars( $comment->overall_rating, $comment_post_ID ); |
|
2118 | - $comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . ''; |
|
2115 | + $comments_echo .= '<span class="geodir_reviewer_reviewed">'.__('reviewed', 'geodirectory').'</span> '; |
|
2116 | + $comments_echo .= '<a href="'.$permalink.'" class="geodir_reviewer_title">'.$post_title.'</a>'; |
|
2117 | + $comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID); |
|
2118 | + $comments_echo .= '<p class="geodir_reviewer_text">'.$comment_excerpt.''; |
|
2119 | 2119 | //echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt); |
2120 | 2120 | $comments_echo .= '</p>'; |
2121 | 2121 | |
@@ -2135,25 +2135,25 @@ discard block |
||
2135 | 2135 | * @return array Returns post categories as an array. |
2136 | 2136 | */ |
2137 | 2137 | function geodir_home_map_cats_key_value_array() { |
2138 | - $post_types = geodir_get_posttypes( 'object' ); |
|
2138 | + $post_types = geodir_get_posttypes('object'); |
|
2139 | 2139 | |
2140 | 2140 | $return = array(); |
2141 | - if ( ! empty( $post_types ) ) { |
|
2142 | - foreach ( $post_types as $key => $post_type ) { |
|
2143 | - $cpt_name = __( $post_type->labels->singular_name, 'geodirectory' ); |
|
2144 | - $post_type_name = sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ); |
|
2145 | - $taxonomies = geodir_get_taxonomies( $key ); |
|
2146 | - $cat_taxonomy = ! empty( $taxonomies[0] ) ? $taxonomies[0] : null; |
|
2147 | - $cat_terms = $cat_taxonomy ? get_terms( $cat_taxonomy ) : null; |
|
2148 | - |
|
2149 | - if ( ! empty( $cat_terms ) ) { |
|
2150 | - $return[ 'optgroup_start-' . $key ] = $post_type_name; |
|
2151 | - |
|
2152 | - foreach ( $cat_terms as $cat_term ) { |
|
2153 | - $return[ $key . '_' . $cat_term->term_id ] = $cat_term->name; |
|
2141 | + if (!empty($post_types)) { |
|
2142 | + foreach ($post_types as $key => $post_type) { |
|
2143 | + $cpt_name = __($post_type->labels->singular_name, 'geodirectory'); |
|
2144 | + $post_type_name = sprintf(__('%s Categories', 'geodirectory'), $cpt_name); |
|
2145 | + $taxonomies = geodir_get_taxonomies($key); |
|
2146 | + $cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : null; |
|
2147 | + $cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : null; |
|
2148 | + |
|
2149 | + if (!empty($cat_terms)) { |
|
2150 | + $return['optgroup_start-'.$key] = $post_type_name; |
|
2151 | + |
|
2152 | + foreach ($cat_terms as $cat_term) { |
|
2153 | + $return[$key.'_'.$cat_term->term_id] = $cat_term->name; |
|
2154 | 2154 | } |
2155 | 2155 | |
2156 | - $return[ 'optgroup_end-' . $key ] = $post_type_name; |
|
2156 | + $return['optgroup_end-'.$key] = $post_type_name; |
|
2157 | 2157 | } |
2158 | 2158 | } |
2159 | 2159 | } |
@@ -2169,14 +2169,14 @@ discard block |
||
2169 | 2169 | * @package GeoDirectory |
2170 | 2170 | */ |
2171 | 2171 | function geodir_twitter_tweet_button() { |
2172 | - if ( isset( $_GET['gde'] ) ) { |
|
2173 | - $link = '?url=' . urlencode( geodir_curPageURL() ); |
|
2172 | + if (isset($_GET['gde'])) { |
|
2173 | + $link = '?url='.urlencode(geodir_curPageURL()); |
|
2174 | 2174 | } else { |
2175 | 2175 | $link = ''; |
2176 | 2176 | } |
2177 | 2177 | ?> |
2178 | 2178 | <a href="http://twitter.com/share<?php echo $link; ?>" |
2179 | - class="twitter-share-button"><?php _e( 'Tweet', 'geodirectory' ); ?></a> |
|
2179 | + class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a> |
|
2180 | 2180 | <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script> |
2181 | 2181 | <?php |
2182 | 2182 | } |
@@ -2193,10 +2193,10 @@ discard block |
||
2193 | 2193 | function geodir_fb_like_button() { |
2194 | 2194 | global $post; |
2195 | 2195 | ?> |
2196 | - <iframe <?php if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false ) ) { |
|
2196 | + <iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) { |
|
2197 | 2197 | echo 'allowtransparency="true"'; |
2198 | 2198 | } ?> class="facebook" |
2199 | - src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode( get_permalink( $post->ID ) ); ?>&layout=button_count&show_faces=false&width=100&action=like&colorscheme=light" |
|
2199 | + src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&layout=button_count&show_faces=false&width=100&action=like&colorscheme=light" |
|
2200 | 2200 | style="border:none; overflow:hidden; width:100px; height:20px"></iframe> |
2201 | 2201 | <?php |
2202 | 2202 | } |
@@ -2227,7 +2227,7 @@ discard block |
||
2227 | 2227 | |
2228 | 2228 | |
2229 | 2229 | function geodir_listing_bounce_map_pin_on_hover() { |
2230 | - if ( get_option( 'geodir_listing_hover_bounce_map_pin', true ) ) { |
|
2230 | + if (get_option('geodir_listing_hover_bounce_map_pin', true)) { |
|
2231 | 2231 | ?> |
2232 | 2232 | <script> |
2233 | 2233 | jQuery(function ($) { |
@@ -2250,44 +2250,44 @@ discard block |
||
2250 | 2250 | } |
2251 | 2251 | } |
2252 | 2252 | |
2253 | -add_action( 'geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10 ); |
|
2253 | +add_action('geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10); |
|
2254 | 2254 | |
2255 | -add_action( 'geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1 ); |
|
2256 | -function geodir_output_favourite_html_listings( $post_id ) { |
|
2257 | - geodir_favourite_html( '', $post_id ); |
|
2255 | +add_action('geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1); |
|
2256 | +function geodir_output_favourite_html_listings($post_id) { |
|
2257 | + geodir_favourite_html('', $post_id); |
|
2258 | 2258 | } |
2259 | 2259 | |
2260 | -add_action( 'geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2 ); |
|
2261 | -function geodir_output_pinpoint_html_listings( $post_id, $post = array() ) { |
|
2260 | +add_action('geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2); |
|
2261 | +function geodir_output_pinpoint_html_listings($post_id, $post = array()) { |
|
2262 | 2262 | global $wp_query; |
2263 | 2263 | |
2264 | 2264 | $show_pin_point = $wp_query->is_main_query(); |
2265 | 2265 | |
2266 | - if ( ! empty( $post ) && ! empty( $show_pin_point ) && is_active_widget( false, "", "geodir_map_v3_listing_map" ) ) { |
|
2267 | - $term_icon_url = geodir_get_tax_meta( $post->default_category, 'ct_cat_icon', false, $post->post_type ); |
|
2268 | - $marker_icon = isset( $term_icon_url['src'] ) ? $term_icon_url['src'] : get_option( 'geodir_default_marker_icon' ); |
|
2266 | + if (!empty($post) && !empty($show_pin_point) && is_active_widget(false, "", "geodir_map_v3_listing_map")) { |
|
2267 | + $term_icon_url = geodir_get_tax_meta($post->default_category, 'ct_cat_icon', false, $post->post_type); |
|
2268 | + $marker_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : get_option('geodir_default_marker_icon'); |
|
2269 | 2269 | ?> |
2270 | 2270 | <span class="geodir-pinpoint" |
2271 | - style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters( 'geodir_listing_listview_pinpoint_inner_content', '', 'listing' ); ?></span> |
|
2271 | + style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters('geodir_listing_listview_pinpoint_inner_content', '', 'listing'); ?></span> |
|
2272 | 2272 | <a class="geodir-pinpoint-link" href="javascript:void(0)" |
2273 | 2273 | onclick="if(typeof openMarker=='function'){openMarker('listing_map_canvas' ,'<?php echo $post->ID; ?>')}" |
2274 | 2274 | onmouseover="if(typeof animate_marker=='function'){animate_marker('listing_map_canvas' ,'<?php echo $post->ID; ?>')}" |
2275 | - onmouseout="if(typeof stop_marker_animation=='function'){stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"><?php _e( 'Pinpoint', 'geodirectory' ); ?></a> |
|
2275 | + onmouseout="if(typeof stop_marker_animation=='function'){stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"><?php _e('Pinpoint', 'geodirectory'); ?></a> |
|
2276 | 2276 | <?php |
2277 | 2277 | } |
2278 | 2278 | } |
2279 | 2279 | |
2280 | 2280 | function geodir_search_form_submit_button() { |
2281 | 2281 | |
2282 | - $new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true; |
|
2282 | + $new_style = get_option('geodir_show_search_old_search_from') ? false : true; |
|
2283 | 2283 | |
2284 | - if ( $new_style ) { |
|
2284 | + if ($new_style) { |
|
2285 | 2285 | $default_search_button_label = '<i class="fa fa-search" aria-hidden="true"></i>'; |
2286 | - }else{ |
|
2286 | + } else { |
|
2287 | 2287 | $default_search_button_label = 'Search'; |
2288 | 2288 | } |
2289 | - if ( get_option( 'geodir_search_button_label' ) && get_option( 'geodir_search_button_label' ) != 'Search' ) { |
|
2290 | - $default_search_button_label = __( get_option( 'geodir_search_button_label' ), 'geodirectory' ); |
|
2289 | + if (get_option('geodir_search_button_label') && get_option('geodir_search_button_label') != 'Search') { |
|
2290 | + $default_search_button_label = __(get_option('geodir_search_button_label'), 'geodirectory'); |
|
2291 | 2291 | } |
2292 | 2292 | |
2293 | 2293 | /** |
@@ -2299,78 +2299,78 @@ discard block |
||
2299 | 2299 | * |
2300 | 2300 | * @param string $default_search_button_label The current search button text. |
2301 | 2301 | */ |
2302 | - $default_search_button_label = apply_filters( 'geodir_search_default_search_button_text', $default_search_button_label ); |
|
2302 | + $default_search_button_label = apply_filters('geodir_search_default_search_button_text', $default_search_button_label); |
|
2303 | 2303 | |
2304 | 2304 | $fa_class = ''; |
2305 | - if ( strpos( $default_search_button_label, '&#' ) !== false ) { |
|
2305 | + if (strpos($default_search_button_label, '&#') !== false) { |
|
2306 | 2306 | $fa_class = 'fa'; |
2307 | 2307 | } |
2308 | 2308 | |
2309 | 2309 | |
2310 | - if ( $new_style ) { |
|
2310 | + if ($new_style) { |
|
2311 | 2311 | ?> |
2312 | - <button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e( $default_search_button_label ,'geodirectory'); ?></button> |
|
2313 | - <?php }else{?> |
|
2314 | - <input type="button" value="<?php esc_attr_e( $default_search_button_label ); ?>" |
|
2312 | + <button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e($default_search_button_label, 'geodirectory'); ?></button> |
|
2313 | + <?php } else {?> |
|
2314 | + <input type="button" value="<?php esc_attr_e($default_search_button_label); ?>" |
|
2315 | 2315 | class="geodir_submit_search <?php echo $fa_class; ?>"/> |
2316 | 2316 | <?php } |
2317 | 2317 | } |
2318 | 2318 | |
2319 | -add_action( 'geodir_before_search_button', 'geodir_search_form_submit_button', 5000 ); |
|
2319 | +add_action('geodir_before_search_button', 'geodir_search_form_submit_button', 5000); |
|
2320 | 2320 | |
2321 | 2321 | function geodir_search_form_post_type_input() { |
2322 | 2322 | global $geodir_search_post_type; |
2323 | - $post_types = apply_filters( 'geodir_search_form_post_types', geodir_get_posttypes( 'object' ) ); |
|
2323 | + $post_types = apply_filters('geodir_search_form_post_types', geodir_get_posttypes('object')); |
|
2324 | 2324 | $curr_post_type = $geodir_search_post_type; |
2325 | 2325 | |
2326 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) { |
|
2326 | + if (!empty($post_types) && count((array) $post_types) > 1) { |
|
2327 | 2327 | |
2328 | - foreach ( $post_types as $post_type => $info ){ |
|
2328 | + foreach ($post_types as $post_type => $info) { |
|
2329 | 2329 | global $wpdb; |
2330 | - $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
2331 | - if ( ! $has_posts ) { |
|
2330 | + $has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type)); |
|
2331 | + if (!$has_posts) { |
|
2332 | 2332 | unset($post_types->{$post_type}); |
2333 | 2333 | } |
2334 | 2334 | } |
2335 | 2335 | |
2336 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) { |
|
2336 | + if (!empty($post_types) && count((array) $post_types) > 1) { |
|
2337 | 2337 | |
2338 | - $new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true; |
|
2339 | - if ( $new_style ) { |
|
2338 | + $new_style = get_option('geodir_show_search_old_search_from') ? false : true; |
|
2339 | + if ($new_style) { |
|
2340 | 2340 | echo "<div class='gd-search-input-wrapper gd-search-field-cpt'>"; |
2341 | 2341 | } |
2342 | 2342 | ?> |
2343 | 2343 | <select name="stype" class="search_by_post"> |
2344 | - <?php foreach ( $post_types as $post_type => $info ): |
|
2344 | + <?php foreach ($post_types as $post_type => $info): |
|
2345 | 2345 | global $wpdb; |
2346 | 2346 | ?> |
2347 | 2347 | |
2348 | - <option data-label="<?php echo get_post_type_archive_link( $post_type ); ?>" |
|
2349 | - value="<?php echo $post_type; ?>" <?php if ( isset( $_REQUEST['stype'] ) ) { |
|
2350 | - if ( $post_type == $_REQUEST['stype'] ) { |
|
2348 | + <option data-label="<?php echo get_post_type_archive_link($post_type); ?>" |
|
2349 | + value="<?php echo $post_type; ?>" <?php if (isset($_REQUEST['stype'])) { |
|
2350 | + if ($post_type == $_REQUEST['stype']) { |
|
2351 | 2351 | echo 'selected="selected"'; |
2352 | 2352 | } |
2353 | - } elseif ( $curr_post_type == $post_type ) { |
|
2353 | + } elseif ($curr_post_type == $post_type) { |
|
2354 | 2354 | echo 'selected="selected"'; |
2355 | - } ?>><?php _e( geodir_utf8_ucfirst( $info->labels->name ), 'geodirectory' ); ?></option> |
|
2355 | + } ?>><?php _e(geodir_utf8_ucfirst($info->labels->name), 'geodirectory'); ?></option> |
|
2356 | 2356 | |
2357 | 2357 | <?php endforeach; ?> |
2358 | 2358 | </select> |
2359 | 2359 | <?php |
2360 | - if ( $new_style ) { |
|
2360 | + if ($new_style) { |
|
2361 | 2361 | echo "</div>"; |
2362 | 2362 | } |
2363 | - }else{ |
|
2364 | - if(! empty( $post_types )){ |
|
2365 | - $pt_arr = (array)$post_types; |
|
2366 | - echo '<input type="hidden" name="stype" value="' . key( $pt_arr ) . '" />'; |
|
2367 | - }else{ |
|
2363 | + } else { |
|
2364 | + if (!empty($post_types)) { |
|
2365 | + $pt_arr = (array) $post_types; |
|
2366 | + echo '<input type="hidden" name="stype" value="'.key($pt_arr).'" />'; |
|
2367 | + } else { |
|
2368 | 2368 | echo '<input type="hidden" name="stype" value="gd_place" />'; |
2369 | 2369 | } |
2370 | 2370 | |
2371 | 2371 | } |
2372 | 2372 | |
2373 | - }elseif ( ! empty( $post_types ) ) { |
|
2373 | + }elseif (!empty($post_types)) { |
|
2374 | 2374 | echo '<input type="hidden" name="stype" value="gd_place" />'; |
2375 | 2375 | } |
2376 | 2376 | } |
@@ -2378,26 +2378,26 @@ discard block |
||
2378 | 2378 | function geodir_search_form_search_input() { |
2379 | 2379 | |
2380 | 2380 | $default_search_for_text = SEARCH_FOR_TEXT; |
2381 | - if ( get_option( 'geodir_search_field_default_text' ) ) { |
|
2382 | - $default_search_for_text = __( get_option( 'geodir_search_field_default_text' ), 'geodirectory' ); |
|
2381 | + if (get_option('geodir_search_field_default_text')) { |
|
2382 | + $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory'); |
|
2383 | 2383 | } |
2384 | 2384 | |
2385 | 2385 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true; |
2386 | - if($new_style){ |
|
2386 | + if ($new_style) { |
|
2387 | 2387 | echo "<div class='gd-search-input-wrapper gd-search-field-search'>"; |
2388 | 2388 | } |
2389 | 2389 | ?> |
2390 | 2390 | <input class="search_text" name="s" |
2391 | - value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) { |
|
2392 | - echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) ); |
|
2391 | + value="<?php if (isset($_REQUEST['s']) && trim($_REQUEST['s']) != '') { |
|
2392 | + echo esc_attr(stripslashes_deep($_REQUEST['s'])); |
|
2393 | 2393 | } else { |
2394 | 2394 | echo $default_search_for_text; |
2395 | 2395 | } ?>" type="text" |
2396 | - onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}" |
|
2397 | - onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}" |
|
2396 | + onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql($default_search_for_text); ?>';}" |
|
2397 | + onfocus="if (this.value == '<?php echo esc_sql($default_search_for_text); ?>') {this.value = '';}" |
|
2398 | 2398 | onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);"> |
2399 | 2399 | <?php |
2400 | - if($new_style){ |
|
2400 | + if ($new_style) { |
|
2401 | 2401 | echo "</div>"; |
2402 | 2402 | } |
2403 | 2403 | } |
@@ -2405,12 +2405,12 @@ discard block |
||
2405 | 2405 | function geodir_search_form_near_input() { |
2406 | 2406 | |
2407 | 2407 | $default_near_text = NEAR_TEXT; |
2408 | - if ( get_option( 'geodir_near_field_default_text' ) ) { |
|
2409 | - $default_near_text = __( get_option( 'geodir_near_field_default_text' ), 'geodirectory' ); |
|
2408 | + if (get_option('geodir_near_field_default_text')) { |
|
2409 | + $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory'); |
|
2410 | 2410 | } |
2411 | 2411 | |
2412 | - if ( isset( $_REQUEST['snear'] ) && $_REQUEST['snear'] != '' ) { |
|
2413 | - $near = esc_attr( stripslashes_deep( $_REQUEST['snear'] ) ); |
|
2412 | + if (isset($_REQUEST['snear']) && $_REQUEST['snear'] != '') { |
|
2413 | + $near = esc_attr(stripslashes_deep($_REQUEST['snear'])); |
|
2414 | 2414 | } else { |
2415 | 2415 | $near = $default_near_text; |
2416 | 2416 | } |
@@ -2424,7 +2424,7 @@ discard block |
||
2424 | 2424 | * @since 1.6.9 |
2425 | 2425 | * @param string $curr_post_type The current post type. |
2426 | 2426 | */ |
2427 | - $near_input_extra = apply_filters('geodir_near_input_extra','',$curr_post_type); |
|
2427 | + $near_input_extra = apply_filters('geodir_near_input_extra', '', $curr_post_type); |
|
2428 | 2428 | |
2429 | 2429 | |
2430 | 2430 | /** |
@@ -2437,7 +2437,7 @@ discard block |
||
2437 | 2437 | * @param string $near The current near value. |
2438 | 2438 | * @param string $default_near_text The default near value. |
2439 | 2439 | */ |
2440 | - $near = apply_filters( 'geodir_search_near_text', $near, $default_near_text ); |
|
2440 | + $near = apply_filters('geodir_search_near_text', $near, $default_near_text); |
|
2441 | 2441 | /** |
2442 | 2442 | * Filter the default "Near" text value for the search form. |
2443 | 2443 | * |
@@ -2448,7 +2448,7 @@ discard block |
||
2448 | 2448 | * @param string $near The current near value. |
2449 | 2449 | * @param string $default_near_text The default near value. |
2450 | 2450 | */ |
2451 | - $default_near_text = apply_filters( 'geodir_search_default_near_text', $default_near_text, $near ); |
|
2451 | + $default_near_text = apply_filters('geodir_search_default_near_text', $default_near_text, $near); |
|
2452 | 2452 | /** |
2453 | 2453 | * Filter the class for the near search input. |
2454 | 2454 | * |
@@ -2456,10 +2456,10 @@ discard block |
||
2456 | 2456 | * |
2457 | 2457 | * @param string $class The class for the HTML near input, default is blank. |
2458 | 2458 | */ |
2459 | - $near_class = apply_filters( 'geodir_search_near_class', '' ); |
|
2459 | + $near_class = apply_filters('geodir_search_near_class', ''); |
|
2460 | 2460 | |
2461 | 2461 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true; |
2462 | - if($new_style){ |
|
2462 | + if ($new_style) { |
|
2463 | 2463 | echo "<div class='gd-search-input-wrapper gd-search-field-near' $near_input_extra>"; |
2464 | 2464 | |
2465 | 2465 | do_action('geodir_before_near_input'); |
@@ -2467,30 +2467,30 @@ discard block |
||
2467 | 2467 | |
2468 | 2468 | ?> |
2469 | 2469 | <input name="snear" class="snear <?php echo $near_class; ?>" type="text" value="<?php echo $near; ?>" |
2470 | - onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql( $near ); ?>' != '' ? '<?php echo esc_sql( $near ); ?>' : '<?php echo $default_near_text; ?>');}" |
|
2471 | - onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql( $near ); ?>') {this.value = '';}" |
|
2472 | - onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra;?>/> |
|
2470 | + onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql($near); ?>' != '' ? '<?php echo esc_sql($near); ?>' : '<?php echo $default_near_text; ?>');}" |
|
2471 | + onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql($near); ?>') {this.value = '';}" |
|
2472 | + onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra; ?>/> |
|
2473 | 2473 | <?php |
2474 | - if($new_style){ |
|
2474 | + if ($new_style) { |
|
2475 | 2475 | do_action('geodir_after_near_input'); |
2476 | 2476 | |
2477 | 2477 | echo "</div>"; |
2478 | 2478 | } |
2479 | 2479 | } |
2480 | 2480 | |
2481 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10 ); |
|
2482 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_search_input', 20 ); |
|
2483 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_near_input', 30 ); |
|
2481 | +add_action('geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10); |
|
2482 | +add_action('geodir_search_form_inputs', 'geodir_search_form_search_input', 20); |
|
2483 | +add_action('geodir_search_form_inputs', 'geodir_search_form_near_input', 30); |
|
2484 | 2484 | |
2485 | -function geodir_get_search_post_type($pt=''){ |
|
2485 | +function geodir_get_search_post_type($pt = '') { |
|
2486 | 2486 | global $geodir_search_post_type; |
2487 | 2487 | |
2488 | - if($pt!=''){return $geodir_search_post_type = $pt;} |
|
2489 | - if(!empty($geodir_search_post_type)){ return $geodir_search_post_type;} |
|
2488 | + if ($pt != '') {return $geodir_search_post_type = $pt; } |
|
2489 | + if (!empty($geodir_search_post_type)) { return $geodir_search_post_type; } |
|
2490 | 2490 | |
2491 | 2491 | $geodir_search_post_type = geodir_get_current_posttype(); |
2492 | 2492 | |
2493 | - if(!$geodir_search_post_type) { |
|
2493 | + if (!$geodir_search_post_type) { |
|
2494 | 2494 | $geodir_search_post_type = geodir_get_default_posttype(); |
2495 | 2495 | } |
2496 | 2496 | |
@@ -2498,7 +2498,7 @@ discard block |
||
2498 | 2498 | return $geodir_search_post_type; |
2499 | 2499 | } |
2500 | 2500 | |
2501 | -function geodir_search_form(){ |
|
2501 | +function geodir_search_form() { |
|
2502 | 2502 | |
2503 | 2503 | geodir_get_search_post_type(); |
2504 | 2504 | |
@@ -2508,8 +2508,8 @@ discard block |
||
2508 | 2508 | die(); |
2509 | 2509 | } |
2510 | 2510 | |
2511 | -add_action( 'wp_ajax_geodir_search_form', 'geodir_search_form' ); |
|
2512 | -add_action( 'wp_ajax_nopriv_geodir_search_form', 'geodir_search_form' ); |
|
2511 | +add_action('wp_ajax_geodir_search_form', 'geodir_search_form'); |
|
2512 | +add_action('wp_ajax_nopriv_geodir_search_form', 'geodir_search_form'); |
|
2513 | 2513 | |
2514 | 2514 | /** |
2515 | 2515 | * Check wpml active or not. |
@@ -2583,7 +2583,7 @@ discard block |
||
2583 | 2583 | } |
2584 | 2584 | } |
2585 | 2585 | } |
2586 | -add_filter( 'icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4 ); |
|
2586 | +add_filter('icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4); |
|
2587 | 2587 | |
2588 | 2588 | /** |
2589 | 2589 | * Duplicate post listing manually after listing saved. |
@@ -2607,7 +2607,7 @@ discard block |
||
2607 | 2607 | foreach ($post_duplicates as $lang => $dup_post_id) { |
2608 | 2608 | geodir_icl_make_duplicate($post_id, $lang, $request_info, $dup_post_id, true); |
2609 | 2609 | } |
2610 | - do_action( 'geodir_wpml_listing_duplicated', $post_id, $request_info ); |
|
2610 | + do_action('geodir_wpml_listing_duplicated', $post_id, $request_info); |
|
2611 | 2611 | } |
2612 | 2612 | } |
2613 | 2613 | |
@@ -2626,7 +2626,7 @@ discard block |
||
2626 | 2626 | function geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang) { |
2627 | 2627 | global $wpdb; |
2628 | 2628 | |
2629 | - $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A); |
|
2629 | + $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM ".GEODIR_REVIEW_TABLE." WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A); |
|
2630 | 2630 | |
2631 | 2631 | if (!empty($reviews)) { |
2632 | 2632 | foreach ($reviews as $review) { |
@@ -2655,15 +2655,15 @@ discard block |
||
2655 | 2655 | global $wpdb, $plugin_prefix; |
2656 | 2656 | |
2657 | 2657 | $post_type = get_post_type($master_post_id); |
2658 | - $post_table = $plugin_prefix . $post_type . '_detail'; |
|
2658 | + $post_table = $plugin_prefix.$post_type.'_detail'; |
|
2659 | 2659 | |
2660 | - $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id)); |
|
2661 | - $data = (array)$wpdb->get_row($query); |
|
2660 | + $query = $wpdb->prepare("SELECT * FROM ".$post_table." WHERE post_id = %d", array($master_post_id)); |
|
2661 | + $data = (array) $wpdb->get_row($query); |
|
2662 | 2662 | |
2663 | - if ( !empty( $data ) ) { |
|
2664 | - $data = apply_filters( 'geodir_icl_duplicate_post_data', $data, $master_post_id, $tr_post_id, $lang ); |
|
2663 | + if (!empty($data)) { |
|
2664 | + $data = apply_filters('geodir_icl_duplicate_post_data', $data, $master_post_id, $tr_post_id, $lang); |
|
2665 | 2665 | $data['post_id'] = $tr_post_id; |
2666 | - unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']); |
|
2666 | + unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type.'category']); |
|
2667 | 2667 | $wpdb->update($post_table, $data, array('post_id' => $tr_post_id)); |
2668 | 2668 | return true; |
2669 | 2669 | } |
@@ -2688,7 +2688,7 @@ discard block |
||
2688 | 2688 | global $sitepress, $wpdb; |
2689 | 2689 | $post_type = get_post_type($master_post_id); |
2690 | 2690 | |
2691 | - remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language |
|
2691 | + remove_filter('get_term', array($sitepress, 'get_term_adjust_id')); // AVOID filtering to current language |
|
2692 | 2692 | |
2693 | 2693 | $taxonomies = get_object_taxonomies($post_type); |
2694 | 2694 | foreach ($taxonomies as $taxonomy) { |
@@ -2697,9 +2697,9 @@ discard block |
||
2697 | 2697 | |
2698 | 2698 | if ($terms) { |
2699 | 2699 | foreach ($terms as $term) { |
2700 | - $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang); |
|
2700 | + $tr_id = apply_filters('translate_object_id', $term->term_id, $taxonomy, false, $lang); |
|
2701 | 2701 | |
2702 | - if (!is_null($tr_id)){ |
|
2702 | + if (!is_null($tr_id)) { |
|
2703 | 2703 | // not using get_term - unfiltered get_term |
2704 | 2704 | $translated_term = $wpdb->get_row($wpdb->prepare(" |
2705 | 2705 | SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy)); |
@@ -2708,14 +2708,14 @@ discard block |
||
2708 | 2708 | } |
2709 | 2709 | } |
2710 | 2710 | |
2711 | - if (!is_taxonomy_hierarchical($taxonomy)){ |
|
2712 | - $terms_array = array_unique( array_map( 'intval', $terms_array ) ); |
|
2711 | + if (!is_taxonomy_hierarchical($taxonomy)) { |
|
2712 | + $terms_array = array_unique(array_map('intval', $terms_array)); |
|
2713 | 2713 | } |
2714 | 2714 | |
2715 | 2715 | wp_set_post_terms($tr_post_id, $terms_array, $taxonomy); |
2716 | 2716 | |
2717 | - if ($taxonomy == $post_type . 'category') { |
|
2718 | - geodir_set_postcat_structure($tr_post_id, $post_type . 'category'); |
|
2717 | + if ($taxonomy == $post_type.'category') { |
|
2718 | + geodir_set_postcat_structure($tr_post_id, $post_type.'category'); |
|
2719 | 2719 | } |
2720 | 2720 | } |
2721 | 2721 | } |
@@ -2736,15 +2736,15 @@ discard block |
||
2736 | 2736 | function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) { |
2737 | 2737 | global $wpdb; |
2738 | 2738 | |
2739 | - $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id)); |
|
2739 | + $query = $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id)); |
|
2740 | 2740 | $wpdb->query($query); |
2741 | 2741 | |
2742 | - $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id)); |
|
2742 | + $query = $wpdb->prepare("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id)); |
|
2743 | 2743 | $post_images = $wpdb->get_results($query); |
2744 | 2744 | |
2745 | - if ( !empty( $post_images ) ) { |
|
2746 | - foreach ( $post_images as $post_image) { |
|
2747 | - $image_data = (array)$post_image; |
|
2745 | + if (!empty($post_images)) { |
|
2746 | + foreach ($post_images as $post_image) { |
|
2747 | + $image_data = (array) $post_image; |
|
2748 | 2748 | unset($image_data['ID']); |
2749 | 2749 | $image_data['post_id'] = $tr_post_id; |
2750 | 2750 | |
@@ -2777,13 +2777,13 @@ discard block |
||
2777 | 2777 | function geodir_wpml_duplicate_post_review($master_comment_id, $master_post_id, $tr_post_id, $lang) { |
2778 | 2778 | global $wpdb, $plugin_prefix, $sitepress; |
2779 | 2779 | |
2780 | - $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A); |
|
2780 | + $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A); |
|
2781 | 2781 | |
2782 | 2782 | if (empty($review)) { |
2783 | 2783 | return false; |
2784 | 2784 | } |
2785 | 2785 | if ($review['post_id'] != $master_post_id) { |
2786 | - $wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id)); |
|
2786 | + $wpdb->query($wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id)); |
|
2787 | 2787 | geodir_update_postrating($master_post_id, $post_type); |
2788 | 2788 | } |
2789 | 2789 | |
@@ -2794,9 +2794,9 @@ discard block |
||
2794 | 2794 | } |
2795 | 2795 | |
2796 | 2796 | $post_type = get_post_type($master_post_id); |
2797 | - $post_table = $plugin_prefix . $post_type . '_detail'; |
|
2797 | + $post_table = $plugin_prefix.$post_type.'_detail'; |
|
2798 | 2798 | |
2799 | - $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A); |
|
2799 | + $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM ".$post_table." WHERE post_id = %d", $tr_post_id), ARRAY_A); |
|
2800 | 2800 | if (empty($translated_post)) { |
2801 | 2801 | return false; |
2802 | 2802 | } |
@@ -2814,7 +2814,7 @@ discard block |
||
2814 | 2814 | unset($review['id']); |
2815 | 2815 | } |
2816 | 2816 | |
2817 | - $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id)); |
|
2817 | + $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id)); |
|
2818 | 2818 | |
2819 | 2819 | if ($tr_review_id) { // update review |
2820 | 2820 | $wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id)); |
@@ -2827,8 +2827,8 @@ discard block |
||
2827 | 2827 | geodir_update_postrating($tr_post_id, $post_type); |
2828 | 2828 | |
2829 | 2829 | if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) { |
2830 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id))); |
|
2831 | - $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A); |
|
2830 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_COMMENTS_REVIEWS_TABLE." WHERE comment_id = %d", array($tr_comment_id))); |
|
2831 | + $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_COMMENTS_REVIEWS_TABLE." WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A); |
|
2832 | 2832 | |
2833 | 2833 | if (!empty($likes)) { |
2834 | 2834 | foreach ($likes as $like) { |
@@ -2930,7 +2930,7 @@ discard block |
||
2930 | 2930 | * @return bool True if review star disabled, otherwise false. |
2931 | 2931 | */ |
2932 | 2932 | function geodir_rating_disabled_post_types() { |
2933 | - $post_types = get_option( 'geodir_disable_rating_cpt' ); |
|
2933 | + $post_types = get_option('geodir_disable_rating_cpt'); |
|
2934 | 2934 | |
2935 | 2935 | /** |
2936 | 2936 | * Filter the post types array which have rating disabled. |
@@ -2939,7 +2939,7 @@ discard block |
||
2939 | 2939 | * |
2940 | 2940 | * @param array $post_types Array of post types which have rating starts disabled. |
2941 | 2941 | */ |
2942 | - return apply_filters( 'geodir_rating_disabled_post_types', $post_types ); |
|
2942 | + return apply_filters('geodir_rating_disabled_post_types', $post_types); |
|
2943 | 2943 | } |
2944 | 2944 | |
2945 | 2945 | /** |
@@ -2951,30 +2951,30 @@ discard block |
||
2951 | 2951 | * @param bool $taxonomy Whether $post_type is taxonomy or not. |
2952 | 2952 | * @return bool True if review star disabled, otherwise false. |
2953 | 2953 | */ |
2954 | -function geodir_cpt_has_rating_disabled( $post_type = '', $taxonomy = false ) { |
|
2954 | +function geodir_cpt_has_rating_disabled($post_type = '', $taxonomy = false) { |
|
2955 | 2955 | $post_types = geodir_rating_disabled_post_types(); |
2956 | 2956 | |
2957 | - if ( empty( $post_types ) ) { |
|
2957 | + if (empty($post_types)) { |
|
2958 | 2958 | return false; |
2959 | 2959 | } |
2960 | 2960 | |
2961 | - if ( is_int( $post_type ) ) { |
|
2962 | - $post_type = get_post_type( $post_type ); |
|
2961 | + if (is_int($post_type)) { |
|
2962 | + $post_type = get_post_type($post_type); |
|
2963 | 2963 | } |
2964 | 2964 | |
2965 | - if ( $taxonomy && !empty( $post_types ) ) { |
|
2965 | + if ($taxonomy && !empty($post_types)) { |
|
2966 | 2966 | $posttypes = array(); |
2967 | 2967 | |
2968 | - foreach ( $post_types as $posttype ) { |
|
2969 | - $posttypes[] = $posttype . 'category'; |
|
2970 | - $posttypes[] = $posttype . '_tags'; |
|
2968 | + foreach ($post_types as $posttype) { |
|
2969 | + $posttypes[] = $posttype.'category'; |
|
2970 | + $posttypes[] = $posttype.'_tags'; |
|
2971 | 2971 | } |
2972 | 2972 | |
2973 | 2973 | $post_types = $posttypes; |
2974 | 2974 | } |
2975 | 2975 | |
2976 | 2976 | $return = false; |
2977 | - if ( $post_type != '' && !empty( $post_types ) && in_array( $post_type, $post_types ) ) { |
|
2977 | + if ($post_type != '' && !empty($post_types) && in_array($post_type, $post_types)) { |
|
2978 | 2978 | $return = true; |
2979 | 2979 | } |
2980 | 2980 | |
@@ -2989,7 +2989,7 @@ discard block |
||
2989 | 2989 | * @return bool True if Yoast SEO disabled on GD pages. |
2990 | 2990 | */ |
2991 | 2991 | function geodir_disable_yoast_seo_metas() { |
2992 | - return (bool)get_option( 'geodir_disable_yoast_meta' ); |
|
2992 | + return (bool) get_option('geodir_disable_yoast_meta'); |
|
2993 | 2993 | } |
2994 | 2994 | |
2995 | 2995 | /** |
@@ -3000,30 +3000,30 @@ discard block |
||
3000 | 3000 | * @param int $post_id The post ID. |
3001 | 3001 | * @return bool True if allowed. |
3002 | 3002 | */ |
3003 | -function geodir_wpml_allowed_to_duplicate( $post_id ) { |
|
3003 | +function geodir_wpml_allowed_to_duplicate($post_id) { |
|
3004 | 3004 | $allowed = false; |
3005 | 3005 | |
3006 | - if ( !geodir_is_wpml() || empty( $post_id ) ) { |
|
3006 | + if (!geodir_is_wpml() || empty($post_id)) { |
|
3007 | 3007 | return $allowed; |
3008 | 3008 | } |
3009 | 3009 | |
3010 | - $user_id = (int)get_current_user_id(); |
|
3010 | + $user_id = (int) get_current_user_id(); |
|
3011 | 3011 | |
3012 | - if ( empty( $user_id ) ) { |
|
3012 | + if (empty($user_id)) { |
|
3013 | 3013 | return $allowed; |
3014 | 3014 | } |
3015 | 3015 | |
3016 | - $post_type = get_post_type( $post_id ); |
|
3017 | - if ( !geodir_wpml_is_post_type_translated( $post_type ) || get_post_meta( $post_id, '_icl_lang_duplicate_of', true ) ) { |
|
3016 | + $post_type = get_post_type($post_id); |
|
3017 | + if (!geodir_wpml_is_post_type_translated($post_type) || get_post_meta($post_id, '_icl_lang_duplicate_of', true)) { |
|
3018 | 3018 | return $allowed; |
3019 | 3019 | } |
3020 | 3020 | |
3021 | - if ( geodir_listing_belong_to_current_user( $post_id ) ) { |
|
3021 | + if (geodir_listing_belong_to_current_user($post_id)) { |
|
3022 | 3022 | $allowed = true; |
3023 | 3023 | } |
3024 | 3024 | |
3025 | - $disable_cpts = get_option( 'geodir_wpml_disable_duplicate' ); |
|
3026 | - if ( $allowed && !empty( $disable_cpts ) && in_array( $post_type, $disable_cpts ) ) { |
|
3025 | + $disable_cpts = get_option('geodir_wpml_disable_duplicate'); |
|
3026 | + if ($allowed && !empty($disable_cpts) && in_array($post_type, $disable_cpts)) { |
|
3027 | 3027 | $allowed = false; |
3028 | 3028 | } |
3029 | 3029 | |
@@ -3033,7 +3033,7 @@ discard block |
||
3033 | 3033 | * @param bool $allowed True if allowed. |
3034 | 3034 | * @param int $post_id The post ID. |
3035 | 3035 | */ |
3036 | - return apply_filters( 'geodir_wpml_allowed_to_duplicate', $allowed, $post_id ); |
|
3036 | + return apply_filters('geodir_wpml_allowed_to_duplicate', $allowed, $post_id); |
|
3037 | 3037 | } |
3038 | 3038 | |
3039 | 3039 | /** |
@@ -3048,61 +3048,61 @@ discard block |
||
3048 | 3048 | * @param string $content_html The output html of the geodir_edit_post_link() function. |
3049 | 3049 | * @return string Filtered html of the geodir_edit_post_link() function. |
3050 | 3050 | */ |
3051 | -function geodir_wpml_frontend_duplicate_listing( $content_html ) { |
|
3051 | +function geodir_wpml_frontend_duplicate_listing($content_html) { |
|
3052 | 3052 | global $post, $preview, $sitepress; |
3053 | 3053 | |
3054 | - if ( !empty( $post->ID ) && !$preview && geodir_is_page( 'detail' ) && geodir_wpml_allowed_to_duplicate( $post->ID ) ) { |
|
3054 | + if (!empty($post->ID) && !$preview && geodir_is_page('detail') && geodir_wpml_allowed_to_duplicate($post->ID)) { |
|
3055 | 3055 | $post_id = $post->ID; |
3056 | - $element_type = 'post_' . get_post_type( $post_id ); |
|
3057 | - $original_post_id = $sitepress->get_original_element_id( $post_id, $element_type ); |
|
3056 | + $element_type = 'post_'.get_post_type($post_id); |
|
3057 | + $original_post_id = $sitepress->get_original_element_id($post_id, $element_type); |
|
3058 | 3058 | |
3059 | - if ( $original_post_id == $post_id ) { |
|
3059 | + if ($original_post_id == $post_id) { |
|
3060 | 3060 | $wpml_languages = $sitepress->get_active_languages(); |
3061 | - $post_language = $sitepress->get_language_for_element( $post_id, $element_type ); |
|
3061 | + $post_language = $sitepress->get_language_for_element($post_id, $element_type); |
|
3062 | 3062 | |
3063 | - if ( !empty( $wpml_languages ) && isset( $wpml_languages[ $post_language ] ) ) { |
|
3064 | - unset( $wpml_languages[ $post_language ] ); |
|
3063 | + if (!empty($wpml_languages) && isset($wpml_languages[$post_language])) { |
|
3064 | + unset($wpml_languages[$post_language]); |
|
3065 | 3065 | } |
3066 | 3066 | |
3067 | - if ( !empty( $wpml_languages ) ) { |
|
3068 | - $trid = $sitepress->get_element_trid( $post_id, $element_type ); |
|
3069 | - $element_translations = $sitepress->get_element_translations( $trid, $element_type ); |
|
3070 | - $duplicates = $sitepress->get_duplicates( $post_id ); |
|
3067 | + if (!empty($wpml_languages)) { |
|
3068 | + $trid = $sitepress->get_element_trid($post_id, $element_type); |
|
3069 | + $element_translations = $sitepress->get_element_translations($trid, $element_type); |
|
3070 | + $duplicates = $sitepress->get_duplicates($post_id); |
|
3071 | 3071 | |
3072 | - $wpml_content = '<div class="geodir-company_info gd-detail-duplicate"><h3 class="widget-title">' . __( 'Translate Listing', 'geodirectory' ) . '</h3>'; |
|
3072 | + $wpml_content = '<div class="geodir-company_info gd-detail-duplicate"><h3 class="widget-title">'.__('Translate Listing', 'geodirectory').'</h3>'; |
|
3073 | 3073 | $wpml_content .= '<table class="gd-duplicate-table" style="width:100%;margin:0"><tbody>'; |
3074 | - $wpml_content .= '<tr style="border-bottom:solid 1px #efefef"><th style="padding:0 2px 2px 2px">' . __( 'Language', 'geodirectory' ) . '</th><th style="width:25px;"></th><th style="width:5em;text-align:center">' . __( 'Translate', 'geodirectory' ) . '</th></tr>'; |
|
3074 | + $wpml_content .= '<tr style="border-bottom:solid 1px #efefef"><th style="padding:0 2px 2px 2px">'.__('Language', 'geodirectory').'</th><th style="width:25px;"></th><th style="width:5em;text-align:center">'.__('Translate', 'geodirectory').'</th></tr>'; |
|
3075 | 3075 | |
3076 | 3076 | $needs_translation = false; |
3077 | 3077 | |
3078 | - foreach ( $wpml_languages as $lang_code => $lang ) { |
|
3078 | + foreach ($wpml_languages as $lang_code => $lang) { |
|
3079 | 3079 | $duplicates_text = ''; |
3080 | 3080 | $translated = false; |
3081 | 3081 | |
3082 | - if ( !empty( $element_translations ) && isset( $element_translations[$lang_code] ) ) { |
|
3082 | + if (!empty($element_translations) && isset($element_translations[$lang_code])) { |
|
3083 | 3083 | $translated = true; |
3084 | 3084 | |
3085 | - if ( !empty( $duplicates ) && isset( $duplicates[$lang_code] ) ) { |
|
3086 | - $duplicates_text = ' ' . __( '(duplicate)', 'geodirectory' ); |
|
3085 | + if (!empty($duplicates) && isset($duplicates[$lang_code])) { |
|
3086 | + $duplicates_text = ' '.__('(duplicate)', 'geodirectory'); |
|
3087 | 3087 | } |
3088 | 3088 | } else { |
3089 | 3089 | $needs_translation = true; |
3090 | 3090 | } |
3091 | 3091 | |
3092 | - $wpml_content .= '<tr><td style="padding:4px">' . $lang['english_name'] . $duplicates_text . '</td><td> </td><td style="text-align:center;">'; |
|
3092 | + $wpml_content .= '<tr><td style="padding:4px">'.$lang['english_name'].$duplicates_text.'</td><td> </td><td style="text-align:center;">'; |
|
3093 | 3093 | |
3094 | - if ( $translated ) { |
|
3094 | + if ($translated) { |
|
3095 | 3095 | $wpml_content .= '<i class="fa fa-check" style="color:orange"></i>'; |
3096 | 3096 | } else { |
3097 | - $wpml_content .= '<input name="gd_icl_dup[]" value="' . $lang_code . '" title="' . esc_attr__( 'Create duplicate', 'geodirectory' ) . '" type="checkbox">'; |
|
3097 | + $wpml_content .= '<input name="gd_icl_dup[]" value="'.$lang_code.'" title="'.esc_attr__('Create duplicate', 'geodirectory').'" type="checkbox">'; |
|
3098 | 3098 | } |
3099 | 3099 | |
3100 | 3100 | $wpml_content .= '</td></tr>'; |
3101 | 3101 | } |
3102 | 3102 | |
3103 | - if ( $needs_translation ) { |
|
3104 | - $nonce = wp_create_nonce( 'geodir_duplicate_nonce' ); |
|
3105 | - $wpml_content .= '<tr><td> </td><td style="vertical-align:middle;padding-top:13px"><i style="display:none" class="fa fa-spin fa-refresh"></i></td><td style="padding:15px 3px 3px 3px;text-align:right"><button data-nonce="' . esc_attr( $nonce ) . '" data-post-id="' . $post_id . '" id="gd_make_duplicates" class="button-secondary">' . __( 'Duplicate', 'geodirectory' ) . '</button></td></tr>'; |
|
3103 | + if ($needs_translation) { |
|
3104 | + $nonce = wp_create_nonce('geodir_duplicate_nonce'); |
|
3105 | + $wpml_content .= '<tr><td> </td><td style="vertical-align:middle;padding-top:13px"><i style="display:none" class="fa fa-spin fa-refresh"></i></td><td style="padding:15px 3px 3px 3px;text-align:right"><button data-nonce="'.esc_attr($nonce).'" data-post-id="'.$post_id.'" id="gd_make_duplicates" class="button-secondary">'.__('Duplicate', 'geodirectory').'</button></td></tr>'; |
|
3106 | 3106 | } |
3107 | 3107 | |
3108 | 3108 | $wpml_content .= '</tbody></table>'; |
@@ -3124,12 +3124,12 @@ discard block |
||
3124 | 3124 | * @param array $settings GD design settings array. |
3125 | 3125 | * @return array Filtered GD design settings array.. |
3126 | 3126 | */ |
3127 | -function geodir_wpml_duplicate_settings( $settings = array() ) { |
|
3127 | +function geodir_wpml_duplicate_settings($settings = array()) { |
|
3128 | 3128 | $new_settings = array(); |
3129 | 3129 | |
3130 | - foreach ( $settings as $key => $setting ) { |
|
3130 | + foreach ($settings as $key => $setting) { |
|
3131 | 3131 | |
3132 | - if ( isset( $setting['type'] ) && $setting['type'] == 'sectionend' && $setting['id'] == 'detail_page_settings' ) { |
|
3132 | + if (isset($setting['type']) && $setting['type'] == 'sectionend' && $setting['id'] == 'detail_page_settings') { |
|
3133 | 3133 | $new_settings[] = array( |
3134 | 3134 | 'name' => __('Disable WPML duplicate translation', 'geodirectory'), |
3135 | 3135 | 'desc' => __('Select post types to disable front end WPML duplicate translation. For selected post types the WPML duplicate option will be disabled from listing detail page sidebar.', 'geodirectory'), |
@@ -3157,12 +3157,12 @@ discard block |
||
3157 | 3157 | * @param string $taxonomy name/slug of a taxonomy. |
3158 | 3158 | * @return bool true if the taxonomy is currently set to being translatable in WPML. |
3159 | 3159 | */ |
3160 | -function geodir_wpml_is_taxonomy_translated( $taxonomy ) { |
|
3161 | - if ( empty( $taxonomy ) || !geodir_is_wpml() || !function_exists( 'is_taxonomy_translated' ) ) { |
|
3160 | +function geodir_wpml_is_taxonomy_translated($taxonomy) { |
|
3161 | + if (empty($taxonomy) || !geodir_is_wpml() || !function_exists('is_taxonomy_translated')) { |
|
3162 | 3162 | return false; |
3163 | 3163 | } |
3164 | 3164 | |
3165 | - if ( is_taxonomy_translated( $taxonomy ) ) { |
|
3165 | + if (is_taxonomy_translated($taxonomy)) { |
|
3166 | 3166 | return true; |
3167 | 3167 | } |
3168 | 3168 | |
@@ -3177,12 +3177,12 @@ discard block |
||
3177 | 3177 | * @param string $post_type name/slug of a post_type. |
3178 | 3178 | * @return bool true if the post_type is currently set to being translatable in WPML. |
3179 | 3179 | */ |
3180 | -function geodir_wpml_is_post_type_translated( $post_type ) { |
|
3181 | - if ( empty( $post_type ) || !geodir_is_wpml() || !function_exists( 'is_post_type_translated' ) ) { |
|
3180 | +function geodir_wpml_is_post_type_translated($post_type) { |
|
3181 | + if (empty($post_type) || !geodir_is_wpml() || !function_exists('is_post_type_translated')) { |
|
3182 | 3182 | return false; |
3183 | 3183 | } |
3184 | 3184 | |
3185 | - if ( is_post_type_translated( $post_type ) ) { |
|
3185 | + if (is_post_type_translated($post_type)) { |
|
3186 | 3186 | return true; |
3187 | 3187 | } |
3188 | 3188 | |
@@ -3204,12 +3204,12 @@ discard block |
||
3204 | 3204 | * |
3205 | 3205 | * @return int|NULL |
3206 | 3206 | */ |
3207 | -function geodir_wpml_object_id( $element_id, $element_type = 'post', $return_original_if_missing = false, $ulanguage_code = null ) { |
|
3208 | - if ( geodir_is_wpml() ) { |
|
3209 | - if ( function_exists( 'wpml_object_id_filter' ) ) { |
|
3210 | - return apply_filters( 'wpml_object_id', $element_id, $element_type, $return_original_if_missing, $ulanguage_code ); |
|
3207 | +function geodir_wpml_object_id($element_id, $element_type = 'post', $return_original_if_missing = false, $ulanguage_code = null) { |
|
3208 | + if (geodir_is_wpml()) { |
|
3209 | + if (function_exists('wpml_object_id_filter')) { |
|
3210 | + return apply_filters('wpml_object_id', $element_id, $element_type, $return_original_if_missing, $ulanguage_code); |
|
3211 | 3211 | } else { |
3212 | - return icl_object_id( $element_id, $element_type, $return_original_if_missing, $ulanguage_code ); |
|
3212 | + return icl_object_id($element_id, $element_type, $return_original_if_missing, $ulanguage_code); |
|
3213 | 3213 | } |
3214 | 3214 | } |
3215 | 3215 |
@@ -44,57 +44,57 @@ discard block |
||
44 | 44 | |
45 | 45 | <?php if (have_posts()) : |
46 | 46 | |
47 | - /** |
|
48 | - * Called inside the `ul` of the listings template, but before any `li` elements. |
|
49 | - * |
|
50 | - * When used by the widget view template then it will only show if there are listings to be shown. |
|
51 | - * |
|
52 | - * @since 1.0.0 |
|
53 | - * @see 'geodir_after_listing_post_listview' |
|
54 | - */ |
|
55 | - do_action('geodir_before_listing_post_listview'); |
|
56 | - |
|
57 | - while (have_posts()) : the_post(); |
|
58 | - global $post, $wpdb, $preview; |
|
59 | - |
|
60 | - /** |
|
61 | - * Add a class to the `li` element of the listings list template. |
|
62 | - * |
|
63 | - * @since 1.0.0 |
|
64 | - * @param string $class The extra class for the `li` element, default empty. |
|
65 | - */ |
|
66 | - $post_view_class = apply_filters('geodir_post_view_extra_class', ''); |
|
67 | - |
|
68 | - /** |
|
69 | - * Add a class to the `article` tag inside the `li` element on the listings list template. |
|
70 | - * |
|
71 | - * @since 1.0.0 |
|
72 | - * @param string $class The extra class for the `article` element, default empty. |
|
73 | - */ |
|
74 | - $post_view_article_class = apply_filters('geodir_post_view_article_extra_class', ''); |
|
75 | - ?> |
|
47 | + /** |
|
48 | + * Called inside the `ul` of the listings template, but before any `li` elements. |
|
49 | + * |
|
50 | + * When used by the widget view template then it will only show if there are listings to be shown. |
|
51 | + * |
|
52 | + * @since 1.0.0 |
|
53 | + * @see 'geodir_after_listing_post_listview' |
|
54 | + */ |
|
55 | + do_action('geodir_before_listing_post_listview'); |
|
56 | + |
|
57 | + while (have_posts()) : the_post(); |
|
58 | + global $post, $wpdb, $preview; |
|
59 | + |
|
60 | + /** |
|
61 | + * Add a class to the `li` element of the listings list template. |
|
62 | + * |
|
63 | + * @since 1.0.0 |
|
64 | + * @param string $class The extra class for the `li` element, default empty. |
|
65 | + */ |
|
66 | + $post_view_class = apply_filters('geodir_post_view_extra_class', ''); |
|
67 | + |
|
68 | + /** |
|
69 | + * Add a class to the `article` tag inside the `li` element on the listings list template. |
|
70 | + * |
|
71 | + * @since 1.0.0 |
|
72 | + * @param string $class The extra class for the `article` element, default empty. |
|
73 | + */ |
|
74 | + $post_view_article_class = apply_filters('geodir_post_view_article_extra_class', ''); |
|
75 | + ?> |
|
76 | 76 | |
77 | 77 | <li class="clearfix <?php if ($grid_view_class) { |
78 | - echo 'geodir-gridview ' . $grid_view_class; |
|
79 | - } else { |
|
80 | - echo ' geodir-listview '; |
|
81 | - } ?> <?php if ($post_view_class) { |
|
82 | - echo $post_view_class; |
|
83 | - } ?>" <?php if (isset($listing_width) && $listing_width) echo "style='width:{$listing_width}%;'"; // Width for widget listing |
|
84 | - |
|
85 | - echo " data-post-id='$post->ID' "; |
|
86 | - /** |
|
87 | - * Called inside the `<li>` tag for listing outputs. |
|
88 | - * |
|
89 | - * @since 1.5.9 |
|
90 | - * @param object $post The post object. |
|
91 | - * @param string $string If called on the listing or widget template. |
|
92 | - */ |
|
93 | - do_action('geodir_listview_inside_li', $post, 'listing'); |
|
94 | - ?> > |
|
78 | + echo 'geodir-gridview ' . $grid_view_class; |
|
79 | + } else { |
|
80 | + echo ' geodir-listview '; |
|
81 | + } ?> <?php if ($post_view_class) { |
|
82 | + echo $post_view_class; |
|
83 | + } ?>" <?php if (isset($listing_width) && $listing_width) echo "style='width:{$listing_width}%;'"; // Width for widget listing |
|
84 | + |
|
85 | + echo " data-post-id='$post->ID' "; |
|
86 | + /** |
|
87 | + * Called inside the `<li>` tag for listing outputs. |
|
88 | + * |
|
89 | + * @since 1.5.9 |
|
90 | + * @param object $post The post object. |
|
91 | + * @param string $string If called on the listing or widget template. |
|
92 | + */ |
|
93 | + do_action('geodir_listview_inside_li', $post, 'listing'); |
|
94 | + ?> > |
|
95 | 95 | <article class="geodir-category-listing <?php if ($post_view_article_class) { |
96 | - echo $post_view_article_class; |
|
97 | - } ?>"> |
|
96 | + echo $post_view_article_class; |
|
97 | + } ?>"> |
|
98 | 98 | <div class="geodir-post-img <?php echo apply_filters('geodir_listing_listview_thumb_extra_class', '', 'listing'); ?>"> |
99 | 99 | <?php if ($fimage = geodir_show_featured_image($post->ID, 'list-thumb', true, false, $post->featured_image)) { ?> |
100 | 100 | |
@@ -102,37 +102,37 @@ discard block |
||
102 | 102 | <?php echo $fimage; ?> |
103 | 103 | </a> |
104 | 104 | <?php |
105 | - /** |
|
106 | - * Called before badges are output. |
|
107 | - * |
|
108 | - * Called on the listings template after the image has been output and before the badges like `new` or `featured` are output. |
|
109 | - * |
|
110 | - * @since 1.0.0 |
|
111 | - * @param object $post The post object. |
|
112 | - * @see 'geodir_after_badge_on_image' |
|
113 | - */ |
|
114 | - do_action('geodir_before_badge_on_image', $post); |
|
115 | - if (isset($post->is_featured) && $post->is_featured) { |
|
116 | - echo geodir_show_badges_on_image('featured', $post, get_permalink()); |
|
117 | - } |
|
118 | - |
|
119 | - $geodir_days_new = (int)get_option('geodir_listing_new_days'); |
|
120 | - |
|
121 | - if (round(abs(strtotime($post->post_date) - strtotime(date('Y-m-d'))) / 86400) < $geodir_days_new) { |
|
122 | - echo geodir_show_badges_on_image('new', $post, get_permalink()); |
|
123 | - } |
|
124 | - |
|
125 | - /** |
|
126 | - * Called after badges are output. |
|
127 | - * |
|
128 | - * Called on the listings template after the image and badges like `new` or `featured` have been output. |
|
129 | - * |
|
130 | - * @since 1.0.0 |
|
131 | - * @param object $post The post object. |
|
132 | - * @see 'geodir_before_badge_on_image' |
|
133 | - */ |
|
134 | - do_action('geodir_after_badge_on_image', $post); |
|
135 | - ?> |
|
105 | + /** |
|
106 | + * Called before badges are output. |
|
107 | + * |
|
108 | + * Called on the listings template after the image has been output and before the badges like `new` or `featured` are output. |
|
109 | + * |
|
110 | + * @since 1.0.0 |
|
111 | + * @param object $post The post object. |
|
112 | + * @see 'geodir_after_badge_on_image' |
|
113 | + */ |
|
114 | + do_action('geodir_before_badge_on_image', $post); |
|
115 | + if (isset($post->is_featured) && $post->is_featured) { |
|
116 | + echo geodir_show_badges_on_image('featured', $post, get_permalink()); |
|
117 | + } |
|
118 | + |
|
119 | + $geodir_days_new = (int)get_option('geodir_listing_new_days'); |
|
120 | + |
|
121 | + if (round(abs(strtotime($post->post_date) - strtotime(date('Y-m-d'))) / 86400) < $geodir_days_new) { |
|
122 | + echo geodir_show_badges_on_image('new', $post, get_permalink()); |
|
123 | + } |
|
124 | + |
|
125 | + /** |
|
126 | + * Called after badges are output. |
|
127 | + * |
|
128 | + * Called on the listings template after the image and badges like `new` or `featured` have been output. |
|
129 | + * |
|
130 | + * @since 1.0.0 |
|
131 | + * @param object $post The post object. |
|
132 | + * @see 'geodir_before_badge_on_image' |
|
133 | + */ |
|
134 | + do_action('geodir_after_badge_on_image', $post); |
|
135 | + ?> |
|
136 | 136 | |
137 | 137 | |
138 | 138 | <?php } ?> |
@@ -142,15 +142,15 @@ discard block |
||
142 | 142 | <div class="geodir-content <?php echo apply_filters('geodir_listing_listview_content_extra_class', '', 'listing'); ?>"> |
143 | 143 | |
144 | 144 | <?php |
145 | - /** |
|
146 | - * Called before the post title on the listings view template. |
|
147 | - * |
|
148 | - * @since 1.0.0 |
|
149 | - * @param string $type The template type, default 'listview'. |
|
150 | - * @param object $post The post object. |
|
151 | - * @see 'geodir_after_listing_post_title' |
|
152 | - */ |
|
153 | - do_action('geodir_before_listing_post_title', 'listview', $post); ?> |
|
145 | + /** |
|
146 | + * Called before the post title on the listings view template. |
|
147 | + * |
|
148 | + * @since 1.0.0 |
|
149 | + * @param string $type The template type, default 'listview'. |
|
150 | + * @param object $post The post object. |
|
151 | + * @see 'geodir_after_listing_post_title' |
|
152 | + */ |
|
153 | + do_action('geodir_before_listing_post_title', 'listview', $post); ?> |
|
154 | 154 | |
155 | 155 | <header class="geodir-entry-header"><h2 class="geodir-entry-title"> |
156 | 156 | <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> |
@@ -162,225 +162,225 @@ discard block |
||
162 | 162 | <!-- .entry-header --> |
163 | 163 | |
164 | 164 | <?php |
165 | - /** |
|
166 | - * Called after the post title on the listings view template. |
|
167 | - * |
|
168 | - * @since 1.0.0 |
|
169 | - * @param string $type The template type, default 'listview'. |
|
170 | - * @param object $post The post object. |
|
171 | - * @see 'geodir_before_listing_post_title' |
|
172 | - */ |
|
173 | - do_action('geodir_after_listing_post_title', 'listview', $post); ?> |
|
165 | + /** |
|
166 | + * Called after the post title on the listings view template. |
|
167 | + * |
|
168 | + * @since 1.0.0 |
|
169 | + * @param string $type The template type, default 'listview'. |
|
170 | + * @param object $post The post object. |
|
171 | + * @see 'geodir_before_listing_post_title' |
|
172 | + */ |
|
173 | + do_action('geodir_after_listing_post_title', 'listview', $post); ?> |
|
174 | 174 | |
175 | 175 | <?php /// Print Distance |
176 | - if ( ( isset( $_REQUEST['sgeo_lat'] ) && $_REQUEST['sgeo_lat'] != '' ) || ( $related_nearest && $related_parent_lat ) ) { |
|
177 | - if ( $related_nearest && $related_parent_lat ) { |
|
178 | - $startPoint = array('latitude' => $related_parent_lat, 'longitude' => $related_parent_lon); |
|
179 | - } else { |
|
180 | - $startPoint = array('latitude' => $_REQUEST['sgeo_lat'], 'longitude' => $_REQUEST['sgeo_lon']); |
|
181 | - } |
|
182 | - |
|
183 | - $endLat = $post->post_latitude; |
|
184 | - $endLon = $post->post_longitude; |
|
185 | - $endPoint = array('latitude' => $endLat, 'longitude' => $endLon); |
|
186 | - $uom = get_option('geodir_search_dist_1'); |
|
187 | - $distance = geodir_calculateDistanceFromLatLong($startPoint, $endPoint, $uom); ?> |
|
176 | + if ( ( isset( $_REQUEST['sgeo_lat'] ) && $_REQUEST['sgeo_lat'] != '' ) || ( $related_nearest && $related_parent_lat ) ) { |
|
177 | + if ( $related_nearest && $related_parent_lat ) { |
|
178 | + $startPoint = array('latitude' => $related_parent_lat, 'longitude' => $related_parent_lon); |
|
179 | + } else { |
|
180 | + $startPoint = array('latitude' => $_REQUEST['sgeo_lat'], 'longitude' => $_REQUEST['sgeo_lon']); |
|
181 | + } |
|
182 | + |
|
183 | + $endLat = $post->post_latitude; |
|
184 | + $endLon = $post->post_longitude; |
|
185 | + $endPoint = array('latitude' => $endLat, 'longitude' => $endLon); |
|
186 | + $uom = get_option('geodir_search_dist_1'); |
|
187 | + $distance = geodir_calculateDistanceFromLatLong($startPoint, $endPoint, $uom); ?> |
|
188 | 188 | <h3> |
189 | 189 | <?php |
190 | 190 | |
191 | - if (round($distance, 2) == 0) { |
|
192 | - $uom = get_option('geodir_search_dist_2'); |
|
193 | - |
|
194 | - $distance = geodir_calculateDistanceFromLatLong($startPoint, $endPoint, $uom); |
|
195 | - if ($uom == 'feet') { |
|
196 | - $uom = __('feet', 'geodirectory'); |
|
197 | - } else { |
|
198 | - $uom = __('meters', 'geodirectory'); |
|
199 | - } |
|
200 | - echo round($distance) . ' ' . $uom . '<br />'; |
|
201 | - } else { |
|
202 | - if ($uom == 'miles') { |
|
203 | - $uom = __('miles', 'geodirectory'); |
|
204 | - } else { |
|
205 | - $uom = __('km', 'geodirectory'); |
|
206 | - } |
|
207 | - echo round($distance, 2) . ' ' . $uom . '<br />'; |
|
208 | - } |
|
209 | - ?> |
|
191 | + if (round($distance, 2) == 0) { |
|
192 | + $uom = get_option('geodir_search_dist_2'); |
|
193 | + |
|
194 | + $distance = geodir_calculateDistanceFromLatLong($startPoint, $endPoint, $uom); |
|
195 | + if ($uom == 'feet') { |
|
196 | + $uom = __('feet', 'geodirectory'); |
|
197 | + } else { |
|
198 | + $uom = __('meters', 'geodirectory'); |
|
199 | + } |
|
200 | + echo round($distance) . ' ' . $uom . '<br />'; |
|
201 | + } else { |
|
202 | + if ($uom == 'miles') { |
|
203 | + $uom = __('miles', 'geodirectory'); |
|
204 | + } else { |
|
205 | + $uom = __('km', 'geodirectory'); |
|
206 | + } |
|
207 | + echo round($distance, 2) . ' ' . $uom . '<br />'; |
|
208 | + } |
|
209 | + ?> |
|
210 | 210 | </h3> |
211 | 211 | <?php } ?> |
212 | 212 | |
213 | 213 | |
214 | 214 | <?php |
215 | - /** |
|
216 | - * Called before the post excerpt on the listings view template. |
|
217 | - * |
|
218 | - * @since 1.0.0 |
|
219 | - * @param object $post The post object. |
|
220 | - * @see 'geodir_after_listing_post_excerpt' |
|
221 | - */ |
|
222 | - do_action('geodir_before_listing_post_excerpt', $post); ?> |
|
215 | + /** |
|
216 | + * Called before the post excerpt on the listings view template. |
|
217 | + * |
|
218 | + * @since 1.0.0 |
|
219 | + * @param object $post The post object. |
|
220 | + * @see 'geodir_after_listing_post_excerpt' |
|
221 | + */ |
|
222 | + do_action('geodir_before_listing_post_excerpt', $post); ?> |
|
223 | 223 | <?php echo geodir_show_listing_info('listing'); ?> |
224 | 224 | <div class="geodir-entry-content"> |
225 | 225 | |
226 | 226 | <?php |
227 | - /** |
|
228 | - * Filter to hide the listing excerpt |
|
229 | - * |
|
230 | - * @since 1.5.3 |
|
231 | - * @param bool $display Display the excerpt or not. Default true. |
|
232 | - * @param string $view The view type, default 'listview'. |
|
233 | - * @param object $post The post object. |
|
234 | - */ |
|
235 | - $show_listing_excerpt = apply_filters('geodir_show_listing_post_excerpt', true, 'listview', $post); |
|
236 | - if ($show_listing_excerpt) { |
|
237 | - if ( isset( $character_count ) && ( $character_count || $character_count == '0' ) ) { |
|
238 | - $content_out = geodir_max_excerpt( $character_count ); |
|
239 | - } else { |
|
240 | - $content_out = get_the_excerpt(); |
|
241 | - } |
|
242 | - if ( ! empty( $content_out ) ) { |
|
243 | - echo "<p>" . $content_out . "</p>"; |
|
244 | - } |
|
245 | - } |
|
246 | - ?></div> |
|
227 | + /** |
|
228 | + * Filter to hide the listing excerpt |
|
229 | + * |
|
230 | + * @since 1.5.3 |
|
231 | + * @param bool $display Display the excerpt or not. Default true. |
|
232 | + * @param string $view The view type, default 'listview'. |
|
233 | + * @param object $post The post object. |
|
234 | + */ |
|
235 | + $show_listing_excerpt = apply_filters('geodir_show_listing_post_excerpt', true, 'listview', $post); |
|
236 | + if ($show_listing_excerpt) { |
|
237 | + if ( isset( $character_count ) && ( $character_count || $character_count == '0' ) ) { |
|
238 | + $content_out = geodir_max_excerpt( $character_count ); |
|
239 | + } else { |
|
240 | + $content_out = get_the_excerpt(); |
|
241 | + } |
|
242 | + if ( ! empty( $content_out ) ) { |
|
243 | + echo "<p>" . $content_out . "</p>"; |
|
244 | + } |
|
245 | + } |
|
246 | + ?></div> |
|
247 | 247 | |
248 | 248 | <?php |
249 | - /** |
|
250 | - * Called after the post excerpt on the listings view template. |
|
251 | - * |
|
252 | - * @since 1.0.0 |
|
253 | - * @param object $post The post object. |
|
254 | - * @see 'geodir_before_listing_post_excerpt' |
|
255 | - */ |
|
256 | - do_action('geodir_after_listing_post_excerpt', $post); ?> |
|
249 | + /** |
|
250 | + * Called after the post excerpt on the listings view template. |
|
251 | + * |
|
252 | + * @since 1.0.0 |
|
253 | + * @param object $post The post object. |
|
254 | + * @see 'geodir_before_listing_post_excerpt' |
|
255 | + */ |
|
256 | + do_action('geodir_after_listing_post_excerpt', $post); ?> |
|
257 | 257 | </div> |
258 | 258 | <!-- gd-content ends here--> |
259 | 259 | <?php |
260 | - /** |
|
261 | - * Called after printing listing content. |
|
262 | - * |
|
263 | - * @since 1.5.3 |
|
264 | - * @param object $post The post object. |
|
265 | - * @param string $view The view type, default 'listing'. |
|
266 | - */ |
|
267 | - do_action( 'geodir_after_listing_content', $post, 'listing' ); ?> |
|
260 | + /** |
|
261 | + * Called after printing listing content. |
|
262 | + * |
|
263 | + * @since 1.5.3 |
|
264 | + * @param object $post The post object. |
|
265 | + * @param string $view The view type, default 'listing'. |
|
266 | + */ |
|
267 | + do_action( 'geodir_after_listing_content', $post, 'listing' ); ?> |
|
268 | 268 | <footer class="geodir-entry-meta <?php echo apply_filters('geodir_listing_listview_meta_extra_class', '', 'listing'); ?>"> |
269 | 269 | <div class="geodir-addinfo clearfix <?php echo apply_filters('geodir_listing_listview_addinfo_extra_class', '', 'listing'); ?>"> |
270 | 270 | |
271 | 271 | <?php |
272 | - /** |
|
273 | - * Called before printing review stars html. |
|
274 | - * |
|
275 | - * @since 1.5.3 |
|
276 | - * @param object $post The post object. |
|
277 | - * @param string $view The view type, default 'listing'. |
|
278 | - */ |
|
279 | - do_action( 'geodir_before_review_html', $post, 'listing' ); |
|
280 | - |
|
281 | - $review_show = geodir_is_reviews_show('listview'); |
|
282 | - |
|
283 | - if ($review_show) { |
|
284 | - |
|
285 | - if (!$preview) { |
|
286 | - $post_avgratings = geodir_get_post_rating($post->ID); |
|
287 | - /** |
|
288 | - * Called before the rating stars are output on the listings view template. |
|
289 | - * |
|
290 | - * @since 1.0.0 |
|
291 | - * @param float $post_avgratings The average rating for the post. |
|
292 | - * @param int $post->ID The post ID. |
|
293 | - * @see 'geodir_after_review_rating_stars_on_listview' |
|
294 | - */ |
|
295 | - do_action('geodir_before_review_rating_stars_on_listview', $post_avgratings, $post->ID); |
|
296 | - |
|
297 | - echo geodir_get_rating_stars($post_avgratings, $post->ID); |
|
298 | - |
|
299 | - /** |
|
300 | - * Called after the rating stars are output on the listings view template. |
|
301 | - * |
|
302 | - * @since 1.0.0 |
|
303 | - * @param float $post_avgratings The average rating for the post. |
|
304 | - * @param int $post->ID The post ID. |
|
305 | - * @see 'geodir_before_review_rating_stars_on_listview' |
|
306 | - */ |
|
307 | - do_action('geodir_after_review_rating_stars_on_listview', $post_avgratings, $post->ID); |
|
308 | - } |
|
309 | - ?> |
|
272 | + /** |
|
273 | + * Called before printing review stars html. |
|
274 | + * |
|
275 | + * @since 1.5.3 |
|
276 | + * @param object $post The post object. |
|
277 | + * @param string $view The view type, default 'listing'. |
|
278 | + */ |
|
279 | + do_action( 'geodir_before_review_html', $post, 'listing' ); |
|
280 | + |
|
281 | + $review_show = geodir_is_reviews_show('listview'); |
|
282 | + |
|
283 | + if ($review_show) { |
|
284 | + |
|
285 | + if (!$preview) { |
|
286 | + $post_avgratings = geodir_get_post_rating($post->ID); |
|
287 | + /** |
|
288 | + * Called before the rating stars are output on the listings view template. |
|
289 | + * |
|
290 | + * @since 1.0.0 |
|
291 | + * @param float $post_avgratings The average rating for the post. |
|
292 | + * @param int $post->ID The post ID. |
|
293 | + * @see 'geodir_after_review_rating_stars_on_listview' |
|
294 | + */ |
|
295 | + do_action('geodir_before_review_rating_stars_on_listview', $post_avgratings, $post->ID); |
|
296 | + |
|
297 | + echo geodir_get_rating_stars($post_avgratings, $post->ID); |
|
298 | + |
|
299 | + /** |
|
300 | + * Called after the rating stars are output on the listings view template. |
|
301 | + * |
|
302 | + * @since 1.0.0 |
|
303 | + * @param float $post_avgratings The average rating for the post. |
|
304 | + * @param int $post->ID The post ID. |
|
305 | + * @see 'geodir_before_review_rating_stars_on_listview' |
|
306 | + */ |
|
307 | + do_action('geodir_after_review_rating_stars_on_listview', $post_avgratings, $post->ID); |
|
308 | + } |
|
309 | + ?> |
|
310 | 310 | <a href="<?php comments_link(); ?>" class="geodir-pcomments"><i |
311 | 311 | class="fa fa-comments"></i> |
312 | 312 | <?php geodir_comments_number($post->rating_count); ?></a> |
313 | 313 | <?php |
314 | - } |
|
314 | + } |
|
315 | 315 | |
316 | 316 | |
317 | - /** |
|
318 | - * Called after printing favorite html. |
|
319 | - * |
|
320 | - * @since 1.0.0 |
|
321 | - */ |
|
322 | - do_action( 'geodir_after_favorite_html', $post->ID, 'listing' ); |
|
317 | + /** |
|
318 | + * Called after printing favorite html. |
|
319 | + * |
|
320 | + * @since 1.0.0 |
|
321 | + */ |
|
322 | + do_action( 'geodir_after_favorite_html', $post->ID, 'listing' ); |
|
323 | 323 | |
324 | 324 | |
325 | - /** |
|
326 | - * Called after printing map pin point. |
|
327 | - * |
|
328 | - * @since 1.0.0 |
|
329 | - * @since 1.5.9 Added $post as second param. |
|
330 | - * @param int $post->ID The post id. |
|
331 | - * @param object $post The post object. |
|
332 | - */ |
|
333 | - do_action( 'geodir_listing_after_pinpoint', $post->ID ,$post); |
|
325 | + /** |
|
326 | + * Called after printing map pin point. |
|
327 | + * |
|
328 | + * @since 1.0.0 |
|
329 | + * @since 1.5.9 Added $post as second param. |
|
330 | + * @param int $post->ID The post id. |
|
331 | + * @param object $post The post object. |
|
332 | + */ |
|
333 | + do_action( 'geodir_listing_after_pinpoint', $post->ID ,$post); |
|
334 | 334 | |
335 | - if ($post->post_author == get_current_user_id()) { ?> |
|
335 | + if ($post->post_author == get_current_user_id()) { ?> |
|
336 | 336 | <?php |
337 | - $addplacelink = get_permalink(geodir_add_listing_page_id()); |
|
338 | - $editlink = geodir_getlink($addplacelink, array('pid' => $post->ID), false); |
|
339 | - $upgradelink = geodir_getlink($editlink, array('upgrade' => '1'), false); |
|
337 | + $addplacelink = get_permalink(geodir_add_listing_page_id()); |
|
338 | + $editlink = geodir_getlink($addplacelink, array('pid' => $post->ID), false); |
|
339 | + $upgradelink = geodir_getlink($editlink, array('upgrade' => '1'), false); |
|
340 | 340 | |
341 | - $ajaxlink = geodir_get_ajax_url(); |
|
342 | - $deletelink = geodir_getlink($ajaxlink, array('geodir_ajax' => 'add_listing', 'ajax_action' => 'delete', 'pid' => $post->ID), false); |
|
341 | + $ajaxlink = geodir_get_ajax_url(); |
|
342 | + $deletelink = geodir_getlink($ajaxlink, array('geodir_ajax' => 'add_listing', 'ajax_action' => 'delete', 'pid' => $post->ID), false); |
|
343 | 343 | |
344 | - ?> |
|
344 | + ?> |
|
345 | 345 | |
346 | 346 | <span class="geodir-authorlink clearfix"> |
347 | 347 | |
348 | 348 | <?php if (isset($_REQUEST['geodir_dashbord']) && $_REQUEST['geodir_dashbord']) { |
349 | - /** |
|
350 | - * Called before the edit post link on the listings view template used on the author page. |
|
351 | - * |
|
352 | - * @since 1.0.0 |
|
353 | - * @see 'geodir_after_edit_post_link_on_listing' |
|
354 | - */ |
|
355 | - do_action('geodir_before_edit_post_link_on_listing'); |
|
356 | - ?> |
|
349 | + /** |
|
350 | + * Called before the edit post link on the listings view template used on the author page. |
|
351 | + * |
|
352 | + * @since 1.0.0 |
|
353 | + * @see 'geodir_after_edit_post_link_on_listing' |
|
354 | + */ |
|
355 | + do_action('geodir_before_edit_post_link_on_listing'); |
|
356 | + ?> |
|
357 | 357 | |
358 | 358 | <a href="<?php echo esc_url($editlink); ?>" class="geodir-edit" |
359 | 359 | title="<?php _e('Edit Listing', 'geodirectory'); ?>"> |
360 | 360 | <?php |
361 | - $geodir_listing_edit_icon = apply_filters('geodir_listing_edit_icon', 'fa fa-edit'); |
|
362 | - echo '<i class="'. $geodir_listing_edit_icon .'"></i>'; |
|
363 | - ?> |
|
361 | + $geodir_listing_edit_icon = apply_filters('geodir_listing_edit_icon', 'fa fa-edit'); |
|
362 | + echo '<i class="'. $geodir_listing_edit_icon .'"></i>'; |
|
363 | + ?> |
|
364 | 364 | <?php _e('Edit', 'geodirectory'); ?> |
365 | 365 | </a> |
366 | 366 | <a href="<?php echo esc_url($deletelink); ?>" class="geodir-delete" |
367 | 367 | title="<?php _e('Delete Listing', 'geodirectory'); ?>"> |
368 | 368 | <?php |
369 | - $geodir_listing_delete_icon = apply_filters('geodir_listing_delete_icon', 'fa fa-close'); |
|
370 | - echo '<i class="'. $geodir_listing_delete_icon .'"></i>'; |
|
371 | - ?> |
|
369 | + $geodir_listing_delete_icon = apply_filters('geodir_listing_delete_icon', 'fa fa-close'); |
|
370 | + echo '<i class="'. $geodir_listing_delete_icon .'"></i>'; |
|
371 | + ?> |
|
372 | 372 | <?php _e('Delete', 'geodirectory'); ?> |
373 | 373 | </a> |
374 | 374 | <?php |
375 | 375 | |
376 | - /** |
|
377 | - * Called after the edit post link on the listings view template used on the author page. |
|
378 | - * |
|
379 | - * @since 1.0.0 |
|
380 | - * @see 'geodir_before_edit_post_link_on_listing' |
|
381 | - */ |
|
382 | - do_action('geodir_after_edit_post_link_on_listing'); |
|
383 | - } ?> |
|
376 | + /** |
|
377 | + * Called after the edit post link on the listings view template used on the author page. |
|
378 | + * |
|
379 | + * @since 1.0.0 |
|
380 | + * @see 'geodir_before_edit_post_link_on_listing' |
|
381 | + */ |
|
382 | + do_action('geodir_after_edit_post_link_on_listing'); |
|
383 | + } ?> |
|
384 | 384 | </span> |
385 | 385 | |
386 | 386 | <?php } ?> |
@@ -393,32 +393,32 @@ discard block |
||
393 | 393 | </li> |
394 | 394 | |
395 | 395 | <?php |
396 | - endwhile; |
|
397 | - |
|
398 | - /** |
|
399 | - * Called inside the `ul` of the listings template, but after all `li` elements. |
|
400 | - * |
|
401 | - * When used by the widget view template then it will only show if there are listings to be shown. |
|
402 | - * |
|
403 | - * @since 1.0.0 |
|
404 | - * @see 'geodir_before_listing_post_listview' |
|
405 | - */ |
|
406 | - do_action('geodir_after_listing_post_listview'); |
|
407 | - |
|
408 | - else: |
|
396 | + endwhile; |
|
397 | + |
|
398 | + /** |
|
399 | + * Called inside the `ul` of the listings template, but after all `li` elements. |
|
400 | + * |
|
401 | + * When used by the widget view template then it will only show if there are listings to be shown. |
|
402 | + * |
|
403 | + * @since 1.0.0 |
|
404 | + * @see 'geodir_before_listing_post_listview' |
|
405 | + */ |
|
406 | + do_action('geodir_after_listing_post_listview'); |
|
407 | + |
|
408 | + else: |
|
409 | 409 | $favorite = isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' ? true : false; |
410 | 410 | |
411 | 411 | /** |
412 | - * Called inside the `ul` of the listings template, when no listing found. |
|
413 | - * |
|
414 | - * @since 1.5.5 |
|
412 | + * Called inside the `ul` of the listings template, when no listing found. |
|
413 | + * |
|
414 | + * @since 1.5.5 |
|
415 | 415 | * @param string 'listing-listview' Listing listview template. |
416 | 416 | * @param bool $favorite Are favorite listings results? |
417 | - */ |
|
418 | - do_action('geodir_message_not_found_on_listing', 'listing-listview', $favorite); |
|
419 | - endif; |
|
417 | + */ |
|
418 | + do_action('geodir_message_not_found_on_listing', 'listing-listview', $favorite); |
|
419 | + endif; |
|
420 | 420 | |
421 | - ?> |
|
421 | + ?> |
|
422 | 422 | </ul> <!-- geodir_category_list_view ends here--> |
423 | 423 | |
424 | 424 | <div class="clear"></div> |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | ?> |
76 | 76 | |
77 | 77 | <li class="clearfix <?php if ($grid_view_class) { |
78 | - echo 'geodir-gridview ' . $grid_view_class; |
|
78 | + echo 'geodir-gridview '.$grid_view_class; |
|
79 | 79 | } else { |
80 | 80 | echo ' geodir-listview '; |
81 | 81 | } ?> <?php if ($post_view_class) { |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | echo geodir_show_badges_on_image('featured', $post, get_permalink()); |
117 | 117 | } |
118 | 118 | |
119 | - $geodir_days_new = (int)get_option('geodir_listing_new_days'); |
|
119 | + $geodir_days_new = (int) get_option('geodir_listing_new_days'); |
|
120 | 120 | |
121 | 121 | if (round(abs(strtotime($post->post_date) - strtotime(date('Y-m-d'))) / 86400) < $geodir_days_new) { |
122 | 122 | echo geodir_show_badges_on_image('new', $post, get_permalink()); |
@@ -173,8 +173,8 @@ discard block |
||
173 | 173 | do_action('geodir_after_listing_post_title', 'listview', $post); ?> |
174 | 174 | |
175 | 175 | <?php /// Print Distance |
176 | - if ( ( isset( $_REQUEST['sgeo_lat'] ) && $_REQUEST['sgeo_lat'] != '' ) || ( $related_nearest && $related_parent_lat ) ) { |
|
177 | - if ( $related_nearest && $related_parent_lat ) { |
|
176 | + if ((isset($_REQUEST['sgeo_lat']) && $_REQUEST['sgeo_lat'] != '') || ($related_nearest && $related_parent_lat)) { |
|
177 | + if ($related_nearest && $related_parent_lat) { |
|
178 | 178 | $startPoint = array('latitude' => $related_parent_lat, 'longitude' => $related_parent_lon); |
179 | 179 | } else { |
180 | 180 | $startPoint = array('latitude' => $_REQUEST['sgeo_lat'], 'longitude' => $_REQUEST['sgeo_lon']); |
@@ -197,14 +197,14 @@ discard block |
||
197 | 197 | } else { |
198 | 198 | $uom = __('meters', 'geodirectory'); |
199 | 199 | } |
200 | - echo round($distance) . ' ' . $uom . '<br />'; |
|
200 | + echo round($distance).' '.$uom.'<br />'; |
|
201 | 201 | } else { |
202 | 202 | if ($uom == 'miles') { |
203 | 203 | $uom = __('miles', 'geodirectory'); |
204 | 204 | } else { |
205 | 205 | $uom = __('km', 'geodirectory'); |
206 | 206 | } |
207 | - echo round($distance, 2) . ' ' . $uom . '<br />'; |
|
207 | + echo round($distance, 2).' '.$uom.'<br />'; |
|
208 | 208 | } |
209 | 209 | ?> |
210 | 210 | </h3> |
@@ -234,13 +234,13 @@ discard block |
||
234 | 234 | */ |
235 | 235 | $show_listing_excerpt = apply_filters('geodir_show_listing_post_excerpt', true, 'listview', $post); |
236 | 236 | if ($show_listing_excerpt) { |
237 | - if ( isset( $character_count ) && ( $character_count || $character_count == '0' ) ) { |
|
238 | - $content_out = geodir_max_excerpt( $character_count ); |
|
237 | + if (isset($character_count) && ($character_count || $character_count == '0')) { |
|
238 | + $content_out = geodir_max_excerpt($character_count); |
|
239 | 239 | } else { |
240 | 240 | $content_out = get_the_excerpt(); |
241 | 241 | } |
242 | - if ( ! empty( $content_out ) ) { |
|
243 | - echo "<p>" . $content_out . "</p>"; |
|
242 | + if (!empty($content_out)) { |
|
243 | + echo "<p>".$content_out."</p>"; |
|
244 | 244 | } |
245 | 245 | } |
246 | 246 | ?></div> |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | * @param object $post The post object. |
265 | 265 | * @param string $view The view type, default 'listing'. |
266 | 266 | */ |
267 | - do_action( 'geodir_after_listing_content', $post, 'listing' ); ?> |
|
267 | + do_action('geodir_after_listing_content', $post, 'listing'); ?> |
|
268 | 268 | <footer class="geodir-entry-meta <?php echo apply_filters('geodir_listing_listview_meta_extra_class', '', 'listing'); ?>"> |
269 | 269 | <div class="geodir-addinfo clearfix <?php echo apply_filters('geodir_listing_listview_addinfo_extra_class', '', 'listing'); ?>"> |
270 | 270 | |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | * @param object $post The post object. |
277 | 277 | * @param string $view The view type, default 'listing'. |
278 | 278 | */ |
279 | - do_action( 'geodir_before_review_html', $post, 'listing' ); |
|
279 | + do_action('geodir_before_review_html', $post, 'listing'); |
|
280 | 280 | |
281 | 281 | $review_show = geodir_is_reviews_show('listview'); |
282 | 282 | |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * |
320 | 320 | * @since 1.0.0 |
321 | 321 | */ |
322 | - do_action( 'geodir_after_favorite_html', $post->ID, 'listing' ); |
|
322 | + do_action('geodir_after_favorite_html', $post->ID, 'listing'); |
|
323 | 323 | |
324 | 324 | |
325 | 325 | /** |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | * @param int $post->ID The post id. |
331 | 331 | * @param object $post The post object. |
332 | 332 | */ |
333 | - do_action( 'geodir_listing_after_pinpoint', $post->ID ,$post); |
|
333 | + do_action('geodir_listing_after_pinpoint', $post->ID, $post); |
|
334 | 334 | |
335 | 335 | if ($post->post_author == get_current_user_id()) { ?> |
336 | 336 | <?php |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | title="<?php _e('Edit Listing', 'geodirectory'); ?>"> |
360 | 360 | <?php |
361 | 361 | $geodir_listing_edit_icon = apply_filters('geodir_listing_edit_icon', 'fa fa-edit'); |
362 | - echo '<i class="'. $geodir_listing_edit_icon .'"></i>'; |
|
362 | + echo '<i class="'.$geodir_listing_edit_icon.'"></i>'; |
|
363 | 363 | ?> |
364 | 364 | <?php _e('Edit', 'geodirectory'); ?> |
365 | 365 | </a> |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | title="<?php _e('Delete Listing', 'geodirectory'); ?>"> |
368 | 368 | <?php |
369 | 369 | $geodir_listing_delete_icon = apply_filters('geodir_listing_delete_icon', 'fa fa-close'); |
370 | - echo '<i class="'. $geodir_listing_delete_icon .'"></i>'; |
|
370 | + echo '<i class="'.$geodir_listing_delete_icon.'"></i>'; |
|
371 | 371 | ?> |
372 | 372 | <?php _e('Delete', 'geodirectory'); ?> |
373 | 373 | </a> |
@@ -20,72 +20,72 @@ discard block |
||
20 | 20 | /** This action is documented in geodirectory-templates/listing-listview.php */ |
21 | 21 | $grid_view_class = apply_filters('geodir_grid_view_widget_columns', $gridview_columns_widget); |
22 | 22 | if ($gd_session->get('gd_listing_view') && !isset($before_widget)) { |
23 | - $grid_view_class = geodir_convert_listing_view_class($gd_session->get('gd_listing_view')); |
|
23 | + $grid_view_class = geodir_convert_listing_view_class($gd_session->get('gd_listing_view')); |
|
24 | 24 | } |
25 | 25 | ?> |
26 | 26 | <ul class="geodir_category_list_view clearfix <?php echo apply_filters('geodir_listing_listview_ul_extra_class', '', 'widget'); ?>"> |
27 | 27 | <?php |
28 | - if (!empty($widget_listings)) { |
|
29 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
30 | - do_action('geodir_before_listing_post_listview'); |
|
31 | - $all_postypes = geodir_get_posttypes(); |
|
32 | - $geodir_days_new = (int)get_option('geodir_listing_new_days'); |
|
33 | - foreach ($widget_listings as $widget_listing) { |
|
34 | - global $gd_widget_listing_type; |
|
35 | - $post = $widget_listing; |
|
28 | + if (!empty($widget_listings)) { |
|
29 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
30 | + do_action('geodir_before_listing_post_listview'); |
|
31 | + $all_postypes = geodir_get_posttypes(); |
|
32 | + $geodir_days_new = (int)get_option('geodir_listing_new_days'); |
|
33 | + foreach ($widget_listings as $widget_listing) { |
|
34 | + global $gd_widget_listing_type; |
|
35 | + $post = $widget_listing; |
|
36 | 36 | |
37 | - $GLOBALS['post'] = $post; |
|
38 | - setup_postdata($post); |
|
37 | + $GLOBALS['post'] = $post; |
|
38 | + setup_postdata($post); |
|
39 | 39 | |
40 | - $gd_widget_listing_type = $post->post_type; |
|
40 | + $gd_widget_listing_type = $post->post_type; |
|
41 | 41 | |
42 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
43 | - $post_view_class = apply_filters('geodir_post_view_extra_class', '', $all_postypes); |
|
42 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
43 | + $post_view_class = apply_filters('geodir_post_view_extra_class', '', $all_postypes); |
|
44 | 44 | |
45 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
46 | - $post_view_article_class = apply_filters('geodir_post_view_article_extra_class', ''); |
|
47 | - ?> |
|
45 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
46 | + $post_view_article_class = apply_filters('geodir_post_view_article_extra_class', ''); |
|
47 | + ?> |
|
48 | 48 | <li class="clearfix <?php if ($grid_view_class) { |
49 | - echo 'geodir-gridview ' . $grid_view_class; |
|
50 | - } else { |
|
51 | - echo ' geodir-listview '; |
|
52 | - } ?> <?php if ($post_view_class) { |
|
53 | - echo $post_view_class; |
|
54 | - } ?>" <?php if (isset($listing_width) && $listing_width) { |
|
55 | - echo "style='width:{$listing_width}%;'"; |
|
56 | - } |
|
49 | + echo 'geodir-gridview ' . $grid_view_class; |
|
50 | + } else { |
|
51 | + echo ' geodir-listview '; |
|
52 | + } ?> <?php if ($post_view_class) { |
|
53 | + echo $post_view_class; |
|
54 | + } ?>" <?php if (isset($listing_width) && $listing_width) { |
|
55 | + echo "style='width:{$listing_width}%;'"; |
|
56 | + } |
|
57 | 57 | |
58 | - echo " data-post-id='$post->ID' "; |
|
59 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
60 | - do_action('geodir_listview_inside_li', $post, 'widget'); |
|
61 | - ?>> |
|
58 | + echo " data-post-id='$post->ID' "; |
|
59 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
60 | + do_action('geodir_listview_inside_li', $post, 'widget'); |
|
61 | + ?>> |
|
62 | 62 | <article class="geodir-category-listing <?php if ($post_view_article_class) { |
63 | - echo $post_view_article_class; |
|
64 | - } ?>"> |
|
63 | + echo $post_view_article_class; |
|
64 | + } ?>"> |
|
65 | 65 | <div class="geodir-post-img <?php echo apply_filters('geodir_listing_listview_thumb_extra_class', '', 'widget'); ?>"> |
66 | 66 | <?php if ($fimage = geodir_show_featured_image($post->ID, 'list-thumb', true, false, $post->featured_image)) { ?> |
67 | 67 | <a href="<?php the_permalink(); ?>"><?php echo $fimage; ?></a> |
68 | 68 | <?php |
69 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
70 | - do_action('geodir_before_badge_on_image', $post); |
|
71 | - if ($post->is_featured) { |
|
72 | - echo geodir_show_badges_on_image('featured', $post, get_permalink()); |
|
73 | - } |
|
69 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
70 | + do_action('geodir_before_badge_on_image', $post); |
|
71 | + if ($post->is_featured) { |
|
72 | + echo geodir_show_badges_on_image('featured', $post, get_permalink()); |
|
73 | + } |
|
74 | 74 | |
75 | 75 | |
76 | - if (round(abs(strtotime($post->post_date) - strtotime(date('Y-m-d'))) / 86400) < $geodir_days_new) { |
|
77 | - echo geodir_show_badges_on_image('new', $post, get_permalink()); |
|
78 | - } |
|
76 | + if (round(abs(strtotime($post->post_date) - strtotime(date('Y-m-d'))) / 86400) < $geodir_days_new) { |
|
77 | + echo geodir_show_badges_on_image('new', $post, get_permalink()); |
|
78 | + } |
|
79 | 79 | |
80 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
81 | - do_action('geodir_after_badge_on_image', $post); |
|
82 | - } |
|
83 | - ?> |
|
80 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
81 | + do_action('geodir_after_badge_on_image', $post); |
|
82 | + } |
|
83 | + ?> |
|
84 | 84 | </div> |
85 | 85 | <div class="geodir-content <?php echo apply_filters('geodir_listing_listview_content_extra_class', '', 'widget'); ?>"> |
86 | 86 | <?php |
87 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
88 | - do_action('geodir_before_listing_post_title', 'listview', $post); ?> |
|
87 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
88 | + do_action('geodir_before_listing_post_title', 'listview', $post); ?> |
|
89 | 89 | <header class="geodir-entry-header"> |
90 | 90 | <?php $title_tag = !empty($title_tag) ? $title_tag : 'h3'; ?> |
91 | 91 | <<?php echo esc_attr($title_tag); ?> class="geodir-entry-title"> |
@@ -95,162 +95,162 @@ discard block |
||
95 | 95 | </header> |
96 | 96 | <!-- .entry-header --> |
97 | 97 | <?php |
98 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
99 | - do_action('geodir_after_listing_post_title', 'listview', $post); ?> |
|
98 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
99 | + do_action('geodir_after_listing_post_title', 'listview', $post); ?> |
|
100 | 100 | <?php /// Print Distance |
101 | - if ( ( isset( $_REQUEST['sgeo_lat'] ) && $_REQUEST['sgeo_lat'] != '' ) || ( $related_nearest && $related_parent_lat ) ) { |
|
102 | - if ( $related_nearest && $related_parent_lat ) { |
|
103 | - $startPoint = array('latitude' => $related_parent_lat, 'longitude' => $related_parent_lon); |
|
104 | - } else { |
|
105 | - $startPoint = array('latitude' => $_REQUEST['sgeo_lat'], 'longitude' => $_REQUEST['sgeo_lon']); |
|
106 | - } |
|
101 | + if ( ( isset( $_REQUEST['sgeo_lat'] ) && $_REQUEST['sgeo_lat'] != '' ) || ( $related_nearest && $related_parent_lat ) ) { |
|
102 | + if ( $related_nearest && $related_parent_lat ) { |
|
103 | + $startPoint = array('latitude' => $related_parent_lat, 'longitude' => $related_parent_lon); |
|
104 | + } else { |
|
105 | + $startPoint = array('latitude' => $_REQUEST['sgeo_lat'], 'longitude' => $_REQUEST['sgeo_lon']); |
|
106 | + } |
|
107 | 107 | |
108 | - $endLat = $post->post_latitude; |
|
109 | - $endLon = $post->post_longitude; |
|
110 | - $endPoint = array('latitude' => $endLat, 'longitude' => $endLon); |
|
111 | - $uom = get_option('geodir_search_dist_1'); |
|
112 | - $distance = geodir_calculateDistanceFromLatLong($startPoint, $endPoint, $uom); |
|
113 | - ?> |
|
108 | + $endLat = $post->post_latitude; |
|
109 | + $endLon = $post->post_longitude; |
|
110 | + $endPoint = array('latitude' => $endLat, 'longitude' => $endLon); |
|
111 | + $uom = get_option('geodir_search_dist_1'); |
|
112 | + $distance = geodir_calculateDistanceFromLatLong($startPoint, $endPoint, $uom); |
|
113 | + ?> |
|
114 | 114 | <h3> |
115 | 115 | <?php |
116 | - if (round($distance, 2) == 0) { |
|
117 | - $uom = get_option('geodir_search_dist_2'); |
|
118 | - $distance = geodir_calculateDistanceFromLatLong($startPoint, $endPoint, $uom); |
|
119 | - if ($uom == 'feet') { |
|
120 | - $uom = __('feet', 'geodirectory'); |
|
121 | - } else { |
|
122 | - $uom = __('meters', 'geodirectory'); |
|
123 | - } |
|
124 | - echo round($distance) . ' ' . __($uom, 'geodirectory') . ' |
|
116 | + if (round($distance, 2) == 0) { |
|
117 | + $uom = get_option('geodir_search_dist_2'); |
|
118 | + $distance = geodir_calculateDistanceFromLatLong($startPoint, $endPoint, $uom); |
|
119 | + if ($uom == 'feet') { |
|
120 | + $uom = __('feet', 'geodirectory'); |
|
121 | + } else { |
|
122 | + $uom = __('meters', 'geodirectory'); |
|
123 | + } |
|
124 | + echo round($distance) . ' ' . __($uom, 'geodirectory') . ' |
|
125 | 125 | <br /> |
126 | 126 | '; |
127 | - } else { |
|
128 | - if ($uom == 'miles') { |
|
129 | - $uom = __('miles', 'geodirectory'); |
|
130 | - } else { |
|
131 | - $uom = __('km', 'geodirectory'); |
|
132 | - } |
|
133 | - echo round($distance, 2) . ' ' . __($uom, 'geodirectory') . ' |
|
127 | + } else { |
|
128 | + if ($uom == 'miles') { |
|
129 | + $uom = __('miles', 'geodirectory'); |
|
130 | + } else { |
|
131 | + $uom = __('km', 'geodirectory'); |
|
132 | + } |
|
133 | + echo round($distance, 2) . ' ' . __($uom, 'geodirectory') . ' |
|
134 | 134 | <br /> |
135 | 135 | '; |
136 | - } |
|
137 | - ?> |
|
136 | + } |
|
137 | + ?> |
|
138 | 138 | </h3> |
139 | 139 | <?php } ?> |
140 | 140 | <?php |
141 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
142 | - do_action('geodir_before_listing_post_excerpt', $post); ?> |
|
141 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
142 | + do_action('geodir_before_listing_post_excerpt', $post); ?> |
|
143 | 143 | <?php echo geodir_show_listing_info('listing'); ?> |
144 | 144 | <?php if (isset($character_count) && $character_count == '0') { |
145 | - } else { ?> |
|
145 | + } else { ?> |
|
146 | 146 | <div class="geodir-entry-content"> |
147 | 147 | <?php |
148 | - /** |
|
149 | - * Filter to hide the listing excerpt |
|
150 | - * |
|
151 | - * @since 1.5.3 |
|
152 | - * @param bool $display Display the excerpt or not. Default true. |
|
153 | - * @param object $post The post object. |
|
154 | - */ |
|
155 | - $show_listing_excerpt = apply_filters('geodir_show_listing_post_excerpt', true, 'widget', $post); |
|
156 | - if ($show_listing_excerpt) { |
|
157 | - if ( isset( $character_count ) && ( $character_count || $character_count == '0' ) ) { |
|
158 | - $content_out = geodir_max_excerpt( $character_count ); |
|
159 | - } else { |
|
160 | - $content_out = get_the_excerpt(); |
|
161 | - } |
|
162 | - if ( ! empty( $content_out ) ) { |
|
163 | - echo "<p>" . $content_out . "</p>"; |
|
164 | - } |
|
165 | - } |
|
166 | - ?> |
|
148 | + /** |
|
149 | + * Filter to hide the listing excerpt |
|
150 | + * |
|
151 | + * @since 1.5.3 |
|
152 | + * @param bool $display Display the excerpt or not. Default true. |
|
153 | + * @param object $post The post object. |
|
154 | + */ |
|
155 | + $show_listing_excerpt = apply_filters('geodir_show_listing_post_excerpt', true, 'widget', $post); |
|
156 | + if ($show_listing_excerpt) { |
|
157 | + if ( isset( $character_count ) && ( $character_count || $character_count == '0' ) ) { |
|
158 | + $content_out = geodir_max_excerpt( $character_count ); |
|
159 | + } else { |
|
160 | + $content_out = get_the_excerpt(); |
|
161 | + } |
|
162 | + if ( ! empty( $content_out ) ) { |
|
163 | + echo "<p>" . $content_out . "</p>"; |
|
164 | + } |
|
165 | + } |
|
166 | + ?> |
|
167 | 167 | </div> |
168 | 168 | <?php } ?> |
169 | 169 | <?php |
170 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
171 | - do_action('geodir_after_listing_post_excerpt', $post); ?> |
|
170 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
171 | + do_action('geodir_after_listing_post_excerpt', $post); ?> |
|
172 | 172 | </div> |
173 | 173 | <!-- gd-content ends here--> |
174 | 174 | <?php |
175 | - /** |
|
176 | - * Called after printing listing content. |
|
177 | - * |
|
178 | - * @since 1.5.3 |
|
179 | - * @param object $post The post object. |
|
180 | - * @param string $view The view type, default 'widget'. |
|
181 | - */ |
|
182 | - do_action( 'geodir_after_listing_content', $post, 'widget' ); ?> |
|
175 | + /** |
|
176 | + * Called after printing listing content. |
|
177 | + * |
|
178 | + * @since 1.5.3 |
|
179 | + * @param object $post The post object. |
|
180 | + * @param string $view The view type, default 'widget'. |
|
181 | + */ |
|
182 | + do_action( 'geodir_after_listing_content', $post, 'widget' ); ?> |
|
183 | 183 | <footer class="geodir-entry-meta <?php echo apply_filters('geodir_listing_listview_meta_extra_class', '', 'widget'); ?>"> |
184 | 184 | <div class="geodir-addinfo clearfix <?php echo apply_filters('geodir_listing_listview_addinfo_extra_class', '', 'widget'); ?>"> |
185 | 185 | <?php |
186 | - /** |
|
187 | - * Called before printing review stars html. |
|
188 | - * |
|
189 | - * @since 1.5.3 |
|
190 | - * @param object $post The post object. |
|
191 | - * @param string $view The view type, default 'widget'. |
|
192 | - */ |
|
193 | - do_action( 'geodir_before_review_html', $post, 'widget' ); |
|
194 | - $review_show = geodir_is_reviews_show('listview'); |
|
195 | - if ($review_show) { |
|
186 | + /** |
|
187 | + * Called before printing review stars html. |
|
188 | + * |
|
189 | + * @since 1.5.3 |
|
190 | + * @param object $post The post object. |
|
191 | + * @param string $view The view type, default 'widget'. |
|
192 | + */ |
|
193 | + do_action( 'geodir_before_review_html', $post, 'widget' ); |
|
194 | + $review_show = geodir_is_reviews_show('listview'); |
|
195 | + if ($review_show) { |
|
196 | 196 | |
197 | - $post_avgratings = geodir_get_post_rating($post->ID); |
|
197 | + $post_avgratings = geodir_get_post_rating($post->ID); |
|
198 | 198 | |
199 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
200 | - do_action('geodir_before_review_rating_stars_on_listview', $post_avgratings, $post->ID); |
|
199 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
200 | + do_action('geodir_before_review_rating_stars_on_listview', $post_avgratings, $post->ID); |
|
201 | 201 | |
202 | - echo geodir_get_rating_stars($post_avgratings, $post->ID); |
|
202 | + echo geodir_get_rating_stars($post_avgratings, $post->ID); |
|
203 | 203 | |
204 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
205 | - do_action('geodir_after_review_rating_stars_on_listview', $post_avgratings, $post->ID); |
|
206 | - ?><a href="<?php comments_link(); ?>" class="geodir-pcomments"><i |
|
204 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
205 | + do_action('geodir_after_review_rating_stars_on_listview', $post_avgratings, $post->ID); |
|
206 | + ?><a href="<?php comments_link(); ?>" class="geodir-pcomments"><i |
|
207 | 207 | class="fa fa-comments"></i> <?php geodir_comments_number($post->rating_count); ?> |
208 | 208 | </a> |
209 | 209 | <?php |
210 | - } |
|
210 | + } |
|
211 | 211 | |
212 | 212 | |
213 | - /** |
|
214 | - * Called after printing favorite html. |
|
215 | - * |
|
216 | - * @since 1.0.0 |
|
217 | - */ |
|
218 | - do_action( 'geodir_after_favorite_html', $post->ID, 'widget' ); |
|
213 | + /** |
|
214 | + * Called after printing favorite html. |
|
215 | + * |
|
216 | + * @since 1.0.0 |
|
217 | + */ |
|
218 | + do_action( 'geodir_after_favorite_html', $post->ID, 'widget' ); |
|
219 | 219 | |
220 | - if ($post->post_author == get_current_user_id()) { |
|
221 | - $addplacelink = get_permalink(geodir_add_listing_page_id()); |
|
222 | - $editlink = geodir_getlink($addplacelink, array('pid' => $post->ID), false); |
|
223 | - $upgradelink = geodir_getlink($editlink, array('upgrade' => '1'), false); |
|
220 | + if ($post->post_author == get_current_user_id()) { |
|
221 | + $addplacelink = get_permalink(geodir_add_listing_page_id()); |
|
222 | + $editlink = geodir_getlink($addplacelink, array('pid' => $post->ID), false); |
|
223 | + $upgradelink = geodir_getlink($editlink, array('upgrade' => '1'), false); |
|
224 | 224 | |
225 | - $ajaxlink = geodir_get_ajax_url(); |
|
226 | - $deletelink = geodir_getlink($ajaxlink, array('geodir_ajax' => 'add_listing', 'ajax_action' => 'delete', 'pid' => $post->ID), false); |
|
227 | - ?> |
|
225 | + $ajaxlink = geodir_get_ajax_url(); |
|
226 | + $deletelink = geodir_getlink($ajaxlink, array('geodir_ajax' => 'add_listing', 'ajax_action' => 'delete', 'pid' => $post->ID), false); |
|
227 | + ?> |
|
228 | 228 | <span class="geodir-authorlink clearfix"> |
229 | 229 | <?php |
230 | - if (isset($_REQUEST['geodir_dashbord']) && $_REQUEST['geodir_dashbord']) { |
|
231 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
232 | - do_action('geodir_before_edit_post_link_on_listing'); |
|
233 | - ?> |
|
230 | + if (isset($_REQUEST['geodir_dashbord']) && $_REQUEST['geodir_dashbord']) { |
|
231 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
232 | + do_action('geodir_before_edit_post_link_on_listing'); |
|
233 | + ?> |
|
234 | 234 | <a href="<?php echo esc_url($editlink); ?>" class="geodir-edit" |
235 | 235 | title="<?php _e('Edit Listing', 'geodirectory'); ?>"> |
236 | 236 | <?php |
237 | - $geodir_listing_edit_icon = apply_filters('geodir_listing_edit_icon', 'fa fa-edit'); |
|
238 | - echo '<i class="'. $geodir_listing_edit_icon .'"></i>'; |
|
239 | - ?> |
|
237 | + $geodir_listing_edit_icon = apply_filters('geodir_listing_edit_icon', 'fa fa-edit'); |
|
238 | + echo '<i class="'. $geodir_listing_edit_icon .'"></i>'; |
|
239 | + ?> |
|
240 | 240 | <?php _e('Edit', 'geodirectory'); ?> |
241 | 241 | </a> |
242 | 242 | <a href="<?php echo esc_url($deletelink); ?>" class="geodir-delete" |
243 | 243 | title="<?php _e('Delete Listing', 'geodirectory'); ?>"> |
244 | 244 | <?php |
245 | - $geodir_listing_delete_icon = apply_filters('geodir_listing_delete_icon', 'fa fa-close'); |
|
246 | - echo '<i class="'. $geodir_listing_delete_icon .'"></i>'; |
|
247 | - ?> |
|
245 | + $geodir_listing_delete_icon = apply_filters('geodir_listing_delete_icon', 'fa fa-close'); |
|
246 | + echo '<i class="'. $geodir_listing_delete_icon .'"></i>'; |
|
247 | + ?> |
|
248 | 248 | <?php _e('Delete', 'geodirectory'); ?> |
249 | 249 | </a> |
250 | 250 | <?php |
251 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
252 | - do_action('geodir_after_edit_post_link_on_listing'); |
|
253 | - } ?> |
|
251 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
252 | + do_action('geodir_after_edit_post_link_on_listing'); |
|
253 | + } ?> |
|
254 | 254 | </span> |
255 | 255 | <?php } ?> |
256 | 256 | </div> |
@@ -260,17 +260,17 @@ discard block |
||
260 | 260 | </article> |
261 | 261 | </li> |
262 | 262 | <?php |
263 | - unset($gd_widget_listing_type); |
|
264 | - } |
|
265 | - /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
266 | - do_action('geodir_after_listing_post_listview'); |
|
267 | - } else { |
|
263 | + unset($gd_widget_listing_type); |
|
264 | + } |
|
265 | + /** This action is documented in geodirectory-templates/listing-listview.php */ |
|
266 | + do_action('geodir_after_listing_post_listview'); |
|
267 | + } else { |
|
268 | 268 | $favorite = isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' ? true : false; |
269 | 269 | |
270 | 270 | /** This action is documented in geodirectory-templates/listing-listview.php */ |
271 | - do_action('geodir_message_not_found_on_listing', 'widget-listing-listview', $favorite); |
|
272 | - } |
|
273 | - ?> |
|
271 | + do_action('geodir_message_not_found_on_listing', 'widget-listing-listview', $favorite); |
|
272 | + } |
|
273 | + ?> |
|
274 | 274 | </ul> <!-- geodir_category_list_view ends here--> |
275 | 275 | <div class="clear"></div> |
276 | 276 | <?php |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | /** This action is documented in geodirectory-templates/listing-listview.php */ |
30 | 30 | do_action('geodir_before_listing_post_listview'); |
31 | 31 | $all_postypes = geodir_get_posttypes(); |
32 | - $geodir_days_new = (int)get_option('geodir_listing_new_days'); |
|
32 | + $geodir_days_new = (int) get_option('geodir_listing_new_days'); |
|
33 | 33 | foreach ($widget_listings as $widget_listing) { |
34 | 34 | global $gd_widget_listing_type; |
35 | 35 | $post = $widget_listing; |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $post_view_article_class = apply_filters('geodir_post_view_article_extra_class', ''); |
47 | 47 | ?> |
48 | 48 | <li class="clearfix <?php if ($grid_view_class) { |
49 | - echo 'geodir-gridview ' . $grid_view_class; |
|
49 | + echo 'geodir-gridview '.$grid_view_class; |
|
50 | 50 | } else { |
51 | 51 | echo ' geodir-listview '; |
52 | 52 | } ?> <?php if ($post_view_class) { |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | /** This action is documented in geodirectory-templates/listing-listview.php */ |
99 | 99 | do_action('geodir_after_listing_post_title', 'listview', $post); ?> |
100 | 100 | <?php /// Print Distance |
101 | - if ( ( isset( $_REQUEST['sgeo_lat'] ) && $_REQUEST['sgeo_lat'] != '' ) || ( $related_nearest && $related_parent_lat ) ) { |
|
102 | - if ( $related_nearest && $related_parent_lat ) { |
|
101 | + if ((isset($_REQUEST['sgeo_lat']) && $_REQUEST['sgeo_lat'] != '') || ($related_nearest && $related_parent_lat)) { |
|
102 | + if ($related_nearest && $related_parent_lat) { |
|
103 | 103 | $startPoint = array('latitude' => $related_parent_lat, 'longitude' => $related_parent_lon); |
104 | 104 | } else { |
105 | 105 | $startPoint = array('latitude' => $_REQUEST['sgeo_lat'], 'longitude' => $_REQUEST['sgeo_lon']); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | } else { |
122 | 122 | $uom = __('meters', 'geodirectory'); |
123 | 123 | } |
124 | - echo round($distance) . ' ' . __($uom, 'geodirectory') . ' |
|
124 | + echo round($distance).' '.__($uom, 'geodirectory').' |
|
125 | 125 | <br /> |
126 | 126 | '; |
127 | 127 | } else { |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | } else { |
131 | 131 | $uom = __('km', 'geodirectory'); |
132 | 132 | } |
133 | - echo round($distance, 2) . ' ' . __($uom, 'geodirectory') . ' |
|
133 | + echo round($distance, 2).' '.__($uom, 'geodirectory').' |
|
134 | 134 | <br /> |
135 | 135 | '; |
136 | 136 | } |
@@ -154,13 +154,13 @@ discard block |
||
154 | 154 | */ |
155 | 155 | $show_listing_excerpt = apply_filters('geodir_show_listing_post_excerpt', true, 'widget', $post); |
156 | 156 | if ($show_listing_excerpt) { |
157 | - if ( isset( $character_count ) && ( $character_count || $character_count == '0' ) ) { |
|
158 | - $content_out = geodir_max_excerpt( $character_count ); |
|
157 | + if (isset($character_count) && ($character_count || $character_count == '0')) { |
|
158 | + $content_out = geodir_max_excerpt($character_count); |
|
159 | 159 | } else { |
160 | 160 | $content_out = get_the_excerpt(); |
161 | 161 | } |
162 | - if ( ! empty( $content_out ) ) { |
|
163 | - echo "<p>" . $content_out . "</p>"; |
|
162 | + if (!empty($content_out)) { |
|
163 | + echo "<p>".$content_out."</p>"; |
|
164 | 164 | } |
165 | 165 | } |
166 | 166 | ?> |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * @param object $post The post object. |
180 | 180 | * @param string $view The view type, default 'widget'. |
181 | 181 | */ |
182 | - do_action( 'geodir_after_listing_content', $post, 'widget' ); ?> |
|
182 | + do_action('geodir_after_listing_content', $post, 'widget'); ?> |
|
183 | 183 | <footer class="geodir-entry-meta <?php echo apply_filters('geodir_listing_listview_meta_extra_class', '', 'widget'); ?>"> |
184 | 184 | <div class="geodir-addinfo clearfix <?php echo apply_filters('geodir_listing_listview_addinfo_extra_class', '', 'widget'); ?>"> |
185 | 185 | <?php |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | * @param object $post The post object. |
191 | 191 | * @param string $view The view type, default 'widget'. |
192 | 192 | */ |
193 | - do_action( 'geodir_before_review_html', $post, 'widget' ); |
|
193 | + do_action('geodir_before_review_html', $post, 'widget'); |
|
194 | 194 | $review_show = geodir_is_reviews_show('listview'); |
195 | 195 | if ($review_show) { |
196 | 196 | |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | * |
216 | 216 | * @since 1.0.0 |
217 | 217 | */ |
218 | - do_action( 'geodir_after_favorite_html', $post->ID, 'widget' ); |
|
218 | + do_action('geodir_after_favorite_html', $post->ID, 'widget'); |
|
219 | 219 | |
220 | 220 | if ($post->post_author == get_current_user_id()) { |
221 | 221 | $addplacelink = get_permalink(geodir_add_listing_page_id()); |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | title="<?php _e('Edit Listing', 'geodirectory'); ?>"> |
236 | 236 | <?php |
237 | 237 | $geodir_listing_edit_icon = apply_filters('geodir_listing_edit_icon', 'fa fa-edit'); |
238 | - echo '<i class="'. $geodir_listing_edit_icon .'"></i>'; |
|
238 | + echo '<i class="'.$geodir_listing_edit_icon.'"></i>'; |
|
239 | 239 | ?> |
240 | 240 | <?php _e('Edit', 'geodirectory'); ?> |
241 | 241 | </a> |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | title="<?php _e('Delete Listing', 'geodirectory'); ?>"> |
244 | 244 | <?php |
245 | 245 | $geodir_listing_delete_icon = apply_filters('geodir_listing_delete_icon', 'fa fa-close'); |
246 | - echo '<i class="'. $geodir_listing_delete_icon .'"></i>'; |
|
246 | + echo '<i class="'.$geodir_listing_delete_icon.'"></i>'; |
|
247 | 247 | ?> |
248 | 248 | <?php _e('Delete', 'geodirectory'); ?> |
249 | 249 | </a> |
@@ -9,10 +9,10 @@ discard block |
||
9 | 9 | */ |
10 | 10 | function geodir_get_current_city_lat() |
11 | 11 | { |
12 | - $location = geodir_get_default_location(); |
|
13 | - $lat = isset($location_result->city_latitude) ? $location_result->city_latitude : '39.952484'; |
|
12 | + $location = geodir_get_default_location(); |
|
13 | + $lat = isset($location_result->city_latitude) ? $location_result->city_latitude : '39.952484'; |
|
14 | 14 | |
15 | - return $lat; |
|
15 | + return $lat; |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
@@ -25,9 +25,9 @@ discard block |
||
25 | 25 | */ |
26 | 26 | function geodir_get_current_city_lng() |
27 | 27 | { |
28 | - $location = geodir_get_default_location(); |
|
29 | - $lng = isset($location_result->city_longitude) ? $location_result->city_longitude : '-75.163786'; |
|
30 | - return $lng; |
|
28 | + $location = geodir_get_default_location(); |
|
29 | + $lng = isset($location_result->city_longitude) ? $location_result->city_longitude : '-75.163786'; |
|
30 | + return $lng; |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | |
@@ -40,15 +40,15 @@ discard block |
||
40 | 40 | */ |
41 | 41 | function geodir_get_default_location() |
42 | 42 | { |
43 | - /** |
|
44 | - * Filter the default location. |
|
45 | - * |
|
46 | - * @since 1.0.0 |
|
47 | - * @package GeoDirectory |
|
48 | - * |
|
49 | - * @param string $location_result The default location object. |
|
50 | - */ |
|
51 | - return $location_result = apply_filters('geodir_get_default_location', get_option('geodir_default_location')); |
|
43 | + /** |
|
44 | + * Filter the default location. |
|
45 | + * |
|
46 | + * @since 1.0.0 |
|
47 | + * @package GeoDirectory |
|
48 | + * |
|
49 | + * @param string $location_result The default location object. |
|
50 | + */ |
|
51 | + return $location_result = apply_filters('geodir_get_default_location', get_option('geodir_default_location')); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -60,11 +60,11 @@ discard block |
||
60 | 60 | */ |
61 | 61 | function geodir_is_default_location_set() |
62 | 62 | { |
63 | - $default_location = geodir_get_default_location(); |
|
64 | - if (!empty($default_location)) |
|
65 | - return true; |
|
66 | - else |
|
67 | - return false; |
|
63 | + $default_location = geodir_get_default_location(); |
|
64 | + if (!empty($default_location)) |
|
65 | + return true; |
|
66 | + else |
|
67 | + return false; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -78,15 +78,15 @@ discard block |
||
78 | 78 | function create_location_slug($location_string) |
79 | 79 | { |
80 | 80 | |
81 | - /** |
|
82 | - * Filter the location slug. |
|
83 | - * |
|
84 | - * @since 1.0.0 |
|
85 | - * @package GeoDirectory |
|
86 | - * |
|
87 | - * @param string $location_string Sanitized location string. |
|
88 | - */ |
|
89 | - return urldecode(apply_filters('geodir_location_slug_check', sanitize_title($location_string))); |
|
81 | + /** |
|
82 | + * Filter the location slug. |
|
83 | + * |
|
84 | + * @since 1.0.0 |
|
85 | + * @package GeoDirectory |
|
86 | + * |
|
87 | + * @param string $location_string Sanitized location string. |
|
88 | + */ |
|
89 | + return urldecode(apply_filters('geodir_location_slug_check', sanitize_title($location_string))); |
|
90 | 90 | |
91 | 91 | } |
92 | 92 | |
@@ -100,15 +100,15 @@ discard block |
||
100 | 100 | */ |
101 | 101 | function geodir_get_location($id = '') |
102 | 102 | { |
103 | - /** |
|
104 | - * Filter the location information. |
|
105 | - * |
|
106 | - * @since 1.0.0 |
|
107 | - * @package GeoDirectory |
|
108 | - * |
|
109 | - * @param string $id The location ID. |
|
110 | - */ |
|
111 | - return $location_result = apply_filters('geodir_get_location_by_id', get_option('geodir_default_location'), $id); |
|
103 | + /** |
|
104 | + * Filter the location information. |
|
105 | + * |
|
106 | + * @since 1.0.0 |
|
107 | + * @package GeoDirectory |
|
108 | + * |
|
109 | + * @param string $id The location ID. |
|
110 | + */ |
|
111 | + return $location_result = apply_filters('geodir_get_location_by_id', get_option('geodir_default_location'), $id); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -122,28 +122,28 @@ discard block |
||
122 | 122 | */ |
123 | 123 | function geodir_get_country_dl($post_country = '', $prefix = '') |
124 | 124 | { |
125 | - global $wpdb; |
|
125 | + global $wpdb; |
|
126 | 126 | |
127 | - $rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC"); |
|
127 | + $rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC"); |
|
128 | 128 | |
129 | - $ISO2 = array(); |
|
130 | - $countries = array(); |
|
129 | + $ISO2 = array(); |
|
130 | + $countries = array(); |
|
131 | 131 | |
132 | - foreach ($rows as $row) { |
|
133 | - $ISO2[$row->Country] = $row->ISO2; |
|
134 | - $countries[$row->Country] = __($row->Country, 'geodirectory'); |
|
135 | - } |
|
132 | + foreach ($rows as $row) { |
|
133 | + $ISO2[$row->Country] = $row->ISO2; |
|
134 | + $countries[$row->Country] = __($row->Country, 'geodirectory'); |
|
135 | + } |
|
136 | 136 | |
137 | - asort($countries); |
|
137 | + asort($countries); |
|
138 | 138 | |
139 | - $out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>'; |
|
140 | - foreach ($countries as $country => $name) { |
|
141 | - $ccode = $ISO2[$country]; |
|
139 | + $out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>'; |
|
140 | + foreach ($countries as $country => $name) { |
|
141 | + $ccode = $ISO2[$country]; |
|
142 | 142 | |
143 | - $out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>'; |
|
144 | - } |
|
143 | + $out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>'; |
|
144 | + } |
|
145 | 145 | |
146 | - echo $out_put; |
|
146 | + echo $out_put; |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | |
@@ -158,40 +158,40 @@ discard block |
||
158 | 158 | function geodir_location_form_submit() |
159 | 159 | { |
160 | 160 | |
161 | - global $wpdb, $plugin_prefix; |
|
162 | - if (isset($_REQUEST['add_location'])) { |
|
161 | + global $wpdb, $plugin_prefix; |
|
162 | + if (isset($_REQUEST['add_location'])) { |
|
163 | 163 | |
164 | - $location_info = array( |
|
165 | - 'city' => $_REQUEST['city'], |
|
166 | - 'region' => $_REQUEST['region'], |
|
167 | - 'country' => $_REQUEST['country'], |
|
168 | - 'geo_lat' => $_REQUEST['latitude'], |
|
169 | - 'geo_lng' => $_REQUEST['longitude'], |
|
170 | - 'is_default' => $_REQUEST['is_default'], |
|
171 | - 'update_city' => $_REQUEST['update_city'] |
|
172 | - ); |
|
164 | + $location_info = array( |
|
165 | + 'city' => $_REQUEST['city'], |
|
166 | + 'region' => $_REQUEST['region'], |
|
167 | + 'country' => $_REQUEST['country'], |
|
168 | + 'geo_lat' => $_REQUEST['latitude'], |
|
169 | + 'geo_lng' => $_REQUEST['longitude'], |
|
170 | + 'is_default' => $_REQUEST['is_default'], |
|
171 | + 'update_city' => $_REQUEST['update_city'] |
|
172 | + ); |
|
173 | 173 | |
174 | - $old_location = geodir_get_default_location(); |
|
174 | + $old_location = geodir_get_default_location(); |
|
175 | 175 | |
176 | - $locationid = geodir_add_new_location($location_info); |
|
176 | + $locationid = geodir_add_new_location($location_info); |
|
177 | 177 | |
178 | - $default_location = geodir_get_location($locationid); |
|
178 | + $default_location = geodir_get_location($locationid); |
|
179 | 179 | |
180 | - //UPDATE AND DELETE LISTING |
|
181 | - $posttype = geodir_get_posttypes(); |
|
182 | - if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') { |
|
180 | + //UPDATE AND DELETE LISTING |
|
181 | + $posttype = geodir_get_posttypes(); |
|
182 | + if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') { |
|
183 | 183 | |
184 | - foreach ($posttype as $posttypeobj) { |
|
185 | - $post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location |
|
184 | + foreach ($posttype as $posttypeobj) { |
|
185 | + $post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location |
|
186 | 186 | |
187 | - $sql = $wpdb->prepare( |
|
188 | - "UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)", |
|
189 | - array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations) |
|
190 | - ); |
|
191 | - $wpdb->query($sql); |
|
192 | - } |
|
193 | - } |
|
194 | - } |
|
187 | + $sql = $wpdb->prepare( |
|
188 | + "UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)", |
|
189 | + array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations) |
|
190 | + ); |
|
191 | + $wpdb->query($sql); |
|
192 | + } |
|
193 | + } |
|
194 | + } |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |
@@ -215,37 +215,37 @@ discard block |
||
215 | 215 | */ |
216 | 216 | function geodir_add_new_location($location_info = array()) |
217 | 217 | { |
218 | - global $wpdb; |
|
219 | - |
|
220 | - if (!empty($location_info)) { |
|
221 | - $location_city = ($location_info['city'] != '') ? $location_info['city'] : 'all'; |
|
222 | - $location_region = ($location_info['region'] != '') ? $location_info['region'] : 'all'; |
|
223 | - $location_country = ($location_info['country'] != '') ? geodir_get_normal_country($location_info['country']) : 'all'; |
|
224 | - $location_lat = ($location_info['geo_lat'] != '') ? $location_info['geo_lat'] : ''; |
|
225 | - $location_lng = ($location_info['geo_lng'] != '') ? $location_info['geo_lng'] : ''; |
|
226 | - $is_default = isset($location_info['is_default']) ? $location_info['is_default'] : ''; |
|
227 | - $country_slug = create_location_slug(__($location_country, 'geodirectory')); |
|
228 | - $region_slug = create_location_slug($location_region); |
|
229 | - $city_slug = create_location_slug($location_city); |
|
218 | + global $wpdb; |
|
219 | + |
|
220 | + if (!empty($location_info)) { |
|
221 | + $location_city = ($location_info['city'] != '') ? $location_info['city'] : 'all'; |
|
222 | + $location_region = ($location_info['region'] != '') ? $location_info['region'] : 'all'; |
|
223 | + $location_country = ($location_info['country'] != '') ? geodir_get_normal_country($location_info['country']) : 'all'; |
|
224 | + $location_lat = ($location_info['geo_lat'] != '') ? $location_info['geo_lat'] : ''; |
|
225 | + $location_lng = ($location_info['geo_lng'] != '') ? $location_info['geo_lng'] : ''; |
|
226 | + $is_default = isset($location_info['is_default']) ? $location_info['is_default'] : ''; |
|
227 | + $country_slug = create_location_slug(__($location_country, 'geodirectory')); |
|
228 | + $region_slug = create_location_slug($location_region); |
|
229 | + $city_slug = create_location_slug($location_city); |
|
230 | 230 | |
231 | - /** |
|
232 | - * Filter add new location data. |
|
233 | - * |
|
234 | - * @since 1.0.0 |
|
235 | - */ |
|
236 | - $geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0, |
|
237 | - 'country' => $location_country, |
|
238 | - 'region' => $location_region, |
|
239 | - 'city' => $location_city, |
|
240 | - 'country_slug' => $country_slug, |
|
241 | - 'region_slug' => $region_slug, |
|
242 | - 'city_slug' => $city_slug, |
|
243 | - 'city_latitude' => $location_lat, |
|
244 | - 'city_longitude' => $location_lng, |
|
245 | - 'is_default' => $is_default |
|
246 | - )); |
|
247 | - |
|
248 | - /* // Not allowed to create country in DB : 2016-12-09 |
|
231 | + /** |
|
232 | + * Filter add new location data. |
|
233 | + * |
|
234 | + * @since 1.0.0 |
|
235 | + */ |
|
236 | + $geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0, |
|
237 | + 'country' => $location_country, |
|
238 | + 'region' => $location_region, |
|
239 | + 'city' => $location_city, |
|
240 | + 'country_slug' => $country_slug, |
|
241 | + 'region_slug' => $region_slug, |
|
242 | + 'city_slug' => $city_slug, |
|
243 | + 'city_latitude' => $location_lat, |
|
244 | + 'city_longitude' => $location_lng, |
|
245 | + 'is_default' => $is_default |
|
246 | + )); |
|
247 | + |
|
248 | + /* // Not allowed to create country in DB : 2016-12-09 |
|
249 | 249 | if ($geodir_location->country) { |
250 | 250 | |
251 | 251 | $get_country = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country=%s", array($geodir_location->country))); |
@@ -259,14 +259,14 @@ discard block |
||
259 | 259 | } |
260 | 260 | */ |
261 | 261 | |
262 | - if ($geodir_location->is_default) |
|
263 | - update_option('geodir_default_location', $geodir_location); |
|
262 | + if ($geodir_location->is_default) |
|
263 | + update_option('geodir_default_location', $geodir_location); |
|
264 | 264 | |
265 | - return $geodir_location->location_id; |
|
265 | + return $geodir_location->location_id; |
|
266 | 266 | |
267 | - } else { |
|
268 | - return false; |
|
269 | - } |
|
267 | + } else { |
|
268 | + return false; |
|
269 | + } |
|
270 | 270 | } |
271 | 271 | |
272 | 272 | /** |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | */ |
281 | 281 | function geodir_random_float($min = 0, $max = 1) |
282 | 282 | { |
283 | - return $min + mt_rand() / mt_getrandmax() * ($max - $min); |
|
283 | + return $min + mt_rand() / mt_getrandmax() * ($max - $min); |
|
284 | 284 | } |
285 | 285 | |
286 | 286 | /** |
@@ -294,23 +294,23 @@ discard block |
||
294 | 294 | */ |
295 | 295 | function geodir_get_address_by_lat_lan($lat, $lng) |
296 | 296 | { |
297 | - $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng);// . "&key=" . geodir_get_map_api_key(); // if we add a key here it will not work if limited to a domain as this is done via curl. |
|
298 | - |
|
299 | - $ch = curl_init(); |
|
300 | - curl_setopt($ch, CURLOPT_URL, $url); |
|
301 | - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
302 | - curl_setopt($ch, CURLOPT_PROXYPORT, 3128); |
|
303 | - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); |
|
304 | - curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); |
|
305 | - $response = curl_exec($ch); |
|
306 | - curl_close($ch); |
|
297 | + $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng);// . "&key=" . geodir_get_map_api_key(); // if we add a key here it will not work if limited to a domain as this is done via curl. |
|
298 | + |
|
299 | + $ch = curl_init(); |
|
300 | + curl_setopt($ch, CURLOPT_URL, $url); |
|
301 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
302 | + curl_setopt($ch, CURLOPT_PROXYPORT, 3128); |
|
303 | + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); |
|
304 | + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); |
|
305 | + $response = curl_exec($ch); |
|
306 | + curl_close($ch); |
|
307 | 307 | |
308 | - $data = json_decode($response); |
|
309 | - $status = $data->status; |
|
310 | - if ($status == "OK") { |
|
311 | - return $data->results[0]->address_components; |
|
312 | - } else |
|
313 | - return false; |
|
308 | + $data = json_decode($response); |
|
309 | + $status = $data->status; |
|
310 | + if ($status == "OK") { |
|
311 | + return $data->results[0]->address_components; |
|
312 | + } else |
|
313 | + return false; |
|
314 | 314 | } |
315 | 315 | |
316 | 316 | /** |
@@ -327,71 +327,71 @@ discard block |
||
327 | 327 | */ |
328 | 328 | function geodir_get_current_location_terms($location_array_from = 'session', $gd_post_type = '') |
329 | 329 | { |
330 | - global $wp, $gd_session; |
|
331 | - $location_array = array(); |
|
332 | - if ($location_array_from == 'session') { |
|
333 | - if ($gd_session->get('gd_country') == 'me' || $gd_session->get('gd_region') == 'me' || $gd_session->get('gd_city') == 'me') { |
|
334 | - return $location_array; |
|
335 | - } |
|
330 | + global $wp, $gd_session; |
|
331 | + $location_array = array(); |
|
332 | + if ($location_array_from == 'session') { |
|
333 | + if ($gd_session->get('gd_country') == 'me' || $gd_session->get('gd_region') == 'me' || $gd_session->get('gd_city') == 'me') { |
|
334 | + return $location_array; |
|
335 | + } |
|
336 | 336 | |
337 | - $country = isset($_REQUEST['gd_country']) ? $_REQUEST['gd_country'] : $gd_session->get('gd_country'); |
|
338 | - if ($country != '' && $country) |
|
339 | - $location_array['gd_country'] = urldecode($country); |
|
337 | + $country = isset($_REQUEST['gd_country']) ? $_REQUEST['gd_country'] : $gd_session->get('gd_country'); |
|
338 | + if ($country != '' && $country) |
|
339 | + $location_array['gd_country'] = urldecode($country); |
|
340 | 340 | |
341 | - $region = isset($_REQUEST['gd_region']) ? $_REQUEST['gd_region'] : $gd_session->get('gd_region'); |
|
342 | - if ($region != '' && $region) |
|
343 | - $location_array['gd_region'] = urldecode($region); |
|
341 | + $region = isset($_REQUEST['gd_region']) ? $_REQUEST['gd_region'] : $gd_session->get('gd_region'); |
|
342 | + if ($region != '' && $region) |
|
343 | + $location_array['gd_region'] = urldecode($region); |
|
344 | 344 | |
345 | - $city = isset($_REQUEST['gd_city']) ? $_REQUEST['gd_city'] : $gd_session->get('gd_city'); |
|
346 | - if ($city != '' && $city) |
|
347 | - $location_array['gd_city'] = urldecode($city); |
|
348 | - } else { |
|
349 | - if ((isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] == 'me') || (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] == 'me') || (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] == 'me')) { |
|
350 | - return $location_array; |
|
351 | - } |
|
345 | + $city = isset($_REQUEST['gd_city']) ? $_REQUEST['gd_city'] : $gd_session->get('gd_city'); |
|
346 | + if ($city != '' && $city) |
|
347 | + $location_array['gd_city'] = urldecode($city); |
|
348 | + } else { |
|
349 | + if ((isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] == 'me') || (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] == 'me') || (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] == 'me')) { |
|
350 | + return $location_array; |
|
351 | + } |
|
352 | 352 | |
353 | - $country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : ''; |
|
353 | + $country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : ''; |
|
354 | 354 | |
355 | - $region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : ''; |
|
355 | + $region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : ''; |
|
356 | 356 | |
357 | - $city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : ''; |
|
357 | + $city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : ''; |
|
358 | 358 | |
359 | - if ($country != '') |
|
360 | - $location_array['gd_country'] = urldecode($country); |
|
359 | + if ($country != '') |
|
360 | + $location_array['gd_country'] = urldecode($country); |
|
361 | 361 | |
362 | - if ($region != '') |
|
363 | - $location_array['gd_region'] = urldecode($region); |
|
362 | + if ($region != '') |
|
363 | + $location_array['gd_region'] = urldecode($region); |
|
364 | 364 | |
365 | - if ($city != '') |
|
366 | - $location_array['gd_city'] = urldecode($city); |
|
365 | + if ($city != '') |
|
366 | + $location_array['gd_city'] = urldecode($city); |
|
367 | 367 | |
368 | 368 | // Fix category link in ajax popular category widget on change post type |
369 | 369 | if (empty($location_array) && defined('DOING_AJAX') && DOING_AJAX) { |
370 | 370 | $location_array = geodir_get_current_location_terms('session'); |
371 | 371 | } |
372 | - } |
|
372 | + } |
|
373 | 373 | |
374 | 374 | |
375 | 375 | /** |
376 | 376 | * Filter the location terms. |
377 | 377 | * |
378 | 378 | * @since 1.4.6 |
379 | - * @package GeoDirectory |
|
379 | + * @package GeoDirectory |
|
380 | + * |
|
381 | + * @param array $location_array { |
|
382 | + * Attributes of the location_array. |
|
383 | + * |
|
384 | + * @type string $gd_country The country slug. |
|
385 | + * @type string $gd_region The region slug. |
|
386 | + * @type string $gd_city The city slug. |
|
380 | 387 | * |
381 | - * @param array $location_array { |
|
382 | - * Attributes of the location_array. |
|
383 | - * |
|
384 | - * @type string $gd_country The country slug. |
|
385 | - * @type string $gd_region The region slug. |
|
386 | - * @type string $gd_city The city slug. |
|
387 | - * |
|
388 | - * } |
|
388 | + * } |
|
389 | 389 | * @param string $location_array_from Source type of location terms. Default session. |
390 | 390 | * @param string $gd_post_type WP post type. |
391 | 391 | */ |
392 | 392 | $location_array = apply_filters( 'geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type ); |
393 | 393 | |
394 | - return $location_array; |
|
394 | + return $location_array; |
|
395 | 395 | |
396 | 396 | } |
397 | 397 | |
@@ -404,24 +404,24 @@ discard block |
||
404 | 404 | * @return bool|string |
405 | 405 | */ |
406 | 406 | function geodir_get_location_link($which_location = 'current') { |
407 | - $location_link = get_permalink(geodir_location_page_id()); |
|
408 | - |
|
409 | - if ($which_location == 'base') { |
|
410 | - return $location_link; |
|
411 | - } else { |
|
412 | - $location_terms = geodir_get_current_location_terms(); |
|
413 | - |
|
414 | - if (!empty($location_terms)) { |
|
415 | - if (get_option('permalink_structure') != '') { |
|
416 | - $location_terms = implode("/", $location_terms); |
|
417 | - $location_terms = rtrim($location_terms, '/'); |
|
418 | - $location_link .= $location_terms; |
|
419 | - } else { |
|
420 | - $location_link = geodir_getlink($location_link, $location_terms); |
|
421 | - } |
|
422 | - } |
|
423 | - } |
|
424 | - return $location_link; |
|
407 | + $location_link = get_permalink(geodir_location_page_id()); |
|
408 | + |
|
409 | + if ($which_location == 'base') { |
|
410 | + return $location_link; |
|
411 | + } else { |
|
412 | + $location_terms = geodir_get_current_location_terms(); |
|
413 | + |
|
414 | + if (!empty($location_terms)) { |
|
415 | + if (get_option('permalink_structure') != '') { |
|
416 | + $location_terms = implode("/", $location_terms); |
|
417 | + $location_terms = rtrim($location_terms, '/'); |
|
418 | + $location_link .= $location_terms; |
|
419 | + } else { |
|
420 | + $location_link = geodir_getlink($location_link, $location_terms); |
|
421 | + } |
|
422 | + } |
|
423 | + } |
|
424 | + return $location_link; |
|
425 | 425 | } |
426 | 426 | |
427 | 427 | /** |
@@ -434,33 +434,33 @@ discard block |
||
434 | 434 | * @return array|bool Returns address on success. |
435 | 435 | */ |
436 | 436 | function geodir_get_osm_address_by_lat_lan($lat, $lng) { |
437 | - $url = 'https://nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email'); |
|
438 | - |
|
439 | - $ch = curl_init(); |
|
440 | - curl_setopt($ch, CURLOPT_URL, $url); |
|
441 | - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
442 | - curl_setopt($ch, CURLOPT_PROXYPORT, 3128); |
|
443 | - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); |
|
444 | - curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); |
|
445 | - $response = curl_exec($ch); |
|
446 | - curl_close($ch); |
|
447 | - $data = json_decode($response); |
|
437 | + $url = 'https://nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email'); |
|
438 | + |
|
439 | + $ch = curl_init(); |
|
440 | + curl_setopt($ch, CURLOPT_URL, $url); |
|
441 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
442 | + curl_setopt($ch, CURLOPT_PROXYPORT, 3128); |
|
443 | + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); |
|
444 | + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); |
|
445 | + $response = curl_exec($ch); |
|
446 | + curl_close($ch); |
|
447 | + $data = json_decode($response); |
|
448 | 448 | |
449 | - if (!empty($data) && !empty($data->address)) { |
|
450 | - $address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb'); |
|
451 | - $formatted_address = (array)$data->address; |
|
449 | + if (!empty($data) && !empty($data->address)) { |
|
450 | + $address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb'); |
|
451 | + $formatted_address = (array)$data->address; |
|
452 | 452 | |
453 | - foreach ( $data->address as $key => $value ) { |
|
454 | - if (!in_array($key, $address_fields)) { |
|
455 | - unset($formatted_address[$key]); |
|
456 | - } |
|
457 | - } |
|
458 | - $data->formatted_address = !empty($formatted_address) ? implode(', ', $formatted_address) : ''; |
|
453 | + foreach ( $data->address as $key => $value ) { |
|
454 | + if (!in_array($key, $address_fields)) { |
|
455 | + unset($formatted_address[$key]); |
|
456 | + } |
|
457 | + } |
|
458 | + $data->formatted_address = !empty($formatted_address) ? implode(', ', $formatted_address) : ''; |
|
459 | 459 | |
460 | - return $data; |
|
461 | - } else { |
|
462 | - return false; |
|
463 | - } |
|
460 | + return $data; |
|
461 | + } else { |
|
462 | + return false; |
|
463 | + } |
|
464 | 464 | } |
465 | 465 | |
466 | 466 | /** |
@@ -474,51 +474,51 @@ discard block |
||
474 | 474 | * @return string Returns the country. |
475 | 475 | */ |
476 | 476 | function geodir_get_normal_country($country, $default = '1') { |
477 | - global $wpdb; |
|
478 | - if ($result = geodir_get_country_by_name($country)) { |
|
479 | - return $result; |
|
480 | - } |
|
477 | + global $wpdb; |
|
478 | + if ($result = geodir_get_country_by_name($country)) { |
|
479 | + return $result; |
|
480 | + } |
|
481 | 481 | |
482 | - if (defined('POST_LOCATION_TABLE')) { |
|
483 | - $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country)); |
|
484 | - if (!empty($rows)) { |
|
485 | - foreach ($rows as $row) { |
|
486 | - $translated = __($row->country, 'geodirectory'); |
|
487 | - if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) { |
|
488 | - return $result; |
|
489 | - } |
|
490 | - } |
|
491 | - } |
|
482 | + if (defined('POST_LOCATION_TABLE')) { |
|
483 | + $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country)); |
|
484 | + if (!empty($rows)) { |
|
485 | + foreach ($rows as $row) { |
|
486 | + $translated = __($row->country, 'geodirectory'); |
|
487 | + if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) { |
|
488 | + return $result; |
|
489 | + } |
|
490 | + } |
|
491 | + } |
|
492 | 492 | |
493 | - $rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) ); |
|
494 | - if (!empty($rows)) { |
|
495 | - foreach ($rows as $row) { |
|
496 | - $translated = __($row->country, 'geodirectory'); |
|
497 | - if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) { |
|
498 | - return $result; |
|
499 | - } |
|
500 | - } |
|
501 | - } |
|
502 | - } |
|
493 | + $rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) ); |
|
494 | + if (!empty($rows)) { |
|
495 | + foreach ($rows as $row) { |
|
496 | + $translated = __($row->country, 'geodirectory'); |
|
497 | + if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) { |
|
498 | + return $result; |
|
499 | + } |
|
500 | + } |
|
501 | + } |
|
502 | + } |
|
503 | 503 | |
504 | - if ( $default === '0' ) { |
|
505 | - return NULL; |
|
506 | - } |
|
504 | + if ( $default === '0' ) { |
|
505 | + return NULL; |
|
506 | + } |
|
507 | 507 | |
508 | - $default_location = geodir_get_default_location(); |
|
509 | - if (!empty($default_location->country) && $result = geodir_get_country_by_name($default_location->country)) { |
|
510 | - return $result; |
|
511 | - } |
|
508 | + $default_location = geodir_get_default_location(); |
|
509 | + if (!empty($default_location->country) && $result = geodir_get_country_by_name($default_location->country)) { |
|
510 | + return $result; |
|
511 | + } |
|
512 | 512 | |
513 | - if (!empty($default_location->country_slug) && $result = geodir_get_country_by_name($default_location->country_slug)) { |
|
514 | - return $result; |
|
515 | - } |
|
513 | + if (!empty($default_location->country_slug) && $result = geodir_get_country_by_name($default_location->country_slug)) { |
|
514 | + return $result; |
|
515 | + } |
|
516 | 516 | |
517 | - if (!empty($default_location->country_ISO2) && $result = geodir_get_country_by_name($default_location->country_ISO2, true)) { |
|
518 | - return $result; |
|
519 | - } |
|
517 | + if (!empty($default_location->country_ISO2) && $result = geodir_get_country_by_name($default_location->country_ISO2, true)) { |
|
518 | + return $result; |
|
519 | + } |
|
520 | 520 | |
521 | - return $country; |
|
521 | + return $country; |
|
522 | 522 | } |
523 | 523 | |
524 | 524 | /** |
@@ -530,16 +530,16 @@ discard block |
||
530 | 530 | * @return string Country ISO2 code. |
531 | 531 | */ |
532 | 532 | function geodir_get_country_iso2($country) { |
533 | - global $wpdb; |
|
533 | + global $wpdb; |
|
534 | 534 | |
535 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) { |
|
536 | - return $result; |
|
537 | - } |
|
538 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) { |
|
539 | - return $result; |
|
540 | - } |
|
535 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) { |
|
536 | + return $result; |
|
537 | + } |
|
538 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) { |
|
539 | + return $result; |
|
540 | + } |
|
541 | 541 | |
542 | - return $country; |
|
542 | + return $country; |
|
543 | 543 | } |
544 | 544 | |
545 | 545 | /** |
@@ -552,16 +552,16 @@ discard block |
||
552 | 552 | * @return string|null Country ISO2 code. |
553 | 553 | */ |
554 | 554 | function geodir_get_country_by_name($country, $iso2 = false) { |
555 | - global $wpdb; |
|
555 | + global $wpdb; |
|
556 | 556 | |
557 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) { |
|
558 | - return $result; |
|
559 | - } |
|
560 | - if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) { |
|
561 | - return $result; |
|
562 | - } |
|
557 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) { |
|
558 | + return $result; |
|
559 | + } |
|
560 | + if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) { |
|
561 | + return $result; |
|
562 | + } |
|
563 | 563 | |
564 | - return NULL; |
|
564 | + return NULL; |
|
565 | 565 | } |
566 | 566 | |
567 | 567 | |
@@ -581,158 +581,158 @@ discard block |
||
581 | 581 | */ |
582 | 582 | function geodir_replace_location_variables($content, $location_array = array(), $sep = NULL, $gd_page = '') { |
583 | 583 | |
584 | - if (empty($content)) { |
|
585 | - return $content; |
|
586 | - } |
|
584 | + if (empty($content)) { |
|
585 | + return $content; |
|
586 | + } |
|
587 | 587 | |
588 | 588 | |
589 | - $location_replace_vars = geodir_location_replace_vars($location_array, $sep, $gd_page); |
|
589 | + $location_replace_vars = geodir_location_replace_vars($location_array, $sep, $gd_page); |
|
590 | 590 | |
591 | - if (!empty($location_replace_vars)) { |
|
592 | - foreach ($location_replace_vars as $search => $replace) { |
|
593 | - if (!empty($search) && strpos($content, $search) !== false) { |
|
594 | - $content = str_replace($search, $replace, $content); |
|
595 | - } |
|
596 | - } |
|
597 | - } |
|
591 | + if (!empty($location_replace_vars)) { |
|
592 | + foreach ($location_replace_vars as $search => $replace) { |
|
593 | + if (!empty($search) && strpos($content, $search) !== false) { |
|
594 | + $content = str_replace($search, $replace, $content); |
|
595 | + } |
|
596 | + } |
|
597 | + } |
|
598 | 598 | |
599 | - return $content; |
|
599 | + return $content; |
|
600 | 600 | } |
601 | 601 | add_filter('geodir_replace_location_variables', 'geodir_replace_location_variables'); |
602 | 602 | |
603 | 603 | |
604 | 604 | function geodir_location_replace_vars($location_array = array(), $sep = NULL, $gd_page = ''){ |
605 | 605 | |
606 | - global $wp; |
|
606 | + global $wp; |
|
607 | 607 | |
608 | - $location_manager = defined('GEODIRLOCATION_VERSION') ? true : false; |
|
609 | - |
|
610 | - if (empty($location_array)) { |
|
611 | - $location_array = geodir_get_current_location_terms('query_vars'); |
|
612 | - } |
|
613 | - |
|
614 | - $location_terms = array(); |
|
615 | - $location_terms['gd_neighbourhood'] = !empty($wp->query_vars['gd_neighbourhood']) ? $wp->query_vars['gd_neighbourhood'] : ''; |
|
616 | - $location_terms['gd_city'] = !empty($wp->query_vars['gd_city']) ? $wp->query_vars['gd_city'] : ''; |
|
617 | - $location_terms['gd_region'] = !empty($wp->query_vars['gd_region']) ? $wp->query_vars['gd_region'] : ''; |
|
618 | - $location_terms['gd_country'] = !empty($wp->query_vars['gd_country']) ? $wp->query_vars['gd_country'] : ''; |
|
619 | - |
|
620 | - $location_names = array(); |
|
621 | - foreach ($location_terms as $type => $location) { |
|
622 | - $location_name = $location; |
|
623 | - |
|
624 | - if (!empty($location_name)) { |
|
625 | - if ($location_manager) { |
|
626 | - $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
|
627 | - $location_name = get_actual_location_name($location_type, $location, true); |
|
628 | - } else { |
|
629 | - $location_name = preg_replace( '/-(\d+)$/', '', $location_name); |
|
630 | - $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
631 | - $location_name = __(geodir_ucwords($location_name), 'geodirectory'); |
|
632 | - } |
|
633 | - } |
|
634 | - |
|
635 | - $location_names[$type] = $location_name; |
|
636 | - } |
|
637 | - |
|
638 | - $location_single = ''; |
|
639 | - foreach ($location_terms as $type => $location) { |
|
640 | - if (!empty($location)) { |
|
641 | - if (!empty($location_names[$type])) { |
|
642 | - $location_single = $location_names[$type]; |
|
643 | - } else { |
|
644 | - if ($location_manager) { |
|
645 | - $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
|
646 | - $location_single = get_actual_location_name($location_type, $location, true); |
|
647 | - } else { |
|
648 | - $location_name = preg_replace( '/-(\d+)$/', '', $location); |
|
649 | - $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
650 | - $location_single = __(geodir_ucwords($location_name), 'geodirectory'); |
|
651 | - } |
|
652 | - } |
|
653 | - break; |
|
654 | - } |
|
655 | - } |
|
656 | - |
|
657 | - $full_location = array(); |
|
658 | - if (!empty($location_array)) { |
|
659 | - $location_array = array_reverse($location_array); |
|
660 | - |
|
661 | - foreach ($location_array as $type => $location) { |
|
662 | - if (!empty($location_names[$type])) { |
|
663 | - $location_name = $location_names[$type]; |
|
664 | - } else { |
|
665 | - if ($location_manager) { |
|
666 | - $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
|
667 | - $location_name = get_actual_location_name($location_type, $location, true); |
|
668 | - } else { |
|
669 | - $location_name = preg_replace( '/-(\d+)$/', '', $location); |
|
670 | - $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
671 | - $location_name = __(geodir_ucwords($location_name), 'geodirectory'); |
|
672 | - } |
|
673 | - } |
|
608 | + $location_manager = defined('GEODIRLOCATION_VERSION') ? true : false; |
|
609 | + |
|
610 | + if (empty($location_array)) { |
|
611 | + $location_array = geodir_get_current_location_terms('query_vars'); |
|
612 | + } |
|
613 | + |
|
614 | + $location_terms = array(); |
|
615 | + $location_terms['gd_neighbourhood'] = !empty($wp->query_vars['gd_neighbourhood']) ? $wp->query_vars['gd_neighbourhood'] : ''; |
|
616 | + $location_terms['gd_city'] = !empty($wp->query_vars['gd_city']) ? $wp->query_vars['gd_city'] : ''; |
|
617 | + $location_terms['gd_region'] = !empty($wp->query_vars['gd_region']) ? $wp->query_vars['gd_region'] : ''; |
|
618 | + $location_terms['gd_country'] = !empty($wp->query_vars['gd_country']) ? $wp->query_vars['gd_country'] : ''; |
|
619 | + |
|
620 | + $location_names = array(); |
|
621 | + foreach ($location_terms as $type => $location) { |
|
622 | + $location_name = $location; |
|
623 | + |
|
624 | + if (!empty($location_name)) { |
|
625 | + if ($location_manager) { |
|
626 | + $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
|
627 | + $location_name = get_actual_location_name($location_type, $location, true); |
|
628 | + } else { |
|
629 | + $location_name = preg_replace( '/-(\d+)$/', '', $location_name); |
|
630 | + $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
631 | + $location_name = __(geodir_ucwords($location_name), 'geodirectory'); |
|
632 | + } |
|
633 | + } |
|
674 | 634 | |
675 | - $full_location[] = $location_name; |
|
676 | - } |
|
635 | + $location_names[$type] = $location_name; |
|
636 | + } |
|
637 | + |
|
638 | + $location_single = ''; |
|
639 | + foreach ($location_terms as $type => $location) { |
|
640 | + if (!empty($location)) { |
|
641 | + if (!empty($location_names[$type])) { |
|
642 | + $location_single = $location_names[$type]; |
|
643 | + } else { |
|
644 | + if ($location_manager) { |
|
645 | + $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
|
646 | + $location_single = get_actual_location_name($location_type, $location, true); |
|
647 | + } else { |
|
648 | + $location_name = preg_replace( '/-(\d+)$/', '', $location); |
|
649 | + $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
650 | + $location_single = __(geodir_ucwords($location_name), 'geodirectory'); |
|
651 | + } |
|
652 | + } |
|
653 | + break; |
|
654 | + } |
|
655 | + } |
|
656 | + |
|
657 | + $full_location = array(); |
|
658 | + if (!empty($location_array)) { |
|
659 | + $location_array = array_reverse($location_array); |
|
660 | + |
|
661 | + foreach ($location_array as $type => $location) { |
|
662 | + if (!empty($location_names[$type])) { |
|
663 | + $location_name = $location_names[$type]; |
|
664 | + } else { |
|
665 | + if ($location_manager) { |
|
666 | + $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
|
667 | + $location_name = get_actual_location_name($location_type, $location, true); |
|
668 | + } else { |
|
669 | + $location_name = preg_replace( '/-(\d+)$/', '', $location); |
|
670 | + $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
671 | + $location_name = __(geodir_ucwords($location_name), 'geodirectory'); |
|
672 | + } |
|
673 | + } |
|
674 | + |
|
675 | + $full_location[] = $location_name; |
|
676 | + } |
|
677 | 677 | |
678 | - if (!empty($full_location)) { |
|
679 | - $full_location = array_unique($full_location); |
|
680 | - } |
|
681 | - } |
|
682 | - $full_location = !empty($full_location) ? implode(', ', $full_location): ''; |
|
678 | + if (!empty($full_location)) { |
|
679 | + $full_location = array_unique($full_location); |
|
680 | + } |
|
681 | + } |
|
682 | + $full_location = !empty($full_location) ? implode(', ', $full_location): ''; |
|
683 | 683 | |
684 | - if ( empty( $full_location ) ) { |
|
685 | - /** |
|
686 | - * Filter the text in meta description in full location is empty. |
|
687 | - * |
|
688 | - * @since 1.6.22 |
|
689 | - * |
|
690 | - * @param string $full_location Default: Empty. |
|
691 | - * @param array $location_array The array of location variables. |
|
692 | - * @param string $gd_page The page being filtered. |
|
693 | - * @param string $sep The separator. |
|
694 | - */ |
|
695 | - $full_location = apply_filters( 'geodir_meta_description_location_empty_text', '', $location_array, $gd_page, $sep ); |
|
696 | - } |
|
684 | + if ( empty( $full_location ) ) { |
|
685 | + /** |
|
686 | + * Filter the text in meta description in full location is empty. |
|
687 | + * |
|
688 | + * @since 1.6.22 |
|
689 | + * |
|
690 | + * @param string $full_location Default: Empty. |
|
691 | + * @param array $location_array The array of location variables. |
|
692 | + * @param string $gd_page The page being filtered. |
|
693 | + * @param string $sep The separator. |
|
694 | + */ |
|
695 | + $full_location = apply_filters( 'geodir_meta_description_location_empty_text', '', $location_array, $gd_page, $sep ); |
|
696 | + } |
|
697 | 697 | |
698 | - if ( empty( $location_single ) ) { |
|
699 | - /** |
|
700 | - * Filter the text in meta description in single location is empty. |
|
701 | - * |
|
702 | - * @since 1.6.22 |
|
703 | - * |
|
704 | - * @param string $location_single Default: Empty. |
|
705 | - * @param array $location_array The array of location variables. |
|
706 | - * @param string $gd_page The page being filtered. |
|
707 | - * @param string $sep The separator. |
|
708 | - */ |
|
709 | - $location_single = apply_filters( 'geodir_meta_description_single_location_empty_text', '', $location_array, $gd_page, $sep ); |
|
710 | - } |
|
711 | - |
|
712 | - $location_replace_vars = array(); |
|
713 | - $location_replace_vars['%%location_sep%%'] = $sep !== NULL ? $sep : '|'; |
|
714 | - $location_replace_vars['%%location%%'] = $full_location; |
|
715 | - $location_replace_vars['%%in_location%%'] = $full_location != '' ? sprintf( _x('in %s','in location', 'geodirectory'), $full_location ) : ''; |
|
716 | - $location_replace_vars['%%location_single%%'] = $location_single; |
|
717 | - $location_replace_vars['%%in_location_single%%'] = $location_single != '' ? sprintf( _x('in %s','in location', 'geodirectory'), $location_single ) : ''; |
|
718 | - |
|
719 | - foreach ($location_names as $type => $name) { |
|
720 | - $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
|
721 | - |
|
722 | - $location_replace_vars['%%location_' . $location_type . '%%'] = $name; |
|
723 | - $location_replace_vars['%%in_location_' . $location_type . '%%'] = !empty($name) ? sprintf( _x('in %s','in location', 'geodirectory'), $name ) : ''; |
|
724 | - } |
|
725 | - |
|
726 | - /** |
|
727 | - * Filter the location terms variables to search & replace. |
|
728 | - * |
|
729 | - * @since 1.6.16 |
|
730 | - * @package GeoDirectory |
|
731 | - * |
|
732 | - * @param array $location_replace_vars The array of search & replace variables. |
|
733 | - * @param array $location_array The array of location variables. |
|
734 | - * @param string $gd_page The page being filtered. |
|
735 | - * @param string $sep The separator. |
|
736 | - */ |
|
737 | - return apply_filters( 'geodir_filter_location_replace_variables', $location_replace_vars, $location_array, $gd_page, $sep ); |
|
698 | + if ( empty( $location_single ) ) { |
|
699 | + /** |
|
700 | + * Filter the text in meta description in single location is empty. |
|
701 | + * |
|
702 | + * @since 1.6.22 |
|
703 | + * |
|
704 | + * @param string $location_single Default: Empty. |
|
705 | + * @param array $location_array The array of location variables. |
|
706 | + * @param string $gd_page The page being filtered. |
|
707 | + * @param string $sep The separator. |
|
708 | + */ |
|
709 | + $location_single = apply_filters( 'geodir_meta_description_single_location_empty_text', '', $location_array, $gd_page, $sep ); |
|
710 | + } |
|
711 | + |
|
712 | + $location_replace_vars = array(); |
|
713 | + $location_replace_vars['%%location_sep%%'] = $sep !== NULL ? $sep : '|'; |
|
714 | + $location_replace_vars['%%location%%'] = $full_location; |
|
715 | + $location_replace_vars['%%in_location%%'] = $full_location != '' ? sprintf( _x('in %s','in location', 'geodirectory'), $full_location ) : ''; |
|
716 | + $location_replace_vars['%%location_single%%'] = $location_single; |
|
717 | + $location_replace_vars['%%in_location_single%%'] = $location_single != '' ? sprintf( _x('in %s','in location', 'geodirectory'), $location_single ) : ''; |
|
718 | + |
|
719 | + foreach ($location_names as $type => $name) { |
|
720 | + $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
|
721 | + |
|
722 | + $location_replace_vars['%%location_' . $location_type . '%%'] = $name; |
|
723 | + $location_replace_vars['%%in_location_' . $location_type . '%%'] = !empty($name) ? sprintf( _x('in %s','in location', 'geodirectory'), $name ) : ''; |
|
724 | + } |
|
725 | + |
|
726 | + /** |
|
727 | + * Filter the location terms variables to search & replace. |
|
728 | + * |
|
729 | + * @since 1.6.16 |
|
730 | + * @package GeoDirectory |
|
731 | + * |
|
732 | + * @param array $location_replace_vars The array of search & replace variables. |
|
733 | + * @param array $location_array The array of location variables. |
|
734 | + * @param string $gd_page The page being filtered. |
|
735 | + * @param string $sep The separator. |
|
736 | + */ |
|
737 | + return apply_filters( 'geodir_filter_location_replace_variables', $location_replace_vars, $location_array, $gd_page, $sep ); |
|
738 | 738 | } |
739 | 739 | \ No newline at end of file |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | { |
125 | 125 | global $wpdb; |
126 | 126 | |
127 | - $rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC"); |
|
127 | + $rows = $wpdb->get_results("SELECT Country,ISO2 FROM ".GEODIR_COUNTRIES_TABLE." ORDER BY Country ASC"); |
|
128 | 128 | |
129 | 129 | $ISO2 = array(); |
130 | 130 | $countries = array(); |
@@ -136,11 +136,11 @@ discard block |
||
136 | 136 | |
137 | 137 | asort($countries); |
138 | 138 | |
139 | - $out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>'; |
|
139 | + $out_put = '<option '.selected('', $post_country, false).' value="">'.__('Select Country', 'geodirectory').'</option>'; |
|
140 | 140 | foreach ($countries as $country => $name) { |
141 | 141 | $ccode = $ISO2[$country]; |
142 | 142 | |
143 | - $out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>'; |
|
143 | + $out_put .= '<option '.selected($post_country, $country, false).' value="'.esc_attr($country).'" data-country_code="'.$ccode.'">'.$name.'</option>'; |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | echo $out_put; |
@@ -182,10 +182,10 @@ discard block |
||
182 | 182 | if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') { |
183 | 183 | |
184 | 184 | foreach ($posttype as $posttypeobj) { |
185 | - $post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location |
|
185 | + $post_locations = '['.$default_location->city_slug.'],['.$default_location->region_slug.'],['.$default_location->country_slug.']'; // set all overall post location |
|
186 | 186 | |
187 | 187 | $sql = $wpdb->prepare( |
188 | - "UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)", |
|
188 | + "UPDATE ".$plugin_prefix.$posttypeobj."_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)", |
|
189 | 189 | array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations) |
190 | 190 | ); |
191 | 191 | $wpdb->query($sql); |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | * |
234 | 234 | * @since 1.0.0 |
235 | 235 | */ |
236 | - $geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0, |
|
236 | + $geodir_location = (object) apply_filters('geodir_add_new_location', array('location_id' => 0, |
|
237 | 237 | 'country' => $location_country, |
238 | 238 | 'region' => $location_region, |
239 | 239 | 'city' => $location_city, |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | */ |
295 | 295 | function geodir_get_address_by_lat_lan($lat, $lng) |
296 | 296 | { |
297 | - $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng);// . "&key=" . geodir_get_map_api_key(); // if we add a key here it will not work if limited to a domain as this is done via curl. |
|
297 | + $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng='.trim($lat).','.trim($lng); // . "&key=" . geodir_get_map_api_key(); // if we add a key here it will not work if limited to a domain as this is done via curl. |
|
298 | 298 | |
299 | 299 | $ch = curl_init(); |
300 | 300 | curl_setopt($ch, CURLOPT_URL, $url); |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | * @param string $location_array_from Source type of location terms. Default session. |
390 | 390 | * @param string $gd_post_type WP post type. |
391 | 391 | */ |
392 | - $location_array = apply_filters( 'geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type ); |
|
392 | + $location_array = apply_filters('geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type); |
|
393 | 393 | |
394 | 394 | return $location_array; |
395 | 395 | |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | * @return array|bool Returns address on success. |
435 | 435 | */ |
436 | 436 | function geodir_get_osm_address_by_lat_lan($lat, $lng) { |
437 | - $url = 'https://nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email'); |
|
437 | + $url = 'https://nominatim.openstreetmap.org/reverse?format=json&lat='.trim($lat).'&lon='.trim($lng).'&zoom=16&addressdetails=1&email='.get_option('admin_email'); |
|
438 | 438 | |
439 | 439 | $ch = curl_init(); |
440 | 440 | curl_setopt($ch, CURLOPT_URL, $url); |
@@ -448,9 +448,9 @@ discard block |
||
448 | 448 | |
449 | 449 | if (!empty($data) && !empty($data->address)) { |
450 | 450 | $address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb'); |
451 | - $formatted_address = (array)$data->address; |
|
451 | + $formatted_address = (array) $data->address; |
|
452 | 452 | |
453 | - foreach ( $data->address as $key => $value ) { |
|
453 | + foreach ($data->address as $key => $value) { |
|
454 | 454 | if (!in_array($key, $address_fields)) { |
455 | 455 | unset($formatted_address[$key]); |
456 | 456 | } |
@@ -480,7 +480,7 @@ discard block |
||
480 | 480 | } |
481 | 481 | |
482 | 482 | if (defined('POST_LOCATION_TABLE')) { |
483 | - $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country)); |
|
483 | + $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM ".POST_LOCATION_TABLE." WHERE country NOT LIKE %s ORDER BY location_id ASC", $country)); |
|
484 | 484 | if (!empty($rows)) { |
485 | 485 | foreach ($rows as $row) { |
486 | 486 | $translated = __($row->country, 'geodirectory'); |
@@ -490,7 +490,7 @@ discard block |
||
490 | 490 | } |
491 | 491 | } |
492 | 492 | |
493 | - $rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) ); |
|
493 | + $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM ".POST_LOCATION_TABLE." WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country)); |
|
494 | 494 | if (!empty($rows)) { |
495 | 495 | foreach ($rows as $row) { |
496 | 496 | $translated = __($row->country, 'geodirectory'); |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | } |
502 | 502 | } |
503 | 503 | |
504 | - if ( $default === '0' ) { |
|
504 | + if ($default === '0') { |
|
505 | 505 | return NULL; |
506 | 506 | } |
507 | 507 | |
@@ -532,10 +532,10 @@ discard block |
||
532 | 532 | function geodir_get_country_iso2($country) { |
533 | 533 | global $wpdb; |
534 | 534 | |
535 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) { |
|
535 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", $country))) { |
|
536 | 536 | return $result; |
537 | 537 | } |
538 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) { |
|
538 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", geodir_get_normal_country($country)))) { |
|
539 | 539 | return $result; |
540 | 540 | } |
541 | 541 | |
@@ -554,10 +554,10 @@ discard block |
||
554 | 554 | function geodir_get_country_by_name($country, $iso2 = false) { |
555 | 555 | global $wpdb; |
556 | 556 | |
557 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) { |
|
557 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", $country))) { |
|
558 | 558 | return $result; |
559 | 559 | } |
560 | - if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) { |
|
560 | + if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM ".GEODIR_COUNTRIES_TABLE." WHERE ISO2 LIKE %s", $country))) { |
|
561 | 561 | return $result; |
562 | 562 | } |
563 | 563 | |
@@ -601,7 +601,7 @@ discard block |
||
601 | 601 | add_filter('geodir_replace_location_variables', 'geodir_replace_location_variables'); |
602 | 602 | |
603 | 603 | |
604 | -function geodir_location_replace_vars($location_array = array(), $sep = NULL, $gd_page = ''){ |
|
604 | +function geodir_location_replace_vars($location_array = array(), $sep = NULL, $gd_page = '') { |
|
605 | 605 | |
606 | 606 | global $wp; |
607 | 607 | |
@@ -626,8 +626,8 @@ discard block |
||
626 | 626 | $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
627 | 627 | $location_name = get_actual_location_name($location_type, $location, true); |
628 | 628 | } else { |
629 | - $location_name = preg_replace( '/-(\d+)$/', '', $location_name); |
|
630 | - $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
629 | + $location_name = preg_replace('/-(\d+)$/', '', $location_name); |
|
630 | + $location_name = preg_replace('/[_-]/', ' ', $location_name); |
|
631 | 631 | $location_name = __(geodir_ucwords($location_name), 'geodirectory'); |
632 | 632 | } |
633 | 633 | } |
@@ -645,8 +645,8 @@ discard block |
||
645 | 645 | $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
646 | 646 | $location_single = get_actual_location_name($location_type, $location, true); |
647 | 647 | } else { |
648 | - $location_name = preg_replace( '/-(\d+)$/', '', $location); |
|
649 | - $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
648 | + $location_name = preg_replace('/-(\d+)$/', '', $location); |
|
649 | + $location_name = preg_replace('/[_-]/', ' ', $location_name); |
|
650 | 650 | $location_single = __(geodir_ucwords($location_name), 'geodirectory'); |
651 | 651 | } |
652 | 652 | } |
@@ -666,8 +666,8 @@ discard block |
||
666 | 666 | $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
667 | 667 | $location_name = get_actual_location_name($location_type, $location, true); |
668 | 668 | } else { |
669 | - $location_name = preg_replace( '/-(\d+)$/', '', $location); |
|
670 | - $location_name = preg_replace( '/[_-]/', ' ', $location_name ); |
|
669 | + $location_name = preg_replace('/-(\d+)$/', '', $location); |
|
670 | + $location_name = preg_replace('/[_-]/', ' ', $location_name); |
|
671 | 671 | $location_name = __(geodir_ucwords($location_name), 'geodirectory'); |
672 | 672 | } |
673 | 673 | } |
@@ -679,9 +679,9 @@ discard block |
||
679 | 679 | $full_location = array_unique($full_location); |
680 | 680 | } |
681 | 681 | } |
682 | - $full_location = !empty($full_location) ? implode(', ', $full_location): ''; |
|
682 | + $full_location = !empty($full_location) ? implode(', ', $full_location) : ''; |
|
683 | 683 | |
684 | - if ( empty( $full_location ) ) { |
|
684 | + if (empty($full_location)) { |
|
685 | 685 | /** |
686 | 686 | * Filter the text in meta description in full location is empty. |
687 | 687 | * |
@@ -692,10 +692,10 @@ discard block |
||
692 | 692 | * @param string $gd_page The page being filtered. |
693 | 693 | * @param string $sep The separator. |
694 | 694 | */ |
695 | - $full_location = apply_filters( 'geodir_meta_description_location_empty_text', '', $location_array, $gd_page, $sep ); |
|
695 | + $full_location = apply_filters('geodir_meta_description_location_empty_text', '', $location_array, $gd_page, $sep); |
|
696 | 696 | } |
697 | 697 | |
698 | - if ( empty( $location_single ) ) { |
|
698 | + if (empty($location_single)) { |
|
699 | 699 | /** |
700 | 700 | * Filter the text in meta description in single location is empty. |
701 | 701 | * |
@@ -706,21 +706,21 @@ discard block |
||
706 | 706 | * @param string $gd_page The page being filtered. |
707 | 707 | * @param string $sep The separator. |
708 | 708 | */ |
709 | - $location_single = apply_filters( 'geodir_meta_description_single_location_empty_text', '', $location_array, $gd_page, $sep ); |
|
709 | + $location_single = apply_filters('geodir_meta_description_single_location_empty_text', '', $location_array, $gd_page, $sep); |
|
710 | 710 | } |
711 | 711 | |
712 | 712 | $location_replace_vars = array(); |
713 | 713 | $location_replace_vars['%%location_sep%%'] = $sep !== NULL ? $sep : '|'; |
714 | 714 | $location_replace_vars['%%location%%'] = $full_location; |
715 | - $location_replace_vars['%%in_location%%'] = $full_location != '' ? sprintf( _x('in %s','in location', 'geodirectory'), $full_location ) : ''; |
|
715 | + $location_replace_vars['%%in_location%%'] = $full_location != '' ? sprintf(_x('in %s', 'in location', 'geodirectory'), $full_location) : ''; |
|
716 | 716 | $location_replace_vars['%%location_single%%'] = $location_single; |
717 | - $location_replace_vars['%%in_location_single%%'] = $location_single != '' ? sprintf( _x('in %s','in location', 'geodirectory'), $location_single ) : ''; |
|
717 | + $location_replace_vars['%%in_location_single%%'] = $location_single != '' ? sprintf(_x('in %s', 'in location', 'geodirectory'), $location_single) : ''; |
|
718 | 718 | |
719 | 719 | foreach ($location_names as $type => $name) { |
720 | 720 | $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type; |
721 | 721 | |
722 | - $location_replace_vars['%%location_' . $location_type . '%%'] = $name; |
|
723 | - $location_replace_vars['%%in_location_' . $location_type . '%%'] = !empty($name) ? sprintf( _x('in %s','in location', 'geodirectory'), $name ) : ''; |
|
722 | + $location_replace_vars['%%location_'.$location_type.'%%'] = $name; |
|
723 | + $location_replace_vars['%%in_location_'.$location_type.'%%'] = !empty($name) ? sprintf(_x('in %s', 'in location', 'geodirectory'), $name) : ''; |
|
724 | 724 | } |
725 | 725 | |
726 | 726 | /** |
@@ -734,5 +734,5 @@ discard block |
||
734 | 734 | * @param string $gd_page The page being filtered. |
735 | 735 | * @param string $sep The separator. |
736 | 736 | */ |
737 | - return apply_filters( 'geodir_filter_location_replace_variables', $location_replace_vars, $location_array, $gd_page, $sep ); |
|
737 | + return apply_filters('geodir_filter_location_replace_variables', $location_replace_vars, $location_array, $gd_page, $sep); |
|
738 | 738 | } |
739 | 739 | \ No newline at end of file |
@@ -82,16 +82,16 @@ discard block |
||
82 | 82 | window.gdMaps = window.gdMaps || gdMaps; |
83 | 83 | |
84 | 84 | user_address = false; |
85 | - jQuery('#<?php echo $prefix.'address';?>').keypress(function () { |
|
85 | + jQuery('#<?php echo $prefix.'address'; ?>').keypress(function () { |
|
86 | 86 | user_address = true; |
87 | 87 | }); |
88 | 88 | |
89 | 89 | baseMarker = ''; |
90 | 90 | geocoder = ''; |
91 | - var <?php echo $prefix;?>CITY_MAP_CENTER_LAT = <?php echo ($lat) ? $lat : '39.952484'; ?>; |
|
92 | - var <?php echo $prefix;?>CITY_MAP_CENTER_LNG = <?php echo ($lng) ? $lng : '-75.163786'; ?>; |
|
93 | - <?php if($lat_lng_blank){$lat='';$lng='';}?> |
|
94 | - var <?php echo $prefix;?>CITY_MAP_ZOOMING_FACT = <?php echo ($mapzoom) ? $mapzoom : 12;?>; |
|
91 | + var <?php echo $prefix; ?>CITY_MAP_CENTER_LAT = <?php echo ($lat) ? $lat : '39.952484'; ?>; |
|
92 | + var <?php echo $prefix; ?>CITY_MAP_CENTER_LNG = <?php echo ($lng) ? $lng : '-75.163786'; ?>; |
|
93 | + <?php if ($lat_lng_blank) {$lat = ''; $lng = ''; }?> |
|
94 | + var <?php echo $prefix; ?>CITY_MAP_ZOOMING_FACT = <?php echo ($mapzoom) ? $mapzoom : 12; ?>; |
|
95 | 95 | var minZoomLevel = <?php echo ($is_map_restrict) ? 5 : 0; ?>; |
96 | 96 | var oldstr_address; |
97 | 97 | var oldstr_zip; |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | * |
296 | 296 | * @since 1.6.16 |
297 | 297 | */ |
298 | - echo apply_filters("geodir_geocode_region_level",'["GB","ES"]');?>; |
|
298 | + echo apply_filters("geodir_geocode_region_level", '["GB","ES"]'); ?>; |
|
299 | 299 | if (jQuery.inArray(rr, $country_arr) !== -1) { |
300 | 300 | if (administrative_area_level_2.long_name) { |
301 | 301 | getState = administrative_area_level_2.long_name; |
@@ -404,9 +404,9 @@ discard block |
||
404 | 404 | do_action('geodir_add_listing_geocode_js_vars'); |
405 | 405 | ?> |
406 | 406 | <?php if ($is_map_restrict) { ?> |
407 | - if (getCity.toLowerCase() != '<?php echo geodir_strtolower(addslashes_gpc($city));?>') { |
|
408 | - alert('<?php echo addslashes_gpc(wp_sprintf(__('Please choose any address of the (%s) city only.','geodirectory'), $city));?>'); |
|
409 | - jQuery("#<?php echo $prefix.'map';?>").goMap(); |
|
407 | + if (getCity.toLowerCase() != '<?php echo geodir_strtolower(addslashes_gpc($city)); ?>') { |
|
408 | + alert('<?php echo addslashes_gpc(wp_sprintf(__('Please choose any address of the (%s) city only.', 'geodirectory'), $city)); ?>'); |
|
409 | + jQuery("#<?php echo $prefix.'map'; ?>").goMap(); |
|
410 | 410 | jQuery.goMap.map.setCenter(new google.maps.LatLng('<?php echo $default_lat; ?>', '<?php echo $default_lng; ?>')); |
411 | 411 | baseMarker.setPosition(new google.maps.LatLng('<?php echo $default_lat; ?>', '<?php echo $default_lng; ?>')); |
412 | 412 | updateMarkerPosition(baseMarker.getPosition()); |
@@ -415,11 +415,11 @@ discard block |
||
415 | 415 | <?php } ?> |
416 | 416 | updateMarkerAddress(getAddress, getZip, getCity, getState, getCountry); |
417 | 417 | } else { |
418 | - updateMarkerAddress('<?php echo addslashes_gpc(__('Cannot determine address at this location.','geodirectory'));?>'); |
|
418 | + updateMarkerAddress('<?php echo addslashes_gpc(__('Cannot determine address at this location.', 'geodirectory')); ?>'); |
|
419 | 419 | } |
420 | 420 | } |
421 | 421 | function centerMap(latlng) { |
422 | - jQuery("#<?php echo $prefix.'map';?>").goMap(); |
|
422 | + jQuery("#<?php echo $prefix.'map'; ?>").goMap(); |
|
423 | 423 | if (window.gdMaps == 'google') { |
424 | 424 | jQuery.goMap.map.panTo(baseMarker.getPosition()); |
425 | 425 | } else if (window.gdMaps == 'osm') { |
@@ -428,7 +428,7 @@ discard block |
||
428 | 428 | } |
429 | 429 | } |
430 | 430 | function centerMarker() { |
431 | - jQuery("#<?php echo $prefix.'map';?>").goMap(); |
|
431 | + jQuery("#<?php echo $prefix.'map'; ?>").goMap(); |
|
432 | 432 | var center = jQuery.goMap.map.getCenter(); |
433 | 433 | if (window.gdMaps == 'google') { |
434 | 434 | baseMarker.setPosition(center); |
@@ -437,48 +437,48 @@ discard block |
||
437 | 437 | } |
438 | 438 | } |
439 | 439 | function updateMapZoom(zoom) { |
440 | - jQuery('#<?php echo $prefix.'mapzoom';?>').val(zoom); |
|
440 | + jQuery('#<?php echo $prefix.'mapzoom'; ?>').val(zoom); |
|
441 | 441 | } |
442 | 442 | function updateMarkerPosition(markerlatLng) { |
443 | - jQuery("#<?php echo $prefix.'map';?>").goMap(); |
|
444 | - jQuery('#<?php echo $prefix.'latitude';?>').val(markerlatLng.lat()); |
|
445 | - jQuery('#<?php echo $prefix.'longitude';?>').val(markerlatLng.lng()); |
|
443 | + jQuery("#<?php echo $prefix.'map'; ?>").goMap(); |
|
444 | + jQuery('#<?php echo $prefix.'latitude'; ?>').val(markerlatLng.lat()); |
|
445 | + jQuery('#<?php echo $prefix.'longitude'; ?>').val(markerlatLng.lng()); |
|
446 | 446 | } |
447 | 447 | function updateMarkerPositionOSM(markerlatLng) { |
448 | - jQuery('#<?php echo $prefix.'latitude';?>').val(markerlatLng.lat); |
|
449 | - jQuery('#<?php echo $prefix.'longitude';?>').val(markerlatLng.lng); |
|
448 | + jQuery('#<?php echo $prefix.'latitude'; ?>').val(markerlatLng.lat); |
|
449 | + jQuery('#<?php echo $prefix.'longitude'; ?>').val(markerlatLng.lng); |
|
450 | 450 | } |
451 | 451 | function updateMarkerAddress(getAddress, getZip, getCity, getState, getCountry) { |
452 | - var set_map_val_in_fields = '<?php echo addslashes_gpc($auto_change_map_fields);?>'; |
|
453 | - <?php ob_start();?> |
|
454 | - var old_country = jQuery("#<?php echo $prefix.'country';?>").val(); |
|
455 | - var old_region = jQuery("#<?php echo $prefix.'region';?>").val(); |
|
452 | + var set_map_val_in_fields = '<?php echo addslashes_gpc($auto_change_map_fields); ?>'; |
|
453 | + <?php ob_start(); ?> |
|
454 | + var old_country = jQuery("#<?php echo $prefix.'country'; ?>").val(); |
|
455 | + var old_region = jQuery("#<?php echo $prefix.'region'; ?>").val(); |
|
456 | 456 | |
457 | - if (user_address == false || jQuery('#<?php echo $prefix.'address';?>').val() == '') { |
|
458 | - jQuery("#<?php echo $prefix.'address';?>").val(getAddress).trigger("blur"); |
|
457 | + if (user_address == false || jQuery('#<?php echo $prefix.'address'; ?>').val() == '') { |
|
458 | + jQuery("#<?php echo $prefix.'address'; ?>").val(getAddress).trigger("blur"); |
|
459 | 459 | } |
460 | 460 | if (getAddress) { |
461 | 461 | oldstr_address = getAddress; |
462 | 462 | } |
463 | 463 | |
464 | - jQuery("#<?php echo $prefix.'zip';?>").val(getZip); |
|
464 | + jQuery("#<?php echo $prefix.'zip'; ?>").val(getZip); |
|
465 | 465 | if (getZip) { |
466 | 466 | oldstr_zip = getZip; |
467 | 467 | } |
468 | 468 | if (set_map_val_in_fields) { |
469 | 469 | if (getCountry) { |
470 | - jQuery('#<?php echo $prefix .'country'; ?> option[value=""]').attr("selected",false); |
|
471 | - jQuery('#<?php echo $prefix.'country';?> option[data-country_code="' + getCountryISO + '"]').attr("selected", true); |
|
472 | - jQuery("#<?php echo $prefix.'country';?>").trigger("chosen:updated"); |
|
470 | + jQuery('#<?php echo $prefix.'country'; ?> option[value=""]').attr("selected",false); |
|
471 | + jQuery('#<?php echo $prefix.'country'; ?> option[data-country_code="' + getCountryISO + '"]').attr("selected", true); |
|
472 | + jQuery("#<?php echo $prefix.'country'; ?>").trigger("chosen:updated"); |
|
473 | 473 | } |
474 | 474 | if (getState) { |
475 | - if (jQuery('input[id="<?php echo $prefix.'region';?>"]').attr('id')) { |
|
476 | - jQuery("#<?php echo $prefix.'region';?>").val(getState); |
|
475 | + if (jQuery('input[id="<?php echo $prefix.'region'; ?>"]').attr('id')) { |
|
476 | + jQuery("#<?php echo $prefix.'region'; ?>").val(getState); |
|
477 | 477 | } |
478 | 478 | } |
479 | 479 | if (getCity) { |
480 | - if (jQuery('input[id="<?php echo $prefix.'city';?>"]').attr('id')) { |
|
481 | - jQuery("#<?php echo $prefix.'city';?>").val(getCity); |
|
480 | + if (jQuery('input[id="<?php echo $prefix.'city'; ?>"]').attr('id')) { |
|
481 | + jQuery("#<?php echo $prefix.'city'; ?>").val(getCity); |
|
482 | 482 | } |
483 | 483 | } |
484 | 484 | } |
@@ -494,23 +494,23 @@ discard block |
||
494 | 494 | ?> |
495 | 495 | } |
496 | 496 | function geodir_codeAddress(set_on_map) { |
497 | - var address = jQuery('#<?php echo $prefix.'address';?>').val(); |
|
498 | - var zip = jQuery('#<?php echo $prefix.'zip';?>').val(); |
|
499 | - var city = jQuery('#<?php echo $prefix.'city';?>').val(); |
|
500 | - var region = jQuery('#<?php echo $prefix.'region';?>').val(); |
|
501 | - var country = jQuery('#<?php echo $prefix.'country';?>').val(); |
|
502 | - var country_selected = jQuery('#<?php echo $prefix.'country';?>').find('option:selected'); |
|
497 | + var address = jQuery('#<?php echo $prefix.'address'; ?>').val(); |
|
498 | + var zip = jQuery('#<?php echo $prefix.'zip'; ?>').val(); |
|
499 | + var city = jQuery('#<?php echo $prefix.'city'; ?>').val(); |
|
500 | + var region = jQuery('#<?php echo $prefix.'region'; ?>').val(); |
|
501 | + var country = jQuery('#<?php echo $prefix.'country'; ?>').val(); |
|
502 | + var country_selected = jQuery('#<?php echo $prefix.'country'; ?>').find('option:selected'); |
|
503 | 503 | var ISO2 = country_selected.data('country_code'); |
504 | - if (!ISO2 && jQuery('#<?php echo $prefix.'country';?>').data('country_code')) { |
|
505 | - ISO2 = jQuery('#<?php echo $prefix.'country';?>').data('country_code'); |
|
504 | + if (!ISO2 && jQuery('#<?php echo $prefix.'country'; ?>').data('country_code')) { |
|
505 | + ISO2 = jQuery('#<?php echo $prefix.'country'; ?>').data('country_code'); |
|
506 | 506 | } |
507 | 507 | if(!ISO2){ |
508 | 508 | <?php |
509 | - if(!defined('GEODIRLOCATION_TEXTDOMAIN')){ |
|
509 | + if (!defined('GEODIRLOCATION_TEXTDOMAIN')) { |
|
510 | 510 | global $wpdb; |
511 | 511 | $location_result = geodir_get_default_location(); |
512 | - if(!empty($location_result)){ |
|
513 | - $ISO2 = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country=%s",$location_result->country)); |
|
512 | + if (!empty($location_result)) { |
|
513 | + $ISO2 = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country=%s", $location_result->country)); |
|
514 | 514 | echo "ISO2 = '$ISO2';"; |
515 | 515 | } |
516 | 516 | } |
@@ -526,13 +526,13 @@ discard block |
||
526 | 526 | zip = ''; |
527 | 527 | } |
528 | 528 | if (typeof city == "undefined") { |
529 | - city = '<?php echo addslashes_gpc($city);?>'; |
|
529 | + city = '<?php echo addslashes_gpc($city); ?>'; |
|
530 | 530 | } |
531 | 531 | if (typeof region == "undefined") { |
532 | - region = '<?php echo addslashes_gpc($region);?>'; |
|
532 | + region = '<?php echo addslashes_gpc($region); ?>'; |
|
533 | 533 | } |
534 | 534 | if (typeof country == "undefined") { |
535 | - country = '<?php echo addslashes_gpc($country);?>'; |
|
535 | + country = '<?php echo addslashes_gpc($country); ?>'; |
|
536 | 536 | } |
537 | 537 | var is_restrict = '<?php echo $is_map_restrict; ?>'; |
538 | 538 | <?php ob_start(); |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | if( address == city || address == region || address == country || address == zip ) |
551 | 551 | address = ''; |
552 | 552 | <?php |
553 | - if(is_admin() && isset($_REQUEST['tab'])){?> |
|
553 | + if (is_admin() && isset($_REQUEST['tab'])) {?> |
|
554 | 554 | if (jQuery.trim(city) == '' || jQuery.trim(region) == '') { |
555 | 555 | address = ''; |
556 | 556 | } |
@@ -607,7 +607,7 @@ discard block |
||
607 | 607 | geocoder.geocode({'address': address, 'country': ISO2}, |
608 | 608 | function (results, status) { |
609 | 609 | console.log(status); |
610 | - jQuery("#<?php echo $prefix.'map';?>").goMap(); |
|
610 | + jQuery("#<?php echo $prefix.'map'; ?>").goMap(); |
|
611 | 611 | if (status == google.maps.GeocoderStatus.OK) { |
612 | 612 | baseMarker.setPosition(results[0].geometry.location); |
613 | 613 | jQuery.goMap.map.setCenter(results[0].geometry.location); |
@@ -624,21 +624,21 @@ discard block |
||
624 | 624 | geocodePosition(baseMarker.getPosition(), {'address': address, 'country': ISO2}); |
625 | 625 | //} |
626 | 626 | } else { |
627 | - alert('<?php echo addslashes_gpc(__('Geocode was not successful for the following reason:','geodirectory'));?> ' + status); |
|
627 | + alert('<?php echo addslashes_gpc(__('Geocode was not successful for the following reason:', 'geodirectory')); ?> ' + status); |
|
628 | 628 | } |
629 | 629 | }); |
630 | 630 | } |
631 | 631 | } |
632 | 632 | function gdMaxMap() { |
633 | - jQuery("#<?php echo $prefix.'map';?>").goMap(); |
|
633 | + jQuery("#<?php echo $prefix.'map'; ?>").goMap(); |
|
634 | 634 | |
635 | - jQuery('#<?php echo $prefix.'map';?>').toggleClass('map-fullscreen'); |
|
635 | + jQuery('#<?php echo $prefix.'map'; ?>').toggleClass('map-fullscreen'); |
|
636 | 636 | jQuery('.map_category').toggleClass('map_category_fullscreen'); |
637 | - jQuery('#<?php echo $prefix;?>trigger').toggleClass('map_category_fullscreen'); |
|
637 | + jQuery('#<?php echo $prefix; ?>trigger').toggleClass('map_category_fullscreen'); |
|
638 | 638 | jQuery('body').toggleClass('body_fullscreen'); |
639 | - jQuery('#<?php echo $prefix;?>loading_div').toggleClass('loading_div_fullscreen'); |
|
640 | - jQuery('#<?php echo $prefix;?>advmap_nofound').toggleClass('nofound_fullscreen'); |
|
641 | - jQuery('#<?php echo $prefix;?>triggermap').toggleClass('triggermap_fullscreen'); |
|
639 | + jQuery('#<?php echo $prefix; ?>loading_div').toggleClass('loading_div_fullscreen'); |
|
640 | + jQuery('#<?php echo $prefix; ?>advmap_nofound').toggleClass('nofound_fullscreen'); |
|
641 | + jQuery('#<?php echo $prefix; ?>triggermap').toggleClass('triggermap_fullscreen'); |
|
642 | 642 | jQuery('.TopLeft').toggleClass('TopLeft_fullscreen'); |
643 | 643 | window.setTimeout(function () { |
644 | 644 | if (window.gdMaps == 'google') { |
@@ -674,9 +674,9 @@ discard block |
||
674 | 674 | do_action('geodir_add_listing_geocode_js_vars'); |
675 | 675 | ?> |
676 | 676 | <?php if ($is_map_restrict) { ?> |
677 | - if (getCity.toLowerCase() != '<?php echo geodir_strtolower(addslashes_gpc($city));?>') { |
|
678 | - alert('<?php echo addslashes_gpc(wp_sprintf(__('Please choose any address of the (%s) city only.','geodirectory'), $city));?>'); |
|
679 | - jQuery("#<?php echo $prefix.'map';?>").goMap(); |
|
677 | + if (getCity.toLowerCase() != '<?php echo geodir_strtolower(addslashes_gpc($city)); ?>') { |
|
678 | + alert('<?php echo addslashes_gpc(wp_sprintf(__('Please choose any address of the (%s) city only.', 'geodirectory'), $city)); ?>'); |
|
679 | + jQuery("#<?php echo $prefix.'map'; ?>").goMap(); |
|
680 | 680 | centerMap(new L.latLng('<?php echo $default_lat; ?>', '<?php echo $default_lng; ?>')); |
681 | 681 | baseMarker.setLatLng(new L.latLng('<?php echo $default_lat; ?>', '<?php echo $default_lng; ?>')); |
682 | 682 | updateMarkerPositionOSM(baseMarker.getLatLng()); |
@@ -685,39 +685,39 @@ discard block |
||
685 | 685 | <?php } ?> |
686 | 686 | updateMarkerAddress(getAddress, getZip, getCity, getState, getCountry); |
687 | 687 | } else { |
688 | - alert('<?php echo addslashes_gpc(__('Cannot determine address at this location.','geodirectory'));?>'); |
|
688 | + alert('<?php echo addslashes_gpc(__('Cannot determine address at this location.', 'geodirectory')); ?>'); |
|
689 | 689 | } |
690 | 690 | } |
691 | 691 | |
692 | 692 | jQuery(function ($) { |
693 | - $("#<?php echo $prefix.'map';?>").goMap({ |
|
694 | - latitude: <?php echo $prefix;?>CITY_MAP_CENTER_LAT, |
|
695 | - longitude: <?php echo $prefix;?>CITY_MAP_CENTER_LNG, |
|
696 | - zoom: <?php echo $prefix;?>CITY_MAP_ZOOMING_FACT, |
|
693 | + $("#<?php echo $prefix.'map'; ?>").goMap({ |
|
694 | + latitude: <?php echo $prefix; ?>CITY_MAP_CENTER_LAT, |
|
695 | + longitude: <?php echo $prefix; ?>CITY_MAP_CENTER_LNG, |
|
696 | + zoom: <?php echo $prefix; ?>CITY_MAP_ZOOMING_FACT, |
|
697 | 697 | maptype: 'ROADMAP', // Map type - HYBRID, ROADMAP, SATELLITE, TERRAIN |
698 | 698 | streetViewControl: true, |
699 | - <?php if(get_option('geodir_add_listing_mouse_scroll')) { echo 'scrollwheel: false,';}?> |
|
699 | + <?php if (get_option('geodir_add_listing_mouse_scroll')) { echo 'scrollwheel: false,'; }?> |
|
700 | 700 | }); |
701 | 701 | |
702 | 702 | if (window.gdMaps) { |
703 | 703 | geocoder = window.gdMaps == 'google' ? new google.maps.Geocoder() : []; |
704 | 704 | |
705 | 705 | baseMarker = $.goMap.createMarker({ |
706 | - latitude: <?php echo $prefix;?>CITY_MAP_CENTER_LAT, |
|
707 | - longitude: <?php echo $prefix;?>CITY_MAP_CENTER_LNG, |
|
706 | + latitude: <?php echo $prefix; ?>CITY_MAP_CENTER_LAT, |
|
707 | + longitude: <?php echo $prefix; ?>CITY_MAP_CENTER_LNG, |
|
708 | 708 | id: 'baseMarker', |
709 | - icon: '<?php echo $marker_icon;?>', |
|
709 | + icon: '<?php echo $marker_icon; ?>', |
|
710 | 710 | draggable: true, |
711 | 711 | addToMap: true, // For OSM |
712 | - w: parseFloat('<?php echo $icon_size['w'];?>'), |
|
713 | - h: parseFloat('<?php echo $icon_size['h'];?>'), |
|
712 | + w: parseFloat('<?php echo $icon_size['w']; ?>'), |
|
713 | + h: parseFloat('<?php echo $icon_size['h']; ?>'), |
|
714 | 714 | }); |
715 | 715 | } else { |
716 | - jQuery('#<?php echo $prefix.'advmap_nofound';?>').hide(); |
|
717 | - jQuery('#<?php echo $prefix.'advmap_notloaded';?>').show(); |
|
716 | + jQuery('#<?php echo $prefix.'advmap_nofound'; ?>').hide(); |
|
717 | + jQuery('#<?php echo $prefix.'advmap_notloaded'; ?>').show(); |
|
718 | 718 | } |
719 | 719 | |
720 | - $("#<?php echo $prefix;?>set_address_button").click(function () { |
|
720 | + $("#<?php echo $prefix; ?>set_address_button").click(function () { |
|
721 | 721 | var set_on_map = true; |
722 | 722 | geodir_codeAddress(set_on_map); |
723 | 723 | }); |
@@ -752,14 +752,14 @@ discard block |
||
752 | 752 | updateMapZoom($.goMap.map.zoom); |
753 | 753 | }); |
754 | 754 | |
755 | - var maxMap = document.getElementById('<?php echo $prefix;?>triggermap'); |
|
755 | + var maxMap = document.getElementById('<?php echo $prefix; ?>triggermap'); |
|
756 | 756 | google.maps.event.addDomListener(maxMap, 'click', gdMaxMap); |
757 | 757 | |
758 | 758 | <?php if ($is_map_restrict) { ?> |
759 | - var CITY_ADDRESS = '<?php echo addslashes_gpc($city).','.addslashes_gpc($region).','.addslashes_gpc($country);?>'; |
|
759 | + var CITY_ADDRESS = '<?php echo addslashes_gpc($city).','.addslashes_gpc($region).','.addslashes_gpc($country); ?>'; |
|
760 | 760 | geocoder.geocode({'address': CITY_ADDRESS}, |
761 | 761 | function (results, status) { |
762 | - $("#<?php echo $prefix.'map';?>").goMap(); |
|
762 | + $("#<?php echo $prefix.'map'; ?>").goMap(); |
|
763 | 763 | if (status == google.maps.GeocoderStatus.OK) { |
764 | 764 | // Bounds for North America |
765 | 765 | var bound_lat_lng = String(results[0].geometry.bounds); |
@@ -770,13 +770,13 @@ discard block |
||
770 | 770 | new google.maps.LatLng(bound_lat_lng[2], bound_lat_lng[3]) |
771 | 771 | ); |
772 | 772 | } else { |
773 | - alert("<?php _e('Geocode was not successful for the following reason:','geodirectory');?> " + status); |
|
773 | + alert("<?php _e('Geocode was not successful for the following reason:', 'geodirectory'); ?> " + status); |
|
774 | 774 | } |
775 | 775 | }); |
776 | 776 | <?php } ?> |
777 | 777 | // Limit the zoom level |
778 | 778 | google.maps.event.addListener($.goMap.map, 'zoom_changed', function () { |
779 | - $("#<?php echo $prefix.'map';?>").goMap(); |
|
779 | + $("#<?php echo $prefix.'map'; ?>").goMap(); |
|
780 | 780 | if ($.goMap.map.getZoom() < minZoomLevel) $.goMap.map.setZoom(minZoomLevel); |
781 | 781 | }); |
782 | 782 | } else if (window.gdMaps == 'osm') { |
@@ -802,10 +802,10 @@ discard block |
||
802 | 802 | updateMapZoom($.goMap.map.getZoom()); |
803 | 803 | }); |
804 | 804 | |
805 | - L.DomEvent.addListener($('<?php echo $prefix;?>triggermap'), 'click', gdMaxMap); |
|
805 | + L.DomEvent.addListener($('<?php echo $prefix; ?>triggermap'), 'click', gdMaxMap); |
|
806 | 806 | |
807 | 807 | <?php if ($is_map_restrict) { ?> |
808 | - var CITY_ADDRESS = '<?php echo addslashes_gpc($city).', '.addslashes_gpc($region).', '.addslashes_gpc($country);?>'; |
|
808 | + var CITY_ADDRESS = '<?php echo addslashes_gpc($city).', '.addslashes_gpc($region).', '.addslashes_gpc($country); ?>'; |
|
809 | 809 | //geocodePositionOSM('', CITY_ADDRESS); |
810 | 810 | <?php } ?> |
811 | 811 | // Limit the zoom level |
@@ -828,14 +828,14 @@ discard block |
||
828 | 828 | <div class="top_banner_section_inn geodir_map_container clearfix" style="margin-top:10px;"> |
829 | 829 | <div class="TopLeft"><span id="<?php echo $prefix; ?>triggermap" style="margin-top:-11px;margin-left:-12px;"></span></div> |
830 | 830 | <div class="TopRight"></div> |
831 | - <div id="<?php echo $prefix . 'map'; ?>" class="geodir_map" style="height:300px"> |
|
831 | + <div id="<?php echo $prefix.'map'; ?>" class="geodir_map" style="height:300px"> |
|
832 | 832 | <!-- new map start --> |
833 | 833 | <div class="iprelative"> |
834 | - <div id="<?php echo $prefix . 'map'; ?>" style="float:right;height:300px;position:relative;" class="form_row clearfix"></div> |
|
834 | + <div id="<?php echo $prefix.'map'; ?>" style="float:right;height:300px;position:relative;" class="form_row clearfix"></div> |
|
835 | 835 | <div id="<?php echo $prefix; ?>loading_div" style="height:300px"></div> |
836 | 836 | <div id="<?php echo $prefix; ?>advmap_counter"></div> |
837 | 837 | <div id="<?php echo $prefix; ?>advmap_nofound"><?php echo MAP_NO_RESULTS; ?></div> |
838 | - <div id="<?php echo $prefix;?>advmap_notloaded" class="advmap_notloaded"><?php _e('<h3>Map Not Loaded</h3><p>Sorry, unable to load Maps API.', 'geodirectory'); ?></div> |
|
838 | + <div id="<?php echo $prefix; ?>advmap_notloaded" class="advmap_notloaded"><?php _e('<h3>Map Not Loaded</h3><p>Sorry, unable to load Maps API.', 'geodirectory'); ?></div> |
|
839 | 839 | </div> |
840 | 840 | <!-- new map end --> |
841 | 841 | </div> |