@@ -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 ( mb_strlen( $excerpt ) > $charlength ) {
|
|
| 107 | - if ( mb_strlen( $excerpt_more ) > 0 && mb_strpos( $excerpt, $excerpt_more ) !== false ) {
|
|
| 108 | - $excut = - ( mb_strlen( $excerpt_more ) ); |
|
| 109 | - $subex = mb_substr( $excerpt, 0, $excut ); |
|
| 110 | - if ( $charlength > 0 && mb_strlen( $subex ) > $charlength ) {
|
|
| 111 | - $subex = mb_substr( $subex, 0, $charlength ); |
|
| 104 | + $charlength++; |
|
| 105 | + $excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
|
|
| 106 | + if (mb_strlen($excerpt) > $charlength) {
|
|
| 107 | + if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
|
|
| 108 | + $excut = - (mb_strlen($excerpt_more)); |
|
| 109 | + $subex = mb_substr($excerpt, 0, $excut); |
|
| 110 | + if ($charlength > 0 && mb_strlen($subex) > $charlength) {
|
|
| 111 | + $subex = mb_substr($subex, 0, $charlength); |
|
| 112 | 112 | } |
| 113 | 113 | $out .= $subex; |
| 114 | 114 | } else {
|
| 115 | - $subex = mb_substr( $excerpt, 0, $charlength - 5 ); |
|
| 116 | - $exwords = explode( ' ', $subex ); |
|
| 117 | - $excut = - ( mb_strlen( $exwords[ count( $exwords ) - 1 ] ) ); |
|
| 118 | - if ( $excut < 0 ) {
|
|
| 119 | - $out .= mb_substr( $subex, 0, $excut ); |
|
| 115 | + $subex = mb_substr($excerpt, 0, $charlength - 5); |
|
| 116 | + $exwords = explode(' ', $subex);
|
|
| 117 | + $excut = - (mb_strlen($exwords[count($exwords) - 1])); |
|
| 118 | + if ($excut < 0) {
|
|
| 119 | + $out .= mb_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 ( mb_strlen( $excerpt_more ) > 0 && mb_strpos( $excerpt, $excerpt_more ) !== false ) {
|
|
| 135 | - $excut = - ( mb_strlen( $excerpt_more ) ); |
|
| 136 | - $out .= mb_substr( $excerpt, 0, $excut ); |
|
| 137 | - $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
| 134 | + if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
|
|
| 135 | + $excut = - (mb_strlen($excerpt_more)); |
|
| 136 | + $out .= mb_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 = $request['inq_name']; |
| 230 | 230 | $youremail = $request['inq_email']; |
@@ -235,26 +235,26 @@ discard block |
||
| 235 | 235 | $author_id = ''; |
| 236 | 236 | $post_title = ''; |
| 237 | 237 | |
| 238 | - if ( $request['pid'] ) {
|
|
| 238 | + if ($request['pid']) {
|
|
| 239 | 239 | |
| 240 | 240 | $productinfosql = $wpdb->prepare( |
| 241 | 241 | "select ID,post_author,post_title from $wpdb->posts where ID =%d", |
| 242 | - array( $request['pid'] ) |
|
| 242 | + array($request['pid']) |
|
| 243 | 243 | ); |
| 244 | - $productinfo = $wpdb->get_row( $productinfosql ); |
|
| 244 | + $productinfo = $wpdb->get_row($productinfosql); |
|
| 245 | 245 | |
| 246 | 246 | $author_id = $productinfo->post_author; |
| 247 | 247 | $post_title = $productinfo->post_title; |
| 248 | 248 | } |
| 249 | 249 | |
| 250 | - $post_title = '<a href="' . get_permalink( $pid ) . '">' . $post_title . '</a>'; |
|
| 250 | + $post_title = '<a href="'.get_permalink($pid).'">'.$post_title.'</a>'; |
|
| 251 | 251 | |
| 252 | - $user_info = get_userdata( $author_id ); |
|
| 253 | - $to_email = geodir_get_post_meta( $pid, 'geodir_email', true ); |
|
| 254 | - $to_name = geodir_get_client_name( $author_id ); |
|
| 252 | + $user_info = get_userdata($author_id); |
|
| 253 | + $to_email = geodir_get_post_meta($pid, 'geodir_email', true); |
|
| 254 | + $to_name = geodir_get_client_name($author_id); |
|
| 255 | 255 | |
| 256 | - if ( $to_email == '' ) {
|
|
| 257 | - $to_email = get_option( 'admin_email' ); |
|
| 256 | + if ($to_email == '') {
|
|
| 257 | + $to_email = get_option('admin_email');
|
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | /** |
@@ -275,10 +275,10 @@ discard block |
||
| 275 | 275 | * } |
| 276 | 276 | * @param string $type The form type, default: `Enquiry`. |
| 277 | 277 | */ |
| 278 | - do_action( 'geodir_after_send_enquiry', $request, 'Enquiry' ); |
|
| 278 | + do_action('geodir_after_send_enquiry', $request, 'Enquiry');
|
|
| 279 | 279 | |
| 280 | 280 | $client_message = $frnd_comments; |
| 281 | - $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>.'; |
|
| 281 | + $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>.';
|
|
| 282 | 282 | /** |
| 283 | 283 | * Filter client message text. |
| 284 | 284 | * |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | * |
| 287 | 287 | * @param string $client_message Client message text. |
| 288 | 288 | */ |
| 289 | - $client_message = apply_filters( 'geodir_inquiry_email_msg', $client_message ); |
|
| 289 | + $client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
|
|
| 290 | 290 | |
| 291 | 291 | /** |
| 292 | 292 | * Called before the send enquiry email is sent. |
@@ -305,12 +305,12 @@ discard block |
||
| 305 | 305 | * |
| 306 | 306 | * } |
| 307 | 307 | */ |
| 308 | - do_action( 'geodir_before_send_enquiry_email', $request ); |
|
| 309 | - if ( $to_email ) {
|
|
| 308 | + do_action('geodir_before_send_enquiry_email', $request);
|
|
| 309 | + if ($to_email) {
|
|
| 310 | 310 | // strip slashes message |
| 311 | - $client_message = stripslashes_deep( $client_message ); |
|
| 311 | + $client_message = stripslashes_deep($client_message); |
|
| 312 | 312 | |
| 313 | - geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid'] );//To client email |
|
| 313 | + geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']); //To client email |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | /** |
@@ -330,12 +330,12 @@ discard block |
||
| 330 | 330 | * |
| 331 | 331 | * } |
| 332 | 332 | */ |
| 333 | - do_action( 'geodir_after_send_enquiry_email', $request ); |
|
| 334 | - $url = get_permalink( $pid ); |
|
| 335 | - if ( strstr( $url, '?' ) ) {
|
|
| 336 | - $url = $url . "&send_inquiry=success"; |
|
| 333 | + do_action('geodir_after_send_enquiry_email', $request);
|
|
| 334 | + $url = get_permalink($pid); |
|
| 335 | + if (strstr($url, '?')) {
|
|
| 336 | + $url = $url."&send_inquiry=success"; |
|
| 337 | 337 | } else {
|
| 338 | - $url = $url . "?send_inquiry=success"; |
|
| 338 | + $url = $url."?send_inquiry=success"; |
|
| 339 | 339 | } |
| 340 | 340 | /** |
| 341 | 341 | * Filter redirect url after the send enquiry email is sent. |
@@ -344,8 +344,8 @@ discard block |
||
| 344 | 344 | * |
| 345 | 345 | * @param string $url Redirect url. |
| 346 | 346 | */ |
| 347 | - $url = apply_filters( 'geodir_send_enquiry_after_submit_redirect', $url ); |
|
| 348 | - wp_redirect( $url ); |
|
| 347 | + $url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
|
|
| 348 | + wp_redirect($url); |
|
| 349 | 349 | gd_die(); |
| 350 | 350 | |
| 351 | 351 | } |
@@ -374,11 +374,11 @@ discard block |
||
| 374 | 374 | * } |
| 375 | 375 | * @global object $wpdb WordPress Database object. |
| 376 | 376 | */ |
| 377 | -function geodir_send_friend( $request ) {
|
|
| 377 | +function geodir_send_friend($request) {
|
|
| 378 | 378 | global $wpdb; |
| 379 | 379 | |
| 380 | 380 | // strip slashes from text |
| 381 | - $request = ! empty( $request ) ? stripslashes_deep( $request ) : $request; |
|
| 381 | + $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
| 382 | 382 | |
| 383 | 383 | $yourname = $request['yourname']; |
| 384 | 384 | $youremail = $request['youremail']; |
@@ -387,13 +387,13 @@ discard block |
||
| 387 | 387 | $pid = $request['pid']; |
| 388 | 388 | $to_email = $request['to_email']; |
| 389 | 389 | $to_name = $request['to_name']; |
| 390 | - if ( $request['pid'] ) {
|
|
| 390 | + if ($request['pid']) {
|
|
| 391 | 391 | $productinfosql = $wpdb->prepare( |
| 392 | 392 | "select ID,post_title from $wpdb->posts where ID =%d", |
| 393 | - array( $request['pid'] ) |
|
| 393 | + array($request['pid']) |
|
| 394 | 394 | ); |
| 395 | - $productinfo = $wpdb->get_results( $productinfosql ); |
|
| 396 | - foreach ( $productinfo as $productinfoObj ) {
|
|
| 395 | + $productinfo = $wpdb->get_results($productinfosql); |
|
| 396 | + foreach ($productinfo as $productinfoObj) {
|
|
| 397 | 397 | $post_title = $productinfoObj->post_title; |
| 398 | 398 | } |
| 399 | 399 | } |
@@ -417,8 +417,8 @@ discard block |
||
| 417 | 417 | * |
| 418 | 418 | * } |
| 419 | 419 | */ |
| 420 | - do_action( 'geodir_before_send_to_friend_email', $request ); |
|
| 421 | - geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid'] );//To client email |
|
| 420 | + do_action('geodir_before_send_to_friend_email', $request);
|
|
| 421 | + geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']); //To client email |
|
| 422 | 422 | |
| 423 | 423 | /** |
| 424 | 424 | * Called after the send to friend email is sent. |
@@ -439,13 +439,13 @@ discard block |
||
| 439 | 439 | * |
| 440 | 440 | * } |
| 441 | 441 | */ |
| 442 | - do_action( 'geodir_after_send_to_friend_email', $request ); |
|
| 442 | + do_action('geodir_after_send_to_friend_email', $request);
|
|
| 443 | 443 | |
| 444 | - $url = get_permalink( $pid ); |
|
| 445 | - if ( strstr( $url, '?' ) ) {
|
|
| 446 | - $url = $url . "&sendtofrnd=success"; |
|
| 444 | + $url = get_permalink($pid); |
|
| 445 | + if (strstr($url, '?')) {
|
|
| 446 | + $url = $url."&sendtofrnd=success"; |
|
| 447 | 447 | } else {
|
| 448 | - $url = $url . "?sendtofrnd=success"; |
|
| 448 | + $url = $url."?sendtofrnd=success"; |
|
| 449 | 449 | } |
| 450 | 450 | /** |
| 451 | 451 | * Filter redirect url after the send to friend email is sent. |
@@ -454,8 +454,8 @@ discard block |
||
| 454 | 454 | * |
| 455 | 455 | * @param string $url Redirect url. |
| 456 | 456 | */ |
| 457 | - $url = apply_filters( 'geodir_send_to_friend_after_submit_redirect', $url ); |
|
| 458 | - wp_redirect( $url ); |
|
| 457 | + $url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
|
|
| 458 | + wp_redirect($url); |
|
| 459 | 459 | gd_die(); |
| 460 | 460 | } |
| 461 | 461 | |
@@ -469,8 +469,8 @@ discard block |
||
| 469 | 469 | * |
| 470 | 470 | * @param string $hash_key |
| 471 | 471 | */ |
| 472 | -function geodir_before_tab_content( $hash_key ) {
|
|
| 473 | - switch ( $hash_key ) {
|
|
| 472 | +function geodir_before_tab_content($hash_key) {
|
|
| 473 | + switch ($hash_key) {
|
|
| 474 | 474 | case 'post_info' : |
| 475 | 475 | echo '<div class="geodir-company_info field-group">'; |
| 476 | 476 | break; |
@@ -480,7 +480,7 @@ discard block |
||
| 480 | 480 | * |
| 481 | 481 | * @since 1.0.0 |
| 482 | 482 | */ |
| 483 | - echo ' <div id="' . apply_filters( 'geodir_post_gallery_id', 'geodir-post-gallery' ) . '" class="clearfix" >'; |
|
| 483 | + echo ' <div id="'.apply_filters('geodir_post_gallery_id', 'geodir-post-gallery').'" class="clearfix" >';
|
|
| 484 | 484 | break; |
| 485 | 485 | case 'reviews' : |
| 486 | 486 | echo '<div id="reviews-wrap" class="clearfix"> '; |
@@ -504,8 +504,8 @@ discard block |
||
| 504 | 504 | * |
| 505 | 505 | * @param string $hash_key |
| 506 | 506 | */ |
| 507 | -function geodir_after_tab_content( $hash_key ) {
|
|
| 508 | - switch ( $hash_key ) {
|
|
| 507 | +function geodir_after_tab_content($hash_key) {
|
|
| 508 | + switch ($hash_key) {
|
|
| 509 | 509 | case 'post_info' : |
| 510 | 510 | echo '</div>'; |
| 511 | 511 | break; |
@@ -536,25 +536,25 @@ discard block |
||
| 536 | 536 | * @global object $wpdb WordPress Database object. |
| 537 | 537 | * @return bool|null|string Returns default sort results, when the post type is valid. Otherwise returns false. |
| 538 | 538 | */ |
| 539 | -function geodir_get_posts_default_sort( $post_type ) {
|
|
| 539 | +function geodir_get_posts_default_sort($post_type) {
|
|
| 540 | 540 | |
| 541 | 541 | global $wpdb; |
| 542 | 542 | |
| 543 | - if ( $post_type != '' ) {
|
|
| 543 | + if ($post_type != '') {
|
|
| 544 | 544 | |
| 545 | 545 | $all_postypes = geodir_get_posttypes(); |
| 546 | 546 | |
| 547 | - if ( ! in_array( $post_type, $all_postypes ) ) {
|
|
| 547 | + if (!in_array($post_type, $all_postypes)) {
|
|
| 548 | 548 | return false; |
| 549 | 549 | } |
| 550 | 550 | |
| 551 | - $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( |
|
| 551 | + $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(
|
|
| 552 | 552 | $post_type, |
| 553 | 553 | 1, |
| 554 | 554 | 1 |
| 555 | - ) ) ); |
|
| 555 | + ))); |
|
| 556 | 556 | |
| 557 | - if ( ! empty( $sort_field_info ) ) {
|
|
| 557 | + if (!empty($sort_field_info)) {
|
|
| 558 | 558 | return $sort_field_info; |
| 559 | 559 | } |
| 560 | 560 | |
@@ -574,20 +574,20 @@ discard block |
||
| 574 | 574 | * @global object $wpdb WordPress Database object. |
| 575 | 575 | * @return bool|mixed|void Returns sort results, when the post type is valid. Otherwise returns false. |
| 576 | 576 | */ |
| 577 | -function geodir_get_sort_options( $post_type ) {
|
|
| 577 | +function geodir_get_sort_options($post_type) {
|
|
| 578 | 578 | global $wpdb; |
| 579 | 579 | |
| 580 | - if ( $post_type != '' ) {
|
|
| 580 | + if ($post_type != '') {
|
|
| 581 | 581 | $all_postypes = geodir_get_posttypes(); |
| 582 | 582 | |
| 583 | - if ( ! in_array( $post_type, $all_postypes ) ) {
|
|
| 583 | + if (!in_array($post_type, $all_postypes)) {
|
|
| 584 | 584 | return false; |
| 585 | 585 | } |
| 586 | 586 | |
| 587 | - $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( |
|
| 587 | + $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(
|
|
| 588 | 588 | $post_type, |
| 589 | 589 | 1 |
| 590 | - ) ) ); |
|
| 590 | + ))); |
|
| 591 | 591 | |
| 592 | 592 | /** |
| 593 | 593 | * Filter post sort options. |
@@ -597,7 +597,7 @@ discard block |
||
| 597 | 597 | * @param array $sort_field_info Unfiltered sort field array. |
| 598 | 598 | * @param string $post_type Post type. |
| 599 | 599 | */ |
| 600 | - return apply_filters( 'geodir_get_sort_options', $sort_field_info, $post_type ); |
|
| 600 | + return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
|
|
| 601 | 601 | } |
| 602 | 602 | |
| 603 | 603 | } |
@@ -618,63 +618,63 @@ discard block |
||
| 618 | 618 | * |
| 619 | 619 | * @since 1.4.4 |
| 620 | 620 | */ |
| 621 | - if ( is_search() ) {
|
|
| 621 | + if (is_search()) {
|
|
| 622 | 622 | return; |
| 623 | 623 | } |
| 624 | 624 | |
| 625 | 625 | $sort_by = ''; |
| 626 | 626 | |
| 627 | - if ( isset( $_REQUEST['sort_by'] ) ) {
|
|
| 627 | + if (isset($_REQUEST['sort_by'])) {
|
|
| 628 | 628 | $sort_by = $_REQUEST['sort_by']; |
| 629 | 629 | } |
| 630 | 630 | |
| 631 | 631 | $gd_post_type = geodir_get_current_posttype(); |
| 632 | 632 | |
| 633 | - $sort_options = geodir_get_sort_options( $gd_post_type ); |
|
| 633 | + $sort_options = geodir_get_sort_options($gd_post_type); |
|
| 634 | 634 | |
| 635 | 635 | |
| 636 | 636 | $sort_field_options = ''; |
| 637 | 637 | |
| 638 | - if ( ! empty( $sort_options ) ) {
|
|
| 639 | - foreach ( $sort_options as $sort ) {
|
|
| 640 | - $sort = stripslashes_deep( $sort ); // strip slashes |
|
| 638 | + if (!empty($sort_options)) {
|
|
| 639 | + foreach ($sort_options as $sort) {
|
|
| 640 | + $sort = stripslashes_deep($sort); // strip slashes |
|
| 641 | 641 | |
| 642 | - $label = __( $sort->site_title, 'geodirectory' ); |
|
| 642 | + $label = __($sort->site_title, 'geodirectory'); |
|
| 643 | 643 | |
| 644 | - if ( $sort->field_type == 'random' ) {
|
|
| 644 | + if ($sort->field_type == 'random') {
|
|
| 645 | 645 | $key = $sort->field_type; |
| 646 | - ( $sort_by == $key || ( $sort->is_default == '1' && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 647 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
| 646 | + ($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 647 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
|
|
| 648 | 648 | } |
| 649 | 649 | |
| 650 | - if ( $sort->htmlvar_name == 'comment_count' ) {
|
|
| 650 | + if ($sort->htmlvar_name == 'comment_count') {
|
|
| 651 | 651 | $sort->htmlvar_name = 'rating_count'; |
| 652 | 652 | } |
| 653 | 653 | |
| 654 | - if ( $sort->sort_asc ) {
|
|
| 655 | - $key = $sort->htmlvar_name . '_asc'; |
|
| 654 | + if ($sort->sort_asc) {
|
|
| 655 | + $key = $sort->htmlvar_name.'_asc'; |
|
| 656 | 656 | $label = $sort->site_title; |
| 657 | - if ( $sort->asc_title ) {
|
|
| 657 | + if ($sort->asc_title) {
|
|
| 658 | 658 | $label = $sort->asc_title; |
| 659 | 659 | } |
| 660 | - ( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 661 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
| 660 | + ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 661 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
|
|
| 662 | 662 | } |
| 663 | 663 | |
| 664 | - if ( $sort->sort_desc ) {
|
|
| 665 | - $key = $sort->htmlvar_name . '_desc'; |
|
| 664 | + if ($sort->sort_desc) {
|
|
| 665 | + $key = $sort->htmlvar_name.'_desc'; |
|
| 666 | 666 | $label = $sort->site_title; |
| 667 | - if ( $sort->desc_title ) {
|
|
| 667 | + if ($sort->desc_title) {
|
|
| 668 | 668 | $label = $sort->desc_title; |
| 669 | 669 | } |
| 670 | - ( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 671 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
| 670 | + ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 671 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
|
|
| 672 | 672 | } |
| 673 | 673 | |
| 674 | 674 | } |
| 675 | 675 | } |
| 676 | 676 | |
| 677 | - if ( $sort_field_options != '' ) {
|
|
| 677 | + if ($sort_field_options != '') {
|
|
| 678 | 678 | |
| 679 | 679 | ?> |
| 680 | 680 | |
@@ -683,9 +683,9 @@ discard block |
||
| 683 | 683 | <select name="sort_by" id="sort_by" onchange="javascript:window.location=this.value;"> |
| 684 | 684 | |
| 685 | 685 | <option |
| 686 | - value="<?php echo esc_url( add_query_arg( 'sort_by', '' ) ); ?>" <?php if ( $sort_by == '' ) {
|
|
| 686 | + value="<?php echo esc_url(add_query_arg('sort_by', '')); ?>" <?php if ($sort_by == '') {
|
|
| 687 | 687 | echo 'selected="selected"'; |
| 688 | - } ?>><?php _e( 'Sort By', 'geodirectory' ); ?></option><?php |
|
| 688 | + } ?>><?php _e('Sort By', 'geodirectory'); ?></option><?php
|
|
| 689 | 689 | |
| 690 | 690 | echo $sort_field_options; ?> |
| 691 | 691 | |
@@ -713,9 +713,9 @@ discard block |
||
| 713 | 713 | * |
| 714 | 714 | * @return string Returns the section title. |
| 715 | 715 | */ |
| 716 | -function geodir_advance_customfields_heading( $title, $field_type ) {
|
|
| 716 | +function geodir_advance_customfields_heading($title, $field_type) {
|
|
| 717 | 717 | |
| 718 | - if ( in_array( $field_type, array( 'multiselect', 'textarea', 'taxonomy' ) ) ) {
|
|
| 718 | + if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
|
|
| 719 | 719 | $title = ''; |
| 720 | 720 | } |
| 721 | 721 | |
@@ -737,19 +737,19 @@ discard block |
||
| 737 | 737 | * @global object $gd_session GeoDirectory Session object. |
| 738 | 738 | * @return string Returns related posts html. |
| 739 | 739 | */ |
| 740 | -function geodir_related_posts_display( $request ) {
|
|
| 741 | - if ( ! empty( $request ) ) {
|
|
| 742 | - $before_title = ( isset( $request['before_title'] ) && ! empty( $request['before_title'] ) ) ? $request['before_title'] : ''; |
|
| 743 | - $after_title = ( isset( $request['after_title'] ) && ! empty( $request['after_title'] ) ) ? $request['after_title'] : ''; |
|
| 744 | - |
|
| 745 | - $title = ( isset( $request['title'] ) && ! empty( $request['title'] ) ) ? $request['title'] : __( 'Related Listings', 'geodirectory' ); |
|
| 746 | - $post_number = ( isset( $request['post_number'] ) && ! empty( $request['post_number'] ) ) ? $request['post_number'] : '5'; |
|
| 747 | - $relate_to = ( isset( $request['relate_to'] ) && ! empty( $request['relate_to'] ) ) ? $request['relate_to'] : 'category'; |
|
| 748 | - $layout = ( isset( $request['layout'] ) && ! empty( $request['layout'] ) ) ? $request['layout'] : 'gridview_onehalf'; |
|
| 749 | - $add_location_filter = ( isset( $request['add_location_filter'] ) && ! empty( $request['add_location_filter'] ) ) ? $request['add_location_filter'] : '0'; |
|
| 750 | - $listing_width = ( isset( $request['listing_width'] ) && ! empty( $request['listing_width'] ) ) ? $request['listing_width'] : ''; |
|
| 751 | - $list_sort = ( isset( $request['list_sort'] ) && ! empty( $request['list_sort'] ) ) ? $request['list_sort'] : 'latest'; |
|
| 752 | - $character_count = ( isset( $request['character_count'] ) && ! empty( $request['character_count'] ) ) ? $request['character_count'] : ''; |
|
| 740 | +function geodir_related_posts_display($request) {
|
|
| 741 | + if (!empty($request)) {
|
|
| 742 | + $before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : ''; |
|
| 743 | + $after_title = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : ''; |
|
| 744 | + |
|
| 745 | + $title = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
|
|
| 746 | + $post_number = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5'; |
|
| 747 | + $relate_to = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category'; |
|
| 748 | + $layout = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf'; |
|
| 749 | + $add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0'; |
|
| 750 | + $listing_width = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : ''; |
|
| 751 | + $list_sort = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest'; |
|
| 752 | + $character_count = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : ''; |
|
| 753 | 753 | |
| 754 | 754 | global $wpdb, $post, $gd_session, $related_nearest, $related_parent_lat, $related_parent_lon; |
| 755 | 755 | $related_parent_lat = !empty($post->post_latitude) ? $post->post_latitude : ''; |
@@ -757,10 +757,10 @@ discard block |
||
| 757 | 757 | $arr_detail_page_tabs = geodir_detail_page_tabs_list(); |
| 758 | 758 | |
| 759 | 759 | $related_listing_array = array(); |
| 760 | - if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
|
|
| 761 | - $related_listing_array = get_option( 'geodir_add_related_listing_posttypes' ); |
|
| 760 | + if (get_option('geodir_add_related_listing_posttypes')) {
|
|
| 761 | + $related_listing_array = get_option('geodir_add_related_listing_posttypes');
|
|
| 762 | 762 | } |
| 763 | - if ( isset($post->post_type) && in_array( $post->post_type, $related_listing_array ) ) {
|
|
| 763 | + if (isset($post->post_type) && in_array($post->post_type, $related_listing_array)) {
|
|
| 764 | 764 | $arr_detail_page_tabs['related_listing']['is_display'] = true; |
| 765 | 765 | } |
| 766 | 766 | |
@@ -772,90 +772,90 @@ discard block |
||
| 772 | 772 | $tax_field = 'id'; |
| 773 | 773 | $category = array(); |
| 774 | 774 | |
| 775 | - if ( isset( $_REQUEST['backandedit'] ) ) {
|
|
| 776 | - $post = (object) $gd_session->get( 'listing' ); |
|
| 775 | + if (isset($_REQUEST['backandedit'])) {
|
|
| 776 | + $post = (object) $gd_session->get('listing');
|
|
| 777 | 777 | $post_type = $post->listing_type; |
| 778 | - if ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
|
|
| 778 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 779 | 779 | $post_id = $_REQUEST['pid']; |
| 780 | 780 | } |
| 781 | - } elseif ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
|
|
| 782 | - $post = geodir_get_post_info( $_REQUEST['pid'] ); |
|
| 781 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 782 | + $post = geodir_get_post_info($_REQUEST['pid']); |
|
| 783 | 783 | $post_type = $post->post_type; |
| 784 | 784 | $post_id = $_REQUEST['pid']; |
| 785 | - } elseif ( isset( $post->post_type ) && $post->post_type != '' ) {
|
|
| 785 | + } elseif (isset($post->post_type) && $post->post_type != '') {
|
|
| 786 | 786 | $post_type = $post->post_type; |
| 787 | 787 | $post_id = $post->ID; |
| 788 | 788 | } |
| 789 | 789 | |
| 790 | - if ( $relate_to == 'category' ) {
|
|
| 790 | + if ($relate_to == 'category') {
|
|
| 791 | 791 | |
| 792 | - $category_taxonomy = $post_type . $relate_to; |
|
| 793 | - if ( isset( $post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '' ) {
|
|
| 794 | - $category = explode( ',', trim( $post->{$category_taxonomy}, ',' ) );
|
|
| 792 | + $category_taxonomy = $post_type.$relate_to; |
|
| 793 | + if (isset($post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '') {
|
|
| 794 | + $category = explode(',', trim($post->{$category_taxonomy}, ','));
|
|
| 795 | 795 | } |
| 796 | 796 | |
| 797 | - } elseif ( $relate_to == 'tags' ) {
|
|
| 797 | + } elseif ($relate_to == 'tags') {
|
|
| 798 | 798 | |
| 799 | - $category_taxonomy = $post_type . '_' . $relate_to; |
|
| 800 | - if ( $post->post_tags != '' ) {
|
|
| 801 | - $category = explode( ',', trim( $post->post_tags, ',' ) ); |
|
| 799 | + $category_taxonomy = $post_type.'_'.$relate_to; |
|
| 800 | + if ($post->post_tags != '') {
|
|
| 801 | + $category = explode(',', trim($post->post_tags, ','));
|
|
| 802 | 802 | } |
| 803 | 803 | $tax_field = 'name'; |
| 804 | 804 | } |
| 805 | 805 | |
| 806 | 806 | /* --- return false in invalid request --- */ |
| 807 | - if ( empty( $category ) ) {
|
|
| 807 | + if (empty($category)) {
|
|
| 808 | 808 | return false; |
| 809 | 809 | } |
| 810 | 810 | |
| 811 | 811 | $all_postypes = geodir_get_posttypes(); |
| 812 | 812 | |
| 813 | - if ( ! in_array( $post_type, $all_postypes ) ) {
|
|
| 813 | + if (!in_array($post_type, $all_postypes)) {
|
|
| 814 | 814 | return false; |
| 815 | 815 | } |
| 816 | 816 | |
| 817 | 817 | /* --- return false in invalid request --- */ |
| 818 | 818 | |
| 819 | 819 | $location_url = ''; |
| 820 | - if ( $add_location_filter != '0' ) {
|
|
| 820 | + if ($add_location_filter != '0') {
|
|
| 821 | 821 | $location_url = array(); |
| 822 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
| 822 | + $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 823 | 823 | |
| 824 | - $gd_city = get_query_var( 'gd_city' ); |
|
| 824 | + $gd_city = get_query_var('gd_city');
|
|
| 825 | 825 | |
| 826 | - if ( $gd_city ) {
|
|
| 827 | - $gd_country = get_query_var( 'gd_country' ); |
|
| 828 | - $gd_region = get_query_var( 'gd_region' ); |
|
| 826 | + if ($gd_city) {
|
|
| 827 | + $gd_country = get_query_var('gd_country');
|
|
| 828 | + $gd_region = get_query_var('gd_region');
|
|
| 829 | 829 | } else {
|
| 830 | 830 | $location = geodir_get_default_location(); |
| 831 | 831 | |
| 832 | - $gd_country = isset( $location->country_slug ) ? $location->country_slug : ''; |
|
| 833 | - $gd_region = isset( $location->region_slug ) ? $location->region_slug : ''; |
|
| 834 | - $gd_city = isset( $location->city_slug ) ? $location->city_slug : ''; |
|
| 832 | + $gd_country = isset($location->country_slug) ? $location->country_slug : ''; |
|
| 833 | + $gd_region = isset($location->region_slug) ? $location->region_slug : ''; |
|
| 834 | + $gd_city = isset($location->city_slug) ? $location->city_slug : ''; |
|
| 835 | 835 | } |
| 836 | 836 | |
| 837 | - if ( $geodir_show_location_url == 'all' ) {
|
|
| 837 | + if ($geodir_show_location_url == 'all') {
|
|
| 838 | 838 | $location_url[] = $gd_country; |
| 839 | 839 | $location_url[] = $gd_region; |
| 840 | - } else if ( $geodir_show_location_url == 'country_city' ) {
|
|
| 840 | + } else if ($geodir_show_location_url == 'country_city') {
|
|
| 841 | 841 | $location_url[] = $gd_country; |
| 842 | - } else if ( $geodir_show_location_url == 'region_city' ) {
|
|
| 842 | + } else if ($geodir_show_location_url == 'region_city') {
|
|
| 843 | 843 | $location_url[] = $gd_region; |
| 844 | 844 | } |
| 845 | 845 | |
| 846 | 846 | $location_url[] = $gd_city; |
| 847 | 847 | |
| 848 | - $location_url = implode( '/', $location_url ); |
|
| 848 | + $location_url = implode('/', $location_url);
|
|
| 849 | 849 | } |
| 850 | 850 | |
| 851 | 851 | |
| 852 | - if ( ! empty( $category ) ) {
|
|
| 852 | + if (!empty($category)) {
|
|
| 853 | 853 | global $geodir_add_location_url; |
| 854 | 854 | $geodir_add_location_url = '0'; |
| 855 | - if ( $add_location_filter != '0' ) {
|
|
| 855 | + if ($add_location_filter != '0') {
|
|
| 856 | 856 | $geodir_add_location_url = '1'; |
| 857 | 857 | } |
| 858 | - $viewall_url = get_term_link( (int) $category[0], $post_type . $category_taxonomy ); |
|
| 858 | + $viewall_url = get_term_link((int) $category[0], $post_type.$category_taxonomy); |
|
| 859 | 859 | $geodir_add_location_url = null; |
| 860 | 860 | } |
| 861 | 861 | ob_start(); |
@@ -865,24 +865,24 @@ discard block |
||
| 865 | 865 | <div class="geodir_locations geodir_location_listing"> |
| 866 | 866 | |
| 867 | 867 | <?php |
| 868 | - if ( isset( $request['is_widget'] ) && $request['is_widget'] == '1' ) {
|
|
| 868 | + if (isset($request['is_widget']) && $request['is_widget'] == '1') {
|
|
| 869 | 869 | /** geodir_before_title filter Documented in geodirectory_widgets.php */ |
| 870 | - $before_title = isset( $before_title ) ? $before_title : apply_filters( 'geodir_before_title', '<h3 class="widget-title">' ); |
|
| 870 | + $before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
|
|
| 871 | 871 | /** geodir_after_title filter Documented in geodirectory_widgets.php */ |
| 872 | - $after_title = isset( $after_title ) ? $after_title : apply_filters( 'geodir_after_title', '</h3>' ); |
|
| 872 | + $after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
|
|
| 873 | 873 | ?> |
| 874 | 874 | <div class="location_list_heading clearfix"> |
| 875 | - <?php echo $before_title . $title . $after_title; ?> |
|
| 875 | + <?php echo $before_title.$title.$after_title; ?> |
|
| 876 | 876 | </div> |
| 877 | 877 | <?php |
| 878 | 878 | } |
| 879 | 879 | $query_args = array( |
| 880 | 880 | 'posts_per_page' => $post_number, |
| 881 | 881 | 'is_geodir_loop' => true, |
| 882 | - 'gd_location' => ( $add_location_filter ) ? true : false, |
|
| 882 | + 'gd_location' => ($add_location_filter) ? true : false, |
|
| 883 | 883 | 'post_type' => $post_type, |
| 884 | 884 | 'order_by' => $list_sort, |
| 885 | - 'post__not_in' => array( $post_id ), |
|
| 885 | + 'post__not_in' => array($post_id), |
|
| 886 | 886 | 'excerpt_length' => $character_count, |
| 887 | 887 | 'related_listings' => $is_display |
| 888 | 888 | ); |
@@ -893,7 +893,7 @@ discard block |
||
| 893 | 893 | 'terms' => $category |
| 894 | 894 | ); |
| 895 | 895 | |
| 896 | - $query_args['tax_query'] = array( $tax_query ); |
|
| 896 | + $query_args['tax_query'] = array($tax_query); |
|
| 897 | 897 | |
| 898 | 898 | global $gridview_columns, $post; |
| 899 | 899 | |
@@ -905,21 +905,21 @@ discard block |
||
| 905 | 905 | * @param array $query_args The query array. |
| 906 | 906 | * @param array $request Related posts request array. |
| 907 | 907 | */ |
| 908 | - $query_args = apply_filters( 'geodir_related_posts_widget_query_args', $query_args, $request ); |
|
| 908 | + $query_args = apply_filters('geodir_related_posts_widget_query_args', $query_args, $request);
|
|
| 909 | 909 | |
| 910 | - query_posts( $query_args ); |
|
| 910 | + query_posts($query_args); |
|
| 911 | 911 | |
| 912 | - if ( strstr( $layout, 'gridview' ) ) {
|
|
| 913 | - $listing_view_exp = explode( '_', $layout ); |
|
| 912 | + if (strstr($layout, 'gridview')) {
|
|
| 913 | + $listing_view_exp = explode('_', $layout);
|
|
| 914 | 914 | $gridview_columns = $layout; |
| 915 | 915 | $layout = $listing_view_exp[0]; |
| 916 | - } else if ( $layout == 'list' ) {
|
|
| 916 | + } else if ($layout == 'list') {
|
|
| 917 | 917 | $gridview_columns = ''; |
| 918 | 918 | } |
| 919 | 919 | $related_posts = true; |
| 920 | 920 | |
| 921 | 921 | $related_nearest = false; |
| 922 | - if ( $list_sort == 'nearest' ) {
|
|
| 922 | + if ($list_sort == 'nearest') {
|
|
| 923 | 923 | $related_nearest = true; |
| 924 | 924 | } |
| 925 | 925 | |
@@ -929,14 +929,14 @@ discard block |
||
| 929 | 929 | * |
| 930 | 930 | * @since 1.0.0 |
| 931 | 931 | */ |
| 932 | - $template = apply_filters( "geodir_template_part-related-listing-listview", geodir_locate_template( 'listing-listview' ) ); |
|
| 932 | + $template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
|
|
| 933 | 933 | |
| 934 | 934 | /** |
| 935 | 935 | * Includes related listing listview template. |
| 936 | 936 | * |
| 937 | 937 | * @since 1.0.0 |
| 938 | 938 | */ |
| 939 | - include( $template ); |
|
| 939 | + include($template); |
|
| 940 | 940 | |
| 941 | 941 | wp_reset_query(); |
| 942 | 942 | $post = $origi_post; |
@@ -964,12 +964,12 @@ discard block |
||
| 964 | 964 | function geodir_category_count_script() {
|
| 965 | 965 | global $geodir_post_category_str; |
| 966 | 966 | |
| 967 | - if ( ! empty( $geodir_post_category_str ) ) {
|
|
| 968 | - $geodir_post_category_str = serialize( $geodir_post_category_str ); |
|
| 967 | + if (!empty($geodir_post_category_str)) {
|
|
| 968 | + $geodir_post_category_str = serialize($geodir_post_category_str); |
|
| 969 | 969 | } |
| 970 | 970 | |
| 971 | - $all_var['post_category_array'] = html_entity_decode( (string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8' ); |
|
| 972 | - $script = "var post_category_array = " . json_encode( $all_var ) . ';'; |
|
| 971 | + $all_var['post_category_array'] = html_entity_decode((string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8'); |
|
| 972 | + $script = "var post_category_array = ".json_encode($all_var).';'; |
|
| 973 | 973 | echo '<script>'; |
| 974 | 974 | echo $script; |
| 975 | 975 | echo '</script>'; |
@@ -984,8 +984,8 @@ discard block |
||
| 984 | 984 | * @return string Returns the default language. |
| 985 | 985 | */ |
| 986 | 986 | function geodir_get_map_default_language() {
|
| 987 | - $geodir_default_map_language = get_option( 'geodir_default_map_language' ); |
|
| 988 | - if ( empty( $geodir_default_map_language ) ) {
|
|
| 987 | + $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 988 | + if (empty($geodir_default_map_language)) {
|
|
| 989 | 989 | $geodir_default_map_language = 'en'; |
| 990 | 990 | } |
| 991 | 991 | |
@@ -996,7 +996,7 @@ discard block |
||
| 996 | 996 | * |
| 997 | 997 | * @param string $geodir_default_map_language Default map language. |
| 998 | 998 | */ |
| 999 | - return apply_filters( 'geodir_default_map_language', $geodir_default_map_language ); |
|
| 999 | + return apply_filters('geodir_default_map_language', $geodir_default_map_language);
|
|
| 1000 | 1000 | } |
| 1001 | 1001 | |
| 1002 | 1002 | /** |
@@ -1007,7 +1007,7 @@ discard block |
||
| 1007 | 1007 | * @return string Returns the api key. |
| 1008 | 1008 | */ |
| 1009 | 1009 | function geodir_get_map_api_key() {
|
| 1010 | - $key = get_option( 'geodir_google_api_key' ); |
|
| 1010 | + $key = get_option('geodir_google_api_key');
|
|
| 1011 | 1011 | |
| 1012 | 1012 | /** |
| 1013 | 1013 | * Filter Google maps api key. |
@@ -1016,7 +1016,7 @@ discard block |
||
| 1016 | 1016 | * |
| 1017 | 1017 | * @param string $key Google maps api key. |
| 1018 | 1018 | */ |
| 1019 | - return apply_filters( 'geodir_google_api_key', $key ); |
|
| 1019 | + return apply_filters('geodir_google_api_key', $key);
|
|
| 1020 | 1020 | } |
| 1021 | 1021 | |
| 1022 | 1022 | |
@@ -1035,20 +1035,20 @@ discard block |
||
| 1035 | 1035 | global $wp, $post, $wp_query, $wpdb, $geodir_addon_list; |
| 1036 | 1036 | |
| 1037 | 1037 | $is_geodir_page = geodir_is_geodir_page(); |
| 1038 | - if ( ! $is_geodir_page ) {
|
|
| 1038 | + if (!$is_geodir_page) {
|
|
| 1039 | 1039 | return; |
| 1040 | 1040 | }// if non GD page, bail |
| 1041 | 1041 | |
| 1042 | 1042 | $use_gd_meta = true; |
| 1043 | - if ( class_exists( 'WPSEO_Frontend' ) || class_exists( 'All_in_One_SEO_Pack' ) ) {
|
|
| 1043 | + if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
|
| 1044 | 1044 | $use_gd_meta = false; |
| 1045 | 1045 | |
| 1046 | - if ( geodir_is_page( 'search' ) ) {
|
|
| 1046 | + if (geodir_is_page('search')) {
|
|
| 1047 | 1047 | $use_gd_meta = true; |
| 1048 | 1048 | } |
| 1049 | 1049 | } |
| 1050 | 1050 | |
| 1051 | - if ( ! $use_gd_meta ) {
|
|
| 1051 | + if (!$use_gd_meta) {
|
|
| 1052 | 1052 | return; |
| 1053 | 1053 | }// bail if Yoast Wordpress SEO or All_in_One_SEO_Pack active. |
| 1054 | 1054 | |
@@ -1056,170 +1056,170 @@ discard block |
||
| 1056 | 1056 | |
| 1057 | 1057 | $all_postypes = geodir_get_posttypes(); |
| 1058 | 1058 | |
| 1059 | - $geodir_taxonomies = geodir_get_taxonomies( '', true ); |
|
| 1059 | + $geodir_taxonomies = geodir_get_taxonomies('', true);
|
|
| 1060 | 1060 | |
| 1061 | 1061 | $meta_desc = ''; |
| 1062 | 1062 | $meta_key = ''; |
| 1063 | - if ( isset( $current_term->ID ) && $current_term->ID == geodir_location_page_id() ) {
|
|
| 1063 | + if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
|
|
| 1064 | 1064 | /** |
| 1065 | 1065 | * Filter SEO meta location description. |
| 1066 | 1066 | * |
| 1067 | 1067 | * @since 1.0.0 |
| 1068 | 1068 | */ |
| 1069 | - $meta_desc = apply_filters( 'geodir_seo_meta_location_description', '' ); |
|
| 1069 | + $meta_desc = apply_filters('geodir_seo_meta_location_description', '');
|
|
| 1070 | 1070 | $meta_desc .= ''; |
| 1071 | 1071 | } |
| 1072 | - if ( have_posts() && is_single() OR is_page() ) {
|
|
| 1073 | - while ( have_posts() ) {
|
|
| 1072 | + if (have_posts() && is_single() OR is_page()) {
|
|
| 1073 | + while (have_posts()) {
|
|
| 1074 | 1074 | the_post(); |
| 1075 | 1075 | |
| 1076 | - if ( has_excerpt() ) {
|
|
| 1077 | - $out_excerpt = strip_tags( strip_shortcodes( get_the_excerpt() ) ); |
|
| 1078 | - if ( empty( $out_excerpt ) ) {
|
|
| 1079 | - $out_excerpt = strip_tags( do_shortcode( get_the_excerpt() ) ); |
|
| 1076 | + if (has_excerpt()) {
|
|
| 1077 | + $out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt())); |
|
| 1078 | + if (empty($out_excerpt)) {
|
|
| 1079 | + $out_excerpt = strip_tags(do_shortcode(get_the_excerpt())); |
|
| 1080 | 1080 | } |
| 1081 | - $out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $out_excerpt ); |
|
| 1081 | + $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
|
|
| 1082 | 1082 | } else {
|
| 1083 | - $out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $post->post_content ); |
|
| 1084 | - $out_excerpt = strip_tags( strip_shortcodes( $out_excerpt ) ); |
|
| 1085 | - if ( empty( $out_excerpt ) ) {
|
|
| 1086 | - $out_excerpt = strip_tags( do_shortcode( $out_excerpt ) ); // parse short code from content |
|
| 1083 | + $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
|
|
| 1084 | + $out_excerpt = strip_tags(strip_shortcodes($out_excerpt)); |
|
| 1085 | + if (empty($out_excerpt)) {
|
|
| 1086 | + $out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content |
|
| 1087 | 1087 | } |
| 1088 | - $out_excerpt = trim( wp_trim_words( $out_excerpt, 35, '' ), '.!?,;:-' ); |
|
| 1088 | + $out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-'); |
|
| 1089 | 1089 | } |
| 1090 | 1090 | |
| 1091 | 1091 | $meta_desc .= $out_excerpt; |
| 1092 | 1092 | } |
| 1093 | - } elseif ( ( is_category() || is_tag() ) && isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
|
|
| 1094 | - if ( is_category() ) {
|
|
| 1095 | - $meta_desc .= __( "Posts related to Category:", 'geodirectory' ) . " " . ucfirst( single_cat_title( "", false ) ); |
|
| 1096 | - } elseif ( is_tag() ) {
|
|
| 1097 | - $meta_desc .= __( "Posts related to Tag:", 'geodirectory' ) . " " . ucfirst( single_tag_title( "", false ) ); |
|
| 1093 | + } elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
|
|
| 1094 | + if (is_category()) {
|
|
| 1095 | + $meta_desc .= __("Posts related to Category:", 'geodirectory')." ".ucfirst(single_cat_title("", false));
|
|
| 1096 | + } elseif (is_tag()) {
|
|
| 1097 | + $meta_desc .= __("Posts related to Tag:", 'geodirectory')." ".ucfirst(single_tag_title("", false));
|
|
| 1098 | 1098 | } |
| 1099 | - } elseif ( isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
|
|
| 1100 | - $meta_desc .= isset( $current_term->description ) ? $current_term->description : ''; |
|
| 1099 | + } elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
|
|
| 1100 | + $meta_desc .= isset($current_term->description) ? $current_term->description : ''; |
|
| 1101 | 1101 | } |
| 1102 | 1102 | |
| 1103 | 1103 | |
| 1104 | 1104 | $geodir_post_type = geodir_get_current_posttype(); |
| 1105 | - $geodir_post_type_info = get_post_type_object( $geodir_post_type ); |
|
| 1106 | - $geodir_is_page_listing = geodir_is_page( 'listing' ) ? true : false; |
|
| 1107 | - |
|
| 1108 | - $category_taxonomy = geodir_get_taxonomies( $geodir_post_type ); |
|
| 1109 | - $tag_taxonomy = geodir_get_taxonomies( $geodir_post_type, true ); |
|
| 1110 | - |
|
| 1111 | - $geodir_is_category = isset( $category_taxonomy[0] ) && get_query_var( $category_taxonomy[0] ) ? get_query_var( $category_taxonomy[0] ) : false; |
|
| 1112 | - $geodir_is_tag = isset( $tag_taxonomy[0] ) && get_query_var( $tag_taxonomy[0] ) ? true : false; |
|
| 1113 | - |
|
| 1114 | - $geodir_is_search = geodir_is_page( 'search' ) ? true : false; |
|
| 1115 | - $geodir_is_location = geodir_is_page( 'location' ) ? true : false; |
|
| 1116 | - $geodir_location_manager = isset( $geodir_addon_list['geodir_location_manager'] ) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false; |
|
| 1117 | - $godir_location_terms = geodir_get_current_location_terms( 'query_vars' ); |
|
| 1118 | - $gd_city = $geodir_location_manager && isset( $godir_location_terms['gd_city'] ) ? $godir_location_terms['gd_city'] : null; |
|
| 1119 | - $gd_region = $geodir_location_manager && isset( $godir_location_terms['gd_region'] ) ? $godir_location_terms['gd_region'] : null; |
|
| 1120 | - $gd_country = $geodir_location_manager && isset( $godir_location_terms['gd_country'] ) ? $godir_location_terms['gd_country'] : null; |
|
| 1121 | - $replace_location = __( 'Everywhere', 'geodirectory' ); |
|
| 1105 | + $geodir_post_type_info = get_post_type_object($geodir_post_type); |
|
| 1106 | + $geodir_is_page_listing = geodir_is_page('listing') ? true : false;
|
|
| 1107 | + |
|
| 1108 | + $category_taxonomy = geodir_get_taxonomies($geodir_post_type); |
|
| 1109 | + $tag_taxonomy = geodir_get_taxonomies($geodir_post_type, true); |
|
| 1110 | + |
|
| 1111 | + $geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false; |
|
| 1112 | + $geodir_is_tag = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false; |
|
| 1113 | + |
|
| 1114 | + $geodir_is_search = geodir_is_page('search') ? true : false;
|
|
| 1115 | + $geodir_is_location = geodir_is_page('location') ? true : false;
|
|
| 1116 | + $geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false; |
|
| 1117 | + $godir_location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1118 | + $gd_city = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : null; |
|
| 1119 | + $gd_region = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : null; |
|
| 1120 | + $gd_country = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : null; |
|
| 1121 | + $replace_location = __('Everywhere', 'geodirectory');
|
|
| 1122 | 1122 | $location_id = null; |
| 1123 | - if ( $geodir_location_manager ) {
|
|
| 1124 | - $sql = $wpdb->prepare( "SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array( $gd_city ) ); |
|
| 1125 | - $location_id = (int) $wpdb->get_var( $sql ); |
|
| 1123 | + if ($geodir_location_manager) {
|
|
| 1124 | + $sql = $wpdb->prepare("SELECT location_id FROM ".POST_LOCATION_TABLE." WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
|
|
| 1125 | + $location_id = (int) $wpdb->get_var($sql); |
|
| 1126 | 1126 | $location_type = geodir_what_is_current_location(); |
| 1127 | - if ( $location_type == 'city' ) {
|
|
| 1128 | - $replace_location = geodir_get_current_location( array( 'what' => 'city', 'echo' => false ) ); |
|
| 1129 | - } elseif ( $location_type == 'region' ) {
|
|
| 1130 | - $replace_location = geodir_get_current_location( array( 'what' => 'region', 'echo' => false ) ); |
|
| 1131 | - } elseif ( $location_type == 'country' ) {
|
|
| 1132 | - $replace_location = geodir_get_current_location( array( 'what' => 'country', 'echo' => false ) ); |
|
| 1133 | - $replace_location = __( $replace_location, 'geodirectory' ); |
|
| 1127 | + if ($location_type == 'city') {
|
|
| 1128 | + $replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
|
|
| 1129 | + } elseif ($location_type == 'region') {
|
|
| 1130 | + $replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
|
|
| 1131 | + } elseif ($location_type == 'country') {
|
|
| 1132 | + $replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
|
|
| 1133 | + $replace_location = __($replace_location, 'geodirectory'); |
|
| 1134 | 1134 | } |
| 1135 | - $country = get_query_var( 'gd_country' ); |
|
| 1136 | - $region = get_query_var( 'gd_region' ); |
|
| 1137 | - $city = get_query_var( 'gd_city' ); |
|
| 1135 | + $country = get_query_var('gd_country');
|
|
| 1136 | + $region = get_query_var('gd_region');
|
|
| 1137 | + $city = get_query_var('gd_city');
|
|
| 1138 | 1138 | $current_location = ''; |
| 1139 | - if ( $country != '' ) {
|
|
| 1140 | - $current_location = get_actual_location_name( 'country', $country, true ); |
|
| 1139 | + if ($country != '') {
|
|
| 1140 | + $current_location = get_actual_location_name('country', $country, true);
|
|
| 1141 | 1141 | } |
| 1142 | - if ( $region != '' ) {
|
|
| 1143 | - $current_location = get_actual_location_name( 'region', $region ); |
|
| 1142 | + if ($region != '') {
|
|
| 1143 | + $current_location = get_actual_location_name('region', $region);
|
|
| 1144 | 1144 | } |
| 1145 | - if ( $city != '' ) {
|
|
| 1146 | - $current_location = get_actual_location_name( 'city', $city ); |
|
| 1145 | + if ($city != '') {
|
|
| 1146 | + $current_location = get_actual_location_name('city', $city);
|
|
| 1147 | 1147 | } |
| 1148 | 1148 | $replace_location = $current_location != '' ? $current_location : $replace_location; |
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | 1151 | $geodir_meta_keys = ''; |
| 1152 | 1152 | $geodir_meta_desc = ''; |
| 1153 | - if ( $is_geodir_page && ! empty( $geodir_post_type_info ) ) {
|
|
| 1154 | - if ( $geodir_is_page_listing || $geodir_is_search || geodir_is_page( 'add-listing' ) ) {
|
|
| 1155 | - $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; |
|
| 1153 | + if ($is_geodir_page && !empty($geodir_post_type_info)) {
|
|
| 1154 | + if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
|
|
| 1155 | + $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; |
|
| 1156 | 1156 | |
| 1157 | - $geodir_meta_desc = isset( $geodir_post_type_info->description ) ? $geodir_post_type_info->description : $geodir_meta_desc; |
|
| 1158 | - $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; |
|
| 1157 | + $geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc; |
|
| 1158 | + $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; |
|
| 1159 | 1159 | |
| 1160 | - if ( $geodir_is_category ) {
|
|
| 1161 | - $category = $geodir_is_category ? get_term_by( 'slug', $geodir_is_category, $category_taxonomy[0] ) : null; |
|
| 1162 | - if ( isset( $category->term_id ) && ! empty( $category->term_id ) ) {
|
|
| 1160 | + if ($geodir_is_category) {
|
|
| 1161 | + $category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : null;
|
|
| 1162 | + if (isset($category->term_id) && !empty($category->term_id)) {
|
|
| 1163 | 1163 | $category_id = $category->term_id; |
| 1164 | - $category_desc = trim( $category->description ) != '' ? trim( $category->description ) : get_tax_meta( $category_id, 'ct_cat_top_desc', false, $geodir_post_type ); |
|
| 1165 | - if ( $location_id ) {
|
|
| 1166 | - $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id; |
|
| 1167 | - $cat_loc_option = get_option( $option_name ); |
|
| 1168 | - |
|
| 1169 | - $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; |
|
| 1170 | - if ( ! $gd_cat_loc_default ) {
|
|
| 1171 | - $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id; |
|
| 1172 | - $option = get_option( $option_name ); |
|
| 1173 | - $category_desc = isset( $option['gd_cat_loc_desc'] ) && trim( $option['gd_cat_loc_desc'] ) != '' ? trim( $option['gd_cat_loc_desc'] ) : $category_desc; |
|
| 1164 | + $category_desc = trim($category->description) != '' ? trim($category->description) : get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type); |
|
| 1165 | + if ($location_id) {
|
|
| 1166 | + $option_name = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id; |
|
| 1167 | + $cat_loc_option = get_option($option_name); |
|
| 1168 | + |
|
| 1169 | + $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; |
|
| 1170 | + if (!$gd_cat_loc_default) {
|
|
| 1171 | + $option_name = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id.'_'.$location_id; |
|
| 1172 | + $option = get_option($option_name); |
|
| 1173 | + $category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc; |
|
| 1174 | 1174 | } |
| 1175 | 1175 | } |
| 1176 | - $geodir_meta_desc = __( "Posts related to Category:", 'geodirectory' ) . " " . ucfirst( single_cat_title( "", false ) ) . '. ' . $category_desc; |
|
| 1176 | + $geodir_meta_desc = __("Posts related to Category:", 'geodirectory')." ".ucfirst(single_cat_title("", false)).'. '.$category_desc;
|
|
| 1177 | 1177 | } |
| 1178 | - } else if ( $geodir_is_tag ) {
|
|
| 1179 | - $geodir_meta_desc = __( "Posts related to Tag:", 'geodirectory' ) . " " . ucfirst( single_tag_title( "", false ) ) . '. ' . $geodir_meta_desc; |
|
| 1178 | + } else if ($geodir_is_tag) {
|
|
| 1179 | + $geodir_meta_desc = __("Posts related to Tag:", 'geodirectory')." ".ucfirst(single_tag_title("", false)).'. '.$geodir_meta_desc;
|
|
| 1180 | 1180 | } |
| 1181 | 1181 | } |
| 1182 | 1182 | } |
| 1183 | 1183 | |
| 1184 | 1184 | |
| 1185 | 1185 | $gd_page = ''; |
| 1186 | - if ( geodir_is_page( 'home' ) ) {
|
|
| 1186 | + if (geodir_is_page('home')) {
|
|
| 1187 | 1187 | $gd_page = 'home'; |
| 1188 | - $meta_desc = ( get_option( 'geodir_meta_desc_homepage' ) ) ? get_option( 'geodir_meta_desc_homepage' ) : $meta_desc; |
|
| 1189 | - } elseif ( geodir_is_page( 'detail' ) ) {
|
|
| 1188 | + $meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
|
|
| 1189 | + } elseif (geodir_is_page('detail')) {
|
|
| 1190 | 1190 | $gd_page = 'detail'; |
| 1191 | - $meta_desc = ( get_option( 'geodir_meta_desc_detail' ) ) ? get_option( 'geodir_meta_desc_detail' ) : $meta_desc; |
|
| 1192 | - } elseif ( geodir_is_page( 'pt' ) ) {
|
|
| 1191 | + $meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
|
|
| 1192 | + } elseif (geodir_is_page('pt')) {
|
|
| 1193 | 1193 | $gd_page = 'pt'; |
| 1194 | - $meta_desc = ( get_option( 'geodir_meta_desc_pt' ) ) ? get_option( 'geodir_meta_desc_pt' ) : $meta_desc; |
|
| 1195 | - } elseif ( geodir_is_page( 'listing' ) ) {
|
|
| 1194 | + $meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
|
|
| 1195 | + } elseif (geodir_is_page('listing')) {
|
|
| 1196 | 1196 | $gd_page = 'listing'; |
| 1197 | - $meta_desc = ( get_option( 'geodir_meta_desc_listing' ) ) ? get_option( 'geodir_meta_desc_listing' ) : $meta_desc; |
|
| 1198 | - } elseif ( geodir_is_page( 'location' ) ) {
|
|
| 1197 | + $meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
|
|
| 1198 | + } elseif (geodir_is_page('location')) {
|
|
| 1199 | 1199 | $gd_page = 'location'; |
| 1200 | - $meta_desc = ( get_option( 'geodir_meta_desc_location' ) ) ? get_option( 'geodir_meta_desc_location' ) : $meta_desc; |
|
| 1201 | - $meta_desc = apply_filters( 'geodir_seo_meta_location_description', $meta_desc ); |
|
| 1200 | + $meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
|
|
| 1201 | + $meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
|
|
| 1202 | 1202 | |
| 1203 | - } elseif ( geodir_is_page( 'search' ) ) {
|
|
| 1203 | + } elseif (geodir_is_page('search')) {
|
|
| 1204 | 1204 | $gd_page = 'search'; |
| 1205 | - $meta_desc = ( get_option( 'geodir_meta_desc_search' ) ) ? get_option( 'geodir_meta_desc_search' ) : $meta_desc; |
|
| 1206 | - } elseif ( geodir_is_page( 'add-listing' ) ) {
|
|
| 1205 | + $meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
|
|
| 1206 | + } elseif (geodir_is_page('add-listing')) {
|
|
| 1207 | 1207 | $gd_page = 'add-listing'; |
| 1208 | - $meta_desc = ( get_option( 'geodir_meta_desc_add-listing' ) ) ? get_option( 'geodir_meta_desc_add-listing' ) : $meta_desc; |
|
| 1209 | - } elseif ( geodir_is_page( 'author' ) ) {
|
|
| 1208 | + $meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
|
|
| 1209 | + } elseif (geodir_is_page('author')) {
|
|
| 1210 | 1210 | $gd_page = 'author'; |
| 1211 | - $meta_desc = ( get_option( 'geodir_meta_desc_author' ) ) ? get_option( 'geodir_meta_desc_author' ) : $meta_desc; |
|
| 1212 | - } elseif ( geodir_is_page( 'login' ) ) {
|
|
| 1211 | + $meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
|
|
| 1212 | + } elseif (geodir_is_page('login')) {
|
|
| 1213 | 1213 | $gd_page = 'login'; |
| 1214 | - $meta_desc = ( get_option( 'geodir_meta_desc_login' ) ) ? get_option( 'geodir_meta_desc_login' ) : $meta_desc; |
|
| 1215 | - } elseif ( geodir_is_page( 'listing-success' ) ) {
|
|
| 1214 | + $meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
|
|
| 1215 | + } elseif (geodir_is_page('listing-success')) {
|
|
| 1216 | 1216 | $gd_page = 'listing-success'; |
| 1217 | - $meta_desc = ( get_option( 'geodir_meta_desc_listing-success' ) ) ? get_option( 'geodir_meta_desc_listing-success' ) : $meta_desc; |
|
| 1217 | + $meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
|
|
| 1218 | 1218 | } |
| 1219 | 1219 | |
| 1220 | 1220 | |
| 1221 | - if ( $meta_desc ) {
|
|
| 1222 | - $meta_desc = stripslashes_deep( $meta_desc ); |
|
| 1221 | + if ($meta_desc) {
|
|
| 1222 | + $meta_desc = stripslashes_deep($meta_desc); |
|
| 1223 | 1223 | /** |
| 1224 | 1224 | * Filter page description to replace variables. |
| 1225 | 1225 | * |
@@ -1228,7 +1228,7 @@ discard block |
||
| 1228 | 1228 | * @param string $title The page description including variables. |
| 1229 | 1229 | * @param string $gd_page The GeoDirectory page type if any. |
| 1230 | 1230 | */ |
| 1231 | - $meta_desc = apply_filters( 'geodir_seo_meta_description_pre', __( $meta_desc, 'geodirectory' ), $gd_page, '' ); |
|
| 1231 | + $meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'), $gd_page, '');
|
|
| 1232 | 1232 | |
| 1233 | 1233 | /** |
| 1234 | 1234 | * Filter SEO meta description. |
@@ -1237,49 +1237,49 @@ discard block |
||
| 1237 | 1237 | * |
| 1238 | 1238 | * @param string $meta_desc Meta description content. |
| 1239 | 1239 | */ |
| 1240 | - echo apply_filters( 'geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc ); |
|
| 1240 | + echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="'.$meta_desc.'" />', $meta_desc);
|
|
| 1241 | 1241 | } |
| 1242 | 1242 | |
| 1243 | 1243 | // meta keywords |
| 1244 | - if ( isset( $post->post_type ) && in_array( $post->post_type, $all_postypes ) ) {
|
|
| 1245 | - $place_tags = wp_get_post_terms( $post->ID, $post->post_type . '_tags', array( "fields" => "names" ) ); |
|
| 1246 | - $place_cats = wp_get_post_terms( $post->ID, $post->post_type . 'category', array( "fields" => "names" ) ); |
|
| 1244 | + if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
|
|
| 1245 | + $place_tags = wp_get_post_terms($post->ID, $post->post_type.'_tags', array("fields" => "names"));
|
|
| 1246 | + $place_cats = wp_get_post_terms($post->ID, $post->post_type.'category', array("fields" => "names"));
|
|
| 1247 | 1247 | |
| 1248 | - $meta_key .= implode( ", ", array_merge( (array) $place_cats, (array) $place_tags ) ); |
|
| 1248 | + $meta_key .= implode(", ", array_merge((array) $place_cats, (array) $place_tags));
|
|
| 1249 | 1249 | } else {
|
| 1250 | 1250 | $posttags = get_the_tags(); |
| 1251 | - if ( $posttags ) {
|
|
| 1252 | - foreach ( $posttags as $tag ) {
|
|
| 1253 | - $meta_key .= $tag->name . ' '; |
|
| 1251 | + if ($posttags) {
|
|
| 1252 | + foreach ($posttags as $tag) {
|
|
| 1253 | + $meta_key .= $tag->name.' '; |
|
| 1254 | 1254 | } |
| 1255 | 1255 | } else {
|
| 1256 | - $tags = get_tags( array( 'orderby' => 'count', 'order' => 'DESC' ) ); |
|
| 1256 | + $tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
|
|
| 1257 | 1257 | $xt = 1; |
| 1258 | 1258 | |
| 1259 | - foreach ( $tags as $tag ) {
|
|
| 1260 | - if ( $xt <= 20 ) {
|
|
| 1261 | - $meta_key .= $tag->name . ", "; |
|
| 1259 | + foreach ($tags as $tag) {
|
|
| 1260 | + if ($xt <= 20) {
|
|
| 1261 | + $meta_key .= $tag->name.", "; |
|
| 1262 | 1262 | } |
| 1263 | 1263 | |
| 1264 | - $xt ++; |
|
| 1264 | + $xt++; |
|
| 1265 | 1265 | } |
| 1266 | 1266 | } |
| 1267 | 1267 | } |
| 1268 | 1268 | |
| 1269 | - $meta_key = $meta_key != '' ? rtrim( trim( $meta_key ), "," ) : $meta_key; |
|
| 1270 | - $geodir_meta_keys = $geodir_meta_keys != '' ? ( $meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys ) : $meta_key; |
|
| 1271 | - if ( $geodir_meta_keys != '' ) {
|
|
| 1272 | - $geodir_meta_keys = strip_tags( $geodir_meta_keys ); |
|
| 1273 | - $geodir_meta_keys = esc_html( $geodir_meta_keys ); |
|
| 1274 | - $geodir_meta_keys = geodir_strtolower( $geodir_meta_keys ); |
|
| 1275 | - $geodir_meta_keys = wp_html_excerpt( $geodir_meta_keys, 1000, '' ); |
|
| 1276 | - $geodir_meta_keys = str_replace( '%location%', $replace_location, $geodir_meta_keys ); |
|
| 1269 | + $meta_key = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key; |
|
| 1270 | + $geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key.', '.$geodir_meta_keys : $geodir_meta_keys) : $meta_key; |
|
| 1271 | + if ($geodir_meta_keys != '') {
|
|
| 1272 | + $geodir_meta_keys = strip_tags($geodir_meta_keys); |
|
| 1273 | + $geodir_meta_keys = esc_html($geodir_meta_keys); |
|
| 1274 | + $geodir_meta_keys = geodir_strtolower($geodir_meta_keys); |
|
| 1275 | + $geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, ''); |
|
| 1276 | + $geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
|
|
| 1277 | 1277 | |
| 1278 | - $meta_key = rtrim( trim( $geodir_meta_keys ), "," ); |
|
| 1278 | + $meta_key = rtrim(trim($geodir_meta_keys), ","); |
|
| 1279 | 1279 | } |
| 1280 | 1280 | |
| 1281 | - if ( $meta_key ) {
|
|
| 1282 | - $meta_key = stripslashes_deep( $meta_key ); |
|
| 1281 | + if ($meta_key) {
|
|
| 1282 | + $meta_key = stripslashes_deep($meta_key); |
|
| 1283 | 1283 | /** |
| 1284 | 1284 | * Filter SEO meta keywords. |
| 1285 | 1285 | * |
@@ -1287,7 +1287,7 @@ discard block |
||
| 1287 | 1287 | * |
| 1288 | 1288 | * @param string $meta_desc Meta keywords. |
| 1289 | 1289 | */ |
| 1290 | - echo apply_filters( 'geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key ); |
|
| 1290 | + echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="'.$meta_key.'" />', $meta_key);
|
|
| 1291 | 1291 | } |
| 1292 | 1292 | |
| 1293 | 1293 | } |
@@ -1307,8 +1307,8 @@ discard block |
||
| 1307 | 1307 | |
| 1308 | 1308 | $geodir_detail_page_tabs_array = geodir_detail_page_tabs_array(); |
| 1309 | 1309 | |
| 1310 | - foreach ( $geodir_detail_page_tabs_array as $key => $tabs_obj ) {
|
|
| 1311 | - $geodir_detail_page_tabs_key_value_array[ $key ] = $tabs_obj['heading_text']; |
|
| 1310 | + foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
|
|
| 1311 | + $geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text']; |
|
| 1312 | 1312 | } |
| 1313 | 1313 | |
| 1314 | 1314 | return $geodir_detail_page_tabs_key_value_array; |
@@ -1330,57 +1330,57 @@ discard block |
||
| 1330 | 1330 | * @since 1.0.0 |
| 1331 | 1331 | */ |
| 1332 | 1332 | $arr_tabs['post_profile'] = array( |
| 1333 | - 'heading_text' => __( 'Profile', 'geodirectory' ), |
|
| 1333 | + 'heading_text' => __('Profile', 'geodirectory'),
|
|
| 1334 | 1334 | 'is_active_tab' => true, |
| 1335 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_profile' ), |
|
| 1335 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
|
|
| 1336 | 1336 | 'tab_content' => '' |
| 1337 | 1337 | ); |
| 1338 | - $arr_tabs['post_info'] = array( |
|
| 1339 | - 'heading_text' => __( 'More Info', 'geodirectory' ), |
|
| 1338 | + $arr_tabs['post_info'] = array( |
|
| 1339 | + 'heading_text' => __('More Info', 'geodirectory'),
|
|
| 1340 | 1340 | 'is_active_tab' => false, |
| 1341 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_info' ), |
|
| 1341 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
|
|
| 1342 | 1342 | 'tab_content' => '' |
| 1343 | 1343 | ); |
| 1344 | 1344 | |
| 1345 | 1345 | $arr_tabs['post_images'] = array( |
| 1346 | - 'heading_text' => __( 'Photo', 'geodirectory' ), |
|
| 1346 | + 'heading_text' => __('Photo', 'geodirectory'),
|
|
| 1347 | 1347 | 'is_active_tab' => false, |
| 1348 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_images' ), |
|
| 1348 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
|
|
| 1349 | 1349 | 'tab_content' => '' |
| 1350 | 1350 | ); |
| 1351 | 1351 | |
| 1352 | 1352 | $arr_tabs['post_video'] = array( |
| 1353 | - 'heading_text' => __( 'Video', 'geodirectory' ), |
|
| 1353 | + 'heading_text' => __('Video', 'geodirectory'),
|
|
| 1354 | 1354 | 'is_active_tab' => false, |
| 1355 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_video' ), |
|
| 1355 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
|
|
| 1356 | 1356 | 'tab_content' => '' |
| 1357 | 1357 | ); |
| 1358 | 1358 | |
| 1359 | 1359 | $arr_tabs['special_offers'] = array( |
| 1360 | - 'heading_text' => __( 'Special Offers', 'geodirectory' ), |
|
| 1360 | + 'heading_text' => __('Special Offers', 'geodirectory'),
|
|
| 1361 | 1361 | 'is_active_tab' => false, |
| 1362 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'special_offers' ), |
|
| 1362 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
|
|
| 1363 | 1363 | 'tab_content' => '' |
| 1364 | 1364 | ); |
| 1365 | 1365 | |
| 1366 | 1366 | $arr_tabs['post_map'] = array( |
| 1367 | - 'heading_text' => __( 'Map', 'geodirectory' ), |
|
| 1367 | + 'heading_text' => __('Map', 'geodirectory'),
|
|
| 1368 | 1368 | 'is_active_tab' => false, |
| 1369 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_map' ), |
|
| 1369 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
|
|
| 1370 | 1370 | 'tab_content' => '' |
| 1371 | 1371 | ); |
| 1372 | 1372 | |
| 1373 | 1373 | $arr_tabs['reviews'] = array( |
| 1374 | - 'heading_text' => __( 'Reviews', 'geodirectory' ), |
|
| 1374 | + 'heading_text' => __('Reviews', 'geodirectory'),
|
|
| 1375 | 1375 | 'is_active_tab' => false, |
| 1376 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'reviews' ), |
|
| 1376 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
|
|
| 1377 | 1377 | 'tab_content' => 'review display' |
| 1378 | 1378 | ); |
| 1379 | 1379 | |
| 1380 | 1380 | $arr_tabs['related_listing'] = array( |
| 1381 | - 'heading_text' => __( 'Related Listing', 'geodirectory' ), |
|
| 1381 | + 'heading_text' => __('Related Listing', 'geodirectory'),
|
|
| 1382 | 1382 | 'is_active_tab' => false, |
| 1383 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'related_listing' ), |
|
| 1383 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
|
|
| 1384 | 1384 | 'tab_content' => '' |
| 1385 | 1385 | ); |
| 1386 | 1386 | |
@@ -1389,7 +1389,7 @@ discard block |
||
| 1389 | 1389 | * |
| 1390 | 1390 | * @since 1.0.0 |
| 1391 | 1391 | */ |
| 1392 | - return apply_filters( 'geodir_detail_page_tab_list_extend', $arr_tabs ); |
|
| 1392 | + return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
|
|
| 1393 | 1393 | |
| 1394 | 1394 | |
| 1395 | 1395 | } |
@@ -1403,13 +1403,13 @@ discard block |
||
| 1403 | 1403 | * @return mixed|array Tabs array. |
| 1404 | 1404 | */ |
| 1405 | 1405 | function geodir_detail_page_tabs_list() {
|
| 1406 | - $tabs_excluded = get_option( 'geodir_detail_page_tabs_excluded' ); |
|
| 1406 | + $tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
|
|
| 1407 | 1407 | $tabs_array = geodir_detail_page_tabs_array(); |
| 1408 | 1408 | |
| 1409 | - if ( ! empty( $tabs_excluded ) ) {
|
|
| 1410 | - foreach ( $tabs_excluded as $tab ) {
|
|
| 1411 | - if ( array_key_exists( $tab, $tabs_array ) ) {
|
|
| 1412 | - unset( $tabs_array[ $tab ] ); |
|
| 1409 | + if (!empty($tabs_excluded)) {
|
|
| 1410 | + foreach ($tabs_excluded as $tab) {
|
|
| 1411 | + if (array_key_exists($tab, $tabs_array)) {
|
|
| 1412 | + unset($tabs_array[$tab]); |
|
| 1413 | 1413 | } |
| 1414 | 1414 | } |
| 1415 | 1415 | } |
@@ -1433,58 +1433,58 @@ discard block |
||
| 1433 | 1433 | function geodir_show_detail_page_tabs() {
|
| 1434 | 1434 | global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields, $preview; |
| 1435 | 1435 | |
| 1436 | - $post_id = ! empty( $post ) && isset( $post->ID ) ? (int) $post->ID : 0; |
|
| 1437 | - $request_post_id = ! empty( $_REQUEST['p'] ) ? (int) $_REQUEST['p'] : 0; |
|
| 1438 | - $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 |
|
| 1436 | + $post_id = !empty($post) && isset($post->ID) ? (int) $post->ID : 0; |
|
| 1437 | + $request_post_id = !empty($_REQUEST['p']) ? (int) $_REQUEST['p'] : 0; |
|
| 1438 | + $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 |
|
| 1439 | 1439 | |
| 1440 | - if ( $is_backend_preview && ! $post_id > 0 && $request_post_id > 0 ) {
|
|
| 1441 | - $post = geodir_get_post_info( $request_post_id ); |
|
| 1442 | - setup_postdata( $post ); |
|
| 1440 | + if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
|
|
| 1441 | + $post = geodir_get_post_info($request_post_id); |
|
| 1442 | + setup_postdata($post); |
|
| 1443 | 1443 | } |
| 1444 | 1444 | |
| 1445 | - $geodir_post_detail_fields = geodir_show_listing_info( 'moreinfo' ); |
|
| 1445 | + $geodir_post_detail_fields = geodir_show_listing_info('moreinfo');
|
|
| 1446 | 1446 | |
| 1447 | 1447 | |
| 1448 | - if ( geodir_is_page( 'detail' ) ) {
|
|
| 1449 | - $video = geodir_get_video( $post->ID ); |
|
| 1450 | - $special_offers = geodir_get_special_offers( $post->ID ); |
|
| 1448 | + if (geodir_is_page('detail')) {
|
|
| 1449 | + $video = geodir_get_video($post->ID); |
|
| 1450 | + $special_offers = geodir_get_special_offers($post->ID); |
|
| 1451 | 1451 | $related_listing_array = array(); |
| 1452 | - if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
|
|
| 1453 | - $related_listing_array = get_option( 'geodir_add_related_listing_posttypes' ); |
|
| 1452 | + if (get_option('geodir_add_related_listing_posttypes')) {
|
|
| 1453 | + $related_listing_array = get_option('geodir_add_related_listing_posttypes');
|
|
| 1454 | 1454 | } |
| 1455 | 1455 | |
| 1456 | 1456 | |
| 1457 | - $excluded_tabs = get_option( 'geodir_detail_page_tabs_excluded' ); |
|
| 1458 | - if ( ! $excluded_tabs ) {
|
|
| 1457 | + $excluded_tabs = get_option('geodir_detail_page_tabs_excluded');
|
|
| 1458 | + if (!$excluded_tabs) {
|
|
| 1459 | 1459 | $excluded_tabs = array(); |
| 1460 | 1460 | } |
| 1461 | 1461 | |
| 1462 | 1462 | $related_listing = ''; |
| 1463 | - if ( in_array( $post->post_type, $related_listing_array ) && ! in_array( 'related_listing', $excluded_tabs ) ) {
|
|
| 1463 | + if (in_array($post->post_type, $related_listing_array) && !in_array('related_listing', $excluded_tabs)) {
|
|
| 1464 | 1464 | $request = array( |
| 1465 | - 'post_number' => get_option( 'geodir_related_post_count' ), |
|
| 1466 | - 'relate_to' => get_option( 'geodir_related_post_relate_to' ), |
|
| 1467 | - 'layout' => get_option( 'geodir_related_post_listing_view' ), |
|
| 1468 | - 'add_location_filter' => get_option( 'geodir_related_post_location_filter' ), |
|
| 1469 | - 'list_sort' => get_option( 'geodir_related_post_sortby' ), |
|
| 1470 | - 'character_count' => get_option( 'geodir_related_post_excerpt' ) |
|
| 1465 | + 'post_number' => get_option('geodir_related_post_count'),
|
|
| 1466 | + 'relate_to' => get_option('geodir_related_post_relate_to'),
|
|
| 1467 | + 'layout' => get_option('geodir_related_post_listing_view'),
|
|
| 1468 | + 'add_location_filter' => get_option('geodir_related_post_location_filter'),
|
|
| 1469 | + 'list_sort' => get_option('geodir_related_post_sortby'),
|
|
| 1470 | + 'character_count' => get_option('geodir_related_post_excerpt')
|
|
| 1471 | 1471 | ); |
| 1472 | 1472 | |
| 1473 | - if ( $post->post_type == 'gd_event' && defined( 'GDEVENTS_VERSION' ) ) {
|
|
| 1474 | - $related_listing = geodir_get_detail_page_related_events( $request ); |
|
| 1473 | + if ($post->post_type == 'gd_event' && defined('GDEVENTS_VERSION')) {
|
|
| 1474 | + $related_listing = geodir_get_detail_page_related_events($request); |
|
| 1475 | 1475 | } else {
|
| 1476 | - $related_listing = geodir_related_posts_display( $request ); |
|
| 1476 | + $related_listing = geodir_related_posts_display($request); |
|
| 1477 | 1477 | } |
| 1478 | 1478 | |
| 1479 | 1479 | } |
| 1480 | 1480 | |
| 1481 | - $post_images = geodir_get_images( $post->ID, 'thumbnail' ); |
|
| 1481 | + $post_images = geodir_get_images($post->ID, 'thumbnail'); |
|
| 1482 | 1482 | $thumb_image = ''; |
| 1483 | - if ( ! empty( $post_images ) ) {
|
|
| 1484 | - foreach ( $post_images as $image ) {
|
|
| 1485 | - $caption = ( ! empty( $image->caption ) ) ? $image->caption : ''; |
|
| 1486 | - $thumb_image .= '<a href="' . $image->src . '" title="' . $caption . '">'; |
|
| 1487 | - $thumb_image .= geodir_show_image( $image, 'thumbnail', true, false ); |
|
| 1483 | + if (!empty($post_images)) {
|
|
| 1484 | + foreach ($post_images as $image) {
|
|
| 1485 | + $caption = (!empty($image->caption)) ? $image->caption : ''; |
|
| 1486 | + $thumb_image .= '<a href="'.$image->src.'" title="'.$caption.'">'; |
|
| 1487 | + $thumb_image .= geodir_show_image($image, 'thumbnail', true, false); |
|
| 1488 | 1488 | $thumb_image .= '</a>'; |
| 1489 | 1489 | } |
| 1490 | 1490 | } |
@@ -1493,11 +1493,11 @@ discard block |
||
| 1493 | 1493 | $map_args['map_canvas_name'] = 'detail_page_map_canvas'; |
| 1494 | 1494 | $map_args['width'] = '600'; |
| 1495 | 1495 | $map_args['height'] = '300'; |
| 1496 | - if ( $post->post_mapzoom ) {
|
|
| 1497 | - $map_args['zoom'] = '' . $post->post_mapzoom . ''; |
|
| 1496 | + if ($post->post_mapzoom) {
|
|
| 1497 | + $map_args['zoom'] = ''.$post->post_mapzoom.''; |
|
| 1498 | 1498 | } |
| 1499 | 1499 | $map_args['autozoom'] = false; |
| 1500 | - $map_args['scrollwheel'] = ( get_option( 'geodir_add_listing_mouse_scroll' ) ) ? 0 : 1; |
|
| 1500 | + $map_args['scrollwheel'] = (get_option('geodir_add_listing_mouse_scroll')) ? 0 : 1;
|
|
| 1501 | 1501 | $map_args['child_collapse'] = '0'; |
| 1502 | 1502 | $map_args['enable_cat_filters'] = false; |
| 1503 | 1503 | $map_args['enable_text_search'] = false; |
@@ -1506,43 +1506,43 @@ discard block |
||
| 1506 | 1506 | $map_args['enable_jason_on_load'] = true; |
| 1507 | 1507 | $map_args['enable_map_direction'] = true; |
| 1508 | 1508 | $map_args['map_class_name'] = 'geodir-map-detail-page'; |
| 1509 | - $map_args['maptype'] = ( ! empty( $post->post_mapview ) ) ? $post->post_mapview : 'ROADMAP'; |
|
| 1510 | - } else if ( geodir_is_page( 'preview' ) ) {
|
|
| 1511 | - $video = isset( $post->geodir_video ) ? $post->geodir_video : ''; |
|
| 1512 | - $special_offers = isset( $post->geodir_special_offers ) ? $post->geodir_special_offers : ''; |
|
| 1509 | + $map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP'; |
|
| 1510 | + } else if (geodir_is_page('preview')) {
|
|
| 1511 | + $video = isset($post->geodir_video) ? $post->geodir_video : ''; |
|
| 1512 | + $special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : ''; |
|
| 1513 | 1513 | |
| 1514 | - if ( isset( $post->post_images ) ) {
|
|
| 1515 | - $post->post_images = trim( $post->post_images, "," ); |
|
| 1514 | + if (isset($post->post_images)) {
|
|
| 1515 | + $post->post_images = trim($post->post_images, ","); |
|
| 1516 | 1516 | } |
| 1517 | 1517 | |
| 1518 | - if ( isset( $post->post_images ) && ! empty( $post->post_images ) ) {
|
|
| 1519 | - $post_images = explode( ",", $post->post_images ); |
|
| 1518 | + if (isset($post->post_images) && !empty($post->post_images)) {
|
|
| 1519 | + $post_images = explode(",", $post->post_images);
|
|
| 1520 | 1520 | } |
| 1521 | 1521 | |
| 1522 | 1522 | $thumb_image = ''; |
| 1523 | - if ( ! empty( $post_images ) ) {
|
|
| 1524 | - foreach ( $post_images as $image ) {
|
|
| 1525 | - if ( $image != '' ) {
|
|
| 1526 | - $thumb_image .= '<a href="' . $image . '">'; |
|
| 1527 | - $thumb_image .= geodir_show_image( array( 'src' => $image ), 'thumbnail', true, false ); |
|
| 1523 | + if (!empty($post_images)) {
|
|
| 1524 | + foreach ($post_images as $image) {
|
|
| 1525 | + if ($image != '') {
|
|
| 1526 | + $thumb_image .= '<a href="'.$image.'">'; |
|
| 1527 | + $thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
|
|
| 1528 | 1528 | $thumb_image .= '</a>'; |
| 1529 | 1529 | } |
| 1530 | 1530 | } |
| 1531 | 1531 | } |
| 1532 | 1532 | |
| 1533 | 1533 | global $map_jason; |
| 1534 | - $marker_json = $post->marker_json != '' ? json_decode( $post->marker_json, true ) : array(); |
|
| 1535 | - $marker_icon = ( ! empty( $marker_json ) && ! empty( $marker_json['i'] ) ) ? $marker_json['i'] : ''; |
|
| 1536 | - $icon_size = geodir_get_marker_size( $marker_icon ); |
|
| 1534 | + $marker_json = $post->marker_json != '' ? json_decode($post->marker_json, true) : array(); |
|
| 1535 | + $marker_icon = (!empty($marker_json) && !empty($marker_json['i'])) ? $marker_json['i'] : ''; |
|
| 1536 | + $icon_size = geodir_get_marker_size($marker_icon); |
|
| 1537 | 1537 | $marker_json['w'] = $icon_size['w']; |
| 1538 | 1538 | $marker_json['h'] = $icon_size['h']; |
| 1539 | - $map_jason[] = json_encode( $marker_json ); |
|
| 1539 | + $map_jason[] = json_encode($marker_json); |
|
| 1540 | 1540 | |
| 1541 | - $address_latitude = isset( $post->post_latitude ) ? $post->post_latitude : ''; |
|
| 1542 | - $address_longitude = isset( $post->post_longitude ) ? $post->post_longitude : ''; |
|
| 1543 | - $mapview = isset( $post->post_mapview ) ? $post->post_mapview : ''; |
|
| 1544 | - $mapzoom = isset( $post->post_mapzoom ) ? $post->post_mapzoom : ''; |
|
| 1545 | - if ( ! $mapzoom ) {
|
|
| 1541 | + $address_latitude = isset($post->post_latitude) ? $post->post_latitude : ''; |
|
| 1542 | + $address_longitude = isset($post->post_longitude) ? $post->post_longitude : ''; |
|
| 1543 | + $mapview = isset($post->post_mapview) ? $post->post_mapview : ''; |
|
| 1544 | + $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : ''; |
|
| 1545 | + if (!$mapzoom) {
|
|
| 1546 | 1546 | $mapzoom = 12; |
| 1547 | 1547 | } |
| 1548 | 1548 | |
@@ -1565,37 +1565,37 @@ discard block |
||
| 1565 | 1565 | $map_args['map_class_name'] = 'geodir-map-preview-page'; |
| 1566 | 1566 | } |
| 1567 | 1567 | |
| 1568 | - $arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user |
|
| 1568 | + $arr_detail_page_tabs = geodir_detail_page_tabs_list(); // get this sooner so we can get the active tab for the user |
|
| 1569 | 1569 | |
| 1570 | 1570 | $active_tab = ''; |
| 1571 | 1571 | $active_tab_name = ''; |
| 1572 | 1572 | $default_tab = ''; |
| 1573 | 1573 | $default_tab_name = ''; |
| 1574 | - foreach ( $arr_detail_page_tabs as $tab_index => $tabs ) {
|
|
| 1575 | - if ( isset( $tabs['is_active_tab'] ) && $tabs['is_active_tab'] && ! empty( $tabs['is_display'] ) && isset( $tabs['heading_text'] ) && $tabs['heading_text'] ) {
|
|
| 1574 | + foreach ($arr_detail_page_tabs as $tab_index => $tabs) {
|
|
| 1575 | + if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
|
|
| 1576 | 1576 | $active_tab = $tab_index; |
| 1577 | - $active_tab_name = __( $tabs['heading_text'], 'geodirectory' ); |
|
| 1577 | + $active_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
| 1578 | 1578 | } |
| 1579 | 1579 | |
| 1580 | - if ( $default_tab === '' && ! empty( $tabs['is_display'] ) && ! empty( $tabs['heading_text'] ) ) {
|
|
| 1580 | + if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
|
|
| 1581 | 1581 | $default_tab = $tab_index; |
| 1582 | - $default_tab_name = __( $tabs['heading_text'], 'geodirectory' ); |
|
| 1582 | + $default_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
| 1583 | 1583 | } |
| 1584 | 1584 | } |
| 1585 | 1585 | |
| 1586 | - if ( $active_tab === '' && $default_tab !== '' ) { // Make first tab acs a active tab if not any tab is active.
|
|
| 1587 | - if ( isset( $arr_detail_page_tabs[ $active_tab ] ) && isset( $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] ) ) {
|
|
| 1588 | - $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] = false; |
|
| 1586 | + if ($active_tab === '' && $default_tab !== '') { // Make first tab acs a active tab if not any tab is active.
|
|
| 1587 | + if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
|
|
| 1588 | + $arr_detail_page_tabs[$active_tab]['is_active_tab'] = false; |
|
| 1589 | 1589 | } |
| 1590 | 1590 | |
| 1591 | - $arr_detail_page_tabs[ $default_tab ]['is_active_tab'] = true; |
|
| 1591 | + $arr_detail_page_tabs[$default_tab]['is_active_tab'] = true; |
|
| 1592 | 1592 | $active_tab = $default_tab; |
| 1593 | 1593 | $active_tab_name = $default_tab_name; |
| 1594 | 1594 | } |
| 1595 | - $tab_list = ( get_option( 'geodir_disable_tabs', false ) ) ? true : false; |
|
| 1595 | + $tab_list = (get_option('geodir_disable_tabs', false)) ? true : false;
|
|
| 1596 | 1596 | ?> |
| 1597 | 1597 | <div class="geodir-tabs" id="gd-tabs" style="position:relative;"> |
| 1598 | - <?php if ( ! $tab_list ){ ?>
|
|
| 1598 | + <?php if (!$tab_list) { ?>
|
|
| 1599 | 1599 | <div id="geodir-tab-mobile-menu"> |
| 1600 | 1600 | <i class="fa fa-bars"></i> |
| 1601 | 1601 | <span class="geodir-mobile-active-tab"><?php echo $active_tab_name; ?></span> |
@@ -1610,26 +1610,26 @@ discard block |
||
| 1610 | 1610 | * @since 1.0.0 |
| 1611 | 1611 | * @see 'geodir_after_tab_list' |
| 1612 | 1612 | */ |
| 1613 | - do_action( 'geodir_before_tab_list' ); ?> |
|
| 1613 | + do_action('geodir_before_tab_list'); ?>
|
|
| 1614 | 1614 | <?php |
| 1615 | 1615 | |
| 1616 | - foreach ( $arr_detail_page_tabs as $tab_index => $detail_page_tab ) {
|
|
| 1617 | - if ( $detail_page_tab['is_display'] ) {
|
|
| 1616 | + foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
|
|
| 1617 | + if ($detail_page_tab['is_display']) {
|
|
| 1618 | 1618 | |
| 1619 | - if ( ! $tab_list ) {
|
|
| 1619 | + if (!$tab_list) {
|
|
| 1620 | 1620 | ?> |
| 1621 | 1621 | <dt></dt> <!-- added to comply with validation --> |
| 1622 | - <dd <?php if ( $detail_page_tab['is_active_tab'] ){ ?>class="geodir-tab-active"<?php } ?> ><a
|
|
| 1622 | + <dd <?php if ($detail_page_tab['is_active_tab']) { ?>class="geodir-tab-active"<?php } ?> ><a
|
|
| 1623 | 1623 | data-tab="#<?php echo $tab_index; ?>" |
| 1624 | - data-status="enable"><?php _e( $detail_page_tab['heading_text'], 'geodirectory' ); ?></a> |
|
| 1624 | + data-status="enable"><?php _e($detail_page_tab['heading_text'], 'geodirectory'); ?></a> |
|
| 1625 | 1625 | </dd> |
| 1626 | 1626 | <?php |
| 1627 | 1627 | } |
| 1628 | 1628 | ob_start() // start tab content buffering |
| 1629 | 1629 | ?> |
| 1630 | 1630 | <li id="<?php echo $tab_index; ?>Tab"> |
| 1631 | - <?php if ( $tab_list ) {
|
|
| 1632 | - $tab_title = '<span class="gd-tab-list-title" ><a href="#' . $tab_index . '">' . __( $detail_page_tab['heading_text'], 'geodirectory' ) . '</a></span><hr />'; |
|
| 1631 | + <?php if ($tab_list) {
|
|
| 1632 | + $tab_title = '<span class="gd-tab-list-title" ><a href="#'.$tab_index.'">'.__($detail_page_tab['heading_text'], 'geodirectory').'</a></span><hr />'; |
|
| 1633 | 1633 | /** |
| 1634 | 1634 | * Filter the tab list title html. |
| 1635 | 1635 | * |
@@ -1639,7 +1639,7 @@ discard block |
||
| 1639 | 1639 | * @param string $tab_index The tab index type. |
| 1640 | 1640 | * @param array $detail_page_tab The array of values including title text. |
| 1641 | 1641 | */ |
| 1642 | - echo apply_filters( 'geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab ); |
|
| 1642 | + echo apply_filters('geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab);
|
|
| 1643 | 1643 | } ?> |
| 1644 | 1644 | <div id="<?php echo $tab_index; ?>" class="hash-offset"></div> |
| 1645 | 1645 | <?php |
@@ -1650,7 +1650,7 @@ discard block |
||
| 1650 | 1650 | * |
| 1651 | 1651 | * @param string $tab_index The tab name ID. |
| 1652 | 1652 | */ |
| 1653 | - do_action( 'geodir_before_tab_content', $tab_index ); |
|
| 1653 | + do_action('geodir_before_tab_content', $tab_index);
|
|
| 1654 | 1654 | |
| 1655 | 1655 | /** |
| 1656 | 1656 | * Called before the details tab content is output per tab. |
@@ -1660,21 +1660,21 @@ discard block |
||
| 1660 | 1660 | * @since 1.0.0 |
| 1661 | 1661 | * @todo do we need this if we have the hook above? 'geodir_before_tab_content' |
| 1662 | 1662 | */ |
| 1663 | - do_action( 'geodir_before_' . $tab_index . '_tab_content' ); |
|
| 1663 | + do_action('geodir_before_'.$tab_index.'_tab_content');
|
|
| 1664 | 1664 | /// write a code to generate content of each tab |
| 1665 | - switch ( $tab_index ) {
|
|
| 1665 | + switch ($tab_index) {
|
|
| 1666 | 1666 | case 'post_profile': |
| 1667 | 1667 | /** |
| 1668 | 1668 | * Called before the listing description content on the details page tab. |
| 1669 | 1669 | * |
| 1670 | 1670 | * @since 1.0.0 |
| 1671 | 1671 | */ |
| 1672 | - do_action( 'geodir_before_description_on_listing_detail' ); |
|
| 1673 | - if ( geodir_is_page( 'detail' ) ) {
|
|
| 1672 | + do_action('geodir_before_description_on_listing_detail');
|
|
| 1673 | + if (geodir_is_page('detail')) {
|
|
| 1674 | 1674 | the_content(); |
| 1675 | 1675 | } else {
|
| 1676 | 1676 | /** This action is documented in geodirectory_template_actions.php */ |
| 1677 | - echo apply_filters( 'the_content', stripslashes( $post->post_desc ) ); |
|
| 1677 | + echo apply_filters('the_content', stripslashes($post->post_desc));
|
|
| 1678 | 1678 | } |
| 1679 | 1679 | |
| 1680 | 1680 | /** |
@@ -1682,7 +1682,7 @@ discard block |
||
| 1682 | 1682 | * |
| 1683 | 1683 | * @since 1.0.0 |
| 1684 | 1684 | */ |
| 1685 | - do_action( 'geodir_after_description_on_listing_detail' ); |
|
| 1685 | + do_action('geodir_after_description_on_listing_detail');
|
|
| 1686 | 1686 | break; |
| 1687 | 1687 | case 'post_info': |
| 1688 | 1688 | echo $geodir_post_detail_fields; |
@@ -1692,32 +1692,32 @@ discard block |
||
| 1692 | 1692 | break; |
| 1693 | 1693 | case 'post_video': |
| 1694 | 1694 | // some browsers hide $_POST data if used for embeds so we repalce with a placeholder |
| 1695 | - if ( $preview ) {
|
|
| 1696 | - if ( $video ) {
|
|
| 1697 | - 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>"; |
|
| 1695 | + if ($preview) {
|
|
| 1696 | + if ($video) {
|
|
| 1697 | + 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>";
|
|
| 1698 | 1698 | } |
| 1699 | 1699 | } else {
|
| 1700 | 1700 | |
| 1701 | 1701 | // stop payment manager filtering content length |
| 1702 | - $filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' ); |
|
| 1703 | - if ( false !== $filter_priority ) {
|
|
| 1704 | - remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority ); |
|
| 1702 | + $filter_priority = has_filter('the_content', 'geodir_payments_the_content');
|
|
| 1703 | + if (false !== $filter_priority) {
|
|
| 1704 | + remove_filter('the_content', 'geodir_payments_the_content', $filter_priority);
|
|
| 1705 | 1705 | } |
| 1706 | 1706 | |
| 1707 | 1707 | /** This action is documented in geodirectory_template_actions.php */ |
| 1708 | - echo apply_filters( 'the_content', stripslashes( $video ) );// we apply the_content filter so oembed works also; |
|
| 1708 | + echo apply_filters('the_content', stripslashes($video)); // we apply the_content filter so oembed works also;
|
|
| 1709 | 1709 | |
| 1710 | - if ( false !== $filter_priority ) {
|
|
| 1711 | - add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority ); |
|
| 1710 | + if (false !== $filter_priority) {
|
|
| 1711 | + add_filter('the_content', 'geodir_payments_the_content', $filter_priority);
|
|
| 1712 | 1712 | } |
| 1713 | 1713 | } |
| 1714 | 1714 | break; |
| 1715 | 1715 | case 'special_offers': |
| 1716 | - echo apply_filters( 'gd_special_offers_content', wpautop( stripslashes( $special_offers ) ) ); |
|
| 1716 | + echo apply_filters('gd_special_offers_content', wpautop(stripslashes($special_offers)));
|
|
| 1717 | 1717 | |
| 1718 | 1718 | break; |
| 1719 | 1719 | case 'post_map': |
| 1720 | - geodir_draw_map( $map_args ); |
|
| 1720 | + geodir_draw_map($map_args); |
|
| 1721 | 1721 | break; |
| 1722 | 1722 | case 'reviews': |
| 1723 | 1723 | comments_template(); |
@@ -1726,7 +1726,7 @@ discard block |
||
| 1726 | 1726 | echo $related_listing; |
| 1727 | 1727 | break; |
| 1728 | 1728 | default: {
|
| 1729 | - 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'] ) ) {
|
|
| 1729 | + 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'])) {
|
|
| 1730 | 1730 | echo $detail_page_tab['tab_content']; |
| 1731 | 1731 | } |
| 1732 | 1732 | } |
@@ -1738,7 +1738,7 @@ discard block |
||
| 1738 | 1738 | * |
| 1739 | 1739 | * @since 1.0.0 |
| 1740 | 1740 | */ |
| 1741 | - do_action( 'geodir_after_tab_content', $tab_index ); |
|
| 1741 | + do_action('geodir_after_tab_content', $tab_index);
|
|
| 1742 | 1742 | |
| 1743 | 1743 | /** |
| 1744 | 1744 | * Called after the details tab content is output per tab. |
@@ -1748,7 +1748,7 @@ discard block |
||
| 1748 | 1748 | * @since 1.0.0 |
| 1749 | 1749 | * @todo do we need this if we have the hook above? 'geodir_after_tab_content' |
| 1750 | 1750 | */ |
| 1751 | - do_action( 'geodir_after_' . $tab_index . '_tab_content' ); |
|
| 1751 | + do_action('geodir_after_'.$tab_index.'_tab_content');
|
|
| 1752 | 1752 | ?> </li> |
| 1753 | 1753 | <?php |
| 1754 | 1754 | /** |
@@ -1756,7 +1756,7 @@ discard block |
||
| 1756 | 1756 | * |
| 1757 | 1757 | * @since 1.0.0 |
| 1758 | 1758 | */ |
| 1759 | - $arr_detail_page_tabs[ $tab_index ]['tab_content'] = apply_filters( "geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean() ); |
|
| 1759 | + $arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_".$detail_page_tab['tab_content']."_tab_content", ob_get_clean());
|
|
| 1760 | 1760 | } // end of if for is_display |
| 1761 | 1761 | }// end of foreach |
| 1762 | 1762 | |
@@ -1766,14 +1766,14 @@ discard block |
||
| 1766 | 1766 | * @since 1.0.0 |
| 1767 | 1767 | * @see 'geodir_before_tab_list' |
| 1768 | 1768 | */ |
| 1769 | - do_action( 'geodir_after_tab_list' ); |
|
| 1769 | + do_action('geodir_after_tab_list');
|
|
| 1770 | 1770 | ?> |
| 1771 | - <?php if ( ! $tab_list ){ ?></dl><?php } ?>
|
|
| 1772 | - <ul class="geodir-tabs-content entry-content <?php if ( $tab_list ) { ?>geodir-tabs-list<?php } ?>"
|
|
| 1771 | + <?php if (!$tab_list) { ?></dl><?php } ?>
|
|
| 1772 | + <ul class="geodir-tabs-content entry-content <?php if ($tab_list) { ?>geodir-tabs-list<?php } ?>"
|
|
| 1773 | 1773 | style="position:relative;"> |
| 1774 | 1774 | <?php |
| 1775 | - foreach ( $arr_detail_page_tabs as $detail_page_tab ) {
|
|
| 1776 | - if ( $detail_page_tab['is_display'] && ! empty( $detail_page_tab['tab_content'] ) ) {
|
|
| 1775 | + foreach ($arr_detail_page_tabs as $detail_page_tab) {
|
|
| 1776 | + if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
|
|
| 1777 | 1777 | echo $detail_page_tab['tab_content']; |
| 1778 | 1778 | }// end of if |
| 1779 | 1779 | }// end of foreach |
@@ -1783,11 +1783,11 @@ discard block |
||
| 1783 | 1783 | * |
| 1784 | 1784 | * @since 1.0.0 |
| 1785 | 1785 | */ |
| 1786 | - do_action( 'geodir_add_tab_content' ); ?> |
|
| 1786 | + do_action('geodir_add_tab_content'); ?>
|
|
| 1787 | 1787 | </ul> |
| 1788 | 1788 | <!--gd-tabs-content ul end--> |
| 1789 | 1789 | </div> |
| 1790 | - <?php if ( ! $tab_list ) { ?>
|
|
| 1790 | + <?php if (!$tab_list) { ?>
|
|
| 1791 | 1791 | <script> |
| 1792 | 1792 | if (window.location.hash && window.location.hash.indexOf('&') === -1 && jQuery(window.location.hash + 'Tab').length) {
|
| 1793 | 1793 | hashVal = window.location.hash; |
@@ -1819,31 +1819,31 @@ discard block |
||
| 1819 | 1819 | * |
| 1820 | 1820 | * @return mixed Image file. |
| 1821 | 1821 | */ |
| 1822 | -function geodir_exif( $file ) {
|
|
| 1823 | - if ( empty( $file ) || ! is_array( $file ) ) {
|
|
| 1822 | +function geodir_exif($file) {
|
|
| 1823 | + if (empty($file) || !is_array($file)) {
|
|
| 1824 | 1824 | return $file; |
| 1825 | 1825 | } |
| 1826 | 1826 | |
| 1827 | - $file_path = ! empty( $file['tmp_name'] ) ? sanitize_text_field( $file['tmp_name'] ) : ''; |
|
| 1828 | - if ( ! ( $file_path && file_exists( $file_path ) ) ) {
|
|
| 1827 | + $file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : ''; |
|
| 1828 | + if (!($file_path && file_exists($file_path))) {
|
|
| 1829 | 1829 | return $file; |
| 1830 | 1830 | } |
| 1831 | 1831 | $file['file'] = $file_path; |
| 1832 | 1832 | |
| 1833 | - if ( ! file_is_valid_image( $file_path ) ) {
|
|
| 1833 | + if (!file_is_valid_image($file_path)) {
|
|
| 1834 | 1834 | return $file; // Bail if file is not an image. |
| 1835 | 1835 | } |
| 1836 | 1836 | |
| 1837 | - if ( ! function_exists( 'wp_get_image_editor' ) ) {
|
|
| 1837 | + if (!function_exists('wp_get_image_editor')) {
|
|
| 1838 | 1838 | return $file; |
| 1839 | 1839 | } |
| 1840 | 1840 | |
| 1841 | 1841 | $mime_type = $file['type']; |
| 1842 | 1842 | $exif = array(); |
| 1843 | - if ( $mime_type == 'image/jpeg' && function_exists( 'exif_read_data' ) ) {
|
|
| 1843 | + if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
|
|
| 1844 | 1844 | try {
|
| 1845 | - $exif = exif_read_data( $file_path ); |
|
| 1846 | - } catch ( Exception $e ) {
|
|
| 1845 | + $exif = exif_read_data($file_path); |
|
| 1846 | + } catch (Exception $e) {
|
|
| 1847 | 1847 | $exif = array(); |
| 1848 | 1848 | } |
| 1849 | 1849 | } |
@@ -1852,13 +1852,13 @@ discard block |
||
| 1852 | 1852 | $flip = false; |
| 1853 | 1853 | $modify = false; |
| 1854 | 1854 | $orientation = 0; |
| 1855 | - if ( ! empty( $exif ) && isset( $exif['Orientation'] ) ) {
|
|
| 1856 | - switch ( (int) $exif['Orientation'] ) {
|
|
| 1855 | + if (!empty($exif) && isset($exif['Orientation'])) {
|
|
| 1856 | + switch ((int) $exif['Orientation']) {
|
|
| 1857 | 1857 | case 1: |
| 1858 | 1858 | // do nothing |
| 1859 | 1859 | break; |
| 1860 | 1860 | case 2: |
| 1861 | - $flip = array( false, true ); |
|
| 1861 | + $flip = array(false, true); |
|
| 1862 | 1862 | $modify = true; |
| 1863 | 1863 | break; |
| 1864 | 1864 | case 3: |
@@ -1867,13 +1867,13 @@ discard block |
||
| 1867 | 1867 | $modify = true; |
| 1868 | 1868 | break; |
| 1869 | 1869 | case 4: |
| 1870 | - $flip = array( true, false ); |
|
| 1870 | + $flip = array(true, false); |
|
| 1871 | 1871 | $modify = true; |
| 1872 | 1872 | break; |
| 1873 | 1873 | case 5: |
| 1874 | 1874 | $orientation = - 90; |
| 1875 | 1875 | $rotate = true; |
| 1876 | - $flip = array( false, true ); |
|
| 1876 | + $flip = array(false, true); |
|
| 1877 | 1877 | $modify = true; |
| 1878 | 1878 | break; |
| 1879 | 1879 | case 6: |
@@ -1884,7 +1884,7 @@ discard block |
||
| 1884 | 1884 | case 7: |
| 1885 | 1885 | $orientation = - 270; |
| 1886 | 1886 | $rotate = true; |
| 1887 | - $flip = array( false, true ); |
|
| 1887 | + $flip = array(false, true); |
|
| 1888 | 1888 | $modify = true; |
| 1889 | 1889 | break; |
| 1890 | 1890 | case 8: |
@@ -1910,31 +1910,31 @@ discard block |
||
| 1910 | 1910 | * @param int|null $quality Image Compression quality between 1-100% scale. Default null. |
| 1911 | 1911 | * @param string $quality Image mime type. |
| 1912 | 1912 | */ |
| 1913 | - $quality = apply_filters( 'geodir_image_upload_set_quality', $quality, $mime_type ); |
|
| 1914 | - if ( $quality !== null ) {
|
|
| 1913 | + $quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
|
|
| 1914 | + if ($quality !== null) {
|
|
| 1915 | 1915 | $modify = true; |
| 1916 | 1916 | } |
| 1917 | 1917 | |
| 1918 | - if ( ! $modify ) {
|
|
| 1918 | + if (!$modify) {
|
|
| 1919 | 1919 | return $file; // no change |
| 1920 | 1920 | } |
| 1921 | 1921 | |
| 1922 | - $image = wp_get_image_editor( $file_path ); |
|
| 1923 | - if ( ! is_wp_error( $image ) ) {
|
|
| 1924 | - if ( $rotate ) {
|
|
| 1925 | - $image->rotate( $orientation ); |
|
| 1922 | + $image = wp_get_image_editor($file_path); |
|
| 1923 | + if (!is_wp_error($image)) {
|
|
| 1924 | + if ($rotate) {
|
|
| 1925 | + $image->rotate($orientation); |
|
| 1926 | 1926 | } |
| 1927 | 1927 | |
| 1928 | - if ( ! empty( $flip ) ) {
|
|
| 1929 | - $image->flip( $flip[0], $flip[1] ); |
|
| 1928 | + if (!empty($flip)) {
|
|
| 1929 | + $image->flip($flip[0], $flip[1]); |
|
| 1930 | 1930 | } |
| 1931 | 1931 | |
| 1932 | - if ( $quality !== null ) {
|
|
| 1933 | - $image->set_quality( (int) $quality ); |
|
| 1932 | + if ($quality !== null) {
|
|
| 1933 | + $image->set_quality((int) $quality); |
|
| 1934 | 1934 | } |
| 1935 | 1935 | |
| 1936 | - $result = $image->save( $file_path ); |
|
| 1937 | - if ( ! is_wp_error( $result ) ) {
|
|
| 1936 | + $result = $image->save($file_path); |
|
| 1937 | + if (!is_wp_error($result)) {
|
|
| 1938 | 1938 | $file['file'] = $result['path']; |
| 1939 | 1939 | $file['tmp_name'] = $result['path']; |
| 1940 | 1940 | } |
@@ -1961,7 +1961,7 @@ discard block |
||
| 1961 | 1961 | * |
| 1962 | 1962 | * @return string Returns the recent reviews html. |
| 1963 | 1963 | */ |
| 1964 | -function geodir_get_recent_reviews( $g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false ) {
|
|
| 1964 | +function geodir_get_recent_reviews($g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false) {
|
|
| 1965 | 1965 | global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session; |
| 1966 | 1966 | $tablecomments = $wpdb->comments; |
| 1967 | 1967 | $tableposts = $wpdb->posts; |
@@ -1971,28 +1971,28 @@ discard block |
||
| 1971 | 1971 | $region_filter = ''; |
| 1972 | 1972 | $country_filter = ''; |
| 1973 | 1973 | |
| 1974 | - if ( $gd_session->get( 'gd_multi_location' ) ) {
|
|
| 1975 | - if ( $gd_ses_country = $gd_session->get( 'gd_country' ) ) {
|
|
| 1976 | - $country_filter = $wpdb->prepare( " AND r.post_country=%s ", str_replace( "-", " ", $gd_ses_country ) ); |
|
| 1974 | + if ($gd_session->get('gd_multi_location')) {
|
|
| 1975 | + if ($gd_ses_country = $gd_session->get('gd_country')) {
|
|
| 1976 | + $country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
|
|
| 1977 | 1977 | } |
| 1978 | 1978 | |
| 1979 | - if ( $gd_ses_region = $gd_session->get( 'gd_region' ) ) {
|
|
| 1980 | - $region_filter = $wpdb->prepare( " AND r.post_region=%s ", str_replace( "-", " ", $gd_ses_region ) ); |
|
| 1979 | + if ($gd_ses_region = $gd_session->get('gd_region')) {
|
|
| 1980 | + $region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
|
|
| 1981 | 1981 | } |
| 1982 | 1982 | |
| 1983 | - if ( $gd_ses_city = $gd_session->get( 'gd_city' ) ) {
|
|
| 1984 | - $city_filter = $wpdb->prepare( " AND r.post_city=%s ", str_replace( "-", " ", $gd_ses_city ) ); |
|
| 1983 | + if ($gd_ses_city = $gd_session->get('gd_city')) {
|
|
| 1984 | + $city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
|
|
| 1985 | 1985 | } |
| 1986 | 1986 | } |
| 1987 | 1987 | |
| 1988 | 1988 | $review_table = GEODIR_REVIEW_TABLE; |
| 1989 | 1989 | $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 $review_table as r WHERE r.post_status = 1 AND r.status =1 AND r.overall_rating>=1 $country_filter $region_filter $city_filter ORDER BY r.post_date DESC, r.id DESC LIMIT $no_comments"; |
| 1990 | 1990 | |
| 1991 | - $comments = $wpdb->get_results( $request ); |
|
| 1991 | + $comments = $wpdb->get_results($request); |
|
| 1992 | 1992 | |
| 1993 | - foreach ( $comments as $comment ) {
|
|
| 1993 | + foreach ($comments as $comment) {
|
|
| 1994 | 1994 | // Set the extra comment info needed. |
| 1995 | - $comment_extra = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID" ); |
|
| 1995 | + $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
|
|
| 1996 | 1996 | //echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID"; |
| 1997 | 1997 | $comment->comment_content = $comment_extra->comment_content; |
| 1998 | 1998 | $comment->comment_author = $comment_extra->comment_author; |
@@ -2000,75 +2000,75 @@ discard block |
||
| 2000 | 2000 | |
| 2001 | 2001 | $comment_id = ''; |
| 2002 | 2002 | $comment_id = $comment->comment_ID; |
| 2003 | - $comment_content = strip_tags( $comment->comment_content ); |
|
| 2003 | + $comment_content = strip_tags($comment->comment_content); |
|
| 2004 | 2004 | |
| 2005 | - $comment_content = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content ); |
|
| 2005 | + $comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
|
|
| 2006 | 2006 | |
| 2007 | - $permalink = get_permalink( $comment->ID ) . "#comment-" . $comment->comment_ID; |
|
| 2007 | + $permalink = get_permalink($comment->ID)."#comment-".$comment->comment_ID; |
|
| 2008 | 2008 | $comment_author_email = $comment->comment_author_email; |
| 2009 | 2009 | $comment_post_ID = $comment->post_id; |
| 2010 | 2010 | |
| 2011 | 2011 | $na = true; |
| 2012 | - if ( function_exists( 'icl_object_id' ) && icl_object_id( $comment_post_ID, $comment->post_type, true ) ) {
|
|
| 2013 | - $comment_post_ID2 = icl_object_id( $comment_post_ID, $comment->post_type, false ); |
|
| 2014 | - if ( $comment_post_ID == $comment_post_ID2 ) {
|
|
| 2012 | + if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
|
|
| 2013 | + $comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false); |
|
| 2014 | + if ($comment_post_ID == $comment_post_ID2) {
|
|
| 2015 | 2015 | } else {
|
| 2016 | 2016 | $na = false; |
| 2017 | 2017 | } |
| 2018 | 2018 | } |
| 2019 | 2019 | |
| 2020 | - $post_title = get_the_title( $comment_post_ID ); |
|
| 2021 | - $permalink = get_permalink( $comment_post_ID ); |
|
| 2022 | - $comment_permalink = $permalink . "#comment-" . $comment->comment_ID; |
|
| 2023 | - $read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __( 'Read more', 'geodirectory' ) . '</a>'; |
|
| 2020 | + $post_title = get_the_title($comment_post_ID); |
|
| 2021 | + $permalink = get_permalink($comment_post_ID); |
|
| 2022 | + $comment_permalink = $permalink."#comment-".$comment->comment_ID; |
|
| 2023 | + $read_more = '<a class="comment_excerpt" href="'.$comment_permalink.'">'.__('Read more', 'geodirectory').'</a>';
|
|
| 2024 | 2024 | |
| 2025 | - $comment_content_length = strlen( $comment_content ); |
|
| 2026 | - if ( $comment_content_length > $comment_lenth ) {
|
|
| 2027 | - $comment_excerpt = mb_substr( $comment_content, 0, $comment_lenth ) . '... ' . $read_more; |
|
| 2025 | + $comment_content_length = strlen($comment_content); |
|
| 2026 | + if ($comment_content_length > $comment_lenth) {
|
|
| 2027 | + $comment_excerpt = mb_substr($comment_content, 0, $comment_lenth).'... '.$read_more; |
|
| 2028 | 2028 | } else {
|
| 2029 | 2029 | $comment_excerpt = $comment_content; |
| 2030 | 2030 | } |
| 2031 | 2031 | |
| 2032 | - if ( $comment->user_id ) {
|
|
| 2033 | - $user_profile_url = get_author_posts_url( $comment->user_id ); |
|
| 2032 | + if ($comment->user_id) {
|
|
| 2033 | + $user_profile_url = get_author_posts_url($comment->user_id); |
|
| 2034 | 2034 | } else {
|
| 2035 | 2035 | $user_profile_url = ''; |
| 2036 | 2036 | } |
| 2037 | 2037 | |
| 2038 | - if ( $comment_id && $na ) {
|
|
| 2038 | + if ($comment_id && $na) {
|
|
| 2039 | 2039 | $comments_echo .= '<li class="clearfix">'; |
| 2040 | - $comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">"; |
|
| 2041 | - if ( function_exists( 'get_avatar' ) ) {
|
|
| 2042 | - if ( ! isset( $comment->comment_type ) ) {
|
|
| 2043 | - if ( $user_profile_url ) {
|
|
| 2044 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 2040 | + $comments_echo .= "<span class=\"li".$comment_id." geodir_reviewer_image\">"; |
|
| 2041 | + if (function_exists('get_avatar')) {
|
|
| 2042 | + if (!isset($comment->comment_type)) {
|
|
| 2043 | + if ($user_profile_url) {
|
|
| 2044 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
| 2045 | 2045 | } |
| 2046 | - $comments_echo .= get_avatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
| 2047 | - if ( $user_profile_url ) {
|
|
| 2046 | + $comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
| 2047 | + if ($user_profile_url) {
|
|
| 2048 | 2048 | $comments_echo .= '</a>'; |
| 2049 | 2049 | } |
| 2050 | - } elseif ( ( isset( $comment->comment_type ) && $comment->comment_type == 'trackback' ) || ( isset( $comment->comment_type ) && $comment->comment_type == 'pingback' ) ) {
|
|
| 2051 | - if ( $user_profile_url ) {
|
|
| 2052 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 2050 | + } elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
|
|
| 2051 | + if ($user_profile_url) {
|
|
| 2052 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
| 2053 | 2053 | } |
| 2054 | - $comments_echo .= get_avatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
| 2054 | + $comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
| 2055 | 2055 | } |
| 2056 | - } elseif ( function_exists( 'gravatar' ) ) {
|
|
| 2057 | - if ( $user_profile_url ) {
|
|
| 2058 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 2056 | + } elseif (function_exists('gravatar')) {
|
|
| 2057 | + if ($user_profile_url) {
|
|
| 2058 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
| 2059 | 2059 | } |
| 2060 | 2060 | $comments_echo .= "<img src=\""; |
| 2061 | - if ( '' == $comment->comment_type ) {
|
|
| 2062 | - $comments_echo .= gravatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
| 2063 | - if ( $user_profile_url ) {
|
|
| 2061 | + if ('' == $comment->comment_type) {
|
|
| 2062 | + $comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
| 2063 | + if ($user_profile_url) {
|
|
| 2064 | 2064 | $comments_echo .= '</a>'; |
| 2065 | 2065 | } |
| 2066 | - } elseif ( ( 'trackback' == $comment->comment_type ) || ( 'pingback' == $comment->comment_type ) ) {
|
|
| 2067 | - if ( $user_profile_url ) {
|
|
| 2068 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 2066 | + } elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
|
|
| 2067 | + if ($user_profile_url) {
|
|
| 2068 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
| 2069 | 2069 | } |
| 2070 | - $comments_echo .= gravatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
| 2071 | - if ( $user_profile_url ) {
|
|
| 2070 | + $comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
| 2071 | + if ($user_profile_url) {
|
|
| 2072 | 2072 | $comments_echo .= '</a>'; |
| 2073 | 2073 | } |
| 2074 | 2074 | } |
@@ -2078,17 +2078,17 @@ discard block |
||
| 2078 | 2078 | $comments_echo .= "</span>\n"; |
| 2079 | 2079 | |
| 2080 | 2080 | $comments_echo .= '<span class="geodir_reviewer_content">'; |
| 2081 | - if ( $comment->user_id ) {
|
|
| 2082 | - $comments_echo .= '<a href="' . get_author_posts_url( $comment->user_id ) . '">'; |
|
| 2081 | + if ($comment->user_id) {
|
|
| 2082 | + $comments_echo .= '<a href="'.get_author_posts_url($comment->user_id).'">'; |
|
| 2083 | 2083 | } |
| 2084 | - $comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> '; |
|
| 2085 | - if ( $comment->user_id ) {
|
|
| 2084 | + $comments_echo .= '<span class="geodir_reviewer_author">'.$comment->comment_author.'</span> '; |
|
| 2085 | + if ($comment->user_id) {
|
|
| 2086 | 2086 | $comments_echo .= '</a>'; |
| 2087 | 2087 | } |
| 2088 | - $comments_echo .= '<span class="geodir_reviewer_reviewed">' . __( 'reviewed', 'geodirectory' ) . '</span> '; |
|
| 2089 | - $comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>'; |
|
| 2090 | - $comments_echo .= geodir_get_rating_stars( $comment->overall_rating, $comment_post_ID ); |
|
| 2091 | - $comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . ''; |
|
| 2088 | + $comments_echo .= '<span class="geodir_reviewer_reviewed">'.__('reviewed', 'geodirectory').'</span> ';
|
|
| 2089 | + $comments_echo .= '<a href="'.$permalink.'" class="geodir_reviewer_title">'.$post_title.'</a>'; |
|
| 2090 | + $comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID); |
|
| 2091 | + $comments_echo .= '<p class="geodir_reviewer_text">'.$comment_excerpt.''; |
|
| 2092 | 2092 | //echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
|
| 2093 | 2093 | $comments_echo .= '</p>'; |
| 2094 | 2094 | |
@@ -2108,25 +2108,25 @@ discard block |
||
| 2108 | 2108 | * @return array Returns post categories as an array. |
| 2109 | 2109 | */ |
| 2110 | 2110 | function geodir_home_map_cats_key_value_array() {
|
| 2111 | - $post_types = geodir_get_posttypes( 'object' ); |
|
| 2111 | + $post_types = geodir_get_posttypes('object');
|
|
| 2112 | 2112 | |
| 2113 | 2113 | $return = array(); |
| 2114 | - if ( ! empty( $post_types ) ) {
|
|
| 2115 | - foreach ( $post_types as $key => $post_type ) {
|
|
| 2116 | - $cpt_name = __( $post_type->labels->singular_name, 'geodirectory' ); |
|
| 2117 | - $post_type_name = sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ); |
|
| 2118 | - $taxonomies = geodir_get_taxonomies( $key ); |
|
| 2119 | - $cat_taxonomy = ! empty( $taxonomies[0] ) ? $taxonomies[0] : null; |
|
| 2120 | - $cat_terms = $cat_taxonomy ? get_terms( $cat_taxonomy ) : null; |
|
| 2121 | - |
|
| 2122 | - if ( ! empty( $cat_terms ) ) {
|
|
| 2123 | - $return[ 'optgroup_start-' . $key ] = $post_type_name; |
|
| 2124 | - |
|
| 2125 | - foreach ( $cat_terms as $cat_term ) {
|
|
| 2126 | - $return[ $key . '_' . $cat_term->term_id ] = $cat_term->name; |
|
| 2114 | + if (!empty($post_types)) {
|
|
| 2115 | + foreach ($post_types as $key => $post_type) {
|
|
| 2116 | + $cpt_name = __($post_type->labels->singular_name, 'geodirectory'); |
|
| 2117 | + $post_type_name = sprintf(__('%s Categories', 'geodirectory'), $cpt_name);
|
|
| 2118 | + $taxonomies = geodir_get_taxonomies($key); |
|
| 2119 | + $cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : null; |
|
| 2120 | + $cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : null; |
|
| 2121 | + |
|
| 2122 | + if (!empty($cat_terms)) {
|
|
| 2123 | + $return['optgroup_start-'.$key] = $post_type_name; |
|
| 2124 | + |
|
| 2125 | + foreach ($cat_terms as $cat_term) {
|
|
| 2126 | + $return[$key.'_'.$cat_term->term_id] = $cat_term->name; |
|
| 2127 | 2127 | } |
| 2128 | 2128 | |
| 2129 | - $return[ 'optgroup_end-' . $key ] = $post_type_name; |
|
| 2129 | + $return['optgroup_end-'.$key] = $post_type_name; |
|
| 2130 | 2130 | } |
| 2131 | 2131 | } |
| 2132 | 2132 | } |
@@ -2142,14 +2142,14 @@ discard block |
||
| 2142 | 2142 | * @package GeoDirectory |
| 2143 | 2143 | */ |
| 2144 | 2144 | function geodir_twitter_tweet_button() {
|
| 2145 | - if ( isset( $_GET['gde'] ) ) {
|
|
| 2146 | - $link = '?url=' . urlencode( geodir_curPageURL() ); |
|
| 2145 | + if (isset($_GET['gde'])) {
|
|
| 2146 | + $link = '?url='.urlencode(geodir_curPageURL()); |
|
| 2147 | 2147 | } else {
|
| 2148 | 2148 | $link = ''; |
| 2149 | 2149 | } |
| 2150 | 2150 | ?> |
| 2151 | 2151 | <a href="http://twitter.com/share<?php echo $link; ?>" |
| 2152 | - class="twitter-share-button"><?php _e( 'Tweet', 'geodirectory' ); ?></a> |
|
| 2152 | + class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a>
|
|
| 2153 | 2153 | <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script> |
| 2154 | 2154 | <?php |
| 2155 | 2155 | } |
@@ -2166,10 +2166,10 @@ discard block |
||
| 2166 | 2166 | function geodir_fb_like_button() {
|
| 2167 | 2167 | global $post; |
| 2168 | 2168 | ?> |
| 2169 | - <iframe <?php if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false ) ) {
|
|
| 2169 | + <iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) {
|
|
| 2170 | 2170 | echo 'allowtransparency="true"'; |
| 2171 | 2171 | } ?> class="facebook" |
| 2172 | - 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" |
|
| 2172 | + 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" |
|
| 2173 | 2173 | style="border:none; overflow:hidden; width:100px; height:20px"></iframe> |
| 2174 | 2174 | <?php |
| 2175 | 2175 | } |
@@ -2200,7 +2200,7 @@ discard block |
||
| 2200 | 2200 | |
| 2201 | 2201 | |
| 2202 | 2202 | function geodir_listing_bounce_map_pin_on_hover() {
|
| 2203 | - if ( get_option( 'geodir_listing_hover_bounce_map_pin', true ) ) {
|
|
| 2203 | + if (get_option('geodir_listing_hover_bounce_map_pin', true)) {
|
|
| 2204 | 2204 | ?> |
| 2205 | 2205 | <script> |
| 2206 | 2206 | jQuery(function ($) {
|
@@ -2223,44 +2223,44 @@ discard block |
||
| 2223 | 2223 | } |
| 2224 | 2224 | } |
| 2225 | 2225 | |
| 2226 | -add_action( 'geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10 ); |
|
| 2226 | +add_action('geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10);
|
|
| 2227 | 2227 | |
| 2228 | -add_action( 'geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1 ); |
|
| 2229 | -function geodir_output_favourite_html_listings( $post_id ) {
|
|
| 2230 | - geodir_favourite_html( '', $post_id ); |
|
| 2228 | +add_action('geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1);
|
|
| 2229 | +function geodir_output_favourite_html_listings($post_id) {
|
|
| 2230 | + geodir_favourite_html('', $post_id);
|
|
| 2231 | 2231 | } |
| 2232 | 2232 | |
| 2233 | -add_action( 'geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2 ); |
|
| 2234 | -function geodir_output_pinpoint_html_listings( $post_id, $post ) {
|
|
| 2233 | +add_action('geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2);
|
|
| 2234 | +function geodir_output_pinpoint_html_listings($post_id, $post) {
|
|
| 2235 | 2235 | global $wp_query; |
| 2236 | 2236 | |
| 2237 | 2237 | $show_pin_point = $wp_query->is_main_query(); |
| 2238 | 2238 | |
| 2239 | - if ( ! empty( $show_pin_point ) && is_active_widget( false, "", "geodir_map_v3_listing_map" ) ) {
|
|
| 2240 | - $term_icon_url = get_tax_meta( $post->default_category, 'ct_cat_icon', false, $post->post_type ); |
|
| 2241 | - $marker_icon = isset( $term_icon_url['src'] ) ? $term_icon_url['src'] : get_option( 'geodir_default_marker_icon' ); |
|
| 2239 | + if (!empty($show_pin_point) && is_active_widget(false, "", "geodir_map_v3_listing_map")) {
|
|
| 2240 | + $term_icon_url = get_tax_meta($post->default_category, 'ct_cat_icon', false, $post->post_type); |
|
| 2241 | + $marker_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : get_option('geodir_default_marker_icon');
|
|
| 2242 | 2242 | ?> |
| 2243 | 2243 | <span class="geodir-pinpoint" |
| 2244 | - 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>
|
|
| 2244 | + 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>
|
|
| 2245 | 2245 | <a class="geodir-pinpoint-link" href="javascript:void(0)" |
| 2246 | 2246 | onclick="openMarker('listing_map_canvas' ,'<?php echo $post->ID; ?>')"
|
| 2247 | 2247 | onmouseover="animate_marker('listing_map_canvas' ,'<?php echo $post->ID; ?>')"
|
| 2248 | - onmouseout="stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')"><?php _e( 'Pinpoint', 'geodirectory' ); ?></a>
|
|
| 2248 | + onmouseout="stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')"><?php _e('Pinpoint', 'geodirectory'); ?></a>
|
|
| 2249 | 2249 | <?php |
| 2250 | 2250 | } |
| 2251 | 2251 | } |
| 2252 | 2252 | |
| 2253 | 2253 | function geodir_search_form_submit_button() {
|
| 2254 | 2254 | |
| 2255 | - $new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true; |
|
| 2255 | + $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
|
| 2256 | 2256 | |
| 2257 | - if ( $new_style ) {
|
|
| 2257 | + if ($new_style) {
|
|
| 2258 | 2258 | $default_search_button_label = '<i class="fa fa-search" aria-hidden="true"></i>'; |
| 2259 | - }else{
|
|
| 2259 | + } else {
|
|
| 2260 | 2260 | $default_search_button_label = 'Search'; |
| 2261 | 2261 | } |
| 2262 | - if ( get_option( 'geodir_search_button_label' ) && get_option( 'geodir_search_button_label' ) != 'Search' ) {
|
|
| 2263 | - $default_search_button_label = __( get_option( 'geodir_search_button_label' ), 'geodirectory' ); |
|
| 2262 | + if (get_option('geodir_search_button_label') && get_option('geodir_search_button_label') != 'Search') {
|
|
| 2263 | + $default_search_button_label = __(get_option('geodir_search_button_label'), 'geodirectory');
|
|
| 2264 | 2264 | } |
| 2265 | 2265 | |
| 2266 | 2266 | /** |
@@ -2272,78 +2272,78 @@ discard block |
||
| 2272 | 2272 | * |
| 2273 | 2273 | * @param string $default_search_button_label The current search button text. |
| 2274 | 2274 | */ |
| 2275 | - $default_search_button_label = apply_filters( 'geodir_search_default_search_button_text', $default_search_button_label ); |
|
| 2275 | + $default_search_button_label = apply_filters('geodir_search_default_search_button_text', $default_search_button_label);
|
|
| 2276 | 2276 | |
| 2277 | 2277 | $fa_class = ''; |
| 2278 | - if ( strpos( $default_search_button_label, '&#' ) !== false ) {
|
|
| 2278 | + if (strpos($default_search_button_label, '&#') !== false) {
|
|
| 2279 | 2279 | $fa_class = 'fa'; |
| 2280 | 2280 | } |
| 2281 | 2281 | |
| 2282 | 2282 | |
| 2283 | - if ( $new_style ) {
|
|
| 2283 | + if ($new_style) {
|
|
| 2284 | 2284 | ?> |
| 2285 | - <button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e( $default_search_button_label ,'geodirectory'); ?></button> |
|
| 2286 | -<?php }else{?>
|
|
| 2287 | - <input type="button" value="<?php esc_attr_e( $default_search_button_label ); ?>" |
|
| 2285 | + <button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e($default_search_button_label, 'geodirectory'); ?></button> |
|
| 2286 | +<?php } else {?>
|
|
| 2287 | + <input type="button" value="<?php esc_attr_e($default_search_button_label); ?>" |
|
| 2288 | 2288 | class="geodir_submit_search <?php echo $fa_class; ?>"/> |
| 2289 | 2289 | <?php } |
| 2290 | 2290 | } |
| 2291 | 2291 | |
| 2292 | -add_action( 'geodir_before_search_button', 'geodir_search_form_submit_button', 5000 ); |
|
| 2292 | +add_action('geodir_before_search_button', 'geodir_search_form_submit_button', 5000);
|
|
| 2293 | 2293 | |
| 2294 | 2294 | function geodir_search_form_post_type_input() {
|
| 2295 | 2295 | global $geodir_search_post_type; |
| 2296 | - $post_types = apply_filters( 'geodir_search_form_post_types', geodir_get_posttypes( 'object' ) ); |
|
| 2296 | + $post_types = apply_filters('geodir_search_form_post_types', geodir_get_posttypes('object'));
|
|
| 2297 | 2297 | $curr_post_type = $geodir_search_post_type; |
| 2298 | 2298 | |
| 2299 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
|
|
| 2299 | + if (!empty($post_types) && count((array) $post_types) > 1) {
|
|
| 2300 | 2300 | |
| 2301 | - foreach ( $post_types as $post_type => $info ){
|
|
| 2301 | + foreach ($post_types as $post_type => $info) {
|
|
| 2302 | 2302 | global $wpdb; |
| 2303 | - $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
| 2304 | - if ( ! $has_posts ) {
|
|
| 2303 | + $has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
|
|
| 2304 | + if (!$has_posts) {
|
|
| 2305 | 2305 | unset($post_types->{$post_type});
|
| 2306 | 2306 | } |
| 2307 | 2307 | } |
| 2308 | 2308 | |
| 2309 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
|
|
| 2309 | + if (!empty($post_types) && count((array) $post_types) > 1) {
|
|
| 2310 | 2310 | |
| 2311 | - $new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true; |
|
| 2312 | - if ( $new_style ) {
|
|
| 2311 | + $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
|
| 2312 | + if ($new_style) {
|
|
| 2313 | 2313 | echo "<div class='gd-search-input-wrapper gd-search-field-cpt'>"; |
| 2314 | 2314 | } |
| 2315 | 2315 | ?> |
| 2316 | 2316 | <select name="stype" class="search_by_post"> |
| 2317 | - <?php foreach ( $post_types as $post_type => $info ): |
|
| 2317 | + <?php foreach ($post_types as $post_type => $info): |
|
| 2318 | 2318 | global $wpdb; |
| 2319 | 2319 | ?> |
| 2320 | 2320 | |
| 2321 | - <option data-label="<?php echo get_post_type_archive_link( $post_type ); ?>" |
|
| 2322 | - value="<?php echo $post_type; ?>" <?php if ( isset( $_REQUEST['stype'] ) ) {
|
|
| 2323 | - if ( $post_type == $_REQUEST['stype'] ) {
|
|
| 2321 | + <option data-label="<?php echo get_post_type_archive_link($post_type); ?>" |
|
| 2322 | + value="<?php echo $post_type; ?>" <?php if (isset($_REQUEST['stype'])) {
|
|
| 2323 | + if ($post_type == $_REQUEST['stype']) {
|
|
| 2324 | 2324 | echo 'selected="selected"'; |
| 2325 | 2325 | } |
| 2326 | - } elseif ( $curr_post_type == $post_type ) {
|
|
| 2326 | + } elseif ($curr_post_type == $post_type) {
|
|
| 2327 | 2327 | echo 'selected="selected"'; |
| 2328 | - } ?>><?php _e( ucfirst( $info->labels->name ), 'geodirectory' ); ?></option> |
|
| 2328 | + } ?>><?php _e(ucfirst($info->labels->name), 'geodirectory'); ?></option> |
|
| 2329 | 2329 | |
| 2330 | 2330 | <?php endforeach; ?> |
| 2331 | 2331 | </select> |
| 2332 | 2332 | <?php |
| 2333 | - if ( $new_style ) {
|
|
| 2333 | + if ($new_style) {
|
|
| 2334 | 2334 | echo "</div>"; |
| 2335 | 2335 | } |
| 2336 | - }else{
|
|
| 2337 | - if(! empty( $post_types )){
|
|
| 2338 | - $pt_arr = (array)$post_types; |
|
| 2339 | - echo '<input type="hidden" name="stype" value="' . key( $pt_arr ) . '" />'; |
|
| 2340 | - }else{
|
|
| 2336 | + } else {
|
|
| 2337 | + if (!empty($post_types)) {
|
|
| 2338 | + $pt_arr = (array) $post_types; |
|
| 2339 | + echo '<input type="hidden" name="stype" value="'.key($pt_arr).'" />'; |
|
| 2340 | + } else {
|
|
| 2341 | 2341 | echo '<input type="hidden" name="stype" value="gd_place" />'; |
| 2342 | 2342 | } |
| 2343 | 2343 | |
| 2344 | 2344 | } |
| 2345 | 2345 | |
| 2346 | - }elseif ( ! empty( $post_types ) ) {
|
|
| 2346 | + }elseif (!empty($post_types)) {
|
|
| 2347 | 2347 | echo '<input type="hidden" name="stype" value="gd_place" />'; |
| 2348 | 2348 | } |
| 2349 | 2349 | } |
@@ -2351,26 +2351,26 @@ discard block |
||
| 2351 | 2351 | function geodir_search_form_search_input() {
|
| 2352 | 2352 | |
| 2353 | 2353 | $default_search_for_text = SEARCH_FOR_TEXT; |
| 2354 | - if ( get_option( 'geodir_search_field_default_text' ) ) {
|
|
| 2355 | - $default_search_for_text = __( get_option( 'geodir_search_field_default_text' ), 'geodirectory' ); |
|
| 2354 | + if (get_option('geodir_search_field_default_text')) {
|
|
| 2355 | + $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
|
|
| 2356 | 2356 | } |
| 2357 | 2357 | |
| 2358 | 2358 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
| 2359 | - if($new_style){
|
|
| 2359 | + if ($new_style) {
|
|
| 2360 | 2360 | echo "<div class='gd-search-input-wrapper gd-search-field-search'>"; |
| 2361 | 2361 | } |
| 2362 | 2362 | ?> |
| 2363 | 2363 | <input class="search_text" name="s" |
| 2364 | - value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) {
|
|
| 2365 | - echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) ); |
|
| 2364 | + value="<?php if (isset($_REQUEST['s']) && trim($_REQUEST['s']) != '') {
|
|
| 2365 | + echo esc_attr(stripslashes_deep($_REQUEST['s'])); |
|
| 2366 | 2366 | } else {
|
| 2367 | 2367 | echo $default_search_for_text; |
| 2368 | 2368 | } ?>" type="text" |
| 2369 | - onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}"
|
|
| 2370 | - onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}"
|
|
| 2369 | + onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql($default_search_for_text); ?>';}"
|
|
| 2370 | + onfocus="if (this.value == '<?php echo esc_sql($default_search_for_text); ?>') {this.value = '';}"
|
|
| 2371 | 2371 | onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);"> |
| 2372 | 2372 | <?php |
| 2373 | - if($new_style){
|
|
| 2373 | + if ($new_style) {
|
|
| 2374 | 2374 | echo "</div>"; |
| 2375 | 2375 | } |
| 2376 | 2376 | } |
@@ -2378,12 +2378,12 @@ discard block |
||
| 2378 | 2378 | function geodir_search_form_near_input() {
|
| 2379 | 2379 | |
| 2380 | 2380 | $default_near_text = NEAR_TEXT; |
| 2381 | - if ( get_option( 'geodir_near_field_default_text' ) ) {
|
|
| 2382 | - $default_near_text = __( get_option( 'geodir_near_field_default_text' ), 'geodirectory' ); |
|
| 2381 | + if (get_option('geodir_near_field_default_text')) {
|
|
| 2382 | + $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
|
|
| 2383 | 2383 | } |
| 2384 | 2384 | |
| 2385 | - if ( isset( $_REQUEST['snear'] ) && $_REQUEST['snear'] != '' ) {
|
|
| 2386 | - $near = esc_attr( stripslashes_deep( $_REQUEST['snear'] ) ); |
|
| 2385 | + if (isset($_REQUEST['snear']) && $_REQUEST['snear'] != '') {
|
|
| 2386 | + $near = esc_attr(stripslashes_deep($_REQUEST['snear'])); |
|
| 2387 | 2387 | } else {
|
| 2388 | 2388 | $near = $default_near_text; |
| 2389 | 2389 | } |
@@ -2397,7 +2397,7 @@ discard block |
||
| 2397 | 2397 | * @since 1.6.9 |
| 2398 | 2398 | * @param string $curr_post_type The current post type. |
| 2399 | 2399 | */ |
| 2400 | - $near_input_extra = apply_filters('geodir_near_input_extra','',$curr_post_type);
|
|
| 2400 | + $near_input_extra = apply_filters('geodir_near_input_extra', '', $curr_post_type);
|
|
| 2401 | 2401 | |
| 2402 | 2402 | |
| 2403 | 2403 | /** |
@@ -2410,7 +2410,7 @@ discard block |
||
| 2410 | 2410 | * @param string $near The current near value. |
| 2411 | 2411 | * @param string $default_near_text The default near value. |
| 2412 | 2412 | */ |
| 2413 | - $near = apply_filters( 'geodir_search_near_text', $near, $default_near_text ); |
|
| 2413 | + $near = apply_filters('geodir_search_near_text', $near, $default_near_text);
|
|
| 2414 | 2414 | /** |
| 2415 | 2415 | * Filter the default "Near" text value for the search form. |
| 2416 | 2416 | * |
@@ -2421,7 +2421,7 @@ discard block |
||
| 2421 | 2421 | * @param string $near The current near value. |
| 2422 | 2422 | * @param string $default_near_text The default near value. |
| 2423 | 2423 | */ |
| 2424 | - $default_near_text = apply_filters( 'geodir_search_default_near_text', $default_near_text, $near ); |
|
| 2424 | + $default_near_text = apply_filters('geodir_search_default_near_text', $default_near_text, $near);
|
|
| 2425 | 2425 | /** |
| 2426 | 2426 | * Filter the class for the near search input. |
| 2427 | 2427 | * |
@@ -2429,10 +2429,10 @@ discard block |
||
| 2429 | 2429 | * |
| 2430 | 2430 | * @param string $class The class for the HTML near input, default is blank. |
| 2431 | 2431 | */ |
| 2432 | - $near_class = apply_filters( 'geodir_search_near_class', '' ); |
|
| 2432 | + $near_class = apply_filters('geodir_search_near_class', '');
|
|
| 2433 | 2433 | |
| 2434 | 2434 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
| 2435 | - if($new_style){
|
|
| 2435 | + if ($new_style) {
|
|
| 2436 | 2436 | echo "<div class='gd-search-input-wrapper gd-search-field-near' $near_input_extra>"; |
| 2437 | 2437 | |
| 2438 | 2438 | do_action('geodir_before_near_input');
|
@@ -2440,30 +2440,30 @@ discard block |
||
| 2440 | 2440 | |
| 2441 | 2441 | ?> |
| 2442 | 2442 | <input name="snear" class="snear <?php echo $near_class; ?>" type="text" value="<?php echo $near; ?>" |
| 2443 | - onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql( $near ); ?>' != '' ? '<?php echo esc_sql( $near ); ?>' : '<?php echo $default_near_text; ?>');}"
|
|
| 2444 | - onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql( $near ); ?>') {this.value = '';}"
|
|
| 2445 | - onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra;?>/> |
|
| 2443 | + onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql($near); ?>' != '' ? '<?php echo esc_sql($near); ?>' : '<?php echo $default_near_text; ?>');}"
|
|
| 2444 | + onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql($near); ?>') {this.value = '';}"
|
|
| 2445 | + onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra; ?>/> |
|
| 2446 | 2446 | <?php |
| 2447 | - if($new_style){
|
|
| 2447 | + if ($new_style) {
|
|
| 2448 | 2448 | do_action('geodir_after_near_input');
|
| 2449 | 2449 | |
| 2450 | 2450 | echo "</div>"; |
| 2451 | 2451 | } |
| 2452 | 2452 | } |
| 2453 | 2453 | |
| 2454 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10 ); |
|
| 2455 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_search_input', 20 ); |
|
| 2456 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_near_input', 30 ); |
|
| 2454 | +add_action('geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10);
|
|
| 2455 | +add_action('geodir_search_form_inputs', 'geodir_search_form_search_input', 20);
|
|
| 2456 | +add_action('geodir_search_form_inputs', 'geodir_search_form_near_input', 30);
|
|
| 2457 | 2457 | |
| 2458 | -function geodir_get_search_post_type($pt=''){
|
|
| 2458 | +function geodir_get_search_post_type($pt = '') {
|
|
| 2459 | 2459 | global $geodir_search_post_type; |
| 2460 | 2460 | |
| 2461 | - if($pt!=''){return $geodir_search_post_type = $pt;}
|
|
| 2462 | - if(!empty($geodir_search_post_type)){ return $geodir_search_post_type;}
|
|
| 2461 | + if ($pt != '') {return $geodir_search_post_type = $pt; }
|
|
| 2462 | + if (!empty($geodir_search_post_type)) { return $geodir_search_post_type; }
|
|
| 2463 | 2463 | |
| 2464 | 2464 | $geodir_search_post_type = geodir_get_current_posttype(); |
| 2465 | 2465 | |
| 2466 | - if(!$geodir_search_post_type) {
|
|
| 2466 | + if (!$geodir_search_post_type) {
|
|
| 2467 | 2467 | $geodir_search_post_type = geodir_get_default_posttype(); |
| 2468 | 2468 | } |
| 2469 | 2469 | |
@@ -2471,7 +2471,7 @@ discard block |
||
| 2471 | 2471 | return $geodir_search_post_type; |
| 2472 | 2472 | } |
| 2473 | 2473 | |
| 2474 | -function geodir_search_form(){
|
|
| 2474 | +function geodir_search_form() {
|
|
| 2475 | 2475 | |
| 2476 | 2476 | geodir_get_search_post_type(); |
| 2477 | 2477 | |
@@ -2481,5 +2481,5 @@ discard block |
||
| 2481 | 2481 | die(); |
| 2482 | 2482 | } |
| 2483 | 2483 | |
| 2484 | -add_action( 'wp_ajax_geodir_search_form', 'geodir_search_form' ); |
|
| 2485 | -add_action( 'wp_ajax_nopriv_geodir_search_form', 'geodir_search_form' ); |
|
| 2486 | 2484 | \ No newline at end of file |
| 2485 | +add_action('wp_ajax_geodir_search_form', 'geodir_search_form');
|
|
| 2486 | +add_action('wp_ajax_nopriv_geodir_search_form', 'geodir_search_form'); |
|
| 2487 | 2487 | \ No newline at end of file |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | /** |
| 11 | 11 | * Get All Plugin functions from WordPress |
| 12 | 12 | */ |
| 13 | -include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 13 | +include_once(ABSPATH.'wp-admin/includes/plugin.php'); |
|
| 14 | 14 | |
| 15 | 15 | /*-----------------------------------------------------------------------------------*/ |
| 16 | 16 | /* Helper functions */ |
@@ -27,10 +27,10 @@ discard block |
||
| 27 | 27 | */ |
| 28 | 28 | function geodir_plugin_url() {
|
| 29 | 29 | |
| 30 | - if ( is_ssl() ) : |
|
| 31 | - return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
|
| 30 | + if (is_ssl()) : |
|
| 31 | + return str_replace('http://', 'https://', WP_PLUGIN_URL)."/".plugin_basename(dirname(dirname(__FILE__)));
|
|
| 32 | 32 | else : |
| 33 | - return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
|
| 33 | + return WP_PLUGIN_URL."/".plugin_basename(dirname(dirname(__FILE__))); |
|
| 34 | 34 | endif; |
| 35 | 35 | } |
| 36 | 36 | |
@@ -45,10 +45,10 @@ discard block |
||
| 45 | 45 | * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory |
| 46 | 46 | */ |
| 47 | 47 | function geodir_plugin_path() {
|
| 48 | - if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
|
|
| 49 | - return dirname( dirname( __FILE__ ) ); |
|
| 48 | + if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
|
|
| 49 | + return dirname(dirname(__FILE__)); |
|
| 50 | 50 | } else {
|
| 51 | - return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
|
| 51 | + return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__))); |
|
| 52 | 52 | } |
| 53 | 53 | } |
| 54 | 54 | |
@@ -63,10 +63,10 @@ discard block |
||
| 63 | 63 | * @return bool true or false. |
| 64 | 64 | * @todo check if this is faster than normal WP check and remove if not. |
| 65 | 65 | */ |
| 66 | -function geodir_is_plugin_active( $plugin ) {
|
|
| 67 | - $active_plugins = get_option( 'active_plugins' ); |
|
| 68 | - foreach ( $active_plugins as $key => $active_plugin ) {
|
|
| 69 | - if ( strstr( $active_plugin, $plugin ) ) {
|
|
| 66 | +function geodir_is_plugin_active($plugin) {
|
|
| 67 | + $active_plugins = get_option('active_plugins');
|
|
| 68 | + foreach ($active_plugins as $key => $active_plugin) {
|
|
| 69 | + if (strstr($active_plugin, $plugin)) {
|
|
| 70 | 70 | return true; |
| 71 | 71 | } |
| 72 | 72 | } |
@@ -88,8 +88,8 @@ discard block |
||
| 88 | 88 | * |
| 89 | 89 | * @return bool|int|string the formatted date. |
| 90 | 90 | */ |
| 91 | -function geodir_get_formated_date( $date ) {
|
|
| 92 | - return mysql2date( get_option( 'date_format' ), $date ); |
|
| 91 | +function geodir_get_formated_date($date) {
|
|
| 92 | + return mysql2date(get_option('date_format'), $date);
|
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -105,8 +105,8 @@ discard block |
||
| 105 | 105 | * |
| 106 | 106 | * @return bool|int|string the formatted time. |
| 107 | 107 | */ |
| 108 | -function geodir_get_formated_time( $time ) {
|
|
| 109 | - return mysql2date( get_option( 'time_format' ), $time, $translate = true ); |
|
| 108 | +function geodir_get_formated_time($time) {
|
|
| 109 | + return mysql2date(get_option('time_format'), $time, $translate = true);
|
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | |
@@ -124,35 +124,35 @@ discard block |
||
| 124 | 124 | * |
| 125 | 125 | * @return string Formatted link. |
| 126 | 126 | */ |
| 127 | -function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
|
|
| 128 | - if ( $use_existing_arguments ) {
|
|
| 127 | +function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
|
|
| 128 | + if ($use_existing_arguments) {
|
|
| 129 | 129 | $params = $params + $_GET; |
| 130 | 130 | } |
| 131 | - if ( ! $params ) {
|
|
| 131 | + if (!$params) {
|
|
| 132 | 132 | return $url; |
| 133 | 133 | } |
| 134 | 134 | $link = $url; |
| 135 | - if ( strpos( $link, '?' ) === false ) {
|
|
| 135 | + if (strpos($link, '?') === false) {
|
|
| 136 | 136 | $link .= '?'; |
| 137 | 137 | } //If there is no '?' add one at the end |
| 138 | - elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
|
|
| 138 | + elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
|
|
| 139 | 139 | $link .= '&'; |
| 140 | 140 | } //If there is no '&' at the END, add one. |
| 141 | - elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
|
|
| 141 | + elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
|
|
| 142 | 142 | $link .= '&'; |
| 143 | 143 | } //If there is no '&' at the END, add one. |
| 144 | 144 | |
| 145 | 145 | $params_arr = array(); |
| 146 | - foreach ( $params as $key => $value ) {
|
|
| 147 | - if ( gettype( $value ) == 'array' ) { //Handle array data properly
|
|
| 148 | - foreach ( $value as $val ) {
|
|
| 149 | - $params_arr[] = $key . '[]=' . urlencode( $val ); |
|
| 146 | + foreach ($params as $key => $value) {
|
|
| 147 | + if (gettype($value) == 'array') { //Handle array data properly
|
|
| 148 | + foreach ($value as $val) {
|
|
| 149 | + $params_arr[] = $key.'[]='.urlencode($val); |
|
| 150 | 150 | } |
| 151 | 151 | } else {
|
| 152 | - $params_arr[] = $key . '=' . urlencode( $value ); |
|
| 152 | + $params_arr[] = $key.'='.urlencode($value); |
|
| 153 | 153 | } |
| 154 | 154 | } |
| 155 | - $link .= implode( '&', $params_arr ); |
|
| 155 | + $link .= implode('&', $params_arr);
|
|
| 156 | 156 | |
| 157 | 157 | return $link; |
| 158 | 158 | } |
@@ -169,18 +169,18 @@ discard block |
||
| 169 | 169 | * |
| 170 | 170 | * @return string Listing page url if valid. Otherwise home url will be returned. |
| 171 | 171 | */ |
| 172 | -function geodir_get_addlisting_link( $post_type = '' ) {
|
|
| 172 | +function geodir_get_addlisting_link($post_type = '') {
|
|
| 173 | 173 | global $wpdb; |
| 174 | 174 | |
| 175 | 175 | //$check_pkg = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
|
| 176 | 176 | $check_pkg = 1; |
| 177 | - if ( post_type_exists( $post_type ) && $check_pkg ) {
|
|
| 177 | + if (post_type_exists($post_type) && $check_pkg) {
|
|
| 178 | 178 | |
| 179 | - $add_listing_link = get_page_link( geodir_add_listing_page_id() ); |
|
| 179 | + $add_listing_link = get_page_link(geodir_add_listing_page_id()); |
|
| 180 | 180 | |
| 181 | - return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) ); |
|
| 181 | + return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
|
|
| 182 | 182 | } else {
|
| 183 | - return get_bloginfo( 'url' ); |
|
| 183 | + return get_bloginfo('url');
|
|
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | 186 | |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) {
|
| 209 | 209 | // To build the entire URI we need to prepend the protocol, and the http host |
| 210 | 210 | // to the URI string. |
| 211 | - $pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
| 211 | + $pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; |
|
| 212 | 212 | } else {
|
| 213 | 213 | /* |
| 214 | 214 | * Since we do not have REQUEST_URI to work with, we will assume we are |
@@ -217,11 +217,11 @@ discard block |
||
| 217 | 217 | * |
| 218 | 218 | * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS |
| 219 | 219 | */ |
| 220 | - $pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME']; |
|
| 220 | + $pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME']; |
|
| 221 | 221 | |
| 222 | 222 | // If the query string exists append it to the URI string |
| 223 | 223 | if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
|
| 224 | - $pageURL .= '?' . $_SERVER['QUERY_STRING']; |
|
| 224 | + $pageURL .= '?'.$_SERVER['QUERY_STRING']; |
|
| 225 | 225 | } |
| 226 | 226 | } |
| 227 | 227 | |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | * |
| 233 | 233 | * @param string $pageURL The URL of the current page. |
| 234 | 234 | */ |
| 235 | - return apply_filters( 'geodir_curPageURL', $pageURL ); |
|
| 235 | + return apply_filters('geodir_curPageURL', $pageURL);
|
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | /** |
@@ -247,12 +247,12 @@ discard block |
||
| 247 | 247 | * |
| 248 | 248 | * @return string Cleaned variable. |
| 249 | 249 | */ |
| 250 | -function geodir_clean( $string ) {
|
|
| 250 | +function geodir_clean($string) {
|
|
| 251 | 251 | |
| 252 | - $string = trim( strip_tags( stripslashes( $string ) ) ); |
|
| 253 | - $string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens. |
|
| 254 | - $string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars. |
|
| 255 | - $string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one. |
|
| 252 | + $string = trim(strip_tags(stripslashes($string))); |
|
| 253 | + $string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
|
|
| 254 | + $string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
|
|
| 255 | + $string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
|
|
| 256 | 256 | |
| 257 | 257 | return $string; |
| 258 | 258 | } |
@@ -266,13 +266,13 @@ discard block |
||
| 266 | 266 | */ |
| 267 | 267 | function geodir_get_weekday() {
|
| 268 | 268 | return array( |
| 269 | - __( 'Sunday', 'geodirectory' ), |
|
| 270 | - __( 'Monday', 'geodirectory' ), |
|
| 271 | - __( 'Tuesday', 'geodirectory' ), |
|
| 272 | - __( 'Wednesday', 'geodirectory' ), |
|
| 273 | - __( 'Thursday', 'geodirectory' ), |
|
| 274 | - __( 'Friday', 'geodirectory' ), |
|
| 275 | - __( 'Saturday', 'geodirectory' ) |
|
| 269 | + __('Sunday', 'geodirectory'),
|
|
| 270 | + __('Monday', 'geodirectory'),
|
|
| 271 | + __('Tuesday', 'geodirectory'),
|
|
| 272 | + __('Wednesday', 'geodirectory'),
|
|
| 273 | + __('Thursday', 'geodirectory'),
|
|
| 274 | + __('Friday', 'geodirectory'),
|
|
| 275 | + __('Saturday', 'geodirectory')
|
|
| 276 | 276 | ); |
| 277 | 277 | } |
| 278 | 278 | |
@@ -285,11 +285,11 @@ discard block |
||
| 285 | 285 | */ |
| 286 | 286 | function geodir_get_weeks() {
|
| 287 | 287 | return array( |
| 288 | - __( 'First', 'geodirectory' ), |
|
| 289 | - __( 'Second', 'geodirectory' ), |
|
| 290 | - __( 'Third', 'geodirectory' ), |
|
| 291 | - __( 'Fourth', 'geodirectory' ), |
|
| 292 | - __( 'Last', 'geodirectory' ) |
|
| 288 | + __('First', 'geodirectory'),
|
|
| 289 | + __('Second', 'geodirectory'),
|
|
| 290 | + __('Third', 'geodirectory'),
|
|
| 291 | + __('Fourth', 'geodirectory'),
|
|
| 292 | + __('Last', 'geodirectory')
|
|
| 293 | 293 | ); |
| 294 | 294 | } |
| 295 | 295 | |
@@ -308,112 +308,112 @@ discard block |
||
| 308 | 308 | * |
| 309 | 309 | * @return bool If valid returns true. Otherwise false. |
| 310 | 310 | */ |
| 311 | -function geodir_is_page( $gdpage = '' ) {
|
|
| 311 | +function geodir_is_page($gdpage = '') {
|
|
| 312 | 312 | |
| 313 | 313 | global $wp_query, $post, $wp; |
| 314 | 314 | //if(!is_admin()): |
| 315 | 315 | |
| 316 | - switch ( $gdpage ): |
|
| 316 | + switch ($gdpage): |
|
| 317 | 317 | case 'add-listing': |
| 318 | 318 | |
| 319 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
|
|
| 319 | + if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
|
|
| 320 | 320 | return true; |
| 321 | - } elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
|
|
| 321 | + } elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
|
|
| 322 | 322 | return true; |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | 325 | break; |
| 326 | 326 | case 'preview': |
| 327 | - if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] ) |
|
| 328 | - && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() ) |
|
| 327 | + if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
|
|
| 328 | + && in_array($_REQUEST['listing_type'], geodir_get_posttypes()) |
|
| 329 | 329 | ) {
|
| 330 | 330 | return true; |
| 331 | 331 | } |
| 332 | 332 | break; |
| 333 | 333 | case 'listing-success': |
| 334 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
|
|
| 334 | + if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
|
|
| 335 | 335 | return true; |
| 336 | 336 | } |
| 337 | 337 | break; |
| 338 | 338 | case 'detail': |
| 339 | - $post_type = get_query_var( 'post_type' ); |
|
| 340 | - if ( is_array( $post_type ) ) {
|
|
| 341 | - $post_type = reset( $post_type ); |
|
| 339 | + $post_type = get_query_var('post_type');
|
|
| 340 | + if (is_array($post_type)) {
|
|
| 341 | + $post_type = reset($post_type); |
|
| 342 | 342 | } |
| 343 | - if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
|
|
| 343 | + if (is_single() && in_array($post_type, geodir_get_posttypes())) {
|
|
| 344 | 344 | return true; |
| 345 | 345 | } |
| 346 | 346 | break; |
| 347 | 347 | case 'pt': |
| 348 | - $post_type = get_query_var( 'post_type' ); |
|
| 349 | - if ( is_array( $post_type ) ) {
|
|
| 350 | - $post_type = reset( $post_type ); |
|
| 348 | + $post_type = get_query_var('post_type');
|
|
| 349 | + if (is_array($post_type)) {
|
|
| 350 | + $post_type = reset($post_type); |
|
| 351 | 351 | } |
| 352 | - if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
|
|
| 352 | + if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
|
|
| 353 | 353 | return true; |
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | break; |
| 357 | 357 | case 'listing': |
| 358 | - if ( is_tax() && geodir_get_taxonomy_posttype() ) {
|
|
| 358 | + if (is_tax() && geodir_get_taxonomy_posttype()) {
|
|
| 359 | 359 | global $current_term, $taxonomy, $term; |
| 360 | 360 | |
| 361 | 361 | return true; |
| 362 | 362 | } |
| 363 | - $post_type = get_query_var( 'post_type' ); |
|
| 364 | - if ( is_array( $post_type ) ) {
|
|
| 365 | - $post_type = reset( $post_type ); |
|
| 363 | + $post_type = get_query_var('post_type');
|
|
| 364 | + if (is_array($post_type)) {
|
|
| 365 | + $post_type = reset($post_type); |
|
| 366 | 366 | } |
| 367 | - if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
|
|
| 367 | + if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
|
|
| 368 | 368 | return true; |
| 369 | 369 | } |
| 370 | 370 | |
| 371 | 371 | break; |
| 372 | 372 | case 'home': |
| 373 | 373 | |
| 374 | - if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
|
|
| 374 | + if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
|
|
| 375 | 375 | return true; |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | 378 | break; |
| 379 | 379 | case 'location': |
| 380 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
|
|
| 380 | + if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
|
|
| 381 | 381 | return true; |
| 382 | 382 | } |
| 383 | 383 | break; |
| 384 | 384 | case 'author': |
| 385 | - if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
|
|
| 385 | + if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
|
|
| 386 | 386 | return true; |
| 387 | 387 | } |
| 388 | 388 | |
| 389 | - if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
|
|
| 390 | - if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
|
|
| 389 | + if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
|
|
| 390 | + if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
|
|
| 391 | 391 | return true; |
| 392 | 392 | } |
| 393 | 393 | } |
| 394 | 394 | break; |
| 395 | 395 | case 'search': |
| 396 | - if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
|
|
| 396 | + if (is_search() && isset($_REQUEST['geodir_search'])) {
|
|
| 397 | 397 | return true; |
| 398 | 398 | } |
| 399 | 399 | break; |
| 400 | 400 | case 'info': |
| 401 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
|
|
| 401 | + if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
|
|
| 402 | 402 | return true; |
| 403 | 403 | } |
| 404 | 404 | break; |
| 405 | 405 | case 'login': |
| 406 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
|
|
| 406 | + if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
|
|
| 407 | 407 | return true; |
| 408 | 408 | } |
| 409 | 409 | break; |
| 410 | 410 | case 'checkout': |
| 411 | - if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
|
|
| 411 | + if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
|
|
| 412 | 412 | return true; |
| 413 | 413 | } |
| 414 | 414 | break; |
| 415 | 415 | case 'invoices': |
| 416 | - if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
|
|
| 416 | + if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
|
|
| 417 | 417 | return true; |
| 418 | 418 | } |
| 419 | 419 | break; |
@@ -438,25 +438,25 @@ discard block |
||
| 438 | 438 | * |
| 439 | 439 | * @param object $wp WordPress object. |
| 440 | 440 | */ |
| 441 | -function geodir_set_is_geodir_page( $wp ) {
|
|
| 442 | - if ( ! is_admin() ) {
|
|
| 441 | +function geodir_set_is_geodir_page($wp) {
|
|
| 442 | + if (!is_admin()) {
|
|
| 443 | 443 | //$wp->query_vars['gd_is_geodir_page'] = false; |
| 444 | 444 | //print_r() |
| 445 | - if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array( |
|
| 445 | + if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array( |
|
| 446 | 446 | 'preview', |
| 447 | 447 | 'page', |
| 448 | 448 | 'paged', |
| 449 | 449 | 'cpage' |
| 450 | - ) ) |
|
| 450 | + )) |
|
| 451 | 451 | ) {
|
| 452 | - if ( geodir_is_page( 'home' ) ) {
|
|
| 452 | + if (geodir_is_page('home')) {
|
|
| 453 | 453 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 454 | 454 | } |
| 455 | 455 | |
| 456 | 456 | |
| 457 | 457 | } |
| 458 | 458 | |
| 459 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
|
|
| 459 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
|
|
| 460 | 460 | if ( |
| 461 | 461 | $wp->query_vars['page_id'] == geodir_add_listing_page_id() |
| 462 | 462 | || $wp->query_vars['page_id'] == geodir_preview_page_id() |
@@ -465,26 +465,26 @@ discard block |
||
| 465 | 465 | || $wp->query_vars['page_id'] == geodir_home_page_id() |
| 466 | 466 | || $wp->query_vars['page_id'] == geodir_info_page_id() |
| 467 | 467 | || $wp->query_vars['page_id'] == geodir_login_page_id() |
| 468 | - || ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() ) |
|
| 469 | - || ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() ) |
|
| 468 | + || (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
|
|
| 469 | + || (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
|
|
| 470 | 470 | ) {
|
| 471 | 471 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 472 | 472 | } |
| 473 | 473 | } |
| 474 | 474 | |
| 475 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
|
|
| 476 | - $page = get_page_by_path( $wp->query_vars['pagename'] ); |
|
| 475 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
|
|
| 476 | + $page = get_page_by_path($wp->query_vars['pagename']); |
|
| 477 | 477 | |
| 478 | - if ( ! empty( $page ) && ( |
|
| 478 | + if (!empty($page) && ( |
|
| 479 | 479 | $page->ID == geodir_add_listing_page_id() |
| 480 | 480 | || $page->ID == geodir_preview_page_id() |
| 481 | 481 | || $page->ID == geodir_success_page_id() |
| 482 | 482 | || $page->ID == geodir_location_page_id() |
| 483 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() ) |
|
| 484 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() ) |
|
| 485 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() ) |
|
| 486 | - || ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() ) |
|
| 487 | - || ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() ) |
|
| 483 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id()) |
|
| 484 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id()) |
|
| 485 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id()) |
|
| 486 | + || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
|
|
| 487 | + || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
|
|
| 488 | 488 | ) |
| 489 | 489 | ) {
|
| 490 | 490 | $wp->query_vars['gd_is_geodir_page'] = true; |
@@ -492,20 +492,20 @@ discard block |
||
| 492 | 492 | } |
| 493 | 493 | |
| 494 | 494 | |
| 495 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
|
|
| 495 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
|
|
| 496 | 496 | $requested_post_type = $wp->query_vars['post_type']; |
| 497 | 497 | // check if this post type is geodirectory post types |
| 498 | 498 | $post_type_array = geodir_get_posttypes(); |
| 499 | - if ( in_array( $requested_post_type, $post_type_array ) ) {
|
|
| 499 | + if (in_array($requested_post_type, $post_type_array)) {
|
|
| 500 | 500 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 501 | 501 | } |
| 502 | 502 | } |
| 503 | 503 | |
| 504 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
|
|
| 505 | - $geodir_taxonomis = geodir_get_taxonomies( '', true ); |
|
| 506 | - if ( ! empty( $geodir_taxonomis ) ) {
|
|
| 507 | - foreach ( $geodir_taxonomis as $taxonomy ) {
|
|
| 508 | - if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
|
|
| 504 | + if (!isset($wp->query_vars['gd_is_geodir_page'])) {
|
|
| 505 | + $geodir_taxonomis = geodir_get_taxonomies('', true);
|
|
| 506 | + if (!empty($geodir_taxonomis)) {
|
|
| 507 | + foreach ($geodir_taxonomis as $taxonomy) {
|
|
| 508 | + if (array_key_exists($taxonomy, $wp->query_vars)) {
|
|
| 509 | 509 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 510 | 510 | break; |
| 511 | 511 | } |
@@ -514,20 +514,20 @@ discard block |
||
| 514 | 514 | |
| 515 | 515 | } |
| 516 | 516 | |
| 517 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
|
|
| 517 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
|
|
| 518 | 518 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 519 | 519 | } |
| 520 | 520 | |
| 521 | 521 | |
| 522 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
|
|
| 522 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
|
|
| 523 | 523 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 524 | 524 | } |
| 525 | 525 | |
| 526 | 526 | |
| 527 | 527 | //check if homepage |
| 528 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) |
|
| 529 | - && ! isset( $wp->query_vars['page_id'] ) |
|
| 530 | - && ! isset( $wp->query_vars['pagename'] ) |
|
| 528 | + if (!isset($wp->query_vars['gd_is_geodir_page']) |
|
| 529 | + && !isset($wp->query_vars['page_id']) |
|
| 530 | + && !isset($wp->query_vars['pagename']) |
|
| 531 | 531 | && is_page_geodir_home() |
| 532 | 532 | ) {
|
| 533 | 533 | $wp->query_vars['gd_is_geodir_page'] = true; |
@@ -551,14 +551,14 @@ discard block |
||
| 551 | 551 | */ |
| 552 | 552 | function geodir_is_geodir_page() {
|
| 553 | 553 | global $wp; |
| 554 | - if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
|
|
| 554 | + if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
|
|
| 555 | 555 | return true; |
| 556 | 556 | } else {
|
| 557 | 557 | return false; |
| 558 | 558 | } |
| 559 | 559 | } |
| 560 | 560 | |
| 561 | -if ( ! function_exists( 'geodir_get_imagesize' ) ) {
|
|
| 561 | +if (!function_exists('geodir_get_imagesize')) {
|
|
| 562 | 562 | /** |
| 563 | 563 | * Get image size using the size key . |
| 564 | 564 | * |
@@ -569,13 +569,13 @@ discard block |
||
| 569 | 569 | * |
| 570 | 570 | * @return array|mixed|void|WP_Error If valid returns image size. Else returns error. |
| 571 | 571 | */ |
| 572 | - function geodir_get_imagesize( $size = '' ) {
|
|
| 572 | + function geodir_get_imagesize($size = '') {
|
|
| 573 | 573 | |
| 574 | 574 | $imagesizes = array( |
| 575 | - 'list-thumb' => array( 'w' => 283, 'h' => 188 ), |
|
| 576 | - 'thumbnail' => array( 'w' => 125, 'h' => 125 ), |
|
| 577 | - 'widget-thumb' => array( 'w' => 50, 'h' => 50 ), |
|
| 578 | - 'slider-thumb' => array( 'w' => 100, 'h' => 100 ) |
|
| 575 | + 'list-thumb' => array('w' => 283, 'h' => 188),
|
|
| 576 | + 'thumbnail' => array('w' => 125, 'h' => 125),
|
|
| 577 | + 'widget-thumb' => array('w' => 50, 'h' => 50),
|
|
| 578 | + 'slider-thumb' => array('w' => 100, 'h' => 100)
|
|
| 579 | 579 | ); |
| 580 | 580 | |
| 581 | 581 | /** |
@@ -585,9 +585,9 @@ discard block |
||
| 585 | 585 | * |
| 586 | 586 | * @param array $imagesizes Image size array. |
| 587 | 587 | */ |
| 588 | - $imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes ); |
|
| 588 | + $imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
|
|
| 589 | 589 | |
| 590 | - if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
|
|
| 590 | + if (!empty($size) && array_key_exists($size, $imagesizes)) {
|
|
| 591 | 591 | /** |
| 592 | 592 | * Filters image size of the passed key. |
| 593 | 593 | * |
@@ -595,11 +595,11 @@ discard block |
||
| 595 | 595 | * |
| 596 | 596 | * @param array $imagesizes [$size] Image size array of the passed key. |
| 597 | 597 | */ |
| 598 | - return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] ); |
|
| 598 | + return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
|
|
| 599 | 599 | |
| 600 | - } elseif ( ! empty( $size ) ) {
|
|
| 600 | + } elseif (!empty($size)) {
|
|
| 601 | 601 | |
| 602 | - return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) ); |
|
| 602 | + return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
|
|
| 603 | 603 | |
| 604 | 604 | } |
| 605 | 605 | |
@@ -623,7 +623,7 @@ discard block |
||
| 623 | 623 | */ |
| 624 | 624 | |
| 625 | 625 | |
| 626 | -if ( ! function_exists( 'createRandomString' ) ) {
|
|
| 626 | +if (!function_exists('createRandomString')) {
|
|
| 627 | 627 | /** |
| 628 | 628 | * Creates random string. |
| 629 | 629 | * |
@@ -633,21 +633,21 @@ discard block |
||
| 633 | 633 | */ |
| 634 | 634 | function createRandomString() {
|
| 635 | 635 | $chars = "abcdefghijkmlnopqrstuvwxyz1023456789"; |
| 636 | - srand( (double) microtime() * 1000000 ); |
|
| 636 | + srand((double) microtime() * 1000000); |
|
| 637 | 637 | $i = 0; |
| 638 | 638 | $rstring = ''; |
| 639 | - while ( $i <= 25 ) {
|
|
| 639 | + while ($i <= 25) {
|
|
| 640 | 640 | $num = rand() % 33; |
| 641 | - $tmp = substr( $chars, $num, 1 ); |
|
| 642 | - $rstring = $rstring . $tmp; |
|
| 643 | - $i ++; |
|
| 641 | + $tmp = substr($chars, $num, 1); |
|
| 642 | + $rstring = $rstring.$tmp; |
|
| 643 | + $i++; |
|
| 644 | 644 | } |
| 645 | 645 | |
| 646 | 646 | return $rstring; |
| 647 | 647 | } |
| 648 | 648 | } |
| 649 | 649 | |
| 650 | -if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
|
|
| 650 | +if (!function_exists('geodir_getDistanceRadius')) {
|
|
| 651 | 651 | /** |
| 652 | 652 | * Calculates the distance radius. |
| 653 | 653 | * |
@@ -658,9 +658,9 @@ discard block |
||
| 658 | 658 | * |
| 659 | 659 | * @return float The mean radius. |
| 660 | 660 | */ |
| 661 | - function geodir_getDistanceRadius( $uom = 'km' ) {
|
|
| 661 | + function geodir_getDistanceRadius($uom = 'km') {
|
|
| 662 | 662 | // Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude |
| 663 | - switch ( geodir_strtolower( $uom ) ): |
|
| 663 | + switch (geodir_strtolower($uom)): |
|
| 664 | 664 | case 'km' : |
| 665 | 665 | $earthMeanRadius = 6371.009; // km |
| 666 | 666 | break; |
@@ -692,7 +692,7 @@ discard block |
||
| 692 | 692 | } |
| 693 | 693 | |
| 694 | 694 | |
| 695 | -if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
|
|
| 695 | +if (!function_exists('geodir_calculateDistanceFromLatLong')) {
|
|
| 696 | 696 | /** |
| 697 | 697 | * Calculate the great circle distance between two points identified by longitude and latitude. |
| 698 | 698 | * |
@@ -705,17 +705,17 @@ discard block |
||
| 705 | 705 | * |
| 706 | 706 | * @return float The distance. |
| 707 | 707 | */ |
| 708 | - function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
|
|
| 708 | + function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
|
|
| 709 | 709 | // Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude |
| 710 | 710 | |
| 711 | - $earthMeanRadius = geodir_getDistanceRadius( $uom ); |
|
| 711 | + $earthMeanRadius = geodir_getDistanceRadius($uom); |
|
| 712 | 712 | |
| 713 | - $deltaLatitude = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] ); |
|
| 714 | - $deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] ); |
|
| 715 | - $a = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) + |
|
| 716 | - cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) * |
|
| 717 | - sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 ); |
|
| 718 | - $c = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) ); |
|
| 713 | + $deltaLatitude = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']); |
|
| 714 | + $deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']); |
|
| 715 | + $a = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) + |
|
| 716 | + cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) * |
|
| 717 | + sin($deltaLongitude / 2) * sin($deltaLongitude / 2); |
|
| 718 | + $c = 2 * atan2(sqrt($a), sqrt(1 - $a)); |
|
| 719 | 719 | $distance = $earthMeanRadius * $c; |
| 720 | 720 | |
| 721 | 721 | return $distance; |
@@ -724,7 +724,7 @@ discard block |
||
| 724 | 724 | } |
| 725 | 725 | |
| 726 | 726 | |
| 727 | -if ( ! function_exists( 'geodir_sendEmail' ) ) {
|
|
| 727 | +if (!function_exists('geodir_sendEmail')) {
|
|
| 728 | 728 | /** |
| 729 | 729 | * The main function that send transactional emails using the args provided. |
| 730 | 730 | * |
@@ -743,93 +743,93 @@ discard block |
||
| 743 | 743 | * @param string $post_id The post ID. |
| 744 | 744 | * @param string $user_id The user ID. |
| 745 | 745 | */ |
| 746 | - function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
|
|
| 746 | + function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
|
|
| 747 | 747 | $login_details = ''; |
| 748 | 748 | |
| 749 | 749 | // strip slashes from subject & message text |
| 750 | - $to_subject = stripslashes_deep( $to_subject ); |
|
| 751 | - $to_message = stripslashes_deep( $to_message ); |
|
| 750 | + $to_subject = stripslashes_deep($to_subject); |
|
| 751 | + $to_message = stripslashes_deep($to_message); |
|
| 752 | 752 | |
| 753 | - if ( $message_type == 'send_friend' ) {
|
|
| 754 | - $subject = get_option( 'geodir_email_friend_subject' ); |
|
| 755 | - $message = get_option( 'geodir_email_friend_content' ); |
|
| 756 | - } elseif ( $message_type == 'send_enquiry' ) {
|
|
| 757 | - $subject = get_option( 'geodir_email_enquiry_subject' ); |
|
| 758 | - $message = get_option( 'geodir_email_enquiry_content' ); |
|
| 753 | + if ($message_type == 'send_friend') {
|
|
| 754 | + $subject = get_option('geodir_email_friend_subject');
|
|
| 755 | + $message = get_option('geodir_email_friend_content');
|
|
| 756 | + } elseif ($message_type == 'send_enquiry') {
|
|
| 757 | + $subject = get_option('geodir_email_enquiry_subject');
|
|
| 758 | + $message = get_option('geodir_email_enquiry_content');
|
|
| 759 | 759 | |
| 760 | 760 | // change to name in some cases |
| 761 | - $post_author = get_post_field( 'post_author', $post_id ); |
|
| 762 | - if(is_super_admin( $post_author )){// if admin probably not the post author so change name
|
|
| 763 | - $toEmailName = __('Business Owner','geodirectory');
|
|
| 764 | - }elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
|
|
| 765 | - $toEmailName = __('Business Owner','geodirectory');
|
|
| 761 | + $post_author = get_post_field('post_author', $post_id);
|
|
| 762 | + if (is_super_admin($post_author)) {// if admin probably not the post author so change name
|
|
| 763 | + $toEmailName = __('Business Owner', 'geodirectory');
|
|
| 764 | + }elseif (defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id, 'claimed') != '1') {// if claim manager installed but listing not claimed
|
|
| 765 | + $toEmailName = __('Business Owner', 'geodirectory');
|
|
| 766 | 766 | } |
| 767 | 767 | |
| 768 | 768 | |
| 769 | - } elseif ( $message_type == 'forgot_password' ) {
|
|
| 770 | - $subject = get_option( 'geodir_forgot_password_subject' ); |
|
| 771 | - $message = get_option( 'geodir_forgot_password_content' ); |
|
| 769 | + } elseif ($message_type == 'forgot_password') {
|
|
| 770 | + $subject = get_option('geodir_forgot_password_subject');
|
|
| 771 | + $message = get_option('geodir_forgot_password_content');
|
|
| 772 | 772 | $login_details = $to_message; |
| 773 | - } elseif ( $message_type == 'registration' ) {
|
|
| 774 | - $subject = get_option( 'geodir_registration_success_email_subject' ); |
|
| 775 | - $message = get_option( 'geodir_registration_success_email_content' ); |
|
| 773 | + } elseif ($message_type == 'registration') {
|
|
| 774 | + $subject = get_option('geodir_registration_success_email_subject');
|
|
| 775 | + $message = get_option('geodir_registration_success_email_content');
|
|
| 776 | 776 | $login_details = $to_message; |
| 777 | - } elseif ( $message_type == 'post_submit' ) {
|
|
| 778 | - $subject = get_option( 'geodir_post_submited_success_email_subject' ); |
|
| 779 | - $message = get_option( 'geodir_post_submited_success_email_content' ); |
|
| 780 | - } elseif ( $message_type == 'listing_published' ) {
|
|
| 781 | - $subject = get_option( 'geodir_post_published_email_subject' ); |
|
| 782 | - $message = get_option( 'geodir_post_published_email_content' ); |
|
| 783 | - } elseif ( $message_type == 'listing_edited' ) {
|
|
| 784 | - $subject = get_option( 'geodir_post_edited_email_subject_admin' ); |
|
| 785 | - $message = get_option( 'geodir_post_edited_email_content_admin' ); |
|
| 777 | + } elseif ($message_type == 'post_submit') {
|
|
| 778 | + $subject = get_option('geodir_post_submited_success_email_subject');
|
|
| 779 | + $message = get_option('geodir_post_submited_success_email_content');
|
|
| 780 | + } elseif ($message_type == 'listing_published') {
|
|
| 781 | + $subject = get_option('geodir_post_published_email_subject');
|
|
| 782 | + $message = get_option('geodir_post_published_email_content');
|
|
| 783 | + } elseif ($message_type == 'listing_edited') {
|
|
| 784 | + $subject = get_option('geodir_post_edited_email_subject_admin');
|
|
| 785 | + $message = get_option('geodir_post_edited_email_content_admin');
|
|
| 786 | 786 | } |
| 787 | 787 | |
| 788 | - if ( ! empty( $subject ) ) {
|
|
| 789 | - $subject = __( stripslashes_deep( $subject ), 'geodirectory' ); |
|
| 788 | + if (!empty($subject)) {
|
|
| 789 | + $subject = __(stripslashes_deep($subject), 'geodirectory'); |
|
| 790 | 790 | } |
| 791 | 791 | |
| 792 | - if ( ! empty( $message ) ) {
|
|
| 793 | - $message = __( stripslashes_deep( $message ), 'geodirectory' ); |
|
| 792 | + if (!empty($message)) {
|
|
| 793 | + $message = __(stripslashes_deep($message), 'geodirectory'); |
|
| 794 | 794 | } |
| 795 | 795 | |
| 796 | - $to_message = nl2br( $to_message ); |
|
| 797 | - $sitefromEmail = get_option( 'site_email' ); |
|
| 796 | + $to_message = nl2br($to_message); |
|
| 797 | + $sitefromEmail = get_option('site_email');
|
|
| 798 | 798 | $sitefromEmailName = get_site_emailName(); |
| 799 | - $productlink = get_permalink( $post_id ); |
|
| 799 | + $productlink = get_permalink($post_id); |
|
| 800 | 800 | |
| 801 | 801 | $user_login = ''; |
| 802 | - if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
|
|
| 802 | + if ($user_id > 0 && $user_info = get_userdata($user_id)) {
|
|
| 803 | 803 | $user_login = $user_info->user_login; |
| 804 | 804 | } |
| 805 | 805 | |
| 806 | 806 | $posted_date = ''; |
| 807 | 807 | $listingLink = ''; |
| 808 | 808 | |
| 809 | - $post_info = get_post( $post_id ); |
|
| 809 | + $post_info = get_post($post_id); |
|
| 810 | 810 | |
| 811 | - if ( $post_info ) {
|
|
| 811 | + if ($post_info) {
|
|
| 812 | 812 | $posted_date = $post_info->post_date; |
| 813 | - $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>'; |
|
| 813 | + $listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>'; |
|
| 814 | 814 | } |
| 815 | 815 | $siteurl = home_url(); |
| 816 | - $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>'; |
|
| 816 | + $siteurl_link = '<a href="'.$siteurl.'">'.$siteurl.'</a>'; |
|
| 817 | 817 | $loginurl = geodir_login_url(); |
| 818 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
| 818 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
| 819 | 819 | |
| 820 | - $post_author_id = ! empty( $post_info ) ? $post_info->post_author : 0; |
|
| 821 | - $post_author_name = geodir_get_client_name( $post_author_id ); |
|
| 822 | - $current_date = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) ); |
|
| 820 | + $post_author_id = !empty($post_info) ? $post_info->post_author : 0; |
|
| 821 | + $post_author_name = geodir_get_client_name($post_author_id); |
|
| 822 | + $current_date = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
|
|
| 823 | 823 | |
| 824 | - if ( $fromEmail == '' ) {
|
|
| 825 | - $fromEmail = get_option( 'site_email' ); |
|
| 824 | + if ($fromEmail == '') {
|
|
| 825 | + $fromEmail = get_option('site_email');
|
|
| 826 | 826 | } |
| 827 | 827 | |
| 828 | - if ( $fromEmailName == '' ) {
|
|
| 829 | - $fromEmailName = get_option( 'site_email_name' ); |
|
| 828 | + if ($fromEmailName == '') {
|
|
| 829 | + $fromEmailName = get_option('site_email_name');
|
|
| 830 | 830 | } |
| 831 | 831 | |
| 832 | - $search_array = array( |
|
| 832 | + $search_array = array( |
|
| 833 | 833 | '[#listing_link#]', |
| 834 | 834 | '[#site_name_url#]', |
| 835 | 835 | '[#post_id#]', |
@@ -869,7 +869,7 @@ discard block |
||
| 869 | 869 | $post_author_name, |
| 870 | 870 | $current_date |
| 871 | 871 | ); |
| 872 | - $message = str_replace( $search_array, $replace_array, $message ); |
|
| 872 | + $message = str_replace($search_array, $replace_array, $message); |
|
| 873 | 873 | |
| 874 | 874 | $search_array = array( |
| 875 | 875 | '[#listing_link#]', |
@@ -905,12 +905,12 @@ discard block |
||
| 905 | 905 | $post_author_name, |
| 906 | 906 | $current_date |
| 907 | 907 | ); |
| 908 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
| 908 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
| 909 | 909 | |
| 910 | - $headers = array(); |
|
| 910 | + $headers = array(); |
|
| 911 | 911 | $headers[] = 'Content-type: text/html; charset=UTF-8'; |
| 912 | - $headers[] = "Reply-To: " . $fromEmail; |
|
| 913 | - $headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>'; |
|
| 912 | + $headers[] = "Reply-To: ".$fromEmail; |
|
| 913 | + $headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>'; |
|
| 914 | 914 | |
| 915 | 915 | $to = $toEmail; |
| 916 | 916 | |
@@ -932,7 +932,7 @@ discard block |
||
| 932 | 932 | * @param string $post_id The post ID. |
| 933 | 933 | * @param string $user_id The user ID. |
| 934 | 934 | */ |
| 935 | - $to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 935 | + $to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 936 | 936 | /** |
| 937 | 937 | * Filter the client email subject. |
| 938 | 938 | * |
@@ -951,7 +951,7 @@ discard block |
||
| 951 | 951 | * @param string $post_id The post ID. |
| 952 | 952 | * @param string $user_id The user ID. |
| 953 | 953 | */ |
| 954 | - $subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 954 | + $subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 955 | 955 | /** |
| 956 | 956 | * Filter the client email message. |
| 957 | 957 | * |
@@ -970,7 +970,7 @@ discard block |
||
| 970 | 970 | * @param string $post_id The post ID. |
| 971 | 971 | * @param string $user_id The user ID. |
| 972 | 972 | */ |
| 973 | - $message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 973 | + $message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 974 | 974 | /** |
| 975 | 975 | * Filter the client email headers. |
| 976 | 976 | * |
@@ -989,39 +989,39 @@ discard block |
||
| 989 | 989 | * @param string $post_id The post ID. |
| 990 | 990 | * @param string $user_id The user ID. |
| 991 | 991 | */ |
| 992 | - $headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 992 | + $headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 993 | 993 | |
| 994 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
| 994 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
| 995 | 995 | |
| 996 | - if ( ! $sent ) {
|
|
| 997 | - if ( is_array( $to ) ) {
|
|
| 998 | - $to = implode( ',', $to ); |
|
| 996 | + if (!$sent) {
|
|
| 997 | + if (is_array($to)) {
|
|
| 998 | + $to = implode(',', $to);
|
|
| 999 | 999 | } |
| 1000 | 1000 | $log_message = sprintf( |
| 1001 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
| 1001 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
|
|
| 1002 | 1002 | $message_type, |
| 1003 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
| 1003 | + date_i18n('F j Y H:i:s', current_time('timestamp')),
|
|
| 1004 | 1004 | $to, |
| 1005 | 1005 | $subject |
| 1006 | 1006 | ); |
| 1007 | - geodir_error_log( $log_message ); |
|
| 1007 | + geodir_error_log($log_message); |
|
| 1008 | 1008 | } |
| 1009 | 1009 | |
| 1010 | 1010 | ///////// ADMIN BCC EMIALS |
| 1011 | - $adminEmail = get_bloginfo( 'admin_email' ); |
|
| 1011 | + $adminEmail = get_bloginfo('admin_email');
|
|
| 1012 | 1012 | $to = $adminEmail; |
| 1013 | 1013 | |
| 1014 | 1014 | $admin_bcc = false; |
| 1015 | - if ( $message_type == 'registration' ) {
|
|
| 1016 | - $message_raw = explode( __( "Password:", 'geodirectory' ), $message ); |
|
| 1017 | - $message_raw2 = explode( "</p>", $message_raw[1], 2 ); |
|
| 1018 | - $message = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1]; |
|
| 1015 | + if ($message_type == 'registration') {
|
|
| 1016 | + $message_raw = explode(__("Password:", 'geodirectory'), $message);
|
|
| 1017 | + $message_raw2 = explode("</p>", $message_raw[1], 2);
|
|
| 1018 | + $message = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
|
|
| 1019 | 1019 | } |
| 1020 | - if ( $message_type == 'post_submit' ) {
|
|
| 1021 | - $subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' ); |
|
| 1022 | - $message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' ); |
|
| 1020 | + if ($message_type == 'post_submit') {
|
|
| 1021 | + $subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
|
|
| 1022 | + $message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
|
|
| 1023 | 1023 | |
| 1024 | - $search_array = array( |
|
| 1024 | + $search_array = array( |
|
| 1025 | 1025 | '[#listing_link#]', |
| 1026 | 1026 | '[#site_name_url#]', |
| 1027 | 1027 | '[#post_id#]', |
@@ -1053,7 +1053,7 @@ discard block |
||
| 1053 | 1053 | $user_login, |
| 1054 | 1054 | $user_login |
| 1055 | 1055 | ); |
| 1056 | - $message = str_replace( $search_array, $replace_array, $message ); |
|
| 1056 | + $message = str_replace($search_array, $replace_array, $message); |
|
| 1057 | 1057 | |
| 1058 | 1058 | $search_array = array( |
| 1059 | 1059 | '[#listing_link#]', |
@@ -1081,26 +1081,26 @@ discard block |
||
| 1081 | 1081 | $user_login, |
| 1082 | 1082 | $user_login |
| 1083 | 1083 | ); |
| 1084 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
| 1084 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
| 1085 | 1085 | |
| 1086 | 1086 | $subject .= ' - ADMIN BCC COPY'; |
| 1087 | 1087 | $admin_bcc = true; |
| 1088 | 1088 | |
| 1089 | - } elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
|
|
| 1089 | + } elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
|
|
| 1090 | 1090 | $subject .= ' - ADMIN BCC COPY'; |
| 1091 | 1091 | $admin_bcc = true; |
| 1092 | - } elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
|
|
| 1092 | + } elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
|
|
| 1093 | 1093 | $subject .= ' - ADMIN BCC COPY'; |
| 1094 | 1094 | $admin_bcc = true; |
| 1095 | - } elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
|
|
| 1095 | + } elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
|
|
| 1096 | 1096 | $subject .= ' - ADMIN BCC COPY'; |
| 1097 | 1097 | $admin_bcc = true; |
| 1098 | - } elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
|
|
| 1098 | + } elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
|
|
| 1099 | 1099 | $subject .= ' - ADMIN BCC COPY'; |
| 1100 | 1100 | $admin_bcc = true; |
| 1101 | 1101 | } |
| 1102 | 1102 | |
| 1103 | - if ( $admin_bcc === true ) {
|
|
| 1103 | + if ($admin_bcc === true) {
|
|
| 1104 | 1104 | |
| 1105 | 1105 | /** |
| 1106 | 1106 | * Filter the client email subject. |
@@ -1120,7 +1120,7 @@ discard block |
||
| 1120 | 1120 | * @param string $post_id The post ID. |
| 1121 | 1121 | * @param string $user_id The user ID. |
| 1122 | 1122 | */ |
| 1123 | - $subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 1123 | + $subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 1124 | 1124 | /** |
| 1125 | 1125 | * Filter the client email message. |
| 1126 | 1126 | * |
@@ -1139,23 +1139,23 @@ discard block |
||
| 1139 | 1139 | * @param string $post_id The post ID. |
| 1140 | 1140 | * @param string $user_id The user ID. |
| 1141 | 1141 | */ |
| 1142 | - $message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 1142 | + $message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 1143 | 1143 | |
| 1144 | 1144 | |
| 1145 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
| 1145 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
| 1146 | 1146 | |
| 1147 | - if ( ! $sent ) {
|
|
| 1148 | - if ( is_array( $to ) ) {
|
|
| 1149 | - $to = implode( ',', $to ); |
|
| 1147 | + if (!$sent) {
|
|
| 1148 | + if (is_array($to)) {
|
|
| 1149 | + $to = implode(',', $to);
|
|
| 1150 | 1150 | } |
| 1151 | 1151 | $log_message = sprintf( |
| 1152 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
| 1152 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
|
|
| 1153 | 1153 | $message_type, |
| 1154 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
| 1154 | + date_i18n('F j Y H:i:s', current_time('timestamp')),
|
|
| 1155 | 1155 | $to, |
| 1156 | 1156 | $subject |
| 1157 | 1157 | ); |
| 1158 | - geodir_error_log( $log_message ); |
|
| 1158 | + geodir_error_log($log_message); |
|
| 1159 | 1159 | } |
| 1160 | 1160 | } |
| 1161 | 1161 | |
@@ -1171,52 +1171,52 @@ discard block |
||
| 1171 | 1171 | */ |
| 1172 | 1172 | function geodir_taxonomy_breadcrumb() {
|
| 1173 | 1173 | |
| 1174 | - $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); |
|
| 1174 | + $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
|
|
| 1175 | 1175 | $parent = $term->parent; |
| 1176 | 1176 | |
| 1177 | - while ( $parent ): |
|
| 1177 | + while ($parent): |
|
| 1178 | 1178 | $parents[] = $parent; |
| 1179 | - $new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) ); |
|
| 1179 | + $new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
|
|
| 1180 | 1180 | $parent = $new_parent->parent; |
| 1181 | 1181 | endwhile; |
| 1182 | 1182 | |
| 1183 | - if ( ! empty( $parents ) ): |
|
| 1184 | - $parents = array_reverse( $parents ); |
|
| 1183 | + if (!empty($parents)): |
|
| 1184 | + $parents = array_reverse($parents); |
|
| 1185 | 1185 | |
| 1186 | - foreach ( $parents as $parent ): |
|
| 1187 | - $item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) ); |
|
| 1188 | - $url = get_term_link( $item, get_query_var( 'taxonomy' ) ); |
|
| 1189 | - echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>'; |
|
| 1186 | + foreach ($parents as $parent): |
|
| 1187 | + $item = get_term_by('id', $parent, get_query_var('taxonomy'));
|
|
| 1188 | + $url = get_term_link($item, get_query_var('taxonomy'));
|
|
| 1189 | + echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>'; |
|
| 1190 | 1190 | endforeach; |
| 1191 | 1191 | |
| 1192 | 1192 | endif; |
| 1193 | 1193 | |
| 1194 | - echo '<li> > ' . $term->name . '</li>'; |
|
| 1194 | + echo '<li> > '.$term->name.'</li>'; |
|
| 1195 | 1195 | } |
| 1196 | 1196 | |
| 1197 | -function geodir_wpml_post_type_archive_link($link, $post_type){
|
|
| 1197 | +function geodir_wpml_post_type_archive_link($link, $post_type) {
|
|
| 1198 | 1198 | |
| 1199 | - if(function_exists('icl_object_id')) {
|
|
| 1200 | - $post_types = get_option( 'geodir_post_types' ); |
|
| 1201 | - $slug = $post_types[ $post_type ]['rewrite']['slug']; |
|
| 1199 | + if (function_exists('icl_object_id')) {
|
|
| 1200 | + $post_types = get_option('geodir_post_types');
|
|
| 1201 | + $slug = $post_types[$post_type]['rewrite']['slug']; |
|
| 1202 | 1202 | |
| 1203 | 1203 | //echo $link.'###'.gd_wpml_get_lang_from_url( $link) ; |
| 1204 | 1204 | |
| 1205 | 1205 | // Alter the CPT slug if WPML is set to do so |
| 1206 | - if ( function_exists( 'icl_object_id' ) ) {
|
|
| 1207 | - if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
|
|
| 1206 | + if (function_exists('icl_object_id')) {
|
|
| 1207 | + if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
|
|
| 1208 | 1208 | |
| 1209 | 1209 | $org_slug = $slug; |
| 1210 | - $slug = apply_filters( 'wpml_translate_single_string', |
|
| 1210 | + $slug = apply_filters('wpml_translate_single_string',
|
|
| 1211 | 1211 | $slug, |
| 1212 | 1212 | 'WordPress', |
| 1213 | - 'URL slug: ' . $slug, |
|
| 1214 | - $language_code ); |
|
| 1213 | + 'URL slug: '.$slug, |
|
| 1214 | + $language_code); |
|
| 1215 | 1215 | |
| 1216 | - if ( ! $slug ) {
|
|
| 1216 | + if (!$slug) {
|
|
| 1217 | 1217 | $slug = $org_slug; |
| 1218 | 1218 | } else {
|
| 1219 | - $link = str_replace( $org_slug, $slug, $link ); |
|
| 1219 | + $link = str_replace($org_slug, $slug, $link); |
|
| 1220 | 1220 | } |
| 1221 | 1221 | |
| 1222 | 1222 | } |
@@ -1248,9 +1248,9 @@ discard block |
||
| 1248 | 1248 | * |
| 1249 | 1249 | * @since 1.0.0 |
| 1250 | 1250 | */ |
| 1251 | - $separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' ); |
|
| 1251 | + $separator = apply_filters('geodir_breadcrumb_separator', ' > ');
|
|
| 1252 | 1252 | |
| 1253 | - if ( ! geodir_is_page( 'home' ) ) {
|
|
| 1253 | + if (!geodir_is_page('home')) {
|
|
| 1254 | 1254 | $breadcrumb = ''; |
| 1255 | 1255 | $url_categoris = ''; |
| 1256 | 1256 | $breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">'; |
@@ -1259,167 +1259,167 @@ discard block |
||
| 1259 | 1259 | * |
| 1260 | 1260 | * @since 1.0.0 |
| 1261 | 1261 | */ |
| 1262 | - $breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>'; |
|
| 1262 | + $breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
|
|
| 1263 | 1263 | |
| 1264 | 1264 | $gd_post_type = geodir_get_current_posttype(); |
| 1265 | - $post_type_info = get_post_type_object( $gd_post_type ); |
|
| 1265 | + $post_type_info = get_post_type_object($gd_post_type); |
|
| 1266 | 1266 | |
| 1267 | - remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' ); |
|
| 1267 | + remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
|
|
| 1268 | 1268 | |
| 1269 | - $listing_link = get_post_type_archive_link( $gd_post_type ); |
|
| 1269 | + $listing_link = get_post_type_archive_link($gd_post_type); |
|
| 1270 | 1270 | |
| 1271 | - add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 ); |
|
| 1272 | - $listing_link = rtrim( $listing_link, '/' ); |
|
| 1271 | + add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
|
|
| 1272 | + $listing_link = rtrim($listing_link, '/'); |
|
| 1273 | 1273 | $listing_link .= '/'; |
| 1274 | 1274 | |
| 1275 | 1275 | $post_type_for_location_link = $listing_link; |
| 1276 | - $location_terms = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
| 1276 | + $location_terms = geodir_get_current_location_terms('query_vars', $gd_post_type);
|
|
| 1277 | 1277 | |
| 1278 | 1278 | global $wp, $gd_session; |
| 1279 | 1279 | $location_link = $post_type_for_location_link; |
| 1280 | 1280 | |
| 1281 | - if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
|
|
| 1281 | + if (geodir_is_page('detail') || geodir_is_page('listing')) {
|
|
| 1282 | 1282 | global $post; |
| 1283 | - $location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false; |
|
| 1284 | - $neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false; |
|
| 1283 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
|
|
| 1284 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 1285 | 1285 | |
| 1286 | - if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
|
|
| 1286 | + if (geodir_is_page('detail') && isset($post->country_slug)) {
|
|
| 1287 | 1287 | $location_terms = array( |
| 1288 | 1288 | 'gd_country' => $post->country_slug, |
| 1289 | 1289 | 'gd_region' => $post->region_slug, |
| 1290 | 1290 | 'gd_city' => $post->city_slug |
| 1291 | 1291 | ); |
| 1292 | 1292 | |
| 1293 | - if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
|
|
| 1293 | + if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
|
|
| 1294 | 1294 | $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood; |
| 1295 | 1295 | } |
| 1296 | 1296 | } |
| 1297 | 1297 | |
| 1298 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
| 1298 | + $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 1299 | 1299 | |
| 1300 | 1300 | $hide_url_part = array(); |
| 1301 | - if ( $location_manager ) {
|
|
| 1302 | - $hide_country_part = get_option( 'geodir_location_hide_country_part' ); |
|
| 1303 | - $hide_region_part = get_option( 'geodir_location_hide_region_part' ); |
|
| 1304 | - |
|
| 1305 | - if ( $hide_region_part && $hide_country_part ) {
|
|
| 1306 | - $hide_url_part = array( 'gd_country', 'gd_region' ); |
|
| 1307 | - } else if ( $hide_region_part && ! $hide_country_part ) {
|
|
| 1308 | - $hide_url_part = array( 'gd_region' ); |
|
| 1309 | - } else if ( ! $hide_region_part && $hide_country_part ) {
|
|
| 1310 | - $hide_url_part = array( 'gd_country' ); |
|
| 1301 | + if ($location_manager) {
|
|
| 1302 | + $hide_country_part = get_option('geodir_location_hide_country_part');
|
|
| 1303 | + $hide_region_part = get_option('geodir_location_hide_region_part');
|
|
| 1304 | + |
|
| 1305 | + if ($hide_region_part && $hide_country_part) {
|
|
| 1306 | + $hide_url_part = array('gd_country', 'gd_region');
|
|
| 1307 | + } else if ($hide_region_part && !$hide_country_part) {
|
|
| 1308 | + $hide_url_part = array('gd_region');
|
|
| 1309 | + } else if (!$hide_region_part && $hide_country_part) {
|
|
| 1310 | + $hide_url_part = array('gd_country');
|
|
| 1311 | 1311 | } |
| 1312 | 1312 | } |
| 1313 | 1313 | |
| 1314 | 1314 | $hide_text_part = array(); |
| 1315 | - if ( $geodir_show_location_url == 'country_city' ) {
|
|
| 1316 | - $hide_text_part = array( 'gd_region' ); |
|
| 1315 | + if ($geodir_show_location_url == 'country_city') {
|
|
| 1316 | + $hide_text_part = array('gd_region');
|
|
| 1317 | 1317 | |
| 1318 | - if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
|
|
| 1319 | - unset( $location_terms['gd_region'] ); |
|
| 1318 | + if (isset($location_terms['gd_region']) && !$location_manager) {
|
|
| 1319 | + unset($location_terms['gd_region']); |
|
| 1320 | 1320 | } |
| 1321 | - } else if ( $geodir_show_location_url == 'region_city' ) {
|
|
| 1322 | - $hide_text_part = array( 'gd_country' ); |
|
| 1321 | + } else if ($geodir_show_location_url == 'region_city') {
|
|
| 1322 | + $hide_text_part = array('gd_country');
|
|
| 1323 | 1323 | |
| 1324 | - if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
|
|
| 1325 | - unset( $location_terms['gd_country'] ); |
|
| 1324 | + if (isset($location_terms['gd_country']) && !$location_manager) {
|
|
| 1325 | + unset($location_terms['gd_country']); |
|
| 1326 | 1326 | } |
| 1327 | - } else if ( $geodir_show_location_url == 'city' ) {
|
|
| 1328 | - $hide_text_part = array( 'gd_country', 'gd_region' ); |
|
| 1327 | + } else if ($geodir_show_location_url == 'city') {
|
|
| 1328 | + $hide_text_part = array('gd_country', 'gd_region');
|
|
| 1329 | 1329 | |
| 1330 | - if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
|
|
| 1331 | - unset( $location_terms['gd_country'] ); |
|
| 1330 | + if (isset($location_terms['gd_country']) && !$location_manager) {
|
|
| 1331 | + unset($location_terms['gd_country']); |
|
| 1332 | 1332 | } |
| 1333 | - if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
|
|
| 1334 | - unset( $location_terms['gd_region'] ); |
|
| 1333 | + if (isset($location_terms['gd_region']) && !$location_manager) {
|
|
| 1334 | + unset($location_terms['gd_region']); |
|
| 1335 | 1335 | } |
| 1336 | 1336 | } |
| 1337 | 1337 | |
| 1338 | 1338 | $is_location_last = ''; |
| 1339 | 1339 | $is_taxonomy_last = ''; |
| 1340 | 1340 | $breadcrumb .= '<li>'; |
| 1341 | - if ( get_query_var( $gd_post_type . 'category' ) ) {
|
|
| 1342 | - $gd_taxonomy = $gd_post_type . 'category'; |
|
| 1343 | - } elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
|
|
| 1344 | - $gd_taxonomy = $gd_post_type . '_tags'; |
|
| 1341 | + if (get_query_var($gd_post_type.'category')) {
|
|
| 1342 | + $gd_taxonomy = $gd_post_type.'category'; |
|
| 1343 | + } elseif (get_query_var($gd_post_type.'_tags')) {
|
|
| 1344 | + $gd_taxonomy = $gd_post_type.'_tags'; |
|
| 1345 | 1345 | } |
| 1346 | 1346 | |
| 1347 | - $breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>'; |
|
| 1348 | - if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
|
|
| 1347 | + $breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>'; |
|
| 1348 | + if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
|
|
| 1349 | 1349 | $is_location_last = false; |
| 1350 | 1350 | } else {
|
| 1351 | 1351 | $is_location_last = true; |
| 1352 | 1352 | } |
| 1353 | 1353 | |
| 1354 | - if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
|
|
| 1354 | + if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
|
|
| 1355 | 1355 | $is_taxonomy_last = true; |
| 1356 | 1356 | } else {
|
| 1357 | 1357 | $is_taxonomy_last = false; |
| 1358 | 1358 | } |
| 1359 | 1359 | |
| 1360 | - if ( ! empty( $location_terms ) ) {
|
|
| 1361 | - $geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false; |
|
| 1360 | + if (!empty($location_terms)) {
|
|
| 1361 | + $geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
|
|
| 1362 | 1362 | |
| 1363 | - foreach ( $location_terms as $key => $location_term ) {
|
|
| 1364 | - if ( $location_term != '' ) {
|
|
| 1365 | - if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
|
|
| 1363 | + foreach ($location_terms as $key => $location_term) {
|
|
| 1364 | + if ($location_term != '') {
|
|
| 1365 | + if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
|
|
| 1366 | 1366 | continue; |
| 1367 | 1367 | } |
| 1368 | 1368 | |
| 1369 | - $gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term ); |
|
| 1370 | - $gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text ); |
|
| 1371 | - $gd_location_link_text = ucfirst( $gd_location_link_text ); |
|
| 1369 | + $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
|
|
| 1370 | + $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
|
|
| 1371 | + $gd_location_link_text = ucfirst($gd_location_link_text); |
|
| 1372 | 1372 | |
| 1373 | 1373 | $location_term_actual_country = ''; |
| 1374 | 1374 | $location_term_actual_region = ''; |
| 1375 | 1375 | $location_term_actual_city = ''; |
| 1376 | 1376 | $location_term_actual_neighbourhood = ''; |
| 1377 | - if ( $geodir_get_locations ) {
|
|
| 1378 | - if ( $key == 'gd_country' ) {
|
|
| 1379 | - $location_term_actual_country = get_actual_location_name( 'country', $location_term, true ); |
|
| 1380 | - } else if ( $key == 'gd_region' ) {
|
|
| 1381 | - $location_term_actual_region = get_actual_location_name( 'region', $location_term, true ); |
|
| 1382 | - } else if ( $key == 'gd_city' ) {
|
|
| 1383 | - $location_term_actual_city = get_actual_location_name( 'city', $location_term, true ); |
|
| 1384 | - } else if ( $key == 'gd_neighbourhood' ) {
|
|
| 1385 | - $location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true ); |
|
| 1377 | + if ($geodir_get_locations) {
|
|
| 1378 | + if ($key == 'gd_country') {
|
|
| 1379 | + $location_term_actual_country = get_actual_location_name('country', $location_term, true);
|
|
| 1380 | + } else if ($key == 'gd_region') {
|
|
| 1381 | + $location_term_actual_region = get_actual_location_name('region', $location_term, true);
|
|
| 1382 | + } else if ($key == 'gd_city') {
|
|
| 1383 | + $location_term_actual_city = get_actual_location_name('city', $location_term, true);
|
|
| 1384 | + } else if ($key == 'gd_neighbourhood') {
|
|
| 1385 | + $location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
|
|
| 1386 | 1386 | } |
| 1387 | 1387 | } else {
|
| 1388 | 1388 | $location_info = geodir_get_location(); |
| 1389 | 1389 | |
| 1390 | - if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
|
|
| 1391 | - if ( $key == 'gd_country' ) {
|
|
| 1392 | - $location_term_actual_country = __( $location_info->country, 'geodirectory' ); |
|
| 1393 | - } else if ( $key == 'gd_region' ) {
|
|
| 1394 | - $location_term_actual_region = __( $location_info->region, 'geodirectory' ); |
|
| 1395 | - } else if ( $key == 'gd_city' ) {
|
|
| 1396 | - $location_term_actual_city = __( $location_info->city, 'geodirectory' ); |
|
| 1390 | + if (!empty($location_info) && isset($location_info->location_id)) {
|
|
| 1391 | + if ($key == 'gd_country') {
|
|
| 1392 | + $location_term_actual_country = __($location_info->country, 'geodirectory'); |
|
| 1393 | + } else if ($key == 'gd_region') {
|
|
| 1394 | + $location_term_actual_region = __($location_info->region, 'geodirectory'); |
|
| 1395 | + } else if ($key == 'gd_city') {
|
|
| 1396 | + $location_term_actual_city = __($location_info->city, 'geodirectory'); |
|
| 1397 | 1397 | } |
| 1398 | 1398 | } |
| 1399 | 1399 | } |
| 1400 | 1400 | |
| 1401 | - if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
|
|
| 1402 | - $breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text; |
|
| 1403 | - } else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
|
|
| 1404 | - $breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text; |
|
| 1405 | - } else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
|
|
| 1406 | - $breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text; |
|
| 1407 | - } else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
|
|
| 1408 | - $breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text; |
|
| 1401 | + if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
|
|
| 1402 | + $breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text; |
|
| 1403 | + } else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
|
|
| 1404 | + $breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text; |
|
| 1405 | + } else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
|
|
| 1406 | + $breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text; |
|
| 1407 | + } else if ($is_location_last && $key == 'gd_neighbourhood') {
|
|
| 1408 | + $breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text; |
|
| 1409 | 1409 | } else {
|
| 1410 | - if ( get_option( 'permalink_structure' ) != '' ) {
|
|
| 1411 | - $location_link .= $location_term . '/'; |
|
| 1410 | + if (get_option('permalink_structure') != '') {
|
|
| 1411 | + $location_link .= $location_term.'/'; |
|
| 1412 | 1412 | } else {
|
| 1413 | - $location_link .= "&$key=" . $location_term; |
|
| 1413 | + $location_link .= "&$key=".$location_term; |
|
| 1414 | 1414 | } |
| 1415 | 1415 | |
| 1416 | - if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
|
|
| 1416 | + if ($key == 'gd_country' && $location_term_actual_country != '') {
|
|
| 1417 | 1417 | $gd_location_link_text = $location_term_actual_country; |
| 1418 | - } else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
|
|
| 1418 | + } else if ($key == 'gd_region' && $location_term_actual_region != '') {
|
|
| 1419 | 1419 | $gd_location_link_text = $location_term_actual_region; |
| 1420 | - } else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
|
|
| 1420 | + } else if ($key == 'gd_city' && $location_term_actual_city != '') {
|
|
| 1421 | 1421 | $gd_location_link_text = $location_term_actual_city; |
| 1422 | - } else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
|
|
| 1422 | + } else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
|
|
| 1423 | 1423 | $gd_location_link_text = $location_term_actual_neighbourhood; |
| 1424 | 1424 | } |
| 1425 | 1425 | |
@@ -1429,76 +1429,76 @@ discard block |
||
| 1429 | 1429 | } |
| 1430 | 1430 | */ |
| 1431 | 1431 | |
| 1432 | - $breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>'; |
|
| 1432 | + $breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>'; |
|
| 1433 | 1433 | } |
| 1434 | 1434 | } |
| 1435 | 1435 | } |
| 1436 | 1436 | } |
| 1437 | 1437 | |
| 1438 | - if ( ! empty( $gd_taxonomy ) ) {
|
|
| 1438 | + if (!empty($gd_taxonomy)) {
|
|
| 1439 | 1439 | $term_index = 1; |
| 1440 | 1440 | |
| 1441 | 1441 | //if(get_option('geodir_add_categories_url'))
|
| 1442 | 1442 | {
|
| 1443 | - if ( get_query_var( $gd_post_type . '_tags' ) ) {
|
|
| 1444 | - $cat_link = $listing_link . 'tags/'; |
|
| 1443 | + if (get_query_var($gd_post_type.'_tags')) {
|
|
| 1444 | + $cat_link = $listing_link.'tags/'; |
|
| 1445 | 1445 | } else {
|
| 1446 | 1446 | $cat_link = $listing_link; |
| 1447 | 1447 | } |
| 1448 | 1448 | |
| 1449 | - foreach ( $location_terms as $key => $location_term ) {
|
|
| 1450 | - if ( $location_manager && in_array( $key, $hide_url_part ) ) {
|
|
| 1449 | + foreach ($location_terms as $key => $location_term) {
|
|
| 1450 | + if ($location_manager && in_array($key, $hide_url_part)) {
|
|
| 1451 | 1451 | continue; |
| 1452 | 1452 | } |
| 1453 | 1453 | |
| 1454 | - if ( $location_term != '' ) {
|
|
| 1455 | - if ( get_option( 'permalink_structure' ) != '' ) {
|
|
| 1456 | - $cat_link .= $location_term . '/'; |
|
| 1454 | + if ($location_term != '') {
|
|
| 1455 | + if (get_option('permalink_structure') != '') {
|
|
| 1456 | + $cat_link .= $location_term.'/'; |
|
| 1457 | 1457 | } |
| 1458 | 1458 | } |
| 1459 | 1459 | } |
| 1460 | 1460 | |
| 1461 | - $term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) ); |
|
| 1462 | - foreach ( $term_array as $term ) {
|
|
| 1463 | - $term_link_text = preg_replace( '/-(\d+)$/', '', $term ); |
|
| 1464 | - $term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text ); |
|
| 1461 | + $term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
|
|
| 1462 | + foreach ($term_array as $term) {
|
|
| 1463 | + $term_link_text = preg_replace('/-(\d+)$/', '', $term);
|
|
| 1464 | + $term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
|
|
| 1465 | 1465 | |
| 1466 | 1466 | // get term actual name |
| 1467 | - $term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' ); |
|
| 1468 | - if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
|
|
| 1469 | - $term_link_text = urldecode( $term_info['name'] ); |
|
| 1467 | + $term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
|
|
| 1468 | + if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
|
|
| 1469 | + $term_link_text = urldecode($term_info['name']); |
|
| 1470 | 1470 | } else {
|
| 1471 | 1471 | continue; |
| 1472 | 1472 | //$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text))); |
| 1473 | 1473 | } |
| 1474 | 1474 | |
| 1475 | - if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
|
|
| 1476 | - $breadcrumb .= $separator . $term_link_text; |
|
| 1475 | + if ($term_index == count($term_array) && $is_taxonomy_last) {
|
|
| 1476 | + $breadcrumb .= $separator.$term_link_text; |
|
| 1477 | 1477 | } else {
|
| 1478 | - $cat_link .= $term . '/'; |
|
| 1479 | - $breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>'; |
|
| 1478 | + $cat_link .= $term.'/'; |
|
| 1479 | + $breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>'; |
|
| 1480 | 1480 | } |
| 1481 | - $term_index ++; |
|
| 1481 | + $term_index++; |
|
| 1482 | 1482 | } |
| 1483 | 1483 | } |
| 1484 | 1484 | |
| 1485 | 1485 | |
| 1486 | 1486 | } |
| 1487 | 1487 | |
| 1488 | - if ( geodir_is_page( 'detail' ) ) {
|
|
| 1489 | - $breadcrumb .= $separator . get_the_title(); |
|
| 1488 | + if (geodir_is_page('detail')) {
|
|
| 1489 | + $breadcrumb .= $separator.get_the_title(); |
|
| 1490 | 1490 | } |
| 1491 | 1491 | |
| 1492 | 1492 | $breadcrumb .= '</li>'; |
| 1493 | 1493 | |
| 1494 | 1494 | |
| 1495 | - } elseif ( geodir_is_page( 'author' ) ) {
|
|
| 1495 | + } elseif (geodir_is_page('author')) {
|
|
| 1496 | 1496 | $user_id = get_current_user_id(); |
| 1497 | - $author_link = get_author_posts_url( $user_id ); |
|
| 1498 | - $default_author_link = geodir_getlink( $author_link, array( |
|
| 1497 | + $author_link = get_author_posts_url($user_id); |
|
| 1498 | + $default_author_link = geodir_getlink($author_link, array( |
|
| 1499 | 1499 | 'geodir_dashbord' => 'true', |
| 1500 | 1500 | 'stype' => 'gd_place' |
| 1501 | - ), false ); |
|
| 1501 | + ), false); |
|
| 1502 | 1502 | |
| 1503 | 1503 | /** |
| 1504 | 1504 | * Filter author page link. |
@@ -1508,16 +1508,16 @@ discard block |
||
| 1508 | 1508 | * @param string $default_author_link Default author link. |
| 1509 | 1509 | * @param int $user_id Author ID. |
| 1510 | 1510 | */ |
| 1511 | - $default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id ); |
|
| 1511 | + $default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
|
|
| 1512 | 1512 | |
| 1513 | 1513 | $breadcrumb .= '<li>'; |
| 1514 | - $breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>'; |
|
| 1514 | + $breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
|
|
| 1515 | 1515 | |
| 1516 | - if ( isset( $_REQUEST['list'] ) ) {
|
|
| 1517 | - $author_link = geodir_getlink( $author_link, array( |
|
| 1516 | + if (isset($_REQUEST['list'])) {
|
|
| 1517 | + $author_link = geodir_getlink($author_link, array( |
|
| 1518 | 1518 | 'geodir_dashbord' => 'true', |
| 1519 | 1519 | 'stype' => $_REQUEST['stype'] |
| 1520 | - ), false ); |
|
| 1520 | + ), false); |
|
| 1521 | 1521 | |
| 1522 | 1522 | /** |
| 1523 | 1523 | * Filter author page link. |
@@ -1528,61 +1528,61 @@ discard block |
||
| 1528 | 1528 | * @param int $user_id Author ID. |
| 1529 | 1529 | * @param string $_REQUEST ['stype'] Post type. |
| 1530 | 1530 | */ |
| 1531 | - $author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] ); |
|
| 1531 | + $author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
|
|
| 1532 | 1532 | |
| 1533 | - $breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>'; |
|
| 1534 | - $breadcrumb .= $separator . ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] ); |
|
| 1533 | + $breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>'; |
|
| 1534 | + $breadcrumb .= $separator.ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
|
|
| 1535 | 1535 | } else {
|
| 1536 | - $breadcrumb .= $separator . __( ucfirst( $post_type_info->label ), 'geodirectory' ); |
|
| 1536 | + $breadcrumb .= $separator.__(ucfirst($post_type_info->label), 'geodirectory'); |
|
| 1537 | 1537 | } |
| 1538 | 1538 | |
| 1539 | 1539 | $breadcrumb .= '</li>'; |
| 1540 | - } elseif ( is_category() || is_single() ) {
|
|
| 1540 | + } elseif (is_category() || is_single()) {
|
|
| 1541 | 1541 | $category = get_the_category(); |
| 1542 | - if ( is_category() ) {
|
|
| 1543 | - $breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>'; |
|
| 1542 | + if (is_category()) {
|
|
| 1543 | + $breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>'; |
|
| 1544 | 1544 | } |
| 1545 | - if ( is_single() ) {
|
|
| 1546 | - $breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>'; |
|
| 1547 | - $breadcrumb .= '<li>' . $separator . get_the_title() . '</li>'; |
|
| 1545 | + if (is_single()) {
|
|
| 1546 | + $breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>'; |
|
| 1547 | + $breadcrumb .= '<li>'.$separator.get_the_title().'</li>'; |
|
| 1548 | 1548 | } |
| 1549 | 1549 | /* End of my version ##################################################### */ |
| 1550 | - } else if ( is_page() ) {
|
|
| 1550 | + } else if (is_page()) {
|
|
| 1551 | 1551 | $page_title = get_the_title(); |
| 1552 | 1552 | |
| 1553 | - if ( geodir_is_page( 'location' ) ) {
|
|
| 1553 | + if (geodir_is_page('location')) {
|
|
| 1554 | 1554 | $location_page_id = geodir_location_page_id(); |
| 1555 | - $loc_post = get_post( $location_page_id ); |
|
| 1555 | + $loc_post = get_post($location_page_id); |
|
| 1556 | 1556 | $post_name = $loc_post->post_name; |
| 1557 | - $slug = ucwords( str_replace( '-', ' ', $post_name ) ); |
|
| 1558 | - $page_title = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' ); |
|
| 1557 | + $slug = ucwords(str_replace('-', ' ', $post_name));
|
|
| 1558 | + $page_title = !empty($slug) ? $slug : __('Location', 'geodirectory');
|
|
| 1559 | 1559 | } |
| 1560 | 1560 | |
| 1561 | - $breadcrumb .= '<li>' . $separator; |
|
| 1562 | - $breadcrumb .= stripslashes_deep( $page_title ); |
|
| 1561 | + $breadcrumb .= '<li>'.$separator; |
|
| 1562 | + $breadcrumb .= stripslashes_deep($page_title); |
|
| 1563 | 1563 | $breadcrumb .= '</li>'; |
| 1564 | - } else if ( is_tag() ) {
|
|
| 1565 | - $breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>'; |
|
| 1566 | - } else if ( is_day() ) {
|
|
| 1567 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
| 1568 | - the_time( 'F jS, Y' ); |
|
| 1564 | + } else if (is_tag()) {
|
|
| 1565 | + $breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
|
|
| 1566 | + } else if (is_day()) {
|
|
| 1567 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
|
|
| 1568 | + the_time('F jS, Y');
|
|
| 1569 | 1569 | $breadcrumb .= '</li>'; |
| 1570 | - } else if ( is_month() ) {
|
|
| 1571 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
| 1572 | - the_time( 'F, Y' ); |
|
| 1570 | + } else if (is_month()) {
|
|
| 1571 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
|
|
| 1572 | + the_time('F, Y');
|
|
| 1573 | 1573 | $breadcrumb .= '</li>'; |
| 1574 | - } else if ( is_year() ) {
|
|
| 1575 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
| 1576 | - the_time( 'Y' ); |
|
| 1574 | + } else if (is_year()) {
|
|
| 1575 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
|
|
| 1576 | + the_time('Y');
|
|
| 1577 | 1577 | $breadcrumb .= '</li>'; |
| 1578 | - } else if ( is_author() ) {
|
|
| 1579 | - $breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' ); |
|
| 1578 | + } else if (is_author()) {
|
|
| 1579 | + $breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
|
|
| 1580 | 1580 | $breadcrumb .= '</li>'; |
| 1581 | - } else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
|
|
| 1582 | - $breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' ); |
|
| 1581 | + } else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
|
|
| 1582 | + $breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
|
|
| 1583 | 1583 | $breadcrumb .= '</li>'; |
| 1584 | - } else if ( is_search() ) {
|
|
| 1585 | - $breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' ); |
|
| 1584 | + } else if (is_search()) {
|
|
| 1585 | + $breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
|
|
| 1586 | 1586 | $breadcrumb .= '</li>'; |
| 1587 | 1587 | } |
| 1588 | 1588 | $breadcrumb .= '</ul></div>'; |
@@ -1595,13 +1595,13 @@ discard block |
||
| 1595 | 1595 | * @param string $breadcrumb Breadcrumb HTML. |
| 1596 | 1596 | * @param string $separator Breadcrumb separator. |
| 1597 | 1597 | */ |
| 1598 | - echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator ); |
|
| 1598 | + echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
|
|
| 1599 | 1599 | } |
| 1600 | 1600 | } |
| 1601 | 1601 | |
| 1602 | 1602 | |
| 1603 | -add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin |
|
| 1604 | -if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
|
|
| 1603 | +add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
|
|
| 1604 | +if (!function_exists('geodir_allow_wpadmin')) {
|
|
| 1605 | 1605 | /** |
| 1606 | 1606 | * Allow only admins to access wp-admin. |
| 1607 | 1607 | * |
@@ -1613,12 +1613,12 @@ discard block |
||
| 1613 | 1613 | */ |
| 1614 | 1614 | function geodir_allow_wpadmin() {
|
| 1615 | 1615 | global $wpdb; |
| 1616 | - if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through |
|
| 1616 | + if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
|
|
| 1617 | 1617 | {
|
| 1618 | - if ( current_user_can( 'administrator' ) ) {
|
|
| 1618 | + if (current_user_can('administrator')) {
|
|
| 1619 | 1619 | } else {
|
| 1620 | 1620 | |
| 1621 | - wp_redirect( home_url() ); |
|
| 1621 | + wp_redirect(home_url()); |
|
| 1622 | 1622 | exit; |
| 1623 | 1623 | } |
| 1624 | 1624 | |
@@ -1637,23 +1637,23 @@ discard block |
||
| 1637 | 1637 | * |
| 1638 | 1638 | * @return array|WP_Error The uploaded data as array. When failure returns error. |
| 1639 | 1639 | */ |
| 1640 | -function fetch_remote_file( $url ) {
|
|
| 1640 | +function fetch_remote_file($url) {
|
|
| 1641 | 1641 | // extract the file name and extension from the url |
| 1642 | - require_once( ABSPATH . 'wp-includes/pluggable.php' ); |
|
| 1643 | - $file_name = basename( $url ); |
|
| 1644 | - if ( strpos( $file_name, '?' ) !== false ) {
|
|
| 1645 | - list( $file_name ) = explode( '?', $file_name ); |
|
| 1642 | + require_once(ABSPATH.'wp-includes/pluggable.php'); |
|
| 1643 | + $file_name = basename($url); |
|
| 1644 | + if (strpos($file_name, '?') !== false) {
|
|
| 1645 | + list($file_name) = explode('?', $file_name);
|
|
| 1646 | 1646 | } |
| 1647 | 1647 | $dummy = false; |
| 1648 | 1648 | $add_to_cache = false; |
| 1649 | 1649 | $key = null; |
| 1650 | - if ( strpos( $url, '/dummy/' ) !== false ) {
|
|
| 1650 | + if (strpos($url, '/dummy/') !== false) {
|
|
| 1651 | 1651 | $dummy = true; |
| 1652 | - $key = "dummy_" . str_replace( '.', '_', $file_name ); |
|
| 1653 | - $value = get_transient( 'cached_dummy_images' ); |
|
| 1654 | - if ( $value ) {
|
|
| 1655 | - if ( isset( $value[ $key ] ) ) {
|
|
| 1656 | - return $value[ $key ]; |
|
| 1652 | + $key = "dummy_".str_replace('.', '_', $file_name);
|
|
| 1653 | + $value = get_transient('cached_dummy_images');
|
|
| 1654 | + if ($value) {
|
|
| 1655 | + if (isset($value[$key])) {
|
|
| 1656 | + return $value[$key]; |
|
| 1657 | 1657 | } else {
|
| 1658 | 1658 | $add_to_cache = true; |
| 1659 | 1659 | } |
@@ -1664,58 +1664,58 @@ discard block |
||
| 1664 | 1664 | |
| 1665 | 1665 | // get placeholder file in the upload dir with a unique, sanitized filename |
| 1666 | 1666 | |
| 1667 | - $post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : ''; |
|
| 1667 | + $post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : ''; |
|
| 1668 | 1668 | |
| 1669 | - $upload = wp_upload_bits( $file_name, 0, '', $post_upload_date ); |
|
| 1670 | - if ( $upload['error'] ) {
|
|
| 1671 | - return new WP_Error( 'upload_dir_error', $upload['error'] ); |
|
| 1669 | + $upload = wp_upload_bits($file_name, 0, '', $post_upload_date); |
|
| 1670 | + if ($upload['error']) {
|
|
| 1671 | + return new WP_Error('upload_dir_error', $upload['error']);
|
|
| 1672 | 1672 | } |
| 1673 | 1673 | |
| 1674 | 1674 | |
| 1675 | - sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay |
|
| 1675 | + sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay |
|
| 1676 | 1676 | |
| 1677 | 1677 | // fetch the remote url and write it to the placeholder file |
| 1678 | - $headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) ); |
|
| 1678 | + $headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
|
|
| 1679 | 1679 | |
| 1680 | 1680 | $log_message = ''; |
| 1681 | - if ( is_wp_error( $headers ) ) {
|
|
| 1682 | - echo 'file: ' . $url; |
|
| 1681 | + if (is_wp_error($headers)) {
|
|
| 1682 | + echo 'file: '.$url; |
|
| 1683 | 1683 | |
| 1684 | - return new WP_Error( 'import_file_error', $headers->get_error_message() ); |
|
| 1684 | + return new WP_Error('import_file_error', $headers->get_error_message());
|
|
| 1685 | 1685 | } |
| 1686 | 1686 | |
| 1687 | - $filesize = filesize( $upload['file'] ); |
|
| 1687 | + $filesize = filesize($upload['file']); |
|
| 1688 | 1688 | // request failed |
| 1689 | - if ( ! $headers ) {
|
|
| 1690 | - $log_message = __( 'Remote server did not respond', 'geodirectory' ); |
|
| 1689 | + if (!$headers) {
|
|
| 1690 | + $log_message = __('Remote server did not respond', 'geodirectory');
|
|
| 1691 | 1691 | } // make sure the fetch was successful |
| 1692 | - elseif ( $headers['response']['code'] != '200' ) {
|
|
| 1693 | - $log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) ); |
|
| 1694 | - } elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
|
|
| 1695 | - $log_message = __( 'Remote file is incorrect size', 'geodirectory' ); |
|
| 1696 | - } elseif ( 0 == $filesize ) {
|
|
| 1697 | - $log_message = __( 'Zero size file downloaded', 'geodirectory' ); |
|
| 1698 | - } |
|
| 1699 | - |
|
| 1700 | - if ( $log_message ) {
|
|
| 1701 | - $del = unlink( $upload['file'] ); |
|
| 1702 | - if ( ! $del ) {
|
|
| 1703 | - geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) ); |
|
| 1692 | + elseif ($headers['response']['code'] != '200') {
|
|
| 1693 | + $log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
|
|
| 1694 | + } elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
|
|
| 1695 | + $log_message = __('Remote file is incorrect size', 'geodirectory');
|
|
| 1696 | + } elseif (0 == $filesize) {
|
|
| 1697 | + $log_message = __('Zero size file downloaded', 'geodirectory');
|
|
| 1698 | + } |
|
| 1699 | + |
|
| 1700 | + if ($log_message) {
|
|
| 1701 | + $del = unlink($upload['file']); |
|
| 1702 | + if (!$del) {
|
|
| 1703 | + geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
|
|
| 1704 | 1704 | } |
| 1705 | 1705 | |
| 1706 | - return new WP_Error( 'import_file_error', $log_message ); |
|
| 1706 | + return new WP_Error('import_file_error', $log_message);
|
|
| 1707 | 1707 | } |
| 1708 | 1708 | |
| 1709 | - if ( $dummy && $add_to_cache && is_array( $upload ) ) {
|
|
| 1710 | - $images = get_transient( 'cached_dummy_images' ); |
|
| 1711 | - if ( is_array( $images ) ) {
|
|
| 1712 | - $images[ $key ] = $upload; |
|
| 1709 | + if ($dummy && $add_to_cache && is_array($upload)) {
|
|
| 1710 | + $images = get_transient('cached_dummy_images');
|
|
| 1711 | + if (is_array($images)) {
|
|
| 1712 | + $images[$key] = $upload; |
|
| 1713 | 1713 | } else {
|
| 1714 | - $images = array( $key => $upload ); |
|
| 1714 | + $images = array($key => $upload); |
|
| 1715 | 1715 | } |
| 1716 | 1716 | |
| 1717 | 1717 | //setting the cache using the WP Transient API |
| 1718 | - set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache |
|
| 1718 | + set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
|
|
| 1719 | 1719 | } |
| 1720 | 1720 | |
| 1721 | 1721 | return $upload; |
@@ -1729,12 +1729,12 @@ discard block |
||
| 1729 | 1729 | * @return string|void Max upload size. |
| 1730 | 1730 | */ |
| 1731 | 1731 | function geodir_max_upload_size() {
|
| 1732 | - $max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 ); |
|
| 1732 | + $max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
|
|
| 1733 | 1733 | |
| 1734 | - if ( $max_filesize > 0 && $max_filesize < 1 ) {
|
|
| 1735 | - $max_filesize = (int) ( $max_filesize * 1024 ) . 'kb'; |
|
| 1734 | + if ($max_filesize > 0 && $max_filesize < 1) {
|
|
| 1735 | + $max_filesize = (int) ($max_filesize * 1024).'kb'; |
|
| 1736 | 1736 | } else {
|
| 1737 | - $max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb'; |
|
| 1737 | + $max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb'; |
|
| 1738 | 1738 | } |
| 1739 | 1739 | |
| 1740 | 1740 | /** |
@@ -1744,7 +1744,7 @@ discard block |
||
| 1744 | 1744 | * |
| 1745 | 1745 | * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb. |
| 1746 | 1746 | */ |
| 1747 | - return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize ); |
|
| 1747 | + return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
|
|
| 1748 | 1748 | } |
| 1749 | 1749 | |
| 1750 | 1750 | /** |
@@ -1757,8 +1757,8 @@ discard block |
||
| 1757 | 1757 | * @return bool If dummy folder exists returns true, else false. |
| 1758 | 1758 | */ |
| 1759 | 1759 | function geodir_dummy_folder_exists() {
|
| 1760 | - $path = geodir_plugin_path() . '/geodirectory-admin/dummy/'; |
|
| 1761 | - if ( ! is_dir( $path ) ) {
|
|
| 1760 | + $path = geodir_plugin_path().'/geodirectory-admin/dummy/'; |
|
| 1761 | + if (!is_dir($path)) {
|
|
| 1762 | 1762 | return false; |
| 1763 | 1763 | } else {
|
| 1764 | 1764 | return true; |
@@ -1777,17 +1777,17 @@ discard block |
||
| 1777 | 1777 | * |
| 1778 | 1778 | * @return object Author info. |
| 1779 | 1779 | */ |
| 1780 | -function geodir_get_author_info( $aid ) {
|
|
| 1780 | +function geodir_get_author_info($aid) {
|
|
| 1781 | 1781 | global $wpdb; |
| 1782 | 1782 | /*$infosql = "select * from $wpdb->users where ID=$aid";*/ |
| 1783 | - $infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) ); |
|
| 1784 | - $info = $wpdb->get_results( $infosql ); |
|
| 1785 | - if ( $info ) {
|
|
| 1783 | + $infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
|
|
| 1784 | + $info = $wpdb->get_results($infosql); |
|
| 1785 | + if ($info) {
|
|
| 1786 | 1786 | return $info[0]; |
| 1787 | 1787 | } |
| 1788 | 1788 | } |
| 1789 | 1789 | |
| 1790 | -if ( ! function_exists( 'adminEmail' ) ) {
|
|
| 1790 | +if (!function_exists('adminEmail')) {
|
|
| 1791 | 1791 | /** |
| 1792 | 1792 | * Send emails to client on post submission, renew etc. |
| 1793 | 1793 | * |
@@ -1800,67 +1800,67 @@ discard block |
||
| 1800 | 1800 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1801 | 1801 | * @param string $custom_1 Custom data to be sent. |
| 1802 | 1802 | */ |
| 1803 | - function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
|
|
| 1803 | + function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
|
|
| 1804 | 1804 | global $wpdb; |
| 1805 | - if ( $message_type == 'expiration' ) {
|
|
| 1806 | - $subject = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) ); |
|
| 1807 | - $client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) ); |
|
| 1808 | - } elseif ( $message_type == 'post_submited' ) {
|
|
| 1809 | - $subject = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' ); |
|
| 1810 | - $client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' ); |
|
| 1811 | - } elseif ( $message_type == 'renew' ) {
|
|
| 1812 | - $subject = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' ); |
|
| 1813 | - $client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' ); |
|
| 1814 | - } elseif ( $message_type == 'upgrade' ) {
|
|
| 1815 | - $subject = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' ); |
|
| 1816 | - $client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' ); |
|
| 1817 | - } elseif ( $message_type == 'claim_approved' ) {
|
|
| 1818 | - $subject = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' ); |
|
| 1819 | - $client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' ); |
|
| 1820 | - } elseif ( $message_type == 'claim_rejected' ) {
|
|
| 1821 | - $subject = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' ); |
|
| 1822 | - $client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' ); |
|
| 1823 | - } elseif ( $message_type == 'claim_requested' ) {
|
|
| 1824 | - $subject = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' ); |
|
| 1825 | - $client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' ); |
|
| 1826 | - } elseif ( $message_type == 'auto_claim' ) {
|
|
| 1827 | - $subject = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' ); |
|
| 1828 | - $client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' ); |
|
| 1829 | - } elseif ( $message_type == 'payment_success' ) {
|
|
| 1830 | - $subject = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' ); |
|
| 1831 | - $client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' ); |
|
| 1832 | - } elseif ( $message_type == 'payment_fail' ) {
|
|
| 1833 | - $subject = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' ); |
|
| 1834 | - $client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' ); |
|
| 1805 | + if ($message_type == 'expiration') {
|
|
| 1806 | + $subject = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
|
|
| 1807 | + $client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
|
|
| 1808 | + } elseif ($message_type == 'post_submited') {
|
|
| 1809 | + $subject = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
|
|
| 1810 | + $client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
|
|
| 1811 | + } elseif ($message_type == 'renew') {
|
|
| 1812 | + $subject = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
|
|
| 1813 | + $client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
|
|
| 1814 | + } elseif ($message_type == 'upgrade') {
|
|
| 1815 | + $subject = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
|
|
| 1816 | + $client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
|
|
| 1817 | + } elseif ($message_type == 'claim_approved') {
|
|
| 1818 | + $subject = __(get_option('claim_approved_email_subject'), 'geodirectory');
|
|
| 1819 | + $client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
|
|
| 1820 | + } elseif ($message_type == 'claim_rejected') {
|
|
| 1821 | + $subject = __(get_option('claim_rejected_email_subject'), 'geodirectory');
|
|
| 1822 | + $client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
|
|
| 1823 | + } elseif ($message_type == 'claim_requested') {
|
|
| 1824 | + $subject = __(get_option('claim_email_subject_admin'), 'geodirectory');
|
|
| 1825 | + $client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
|
|
| 1826 | + } elseif ($message_type == 'auto_claim') {
|
|
| 1827 | + $subject = __(get_option('auto_claim_email_subject'), 'geodirectory');
|
|
| 1828 | + $client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
|
|
| 1829 | + } elseif ($message_type == 'payment_success') {
|
|
| 1830 | + $subject = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
|
|
| 1831 | + $client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
|
|
| 1832 | + } elseif ($message_type == 'payment_fail') {
|
|
| 1833 | + $subject = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
|
|
| 1834 | + $client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
|
|
| 1835 | 1835 | } |
| 1836 | 1836 | $transaction_details = $custom_1; |
| 1837 | - $fromEmail = get_option( 'site_email' ); |
|
| 1837 | + $fromEmail = get_option('site_email');
|
|
| 1838 | 1838 | $fromEmailName = get_site_emailName(); |
| 1839 | 1839 | //$alivedays = get_post_meta($page_id,'alive_days',true); |
| 1840 | - $pkg_limit = get_property_price_info_listing( $page_id ); |
|
| 1840 | + $pkg_limit = get_property_price_info_listing($page_id); |
|
| 1841 | 1841 | $alivedays = $pkg_limit['days']; |
| 1842 | - $productlink = get_permalink( $page_id ); |
|
| 1843 | - $post_info = get_post( $page_id ); |
|
| 1844 | - $post_date = date( 'dS F,Y', strtotime( $post_info->post_date ) ); |
|
| 1845 | - $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>'; |
|
| 1842 | + $productlink = get_permalink($page_id); |
|
| 1843 | + $post_info = get_post($page_id); |
|
| 1844 | + $post_date = date('dS F,Y', strtotime($post_info->post_date));
|
|
| 1845 | + $listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>'; |
|
| 1846 | 1846 | $loginurl = geodir_login_url(); |
| 1847 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
| 1847 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
| 1848 | 1848 | $siteurl = home_url(); |
| 1849 | - $siteurl_link = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>'; |
|
| 1850 | - $user_info = get_userdata( $user_id ); |
|
| 1849 | + $siteurl_link = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>'; |
|
| 1850 | + $user_info = get_userdata($user_id); |
|
| 1851 | 1851 | $user_email = $user_info->user_email; |
| 1852 | - $display_name = geodir_get_client_name( $user_id ); |
|
| 1852 | + $display_name = geodir_get_client_name($user_id); |
|
| 1853 | 1853 | $user_login = $user_info->user_login; |
| 1854 | - $number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' ); |
|
| 1855 | - if ( $number_of_grace_days == '' ) {
|
|
| 1854 | + $number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
|
|
| 1855 | + if ($number_of_grace_days == '') {
|
|
| 1856 | 1856 | $number_of_grace_days = 1; |
| 1857 | 1857 | } |
| 1858 | - if ( $post_info->post_type == 'event' ) {
|
|
| 1858 | + if ($post_info->post_type == 'event') {
|
|
| 1859 | 1859 | $post_type = 'event'; |
| 1860 | 1860 | } else {
|
| 1861 | 1861 | $post_type = 'listing'; |
| 1862 | 1862 | } |
| 1863 | - $renew_link = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>'; |
|
| 1863 | + $renew_link = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>'; |
|
| 1864 | 1864 | $search_array = array( |
| 1865 | 1865 | '[#client_name#]', |
| 1866 | 1866 | '[#listing_link#]', |
@@ -1876,7 +1876,7 @@ discard block |
||
| 1876 | 1876 | '[#site_name#]', |
| 1877 | 1877 | '[#transaction_details#]' |
| 1878 | 1878 | ); |
| 1879 | - $replace_array = array( |
|
| 1879 | + $replace_array = array( |
|
| 1880 | 1880 | $display_name, |
| 1881 | 1881 | $listingLink, |
| 1882 | 1882 | $post_date, |
@@ -1891,13 +1891,13 @@ discard block |
||
| 1891 | 1891 | $fromEmailName, |
| 1892 | 1892 | $transaction_details |
| 1893 | 1893 | ); |
| 1894 | - $client_message = str_replace( $search_array, $replace_array, $client_message ); |
|
| 1895 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
| 1894 | + $client_message = str_replace($search_array, $replace_array, $client_message); |
|
| 1895 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
| 1896 | 1896 | |
| 1897 | 1897 | |
| 1898 | - $headers = array(); |
|
| 1898 | + $headers = array(); |
|
| 1899 | 1899 | $headers[] = 'Content-type: text/html; charset=UTF-8'; |
| 1900 | - $headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>'; |
|
| 1900 | + $headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>'; |
|
| 1901 | 1901 | |
| 1902 | 1902 | $to = $fromEmail; |
| 1903 | 1903 | $message = $client_message; |
@@ -1915,7 +1915,7 @@ discard block |
||
| 1915 | 1915 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1916 | 1916 | * @param string $custom_1 Custom data to be sent. |
| 1917 | 1917 | */ |
| 1918 | - $to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 ); |
|
| 1918 | + $to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
|
|
| 1919 | 1919 | /** |
| 1920 | 1920 | * Filter the admin email subject. |
| 1921 | 1921 | * |
@@ -1928,7 +1928,7 @@ discard block |
||
| 1928 | 1928 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1929 | 1929 | * @param string $custom_1 Custom data to be sent. |
| 1930 | 1930 | */ |
| 1931 | - $subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 ); |
|
| 1931 | + $subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
|
|
| 1932 | 1932 | /** |
| 1933 | 1933 | * Filter the admin email message. |
| 1934 | 1934 | * |
@@ -1941,7 +1941,7 @@ discard block |
||
| 1941 | 1941 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1942 | 1942 | * @param string $custom_1 Custom data to be sent. |
| 1943 | 1943 | */ |
| 1944 | - $message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 ); |
|
| 1944 | + $message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
|
|
| 1945 | 1945 | /** |
| 1946 | 1946 | * Filter the admin email headers. |
| 1947 | 1947 | * |
@@ -1954,22 +1954,22 @@ discard block |
||
| 1954 | 1954 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1955 | 1955 | * @param string $custom_1 Custom data to be sent. |
| 1956 | 1956 | */ |
| 1957 | - $headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 ); |
|
| 1957 | + $headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
|
|
| 1958 | 1958 | |
| 1959 | 1959 | |
| 1960 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
| 1961 | - if ( ! $sent ) {
|
|
| 1962 | - if ( is_array( $to ) ) {
|
|
| 1963 | - $to = implode( ',', $to ); |
|
| 1960 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
| 1961 | + if (!$sent) {
|
|
| 1962 | + if (is_array($to)) {
|
|
| 1963 | + $to = implode(',', $to);
|
|
| 1964 | 1964 | } |
| 1965 | 1965 | $log_message = sprintf( |
| 1966 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
| 1966 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
|
|
| 1967 | 1967 | $message_type, |
| 1968 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
| 1968 | + date_i18n('F j Y H:i:s', current_time('timestamp')),
|
|
| 1969 | 1969 | $to, |
| 1970 | 1970 | $subject |
| 1971 | 1971 | ); |
| 1972 | - geodir_error_log( $log_message ); |
|
| 1972 | + geodir_error_log($log_message); |
|
| 1973 | 1973 | } |
| 1974 | 1974 | } |
| 1975 | 1975 | } |
@@ -1989,12 +1989,12 @@ discard block |
||
| 1989 | 1989 | * |
| 1990 | 1990 | * @return array Category IDs. |
| 1991 | 1991 | */ |
| 1992 | -function gd_lang_object_ids( $ids_array, $type ) {
|
|
| 1993 | - if ( function_exists( 'icl_object_id' ) ) {
|
|
| 1992 | +function gd_lang_object_ids($ids_array, $type) {
|
|
| 1993 | + if (function_exists('icl_object_id')) {
|
|
| 1994 | 1994 | $res = array(); |
| 1995 | - foreach ( $ids_array as $id ) {
|
|
| 1996 | - $xlat = icl_object_id( $id, $type, false ); |
|
| 1997 | - if ( ! is_null( $xlat ) ) {
|
|
| 1995 | + foreach ($ids_array as $id) {
|
|
| 1996 | + $xlat = icl_object_id($id, $type, false); |
|
| 1997 | + if (!is_null($xlat)) {
|
|
| 1998 | 1998 | $res[] = $xlat; |
| 1999 | 1999 | } |
| 2000 | 2000 | } |
@@ -2018,20 +2018,20 @@ discard block |
||
| 2018 | 2018 | * |
| 2019 | 2019 | * @return array Modified Body CSS classes. |
| 2020 | 2020 | */ |
| 2021 | -function geodir_custom_posts_body_class( $classes ) {
|
|
| 2021 | +function geodir_custom_posts_body_class($classes) {
|
|
| 2022 | 2022 | global $wpdb, $wp; |
| 2023 | - $post_types = geodir_get_posttypes( 'object' ); |
|
| 2024 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
|
|
| 2023 | + $post_types = geodir_get_posttypes('object');
|
|
| 2024 | + if (!empty($post_types) && count((array) $post_types) > 1) {
|
|
| 2025 | 2025 | $classes[] = 'geodir_custom_posts'; |
| 2026 | 2026 | } |
| 2027 | 2027 | |
| 2028 | 2028 | // fix body class for signup page |
| 2029 | - if ( geodir_is_page( 'login' ) ) {
|
|
| 2029 | + if (geodir_is_page('login')) {
|
|
| 2030 | 2030 | $new_classes = array(); |
| 2031 | 2031 | $new_classes[] = 'signup page-geodir-signup'; |
| 2032 | - if ( ! empty( $classes ) ) {
|
|
| 2033 | - foreach ( $classes as $class ) {
|
|
| 2034 | - if ( $class && $class != 'home' && $class != 'blog' ) {
|
|
| 2032 | + if (!empty($classes)) {
|
|
| 2033 | + foreach ($classes as $class) {
|
|
| 2034 | + if ($class && $class != 'home' && $class != 'blog') {
|
|
| 2035 | 2035 | $new_classes[] = $class; |
| 2036 | 2036 | } |
| 2037 | 2037 | } |
@@ -2039,14 +2039,14 @@ discard block |
||
| 2039 | 2039 | $classes = $new_classes; |
| 2040 | 2040 | } |
| 2041 | 2041 | |
| 2042 | - if ( geodir_is_geodir_page() ) {
|
|
| 2042 | + if (geodir_is_geodir_page()) {
|
|
| 2043 | 2043 | $classes[] = 'geodir-page'; |
| 2044 | 2044 | } |
| 2045 | 2045 | |
| 2046 | 2046 | return $classes; |
| 2047 | 2047 | } |
| 2048 | 2048 | |
| 2049 | -add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search |
|
| 2049 | +add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search
|
|
| 2050 | 2050 | |
| 2051 | 2051 | |
| 2052 | 2052 | /** |
@@ -2062,7 +2062,7 @@ discard block |
||
| 2062 | 2062 | * |
| 2063 | 2063 | * @since 1.0.0 |
| 2064 | 2064 | */ |
| 2065 | - return apply_filters( 'geodir_map_zoom_level', array( |
|
| 2065 | + return apply_filters('geodir_map_zoom_level', array(
|
|
| 2066 | 2066 | 1, |
| 2067 | 2067 | 2, |
| 2068 | 2068 | 3, |
@@ -2082,7 +2082,7 @@ discard block |
||
| 2082 | 2082 | 17, |
| 2083 | 2083 | 18, |
| 2084 | 2084 | 19 |
| 2085 | - ) ); |
|
| 2085 | + )); |
|
| 2086 | 2086 | |
| 2087 | 2087 | } |
| 2088 | 2088 | |
@@ -2095,12 +2095,12 @@ discard block |
||
| 2095 | 2095 | * |
| 2096 | 2096 | * @param string $geodir_option_name Option key. |
| 2097 | 2097 | */ |
| 2098 | -function geodir_option_version_backup( $geodir_option_name ) {
|
|
| 2098 | +function geodir_option_version_backup($geodir_option_name) {
|
|
| 2099 | 2099 | $version_date = time(); |
| 2100 | - $geodir_option = get_option( $geodir_option_name ); |
|
| 2100 | + $geodir_option = get_option($geodir_option_name); |
|
| 2101 | 2101 | |
| 2102 | - if ( ! empty( $geodir_option ) ) {
|
|
| 2103 | - add_option( $geodir_option_name . '_' . $version_date, $geodir_option ); |
|
| 2102 | + if (!empty($geodir_option)) {
|
|
| 2103 | + add_option($geodir_option_name.'_'.$version_date, $geodir_option); |
|
| 2104 | 2104 | } |
| 2105 | 2105 | } |
| 2106 | 2106 | |
@@ -2114,10 +2114,10 @@ discard block |
||
| 2114 | 2114 | * |
| 2115 | 2115 | * @return int Page ID. |
| 2116 | 2116 | */ |
| 2117 | -function get_page_id_geodir_add_listing_page( $page_id ) {
|
|
| 2118 | - if ( geodir_wpml_multilingual_status() ) {
|
|
| 2117 | +function get_page_id_geodir_add_listing_page($page_id) {
|
|
| 2118 | + if (geodir_wpml_multilingual_status()) {
|
|
| 2119 | 2119 | $post_type = 'post_page'; |
| 2120 | - $page_id = geodir_get_wpml_element_id( $page_id, $post_type ); |
|
| 2120 | + $page_id = geodir_get_wpml_element_id($page_id, $post_type); |
|
| 2121 | 2121 | } |
| 2122 | 2122 | |
| 2123 | 2123 | return $page_id; |
@@ -2131,7 +2131,7 @@ discard block |
||
| 2131 | 2131 | * @return bool Returns true when sitepress multilingual CMS active. else returns false. |
| 2132 | 2132 | */ |
| 2133 | 2133 | function geodir_wpml_multilingual_status() {
|
| 2134 | - if ( function_exists( 'icl_object_id' ) ) {
|
|
| 2134 | + if (function_exists('icl_object_id')) {
|
|
| 2135 | 2135 | return true; |
| 2136 | 2136 | } |
| 2137 | 2137 | |
@@ -2149,19 +2149,19 @@ discard block |
||
| 2149 | 2149 | * |
| 2150 | 2150 | * @return int Element ID when exists. Else the page id. |
| 2151 | 2151 | */ |
| 2152 | -function geodir_get_wpml_element_id( $page_id, $post_type ) {
|
|
| 2152 | +function geodir_get_wpml_element_id($page_id, $post_type) {
|
|
| 2153 | 2153 | global $sitepress; |
| 2154 | - if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
|
|
| 2155 | - $trid = $sitepress->get_element_trid( $page_id, $post_type ); |
|
| 2154 | + if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
|
|
| 2155 | + $trid = $sitepress->get_element_trid($page_id, $post_type); |
|
| 2156 | 2156 | |
| 2157 | - if ( $trid > 0 ) {
|
|
| 2158 | - $translations = $sitepress->get_element_translations( $trid, $post_type ); |
|
| 2157 | + if ($trid > 0) {
|
|
| 2158 | + $translations = $sitepress->get_element_translations($trid, $post_type); |
|
| 2159 | 2159 | |
| 2160 | 2160 | $lang = $sitepress->get_current_language(); |
| 2161 | 2161 | $lang = $lang ? $lang : $sitepress->get_default_language(); |
| 2162 | 2162 | |
| 2163 | - if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
|
|
| 2164 | - $page_id = $translations[ $lang ]->element_id; |
|
| 2163 | + if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
|
|
| 2164 | + $page_id = $translations[$lang]->element_id; |
|
| 2165 | 2165 | } |
| 2166 | 2166 | } |
| 2167 | 2167 | } |
@@ -2178,15 +2178,15 @@ discard block |
||
| 2178 | 2178 | */ |
| 2179 | 2179 | function geodir_wpml_check_element_id() {
|
| 2180 | 2180 | global $sitepress; |
| 2181 | - if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
|
|
| 2181 | + if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
|
|
| 2182 | 2182 | $el_type = 'post_page'; |
| 2183 | - $el_id = get_option( 'geodir_add_listing_page' ); |
|
| 2183 | + $el_id = get_option('geodir_add_listing_page');
|
|
| 2184 | 2184 | $default_lang = $sitepress->get_default_language(); |
| 2185 | - $el_details = $sitepress->get_element_language_details( $el_id, $el_type ); |
|
| 2185 | + $el_details = $sitepress->get_element_language_details($el_id, $el_type); |
|
| 2186 | 2186 | |
| 2187 | - if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
|
|
| 2188 | - if ( ! $el_details->source_language_code ) {
|
|
| 2189 | - $sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang ); |
|
| 2187 | + if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
|
|
| 2188 | + if (!$el_details->source_language_code) {
|
|
| 2189 | + $sitepress->set_element_language_details($el_id, $el_type, '', $default_lang); |
|
| 2190 | 2190 | $sitepress->icl_translations_cache->clear(); |
| 2191 | 2191 | } |
| 2192 | 2192 | } |
@@ -2205,41 +2205,41 @@ discard block |
||
| 2205 | 2205 | * |
| 2206 | 2206 | * @return string Orderby SQL. |
| 2207 | 2207 | */ |
| 2208 | -function geodir_widget_listings_get_order( $query_args ) {
|
|
| 2208 | +function geodir_widget_listings_get_order($query_args) {
|
|
| 2209 | 2209 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2210 | 2210 | |
| 2211 | 2211 | $query_args = $gd_query_args_widgets; |
| 2212 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2213 | - return $wpdb->posts . ".post_date DESC, "; |
|
| 2212 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2213 | + return $wpdb->posts.".post_date DESC, "; |
|
| 2214 | 2214 | } |
| 2215 | 2215 | |
| 2216 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
| 2217 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2216 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
| 2217 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2218 | 2218 | |
| 2219 | - $sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : ''; |
|
| 2219 | + $sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : ''; |
|
| 2220 | 2220 | |
| 2221 | - switch ( $sort_by ) {
|
|
| 2221 | + switch ($sort_by) {
|
|
| 2222 | 2222 | case 'latest': |
| 2223 | 2223 | case 'newest': |
| 2224 | - $orderby = $wpdb->posts . ".post_date DESC, "; |
|
| 2224 | + $orderby = $wpdb->posts.".post_date DESC, "; |
|
| 2225 | 2225 | break; |
| 2226 | 2226 | case 'featured': |
| 2227 | - $orderby = $table . ".is_featured ASC, "; |
|
| 2227 | + $orderby = $table.".is_featured ASC, "; |
|
| 2228 | 2228 | break; |
| 2229 | 2229 | case 'az': |
| 2230 | - $orderby = $wpdb->posts . ".post_title ASC, "; |
|
| 2230 | + $orderby = $wpdb->posts.".post_title ASC, "; |
|
| 2231 | 2231 | break; |
| 2232 | 2232 | case 'high_review': |
| 2233 | - $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, "; |
|
| 2233 | + $orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, "; |
|
| 2234 | 2234 | break; |
| 2235 | 2235 | case 'high_rating': |
| 2236 | - $orderby = "( " . $table . ".overall_rating ) DESC, "; |
|
| 2236 | + $orderby = "( ".$table.".overall_rating ) DESC, "; |
|
| 2237 | 2237 | break; |
| 2238 | 2238 | case 'random': |
| 2239 | 2239 | $orderby = "RAND(), "; |
| 2240 | 2240 | break; |
| 2241 | 2241 | default: |
| 2242 | - $orderby = $wpdb->posts . ".post_title ASC, "; |
|
| 2242 | + $orderby = $wpdb->posts.".post_title ASC, "; |
|
| 2243 | 2243 | break; |
| 2244 | 2244 | } |
| 2245 | 2245 | |
@@ -2262,15 +2262,15 @@ discard block |
||
| 2262 | 2262 | * |
| 2263 | 2263 | * @return mixed Result object. |
| 2264 | 2264 | */ |
| 2265 | -function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
|
|
| 2265 | +function geodir_get_widget_listings($query_args = array(), $count_only = false) {
|
|
| 2266 | 2266 | global $wpdb, $plugin_prefix, $table_prefix; |
| 2267 | 2267 | $GLOBALS['gd_query_args_widgets'] = $query_args; |
| 2268 | 2268 | $gd_query_args_widgets = $query_args; |
| 2269 | 2269 | |
| 2270 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
| 2271 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2270 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
| 2271 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2272 | 2272 | |
| 2273 | - $fields = $wpdb->posts . ".*, " . $table . ".*"; |
|
| 2273 | + $fields = $wpdb->posts.".*, ".$table.".*"; |
|
| 2274 | 2274 | /** |
| 2275 | 2275 | * Filter widget listing fields string part that is being used for query. |
| 2276 | 2276 | * |
@@ -2280,17 +2280,17 @@ discard block |
||
| 2280 | 2280 | * @param string $table Table name. |
| 2281 | 2281 | * @param string $post_type Post type. |
| 2282 | 2282 | */ |
| 2283 | - $fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type ); |
|
| 2283 | + $fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
|
|
| 2284 | 2284 | |
| 2285 | - $join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
|
|
| 2285 | + $join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
|
|
| 2286 | 2286 | |
| 2287 | 2287 | ########### WPML ########### |
| 2288 | 2288 | |
| 2289 | - if ( function_exists( 'icl_object_id' ) ) {
|
|
| 2289 | + if (function_exists('icl_object_id')) {
|
|
| 2290 | 2290 | global $sitepress; |
| 2291 | 2291 | $lang_code = ICL_LANGUAGE_CODE; |
| 2292 | - if ( $lang_code ) {
|
|
| 2293 | - $join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID"; |
|
| 2292 | + if ($lang_code) {
|
|
| 2293 | + $join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID"; |
|
| 2294 | 2294 | } |
| 2295 | 2295 | } |
| 2296 | 2296 | |
@@ -2304,15 +2304,15 @@ discard block |
||
| 2304 | 2304 | * @param string $join Join clause string. |
| 2305 | 2305 | * @param string $post_type Post type. |
| 2306 | 2306 | */ |
| 2307 | - $join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type ); |
|
| 2307 | + $join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
|
|
| 2308 | 2308 | |
| 2309 | - $post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : ''; |
|
| 2309 | + $post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : ''; |
|
| 2310 | 2310 | |
| 2311 | - $where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'"; |
|
| 2311 | + $where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'"; |
|
| 2312 | 2312 | |
| 2313 | 2313 | ########### WPML ########### |
| 2314 | - if ( function_exists( 'icl_object_id' ) ) {
|
|
| 2315 | - if ( $lang_code ) {
|
|
| 2314 | + if (function_exists('icl_object_id')) {
|
|
| 2315 | + if ($lang_code) {
|
|
| 2316 | 2316 | $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' "; |
| 2317 | 2317 | } |
| 2318 | 2318 | } |
@@ -2325,8 +2325,8 @@ discard block |
||
| 2325 | 2325 | * @param string $where Where clause string. |
| 2326 | 2326 | * @param string $post_type Post type. |
| 2327 | 2327 | */ |
| 2328 | - $where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type ); |
|
| 2329 | - $where = $where != '' ? " WHERE 1=1 " . $where : ''; |
|
| 2328 | + $where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
|
|
| 2329 | + $where = $where != '' ? " WHERE 1=1 ".$where : ''; |
|
| 2330 | 2330 | |
| 2331 | 2331 | $groupby = " GROUP BY $wpdb->posts.ID "; |
| 2332 | 2332 | /** |
@@ -2337,15 +2337,15 @@ discard block |
||
| 2337 | 2337 | * @param string $groupby Group by clause string. |
| 2338 | 2338 | * @param string $post_type Post type. |
| 2339 | 2339 | */ |
| 2340 | - $groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type ); |
|
| 2340 | + $groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
|
|
| 2341 | 2341 | |
| 2342 | - if ( $count_only ) {
|
|
| 2343 | - $sql = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . " |
|
| 2344 | - " . $join . " |
|
| 2342 | + if ($count_only) {
|
|
| 2343 | + $sql = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts." |
|
| 2344 | + " . $join." |
|
| 2345 | 2345 | " . $where; |
| 2346 | - $rows = (int) $wpdb->get_var( $sql ); |
|
| 2346 | + $rows = (int) $wpdb->get_var($sql); |
|
| 2347 | 2347 | } else {
|
| 2348 | - $orderby = geodir_widget_listings_get_order( $query_args ); |
|
| 2348 | + $orderby = geodir_widget_listings_get_order($query_args); |
|
| 2349 | 2349 | /** |
| 2350 | 2350 | * Filter widget listing orderby clause string part that is being used for query. |
| 2351 | 2351 | * |
@@ -2355,11 +2355,11 @@ discard block |
||
| 2355 | 2355 | * @param string $table Table name. |
| 2356 | 2356 | * @param string $post_type Post type. |
| 2357 | 2357 | */ |
| 2358 | - $orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type ); |
|
| 2359 | - $orderby .= $wpdb->posts . ".post_title ASC"; |
|
| 2360 | - $orderby = $orderby != '' ? " ORDER BY " . $orderby : ''; |
|
| 2358 | + $orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
|
|
| 2359 | + $orderby .= $wpdb->posts.".post_title ASC"; |
|
| 2360 | + $orderby = $orderby != '' ? " ORDER BY ".$orderby : ''; |
|
| 2361 | 2361 | |
| 2362 | - $limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5; |
|
| 2362 | + $limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5; |
|
| 2363 | 2363 | /** |
| 2364 | 2364 | * Filter widget listing limit that is being used for query. |
| 2365 | 2365 | * |
@@ -2368,26 +2368,26 @@ discard block |
||
| 2368 | 2368 | * @param int $limit Query results limit. |
| 2369 | 2369 | * @param string $post_type Post type. |
| 2370 | 2370 | */ |
| 2371 | - $limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type ); |
|
| 2371 | + $limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
|
|
| 2372 | 2372 | |
| 2373 | - $page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1; |
|
| 2374 | - if ( ! $page ) {
|
|
| 2373 | + $page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1; |
|
| 2374 | + if (!$page) {
|
|
| 2375 | 2375 | $page = 1; |
| 2376 | 2376 | } |
| 2377 | 2377 | |
| 2378 | - $limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : ""; |
|
| 2378 | + $limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : ""; |
|
| 2379 | 2379 | |
| 2380 | - $sql = "SELECT SQL_CALC_FOUND_ROWS " . $fields . " FROM " . $wpdb->posts . " |
|
| 2381 | - " . $join . " |
|
| 2382 | - " . $where . " |
|
| 2383 | - " . $groupby . " |
|
| 2384 | - " . $orderby . " |
|
| 2380 | + $sql = "SELECT SQL_CALC_FOUND_ROWS ".$fields." FROM ".$wpdb->posts." |
|
| 2381 | + " . $join." |
|
| 2382 | + " . $where." |
|
| 2383 | + " . $groupby." |
|
| 2384 | + " . $orderby." |
|
| 2385 | 2385 | " . $limit; |
| 2386 | - $rows = $wpdb->get_results( $sql ); |
|
| 2386 | + $rows = $wpdb->get_results($sql); |
|
| 2387 | 2387 | } |
| 2388 | 2388 | |
| 2389 | - unset( $GLOBALS['gd_query_args_widgets'] ); |
|
| 2390 | - unset( $gd_query_args_widgets ); |
|
| 2389 | + unset($GLOBALS['gd_query_args_widgets']); |
|
| 2390 | + unset($gd_query_args_widgets); |
|
| 2391 | 2391 | |
| 2392 | 2392 | return $rows; |
| 2393 | 2393 | } |
@@ -2404,11 +2404,11 @@ discard block |
||
| 2404 | 2404 | * |
| 2405 | 2405 | * @return string Modified fields SQL. |
| 2406 | 2406 | */ |
| 2407 | -function geodir_function_widget_listings_fields( $fields ) {
|
|
| 2407 | +function geodir_function_widget_listings_fields($fields) {
|
|
| 2408 | 2408 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2409 | 2409 | |
| 2410 | 2410 | $query_args = $gd_query_args_widgets; |
| 2411 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2411 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2412 | 2412 | return $fields; |
| 2413 | 2413 | } |
| 2414 | 2414 | |
@@ -2427,24 +2427,24 @@ discard block |
||
| 2427 | 2427 | * |
| 2428 | 2428 | * @return string Modified join clause SQL. |
| 2429 | 2429 | */ |
| 2430 | -function geodir_function_widget_listings_join( $join ) {
|
|
| 2430 | +function geodir_function_widget_listings_join($join) {
|
|
| 2431 | 2431 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2432 | 2432 | |
| 2433 | 2433 | $query_args = $gd_query_args_widgets; |
| 2434 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2434 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2435 | 2435 | return $join; |
| 2436 | 2436 | } |
| 2437 | 2437 | |
| 2438 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
| 2439 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2438 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
| 2439 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2440 | 2440 | |
| 2441 | - if ( ! empty( $query_args['with_pics_only'] ) ) {
|
|
| 2442 | - $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )"; |
|
| 2441 | + if (!empty($query_args['with_pics_only'])) {
|
|
| 2442 | + $join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )"; |
|
| 2443 | 2443 | } |
| 2444 | 2444 | |
| 2445 | - if ( ! empty( $query_args['tax_query'] ) ) {
|
|
| 2446 | - $tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' ); |
|
| 2447 | - if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
|
|
| 2445 | + if (!empty($query_args['tax_query'])) {
|
|
| 2446 | + $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID'); |
|
| 2447 | + if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
|
|
| 2448 | 2448 | $join .= $tax_queries['join']; |
| 2449 | 2449 | } |
| 2450 | 2450 | } |
@@ -2464,49 +2464,49 @@ discard block |
||
| 2464 | 2464 | * |
| 2465 | 2465 | * @return string Modified where clause SQL. |
| 2466 | 2466 | */ |
| 2467 | -function geodir_function_widget_listings_where( $where ) {
|
|
| 2467 | +function geodir_function_widget_listings_where($where) {
|
|
| 2468 | 2468 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2469 | 2469 | |
| 2470 | 2470 | $query_args = $gd_query_args_widgets; |
| 2471 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2471 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2472 | 2472 | return $where; |
| 2473 | 2473 | } |
| 2474 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
| 2475 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2474 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
| 2475 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2476 | 2476 | |
| 2477 | - if ( ! empty( $query_args ) ) {
|
|
| 2478 | - if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
|
|
| 2479 | - $where = geodir_default_location_where( $where, $table ); |
|
| 2477 | + if (!empty($query_args)) {
|
|
| 2478 | + if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
|
|
| 2479 | + $where = geodir_default_location_where($where, $table); |
|
| 2480 | 2480 | } |
| 2481 | 2481 | |
| 2482 | - if ( ! empty( $query_args['post_author'] ) ) {
|
|
| 2483 | - $where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author']; |
|
| 2482 | + if (!empty($query_args['post_author'])) {
|
|
| 2483 | + $where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author']; |
|
| 2484 | 2484 | } |
| 2485 | 2485 | |
| 2486 | - if ( ! empty( $query_args['show_featured_only'] ) ) {
|
|
| 2487 | - $where .= " AND " . $table . ".is_featured = '1'"; |
|
| 2486 | + if (!empty($query_args['show_featured_only'])) {
|
|
| 2487 | + $where .= " AND ".$table.".is_featured = '1'"; |
|
| 2488 | 2488 | } |
| 2489 | 2489 | |
| 2490 | - if ( ! empty( $query_args['show_special_only'] ) ) {
|
|
| 2491 | - $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )"; |
|
| 2490 | + if (!empty($query_args['show_special_only'])) {
|
|
| 2491 | + $where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )"; |
|
| 2492 | 2492 | } |
| 2493 | 2493 | |
| 2494 | - if ( ! empty( $query_args['with_pics_only'] ) ) {
|
|
| 2495 | - $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL "; |
|
| 2494 | + if (!empty($query_args['with_pics_only'])) {
|
|
| 2495 | + $where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL "; |
|
| 2496 | 2496 | } |
| 2497 | 2497 | |
| 2498 | - if ( ! empty( $query_args['featured_image_only'] ) ) {
|
|
| 2499 | - $where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' "; |
|
| 2498 | + if (!empty($query_args['featured_image_only'])) {
|
|
| 2499 | + $where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' "; |
|
| 2500 | 2500 | } |
| 2501 | 2501 | |
| 2502 | - if ( ! empty( $query_args['with_videos_only'] ) ) {
|
|
| 2503 | - $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )"; |
|
| 2502 | + if (!empty($query_args['with_videos_only'])) {
|
|
| 2503 | + $where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )"; |
|
| 2504 | 2504 | } |
| 2505 | 2505 | |
| 2506 | - if ( ! empty( $query_args['tax_query'] ) ) {
|
|
| 2507 | - $tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' ); |
|
| 2506 | + if (!empty($query_args['tax_query'])) {
|
|
| 2507 | + $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID'); |
|
| 2508 | 2508 | |
| 2509 | - if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
|
|
| 2509 | + if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
|
|
| 2510 | 2510 | $where .= $tax_queries['where']; |
| 2511 | 2511 | } |
| 2512 | 2512 | } |
@@ -2527,11 +2527,11 @@ discard block |
||
| 2527 | 2527 | * |
| 2528 | 2528 | * @return string Modified orderby clause SQL. |
| 2529 | 2529 | */ |
| 2530 | -function geodir_function_widget_listings_orderby( $orderby ) {
|
|
| 2530 | +function geodir_function_widget_listings_orderby($orderby) {
|
|
| 2531 | 2531 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2532 | 2532 | |
| 2533 | 2533 | $query_args = $gd_query_args_widgets; |
| 2534 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2534 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2535 | 2535 | return $orderby; |
| 2536 | 2536 | } |
| 2537 | 2537 | |
@@ -2550,15 +2550,15 @@ discard block |
||
| 2550 | 2550 | * |
| 2551 | 2551 | * @return int Query limit. |
| 2552 | 2552 | */ |
| 2553 | -function geodir_function_widget_listings_limit( $limit ) {
|
|
| 2553 | +function geodir_function_widget_listings_limit($limit) {
|
|
| 2554 | 2554 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2555 | 2555 | |
| 2556 | 2556 | $query_args = $gd_query_args_widgets; |
| 2557 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2557 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2558 | 2558 | return $limit; |
| 2559 | 2559 | } |
| 2560 | 2560 | |
| 2561 | - if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
|
|
| 2561 | + if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
|
|
| 2562 | 2562 | $limit = (int) $query_args['posts_per_page']; |
| 2563 | 2563 | } |
| 2564 | 2564 | |
@@ -2576,12 +2576,12 @@ discard block |
||
| 2576 | 2576 | * |
| 2577 | 2577 | * @return int Large size width. |
| 2578 | 2578 | */ |
| 2579 | -function geodir_media_image_large_width( $default = 800, $params = '' ) {
|
|
| 2580 | - $large_size_w = get_option( 'large_size_w' ); |
|
| 2579 | +function geodir_media_image_large_width($default = 800, $params = '') {
|
|
| 2580 | + $large_size_w = get_option('large_size_w');
|
|
| 2581 | 2581 | $large_size_w = $large_size_w > 0 ? $large_size_w : $default; |
| 2582 | - $large_size_w = absint( $large_size_w ); |
|
| 2582 | + $large_size_w = absint($large_size_w); |
|
| 2583 | 2583 | |
| 2584 | - if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
|
|
| 2584 | + if (!get_option('geodir_use_wp_media_large_size')) {
|
|
| 2585 | 2585 | $large_size_w = 800; |
| 2586 | 2586 | } |
| 2587 | 2587 | |
@@ -2594,7 +2594,7 @@ discard block |
||
| 2594 | 2594 | * @param int $default Default width. |
| 2595 | 2595 | * @param string|array $params Image parameters. |
| 2596 | 2596 | */ |
| 2597 | - $large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params ); |
|
| 2597 | + $large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
|
|
| 2598 | 2598 | |
| 2599 | 2599 | return $large_size_w; |
| 2600 | 2600 | } |
@@ -2610,12 +2610,12 @@ discard block |
||
| 2610 | 2610 | * |
| 2611 | 2611 | * @return int Large size height. |
| 2612 | 2612 | */ |
| 2613 | -function geodir_media_image_large_height( $default = 800, $params = '' ) {
|
|
| 2614 | - $large_size_h = get_option( 'large_size_h' ); |
|
| 2613 | +function geodir_media_image_large_height($default = 800, $params = '') {
|
|
| 2614 | + $large_size_h = get_option('large_size_h');
|
|
| 2615 | 2615 | $large_size_h = $large_size_h > 0 ? $large_size_h : $default; |
| 2616 | - $large_size_h = absint( $large_size_h ); |
|
| 2616 | + $large_size_h = absint($large_size_h); |
|
| 2617 | 2617 | |
| 2618 | - if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
|
|
| 2618 | + if (!get_option('geodir_use_wp_media_large_size')) {
|
|
| 2619 | 2619 | $large_size_h = 800; |
| 2620 | 2620 | } |
| 2621 | 2621 | |
@@ -2628,7 +2628,7 @@ discard block |
||
| 2628 | 2628 | * @param int $default Default height. |
| 2629 | 2629 | * @param string|array $params Image parameters. |
| 2630 | 2630 | */ |
| 2631 | - $large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params ); |
|
| 2631 | + $large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
|
|
| 2632 | 2632 | |
| 2633 | 2633 | return $large_size_h; |
| 2634 | 2634 | } |
@@ -2645,8 +2645,8 @@ discard block |
||
| 2645 | 2645 | * |
| 2646 | 2646 | * @return string Sanitized name. |
| 2647 | 2647 | */ |
| 2648 | -function geodir_sanitize_location_name( $type, $name, $translate = true ) {
|
|
| 2649 | - if ( $name == '' ) {
|
|
| 2648 | +function geodir_sanitize_location_name($type, $name, $translate = true) {
|
|
| 2649 | + if ($name == '') {
|
|
| 2650 | 2650 | return null; |
| 2651 | 2651 | } |
| 2652 | 2652 | |
@@ -2655,13 +2655,13 @@ discard block |
||
| 2655 | 2655 | $type = $type == 'gd_city' ? 'city' : $type; |
| 2656 | 2656 | |
| 2657 | 2657 | $return = $name; |
| 2658 | - if ( function_exists( 'get_actual_location_name' ) ) {
|
|
| 2659 | - $return = get_actual_location_name( $type, $name, $translate ); |
|
| 2658 | + if (function_exists('get_actual_location_name')) {
|
|
| 2659 | + $return = get_actual_location_name($type, $name, $translate); |
|
| 2660 | 2660 | } else {
|
| 2661 | - $return = preg_replace( '/-(\d+)$/', '', $return ); |
|
| 2662 | - $return = preg_replace( '/[_-]/', ' ', $return ); |
|
| 2663 | - $return = geodir_ucwords( $return ); |
|
| 2664 | - $return = $translate ? __( $return, 'geodirectory' ) : $return; |
|
| 2661 | + $return = preg_replace('/-(\d+)$/', '', $return);
|
|
| 2662 | + $return = preg_replace('/[_-]/', ' ', $return);
|
|
| 2663 | + $return = geodir_ucwords($return); |
|
| 2664 | + $return = $translate ? __($return, 'geodirectory') : $return; |
|
| 2665 | 2665 | } |
| 2666 | 2666 | |
| 2667 | 2667 | return $return; |
@@ -2676,14 +2676,14 @@ discard block |
||
| 2676 | 2676 | * |
| 2677 | 2677 | * @param int $number Comments number. |
| 2678 | 2678 | */ |
| 2679 | -function geodir_comments_number( $number ) {
|
|
| 2679 | +function geodir_comments_number($number) {
|
|
| 2680 | 2680 | |
| 2681 | - if ( $number > 1 ) {
|
|
| 2682 | - $output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) ); |
|
| 2683 | - } elseif ( $number == 0 || $number == '' ) {
|
|
| 2684 | - $output = __( 'No Reviews', 'geodirectory' ); |
|
| 2681 | + if ($number > 1) {
|
|
| 2682 | + $output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
|
|
| 2683 | + } elseif ($number == 0 || $number == '') {
|
|
| 2684 | + $output = __('No Reviews', 'geodirectory');
|
|
| 2685 | 2685 | } else { // must be one
|
| 2686 | - $output = __( '1 Review', 'geodirectory' ); |
|
| 2686 | + $output = __('1 Review', 'geodirectory');
|
|
| 2687 | 2687 | } |
| 2688 | 2688 | echo $output; |
| 2689 | 2689 | } |
@@ -2698,18 +2698,18 @@ discard block |
||
| 2698 | 2698 | */ |
| 2699 | 2699 | function is_page_geodir_home() {
|
| 2700 | 2700 | global $wpdb; |
| 2701 | - $cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() ); |
|
| 2702 | - if ( function_exists( 'geodir_location_geo_home_link' ) ) {
|
|
| 2703 | - remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 ); |
|
| 2701 | + $cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
|
|
| 2702 | + if (function_exists('geodir_location_geo_home_link')) {
|
|
| 2703 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
|
| 2704 | 2704 | } |
| 2705 | - $home_url = home_url( '', 'http' ); |
|
| 2706 | - if ( function_exists( 'geodir_location_geo_home_link' ) ) {
|
|
| 2707 | - add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 ); |
|
| 2705 | + $home_url = home_url('', 'http');
|
|
| 2706 | + if (function_exists('geodir_location_geo_home_link')) {
|
|
| 2707 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
|
|
| 2708 | 2708 | } |
| 2709 | - $home_url = str_replace( "www.", "", $home_url ); |
|
| 2710 | - if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) {
|
|
| 2709 | + $home_url = str_replace("www.", "", $home_url);
|
|
| 2710 | + if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) {
|
|
| 2711 | 2711 | return true; |
| 2712 | - } elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) {
|
|
| 2712 | + } elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) {
|
|
| 2713 | 2713 | return true; |
| 2714 | 2714 | } else {
|
| 2715 | 2715 | return false; |
@@ -2729,18 +2729,18 @@ discard block |
||
| 2729 | 2729 | * |
| 2730 | 2730 | * @return string The canonical URL. |
| 2731 | 2731 | */ |
| 2732 | -function geodir_wpseo_homepage_canonical( $url ) {
|
|
| 2732 | +function geodir_wpseo_homepage_canonical($url) {
|
|
| 2733 | 2733 | global $post; |
| 2734 | 2734 | |
| 2735 | - if ( is_page_geodir_home() ) {
|
|
| 2735 | + if (is_page_geodir_home()) {
|
|
| 2736 | 2736 | return home_url(); |
| 2737 | 2737 | } |
| 2738 | 2738 | |
| 2739 | 2739 | return $url; |
| 2740 | 2740 | } |
| 2741 | 2741 | |
| 2742 | -add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 ); |
|
| 2743 | -add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 ); |
|
| 2742 | +add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
|
|
| 2743 | +add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
|
|
| 2744 | 2744 | |
| 2745 | 2745 | /** |
| 2746 | 2746 | * Add extra fields to google maps script call. |
@@ -2753,20 +2753,20 @@ discard block |
||
| 2753 | 2753 | * |
| 2754 | 2754 | * @return string Modified extra string. |
| 2755 | 2755 | */ |
| 2756 | -function geodir_googlemap_script_extra_details_page( $extra ) {
|
|
| 2756 | +function geodir_googlemap_script_extra_details_page($extra) {
|
|
| 2757 | 2757 | global $post; |
| 2758 | 2758 | $add_google_places_api = false; |
| 2759 | - if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
|
|
| 2759 | + if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
|
|
| 2760 | 2760 | $add_google_places_api = true; |
| 2761 | 2761 | } |
| 2762 | - if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
|
|
| 2762 | + if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
|
|
| 2763 | 2763 | $extra .= "&libraries=places"; |
| 2764 | 2764 | } |
| 2765 | 2765 | |
| 2766 | 2766 | return $extra; |
| 2767 | 2767 | } |
| 2768 | 2768 | |
| 2769 | -add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 ); |
|
| 2769 | +add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
|
|
| 2770 | 2770 | |
| 2771 | 2771 | |
| 2772 | 2772 | /** |
@@ -2784,99 +2784,99 @@ discard block |
||
| 2784 | 2784 | * after_widget. |
| 2785 | 2785 | * @param array|string $instance The settings for the particular instance of the widget. |
| 2786 | 2786 | */ |
| 2787 | -function geodir_popular_post_category_output( $args = '', $instance = '' ) {
|
|
| 2787 | +function geodir_popular_post_category_output($args = '', $instance = '') {
|
|
| 2788 | 2788 | // prints the widget |
| 2789 | 2789 | global $wpdb, $plugin_prefix, $geodir_post_category_str; |
| 2790 | - extract( $args, EXTR_SKIP ); |
|
| 2790 | + extract($args, EXTR_SKIP); |
|
| 2791 | 2791 | |
| 2792 | 2792 | echo $before_widget; |
| 2793 | 2793 | |
| 2794 | 2794 | /** This filter is documented in geodirectory_widgets.php */ |
| 2795 | - $title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
| 2795 | + $title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
|
|
| 2796 | 2796 | |
| 2797 | 2797 | $gd_post_type = geodir_get_current_posttype(); |
| 2798 | 2798 | |
| 2799 | - $category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15; |
|
| 2800 | - if ( ! empty( $gd_post_type ) ) {
|
|
| 2799 | + $category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15; |
|
| 2800 | + if (!empty($gd_post_type)) {
|
|
| 2801 | 2801 | $default_post_type = $gd_post_type; |
| 2802 | - } elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
|
|
| 2802 | + } elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
|
|
| 2803 | 2803 | $default_post_type = $instance['default_post_type']; |
| 2804 | 2804 | } else {
|
| 2805 | 2805 | $all_gd_post_type = geodir_get_posttypes(); |
| 2806 | - $default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : ''; |
|
| 2806 | + $default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : ''; |
|
| 2807 | 2807 | } |
| 2808 | - $parent_only = !empty( $instance['parent_only'] ) ? true : false; |
|
| 2808 | + $parent_only = !empty($instance['parent_only']) ? true : false; |
|
| 2809 | 2809 | |
| 2810 | 2810 | $taxonomy = array(); |
| 2811 | - if ( ! empty( $gd_post_type ) ) {
|
|
| 2812 | - $taxonomy[] = $gd_post_type . "category"; |
|
| 2811 | + if (!empty($gd_post_type)) {
|
|
| 2812 | + $taxonomy[] = $gd_post_type."category"; |
|
| 2813 | 2813 | } else {
|
| 2814 | - $taxonomy = geodir_get_taxonomies( $gd_post_type ); |
|
| 2814 | + $taxonomy = geodir_get_taxonomies($gd_post_type); |
|
| 2815 | 2815 | } |
| 2816 | 2816 | |
| 2817 | - $term_args = array( 'taxonomy' => $taxonomy ); |
|
| 2818 | - if ( $parent_only ) {
|
|
| 2817 | + $term_args = array('taxonomy' => $taxonomy);
|
|
| 2818 | + if ($parent_only) {
|
|
| 2819 | 2819 | $term_args['parent'] = 0; |
| 2820 | 2820 | } |
| 2821 | 2821 | |
| 2822 | - $terms = get_terms( $term_args ); |
|
| 2822 | + $terms = get_terms($term_args); |
|
| 2823 | 2823 | $a_terms = array(); |
| 2824 | 2824 | $b_terms = array(); |
| 2825 | 2825 | |
| 2826 | - foreach ( $terms as $term ) {
|
|
| 2827 | - if ( $term->count > 0 ) {
|
|
| 2828 | - $a_terms[ $term->taxonomy ][] = $term; |
|
| 2826 | + foreach ($terms as $term) {
|
|
| 2827 | + if ($term->count > 0) {
|
|
| 2828 | + $a_terms[$term->taxonomy][] = $term; |
|
| 2829 | 2829 | } |
| 2830 | 2830 | } |
| 2831 | 2831 | |
| 2832 | - if ( ! empty( $a_terms ) ) {
|
|
| 2833 | - foreach ( $a_terms as $b_key => $b_val ) {
|
|
| 2834 | - $b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' ); |
|
| 2832 | + if (!empty($a_terms)) {
|
|
| 2833 | + foreach ($a_terms as $b_key => $b_val) {
|
|
| 2834 | + $b_terms[$b_key] = geodir_sort_terms($b_val, 'count'); |
|
| 2835 | 2835 | } |
| 2836 | 2836 | |
| 2837 | - $default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : ''; |
|
| 2837 | + $default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : ''; |
|
| 2838 | 2838 | |
| 2839 | 2839 | $tax_change_output = ''; |
| 2840 | - if ( count( $b_terms ) > 1 ) {
|
|
| 2841 | - $tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax' onchange='geodir_get_post_term(this);'>"; |
|
| 2842 | - foreach ( $b_terms as $key => $val ) {
|
|
| 2843 | - $ptype = get_post_type_object( str_replace( "category", "", $key ) ); |
|
| 2844 | - $cpt_name = __( $ptype->labels->singular_name, 'geodirectory' ); |
|
| 2845 | - $tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>"; |
|
| 2840 | + if (count($b_terms) > 1) {
|
|
| 2841 | + $tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax' onchange='geodir_get_post_term(this);'>"; |
|
| 2842 | + foreach ($b_terms as $key => $val) {
|
|
| 2843 | + $ptype = get_post_type_object(str_replace("category", "", $key));
|
|
| 2844 | + $cpt_name = __($ptype->labels->singular_name, 'geodirectory'); |
|
| 2845 | + $tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
|
|
| 2846 | 2846 | } |
| 2847 | 2847 | $tax_change_output .= "</select>"; |
| 2848 | 2848 | } |
| 2849 | 2849 | |
| 2850 | - if ( ! empty( $b_terms ) ) {
|
|
| 2851 | - $terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array |
|
| 2852 | - global $cat_count;//make global so we can change via function |
|
| 2850 | + if (!empty($b_terms)) {
|
|
| 2851 | + $terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array |
|
| 2852 | + global $cat_count; //make global so we can change via function |
|
| 2853 | 2853 | $cat_count = 0; |
| 2854 | 2854 | ?> |
| 2855 | 2855 | <div class="geodir-category-list-in clearfix"> |
| 2856 | 2856 | <div class="geodir-cat-list clearfix"> |
| 2857 | 2857 | <?php |
| 2858 | - echo $before_title . __( $title ) . $after_title; |
|
| 2858 | + echo $before_title.__($title).$after_title; |
|
| 2859 | 2859 | |
| 2860 | 2860 | echo $tax_change_output; |
| 2861 | 2861 | |
| 2862 | 2862 | echo '<ul class="geodir-popular-cat-list">'; |
| 2863 | 2863 | |
| 2864 | - geodir_helper_cat_list_output( $terms, $category_limit ); |
|
| 2864 | + geodir_helper_cat_list_output($terms, $category_limit); |
|
| 2865 | 2865 | |
| 2866 | 2866 | echo '</ul>'; |
| 2867 | 2867 | ?> |
| 2868 | 2868 | </div> |
| 2869 | 2869 | <?php |
| 2870 | 2870 | $hide = ''; |
| 2871 | - if ( $cat_count < $category_limit ) {
|
|
| 2871 | + if ($cat_count < $category_limit) {
|
|
| 2872 | 2872 | $hide = 'style="display:none;"'; |
| 2873 | 2873 | } |
| 2874 | 2874 | echo "<div class='geodir-cat-list-more' $hide >"; |
| 2875 | - echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>'; |
|
| 2876 | - echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>'; |
|
| 2875 | + echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
|
|
| 2876 | + echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
|
|
| 2877 | 2877 | echo "</div>"; |
| 2878 | 2878 | /* add scripts */ |
| 2879 | - add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 ); |
|
| 2879 | + add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
|
|
| 2880 | 2880 | ?> |
| 2881 | 2881 | </div> |
| 2882 | 2882 | <?php |
@@ -2895,25 +2895,25 @@ discard block |
||
| 2895 | 2895 | * @param array $terms An array of term objects. |
| 2896 | 2896 | * @param int $category_limit Number of categories to display by default. |
| 2897 | 2897 | */ |
| 2898 | -function geodir_helper_cat_list_output( $terms, $category_limit ) {
|
|
| 2898 | +function geodir_helper_cat_list_output($terms, $category_limit) {
|
|
| 2899 | 2899 | global $geodir_post_category_str, $cat_count; |
| 2900 | 2900 | $term_icons = geodir_get_term_icon(); |
| 2901 | 2901 | |
| 2902 | 2902 | $geodir_post_category_str = array(); |
| 2903 | 2903 | |
| 2904 | 2904 | |
| 2905 | - foreach ( $terms as $cat ) {
|
|
| 2906 | - $post_type = str_replace( "category", "", $cat->taxonomy ); |
|
| 2907 | - $term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : ''; |
|
| 2905 | + foreach ($terms as $cat) {
|
|
| 2906 | + $post_type = str_replace("category", "", $cat->taxonomy);
|
|
| 2907 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : ''; |
|
| 2908 | 2908 | |
| 2909 | - $cat_count ++; |
|
| 2909 | + $cat_count++; |
|
| 2910 | 2910 | |
| 2911 | - $geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id ); |
|
| 2911 | + $geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
|
|
| 2912 | 2912 | |
| 2913 | 2913 | $class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show'; |
| 2914 | 2914 | $total_post = $cat->count; |
| 2915 | 2915 | |
| 2916 | - $term_link = get_term_link( $cat, $cat->taxonomy ); |
|
| 2916 | + $term_link = get_term_link($cat, $cat->taxonomy); |
|
| 2917 | 2917 | /** |
| 2918 | 2918 | * Filer the category term link. |
| 2919 | 2919 | * |
@@ -2923,11 +2923,11 @@ discard block |
||
| 2923 | 2923 | * @param int $cat ->term_id The term id. |
| 2924 | 2924 | * @param string $post_type Wordpress post type. |
| 2925 | 2925 | */ |
| 2926 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type ); |
|
| 2926 | + $term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
|
|
| 2927 | 2927 | |
| 2928 | - echo '<li class="' . $class_row . '"><a href="' . $term_link . '">'; |
|
| 2929 | - echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">'; |
|
| 2930 | - echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
|
|
| 2928 | + echo '<li class="'.$class_row.'"><a href="'.$term_link.'">'; |
|
| 2929 | + echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">'; |
|
| 2930 | + echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
|
|
| 2931 | 2931 | echo '</a></li>'; |
| 2932 | 2932 | } |
| 2933 | 2933 | } |
@@ -2942,14 +2942,14 @@ discard block |
||
| 2942 | 2942 | * @param array|string $args Display arguments including before_title, after_title, before_widget, and after_widget. |
| 2943 | 2943 | * @param array|string $instance The settings for the particular instance of the widget. |
| 2944 | 2944 | */ |
| 2945 | -function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
|
|
| 2945 | +function geodir_listing_slider_widget_output($args = '', $instance = '') {
|
|
| 2946 | 2946 | // prints the widget |
| 2947 | - extract( $args, EXTR_SKIP ); |
|
| 2947 | + extract($args, EXTR_SKIP); |
|
| 2948 | 2948 | |
| 2949 | 2949 | echo $before_widget; |
| 2950 | 2950 | |
| 2951 | 2951 | /** This filter is documented in geodirectory_widgets.php */ |
| 2952 | - $title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
| 2952 | + $title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
|
|
| 2953 | 2953 | /** |
| 2954 | 2954 | * Filter the widget post type. |
| 2955 | 2955 | * |
@@ -2957,7 +2957,7 @@ discard block |
||
| 2957 | 2957 | * |
| 2958 | 2958 | * @param string $instance ['post_type'] Post type of listing. |
| 2959 | 2959 | */ |
| 2960 | - $post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] ); |
|
| 2960 | + $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
|
|
| 2961 | 2961 | /** |
| 2962 | 2962 | * Filter the widget's term. |
| 2963 | 2963 | * |
@@ -2965,7 +2965,7 @@ discard block |
||
| 2965 | 2965 | * |
| 2966 | 2966 | * @param string $instance ['category'] Filter by term. Can be any valid term. |
| 2967 | 2967 | */ |
| 2968 | - $category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] ); |
|
| 2968 | + $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
|
|
| 2969 | 2969 | /** |
| 2970 | 2970 | * Filter widget's "add_location_filter" value. |
| 2971 | 2971 | * |
@@ -2973,7 +2973,7 @@ discard block |
||
| 2973 | 2973 | * |
| 2974 | 2974 | * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0. |
| 2975 | 2975 | */ |
| 2976 | - $add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] ); |
|
| 2976 | + $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
|
|
| 2977 | 2977 | /** |
| 2978 | 2978 | * Filter the widget listings limit. |
| 2979 | 2979 | * |
@@ -2981,7 +2981,7 @@ discard block |
||
| 2981 | 2981 | * |
| 2982 | 2982 | * @param string $instance ['post_number'] Number of listings to display. |
| 2983 | 2983 | */ |
| 2984 | - $post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] ); |
|
| 2984 | + $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
|
|
| 2985 | 2985 | /** |
| 2986 | 2986 | * Filter the widget listings limit shown at one time. |
| 2987 | 2987 | * |
@@ -2989,7 +2989,7 @@ discard block |
||
| 2989 | 2989 | * |
| 2990 | 2990 | * @param string $instance ['max_show'] Number of listings to display on screen. |
| 2991 | 2991 | */ |
| 2992 | - $max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] ); |
|
| 2992 | + $max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
|
|
| 2993 | 2993 | /** |
| 2994 | 2994 | * Filter the widget slide width. |
| 2995 | 2995 | * |
@@ -2997,7 +2997,7 @@ discard block |
||
| 2997 | 2997 | * |
| 2998 | 2998 | * @param string $instance ['slide_width'] Width of the slides shown. |
| 2999 | 2999 | */ |
| 3000 | - $slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] ); |
|
| 3000 | + $slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
|
|
| 3001 | 3001 | /** |
| 3002 | 3002 | * Filter widget's "show title" value. |
| 3003 | 3003 | * |
@@ -3005,7 +3005,7 @@ discard block |
||
| 3005 | 3005 | * |
| 3006 | 3006 | * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0. |
| 3007 | 3007 | */ |
| 3008 | - $show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] ); |
|
| 3008 | + $show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
|
|
| 3009 | 3009 | /** |
| 3010 | 3010 | * Filter widget's "slideshow" value. |
| 3011 | 3011 | * |
@@ -3013,7 +3013,7 @@ discard block |
||
| 3013 | 3013 | * |
| 3014 | 3014 | * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically. |
| 3015 | 3015 | */ |
| 3016 | - $slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] ); |
|
| 3016 | + $slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
|
|
| 3017 | 3017 | /** |
| 3018 | 3018 | * Filter widget's "animationLoop" value. |
| 3019 | 3019 | * |
@@ -3021,7 +3021,7 @@ discard block |
||
| 3021 | 3021 | * |
| 3022 | 3022 | * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop. |
| 3023 | 3023 | */ |
| 3024 | - $animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] ); |
|
| 3024 | + $animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
|
|
| 3025 | 3025 | /** |
| 3026 | 3026 | * Filter widget's "directionNav" value. |
| 3027 | 3027 | * |
@@ -3029,7 +3029,7 @@ discard block |
||
| 3029 | 3029 | * |
| 3030 | 3030 | * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0. |
| 3031 | 3031 | */ |
| 3032 | - $directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] ); |
|
| 3032 | + $directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
|
|
| 3033 | 3033 | /** |
| 3034 | 3034 | * Filter widget's "slideshowSpeed" value. |
| 3035 | 3035 | * |
@@ -3037,7 +3037,7 @@ discard block |
||
| 3037 | 3037 | * |
| 3038 | 3038 | * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds. |
| 3039 | 3039 | */ |
| 3040 | - $slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] ); |
|
| 3040 | + $slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
|
|
| 3041 | 3041 | /** |
| 3042 | 3042 | * Filter widget's "animationSpeed" value. |
| 3043 | 3043 | * |
@@ -3045,7 +3045,7 @@ discard block |
||
| 3045 | 3045 | * |
| 3046 | 3046 | * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds. |
| 3047 | 3047 | */ |
| 3048 | - $animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] ); |
|
| 3048 | + $animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
|
|
| 3049 | 3049 | /** |
| 3050 | 3050 | * Filter widget's "animation" value. |
| 3051 | 3051 | * |
@@ -3053,7 +3053,7 @@ discard block |
||
| 3053 | 3053 | * |
| 3054 | 3054 | * @param string $instance ['animation'] Controls the animation type, "fade" or "slide". |
| 3055 | 3055 | */ |
| 3056 | - $animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] ); |
|
| 3056 | + $animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
|
|
| 3057 | 3057 | /** |
| 3058 | 3058 | * Filter widget's "list_sort" type. |
| 3059 | 3059 | * |
@@ -3061,10 +3061,10 @@ discard block |
||
| 3061 | 3061 | * |
| 3062 | 3062 | * @param string $instance ['list_sort'] Listing sort by type. |
| 3063 | 3063 | */ |
| 3064 | - $list_sort = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] ); |
|
| 3065 | - $show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null; |
|
| 3064 | + $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
|
|
| 3065 | + $show_featured_only = !empty($instance['show_featured_only']) ? 1 : null; |
|
| 3066 | 3066 | |
| 3067 | - wp_enqueue_script( 'geodirectory-jquery-flexslider-js' ); |
|
| 3067 | + wp_enqueue_script('geodirectory-jquery-flexslider-js');
|
|
| 3068 | 3068 | ?> |
| 3069 | 3069 | <script type="text/javascript"> |
| 3070 | 3070 | jQuery(window).load(function () {
|
@@ -3082,23 +3082,23 @@ discard block |
||
| 3082 | 3082 | itemWidth: 75, |
| 3083 | 3083 | itemMargin: 5, |
| 3084 | 3084 | asNavFor: '#geodir_widget_slider', |
| 3085 | - rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?> |
|
| 3085 | + rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?> |
|
| 3086 | 3086 | }); |
| 3087 | 3087 | |
| 3088 | 3088 | jQuery('#geodir_widget_slider').flexslider({
|
| 3089 | - animation: "<?php echo $animation;?>", |
|
| 3089 | + animation: "<?php echo $animation; ?>", |
|
| 3090 | 3090 | selector: ".geodir-slides > li", |
| 3091 | 3091 | namespace: "geodir-", |
| 3092 | 3092 | controlNav: true, |
| 3093 | - animationLoop: <?php echo $animationLoop;?>, |
|
| 3094 | - slideshow: <?php echo $slideshow;?>, |
|
| 3095 | - slideshowSpeed: <?php echo $slideshowSpeed;?>, |
|
| 3096 | - animationSpeed: <?php echo $animationSpeed;?>, |
|
| 3097 | - directionNav: <?php echo $directionNav;?>, |
|
| 3098 | - maxItems: <?php echo $max_show;?>, |
|
| 3093 | + animationLoop: <?php echo $animationLoop; ?>, |
|
| 3094 | + slideshow: <?php echo $slideshow; ?>, |
|
| 3095 | + slideshowSpeed: <?php echo $slideshowSpeed; ?>, |
|
| 3096 | + animationSpeed: <?php echo $animationSpeed; ?>, |
|
| 3097 | + directionNav: <?php echo $directionNav; ?>, |
|
| 3098 | + maxItems: <?php echo $max_show; ?>, |
|
| 3099 | 3099 | move: 1, |
| 3100 | - <?php if ( $slide_width ) {
|
|
| 3101 | - echo "itemWidth: " . $slide_width . ","; |
|
| 3100 | + <?php if ($slide_width) {
|
|
| 3101 | + echo "itemWidth: ".$slide_width.","; |
|
| 3102 | 3102 | }?> |
| 3103 | 3103 | sync: "#geodir_widget_carousel", |
| 3104 | 3104 | start: function (slider) {
|
@@ -3110,7 +3110,7 @@ discard block |
||
| 3110 | 3110 | jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
|
| 3111 | 3111 | jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
|
| 3112 | 3112 | }, |
| 3113 | - rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?> |
|
| 3113 | + rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?> |
|
| 3114 | 3114 | }); |
| 3115 | 3115 | }); |
| 3116 | 3116 | </script> |
@@ -3123,62 +3123,62 @@ discard block |
||
| 3123 | 3123 | 'order_by' => $list_sort |
| 3124 | 3124 | ); |
| 3125 | 3125 | |
| 3126 | - if ( $show_featured_only ) {
|
|
| 3126 | + if ($show_featured_only) {
|
|
| 3127 | 3127 | $query_args['show_featured_only'] = 1; |
| 3128 | 3128 | } |
| 3129 | 3129 | |
| 3130 | - if ( $category != 0 || $category != '' ) {
|
|
| 3131 | - $category_taxonomy = geodir_get_taxonomies( $post_type ); |
|
| 3130 | + if ($category != 0 || $category != '') {
|
|
| 3131 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
| 3132 | 3132 | $tax_query = array( |
| 3133 | 3133 | 'taxonomy' => $category_taxonomy[0], |
| 3134 | 3134 | 'field' => 'id', |
| 3135 | 3135 | 'terms' => $category |
| 3136 | 3136 | ); |
| 3137 | 3137 | |
| 3138 | - $query_args['tax_query'] = array( $tax_query ); |
|
| 3138 | + $query_args['tax_query'] = array($tax_query); |
|
| 3139 | 3139 | } |
| 3140 | 3140 | |
| 3141 | 3141 | // we want listings with featured image only |
| 3142 | 3142 | $query_args['featured_image_only'] = 1; |
| 3143 | 3143 | |
| 3144 | - if ( $post_type == 'gd_event' ) {
|
|
| 3144 | + if ($post_type == 'gd_event') {
|
|
| 3145 | 3145 | $query_args['gedir_event_listing_filter'] = 'upcoming'; |
| 3146 | 3146 | }// show only upcoming events |
| 3147 | 3147 | |
| 3148 | - $widget_listings = geodir_get_widget_listings( $query_args ); |
|
| 3149 | - if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
|
|
| 3150 | - if ( $title ) {
|
|
| 3151 | - echo $before_title . $title . $after_title; |
|
| 3148 | + $widget_listings = geodir_get_widget_listings($query_args); |
|
| 3149 | + if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
|
|
| 3150 | + if ($title) {
|
|
| 3151 | + echo $before_title.$title.$after_title; |
|
| 3152 | 3152 | } |
| 3153 | 3153 | |
| 3154 | 3154 | global $post; |
| 3155 | 3155 | |
| 3156 | - $current_post = $post;// keep current post info |
|
| 3156 | + $current_post = $post; // keep current post info |
|
| 3157 | 3157 | |
| 3158 | 3158 | $widget_main_slides = ''; |
| 3159 | 3159 | $nav_slides = ''; |
| 3160 | 3160 | $widget_slides = 0; |
| 3161 | 3161 | |
| 3162 | - foreach ( $widget_listings as $widget_listing ) {
|
|
| 3162 | + foreach ($widget_listings as $widget_listing) {
|
|
| 3163 | 3163 | global $gd_widget_listing_type; |
| 3164 | 3164 | $post = $widget_listing; |
| 3165 | - $widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) ); |
|
| 3165 | + $widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
|
|
| 3166 | 3166 | |
| 3167 | - if ( ! empty( $widget_image ) ) {
|
|
| 3168 | - if ( $widget_image->height >= 200 ) {
|
|
| 3167 | + if (!empty($widget_image)) {
|
|
| 3168 | + if ($widget_image->height >= 200) {
|
|
| 3169 | 3169 | $widget_spacer_height = 0; |
| 3170 | 3170 | } else {
|
| 3171 | - $widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 ); |
|
| 3171 | + $widget_spacer_height = ((200 - $widget_image->height) / 2); |
|
| 3172 | 3172 | } |
| 3173 | 3173 | |
| 3174 | - $widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />'; |
|
| 3174 | + $widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />'; |
|
| 3175 | 3175 | |
| 3176 | 3176 | $title = ''; |
| 3177 | - if ( $show_title ) {
|
|
| 3178 | - $title_html = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>'; |
|
| 3177 | + if ($show_title) {
|
|
| 3178 | + $title_html = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>'; |
|
| 3179 | 3179 | $post_id = $post->ID; |
| 3180 | - $post_permalink = get_permalink( $post->ID ); |
|
| 3181 | - $post_title = get_the_title( $post->ID ); |
|
| 3180 | + $post_permalink = get_permalink($post->ID); |
|
| 3181 | + $post_title = get_the_title($post->ID); |
|
| 3182 | 3182 | /** |
| 3183 | 3183 | * Filter the listing slider widget title. |
| 3184 | 3184 | * |
@@ -3189,12 +3189,12 @@ discard block |
||
| 3189 | 3189 | * @param string $post_permalink The post permalink url. |
| 3190 | 3190 | * @param string $post_title The post title text. |
| 3191 | 3191 | */ |
| 3192 | - $title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title ); |
|
| 3192 | + $title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
|
|
| 3193 | 3193 | } |
| 3194 | 3194 | |
| 3195 | - $widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>'; |
|
| 3196 | - $nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>'; |
|
| 3197 | - $widget_slides ++; |
|
| 3195 | + $widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>'; |
|
| 3196 | + $nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>'; |
|
| 3197 | + $widget_slides++; |
|
| 3198 | 3198 | } |
| 3199 | 3199 | } |
| 3200 | 3200 | ?> |
@@ -3203,7 +3203,7 @@ discard block |
||
| 3203 | 3203 | <div id="geodir_widget_slider" class="geodir_flexslider"> |
| 3204 | 3204 | <ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul> |
| 3205 | 3205 | </div> |
| 3206 | - <?php if ( $widget_slides > 1 ) { ?>
|
|
| 3206 | + <?php if ($widget_slides > 1) { ?>
|
|
| 3207 | 3207 | <div id="geodir_widget_carousel" class="geodir_flexslider"> |
| 3208 | 3208 | <ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul> |
| 3209 | 3209 | </div> |
@@ -3211,7 +3211,7 @@ discard block |
||
| 3211 | 3211 | </div> |
| 3212 | 3212 | <?php |
| 3213 | 3213 | $GLOBALS['post'] = $current_post; |
| 3214 | - setup_postdata( $current_post ); |
|
| 3214 | + setup_postdata($current_post); |
|
| 3215 | 3215 | } |
| 3216 | 3216 | echo $after_widget; |
| 3217 | 3217 | } |
@@ -3227,46 +3227,46 @@ discard block |
||
| 3227 | 3227 | * @param array|string $args Display arguments including before_title, after_title, before_widget, and after_widget. |
| 3228 | 3228 | * @param array|string $instance The settings for the particular instance of the widget. |
| 3229 | 3229 | */ |
| 3230 | -function geodir_loginwidget_output( $args = '', $instance = '' ) {
|
|
| 3230 | +function geodir_loginwidget_output($args = '', $instance = '') {
|
|
| 3231 | 3231 | //print_r($args); |
| 3232 | 3232 | //print_r($instance); |
| 3233 | 3233 | // prints the widget |
| 3234 | - extract( $args, EXTR_SKIP ); |
|
| 3234 | + extract($args, EXTR_SKIP); |
|
| 3235 | 3235 | |
| 3236 | 3236 | /** This filter is documented in geodirectory_widgets.php */ |
| 3237 | - $title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
| 3237 | + $title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
|
|
| 3238 | 3238 | |
| 3239 | 3239 | echo $before_widget; |
| 3240 | - echo $before_title . $title . $after_title; |
|
| 3240 | + echo $before_title.$title.$after_title; |
|
| 3241 | 3241 | |
| 3242 | - if ( is_user_logged_in() ) {
|
|
| 3242 | + if (is_user_logged_in()) {
|
|
| 3243 | 3243 | global $current_user; |
| 3244 | 3244 | |
| 3245 | - $author_link = get_author_posts_url( $current_user->data->ID ); |
|
| 3246 | - $author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false ); |
|
| 3245 | + $author_link = get_author_posts_url($current_user->data->ID); |
|
| 3246 | + $author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
|
|
| 3247 | 3247 | |
| 3248 | 3248 | echo '<ul class="geodir-loginbox-list">'; |
| 3249 | 3249 | ob_start(); |
| 3250 | 3250 | ?> |
| 3251 | 3251 | <li><a class="signin" |
| 3252 | - href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li> |
|
| 3252 | + href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
|
|
| 3253 | 3253 | <?php |
| 3254 | - $post_types = geodir_get_posttypes( 'object' ); |
|
| 3255 | - $show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' ); |
|
| 3256 | - $geodir_allow_posttype_frontend = get_option( 'geodir_allow_posttype_frontend' ); |
|
| 3254 | + $post_types = geodir_get_posttypes('object');
|
|
| 3255 | + $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
|
|
| 3256 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 3257 | 3257 | |
| 3258 | - if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
|
|
| 3258 | + if (!empty($show_add_listing_post_types_main_nav)) {
|
|
| 3259 | 3259 | $addlisting_links = ''; |
| 3260 | - foreach ( $post_types as $key => $postobj ) {
|
|
| 3260 | + foreach ($post_types as $key => $postobj) {
|
|
| 3261 | 3261 | |
| 3262 | - if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
|
|
| 3262 | + if (in_array($key, $show_add_listing_post_types_main_nav)) {
|
|
| 3263 | 3263 | |
| 3264 | - if ( $add_link = geodir_get_addlisting_link( $key ) ) {
|
|
| 3264 | + if ($add_link = geodir_get_addlisting_link($key)) {
|
|
| 3265 | 3265 | |
| 3266 | 3266 | $name = $postobj->labels->name; |
| 3267 | 3267 | |
| 3268 | 3268 | $selected = ''; |
| 3269 | - if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
|
|
| 3269 | + if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
|
|
| 3270 | 3270 | $selected = 'selected="selected"'; |
| 3271 | 3271 | } |
| 3272 | 3272 | |
@@ -3279,22 +3279,22 @@ discard block |
||
| 3279 | 3279 | * @param string $key Add listing array key. |
| 3280 | 3280 | * @param int $current_user ->ID Current user ID. |
| 3281 | 3281 | */ |
| 3282 | - $add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID ); |
|
| 3282 | + $add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
|
|
| 3283 | 3283 | |
| 3284 | - $addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
| 3284 | + $addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
| 3285 | 3285 | |
| 3286 | 3286 | } |
| 3287 | 3287 | } |
| 3288 | 3288 | |
| 3289 | 3289 | } |
| 3290 | 3290 | |
| 3291 | - if ( $addlisting_links != '' ) { ?>
|
|
| 3291 | + if ($addlisting_links != '') { ?>
|
|
| 3292 | 3292 | |
| 3293 | 3293 | <li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value" |
| 3294 | 3294 | option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false" |
| 3295 | - data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>"> |
|
| 3295 | + data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
|
|
| 3296 | 3296 | <option value="" disabled="disabled" selected="selected" |
| 3297 | - style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option> |
|
| 3297 | + style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
|
|
| 3298 | 3298 | <?php echo $addlisting_links; ?> |
| 3299 | 3299 | </select></li> <?php |
| 3300 | 3300 | |
@@ -3302,23 +3302,23 @@ discard block |
||
| 3302 | 3302 | |
| 3303 | 3303 | } |
| 3304 | 3304 | // My Favourites in Dashboard |
| 3305 | - $show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' ); |
|
| 3305 | + $show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
|
|
| 3306 | 3306 | $user_favourite = geodir_user_favourite_listing_count(); |
| 3307 | 3307 | |
| 3308 | - if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
|
|
| 3308 | + if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
|
|
| 3309 | 3309 | $favourite_links = ''; |
| 3310 | 3310 | |
| 3311 | - foreach ( $post_types as $key => $postobj ) {
|
|
| 3312 | - if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
|
|
| 3311 | + foreach ($post_types as $key => $postobj) {
|
|
| 3312 | + if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
|
|
| 3313 | 3313 | $name = $postobj->labels->name; |
| 3314 | - $post_type_link = geodir_getlink( $author_link, array( |
|
| 3314 | + $post_type_link = geodir_getlink($author_link, array( |
|
| 3315 | 3315 | 'stype' => $key, |
| 3316 | 3316 | 'list' => 'favourite' |
| 3317 | - ), false ); |
|
| 3317 | + ), false); |
|
| 3318 | 3318 | |
| 3319 | 3319 | $selected = ''; |
| 3320 | 3320 | |
| 3321 | - if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
|
|
| 3321 | + if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
|
|
| 3322 | 3322 | $selected = 'selected="selected"'; |
| 3323 | 3323 | } |
| 3324 | 3324 | /** |
@@ -3330,20 +3330,20 @@ discard block |
||
| 3330 | 3330 | * @param string $key Favorite listing array key. |
| 3331 | 3331 | * @param int $current_user ->ID Current user ID. |
| 3332 | 3332 | */ |
| 3333 | - $post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID ); |
|
| 3333 | + $post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
|
|
| 3334 | 3334 | |
| 3335 | - $favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
| 3335 | + $favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
| 3336 | 3336 | } |
| 3337 | 3337 | } |
| 3338 | 3338 | |
| 3339 | - if ( $favourite_links != '' ) {
|
|
| 3339 | + if ($favourite_links != '') {
|
|
| 3340 | 3340 | ?> |
| 3341 | 3341 | <li> |
| 3342 | 3342 | <select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value" |
| 3343 | 3343 | option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false" |
| 3344 | - data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>"> |
|
| 3344 | + data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
|
|
| 3345 | 3345 | <option value="" disabled="disabled" selected="selected" |
| 3346 | - style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option> |
|
| 3346 | + style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
|
|
| 3347 | 3347 | <?php echo $favourite_links; ?> |
| 3348 | 3348 | </select> |
| 3349 | 3349 | </li> |
@@ -3352,19 +3352,19 @@ discard block |
||
| 3352 | 3352 | } |
| 3353 | 3353 | |
| 3354 | 3354 | |
| 3355 | - $show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' ); |
|
| 3355 | + $show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
|
|
| 3356 | 3356 | $user_listing = geodir_user_post_listing_count(); |
| 3357 | 3357 | |
| 3358 | - if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
|
|
| 3358 | + if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
|
|
| 3359 | 3359 | $listing_links = ''; |
| 3360 | 3360 | |
| 3361 | - foreach ( $post_types as $key => $postobj ) {
|
|
| 3362 | - if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
|
|
| 3361 | + foreach ($post_types as $key => $postobj) {
|
|
| 3362 | + if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
|
|
| 3363 | 3363 | $name = $postobj->labels->name; |
| 3364 | - $listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false ); |
|
| 3364 | + $listing_link = geodir_getlink($author_link, array('stype' => $key), false);
|
|
| 3365 | 3365 | |
| 3366 | 3366 | $selected = ''; |
| 3367 | - if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
|
|
| 3367 | + if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
|
|
| 3368 | 3368 | $selected = 'selected="selected"'; |
| 3369 | 3369 | } |
| 3370 | 3370 | |
@@ -3377,20 +3377,20 @@ discard block |
||
| 3377 | 3377 | * @param string $key My listing array key. |
| 3378 | 3378 | * @param int $current_user ->ID Current user ID. |
| 3379 | 3379 | */ |
| 3380 | - $listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID ); |
|
| 3380 | + $listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
|
|
| 3381 | 3381 | |
| 3382 | - $listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
| 3382 | + $listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
| 3383 | 3383 | } |
| 3384 | 3384 | } |
| 3385 | 3385 | |
| 3386 | - if ( $listing_links != '' ) {
|
|
| 3386 | + if ($listing_links != '') {
|
|
| 3387 | 3387 | ?> |
| 3388 | 3388 | <li> |
| 3389 | 3389 | <select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value" |
| 3390 | 3390 | option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false" |
| 3391 | - data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>"> |
|
| 3391 | + data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
|
|
| 3392 | 3392 | <option value="" disabled="disabled" selected="selected" |
| 3393 | - style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option> |
|
| 3393 | + style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
|
|
| 3394 | 3394 | <?php echo $listing_links; ?> |
| 3395 | 3395 | </select> |
| 3396 | 3396 | </li> |
@@ -3406,7 +3406,7 @@ discard block |
||
| 3406 | 3406 | * |
| 3407 | 3407 | * @param string $dashboard_link Dashboard links HTML. |
| 3408 | 3408 | */ |
| 3409 | - echo apply_filters( 'geodir_dashboard_links', $dashboard_link ); |
|
| 3409 | + echo apply_filters('geodir_dashboard_links', $dashboard_link);
|
|
| 3410 | 3410 | echo '</ul>'; |
| 3411 | 3411 | |
| 3412 | 3412 | /** |
@@ -3414,7 +3414,7 @@ discard block |
||
| 3414 | 3414 | * |
| 3415 | 3415 | * @since 1.6.6 |
| 3416 | 3416 | */ |
| 3417 | - do_action( 'geodir_after_loginwidget_form_logged_in' ); |
|
| 3417 | + do_action('geodir_after_loginwidget_form_logged_in');
|
|
| 3418 | 3418 | |
| 3419 | 3419 | |
| 3420 | 3420 | } else {
|
@@ -3429,18 +3429,18 @@ discard block |
||
| 3429 | 3429 | <form name="loginform" class="loginform1" |
| 3430 | 3430 | action="<?php echo geodir_login_url(); ?>" |
| 3431 | 3431 | method="post"> |
| 3432 | - <div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log" |
|
| 3432 | + <div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
|
|
| 3433 | 3433 | type="text" class="textfield user_login1"/> <span |
| 3434 | 3434 | class="user_loginInfo"></span></div> |
| 3435 | - <div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>" |
|
| 3435 | + <div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
|
|
| 3436 | 3436 | name="pwd" type="password" |
| 3437 | 3437 | class="textfield user_pass1 input-text"/><span |
| 3438 | 3438 | class="user_passInfo"></span></div> |
| 3439 | 3439 | |
| 3440 | - <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/> |
|
| 3440 | + <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/> |
|
| 3441 | 3441 | <input type="hidden" name="testcookie" value="1"/> |
| 3442 | 3442 | |
| 3443 | - <?php do_action( 'login_form' ); ?> |
|
| 3443 | + <?php do_action('login_form'); ?>
|
|
| 3444 | 3444 | |
| 3445 | 3445 | <div class="geodir_form_row clearfix"><input type="submit" name="submit" |
| 3446 | 3446 | value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/> |
@@ -3453,7 +3453,7 @@ discard block |
||
| 3453 | 3453 | * @since 1.0.0 |
| 3454 | 3454 | */ |
| 3455 | 3455 | ?> |
| 3456 | - <a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>" |
|
| 3456 | + <a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
|
|
| 3457 | 3457 | class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a> |
| 3458 | 3458 | |
| 3459 | 3459 | <?php |
@@ -3463,7 +3463,7 @@ discard block |
||
| 3463 | 3463 | * @since 1.0.0 |
| 3464 | 3464 | */ |
| 3465 | 3465 | ?> |
| 3466 | - <a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>" |
|
| 3466 | + <a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
|
|
| 3467 | 3467 | class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div> |
| 3468 | 3468 | </form> |
| 3469 | 3469 | <?php |
@@ -3472,7 +3472,7 @@ discard block |
||
| 3472 | 3472 | * |
| 3473 | 3473 | * @since 1.6.6 |
| 3474 | 3474 | */ |
| 3475 | - do_action( 'geodir_after_loginwidget_form_logged_out' ); |
|
| 3475 | + do_action('geodir_after_loginwidget_form_logged_out');
|
|
| 3476 | 3476 | } |
| 3477 | 3477 | |
| 3478 | 3478 | echo $after_widget; |
@@ -3494,16 +3494,16 @@ discard block |
||
| 3494 | 3494 | * after_widget. |
| 3495 | 3495 | * @param array|string $instance The settings for the particular instance of the widget. |
| 3496 | 3496 | */ |
| 3497 | -function geodir_popular_postview_output( $args = '', $instance = '' ) {
|
|
| 3497 | +function geodir_popular_postview_output($args = '', $instance = '') {
|
|
| 3498 | 3498 | global $gd_session; |
| 3499 | 3499 | |
| 3500 | 3500 | // prints the widget |
| 3501 | - extract( $args, EXTR_SKIP ); |
|
| 3501 | + extract($args, EXTR_SKIP); |
|
| 3502 | 3502 | |
| 3503 | 3503 | echo $before_widget; |
| 3504 | 3504 | |
| 3505 | 3505 | /** This filter is documented in geodirectory_widgets.php */ |
| 3506 | - $title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
| 3506 | + $title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
|
|
| 3507 | 3507 | /** |
| 3508 | 3508 | * Filter the widget post type. |
| 3509 | 3509 | * |
@@ -3511,7 +3511,7 @@ discard block |
||
| 3511 | 3511 | * |
| 3512 | 3512 | * @param string $instance ['post_type'] Post type of listing. |
| 3513 | 3513 | */ |
| 3514 | - $post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] ); |
|
| 3514 | + $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
|
|
| 3515 | 3515 | /** |
| 3516 | 3516 | * Filter the widget's term. |
| 3517 | 3517 | * |
@@ -3519,7 +3519,7 @@ discard block |
||
| 3519 | 3519 | * |
| 3520 | 3520 | * @param string $instance ['category'] Filter by term. Can be any valid term. |
| 3521 | 3521 | */ |
| 3522 | - $category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] ); |
|
| 3522 | + $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
|
|
| 3523 | 3523 | /** |
| 3524 | 3524 | * Filter the widget listings limit. |
| 3525 | 3525 | * |
@@ -3527,7 +3527,7 @@ discard block |
||
| 3527 | 3527 | * |
| 3528 | 3528 | * @param string $instance ['post_number'] Number of listings to display. |
| 3529 | 3529 | */ |
| 3530 | - $post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] ); |
|
| 3530 | + $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
|
|
| 3531 | 3531 | /** |
| 3532 | 3532 | * Filter widget's "layout" type. |
| 3533 | 3533 | * |
@@ -3535,7 +3535,7 @@ discard block |
||
| 3535 | 3535 | * |
| 3536 | 3536 | * @param string $instance ['layout'] Widget layout type. |
| 3537 | 3537 | */ |
| 3538 | - $layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] ); |
|
| 3538 | + $layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
|
|
| 3539 | 3539 | /** |
| 3540 | 3540 | * Filter widget's "add_location_filter" value. |
| 3541 | 3541 | * |
@@ -3543,7 +3543,7 @@ discard block |
||
| 3543 | 3543 | * |
| 3544 | 3544 | * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0. |
| 3545 | 3545 | */ |
| 3546 | - $add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] ); |
|
| 3546 | + $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
|
|
| 3547 | 3547 | /** |
| 3548 | 3548 | * Filter widget's listing width. |
| 3549 | 3549 | * |
@@ -3551,7 +3551,7 @@ discard block |
||
| 3551 | 3551 | * |
| 3552 | 3552 | * @param string $instance ['listing_width'] Listing width. |
| 3553 | 3553 | */ |
| 3554 | - $listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] ); |
|
| 3554 | + $listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
|
|
| 3555 | 3555 | /** |
| 3556 | 3556 | * Filter widget's "list_sort" type. |
| 3557 | 3557 | * |
@@ -3559,25 +3559,25 @@ discard block |
||
| 3559 | 3559 | * |
| 3560 | 3560 | * @param string $instance ['list_sort'] Listing sort by type. |
| 3561 | 3561 | */ |
| 3562 | - $list_sort = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] ); |
|
| 3563 | - $use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false; |
|
| 3562 | + $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
|
|
| 3563 | + $use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false; |
|
| 3564 | 3564 | |
| 3565 | 3565 | // set post type to current viewing post type |
| 3566 | - if ( $use_viewing_post_type ) {
|
|
| 3566 | + if ($use_viewing_post_type) {
|
|
| 3567 | 3567 | $current_post_type = geodir_get_current_posttype(); |
| 3568 | - if ( $current_post_type != '' && $current_post_type != $post_type ) {
|
|
| 3568 | + if ($current_post_type != '' && $current_post_type != $post_type) {
|
|
| 3569 | 3569 | $post_type = $current_post_type; |
| 3570 | 3570 | $category = array(); // old post type category will not work for current changed post type |
| 3571 | 3571 | } |
| 3572 | 3572 | } |
| 3573 | 3573 | // replace widget title dynamically |
| 3574 | - $posttype_plural_label = __( get_post_type_plural_label( $post_type ), 'geodirectory' ); |
|
| 3575 | - $posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' ); |
|
| 3574 | + $posttype_plural_label = __(get_post_type_plural_label($post_type), 'geodirectory'); |
|
| 3575 | + $posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory'); |
|
| 3576 | 3576 | |
| 3577 | - $title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title ); |
|
| 3578 | - $title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title ); |
|
| 3577 | + $title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
|
|
| 3578 | + $title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
|
|
| 3579 | 3579 | |
| 3580 | - if ( isset( $instance['character_count'] ) ) {
|
|
| 3580 | + if (isset($instance['character_count'])) {
|
|
| 3581 | 3581 | /** |
| 3582 | 3582 | * Filter the widget's excerpt character count. |
| 3583 | 3583 | * |
@@ -3585,37 +3585,37 @@ discard block |
||
| 3585 | 3585 | * |
| 3586 | 3586 | * @param int $instance ['character_count'] Excerpt character count. |
| 3587 | 3587 | */ |
| 3588 | - $character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] ); |
|
| 3588 | + $character_count = apply_filters('widget_list_character_count', $instance['character_count']);
|
|
| 3589 | 3589 | } else {
|
| 3590 | 3590 | $character_count = ''; |
| 3591 | 3591 | } |
| 3592 | 3592 | |
| 3593 | - if ( empty( $title ) || $title == 'All' ) {
|
|
| 3594 | - $title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' ); |
|
| 3593 | + if (empty($title) || $title == 'All') {
|
|
| 3594 | + $title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory'); |
|
| 3595 | 3595 | } |
| 3596 | 3596 | |
| 3597 | 3597 | $location_url = array(); |
| 3598 | - $city = get_query_var( 'gd_city' ); |
|
| 3599 | - if ( ! empty( $city ) ) {
|
|
| 3600 | - $country = get_query_var( 'gd_country' ); |
|
| 3601 | - $region = get_query_var( 'gd_region' ); |
|
| 3598 | + $city = get_query_var('gd_city');
|
|
| 3599 | + if (!empty($city)) {
|
|
| 3600 | + $country = get_query_var('gd_country');
|
|
| 3601 | + $region = get_query_var('gd_region');
|
|
| 3602 | 3602 | |
| 3603 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
| 3603 | + $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 3604 | 3604 | |
| 3605 | - if ( $geodir_show_location_url == 'all' ) {
|
|
| 3606 | - if ( $country != '' ) {
|
|
| 3605 | + if ($geodir_show_location_url == 'all') {
|
|
| 3606 | + if ($country != '') {
|
|
| 3607 | 3607 | $location_url[] = $country; |
| 3608 | 3608 | } |
| 3609 | 3609 | |
| 3610 | - if ( $region != '' ) {
|
|
| 3610 | + if ($region != '') {
|
|
| 3611 | 3611 | $location_url[] = $region; |
| 3612 | 3612 | } |
| 3613 | - } else if ( $geodir_show_location_url == 'country_city' ) {
|
|
| 3614 | - if ( $country != '' ) {
|
|
| 3613 | + } else if ($geodir_show_location_url == 'country_city') {
|
|
| 3614 | + if ($country != '') {
|
|
| 3615 | 3615 | $location_url[] = $country; |
| 3616 | 3616 | } |
| 3617 | - } else if ( $geodir_show_location_url == 'region_city' ) {
|
|
| 3618 | - if ( $region != '' ) {
|
|
| 3617 | + } else if ($geodir_show_location_url == 'region_city') {
|
|
| 3618 | + if ($region != '') {
|
|
| 3619 | 3619 | $location_url[] = $region; |
| 3620 | 3620 | } |
| 3621 | 3621 | } |
@@ -3623,37 +3623,37 @@ discard block |
||
| 3623 | 3623 | $location_url[] = $city; |
| 3624 | 3624 | } |
| 3625 | 3625 | |
| 3626 | - $location_url = implode( '/', $location_url ); |
|
| 3626 | + $location_url = implode('/', $location_url);
|
|
| 3627 | 3627 | $skip_location = false; |
| 3628 | - if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
|
|
| 3628 | + if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
|
|
| 3629 | 3629 | $skip_location = true; |
| 3630 | - $gd_session->un_set( 'gd_multi_location' ); |
|
| 3630 | + $gd_session->un_set('gd_multi_location');
|
|
| 3631 | 3631 | } |
| 3632 | 3632 | |
| 3633 | - if ( get_option( 'permalink_structure' ) ) {
|
|
| 3634 | - $viewall_url = get_post_type_archive_link( $post_type ); |
|
| 3633 | + if (get_option('permalink_structure')) {
|
|
| 3634 | + $viewall_url = get_post_type_archive_link($post_type); |
|
| 3635 | 3635 | } else {
|
| 3636 | - $viewall_url = get_post_type_archive_link( $post_type ); |
|
| 3636 | + $viewall_url = get_post_type_archive_link($post_type); |
|
| 3637 | 3637 | } |
| 3638 | 3638 | |
| 3639 | - if ( ! empty( $category ) && $category[0] != '0' ) {
|
|
| 3639 | + if (!empty($category) && $category[0] != '0') {
|
|
| 3640 | 3640 | global $geodir_add_location_url; |
| 3641 | 3641 | |
| 3642 | 3642 | $geodir_add_location_url = '0'; |
| 3643 | 3643 | |
| 3644 | - if ( $add_location_filter != '0' ) {
|
|
| 3644 | + if ($add_location_filter != '0') {
|
|
| 3645 | 3645 | $geodir_add_location_url = '1'; |
| 3646 | 3646 | } |
| 3647 | 3647 | |
| 3648 | - $viewall_url = get_term_link( (int) $category[0], $post_type . 'category' ); |
|
| 3648 | + $viewall_url = get_term_link((int) $category[0], $post_type.'category'); |
|
| 3649 | 3649 | |
| 3650 | 3650 | $geodir_add_location_url = null; |
| 3651 | 3651 | } |
| 3652 | - if ( $skip_location ) {
|
|
| 3653 | - $gd_session->set( 'gd_multi_location', 1 ); |
|
| 3652 | + if ($skip_location) {
|
|
| 3653 | + $gd_session->set('gd_multi_location', 1);
|
|
| 3654 | 3654 | } |
| 3655 | 3655 | |
| 3656 | - if ( is_wp_error( $viewall_url ) ) {
|
|
| 3656 | + if (is_wp_error($viewall_url)) {
|
|
| 3657 | 3657 | $viewall_url = ''; |
| 3658 | 3658 | } |
| 3659 | 3659 | |
@@ -3665,34 +3665,34 @@ discard block |
||
| 3665 | 3665 | 'order_by' => $list_sort |
| 3666 | 3666 | ); |
| 3667 | 3667 | |
| 3668 | - if ( $character_count ) {
|
|
| 3668 | + if ($character_count) {
|
|
| 3669 | 3669 | $query_args['excerpt_length'] = $character_count; |
| 3670 | 3670 | } |
| 3671 | 3671 | |
| 3672 | - if ( ! empty( $instance['show_featured_only'] ) ) {
|
|
| 3672 | + if (!empty($instance['show_featured_only'])) {
|
|
| 3673 | 3673 | $query_args['show_featured_only'] = 1; |
| 3674 | 3674 | } |
| 3675 | 3675 | |
| 3676 | - if ( ! empty( $instance['show_special_only'] ) ) {
|
|
| 3676 | + if (!empty($instance['show_special_only'])) {
|
|
| 3677 | 3677 | $query_args['show_special_only'] = 1; |
| 3678 | 3678 | } |
| 3679 | 3679 | |
| 3680 | - if ( ! empty( $instance['with_pics_only'] ) ) {
|
|
| 3680 | + if (!empty($instance['with_pics_only'])) {
|
|
| 3681 | 3681 | $query_args['with_pics_only'] = 0; |
| 3682 | 3682 | $query_args['featured_image_only'] = 1; |
| 3683 | 3683 | } |
| 3684 | 3684 | |
| 3685 | - if ( ! empty( $instance['with_videos_only'] ) ) {
|
|
| 3685 | + if (!empty($instance['with_videos_only'])) {
|
|
| 3686 | 3686 | $query_args['with_videos_only'] = 1; |
| 3687 | 3687 | } |
| 3688 | - $with_no_results = ! empty( $instance['without_no_results'] ) ? false : true; |
|
| 3688 | + $with_no_results = !empty($instance['without_no_results']) ? false : true; |
|
| 3689 | 3689 | |
| 3690 | - if ( ! empty( $category ) && $category[0] != '0' ) {
|
|
| 3691 | - $category_taxonomy = geodir_get_taxonomies( $post_type ); |
|
| 3690 | + if (!empty($category) && $category[0] != '0') {
|
|
| 3691 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
| 3692 | 3692 | |
| 3693 | 3693 | ######### WPML ######### |
| 3694 | - if ( function_exists( 'icl_object_id' ) ) {
|
|
| 3695 | - $category = gd_lang_object_ids( $category, $category_taxonomy[0] ); |
|
| 3694 | + if (function_exists('icl_object_id')) {
|
|
| 3695 | + $category = gd_lang_object_ids($category, $category_taxonomy[0]); |
|
| 3696 | 3696 | } |
| 3697 | 3697 | ######### WPML ######### |
| 3698 | 3698 | |
@@ -3702,14 +3702,14 @@ discard block |
||
| 3702 | 3702 | 'terms' => $category |
| 3703 | 3703 | ); |
| 3704 | 3704 | |
| 3705 | - $query_args['tax_query'] = array( $tax_query ); |
|
| 3705 | + $query_args['tax_query'] = array($tax_query); |
|
| 3706 | 3706 | } |
| 3707 | 3707 | |
| 3708 | 3708 | global $gridview_columns_widget, $geodir_is_widget_listing; |
| 3709 | 3709 | |
| 3710 | - $widget_listings = geodir_get_widget_listings( $query_args ); |
|
| 3710 | + $widget_listings = geodir_get_widget_listings($query_args); |
|
| 3711 | 3711 | |
| 3712 | - if ( ! empty( $widget_listings ) || $with_no_results ) {
|
|
| 3712 | + if (!empty($widget_listings) || $with_no_results) {
|
|
| 3713 | 3713 | ?> |
| 3714 | 3714 | <div class="geodir_locations geodir_location_listing"> |
| 3715 | 3715 | |
@@ -3719,11 +3719,11 @@ discard block |
||
| 3719 | 3719 | * |
| 3720 | 3720 | * @since 1.0.0 |
| 3721 | 3721 | */ |
| 3722 | - do_action( 'geodir_before_view_all_link_in_widget' ); ?> |
|
| 3722 | + do_action('geodir_before_view_all_link_in_widget'); ?>
|
|
| 3723 | 3723 | <div class="geodir_list_heading clearfix"> |
| 3724 | - <?php echo $before_title . $title . $after_title; ?> |
|
| 3724 | + <?php echo $before_title.$title.$after_title; ?> |
|
| 3725 | 3725 | <a href="<?php echo $viewall_url; ?>" |
| 3726 | - class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a> |
|
| 3726 | + class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
|
|
| 3727 | 3727 | </div> |
| 3728 | 3728 | <?php |
| 3729 | 3729 | /** |
@@ -3731,10 +3731,10 @@ discard block |
||
| 3731 | 3731 | * |
| 3732 | 3732 | * @since 1.0.0 |
| 3733 | 3733 | */ |
| 3734 | - do_action( 'geodir_after_view_all_link_in_widget' ); ?> |
|
| 3734 | + do_action('geodir_after_view_all_link_in_widget'); ?>
|
|
| 3735 | 3735 | <?php |
| 3736 | - if ( strstr( $layout, 'gridview' ) ) {
|
|
| 3737 | - $listing_view_exp = explode( '_', $layout ); |
|
| 3736 | + if (strstr($layout, 'gridview')) {
|
|
| 3737 | + $listing_view_exp = explode('_', $layout);
|
|
| 3738 | 3738 | $gridview_columns_widget = $layout; |
| 3739 | 3739 | $layout = $listing_view_exp[0]; |
| 3740 | 3740 | } else {
|
@@ -3746,8 +3746,8 @@ discard block |
||
| 3746 | 3746 | * |
| 3747 | 3747 | * @since 1.0.0 |
| 3748 | 3748 | */ |
| 3749 | - $template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) ); |
|
| 3750 | - if ( ! isset( $character_count ) ) {
|
|
| 3749 | + $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
|
|
| 3750 | + if (!isset($character_count)) {
|
|
| 3751 | 3751 | /** |
| 3752 | 3752 | * Filter the widget's excerpt character count. |
| 3753 | 3753 | * |
@@ -3755,7 +3755,7 @@ discard block |
||
| 3755 | 3755 | * |
| 3756 | 3756 | * @param int $instance ['character_count'] Excerpt character count. |
| 3757 | 3757 | */ |
| 3758 | - $character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count ); |
|
| 3758 | + $character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
|
|
| 3759 | 3759 | } |
| 3760 | 3760 | |
| 3761 | 3761 | global $post, $map_jason, $map_canvas_arr; |
@@ -3770,13 +3770,13 @@ discard block |
||
| 3770 | 3770 | * |
| 3771 | 3771 | * @since 1.0.0 |
| 3772 | 3772 | */ |
| 3773 | - include( $template ); |
|
| 3773 | + include($template); |
|
| 3774 | 3774 | |
| 3775 | 3775 | $geodir_is_widget_listing = false; |
| 3776 | 3776 | |
| 3777 | 3777 | $GLOBALS['post'] = $current_post; |
| 3778 | - if ( ! empty( $current_post ) ) {
|
|
| 3779 | - setup_postdata( $current_post ); |
|
| 3778 | + if (!empty($current_post)) {
|
|
| 3779 | + setup_postdata($current_post); |
|
| 3780 | 3780 | } |
| 3781 | 3781 | $map_jason = $current_map_jason; |
| 3782 | 3782 | $map_canvas_arr = $current_map_canvas_arr; |
@@ -3807,12 +3807,12 @@ discard block |
||
| 3807 | 3807 | * |
| 3808 | 3808 | * @return int Reviews count. |
| 3809 | 3809 | */ |
| 3810 | -function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
|
|
| 3810 | +function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
|
|
| 3811 | 3811 | global $wpdb, $plugin_prefix; |
| 3812 | 3812 | |
| 3813 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 3813 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
| 3814 | 3814 | |
| 3815 | - $sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")";
|
|
| 3815 | + $sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")";
|
|
| 3816 | 3816 | |
| 3817 | 3817 | /** |
| 3818 | 3818 | * Filter count review sql query. |
@@ -3824,9 +3824,9 @@ discard block |
||
| 3824 | 3824 | * @param int $taxonomy The taxonomy Id. |
| 3825 | 3825 | * @param string $post_type The post type. |
| 3826 | 3826 | */ |
| 3827 | - $sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type ); |
|
| 3827 | + $sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
|
|
| 3828 | 3828 | |
| 3829 | - $count = $wpdb->get_var( $sql ); |
|
| 3829 | + $count = $wpdb->get_var($sql); |
|
| 3830 | 3830 | |
| 3831 | 3831 | return $count; |
| 3832 | 3832 | } |
@@ -3844,7 +3844,7 @@ discard block |
||
| 3844 | 3844 | * |
| 3845 | 3845 | * @return array Term array data. |
| 3846 | 3846 | */ |
| 3847 | -function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
|
|
| 3847 | +function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
|
|
| 3848 | 3848 | /** |
| 3849 | 3849 | * Filter review count option data. |
| 3850 | 3850 | * |
@@ -3854,78 +3854,78 @@ discard block |
||
| 3854 | 3854 | * @param bool $force_update Force update option value?. Default.false. |
| 3855 | 3855 | * @param int $post_ID The post id to update if any. |
| 3856 | 3856 | */ |
| 3857 | - $option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID ); |
|
| 3858 | - if ( ! empty( $option_data ) ) {
|
|
| 3857 | + $option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
|
|
| 3858 | + if (!empty($option_data)) {
|
|
| 3859 | 3859 | return $option_data; |
| 3860 | 3860 | } |
| 3861 | 3861 | |
| 3862 | - $option_data = get_option( 'geodir_global_review_count' ); |
|
| 3862 | + $option_data = get_option('geodir_global_review_count');
|
|
| 3863 | 3863 | |
| 3864 | - if ( ! $option_data || $force_update ) {
|
|
| 3865 | - if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
|
|
| 3864 | + if (!$option_data || $force_update) {
|
|
| 3865 | + if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
|
|
| 3866 | 3866 | global $gd_session; |
| 3867 | 3867 | $term_array = (array) $option_data; |
| 3868 | - $post_type = get_post_type( $post_ID ); |
|
| 3869 | - $taxonomy = $post_type . 'category'; |
|
| 3870 | - $terms = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) ); |
|
| 3871 | - |
|
| 3872 | - if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
|
|
| 3873 | - foreach ( $terms as $term_id ) {
|
|
| 3874 | - $count = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ); |
|
| 3875 | - $children = get_term_children( $term_id, $taxonomy ); |
|
| 3876 | - $term_array[ $term_id ] = $count; |
|
| 3868 | + $post_type = get_post_type($post_ID); |
|
| 3869 | + $taxonomy = $post_type.'category'; |
|
| 3870 | + $terms = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
|
|
| 3871 | + |
|
| 3872 | + if (!empty($terms) && !is_wp_error($terms)) {
|
|
| 3873 | + foreach ($terms as $term_id) {
|
|
| 3874 | + $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type); |
|
| 3875 | + $children = get_term_children($term_id, $taxonomy); |
|
| 3876 | + $term_array[$term_id] = $count; |
|
| 3877 | 3877 | } |
| 3878 | 3878 | } |
| 3879 | 3879 | |
| 3880 | - $session_listing = $gd_session->get( 'listing' ); |
|
| 3880 | + $session_listing = $gd_session->get('listing');
|
|
| 3881 | 3881 | |
| 3882 | 3882 | $terms = array(); |
| 3883 | - if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
|
|
| 3884 | - $terms = (array) $_POST['post_category'][ $taxonomy ]; |
|
| 3885 | - } else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
|
|
| 3886 | - $terms = (array) $session_listing['post_category'][ $taxonomy ]; |
|
| 3883 | + if (isset($_POST['post_category'][$taxonomy])) {
|
|
| 3884 | + $terms = (array) $_POST['post_category'][$taxonomy]; |
|
| 3885 | + } else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
|
|
| 3886 | + $terms = (array) $session_listing['post_category'][$taxonomy]; |
|
| 3887 | 3887 | } |
| 3888 | 3888 | |
| 3889 | - if ( ! empty( $terms ) ) {
|
|
| 3890 | - foreach ( $terms as $term_id ) {
|
|
| 3891 | - if ( $term_id > 0 ) {
|
|
| 3892 | - $count = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ); |
|
| 3893 | - $children = get_term_children( $term_id, $taxonomy ); |
|
| 3894 | - $term_array[ $term_id ] = $count; |
|
| 3889 | + if (!empty($terms)) {
|
|
| 3890 | + foreach ($terms as $term_id) {
|
|
| 3891 | + if ($term_id > 0) {
|
|
| 3892 | + $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type); |
|
| 3893 | + $children = get_term_children($term_id, $taxonomy); |
|
| 3894 | + $term_array[$term_id] = $count; |
|
| 3895 | 3895 | } |
| 3896 | 3896 | } |
| 3897 | 3897 | } |
| 3898 | 3898 | } else { // Update reviews count for all post categories.
|
| 3899 | 3899 | $term_array = array(); |
| 3900 | 3900 | $post_types = geodir_get_posttypes(); |
| 3901 | - foreach ( $post_types as $post_type ) {
|
|
| 3901 | + foreach ($post_types as $post_type) {
|
|
| 3902 | 3902 | |
| 3903 | - $taxonomy = geodir_get_taxonomies( $post_type ); |
|
| 3903 | + $taxonomy = geodir_get_taxonomies($post_type); |
|
| 3904 | 3904 | $taxonomy = $taxonomy[0]; |
| 3905 | 3905 | |
| 3906 | 3906 | $args = array( |
| 3907 | 3907 | 'hide_empty' => false |
| 3908 | 3908 | ); |
| 3909 | 3909 | |
| 3910 | - $terms = get_terms( $taxonomy, $args ); |
|
| 3910 | + $terms = get_terms($taxonomy, $args); |
|
| 3911 | 3911 | |
| 3912 | - foreach ( $terms as $term ) {
|
|
| 3913 | - $count = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type ); |
|
| 3914 | - $children = get_term_children( $term->term_id, $taxonomy ); |
|
| 3912 | + foreach ($terms as $term) {
|
|
| 3913 | + $count = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type); |
|
| 3914 | + $children = get_term_children($term->term_id, $taxonomy); |
|
| 3915 | 3915 | /*if ( is_array( $children ) ) {
|
| 3916 | 3916 | foreach ( $children as $child_id ) {
|
| 3917 | 3917 | $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type); |
| 3918 | 3918 | $count = $count + $child_count; |
| 3919 | 3919 | } |
| 3920 | 3920 | }*/ |
| 3921 | - $term_array[ $term->term_id ] = $count; |
|
| 3921 | + $term_array[$term->term_id] = $count; |
|
| 3922 | 3922 | } |
| 3923 | 3923 | } |
| 3924 | 3924 | } |
| 3925 | 3925 | |
| 3926 | - update_option( 'geodir_global_review_count', $term_array ); |
|
| 3926 | + update_option('geodir_global_review_count', $term_array);
|
|
| 3927 | 3927 | //clear cache |
| 3928 | - wp_cache_delete( 'geodir_global_review_count' ); |
|
| 3928 | + wp_cache_delete('geodir_global_review_count');
|
|
| 3929 | 3929 | |
| 3930 | 3930 | return $term_array; |
| 3931 | 3931 | } else {
|
@@ -3941,39 +3941,39 @@ discard block |
||
| 3941 | 3941 | * @package GeoDirectory |
| 3942 | 3942 | * @return bool |
| 3943 | 3943 | */ |
| 3944 | -function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
|
|
| 3945 | - if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
|
|
| 3944 | +function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
|
|
| 3945 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
|
|
| 3946 | 3946 | return; // do not run if importing listings |
| 3947 | 3947 | } |
| 3948 | 3948 | |
| 3949 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
|
|
| 3949 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
|
|
| 3950 | 3950 | return; |
| 3951 | 3951 | } |
| 3952 | 3952 | |
| 3953 | 3953 | $post_ID = 0; |
| 3954 | - if ( ! empty( $post ) ) {
|
|
| 3955 | - if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
|
|
| 3954 | + if (!empty($post)) {
|
|
| 3955 | + if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
|
|
| 3956 | 3956 | return; |
| 3957 | 3957 | } |
| 3958 | 3958 | |
| 3959 | - if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
|
|
| 3959 | + if ($new_status == 'auto-draft' && $old_status == 'new') {
|
|
| 3960 | 3960 | return; |
| 3961 | 3961 | } |
| 3962 | 3962 | |
| 3963 | - if ( ! empty( $post->ID ) ) {
|
|
| 3963 | + if (!empty($post->ID)) {
|
|
| 3964 | 3964 | $post_ID = $post->ID; |
| 3965 | 3965 | } |
| 3966 | 3966 | } |
| 3967 | 3967 | |
| 3968 | - if ( $new_status != $old_status ) {
|
|
| 3969 | - geodir_count_reviews_by_terms( true, $post_ID ); |
|
| 3968 | + if ($new_status != $old_status) {
|
|
| 3969 | + geodir_count_reviews_by_terms(true, $post_ID); |
|
| 3970 | 3970 | } |
| 3971 | 3971 | |
| 3972 | 3972 | return true; |
| 3973 | 3973 | } |
| 3974 | 3974 | |
| 3975 | -function geodir_term_review_count_force_update_single_post( $post_id ) {
|
|
| 3976 | - geodir_count_reviews_by_terms( true, $post_id ); |
|
| 3975 | +function geodir_term_review_count_force_update_single_post($post_id) {
|
|
| 3976 | + geodir_count_reviews_by_terms(true, $post_id); |
|
| 3977 | 3977 | } |
| 3978 | 3978 | |
| 3979 | 3979 | /*-----------------------------------------------------------------------------------*/ |
@@ -3990,11 +3990,11 @@ discard block |
||
| 3990 | 3990 | * |
| 3991 | 3991 | * @return int Post count. |
| 3992 | 3992 | */ |
| 3993 | -function geodir_count_posts_by_term( $data, $term ) {
|
|
| 3993 | +function geodir_count_posts_by_term($data, $term) {
|
|
| 3994 | 3994 | |
| 3995 | - if ( $data ) {
|
|
| 3996 | - if ( isset( $data[ $term->term_id ] ) ) {
|
|
| 3997 | - return $data[ $term->term_id ]; |
|
| 3995 | + if ($data) {
|
|
| 3996 | + if (isset($data[$term->term_id])) {
|
|
| 3997 | + return $data[$term->term_id]; |
|
| 3998 | 3998 | } else {
|
| 3999 | 3999 | return 0; |
| 4000 | 4000 | } |
@@ -4011,8 +4011,8 @@ discard block |
||
| 4011 | 4011 | * param array $terms An array of term objects. |
| 4012 | 4012 | * @return array Sorted terms array. |
| 4013 | 4013 | */ |
| 4014 | -function geodir_sort_terms_by_count( $terms ) {
|
|
| 4015 | - usort( $terms, "geodir_sort_by_count_obj" ); |
|
| 4014 | +function geodir_sort_terms_by_count($terms) {
|
|
| 4015 | + usort($terms, "geodir_sort_by_count_obj"); |
|
| 4016 | 4016 | |
| 4017 | 4017 | return $terms; |
| 4018 | 4018 | } |
@@ -4027,8 +4027,8 @@ discard block |
||
| 4027 | 4027 | * |
| 4028 | 4028 | * @return array Sorted terms array. |
| 4029 | 4029 | */ |
| 4030 | -function geodir_sort_terms_by_review_count( $terms ) {
|
|
| 4031 | - usort( $terms, "geodir_sort_by_review_count_obj" ); |
|
| 4030 | +function geodir_sort_terms_by_review_count($terms) {
|
|
| 4031 | + usort($terms, "geodir_sort_by_review_count_obj"); |
|
| 4032 | 4032 | |
| 4033 | 4033 | return $terms; |
| 4034 | 4034 | } |
@@ -4044,12 +4044,12 @@ discard block |
||
| 4044 | 4044 | * |
| 4045 | 4045 | * @return array Sorted terms array. |
| 4046 | 4046 | */ |
| 4047 | -function geodir_sort_terms( $terms, $sort = 'count' ) {
|
|
| 4048 | - if ( $sort == 'count' ) {
|
|
| 4049 | - return geodir_sort_terms_by_count( $terms ); |
|
| 4047 | +function geodir_sort_terms($terms, $sort = 'count') {
|
|
| 4048 | + if ($sort == 'count') {
|
|
| 4049 | + return geodir_sort_terms_by_count($terms); |
|
| 4050 | 4050 | } |
| 4051 | - if ( $sort == 'review_count' ) {
|
|
| 4052 | - return geodir_sort_terms_by_review_count( $terms ); |
|
| 4051 | + if ($sort == 'review_count') {
|
|
| 4052 | + return geodir_sort_terms_by_review_count($terms); |
|
| 4053 | 4053 | } |
| 4054 | 4054 | } |
| 4055 | 4055 | |
@@ -4067,7 +4067,7 @@ discard block |
||
| 4067 | 4067 | * |
| 4068 | 4068 | * @return bool |
| 4069 | 4069 | */ |
| 4070 | -function geodir_sort_by_count( $a, $b ) {
|
|
| 4070 | +function geodir_sort_by_count($a, $b) {
|
|
| 4071 | 4071 | return $a['count'] < $b['count']; |
| 4072 | 4072 | } |
| 4073 | 4073 | |
@@ -4082,7 +4082,7 @@ discard block |
||
| 4082 | 4082 | * |
| 4083 | 4083 | * @return bool |
| 4084 | 4084 | */ |
| 4085 | -function geodir_sort_by_count_obj( $a, $b ) {
|
|
| 4085 | +function geodir_sort_by_count_obj($a, $b) {
|
|
| 4086 | 4086 | return $a->count < $b->count; |
| 4087 | 4087 | } |
| 4088 | 4088 | |
@@ -4097,7 +4097,7 @@ discard block |
||
| 4097 | 4097 | * |
| 4098 | 4098 | * @return bool |
| 4099 | 4099 | */ |
| 4100 | -function geodir_sort_by_review_count_obj( $a, $b ) {
|
|
| 4100 | +function geodir_sort_by_review_count_obj($a, $b) {
|
|
| 4101 | 4101 | return $a->review_count < $b->review_count; |
| 4102 | 4102 | } |
| 4103 | 4103 | |
@@ -4114,35 +4114,35 @@ discard block |
||
| 4114 | 4114 | * @since 1.4.2 |
| 4115 | 4115 | * @package GeoDirectory |
| 4116 | 4116 | */ |
| 4117 | - $locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' ); |
|
| 4117 | + $locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
|
|
| 4118 | 4118 | |
| 4119 | - load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' ); |
|
| 4120 | - load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' ); |
|
| 4119 | + load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
|
|
| 4120 | + load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
|
|
| 4121 | 4121 | |
| 4122 | 4122 | /** |
| 4123 | 4123 | * Define language constants. |
| 4124 | 4124 | * |
| 4125 | 4125 | * @since 1.0.0 |
| 4126 | 4126 | */ |
| 4127 | - require_once( geodir_plugin_path() . '/language.php' ); |
|
| 4127 | + require_once(geodir_plugin_path().'/language.php'); |
|
| 4128 | 4128 | |
| 4129 | - $language_file = geodir_plugin_path() . '/db-language.php'; |
|
| 4129 | + $language_file = geodir_plugin_path().'/db-language.php'; |
|
| 4130 | 4130 | |
| 4131 | 4131 | // Load language string file if not created yet |
| 4132 | - if ( ! file_exists( $language_file ) ) {
|
|
| 4132 | + if (!file_exists($language_file)) {
|
|
| 4133 | 4133 | geodirectory_load_db_language(); |
| 4134 | 4134 | } |
| 4135 | 4135 | |
| 4136 | - if ( file_exists( $language_file ) ) {
|
|
| 4136 | + if (file_exists($language_file)) {
|
|
| 4137 | 4137 | /** |
| 4138 | 4138 | * Language strings from database. |
| 4139 | 4139 | * |
| 4140 | 4140 | * @since 1.4.2 |
| 4141 | 4141 | */ |
| 4142 | 4142 | try {
|
| 4143 | - require_once( $language_file ); |
|
| 4144 | - } catch ( Exception $e ) {
|
|
| 4145 | - error_log( 'Language Error: ' . $e->getMessage() ); |
|
| 4143 | + require_once($language_file); |
|
| 4144 | + } catch (Exception $e) {
|
|
| 4145 | + error_log('Language Error: '.$e->getMessage());
|
|
| 4146 | 4146 | } |
| 4147 | 4147 | } |
| 4148 | 4148 | } |
@@ -4159,19 +4159,19 @@ discard block |
||
| 4159 | 4159 | */ |
| 4160 | 4160 | function geodirectory_load_db_language() {
|
| 4161 | 4161 | global $wp_filesystem; |
| 4162 | - if ( empty( $wp_filesystem ) ) {
|
|
| 4163 | - require_once( ABSPATH . '/wp-admin/includes/file.php' ); |
|
| 4162 | + if (empty($wp_filesystem)) {
|
|
| 4163 | + require_once(ABSPATH.'/wp-admin/includes/file.php'); |
|
| 4164 | 4164 | WP_Filesystem(); |
| 4165 | 4165 | global $wp_filesystem; |
| 4166 | 4166 | } |
| 4167 | 4167 | |
| 4168 | - $language_file = geodir_plugin_path() . '/db-language.php'; |
|
| 4168 | + $language_file = geodir_plugin_path().'/db-language.php'; |
|
| 4169 | 4169 | |
| 4170 | - if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
|
|
| 4170 | + if (is_file($language_file) && !is_writable($language_file)) {
|
|
| 4171 | 4171 | return false; |
| 4172 | 4172 | } // Not possible to create. |
| 4173 | 4173 | |
| 4174 | - if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
|
|
| 4174 | + if (!is_file($language_file) && !is_writable(dirname($language_file))) {
|
|
| 4175 | 4175 | return false; |
| 4176 | 4176 | } // Not possible to create. |
| 4177 | 4177 | |
@@ -4184,9 +4184,9 @@ discard block |
||
| 4184 | 4184 | * |
| 4185 | 4185 | * @param array $contents_strings Array of strings. |
| 4186 | 4186 | */ |
| 4187 | - $contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings ); |
|
| 4187 | + $contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
|
|
| 4188 | 4188 | |
| 4189 | - $contents_strings = array_unique( $contents_strings ); |
|
| 4189 | + $contents_strings = array_unique($contents_strings); |
|
| 4190 | 4190 | |
| 4191 | 4191 | $contents_head = array(); |
| 4192 | 4192 | $contents_head[] = "<?php"; |
@@ -4203,20 +4203,20 @@ discard block |
||
| 4203 | 4203 | $contents_foot[] = ""; |
| 4204 | 4204 | $contents_foot[] = ""; |
| 4205 | 4205 | |
| 4206 | - $contents = implode( PHP_EOL, $contents_head ); |
|
| 4206 | + $contents = implode(PHP_EOL, $contents_head); |
|
| 4207 | 4207 | |
| 4208 | - if ( ! empty( $contents_strings ) ) {
|
|
| 4209 | - foreach ( $contents_strings as $string ) {
|
|
| 4210 | - if ( is_scalar( $string ) && $string != '' ) {
|
|
| 4211 | - $string = str_replace( "'", "\'", $string ); |
|
| 4212 | - $contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
|
|
| 4208 | + if (!empty($contents_strings)) {
|
|
| 4209 | + foreach ($contents_strings as $string) {
|
|
| 4210 | + if (is_scalar($string) && $string != '') {
|
|
| 4211 | + $string = str_replace("'", "\'", $string);
|
|
| 4212 | + $contents .= PHP_EOL."__('".$string."', 'geodirectory');";
|
|
| 4213 | 4213 | } |
| 4214 | 4214 | } |
| 4215 | 4215 | } |
| 4216 | 4216 | |
| 4217 | - $contents .= implode( PHP_EOL, $contents_foot ); |
|
| 4217 | + $contents .= implode(PHP_EOL, $contents_foot); |
|
| 4218 | 4218 | |
| 4219 | - if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
|
|
| 4219 | + if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
|
|
| 4220 | 4220 | return false; |
| 4221 | 4221 | } // Failure; could not write file. |
| 4222 | 4222 | |
@@ -4237,49 +4237,49 @@ discard block |
||
| 4237 | 4237 | * |
| 4238 | 4238 | * @return array Translation texts. |
| 4239 | 4239 | */ |
| 4240 | -function geodir_load_custom_field_translation( $translation_texts = array() ) {
|
|
| 4240 | +function geodir_load_custom_field_translation($translation_texts = array()) {
|
|
| 4241 | 4241 | global $wpdb; |
| 4242 | 4242 | |
| 4243 | 4243 | // Custom fields table |
| 4244 | - $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE; |
|
| 4245 | - $rows = $wpdb->get_results( $sql ); |
|
| 4244 | + $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE; |
|
| 4245 | + $rows = $wpdb->get_results($sql); |
|
| 4246 | 4246 | |
| 4247 | - if ( ! empty( $rows ) ) {
|
|
| 4248 | - foreach ( $rows as $row ) {
|
|
| 4249 | - if ( ! empty( $row->admin_title ) ) {
|
|
| 4250 | - $translation_texts[] = stripslashes_deep( $row->admin_title ); |
|
| 4247 | + if (!empty($rows)) {
|
|
| 4248 | + foreach ($rows as $row) {
|
|
| 4249 | + if (!empty($row->admin_title)) {
|
|
| 4250 | + $translation_texts[] = stripslashes_deep($row->admin_title); |
|
| 4251 | 4251 | } |
| 4252 | 4252 | |
| 4253 | - if ( ! empty( $row->admin_desc ) ) {
|
|
| 4254 | - $translation_texts[] = stripslashes_deep( $row->admin_desc ); |
|
| 4253 | + if (!empty($row->admin_desc)) {
|
|
| 4254 | + $translation_texts[] = stripslashes_deep($row->admin_desc); |
|
| 4255 | 4255 | } |
| 4256 | 4256 | |
| 4257 | - if ( ! empty( $row->site_title ) ) {
|
|
| 4258 | - $translation_texts[] = stripslashes_deep( $row->site_title ); |
|
| 4257 | + if (!empty($row->site_title)) {
|
|
| 4258 | + $translation_texts[] = stripslashes_deep($row->site_title); |
|
| 4259 | 4259 | } |
| 4260 | 4260 | |
| 4261 | - if ( ! empty( $row->clabels ) ) {
|
|
| 4262 | - $translation_texts[] = stripslashes_deep( $row->clabels ); |
|
| 4261 | + if (!empty($row->clabels)) {
|
|
| 4262 | + $translation_texts[] = stripslashes_deep($row->clabels); |
|
| 4263 | 4263 | } |
| 4264 | 4264 | |
| 4265 | - if ( ! empty( $row->required_msg ) ) {
|
|
| 4266 | - $translation_texts[] = stripslashes_deep( $row->required_msg ); |
|
| 4265 | + if (!empty($row->required_msg)) {
|
|
| 4266 | + $translation_texts[] = stripslashes_deep($row->required_msg); |
|
| 4267 | 4267 | } |
| 4268 | 4268 | |
| 4269 | - if ( ! empty( $row->validation_msg ) ) {
|
|
| 4270 | - $translation_texts[] = stripslashes_deep( $row->validation_msg ); |
|
| 4269 | + if (!empty($row->validation_msg)) {
|
|
| 4270 | + $translation_texts[] = stripslashes_deep($row->validation_msg); |
|
| 4271 | 4271 | } |
| 4272 | 4272 | |
| 4273 | - if ( ! empty( $row->default_value ) ) {
|
|
| 4274 | - $translation_texts[] = stripslashes_deep( $row->default_value ); |
|
| 4273 | + if (!empty($row->default_value)) {
|
|
| 4274 | + $translation_texts[] = stripslashes_deep($row->default_value); |
|
| 4275 | 4275 | } |
| 4276 | 4276 | |
| 4277 | - if ( ! empty( $row->option_values ) ) {
|
|
| 4278 | - $option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) ); |
|
| 4277 | + if (!empty($row->option_values)) {
|
|
| 4278 | + $option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values)); |
|
| 4279 | 4279 | |
| 4280 | - if ( ! empty( $option_values ) ) {
|
|
| 4281 | - foreach ( $option_values as $option_value ) {
|
|
| 4282 | - if ( ! empty( $option_value['label'] ) ) {
|
|
| 4280 | + if (!empty($option_values)) {
|
|
| 4281 | + foreach ($option_values as $option_value) {
|
|
| 4282 | + if (!empty($option_value['label'])) {
|
|
| 4283 | 4283 | $translation_texts[] = $option_value['label']; |
| 4284 | 4284 | } |
| 4285 | 4285 | } |
@@ -4289,56 +4289,56 @@ discard block |
||
| 4289 | 4289 | } |
| 4290 | 4290 | |
| 4291 | 4291 | // Custom sorting fields table |
| 4292 | - $sql = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE; |
|
| 4293 | - $rows = $wpdb->get_results( $sql ); |
|
| 4292 | + $sql = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE; |
|
| 4293 | + $rows = $wpdb->get_results($sql); |
|
| 4294 | 4294 | |
| 4295 | - if ( ! empty( $rows ) ) {
|
|
| 4296 | - foreach ( $rows as $row ) {
|
|
| 4297 | - if ( ! empty( $row->site_title ) ) {
|
|
| 4298 | - $translation_texts[] = stripslashes_deep( $row->site_title ); |
|
| 4295 | + if (!empty($rows)) {
|
|
| 4296 | + foreach ($rows as $row) {
|
|
| 4297 | + if (!empty($row->site_title)) {
|
|
| 4298 | + $translation_texts[] = stripslashes_deep($row->site_title); |
|
| 4299 | 4299 | } |
| 4300 | 4300 | |
| 4301 | - if ( ! empty( $row->asc_title ) ) {
|
|
| 4302 | - $translation_texts[] = stripslashes_deep( $row->asc_title ); |
|
| 4301 | + if (!empty($row->asc_title)) {
|
|
| 4302 | + $translation_texts[] = stripslashes_deep($row->asc_title); |
|
| 4303 | 4303 | } |
| 4304 | 4304 | |
| 4305 | - if ( ! empty( $row->desc_title ) ) {
|
|
| 4306 | - $translation_texts[] = stripslashes_deep( $row->desc_title ); |
|
| 4305 | + if (!empty($row->desc_title)) {
|
|
| 4306 | + $translation_texts[] = stripslashes_deep($row->desc_title); |
|
| 4307 | 4307 | } |
| 4308 | 4308 | } |
| 4309 | 4309 | } |
| 4310 | 4310 | |
| 4311 | 4311 | // Advance search filter fields table |
| 4312 | - if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
|
|
| 4313 | - $sql = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE; |
|
| 4314 | - $rows = $wpdb->get_results( $sql ); |
|
| 4315 | - |
|
| 4316 | - if ( ! empty( $rows ) ) {
|
|
| 4317 | - foreach ( $rows as $row ) {
|
|
| 4318 | - if ( ! empty( $row->field_site_name ) ) {
|
|
| 4319 | - $translation_texts[] = stripslashes_deep( $row->field_site_name ); |
|
| 4312 | + if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
|
|
| 4313 | + $sql = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE; |
|
| 4314 | + $rows = $wpdb->get_results($sql); |
|
| 4315 | + |
|
| 4316 | + if (!empty($rows)) {
|
|
| 4317 | + foreach ($rows as $row) {
|
|
| 4318 | + if (!empty($row->field_site_name)) {
|
|
| 4319 | + $translation_texts[] = stripslashes_deep($row->field_site_name); |
|
| 4320 | 4320 | } |
| 4321 | 4321 | |
| 4322 | - if ( ! empty( $row->front_search_title ) ) {
|
|
| 4323 | - $translation_texts[] = stripslashes_deep( $row->front_search_title ); |
|
| 4322 | + if (!empty($row->front_search_title)) {
|
|
| 4323 | + $translation_texts[] = stripslashes_deep($row->front_search_title); |
|
| 4324 | 4324 | } |
| 4325 | 4325 | |
| 4326 | - if ( ! empty( $row->first_search_text ) ) {
|
|
| 4327 | - $translation_texts[] = stripslashes_deep( $row->first_search_text ); |
|
| 4326 | + if (!empty($row->first_search_text)) {
|
|
| 4327 | + $translation_texts[] = stripslashes_deep($row->first_search_text); |
|
| 4328 | 4328 | } |
| 4329 | 4329 | |
| 4330 | - if ( ! empty( $row->last_search_text ) ) {
|
|
| 4331 | - $translation_texts[] = stripslashes_deep( $row->last_search_text ); |
|
| 4330 | + if (!empty($row->last_search_text)) {
|
|
| 4331 | + $translation_texts[] = stripslashes_deep($row->last_search_text); |
|
| 4332 | 4332 | } |
| 4333 | 4333 | |
| 4334 | - if ( ! empty( $row->field_desc ) ) {
|
|
| 4335 | - $translation_texts[] = stripslashes_deep( $row->field_desc ); |
|
| 4334 | + if (!empty($row->field_desc)) {
|
|
| 4335 | + $translation_texts[] = stripslashes_deep($row->field_desc); |
|
| 4336 | 4336 | } |
| 4337 | 4337 | } |
| 4338 | 4338 | } |
| 4339 | 4339 | } |
| 4340 | 4340 | |
| 4341 | - $translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts; |
|
| 4341 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 4342 | 4342 | |
| 4343 | 4343 | return $translation_texts; |
| 4344 | 4344 | } |
@@ -4360,7 +4360,7 @@ discard block |
||
| 4360 | 4360 | * |
| 4361 | 4361 | * @param array $geodir_allowed_mime_types and file extensions. |
| 4362 | 4362 | */ |
| 4363 | - return apply_filters( 'geodir_allowed_mime_types', array( |
|
| 4363 | + return apply_filters('geodir_allowed_mime_types', array(
|
|
| 4364 | 4364 | 'Image' => array( // Image formats. |
| 4365 | 4365 | 'jpg' => 'image/jpeg', |
| 4366 | 4366 | 'jpe' => 'image/jpeg', |
@@ -4428,18 +4428,18 @@ discard block |
||
| 4428 | 4428 | * |
| 4429 | 4429 | * @return string User display name. |
| 4430 | 4430 | */ |
| 4431 | -function geodir_get_client_name( $user_id ) {
|
|
| 4431 | +function geodir_get_client_name($user_id) {
|
|
| 4432 | 4432 | $client_name = ''; |
| 4433 | 4433 | |
| 4434 | - $user_data = get_userdata( $user_id ); |
|
| 4434 | + $user_data = get_userdata($user_id); |
|
| 4435 | 4435 | |
| 4436 | - if ( ! empty( $user_data ) ) {
|
|
| 4437 | - if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
|
|
| 4438 | - $client_name = trim( $user_data->display_name ); |
|
| 4439 | - } else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
|
|
| 4440 | - $client_name = trim( $user_data->user_nicename ); |
|
| 4436 | + if (!empty($user_data)) {
|
|
| 4437 | + if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
|
|
| 4438 | + $client_name = trim($user_data->display_name); |
|
| 4439 | + } else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
|
|
| 4440 | + $client_name = trim($user_data->user_nicename); |
|
| 4441 | 4441 | } else {
|
| 4442 | - $client_name = trim( $user_data->user_login ); |
|
| 4442 | + $client_name = trim($user_data->user_login); |
|
| 4443 | 4443 | } |
| 4444 | 4444 | } |
| 4445 | 4445 | |
@@ -4447,19 +4447,19 @@ discard block |
||
| 4447 | 4447 | } |
| 4448 | 4448 | |
| 4449 | 4449 | |
| 4450 | -add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 ); |
|
| 4450 | +add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
|
|
| 4451 | 4451 | /* |
| 4452 | 4452 | * Add location variables to wpseo replacements. |
| 4453 | 4453 | * |
| 4454 | 4454 | * @since 1.5.4 |
| 4455 | 4455 | */ |
| 4456 | -function geodir_wpseo_replacements( $vars ) {
|
|
| 4456 | +function geodir_wpseo_replacements($vars) {
|
|
| 4457 | 4457 | |
| 4458 | 4458 | global $wp; |
| 4459 | 4459 | $title = ''; |
| 4460 | 4460 | // location variables |
| 4461 | 4461 | $gd_post_type = geodir_get_current_posttype(); |
| 4462 | - $location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
| 4462 | + $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
|
|
| 4463 | 4463 | /** |
| 4464 | 4464 | * Filter the title variables location variables array |
| 4465 | 4465 | * |
@@ -4469,105 +4469,105 @@ discard block |
||
| 4469 | 4469 | * @param array $location_array The array of location variables. |
| 4470 | 4470 | * @param array $vars The page title variables. |
| 4471 | 4471 | */ |
| 4472 | - $location_array = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars ); |
|
| 4472 | + $location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
|
|
| 4473 | 4473 | $location_titles = array(); |
| 4474 | - if ( get_query_var( 'gd_country_full' ) ) {
|
|
| 4475 | - if ( get_query_var( 'gd_country_full' ) ) {
|
|
| 4476 | - $location_array['gd_country'] = get_query_var( 'gd_country_full' ); |
|
| 4474 | + if (get_query_var('gd_country_full')) {
|
|
| 4475 | + if (get_query_var('gd_country_full')) {
|
|
| 4476 | + $location_array['gd_country'] = get_query_var('gd_country_full');
|
|
| 4477 | 4477 | } |
| 4478 | - if ( get_query_var( 'gd_region_full' ) ) {
|
|
| 4479 | - $location_array['gd_region'] = get_query_var( 'gd_region_full' ); |
|
| 4478 | + if (get_query_var('gd_region_full')) {
|
|
| 4479 | + $location_array['gd_region'] = get_query_var('gd_region_full');
|
|
| 4480 | 4480 | } |
| 4481 | - if ( get_query_var( 'gd_city_full' ) ) {
|
|
| 4482 | - $location_array['gd_city'] = get_query_var( 'gd_city_full' ); |
|
| 4481 | + if (get_query_var('gd_city_full')) {
|
|
| 4482 | + $location_array['gd_city'] = get_query_var('gd_city_full');
|
|
| 4483 | 4483 | } |
| 4484 | 4484 | } |
| 4485 | 4485 | $location_single = ''; |
| 4486 | - $gd_country = ( isset( $wp->query_vars['gd_country'] ) && $wp->query_vars['gd_country'] != '' ) ? $wp->query_vars['gd_country'] : ''; |
|
| 4487 | - $gd_region = ( isset( $wp->query_vars['gd_region'] ) && $wp->query_vars['gd_region'] != '' ) ? $wp->query_vars['gd_region'] : ''; |
|
| 4488 | - $gd_city = ( isset( $wp->query_vars['gd_city'] ) && $wp->query_vars['gd_city'] != '' ) ? $wp->query_vars['gd_city'] : ''; |
|
| 4486 | + $gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : ''; |
|
| 4487 | + $gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : ''; |
|
| 4488 | + $gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : ''; |
|
| 4489 | 4489 | |
| 4490 | 4490 | $gd_country_actual = $gd_region_actual = $gd_city_actual = ''; |
| 4491 | 4491 | |
| 4492 | - if ( function_exists( 'get_actual_location_name' ) ) {
|
|
| 4493 | - $gd_country_actual = $gd_country != '' ? get_actual_location_name( 'country', $gd_country, true ) : $gd_country; |
|
| 4494 | - $gd_region_actual = $gd_region != '' ? get_actual_location_name( 'region', $gd_region ) : $gd_region; |
|
| 4495 | - $gd_city_actual = $gd_city != '' ? get_actual_location_name( 'city', $gd_city ) : $gd_city; |
|
| 4492 | + if (function_exists('get_actual_location_name')) {
|
|
| 4493 | + $gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
|
|
| 4494 | + $gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
|
|
| 4495 | + $gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
|
|
| 4496 | 4496 | } |
| 4497 | 4497 | |
| 4498 | - if ( $gd_city != '' ) {
|
|
| 4499 | - if ( $gd_city_actual != '' ) {
|
|
| 4498 | + if ($gd_city != '') {
|
|
| 4499 | + if ($gd_city_actual != '') {
|
|
| 4500 | 4500 | $gd_city = $gd_city_actual; |
| 4501 | 4501 | } else {
|
| 4502 | - $gd_city = preg_replace( '/-(\d+)$/', '', $gd_city ); |
|
| 4503 | - $gd_city = preg_replace( '/[_-]/', ' ', $gd_city ); |
|
| 4504 | - $gd_city = __( geodir_ucwords( $gd_city ), 'geodirectory' ); |
|
| 4502 | + $gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
|
|
| 4503 | + $gd_city = preg_replace('/[_-]/', ' ', $gd_city);
|
|
| 4504 | + $gd_city = __(geodir_ucwords($gd_city), 'geodirectory'); |
|
| 4505 | 4505 | } |
| 4506 | 4506 | $location_single = $gd_city; |
| 4507 | 4507 | |
| 4508 | - } else if ( $gd_region != '' ) {
|
|
| 4509 | - if ( $gd_region_actual != '' ) {
|
|
| 4508 | + } else if ($gd_region != '') {
|
|
| 4509 | + if ($gd_region_actual != '') {
|
|
| 4510 | 4510 | $gd_region = $gd_region_actual; |
| 4511 | 4511 | } else {
|
| 4512 | - $gd_region = preg_replace( '/-(\d+)$/', '', $gd_region ); |
|
| 4513 | - $gd_region = preg_replace( '/[_-]/', ' ', $gd_region ); |
|
| 4514 | - $gd_region = __( geodir_ucwords( $gd_region ), 'geodirectory' ); |
|
| 4512 | + $gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
|
|
| 4513 | + $gd_region = preg_replace('/[_-]/', ' ', $gd_region);
|
|
| 4514 | + $gd_region = __(geodir_ucwords($gd_region), 'geodirectory'); |
|
| 4515 | 4515 | } |
| 4516 | 4516 | |
| 4517 | 4517 | $location_single = $gd_region; |
| 4518 | - } else if ( $gd_country != '' ) {
|
|
| 4519 | - if ( $gd_country_actual != '' ) {
|
|
| 4518 | + } else if ($gd_country != '') {
|
|
| 4519 | + if ($gd_country_actual != '') {
|
|
| 4520 | 4520 | $gd_country = $gd_country_actual; |
| 4521 | 4521 | } else {
|
| 4522 | - $gd_country = preg_replace( '/-(\d+)$/', '', $gd_country ); |
|
| 4523 | - $gd_country = preg_replace( '/[_-]/', ' ', $gd_country ); |
|
| 4524 | - $gd_country = __( geodir_ucwords( $gd_country ), 'geodirectory' ); |
|
| 4522 | + $gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
|
|
| 4523 | + $gd_country = preg_replace('/[_-]/', ' ', $gd_country);
|
|
| 4524 | + $gd_country = __(geodir_ucwords($gd_country), 'geodirectory'); |
|
| 4525 | 4525 | } |
| 4526 | 4526 | |
| 4527 | 4527 | $location_single = $gd_country; |
| 4528 | 4528 | } |
| 4529 | 4529 | |
| 4530 | - if ( ! empty( $location_array ) ) {
|
|
| 4530 | + if (!empty($location_array)) {
|
|
| 4531 | 4531 | |
| 4532 | - $actual_location_name = function_exists( 'get_actual_location_name' ) ? true : false; |
|
| 4533 | - $location_array = array_reverse( $location_array ); |
|
| 4532 | + $actual_location_name = function_exists('get_actual_location_name') ? true : false;
|
|
| 4533 | + $location_array = array_reverse($location_array); |
|
| 4534 | 4534 | |
| 4535 | - foreach ( $location_array as $location_type => $location ) {
|
|
| 4536 | - $gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location ); |
|
| 4537 | - $gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text ); |
|
| 4535 | + foreach ($location_array as $location_type => $location) {
|
|
| 4536 | + $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
|
|
| 4537 | + $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
|
|
| 4538 | 4538 | |
| 4539 | - $location_name = geodir_ucwords( $gd_location_link_text ); |
|
| 4540 | - $location_name = __( $location_name, 'geodirectory' ); |
|
| 4539 | + $location_name = geodir_ucwords($gd_location_link_text); |
|
| 4540 | + $location_name = __($location_name, 'geodirectory'); |
|
| 4541 | 4541 | |
| 4542 | - if ( $actual_location_name ) {
|
|
| 4543 | - $location_type = strpos( $location_type, 'gd_' ) === 0 ? substr( $location_type, 3 ) : $location_type; |
|
| 4544 | - $location_name = get_actual_location_name( $location_type, $location, true ); |
|
| 4542 | + if ($actual_location_name) {
|
|
| 4543 | + $location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type; |
|
| 4544 | + $location_name = get_actual_location_name($location_type, $location, true); |
|
| 4545 | 4545 | } |
| 4546 | 4546 | |
| 4547 | 4547 | $location_titles[] = $location_name; |
| 4548 | 4548 | } |
| 4549 | - if ( ! empty( $location_titles ) ) {
|
|
| 4550 | - $location_titles = array_unique( $location_titles ); |
|
| 4549 | + if (!empty($location_titles)) {
|
|
| 4550 | + $location_titles = array_unique($location_titles); |
|
| 4551 | 4551 | } |
| 4552 | 4552 | } |
| 4553 | 4553 | |
| 4554 | 4554 | |
| 4555 | - if ( ! empty( $location_titles ) ) {
|
|
| 4556 | - $vars['%%location%%'] = implode( ", ", $location_titles ); |
|
| 4555 | + if (!empty($location_titles)) {
|
|
| 4556 | + $vars['%%location%%'] = implode(", ", $location_titles);
|
|
| 4557 | 4557 | } |
| 4558 | 4558 | |
| 4559 | 4559 | |
| 4560 | - if ( ! empty( $location_titles ) ) {
|
|
| 4561 | - $vars['%%in_location%%'] = __( 'in ', 'geodirectory' ) . implode( ", ", $location_titles ); |
|
| 4560 | + if (!empty($location_titles)) {
|
|
| 4561 | + $vars['%%in_location%%'] = __('in ', 'geodirectory').implode(", ", $location_titles);
|
|
| 4562 | 4562 | } |
| 4563 | 4563 | |
| 4564 | 4564 | |
| 4565 | - if ( $location_single ) {
|
|
| 4566 | - $vars['%%in_location_single%%'] = __( 'in', 'geodirectory' ) . ' ' . $location_single; |
|
| 4565 | + if ($location_single) {
|
|
| 4566 | + $vars['%%in_location_single%%'] = __('in', 'geodirectory').' '.$location_single;
|
|
| 4567 | 4567 | } |
| 4568 | 4568 | |
| 4569 | 4569 | |
| 4570 | - if ( $location_single ) {
|
|
| 4570 | + if ($location_single) {
|
|
| 4571 | 4571 | $vars['%%location_single%%'] = $location_single; |
| 4572 | 4572 | } |
| 4573 | 4573 | |
@@ -4580,13 +4580,13 @@ discard block |
||
| 4580 | 4580 | * @param string $vars The title with variables. |
| 4581 | 4581 | * @param array $location_array The array of location variables. |
| 4582 | 4582 | */ |
| 4583 | - return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array ); |
|
| 4583 | + return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
|
|
| 4584 | 4584 | } |
| 4585 | 4585 | |
| 4586 | 4586 | |
| 4587 | -add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 ); |
|
| 4588 | -add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 ); |
|
| 4589 | -add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 ); |
|
| 4587 | +add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
|
|
| 4588 | +add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
|
|
| 4589 | +add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
|
|
| 4590 | 4590 | |
| 4591 | 4591 | /** |
| 4592 | 4592 | * Filter the title variables. |
@@ -4628,14 +4628,14 @@ discard block |
||
| 4628 | 4628 | * |
| 4629 | 4629 | * @return string Title after filtered variables. |
| 4630 | 4630 | */ |
| 4631 | -function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
|
|
| 4631 | +function geodir_filter_title_variables($title, $gd_page, $sep = '') {
|
|
| 4632 | 4632 | global $wp, $post; |
| 4633 | 4633 | |
| 4634 | - if ( ! $gd_page || ! $title ) {
|
|
| 4634 | + if (!$gd_page || !$title) {
|
|
| 4635 | 4635 | return $title; // if no a GD page then bail. |
| 4636 | 4636 | } |
| 4637 | 4637 | |
| 4638 | - if ( $sep == '' ) {
|
|
| 4638 | + if ($sep == '') {
|
|
| 4639 | 4639 | /** |
| 4640 | 4640 | * Filter the page title separator. |
| 4641 | 4641 | * |
@@ -4644,100 +4644,100 @@ discard block |
||
| 4644 | 4644 | * |
| 4645 | 4645 | * @param string $sep The separator, default: `|`. |
| 4646 | 4646 | */ |
| 4647 | - $sep = apply_filters( 'geodir_page_title_separator', '|' ); |
|
| 4647 | + $sep = apply_filters('geodir_page_title_separator', '|');
|
|
| 4648 | 4648 | } |
| 4649 | 4649 | |
| 4650 | - if ( strpos( $title, '%%title%%' ) !== false ) {
|
|
| 4651 | - $title = str_replace( "%%title%%", $post->post_title, $title ); |
|
| 4650 | + if (strpos($title, '%%title%%') !== false) {
|
|
| 4651 | + $title = str_replace("%%title%%", $post->post_title, $title);
|
|
| 4652 | 4652 | } |
| 4653 | 4653 | |
| 4654 | - if ( strpos( $title, '%%sitename%%' ) !== false ) {
|
|
| 4655 | - $title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title ); |
|
| 4654 | + if (strpos($title, '%%sitename%%') !== false) {
|
|
| 4655 | + $title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
|
|
| 4656 | 4656 | } |
| 4657 | 4657 | |
| 4658 | - if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
|
|
| 4659 | - $title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title ); |
|
| 4658 | + if (strpos($title, '%%sitedesc%%') !== false) {
|
|
| 4659 | + $title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
|
|
| 4660 | 4660 | } |
| 4661 | 4661 | |
| 4662 | - if ( strpos( $title, '%%excerpt%%' ) !== false ) {
|
|
| 4663 | - $title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title ); |
|
| 4662 | + if (strpos($title, '%%excerpt%%') !== false) {
|
|
| 4663 | + $title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
|
|
| 4664 | 4664 | } |
| 4665 | 4665 | |
| 4666 | - if ( $gd_page == 'search' || $gd_page == 'author' ) {
|
|
| 4667 | - $post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : ''; |
|
| 4668 | - } else if ( $gd_page == 'add-listing' ) {
|
|
| 4669 | - $post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : ''; |
|
| 4670 | - $post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type; |
|
| 4671 | - } else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
|
|
| 4666 | + if ($gd_page == 'search' || $gd_page == 'author') {
|
|
| 4667 | + $post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : ''; |
|
| 4668 | + } else if ($gd_page == 'add-listing') {
|
|
| 4669 | + $post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : ''; |
|
| 4670 | + $post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type; |
|
| 4671 | + } else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
|
|
| 4672 | 4672 | $post_type = $post->post_type; |
| 4673 | 4673 | } else {
|
| 4674 | - $post_type = get_query_var( 'post_type' ); |
|
| 4674 | + $post_type = get_query_var('post_type');
|
|
| 4675 | 4675 | } |
| 4676 | 4676 | |
| 4677 | - if ( strpos( $title, '%%pt_single%%' ) !== false ) {
|
|
| 4677 | + if (strpos($title, '%%pt_single%%') !== false) {
|
|
| 4678 | 4678 | $singular_name = ''; |
| 4679 | - if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
|
|
| 4680 | - $singular_name = __( $singular_name, 'geodirectory' ); |
|
| 4679 | + if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
|
|
| 4680 | + $singular_name = __($singular_name, 'geodirectory'); |
|
| 4681 | 4681 | } |
| 4682 | 4682 | |
| 4683 | - $title = str_replace( "%%pt_single%%", $singular_name, $title ); |
|
| 4683 | + $title = str_replace("%%pt_single%%", $singular_name, $title);
|
|
| 4684 | 4684 | } |
| 4685 | 4685 | |
| 4686 | - if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
|
|
| 4686 | + if (strpos($title, '%%pt_plural%%') !== false) {
|
|
| 4687 | 4687 | $plural_name = ''; |
| 4688 | - if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
|
|
| 4689 | - $plural_name = __( $plural_name, 'geodirectory' ); |
|
| 4688 | + if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
|
|
| 4689 | + $plural_name = __($plural_name, 'geodirectory'); |
|
| 4690 | 4690 | } |
| 4691 | 4691 | |
| 4692 | - $title = str_replace( "%%pt_plural%%", $plural_name, $title ); |
|
| 4692 | + $title = str_replace("%%pt_plural%%", $plural_name, $title);
|
|
| 4693 | 4693 | } |
| 4694 | 4694 | |
| 4695 | - if ( strpos( $title, '%%category%%' ) !== false ) {
|
|
| 4695 | + if (strpos($title, '%%category%%') !== false) {
|
|
| 4696 | 4696 | $cat_name = ''; |
| 4697 | 4697 | |
| 4698 | - if ( $gd_page == 'detail' ) {
|
|
| 4699 | - if ( $post->default_category ) {
|
|
| 4700 | - $cat = get_term( $post->default_category, $post->post_type . 'category' ); |
|
| 4701 | - $cat_name = ( isset( $cat->name ) ) ? $cat->name : ''; |
|
| 4698 | + if ($gd_page == 'detail') {
|
|
| 4699 | + if ($post->default_category) {
|
|
| 4700 | + $cat = get_term($post->default_category, $post->post_type.'category'); |
|
| 4701 | + $cat_name = (isset($cat->name)) ? $cat->name : ''; |
|
| 4702 | 4702 | } |
| 4703 | - } else if ( $gd_page == 'listing' ) {
|
|
| 4703 | + } else if ($gd_page == 'listing') {
|
|
| 4704 | 4704 | $queried_object = get_queried_object(); |
| 4705 | - if ( isset( $queried_object->name ) ) {
|
|
| 4705 | + if (isset($queried_object->name)) {
|
|
| 4706 | 4706 | $cat_name = $queried_object->name; |
| 4707 | 4707 | } |
| 4708 | 4708 | } |
| 4709 | - $title = str_replace( "%%category%%", $cat_name, $title ); |
|
| 4709 | + $title = str_replace("%%category%%", $cat_name, $title);
|
|
| 4710 | 4710 | } |
| 4711 | 4711 | |
| 4712 | - if ( strpos( $title, '%%tag%%' ) !== false ) {
|
|
| 4712 | + if (strpos($title, '%%tag%%') !== false) {
|
|
| 4713 | 4713 | $cat_name = ''; |
| 4714 | 4714 | |
| 4715 | - if ( $gd_page == 'detail' ) {
|
|
| 4716 | - if ( $post->default_category ) {
|
|
| 4717 | - $cat = get_term( $post->default_category, $post->post_type . 'category' ); |
|
| 4718 | - $cat_name = ( isset( $cat->name ) ) ? $cat->name : ''; |
|
| 4715 | + if ($gd_page == 'detail') {
|
|
| 4716 | + if ($post->default_category) {
|
|
| 4717 | + $cat = get_term($post->default_category, $post->post_type.'category'); |
|
| 4718 | + $cat_name = (isset($cat->name)) ? $cat->name : ''; |
|
| 4719 | 4719 | } |
| 4720 | - } else if ( $gd_page == 'listing' ) {
|
|
| 4720 | + } else if ($gd_page == 'listing') {
|
|
| 4721 | 4721 | $queried_object = get_queried_object(); |
| 4722 | - if ( isset( $queried_object->name ) ) {
|
|
| 4722 | + if (isset($queried_object->name)) {
|
|
| 4723 | 4723 | $cat_name = $queried_object->name; |
| 4724 | 4724 | } |
| 4725 | 4725 | } |
| 4726 | - $title = str_replace( "%%tag%%", $cat_name, $title ); |
|
| 4726 | + $title = str_replace("%%tag%%", $cat_name, $title);
|
|
| 4727 | 4727 | } |
| 4728 | 4728 | |
| 4729 | - if ( strpos( $title, '%%id%%' ) !== false ) {
|
|
| 4730 | - $ID = ( isset( $post->ID ) ) ? $post->ID : ''; |
|
| 4731 | - $title = str_replace( "%%id%%", $ID, $title ); |
|
| 4729 | + if (strpos($title, '%%id%%') !== false) {
|
|
| 4730 | + $ID = (isset($post->ID)) ? $post->ID : ''; |
|
| 4731 | + $title = str_replace("%%id%%", $ID, $title);
|
|
| 4732 | 4732 | } |
| 4733 | 4733 | |
| 4734 | - if ( strpos( $title, '%%sep%%' ) !== false ) {
|
|
| 4735 | - $title = str_replace( "%%sep%%", $sep, $title ); |
|
| 4734 | + if (strpos($title, '%%sep%%') !== false) {
|
|
| 4735 | + $title = str_replace("%%sep%%", $sep, $title);
|
|
| 4736 | 4736 | } |
| 4737 | 4737 | |
| 4738 | 4738 | // location variables |
| 4739 | 4739 | $gd_post_type = geodir_get_current_posttype(); |
| 4740 | - $location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
| 4740 | + $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
|
|
| 4741 | 4741 | /** |
| 4742 | 4742 | * Filter the title variables location variables array |
| 4743 | 4743 | * |
@@ -4749,166 +4749,166 @@ discard block |
||
| 4749 | 4749 | * @param string $gd_page The page being filtered. |
| 4750 | 4750 | * @param string $sep The separator, default: `|`. |
| 4751 | 4751 | */ |
| 4752 | - $location_array = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep ); |
|
| 4752 | + $location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
|
|
| 4753 | 4753 | $location_titles = array(); |
| 4754 | - if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
|
|
| 4755 | - if ( get_query_var( 'gd_country_full' ) ) {
|
|
| 4756 | - $location_array['gd_country'] = get_query_var( 'gd_country_full' ); |
|
| 4754 | + if ($gd_page == 'location' && get_query_var('gd_country_full')) {
|
|
| 4755 | + if (get_query_var('gd_country_full')) {
|
|
| 4756 | + $location_array['gd_country'] = get_query_var('gd_country_full');
|
|
| 4757 | 4757 | } |
| 4758 | - if ( get_query_var( 'gd_region_full' ) ) {
|
|
| 4759 | - $location_array['gd_region'] = get_query_var( 'gd_region_full' ); |
|
| 4758 | + if (get_query_var('gd_region_full')) {
|
|
| 4759 | + $location_array['gd_region'] = get_query_var('gd_region_full');
|
|
| 4760 | 4760 | } |
| 4761 | - if ( get_query_var( 'gd_city_full' ) ) {
|
|
| 4762 | - $location_array['gd_city'] = get_query_var( 'gd_city_full' ); |
|
| 4761 | + if (get_query_var('gd_city_full')) {
|
|
| 4762 | + $location_array['gd_city'] = get_query_var('gd_city_full');
|
|
| 4763 | 4763 | } |
| 4764 | 4764 | } |
| 4765 | 4765 | $location_single = ''; |
| 4766 | - $gd_country = ( isset( $wp->query_vars['gd_country'] ) && $wp->query_vars['gd_country'] != '' ) ? $wp->query_vars['gd_country'] : ''; |
|
| 4767 | - $gd_region = ( isset( $wp->query_vars['gd_region'] ) && $wp->query_vars['gd_region'] != '' ) ? $wp->query_vars['gd_region'] : ''; |
|
| 4768 | - $gd_city = ( isset( $wp->query_vars['gd_city'] ) && $wp->query_vars['gd_city'] != '' ) ? $wp->query_vars['gd_city'] : ''; |
|
| 4766 | + $gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : ''; |
|
| 4767 | + $gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : ''; |
|
| 4768 | + $gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : ''; |
|
| 4769 | 4769 | |
| 4770 | 4770 | $gd_country_actual = $gd_region_actual = $gd_city_actual = ''; |
| 4771 | 4771 | |
| 4772 | - if ( function_exists( 'get_actual_location_name' ) ) {
|
|
| 4773 | - $gd_country_actual = $gd_country != '' ? get_actual_location_name( 'country', $gd_country, true ) : $gd_country; |
|
| 4774 | - $gd_region_actual = $gd_region != '' ? get_actual_location_name( 'region', $gd_region ) : $gd_region; |
|
| 4775 | - $gd_city_actual = $gd_city != '' ? get_actual_location_name( 'city', $gd_city ) : $gd_city; |
|
| 4772 | + if (function_exists('get_actual_location_name')) {
|
|
| 4773 | + $gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
|
|
| 4774 | + $gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
|
|
| 4775 | + $gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
|
|
| 4776 | 4776 | } |
| 4777 | 4777 | |
| 4778 | - if ( $gd_city != '' ) {
|
|
| 4779 | - if ( $gd_city_actual != '' ) {
|
|
| 4778 | + if ($gd_city != '') {
|
|
| 4779 | + if ($gd_city_actual != '') {
|
|
| 4780 | 4780 | $gd_city = $gd_city_actual; |
| 4781 | 4781 | } else {
|
| 4782 | - $gd_city = preg_replace( '/-(\d+)$/', '', $gd_city ); |
|
| 4783 | - $gd_city = preg_replace( '/[_-]/', ' ', $gd_city ); |
|
| 4784 | - $gd_city = __( geodir_ucwords( $gd_city ), 'geodirectory' ); |
|
| 4782 | + $gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
|
|
| 4783 | + $gd_city = preg_replace('/[_-]/', ' ', $gd_city);
|
|
| 4784 | + $gd_city = __(geodir_ucwords($gd_city), 'geodirectory'); |
|
| 4785 | 4785 | } |
| 4786 | 4786 | $location_single = $gd_city; |
| 4787 | 4787 | |
| 4788 | - } else if ( $gd_region != '' ) {
|
|
| 4789 | - if ( $gd_region_actual != '' ) {
|
|
| 4788 | + } else if ($gd_region != '') {
|
|
| 4789 | + if ($gd_region_actual != '') {
|
|
| 4790 | 4790 | $gd_region = $gd_region_actual; |
| 4791 | 4791 | } else {
|
| 4792 | - $gd_region = preg_replace( '/-(\d+)$/', '', $gd_region ); |
|
| 4793 | - $gd_region = preg_replace( '/[_-]/', ' ', $gd_region ); |
|
| 4794 | - $gd_region = __( geodir_ucwords( $gd_region ), 'geodirectory' ); |
|
| 4792 | + $gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
|
|
| 4793 | + $gd_region = preg_replace('/[_-]/', ' ', $gd_region);
|
|
| 4794 | + $gd_region = __(geodir_ucwords($gd_region), 'geodirectory'); |
|
| 4795 | 4795 | } |
| 4796 | 4796 | |
| 4797 | 4797 | $location_single = $gd_region; |
| 4798 | - } else if ( $gd_country != '' ) {
|
|
| 4799 | - if ( $gd_country_actual != '' ) {
|
|
| 4798 | + } else if ($gd_country != '') {
|
|
| 4799 | + if ($gd_country_actual != '') {
|
|
| 4800 | 4800 | $gd_country = $gd_country_actual; |
| 4801 | 4801 | } else {
|
| 4802 | - $gd_country = preg_replace( '/-(\d+)$/', '', $gd_country ); |
|
| 4803 | - $gd_country = preg_replace( '/[_-]/', ' ', $gd_country ); |
|
| 4804 | - $gd_country = __( geodir_ucwords( $gd_country ), 'geodirectory' ); |
|
| 4802 | + $gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
|
|
| 4803 | + $gd_country = preg_replace('/[_-]/', ' ', $gd_country);
|
|
| 4804 | + $gd_country = __(geodir_ucwords($gd_country), 'geodirectory'); |
|
| 4805 | 4805 | } |
| 4806 | 4806 | |
| 4807 | 4807 | $location_single = $gd_country; |
| 4808 | 4808 | } |
| 4809 | 4809 | |
| 4810 | - if ( ! empty( $location_array ) ) {
|
|
| 4810 | + if (!empty($location_array)) {
|
|
| 4811 | 4811 | |
| 4812 | - $actual_location_name = function_exists( 'get_actual_location_name' ) ? true : false; |
|
| 4813 | - $location_array = array_reverse( $location_array ); |
|
| 4812 | + $actual_location_name = function_exists('get_actual_location_name') ? true : false;
|
|
| 4813 | + $location_array = array_reverse($location_array); |
|
| 4814 | 4814 | |
| 4815 | - foreach ( $location_array as $location_type => $location ) {
|
|
| 4816 | - $gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location ); |
|
| 4817 | - $gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text ); |
|
| 4815 | + foreach ($location_array as $location_type => $location) {
|
|
| 4816 | + $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
|
|
| 4817 | + $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
|
|
| 4818 | 4818 | |
| 4819 | - $location_name = geodir_ucwords( $gd_location_link_text ); |
|
| 4820 | - $location_name = __( $location_name, 'geodirectory' ); |
|
| 4819 | + $location_name = geodir_ucwords($gd_location_link_text); |
|
| 4820 | + $location_name = __($location_name, 'geodirectory'); |
|
| 4821 | 4821 | |
| 4822 | - if ( $actual_location_name ) {
|
|
| 4823 | - $location_type = strpos( $location_type, 'gd_' ) === 0 ? substr( $location_type, 3 ) : $location_type; |
|
| 4824 | - $location_name = get_actual_location_name( $location_type, $location, true ); |
|
| 4822 | + if ($actual_location_name) {
|
|
| 4823 | + $location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type; |
|
| 4824 | + $location_name = get_actual_location_name($location_type, $location, true); |
|
| 4825 | 4825 | } |
| 4826 | 4826 | |
| 4827 | 4827 | $location_titles[] = $location_name; |
| 4828 | 4828 | } |
| 4829 | - if ( ! empty( $location_titles ) ) {
|
|
| 4830 | - $location_titles = array_unique( $location_titles ); |
|
| 4829 | + if (!empty($location_titles)) {
|
|
| 4830 | + $location_titles = array_unique($location_titles); |
|
| 4831 | 4831 | } |
| 4832 | 4832 | } |
| 4833 | 4833 | |
| 4834 | 4834 | |
| 4835 | - if ( strpos( $title, '%%location%%' ) !== false ) {
|
|
| 4835 | + if (strpos($title, '%%location%%') !== false) {
|
|
| 4836 | 4836 | $location = ''; |
| 4837 | - if ( $location_titles ) {
|
|
| 4838 | - $location = implode( ", ", $location_titles ); |
|
| 4837 | + if ($location_titles) {
|
|
| 4838 | + $location = implode(", ", $location_titles);
|
|
| 4839 | 4839 | } |
| 4840 | - $title = str_replace( "%%location%%", $location, $title ); |
|
| 4840 | + $title = str_replace("%%location%%", $location, $title);
|
|
| 4841 | 4841 | } |
| 4842 | 4842 | |
| 4843 | - if ( strpos( $title, '%%in_location%%' ) !== false ) {
|
|
| 4843 | + if (strpos($title, '%%in_location%%') !== false) {
|
|
| 4844 | 4844 | $location = ''; |
| 4845 | - if ( $location_titles ) {
|
|
| 4846 | - $location = __( 'in ', 'geodirectory' ) . implode( ", ", $location_titles ); |
|
| 4845 | + if ($location_titles) {
|
|
| 4846 | + $location = __('in ', 'geodirectory').implode(", ", $location_titles);
|
|
| 4847 | 4847 | } |
| 4848 | - $title = str_replace( "%%in_location%%", $location, $title ); |
|
| 4848 | + $title = str_replace("%%in_location%%", $location, $title);
|
|
| 4849 | 4849 | } |
| 4850 | 4850 | |
| 4851 | - if ( strpos( $title, '%%in_location_single%%' ) !== false ) {
|
|
| 4852 | - if ( $location_single ) {
|
|
| 4853 | - $location_single = __( 'in', 'geodirectory' ) . ' ' . $location_single; |
|
| 4851 | + if (strpos($title, '%%in_location_single%%') !== false) {
|
|
| 4852 | + if ($location_single) {
|
|
| 4853 | + $location_single = __('in', 'geodirectory').' '.$location_single;
|
|
| 4854 | 4854 | } |
| 4855 | - $title = str_replace( "%%in_location_single%%", $location_single, $title ); |
|
| 4855 | + $title = str_replace("%%in_location_single%%", $location_single, $title);
|
|
| 4856 | 4856 | } |
| 4857 | 4857 | |
| 4858 | - if ( strpos( $title, '%%location_single%%' ) !== false ) {
|
|
| 4859 | - $title = str_replace( "%%location_single%%", $location_single, $title ); |
|
| 4858 | + if (strpos($title, '%%location_single%%') !== false) {
|
|
| 4859 | + $title = str_replace("%%location_single%%", $location_single, $title);
|
|
| 4860 | 4860 | } |
| 4861 | 4861 | |
| 4862 | 4862 | |
| 4863 | - if ( strpos( $title, '%%search_term%%' ) !== false ) {
|
|
| 4863 | + if (strpos($title, '%%search_term%%') !== false) {
|
|
| 4864 | 4864 | $search_term = ''; |
| 4865 | - if ( isset( $_REQUEST['s'] ) ) {
|
|
| 4866 | - $search_term = esc_attr( $_REQUEST['s'] ); |
|
| 4865 | + if (isset($_REQUEST['s'])) {
|
|
| 4866 | + $search_term = esc_attr($_REQUEST['s']); |
|
| 4867 | 4867 | } |
| 4868 | - $title = str_replace( "%%search_term%%", $search_term, $title ); |
|
| 4868 | + $title = str_replace("%%search_term%%", $search_term, $title);
|
|
| 4869 | 4869 | } |
| 4870 | 4870 | |
| 4871 | - if ( strpos( $title, '%%search_near%%' ) !== false ) {
|
|
| 4871 | + if (strpos($title, '%%search_near%%') !== false) {
|
|
| 4872 | 4872 | $search_term = ''; |
| 4873 | - if ( isset( $_REQUEST['snear'] ) ) {
|
|
| 4874 | - $search_term = esc_attr( $_REQUEST['snear'] ); |
|
| 4873 | + if (isset($_REQUEST['snear'])) {
|
|
| 4874 | + $search_term = esc_attr($_REQUEST['snear']); |
|
| 4875 | 4875 | } |
| 4876 | - $title = str_replace( "%%search_near%%", $search_term, $title ); |
|
| 4876 | + $title = str_replace("%%search_near%%", $search_term, $title);
|
|
| 4877 | 4877 | } |
| 4878 | 4878 | |
| 4879 | - if ( strpos( $title, '%%name%%' ) !== false ) {
|
|
| 4880 | - if ( is_author() ) {
|
|
| 4881 | - $curauth = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) ); |
|
| 4879 | + if (strpos($title, '%%name%%') !== false) {
|
|
| 4880 | + if (is_author()) {
|
|
| 4881 | + $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
|
|
| 4882 | 4882 | $author_name = $curauth->display_name; |
| 4883 | 4883 | } else {
|
| 4884 | 4884 | $author_name = get_the_author(); |
| 4885 | 4885 | } |
| 4886 | - if ( ! $author_name || $author_name === '' ) {
|
|
| 4886 | + if (!$author_name || $author_name === '') {
|
|
| 4887 | 4887 | $queried_object = get_queried_object(); |
| 4888 | 4888 | |
| 4889 | - if ( isset( $queried_object->data->user_nicename ) ) {
|
|
| 4889 | + if (isset($queried_object->data->user_nicename)) {
|
|
| 4890 | 4890 | $author_name = $queried_object->data->display_name; |
| 4891 | 4891 | } |
| 4892 | 4892 | } |
| 4893 | - $title = str_replace( "%%name%%", $author_name, $title ); |
|
| 4893 | + $title = str_replace("%%name%%", $author_name, $title);
|
|
| 4894 | 4894 | } |
| 4895 | 4895 | |
| 4896 | - if ( strpos( $title, '%%page%%' ) !== false ) {
|
|
| 4897 | - $page = geodir_title_meta_page( $sep ); |
|
| 4898 | - $title = str_replace( "%%page%%", $page, $title ); |
|
| 4896 | + if (strpos($title, '%%page%%') !== false) {
|
|
| 4897 | + $page = geodir_title_meta_page($sep); |
|
| 4898 | + $title = str_replace("%%page%%", $page, $title);
|
|
| 4899 | 4899 | } |
| 4900 | - if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
|
|
| 4900 | + if (strpos($title, '%%pagenumber%%') !== false) {
|
|
| 4901 | 4901 | $pagenumber = geodir_title_meta_pagenumber(); |
| 4902 | - $title = str_replace( "%%pagenumber%%", $pagenumber, $title ); |
|
| 4902 | + $title = str_replace("%%pagenumber%%", $pagenumber, $title);
|
|
| 4903 | 4903 | } |
| 4904 | - if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
|
|
| 4904 | + if (strpos($title, '%%pagetotal%%') !== false) {
|
|
| 4905 | 4905 | $pagetotal = geodir_title_meta_pagetotal(); |
| 4906 | - $title = str_replace( "%%pagetotal%%", $pagetotal, $title ); |
|
| 4906 | + $title = str_replace("%%pagetotal%%", $pagetotal, $title);
|
|
| 4907 | 4907 | } |
| 4908 | 4908 | |
| 4909 | - $title = wptexturize( $title ); |
|
| 4910 | - $title = convert_chars( $title ); |
|
| 4911 | - $title = esc_html( $title ); |
|
| 4909 | + $title = wptexturize($title); |
|
| 4910 | + $title = convert_chars($title); |
|
| 4911 | + $title = esc_html($title); |
|
| 4912 | 4912 | |
| 4913 | 4913 | /** |
| 4914 | 4914 | * Filter the title variables after standard ones have been filtered. |
@@ -4922,7 +4922,7 @@ discard block |
||
| 4922 | 4922 | * @param string $sep The separator, default: `|`. |
| 4923 | 4923 | */ |
| 4924 | 4924 | |
| 4925 | - return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep ); |
|
| 4925 | + return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
|
|
| 4926 | 4926 | } |
| 4927 | 4927 | |
| 4928 | 4928 | /** |
@@ -4935,82 +4935,82 @@ discard block |
||
| 4935 | 4935 | * |
| 4936 | 4936 | * @return array Translation texts. |
| 4937 | 4937 | */ |
| 4938 | -function geodir_load_cpt_text_translation( $translation_texts = array() ) {
|
|
| 4939 | - $gd_post_types = geodir_get_posttypes( 'array' ); |
|
| 4938 | +function geodir_load_cpt_text_translation($translation_texts = array()) {
|
|
| 4939 | + $gd_post_types = geodir_get_posttypes('array');
|
|
| 4940 | 4940 | |
| 4941 | - if ( ! empty( $gd_post_types ) ) {
|
|
| 4942 | - foreach ( $gd_post_types as $post_type => $cpt_info ) {
|
|
| 4943 | - $labels = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : ''; |
|
| 4944 | - $description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : ''; |
|
| 4945 | - $seo = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : ''; |
|
| 4941 | + if (!empty($gd_post_types)) {
|
|
| 4942 | + foreach ($gd_post_types as $post_type => $cpt_info) {
|
|
| 4943 | + $labels = isset($cpt_info['labels']) ? $cpt_info['labels'] : ''; |
|
| 4944 | + $description = isset($cpt_info['description']) ? $cpt_info['description'] : ''; |
|
| 4945 | + $seo = isset($cpt_info['seo']) ? $cpt_info['seo'] : ''; |
|
| 4946 | 4946 | |
| 4947 | - if ( ! empty( $labels ) ) {
|
|
| 4948 | - if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
|
|
| 4947 | + if (!empty($labels)) {
|
|
| 4948 | + if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
|
|
| 4949 | 4949 | $translation_texts[] = $labels['name']; |
| 4950 | 4950 | } |
| 4951 | - if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
|
|
| 4951 | + if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
|
|
| 4952 | 4952 | $translation_texts[] = $labels['singular_name']; |
| 4953 | 4953 | } |
| 4954 | - if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
|
|
| 4954 | + if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
|
|
| 4955 | 4955 | $translation_texts[] = $labels['add_new']; |
| 4956 | 4956 | } |
| 4957 | - if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
|
|
| 4957 | + if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
|
|
| 4958 | 4958 | $translation_texts[] = $labels['add_new_item']; |
| 4959 | 4959 | } |
| 4960 | - if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
|
|
| 4960 | + if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
|
|
| 4961 | 4961 | $translation_texts[] = $labels['edit_item']; |
| 4962 | 4962 | } |
| 4963 | - if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
|
|
| 4963 | + if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
|
|
| 4964 | 4964 | $translation_texts[] = $labels['new_item']; |
| 4965 | 4965 | } |
| 4966 | - if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
|
|
| 4966 | + if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
|
|
| 4967 | 4967 | $translation_texts[] = $labels['view_item']; |
| 4968 | 4968 | } |
| 4969 | - if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
|
|
| 4969 | + if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
|
|
| 4970 | 4970 | $translation_texts[] = $labels['search_items']; |
| 4971 | 4971 | } |
| 4972 | - if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
|
|
| 4972 | + if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
|
|
| 4973 | 4973 | $translation_texts[] = $labels['not_found']; |
| 4974 | 4974 | } |
| 4975 | - if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
|
|
| 4975 | + if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
|
|
| 4976 | 4976 | $translation_texts[] = $labels['not_found_in_trash']; |
| 4977 | 4977 | } |
| 4978 | - if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
|
|
| 4978 | + if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
|
|
| 4979 | 4979 | $translation_texts[] = $labels['label_post_profile']; |
| 4980 | 4980 | } |
| 4981 | - if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
|
|
| 4981 | + if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
|
|
| 4982 | 4982 | $translation_texts[] = $labels['label_post_info']; |
| 4983 | 4983 | } |
| 4984 | - if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
|
|
| 4984 | + if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
|
|
| 4985 | 4985 | $translation_texts[] = $labels['label_post_images']; |
| 4986 | 4986 | } |
| 4987 | - if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
|
|
| 4987 | + if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
|
|
| 4988 | 4988 | $translation_texts[] = $labels['label_post_map']; |
| 4989 | 4989 | } |
| 4990 | - if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
|
|
| 4990 | + if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
|
|
| 4991 | 4991 | $translation_texts[] = $labels['label_reviews']; |
| 4992 | 4992 | } |
| 4993 | - if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
|
|
| 4993 | + if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
|
|
| 4994 | 4994 | $translation_texts[] = $labels['label_related_listing']; |
| 4995 | 4995 | } |
| 4996 | 4996 | } |
| 4997 | 4997 | |
| 4998 | - if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
|
|
| 4999 | - $translation_texts[] = normalize_whitespace( $description ); |
|
| 4998 | + if ($description != '' && !in_array($description, $translation_texts)) {
|
|
| 4999 | + $translation_texts[] = normalize_whitespace($description); |
|
| 5000 | 5000 | } |
| 5001 | 5001 | |
| 5002 | - if ( ! empty( $seo ) ) {
|
|
| 5003 | - if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
|
|
| 5004 | - $translation_texts[] = normalize_whitespace( $seo['meta_keyword'] ); |
|
| 5002 | + if (!empty($seo)) {
|
|
| 5003 | + if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
|
|
| 5004 | + $translation_texts[] = normalize_whitespace($seo['meta_keyword']); |
|
| 5005 | 5005 | } |
| 5006 | 5006 | |
| 5007 | - if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
|
|
| 5008 | - $translation_texts[] = normalize_whitespace( $seo['meta_description'] ); |
|
| 5007 | + if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
|
|
| 5008 | + $translation_texts[] = normalize_whitespace($seo['meta_description']); |
|
| 5009 | 5009 | } |
| 5010 | 5010 | } |
| 5011 | 5011 | } |
| 5012 | 5012 | } |
| 5013 | - $translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts; |
|
| 5013 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 5014 | 5014 | |
| 5015 | 5015 | return $translation_texts; |
| 5016 | 5016 | } |
@@ -5025,27 +5025,27 @@ discard block |
||
| 5025 | 5025 | * |
| 5026 | 5026 | * @return array Location terms. |
| 5027 | 5027 | */ |
| 5028 | -function geodir_remove_location_terms( $location_terms = array() ) {
|
|
| 5029 | - $location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false; |
|
| 5028 | +function geodir_remove_location_terms($location_terms = array()) {
|
|
| 5029 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
|
|
| 5030 | 5030 | |
| 5031 | - if ( ! empty( $location_terms ) && $location_manager ) {
|
|
| 5032 | - $hide_country_part = get_option( 'geodir_location_hide_country_part' ); |
|
| 5033 | - $hide_region_part = get_option( 'geodir_location_hide_region_part' ); |
|
| 5031 | + if (!empty($location_terms) && $location_manager) {
|
|
| 5032 | + $hide_country_part = get_option('geodir_location_hide_country_part');
|
|
| 5033 | + $hide_region_part = get_option('geodir_location_hide_region_part');
|
|
| 5034 | 5034 | |
| 5035 | - if ( $hide_region_part && $hide_country_part ) {
|
|
| 5036 | - if ( isset( $location_terms['gd_country'] ) ) {
|
|
| 5037 | - unset( $location_terms['gd_country'] ); |
|
| 5035 | + if ($hide_region_part && $hide_country_part) {
|
|
| 5036 | + if (isset($location_terms['gd_country'])) {
|
|
| 5037 | + unset($location_terms['gd_country']); |
|
| 5038 | 5038 | } |
| 5039 | - if ( isset( $location_terms['gd_region'] ) ) {
|
|
| 5040 | - unset( $location_terms['gd_region'] ); |
|
| 5039 | + if (isset($location_terms['gd_region'])) {
|
|
| 5040 | + unset($location_terms['gd_region']); |
|
| 5041 | 5041 | } |
| 5042 | - } else if ( $hide_region_part && ! $hide_country_part ) {
|
|
| 5043 | - if ( isset( $location_terms['gd_region'] ) ) {
|
|
| 5044 | - unset( $location_terms['gd_region'] ); |
|
| 5042 | + } else if ($hide_region_part && !$hide_country_part) {
|
|
| 5043 | + if (isset($location_terms['gd_region'])) {
|
|
| 5044 | + unset($location_terms['gd_region']); |
|
| 5045 | 5045 | } |
| 5046 | - } else if ( ! $hide_region_part && $hide_country_part ) {
|
|
| 5047 | - if ( isset( $location_terms['gd_country'] ) ) {
|
|
| 5048 | - unset( $location_terms['gd_country'] ); |
|
| 5046 | + } else if (!$hide_region_part && $hide_country_part) {
|
|
| 5047 | + if (isset($location_terms['gd_country'])) {
|
|
| 5048 | + unset($location_terms['gd_country']); |
|
| 5049 | 5049 | } |
| 5050 | 5050 | } |
| 5051 | 5051 | } |
@@ -5063,33 +5063,33 @@ discard block |
||
| 5063 | 5063 | * @param WP_Post $post Post object. |
| 5064 | 5064 | * @param bool $update Whether this is an existing listing being updated or not. |
| 5065 | 5065 | */ |
| 5066 | -function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
|
|
| 5067 | - if ( ! $update ) {
|
|
| 5066 | +function geodir_on_wp_insert_post($post_ID, $post, $update) {
|
|
| 5067 | + if (!$update) {
|
|
| 5068 | 5068 | return; |
| 5069 | 5069 | } |
| 5070 | 5070 | |
| 5071 | - $action = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : ''; |
|
| 5072 | - $is_admin = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false; |
|
| 5071 | + $action = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : ''; |
|
| 5072 | + $is_admin = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
|
|
| 5073 | 5073 | $inline_save = $action == 'inline-save' ? true : false; |
| 5074 | 5074 | |
| 5075 | - if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
|
|
| 5075 | + if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
|
|
| 5076 | 5076 | return; |
| 5077 | 5077 | } |
| 5078 | 5078 | |
| 5079 | - if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
|
|
| 5079 | + if ($action != '' && in_array($action, array('geodir_import_export'))) {
|
|
| 5080 | 5080 | return; |
| 5081 | 5081 | } |
| 5082 | 5082 | |
| 5083 | 5083 | $user_id = (int) get_current_user_id(); |
| 5084 | 5084 | |
| 5085 | - if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
|
|
| 5086 | - $author_id = ! empty( $post->post_author ) ? $post->post_author : 0; |
|
| 5085 | + if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
|
|
| 5086 | + $author_id = !empty($post->post_author) ? $post->post_author : 0; |
|
| 5087 | 5087 | |
| 5088 | - if ( $user_id == $author_id && ! is_super_admin() ) {
|
|
| 5089 | - $from_email = get_option( 'site_email' ); |
|
| 5088 | + if ($user_id == $author_id && !is_super_admin()) {
|
|
| 5089 | + $from_email = get_option('site_email');
|
|
| 5090 | 5090 | $from_name = get_site_emailName(); |
| 5091 | - $to_email = get_option( 'admin_email' ); |
|
| 5092 | - $to_name = get_option( 'name' ); |
|
| 5091 | + $to_email = get_option('admin_email');
|
|
| 5092 | + $to_name = get_option('name');
|
|
| 5093 | 5093 | $message_type = 'listing_edited'; |
| 5094 | 5094 | |
| 5095 | 5095 | $notify_edited = true; |
@@ -5101,9 +5101,9 @@ discard block |
||
| 5101 | 5101 | * @param bool $notify_edited Notify on listing edited by author? |
| 5102 | 5102 | * @param object $post The current post object. |
| 5103 | 5103 | */ |
| 5104 | - $notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post ); |
|
| 5104 | + $notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
|
|
| 5105 | 5105 | |
| 5106 | - geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID ); |
|
| 5106 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 5107 | 5107 | } |
| 5108 | 5108 | } |
| 5109 | 5109 | } |
@@ -5118,14 +5118,14 @@ discard block |
||
| 5118 | 5118 | * |
| 5119 | 5119 | * @return string|null The current page start & end numbering. |
| 5120 | 5120 | */ |
| 5121 | -function geodir_title_meta_page( $sep ) {
|
|
| 5121 | +function geodir_title_meta_page($sep) {
|
|
| 5122 | 5122 | $replacement = null; |
| 5123 | 5123 | |
| 5124 | - $max = geodir_title_meta_pagenumbering( 'max' ); |
|
| 5125 | - $nr = geodir_title_meta_pagenumbering( 'nr' ); |
|
| 5124 | + $max = geodir_title_meta_pagenumbering('max');
|
|
| 5125 | + $nr = geodir_title_meta_pagenumbering('nr');
|
|
| 5126 | 5126 | |
| 5127 | - if ( $max > 1 && $nr > 1 ) {
|
|
| 5128 | - $replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max ); |
|
| 5127 | + if ($max > 1 && $nr > 1) {
|
|
| 5128 | + $replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
|
|
| 5129 | 5129 | } |
| 5130 | 5130 | |
| 5131 | 5131 | return $replacement; |
@@ -5142,8 +5142,8 @@ discard block |
||
| 5142 | 5142 | function geodir_title_meta_pagenumber() {
|
| 5143 | 5143 | $replacement = null; |
| 5144 | 5144 | |
| 5145 | - $nr = geodir_title_meta_pagenumbering( 'nr' ); |
|
| 5146 | - if ( isset( $nr ) && $nr > 0 ) {
|
|
| 5145 | + $nr = geodir_title_meta_pagenumbering('nr');
|
|
| 5146 | + if (isset($nr) && $nr > 0) {
|
|
| 5147 | 5147 | $replacement = (string) $nr; |
| 5148 | 5148 | } |
| 5149 | 5149 | |
@@ -5161,8 +5161,8 @@ discard block |
||
| 5161 | 5161 | function geodir_title_meta_pagetotal() {
|
| 5162 | 5162 | $replacement = null; |
| 5163 | 5163 | |
| 5164 | - $max = geodir_title_meta_pagenumbering( 'max' ); |
|
| 5165 | - if ( isset( $max ) && $max > 0 ) {
|
|
| 5164 | + $max = geodir_title_meta_pagenumbering('max');
|
|
| 5165 | + if (isset($max) && $max > 0) {
|
|
| 5166 | 5166 | $replacement = (string) $max; |
| 5167 | 5167 | } |
| 5168 | 5168 | |
@@ -5182,36 +5182,36 @@ discard block |
||
| 5182 | 5182 | * |
| 5183 | 5183 | * @return int|null The current page numbering. |
| 5184 | 5184 | */ |
| 5185 | -function geodir_title_meta_pagenumbering( $request = 'nr' ) {
|
|
| 5185 | +function geodir_title_meta_pagenumbering($request = 'nr') {
|
|
| 5186 | 5186 | global $wp_query, $post; |
| 5187 | 5187 | $max_num_pages = null; |
| 5188 | 5188 | $page_number = null; |
| 5189 | 5189 | |
| 5190 | 5190 | $max_num_pages = 1; |
| 5191 | 5191 | |
| 5192 | - if ( ! is_singular() ) {
|
|
| 5193 | - $page_number = get_query_var( 'paged' ); |
|
| 5194 | - if ( $page_number === 0 || $page_number === '' ) {
|
|
| 5192 | + if (!is_singular()) {
|
|
| 5193 | + $page_number = get_query_var('paged');
|
|
| 5194 | + if ($page_number === 0 || $page_number === '') {
|
|
| 5195 | 5195 | $page_number = 1; |
| 5196 | 5196 | } |
| 5197 | 5197 | |
| 5198 | - if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
|
|
| 5198 | + if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
|
|
| 5199 | 5199 | $max_num_pages = $wp_query->max_num_pages; |
| 5200 | 5200 | } |
| 5201 | 5201 | } else {
|
| 5202 | - $page_number = get_query_var( 'page' ); |
|
| 5203 | - if ( $page_number === 0 || $page_number === '' ) {
|
|
| 5202 | + $page_number = get_query_var('page');
|
|
| 5203 | + if ($page_number === 0 || $page_number === '') {
|
|
| 5204 | 5204 | $page_number = 1; |
| 5205 | 5205 | } |
| 5206 | 5206 | |
| 5207 | - if ( isset( $post->post_content ) ) {
|
|
| 5208 | - $max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 ); |
|
| 5207 | + if (isset($post->post_content)) {
|
|
| 5208 | + $max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1); |
|
| 5209 | 5209 | } |
| 5210 | 5210 | } |
| 5211 | 5211 | |
| 5212 | 5212 | $return = null; |
| 5213 | 5213 | |
| 5214 | - switch ( $request ) {
|
|
| 5214 | + switch ($request) {
|
|
| 5215 | 5215 | case 'nr': |
| 5216 | 5216 | $return = $page_number; |
| 5217 | 5217 | break; |
@@ -5232,14 +5232,14 @@ discard block |
||
| 5232 | 5232 | * |
| 5233 | 5233 | * @return array Terms. |
| 5234 | 5234 | */ |
| 5235 | -function geodir_filter_empty_terms( $terms ) {
|
|
| 5236 | - if ( empty( $terms ) ) {
|
|
| 5235 | +function geodir_filter_empty_terms($terms) {
|
|
| 5236 | + if (empty($terms)) {
|
|
| 5237 | 5237 | return $terms; |
| 5238 | 5238 | } |
| 5239 | 5239 | |
| 5240 | 5240 | $return = array(); |
| 5241 | - foreach ( $terms as $term ) {
|
|
| 5242 | - if ( isset( $term->count ) && $term->count > 0 ) {
|
|
| 5241 | + foreach ($terms as $term) {
|
|
| 5242 | + if (isset($term->count) && $term->count > 0) {
|
|
| 5243 | 5243 | $return[] = $term; |
| 5244 | 5244 | } else {
|
| 5245 | 5245 | /** |
@@ -5250,7 +5250,7 @@ discard block |
||
| 5250 | 5250 | * @param array $return The array of terms to return. |
| 5251 | 5251 | * @param object $term The term object. |
| 5252 | 5252 | */ |
| 5253 | - $return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term ); |
|
| 5253 | + $return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
|
|
| 5254 | 5254 | } |
| 5255 | 5255 | } |
| 5256 | 5256 | |
@@ -5267,12 +5267,12 @@ discard block |
||
| 5267 | 5267 | * |
| 5268 | 5268 | * @return array |
| 5269 | 5269 | */ |
| 5270 | -function geodir_remove_hentry( $class ) {
|
|
| 5271 | - if ( geodir_is_page( 'detail' ) ) {
|
|
| 5272 | - $class = array_diff( $class, array( 'hentry' ) ); |
|
| 5270 | +function geodir_remove_hentry($class) {
|
|
| 5271 | + if (geodir_is_page('detail')) {
|
|
| 5272 | + $class = array_diff($class, array('hentry'));
|
|
| 5273 | 5273 | } |
| 5274 | 5274 | |
| 5275 | 5275 | return $class; |
| 5276 | 5276 | } |
| 5277 | 5277 | |
| 5278 | -add_filter( 'post_class', 'geodir_remove_hentry' ); |
|
| 5279 | 5278 | \ No newline at end of file |
| 5279 | +add_filter('post_class', 'geodir_remove_hentry'); |
|
| 5280 | 5280 | \ No newline at end of file |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | */ |
| 20 | 20 | function geodir_get_ajax_url() |
| 21 | 21 | {
|
| 22 | - return admin_url('admin-ajax.php?action=geodir_ajax_action');
|
|
| 22 | + return admin_url('admin-ajax.php?action=geodir_ajax_action');
|
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | ///////////////////// |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | add_filter('query_vars', 'geodir_add_geodir_page_var');
|
| 88 | 88 | add_action('wp', 'geodir_add_page_id_in_query_var'); // problem fix in wordpress 3.8
|
| 89 | 89 | if (get_option('permalink_structure') != '')
|
| 90 | - add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
|
|
| 90 | + add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
|
|
| 91 | 91 | |
| 92 | 92 | add_filter('parse_query', 'geodir_modified_query');
|
| 93 | 93 | |
@@ -154,14 +154,14 @@ discard block |
||
| 154 | 154 | /* POST AND LOOP ACTIONS */ |
| 155 | 155 | //////////////////////// |
| 156 | 156 | if (!is_admin()) {
|
| 157 | - add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtural page from everywhere
|
|
| 158 | - add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
|
|
| 159 | - /** Exclude Virtual Pages From Pages List **/ |
|
| 160 | - add_action('pre_get_posts', 'set_listing_request', 0);
|
|
| 161 | - add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
|
|
| 162 | - add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
|
|
| 163 | - add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
|
|
| 164 | - add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
|
|
| 157 | + add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtural page from everywhere
|
|
| 158 | + add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
|
|
| 159 | + /** Exclude Virtual Pages From Pages List **/ |
|
| 160 | + add_action('pre_get_posts', 'set_listing_request', 0);
|
|
| 161 | + add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
|
|
| 162 | + add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
|
|
| 163 | + add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
|
|
| 164 | + add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
|
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | |
@@ -222,12 +222,12 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | function geodir_unset_prev_theme_nav_location($newname) |
| 224 | 224 | {
|
| 225 | - $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 226 | - if ($geodir_theme_location) {
|
|
| 227 | - update_option('geodir_theme_location_nav', $geodir_theme_location);
|
|
| 228 | - } else {
|
|
| 229 | - update_option('geodir_theme_location_nav', '');
|
|
| 230 | - } |
|
| 225 | + $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 226 | + if ($geodir_theme_location) {
|
|
| 227 | + update_option('geodir_theme_location_nav', $geodir_theme_location);
|
|
| 228 | + } else {
|
|
| 229 | + update_option('geodir_theme_location_nav', '');
|
|
| 230 | + } |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /// add action for theme switch to blank previous theme navigation location setting |
@@ -248,32 +248,32 @@ discard block |
||
| 248 | 248 | */ |
| 249 | 249 | function geodir_add_post_filters() |
| 250 | 250 | {
|
| 251 | - /** |
|
| 252 | - * Contains all function for filtering listing. |
|
| 253 | - * |
|
| 254 | - * @since 1.0.0 |
|
| 255 | - * @package GeoDirectory |
|
| 256 | - */ |
|
| 257 | - include_once('geodirectory-functions/listing_filters.php');
|
|
| 251 | + /** |
|
| 252 | + * Contains all function for filtering listing. |
|
| 253 | + * |
|
| 254 | + * @since 1.0.0 |
|
| 255 | + * @package GeoDirectory |
|
| 256 | + */ |
|
| 257 | + include_once('geodirectory-functions/listing_filters.php');
|
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | |
| 261 | 261 | if (!function_exists('geodir_init_defaults')) {
|
| 262 | - /** |
|
| 263 | - * Calls the function to register the GeoDirectory default CPT and taxonomies. |
|
| 264 | - * |
|
| 265 | - * @since 1.0.0 |
|
| 266 | - * @package GeoDirectory |
|
| 267 | - */ |
|
| 268 | - function geodir_init_defaults() |
|
| 269 | - {
|
|
| 270 | - if (function_exists('geodir_register_defaults')) {
|
|
| 262 | + /** |
|
| 263 | + * Calls the function to register the GeoDirectory default CPT and taxonomies. |
|
| 264 | + * |
|
| 265 | + * @since 1.0.0 |
|
| 266 | + * @package GeoDirectory |
|
| 267 | + */ |
|
| 268 | + function geodir_init_defaults() |
|
| 269 | + {
|
|
| 270 | + if (function_exists('geodir_register_defaults')) {
|
|
| 271 | 271 | |
| 272 | - geodir_register_defaults(); |
|
| 272 | + geodir_register_defaults(); |
|
| 273 | 273 | |
| 274 | - } |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | - } |
|
| 276 | + } |
|
| 277 | 277 | } |
| 278 | 278 | |
| 279 | 279 | |
@@ -295,26 +295,26 @@ discard block |
||
| 295 | 295 | // CALLED ON 'sidebars_widgets' FILTER |
| 296 | 296 | |
| 297 | 297 | if (!function_exists('geodir_restrict_widget')) {
|
| 298 | - /** |
|
| 299 | - * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page. |
|
| 300 | - * |
|
| 301 | - * @global bool $is_listing Sets the global value to true if on a GD category page. False if not. |
|
| 302 | - * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not. |
|
| 303 | - * @since 1.0.0 |
|
| 304 | - * @package GeoDirectory |
|
| 305 | - */ |
|
| 306 | - function geodir_restrict_widget() |
|
| 307 | - {
|
|
| 308 | - global $is_listing, $is_single_place; |
|
| 298 | + /** |
|
| 299 | + * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page. |
|
| 300 | + * |
|
| 301 | + * @global bool $is_listing Sets the global value to true if on a GD category page. False if not. |
|
| 302 | + * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not. |
|
| 303 | + * @since 1.0.0 |
|
| 304 | + * @package GeoDirectory |
|
| 305 | + */ |
|
| 306 | + function geodir_restrict_widget() |
|
| 307 | + {
|
|
| 308 | + global $is_listing, $is_single_place; |
|
| 309 | 309 | |
| 310 | - // set is listing |
|
| 311 | - (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
|
|
| 310 | + // set is listing |
|
| 311 | + (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
|
|
| 312 | 312 | |
| 313 | - // set is single place |
|
| 314 | - (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
|
|
| 313 | + // set is single place |
|
| 314 | + (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
|
|
| 315 | 315 | |
| 316 | 316 | |
| 317 | - } |
|
| 317 | + } |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | 320 | |
@@ -335,31 +335,31 @@ discard block |
||
| 335 | 335 | */ |
| 336 | 336 | function geodir_detail_page_sidebar_content_sorting() |
| 337 | 337 | {
|
| 338 | - $arr_detail_page_sidebar_content = |
|
| 339 | - /** |
|
| 340 | - * An array of functions to be called to be displayed on the details (post) page sidebar. |
|
| 341 | - * |
|
| 342 | - * This filter can be used to remove sections of the details page sidebar, |
|
| 343 | - * add new sections or rearrange the order of the sections. |
|
| 344 | - * |
|
| 345 | - * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
|
|
| 346 | - * @since 1.0.0 |
|
| 347 | - */ |
|
| 348 | - apply_filters('geodir_detail_page_sidebar_content',
|
|
| 349 | - array('geodir_social_sharing_buttons',
|
|
| 350 | - 'geodir_detail_page_google_analytics', |
|
| 351 | - 'geodir_edit_post_link', |
|
| 352 | - 'geodir_detail_page_review_rating', |
|
| 353 | - 'geodir_detail_page_more_info' |
|
| 354 | - ) // end of array |
|
| 355 | - ); // end of apply filter |
|
| 356 | - if (!empty($arr_detail_page_sidebar_content)) {
|
|
| 357 | - foreach ($arr_detail_page_sidebar_content as $content_function) {
|
|
| 358 | - if (function_exists($content_function)) {
|
|
| 359 | - add_action('geodir_detail_page_sidebar', $content_function);
|
|
| 360 | - } |
|
| 361 | - } |
|
| 362 | - } |
|
| 338 | + $arr_detail_page_sidebar_content = |
|
| 339 | + /** |
|
| 340 | + * An array of functions to be called to be displayed on the details (post) page sidebar. |
|
| 341 | + * |
|
| 342 | + * This filter can be used to remove sections of the details page sidebar, |
|
| 343 | + * add new sections or rearrange the order of the sections. |
|
| 344 | + * |
|
| 345 | + * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
|
|
| 346 | + * @since 1.0.0 |
|
| 347 | + */ |
|
| 348 | + apply_filters('geodir_detail_page_sidebar_content',
|
|
| 349 | + array('geodir_social_sharing_buttons',
|
|
| 350 | + 'geodir_detail_page_google_analytics', |
|
| 351 | + 'geodir_edit_post_link', |
|
| 352 | + 'geodir_detail_page_review_rating', |
|
| 353 | + 'geodir_detail_page_more_info' |
|
| 354 | + ) // end of array |
|
| 355 | + ); // end of apply filter |
|
| 356 | + if (!empty($arr_detail_page_sidebar_content)) {
|
|
| 357 | + foreach ($arr_detail_page_sidebar_content as $content_function) {
|
|
| 358 | + if (function_exists($content_function)) {
|
|
| 359 | + add_action('geodir_detail_page_sidebar', $content_function);
|
|
| 360 | + } |
|
| 361 | + } |
|
| 362 | + } |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1);
|
@@ -374,14 +374,14 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | function geodir_add_to_favourite_link() |
| 376 | 376 | {
|
| 377 | - global $post, $preview; |
|
| 378 | - if (!$preview && geodir_is_page('detail')) {
|
|
| 379 | - ?> |
|
| 377 | + global $post, $preview; |
|
| 378 | + if (!$preview && geodir_is_page('detail')) {
|
|
| 379 | + ?> |
|
| 380 | 380 | <p class="edit_link"> |
| 381 | 381 | <?php geodir_favourite_html($post->post_author, $post->ID); ?> |
| 382 | 382 | </p> |
| 383 | 383 | <?php |
| 384 | - } |
|
| 384 | + } |
|
| 385 | 385 | } |
| 386 | 386 | |
| 387 | 387 | /** |
@@ -395,41 +395,41 @@ discard block |
||
| 395 | 395 | */ |
| 396 | 396 | function geodir_social_sharing_buttons() |
| 397 | 397 | {
|
| 398 | - global $preview; |
|
| 399 | - ob_start(); // Start buffering; |
|
| 400 | - /** |
|
| 401 | - * This action is called before the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 402 | - * |
|
| 403 | - * @since 1.0.0 |
|
| 404 | - */ |
|
| 405 | - do_action('geodir_before_social_sharing_buttons');
|
|
| 406 | - if (!$preview) {
|
|
| 407 | - ?> |
|
| 398 | + global $preview; |
|
| 399 | + ob_start(); // Start buffering; |
|
| 400 | + /** |
|
| 401 | + * This action is called before the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 402 | + * |
|
| 403 | + * @since 1.0.0 |
|
| 404 | + */ |
|
| 405 | + do_action('geodir_before_social_sharing_buttons');
|
|
| 406 | + if (!$preview) {
|
|
| 407 | + ?> |
|
| 408 | 408 | <div class="likethis"> |
| 409 | 409 | <?php geodir_twitter_tweet_button(); ?> |
| 410 | 410 | <?php geodir_fb_like_button(); ?> |
| 411 | 411 | <?php geodir_google_plus_button(); ?> |
| 412 | 412 | </div> |
| 413 | 413 | <?php |
| 414 | - }// end of if, if its a preview or not |
|
| 415 | - |
|
| 416 | - /** |
|
| 417 | - * This action is called after the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 418 | - * |
|
| 419 | - * @since 1.0.0 |
|
| 420 | - */ |
|
| 421 | - do_action('geodir_after_social_sharing_buttons');
|
|
| 422 | - $content_html = ob_get_clean(); |
|
| 423 | - if (trim($content_html) != '') |
|
| 424 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | - if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | - /** |
|
| 427 | - * Filter the geodir_social_sharing_buttons() function content. |
|
| 428 | - * |
|
| 429 | - * @param string $content_html The output html of the geodir_social_sharing_buttons() function. |
|
| 430 | - */ |
|
| 431 | - echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
|
|
| 432 | - } |
|
| 414 | + }// end of if, if its a preview or not |
|
| 415 | + |
|
| 416 | + /** |
|
| 417 | + * This action is called after the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 418 | + * |
|
| 419 | + * @since 1.0.0 |
|
| 420 | + */ |
|
| 421 | + do_action('geodir_after_social_sharing_buttons');
|
|
| 422 | + $content_html = ob_get_clean(); |
|
| 423 | + if (trim($content_html) != '') |
|
| 424 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | + if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | + /** |
|
| 427 | + * Filter the geodir_social_sharing_buttons() function content. |
|
| 428 | + * |
|
| 429 | + * @param string $content_html The output html of the geodir_social_sharing_buttons() function. |
|
| 430 | + */ |
|
| 431 | + echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
|
|
| 432 | + } |
|
| 433 | 433 | |
| 434 | 434 | |
| 435 | 435 | } |
@@ -447,46 +447,46 @@ discard block |
||
| 447 | 447 | */ |
| 448 | 448 | function geodir_edit_post_link() |
| 449 | 449 | {
|
| 450 | - global $post, $preview; |
|
| 451 | - ob_start(); // Start buffering; |
|
| 452 | - /** |
|
| 453 | - * This is called before the edit post link html in the function geodir_edit_post_link() |
|
| 454 | - * |
|
| 455 | - * @since 1.0.0 |
|
| 456 | - */ |
|
| 457 | - do_action('geodir_before_edit_post_link');
|
|
| 458 | - if (!$preview) {
|
|
| 459 | - $is_current_user_owner = geodir_listing_belong_to_current_user(); |
|
| 450 | + global $post, $preview; |
|
| 451 | + ob_start(); // Start buffering; |
|
| 452 | + /** |
|
| 453 | + * This is called before the edit post link html in the function geodir_edit_post_link() |
|
| 454 | + * |
|
| 455 | + * @since 1.0.0 |
|
| 456 | + */ |
|
| 457 | + do_action('geodir_before_edit_post_link');
|
|
| 458 | + if (!$preview) {
|
|
| 459 | + $is_current_user_owner = geodir_listing_belong_to_current_user(); |
|
| 460 | 460 | |
| 461 | - if ($is_current_user_owner) {
|
|
| 462 | - $post_id = $post->ID; |
|
| 461 | + if ($is_current_user_owner) {
|
|
| 462 | + $post_id = $post->ID; |
|
| 463 | 463 | |
| 464 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 465 | - $post_id = (int)$_REQUEST['pid']; |
|
| 466 | - } |
|
| 464 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 465 | + $post_id = (int)$_REQUEST['pid']; |
|
| 466 | + } |
|
| 467 | 467 | |
| 468 | - $postlink = get_permalink(geodir_add_listing_page_id()); |
|
| 469 | - $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
|
| 470 | - echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 471 | - } |
|
| 472 | - }// end of if, if its a preview or not |
|
| 473 | - /** |
|
| 474 | - * This is called after the edit post link html in the function geodir_edit_post_link() |
|
| 475 | - * |
|
| 476 | - * @since 1.0.0 |
|
| 477 | - */ |
|
| 478 | - do_action('geodir_after_edit_post_link');
|
|
| 479 | - $content_html = ob_get_clean(); |
|
| 480 | - if (trim($content_html) != '') |
|
| 481 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | - if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | - /** |
|
| 484 | - * Filter the geodir_edit_post_link() function content. |
|
| 485 | - * |
|
| 486 | - * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 487 | - */ |
|
| 488 | - echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
|
|
| 489 | - } |
|
| 468 | + $postlink = get_permalink(geodir_add_listing_page_id()); |
|
| 469 | + $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
|
| 470 | + echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 471 | + } |
|
| 472 | + }// end of if, if its a preview or not |
|
| 473 | + /** |
|
| 474 | + * This is called after the edit post link html in the function geodir_edit_post_link() |
|
| 475 | + * |
|
| 476 | + * @since 1.0.0 |
|
| 477 | + */ |
|
| 478 | + do_action('geodir_after_edit_post_link');
|
|
| 479 | + $content_html = ob_get_clean(); |
|
| 480 | + if (trim($content_html) != '') |
|
| 481 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | + if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | + /** |
|
| 484 | + * Filter the geodir_edit_post_link() function content. |
|
| 485 | + * |
|
| 486 | + * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 487 | + */ |
|
| 488 | + echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
|
|
| 489 | + } |
|
| 490 | 490 | } |
| 491 | 491 | |
| 492 | 492 | /** |
@@ -500,42 +500,42 @@ discard block |
||
| 500 | 500 | */ |
| 501 | 501 | function geodir_detail_page_google_analytics() |
| 502 | 502 | {
|
| 503 | - global $post,$preview; |
|
| 504 | - if($preview){return '';}
|
|
| 505 | - $package_info = array(); |
|
| 506 | - $package_info = geodir_post_package_info($package_info, $post); |
|
| 503 | + global $post,$preview; |
|
| 504 | + if($preview){return '';}
|
|
| 505 | + $package_info = array(); |
|
| 506 | + $package_info = geodir_post_package_info($package_info, $post); |
|
| 507 | 507 | |
| 508 | - $id = trim(get_option('geodir_ga_account_id'));
|
|
| 508 | + $id = trim(get_option('geodir_ga_account_id'));
|
|
| 509 | 509 | |
| 510 | - if (!$id) {
|
|
| 511 | - return; //if no Google Analytics ID then bail. |
|
| 512 | - } |
|
| 510 | + if (!$id) {
|
|
| 511 | + return; //if no Google Analytics ID then bail. |
|
| 512 | + } |
|
| 513 | 513 | |
| 514 | - ob_start(); // Start buffering; |
|
| 515 | - /** |
|
| 516 | - * This is called before the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 517 | - * |
|
| 518 | - * @since 1.0.0 |
|
| 519 | - */ |
|
| 520 | - do_action('geodir_before_google_analytics');
|
|
| 514 | + ob_start(); // Start buffering; |
|
| 515 | + /** |
|
| 516 | + * This is called before the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 517 | + * |
|
| 518 | + * @since 1.0.0 |
|
| 519 | + */ |
|
| 520 | + do_action('geodir_before_google_analytics');
|
|
| 521 | 521 | |
| 522 | - $refresh_time = get_option('geodir_ga_refresh_time', 5);
|
|
| 523 | - /** |
|
| 524 | - * Filter the time interval to check & refresh new users results. |
|
| 525 | - * |
|
| 526 | - * @since 1.5.9 |
|
| 527 | - * |
|
| 528 | - * @param int $refresh_time Time interval to check & refresh new users results. |
|
| 529 | - */ |
|
| 530 | - $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
|
|
| 531 | - $refresh_time = absint($refresh_time * 1000); |
|
| 522 | + $refresh_time = get_option('geodir_ga_refresh_time', 5);
|
|
| 523 | + /** |
|
| 524 | + * Filter the time interval to check & refresh new users results. |
|
| 525 | + * |
|
| 526 | + * @since 1.5.9 |
|
| 527 | + * |
|
| 528 | + * @param int $refresh_time Time interval to check & refresh new users results. |
|
| 529 | + */ |
|
| 530 | + $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
|
|
| 531 | + $refresh_time = absint($refresh_time * 1000); |
|
| 532 | 532 | |
| 533 | - $hide_refresh = get_option('geodir_ga_auto_refresh');
|
|
| 533 | + $hide_refresh = get_option('geodir_ga_auto_refresh');
|
|
| 534 | 534 | |
| 535 | - $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
|
| 536 | - if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 537 | - $page_url = urlencode($_SERVER['REQUEST_URI']); |
|
| 538 | - ?> |
|
| 535 | + $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
|
| 536 | + if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 537 | + $page_url = urlencode($_SERVER['REQUEST_URI']); |
|
| 538 | + ?> |
|
| 539 | 539 | <script type="text/javascript"> |
| 540 | 540 | var gd_gaTimeOut; |
| 541 | 541 | var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
|
@@ -787,15 +787,15 @@ discard block |
||
| 787 | 787 | var labels = results[1].rows.map(function(row) { return +row[0]; });
|
| 788 | 788 | |
| 789 | 789 | <?php |
| 790 | - // Here we list the shorthand days of the week so it can be used in translation. |
|
| 791 | - __("Mon",'geodirectory');
|
|
| 792 | - __("Tue",'geodirectory');
|
|
| 793 | - __("Wed",'geodirectory');
|
|
| 794 | - __("Thu",'geodirectory');
|
|
| 795 | - __("Fri",'geodirectory');
|
|
| 796 | - __("Sat",'geodirectory');
|
|
| 797 | - __("Sun",'geodirectory');
|
|
| 798 | - ?> |
|
| 790 | + // Here we list the shorthand days of the week so it can be used in translation. |
|
| 791 | + __("Mon",'geodirectory');
|
|
| 792 | + __("Tue",'geodirectory');
|
|
| 793 | + __("Wed",'geodirectory');
|
|
| 794 | + __("Thu",'geodirectory');
|
|
| 795 | + __("Fri",'geodirectory');
|
|
| 796 | + __("Sat",'geodirectory');
|
|
| 797 | + __("Sun",'geodirectory');
|
|
| 798 | + ?> |
|
| 799 | 799 | |
| 800 | 800 | labels = [ |
| 801 | 801 | "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
|
@@ -1044,24 +1044,24 @@ discard block |
||
| 1044 | 1044 | </span> |
| 1045 | 1045 | |
| 1046 | 1046 | <?php |
| 1047 | - } |
|
| 1048 | - /** |
|
| 1049 | - * This is called after the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 1050 | - * |
|
| 1051 | - * @since 1.0.0 |
|
| 1052 | - */ |
|
| 1053 | - do_action('geodir_after_google_analytics');
|
|
| 1054 | - $content_html = ob_get_clean(); |
|
| 1055 | - if (trim($content_html) != '') |
|
| 1056 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | - if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | - /** |
|
| 1059 | - * Filter the geodir_edit_post_link() function content. |
|
| 1060 | - * |
|
| 1061 | - * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 1062 | - */ |
|
| 1063 | - echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
|
|
| 1064 | - } |
|
| 1047 | + } |
|
| 1048 | + /** |
|
| 1049 | + * This is called after the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 1050 | + * |
|
| 1051 | + * @since 1.0.0 |
|
| 1052 | + */ |
|
| 1053 | + do_action('geodir_after_google_analytics');
|
|
| 1054 | + $content_html = ob_get_clean(); |
|
| 1055 | + if (trim($content_html) != '') |
|
| 1056 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | + if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | + /** |
|
| 1059 | + * Filter the geodir_edit_post_link() function content. |
|
| 1060 | + * |
|
| 1061 | + * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 1062 | + */ |
|
| 1063 | + echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
|
|
| 1064 | + } |
|
| 1065 | 1065 | } |
| 1066 | 1066 | |
| 1067 | 1067 | /** |
@@ -1077,90 +1077,90 @@ discard block |
||
| 1077 | 1077 | */ |
| 1078 | 1078 | function geodir_detail_page_review_rating() |
| 1079 | 1079 | {
|
| 1080 | - global $post, $preview, $post_images; |
|
| 1081 | - ob_start(); // Start buffering; |
|
| 1082 | - /** |
|
| 1083 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1084 | - * |
|
| 1085 | - * This is called outside the check for an actual rating and the check for preview page. |
|
| 1086 | - * |
|
| 1087 | - * @since 1.0.0 |
|
| 1088 | - */ |
|
| 1089 | - do_action('geodir_before_detail_page_review_rating');
|
|
| 1090 | - |
|
| 1091 | - $comment_count = geodir_get_review_count_total($post->ID); |
|
| 1092 | - $post_avgratings = geodir_get_post_rating($post->ID); |
|
| 1093 | - |
|
| 1094 | - if ($post_avgratings != 0 && !$preview) {
|
|
| 1095 | - /** |
|
| 1096 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1097 | - * |
|
| 1098 | - * This is called inside the check for an actual rating and the check for preview page. |
|
| 1099 | - * |
|
| 1100 | - * @since 1.0.0 |
|
| 1101 | - * @param float $post_avgratings Average rating for the surrent post. |
|
| 1102 | - * @param int $post->ID Current post ID. |
|
| 1103 | - */ |
|
| 1104 | - do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1105 | - |
|
| 1106 | - $html = '<p style=" float:left;">'; |
|
| 1107 | - $html .= geodir_get_rating_stars($post_avgratings, $post->ID); |
|
| 1108 | - $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">'; |
|
| 1109 | - $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings; |
|
| 1080 | + global $post, $preview, $post_images; |
|
| 1081 | + ob_start(); // Start buffering; |
|
| 1082 | + /** |
|
| 1083 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1084 | + * |
|
| 1085 | + * This is called outside the check for an actual rating and the check for preview page. |
|
| 1086 | + * |
|
| 1087 | + * @since 1.0.0 |
|
| 1088 | + */ |
|
| 1089 | + do_action('geodir_before_detail_page_review_rating');
|
|
| 1090 | + |
|
| 1091 | + $comment_count = geodir_get_review_count_total($post->ID); |
|
| 1092 | + $post_avgratings = geodir_get_post_rating($post->ID); |
|
| 1093 | + |
|
| 1094 | + if ($post_avgratings != 0 && !$preview) {
|
|
| 1095 | + /** |
|
| 1096 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1097 | + * |
|
| 1098 | + * This is called inside the check for an actual rating and the check for preview page. |
|
| 1099 | + * |
|
| 1100 | + * @since 1.0.0 |
|
| 1101 | + * @param float $post_avgratings Average rating for the surrent post. |
|
| 1102 | + * @param int $post->ID Current post ID. |
|
| 1103 | + */ |
|
| 1104 | + do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1105 | + |
|
| 1106 | + $html = '<p style=" float:left;">'; |
|
| 1107 | + $html .= geodir_get_rating_stars($post_avgratings, $post->ID); |
|
| 1108 | + $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">'; |
|
| 1109 | + $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings; |
|
| 1110 | 1110 | |
| 1111 | 1111 | $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
|
| 1112 | 1112 | |
| 1113 | 1113 | $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
|
| 1114 | 1114 | |
| 1115 | - $html .= '<span class="item">'; |
|
| 1116 | - $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1115 | + $html .= '<span class="item">'; |
|
| 1116 | + $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1117 | 1117 | |
| 1118 | - if ($post_images) {
|
|
| 1119 | - foreach ($post_images as $img) {
|
|
| 1120 | - $post_img = $img->src; |
|
| 1121 | - break; |
|
| 1122 | - } |
|
| 1123 | - } |
|
| 1124 | - |
|
| 1125 | - if (isset($post_img) && $post_img) {
|
|
| 1126 | - $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1127 | - } |
|
| 1128 | - |
|
| 1129 | - $html .= '</span>'; |
|
| 1130 | - |
|
| 1131 | - echo $html .= '</div>'; |
|
| 1132 | - /** |
|
| 1133 | - * This is called after the rating html in the function geodir_detail_page_review_rating(). |
|
| 1134 | - * |
|
| 1135 | - * This is called inside the check for an actual rating and the check for preview page. |
|
| 1136 | - * |
|
| 1137 | - * @since 1.0.0 |
|
| 1138 | - * @param float $post_avgratings Average rating for the surrent post. |
|
| 1139 | - * @param int $post->ID Current post ID. |
|
| 1140 | - */ |
|
| 1141 | - do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1142 | - } |
|
| 1143 | - /** |
|
| 1144 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1145 | - * |
|
| 1146 | - * This is called outside the check for an actual rating and the check for preview page. |
|
| 1147 | - * |
|
| 1148 | - * @since 1.0.0 |
|
| 1149 | - */ |
|
| 1150 | - do_action('geodir_after_detail_page_review_rating');
|
|
| 1151 | - $content_html = ob_get_clean(); |
|
| 1152 | - if (trim($content_html) != '') {
|
|
| 1153 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1154 | - } |
|
| 1155 | - if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1156 | - /** |
|
| 1157 | - * Filter the geodir_detail_page_review_rating() function content. |
|
| 1158 | - * |
|
| 1159 | - * @since 1.0.0 |
|
| 1160 | - * @param string $content_html The output html of the geodir_detail_page_review_rating() function. |
|
| 1161 | - */ |
|
| 1162 | - echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
|
|
| 1163 | - } |
|
| 1118 | + if ($post_images) {
|
|
| 1119 | + foreach ($post_images as $img) {
|
|
| 1120 | + $post_img = $img->src; |
|
| 1121 | + break; |
|
| 1122 | + } |
|
| 1123 | + } |
|
| 1124 | + |
|
| 1125 | + if (isset($post_img) && $post_img) {
|
|
| 1126 | + $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1127 | + } |
|
| 1128 | + |
|
| 1129 | + $html .= '</span>'; |
|
| 1130 | + |
|
| 1131 | + echo $html .= '</div>'; |
|
| 1132 | + /** |
|
| 1133 | + * This is called after the rating html in the function geodir_detail_page_review_rating(). |
|
| 1134 | + * |
|
| 1135 | + * This is called inside the check for an actual rating and the check for preview page. |
|
| 1136 | + * |
|
| 1137 | + * @since 1.0.0 |
|
| 1138 | + * @param float $post_avgratings Average rating for the surrent post. |
|
| 1139 | + * @param int $post->ID Current post ID. |
|
| 1140 | + */ |
|
| 1141 | + do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1142 | + } |
|
| 1143 | + /** |
|
| 1144 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1145 | + * |
|
| 1146 | + * This is called outside the check for an actual rating and the check for preview page. |
|
| 1147 | + * |
|
| 1148 | + * @since 1.0.0 |
|
| 1149 | + */ |
|
| 1150 | + do_action('geodir_after_detail_page_review_rating');
|
|
| 1151 | + $content_html = ob_get_clean(); |
|
| 1152 | + if (trim($content_html) != '') {
|
|
| 1153 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1154 | + } |
|
| 1155 | + if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1156 | + /** |
|
| 1157 | + * Filter the geodir_detail_page_review_rating() function content. |
|
| 1158 | + * |
|
| 1159 | + * @since 1.0.0 |
|
| 1160 | + * @param string $content_html The output html of the geodir_detail_page_review_rating() function. |
|
| 1161 | + */ |
|
| 1162 | + echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
|
|
| 1163 | + } |
|
| 1164 | 1164 | } |
| 1165 | 1165 | |
| 1166 | 1166 | /** |
@@ -1172,35 +1172,35 @@ discard block |
||
| 1172 | 1172 | */ |
| 1173 | 1173 | function geodir_detail_page_more_info() |
| 1174 | 1174 | {
|
| 1175 | - ob_start(); // Start buffering; |
|
| 1176 | - /** |
|
| 1177 | - * This is called before the info section html. |
|
| 1178 | - * |
|
| 1179 | - * @since 1.0.0 |
|
| 1180 | - */ |
|
| 1181 | - do_action('geodir_before_detail_page_more_info');
|
|
| 1182 | - if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
|
|
| 1183 | - echo $geodir_post_detail_fields; |
|
| 1184 | - } |
|
| 1185 | - /** |
|
| 1186 | - * This is called after the info section html. |
|
| 1187 | - * |
|
| 1188 | - * @since 1.0.0 |
|
| 1189 | - */ |
|
| 1190 | - do_action('geodir_after_detail_page_more_info');
|
|
| 1191 | - |
|
| 1192 | - $content_html = ob_get_clean(); |
|
| 1193 | - if (trim($content_html) != '') |
|
| 1194 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1195 | - if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1196 | - /** |
|
| 1197 | - * Filter the output html for function geodir_detail_page_more_info(). |
|
| 1198 | - * |
|
| 1199 | - * @since 1.0.0 |
|
| 1200 | - * @param string $content_html The output html of the geodir_detail_page_more_info() function. |
|
| 1201 | - */ |
|
| 1202 | - echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
|
|
| 1203 | - } |
|
| 1175 | + ob_start(); // Start buffering; |
|
| 1176 | + /** |
|
| 1177 | + * This is called before the info section html. |
|
| 1178 | + * |
|
| 1179 | + * @since 1.0.0 |
|
| 1180 | + */ |
|
| 1181 | + do_action('geodir_before_detail_page_more_info');
|
|
| 1182 | + if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
|
|
| 1183 | + echo $geodir_post_detail_fields; |
|
| 1184 | + } |
|
| 1185 | + /** |
|
| 1186 | + * This is called after the info section html. |
|
| 1187 | + * |
|
| 1188 | + * @since 1.0.0 |
|
| 1189 | + */ |
|
| 1190 | + do_action('geodir_after_detail_page_more_info');
|
|
| 1191 | + |
|
| 1192 | + $content_html = ob_get_clean(); |
|
| 1193 | + if (trim($content_html) != '') |
|
| 1194 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1195 | + if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1196 | + /** |
|
| 1197 | + * Filter the output html for function geodir_detail_page_more_info(). |
|
| 1198 | + * |
|
| 1199 | + * @since 1.0.0 |
|
| 1200 | + * @param string $content_html The output html of the geodir_detail_page_more_info() function. |
|
| 1201 | + */ |
|
| 1202 | + echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
|
|
| 1203 | + } |
|
| 1204 | 1204 | } |
| 1205 | 1205 | |
| 1206 | 1206 | |
@@ -1214,15 +1214,15 @@ discard block |
||
| 1214 | 1214 | */ |
| 1215 | 1215 | function geodir_localize_all_js_msg() |
| 1216 | 1216 | {// check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls
|
| 1217 | - if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1218 | - $ajax_url = admin_url('admin-ajax.php');
|
|
| 1219 | - } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1220 | - $ajax_url = admin_url('admin-ajax.php');
|
|
| 1221 | - } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1222 | - $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
|
|
| 1223 | - } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1224 | - $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
|
|
| 1225 | - } |
|
| 1217 | + if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1218 | + $ajax_url = admin_url('admin-ajax.php');
|
|
| 1219 | + } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1220 | + $ajax_url = admin_url('admin-ajax.php');
|
|
| 1221 | + } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1222 | + $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
|
|
| 1223 | + } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1224 | + $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
|
|
| 1225 | + } |
|
| 1226 | 1226 | |
| 1227 | 1227 | /** |
| 1228 | 1228 | * Filter the allowed image type extensions for post images. |
@@ -1232,60 +1232,60 @@ discard block |
||
| 1232 | 1232 | */ |
| 1233 | 1233 | $allowed_img_types = apply_filters('geodir_allowed_post_image_exts', array('jpg', 'jpeg', 'jpe', 'gif', 'png'));
|
| 1234 | 1234 | |
| 1235 | - $default_marker_icon = get_option('geodir_default_marker_icon');
|
|
| 1236 | - $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
|
|
| 1237 | - $default_marker_width = $default_marker_size['w']; |
|
| 1238 | - $default_marker_height = $default_marker_size['h']; |
|
| 1235 | + $default_marker_icon = get_option('geodir_default_marker_icon');
|
|
| 1236 | + $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
|
|
| 1237 | + $default_marker_width = $default_marker_size['w']; |
|
| 1238 | + $default_marker_height = $default_marker_size['h']; |
|
| 1239 | 1239 | |
| 1240 | - $arr_alert_msg = array( |
|
| 1241 | - 'geodir_plugin_url' => geodir_plugin_url(), |
|
| 1242 | - 'geodir_admin_ajax_url' => $ajax_url, |
|
| 1243 | - 'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
|
|
| 1244 | - 'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
|
|
| 1245 | - 'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
|
|
| 1246 | - 'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
|
|
| 1247 | - //start not show alert msg |
|
| 1248 | - 'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
|
|
| 1249 | - 'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
|
|
| 1250 | - 'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
|
|
| 1251 | - 'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
|
|
| 1252 | - 'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
|
|
| 1253 | - // end not show alert msg |
|
| 1254 | - 'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
|
|
| 1255 | - 'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
|
|
| 1256 | - //start not show alert msg |
|
| 1257 | - 'rating_error_msg' => __('Error : please retry', 'geodirectory'),
|
|
| 1258 | - 'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
|
|
| 1259 | - 'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
|
|
| 1260 | - 'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
|
|
| 1261 | - 'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
|
|
| 1262 | - 'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
|
|
| 1263 | - 'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
|
|
| 1264 | - 'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
|
|
| 1265 | - 'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
|
|
| 1266 | - 'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
|
|
| 1267 | - 'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
|
|
| 1268 | - 'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
|
|
| 1269 | - 'geodir_default_marker_icon' => $default_marker_icon, |
|
| 1270 | - 'geodir_default_marker_w' => $default_marker_width, |
|
| 1271 | - 'geodir_default_marker_h' => $default_marker_height, |
|
| 1272 | - 'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG, |
|
| 1273 | - 'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG, |
|
| 1274 | - 'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
|
|
| 1275 | - 'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
|
|
| 1276 | - 'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
|
|
| 1277 | - 'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
|
|
| 1278 | - 'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
|
|
| 1279 | - 'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
|
|
| 1280 | - /* on/off dragging for phone devices */ |
|
| 1281 | - 'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
|
|
| 1282 | - 'geodir_is_mobile' => wp_is_mobile() ? true : false, |
|
| 1283 | - 'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
|
|
| 1284 | - 'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
|
|
| 1285 | - 'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
|
|
| 1286 | - 'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
|
|
| 1287 | - 'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
|
|
| 1288 | - 'geodir_action_remove' => __('Remove', 'geodirectory'),
|
|
| 1240 | + $arr_alert_msg = array( |
|
| 1241 | + 'geodir_plugin_url' => geodir_plugin_url(), |
|
| 1242 | + 'geodir_admin_ajax_url' => $ajax_url, |
|
| 1243 | + 'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
|
|
| 1244 | + 'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
|
|
| 1245 | + 'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
|
|
| 1246 | + 'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
|
|
| 1247 | + //start not show alert msg |
|
| 1248 | + 'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
|
|
| 1249 | + 'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
|
|
| 1250 | + 'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
|
|
| 1251 | + 'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
|
|
| 1252 | + 'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
|
|
| 1253 | + // end not show alert msg |
|
| 1254 | + 'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
|
|
| 1255 | + 'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
|
|
| 1256 | + //start not show alert msg |
|
| 1257 | + 'rating_error_msg' => __('Error : please retry', 'geodirectory'),
|
|
| 1258 | + 'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
|
|
| 1259 | + 'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
|
|
| 1260 | + 'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
|
|
| 1261 | + 'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
|
|
| 1262 | + 'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
|
|
| 1263 | + 'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
|
|
| 1264 | + 'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
|
|
| 1265 | + 'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
|
|
| 1266 | + 'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
|
|
| 1267 | + 'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
|
|
| 1268 | + 'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
|
|
| 1269 | + 'geodir_default_marker_icon' => $default_marker_icon, |
|
| 1270 | + 'geodir_default_marker_w' => $default_marker_width, |
|
| 1271 | + 'geodir_default_marker_h' => $default_marker_height, |
|
| 1272 | + 'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG, |
|
| 1273 | + 'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG, |
|
| 1274 | + 'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
|
|
| 1275 | + 'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
|
|
| 1276 | + 'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
|
|
| 1277 | + 'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
|
|
| 1278 | + 'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
|
|
| 1279 | + 'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
|
|
| 1280 | + /* on/off dragging for phone devices */ |
|
| 1281 | + 'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
|
|
| 1282 | + 'geodir_is_mobile' => wp_is_mobile() ? true : false, |
|
| 1283 | + 'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
|
|
| 1284 | + 'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
|
|
| 1285 | + 'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
|
|
| 1286 | + 'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
|
|
| 1287 | + 'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
|
|
| 1288 | + 'geodir_action_remove' => __('Remove', 'geodirectory'),
|
|
| 1289 | 1289 | 'geodir_txt_all_files' => __('Allowed files', 'geodirectory'),
|
| 1290 | 1290 | 'geodir_err_file_type' => __('File type error. Allowed file types: %s', 'geodirectory'),
|
| 1291 | 1291 | 'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
|
@@ -1293,35 +1293,35 @@ discard block |
||
| 1293 | 1293 | 'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
|
| 1294 | 1294 | 'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
| 1295 | 1295 | 'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
|
| 1296 | - 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
|
| 1297 | - 'geodir_map_name' => geodir_map_name(), |
|
| 1298 | - 'osmStart' => __('Start', 'geodirectory'),
|
|
| 1299 | - 'osmVia' => __('Via {viaNumber}', 'geodirectory'),
|
|
| 1300 | - 'osmEnd' => __('Enter Your Location', 'geodirectory'),
|
|
| 1301 | - 'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
|
|
| 1302 | - |
|
| 1303 | - ); |
|
| 1304 | - |
|
| 1305 | - /** |
|
| 1306 | - * Filters the translated JS strings from function geodir_localize_all_js_msg(). |
|
| 1307 | - * |
|
| 1308 | - * With this filter you can add, remove or change translated JS strings. |
|
| 1309 | - * You should add your own translations to this if you are building an addon rather than adding another script block. |
|
| 1310 | - * |
|
| 1311 | - * @since 1.0.0 |
|
| 1312 | - */ |
|
| 1313 | - $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
|
|
| 1314 | - |
|
| 1315 | - foreach ($arr_alert_msg as $key => $value) {
|
|
| 1316 | - if (!is_scalar($value)) |
|
| 1317 | - continue; |
|
| 1318 | - $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1319 | - } |
|
| 1296 | + 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
|
| 1297 | + 'geodir_map_name' => geodir_map_name(), |
|
| 1298 | + 'osmStart' => __('Start', 'geodirectory'),
|
|
| 1299 | + 'osmVia' => __('Via {viaNumber}', 'geodirectory'),
|
|
| 1300 | + 'osmEnd' => __('Enter Your Location', 'geodirectory'),
|
|
| 1301 | + 'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
|
|
| 1302 | + |
|
| 1303 | + ); |
|
| 1304 | + |
|
| 1305 | + /** |
|
| 1306 | + * Filters the translated JS strings from function geodir_localize_all_js_msg(). |
|
| 1307 | + * |
|
| 1308 | + * With this filter you can add, remove or change translated JS strings. |
|
| 1309 | + * You should add your own translations to this if you are building an addon rather than adding another script block. |
|
| 1310 | + * |
|
| 1311 | + * @since 1.0.0 |
|
| 1312 | + */ |
|
| 1313 | + $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
|
|
| 1320 | 1314 | |
| 1321 | - $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1322 | - echo '<script>'; |
|
| 1323 | - echo $script; |
|
| 1324 | - echo '</script>'; |
|
| 1315 | + foreach ($arr_alert_msg as $key => $value) {
|
|
| 1316 | + if (!is_scalar($value)) |
|
| 1317 | + continue; |
|
| 1318 | + $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1319 | + } |
|
| 1320 | + |
|
| 1321 | + $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1322 | + echo '<script>'; |
|
| 1323 | + echo $script; |
|
| 1324 | + echo '</script>'; |
|
| 1325 | 1325 | } |
| 1326 | 1326 | |
| 1327 | 1327 | add_action('admin_bar_menu', 'geodir_admin_bar_site_menu', 31);
|
@@ -1337,11 +1337,11 @@ discard block |
||
| 1337 | 1337 | */ |
| 1338 | 1338 | function geodir_admin_bar_site_menu($wp_admin_bar) |
| 1339 | 1339 | {
|
| 1340 | - if (get_option("geodir_installed")) {
|
|
| 1341 | - if (current_user_can('manage_options')) {
|
|
| 1342 | - $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
|
|
| 1343 | - } |
|
| 1344 | - } |
|
| 1340 | + if (get_option("geodir_installed")) {
|
|
| 1341 | + if (current_user_can('manage_options')) {
|
|
| 1342 | + $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
|
|
| 1343 | + } |
|
| 1344 | + } |
|
| 1345 | 1345 | } |
| 1346 | 1346 | |
| 1347 | 1347 | add_action('geodir_before_listing', 'geodir_display_sort_options'); /*function in custom_functions.php*/
|
@@ -1367,25 +1367,25 @@ discard block |
||
| 1367 | 1367 | */ |
| 1368 | 1368 | function geodir_store_sidebars() |
| 1369 | 1369 | {
|
| 1370 | - global $geodir_sidebars; |
|
| 1371 | - global $sidebars_widgets; |
|
| 1372 | - |
|
| 1373 | - if (!is_array($sidebars_widgets)) |
|
| 1374 | - $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1375 | - $geodir_old_sidebars = array(); |
|
| 1376 | - |
|
| 1377 | - if (is_array($geodir_sidebars)) {
|
|
| 1378 | - foreach ($geodir_sidebars as $val) {
|
|
| 1379 | - if (is_array($sidebars_widgets)) {
|
|
| 1380 | - if (array_key_exists($val, $sidebars_widgets)) |
|
| 1381 | - $geodir_old_sidebars[$val] = $sidebars_widgets[$val]; |
|
| 1382 | - else |
|
| 1383 | - $geodir_old_sidebars[$val] = array(); |
|
| 1384 | - } |
|
| 1385 | - } |
|
| 1386 | - } |
|
| 1387 | - update_option('geodir_sidebars', $geodir_old_sidebars);
|
|
| 1388 | - geodir_option_version_backup('geodir_sidebars');
|
|
| 1370 | + global $geodir_sidebars; |
|
| 1371 | + global $sidebars_widgets; |
|
| 1372 | + |
|
| 1373 | + if (!is_array($sidebars_widgets)) |
|
| 1374 | + $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1375 | + $geodir_old_sidebars = array(); |
|
| 1376 | + |
|
| 1377 | + if (is_array($geodir_sidebars)) {
|
|
| 1378 | + foreach ($geodir_sidebars as $val) {
|
|
| 1379 | + if (is_array($sidebars_widgets)) {
|
|
| 1380 | + if (array_key_exists($val, $sidebars_widgets)) |
|
| 1381 | + $geodir_old_sidebars[$val] = $sidebars_widgets[$val]; |
|
| 1382 | + else |
|
| 1383 | + $geodir_old_sidebars[$val] = array(); |
|
| 1384 | + } |
|
| 1385 | + } |
|
| 1386 | + } |
|
| 1387 | + update_option('geodir_sidebars', $geodir_old_sidebars);
|
|
| 1388 | + geodir_option_version_backup('geodir_sidebars');
|
|
| 1389 | 1389 | |
| 1390 | 1390 | } |
| 1391 | 1391 | |
@@ -1399,28 +1399,28 @@ discard block |
||
| 1399 | 1399 | */ |
| 1400 | 1400 | function geodir_restore_sidebars() |
| 1401 | 1401 | {
|
| 1402 | - global $sidebars_widgets; |
|
| 1403 | - |
|
| 1404 | - if (!is_array($sidebars_widgets)) |
|
| 1405 | - $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1406 | - |
|
| 1407 | - if (is_array($sidebars_widgets)) {
|
|
| 1408 | - $geodir_old_sidebars = get_option('geodir_sidebars');
|
|
| 1409 | - if (is_array($geodir_old_sidebars)) {
|
|
| 1410 | - foreach ($geodir_old_sidebars as $key => $val) {
|
|
| 1411 | - if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1412 | - {
|
|
| 1413 | - $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
|
| 1414 | - } |
|
| 1402 | + global $sidebars_widgets; |
|
| 1415 | 1403 | |
| 1404 | + if (!is_array($sidebars_widgets)) |
|
| 1405 | + $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1416 | 1406 | |
| 1417 | - } |
|
| 1418 | - } |
|
| 1407 | + if (is_array($sidebars_widgets)) {
|
|
| 1408 | + $geodir_old_sidebars = get_option('geodir_sidebars');
|
|
| 1409 | + if (is_array($geodir_old_sidebars)) {
|
|
| 1410 | + foreach ($geodir_old_sidebars as $key => $val) {
|
|
| 1411 | + if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1412 | + {
|
|
| 1413 | + $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
|
| 1414 | + } |
|
| 1419 | 1415 | |
| 1420 | - } |
|
| 1421 | 1416 | |
| 1422 | - update_option('sidebars_widgets', $sidebars_widgets);
|
|
| 1423 | - update_option('geodir_sidebars', '');
|
|
| 1417 | + } |
|
| 1418 | + } |
|
| 1419 | + |
|
| 1420 | + } |
|
| 1421 | + |
|
| 1422 | + update_option('sidebars_widgets', $sidebars_widgets);
|
|
| 1423 | + update_option('geodir_sidebars', '');
|
|
| 1424 | 1424 | } |
| 1425 | 1425 | |
| 1426 | 1426 | add_action('geodir_after_listing_post_gridview', 'geodir_after_listing_post_gridview');
|
@@ -1433,9 +1433,9 @@ discard block |
||
| 1433 | 1433 | */ |
| 1434 | 1434 | function geodir_after_listing_post_gridview() |
| 1435 | 1435 | {
|
| 1436 | - global $gridview_columns; |
|
| 1436 | + global $gridview_columns; |
|
| 1437 | 1437 | |
| 1438 | - $gridview_columns = ''; |
|
| 1438 | + $gridview_columns = ''; |
|
| 1439 | 1439 | |
| 1440 | 1440 | } |
| 1441 | 1441 | |
@@ -1463,11 +1463,11 @@ discard block |
||
| 1463 | 1463 | */ |
| 1464 | 1464 | function so_handle_038($url, $original_url, $_context) |
| 1465 | 1465 | {
|
| 1466 | - if (strstr($url, "maps.google.com/maps/api/js") !== false) {
|
|
| 1467 | - $url = str_replace("&", "&", $url); // or $url = $original_url
|
|
| 1468 | - } |
|
| 1466 | + if (strstr($url, "maps.google.com/maps/api/js") !== false) {
|
|
| 1467 | + $url = str_replace("&", "&", $url); // or $url = $original_url
|
|
| 1468 | + } |
|
| 1469 | 1469 | |
| 1470 | - return $url; |
|
| 1470 | + return $url; |
|
| 1471 | 1471 | } |
| 1472 | 1472 | |
| 1473 | 1473 | |
@@ -1483,34 +1483,34 @@ discard block |
||
| 1483 | 1483 | function geodir_after_main_form_fields() {
|
| 1484 | 1484 | global $gd_session; |
| 1485 | 1485 | |
| 1486 | - if (get_option('geodir_accept_term_condition')) {
|
|
| 1487 | - global $post; |
|
| 1488 | - $term_condition = ''; |
|
| 1489 | - if (isset($_REQUEST['backandedit'])) {
|
|
| 1490 | - $post = (object)$gd_session->get('listing');
|
|
| 1491 | - $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
|
| 1492 | - } |
|
| 1493 | - |
|
| 1494 | - ?> |
|
| 1486 | + if (get_option('geodir_accept_term_condition')) {
|
|
| 1487 | + global $post; |
|
| 1488 | + $term_condition = ''; |
|
| 1489 | + if (isset($_REQUEST['backandedit'])) {
|
|
| 1490 | + $post = (object)$gd_session->get('listing');
|
|
| 1491 | + $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
|
| 1492 | + } |
|
| 1493 | + |
|
| 1494 | + ?> |
|
| 1495 | 1495 | <div id="geodir_accept_term_condition_row" class="required_field geodir_form_row clearfix"> |
| 1496 | 1496 | <label> </label> |
| 1497 | 1497 | |
| 1498 | 1498 | <div class="geodir_taxonomy_field" style="float:left; width:70%;"> |
| 1499 | 1499 | <span style="display:block"> |
| 1500 | 1500 | <input class="main_list_selecter" type="checkbox" <?php if ($term_condition == '1') {
|
| 1501 | - echo 'checked="checked"'; |
|
| 1502 | - } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
|
| 1501 | + echo 'checked="checked"'; |
|
| 1502 | + } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
|
| 1503 | 1503 | class="geodir_textfield" value="1" |
| 1504 | 1504 | style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
| 1505 | 1505 | </span> |
| 1506 | 1506 | </div> |
| 1507 | 1507 | <span class="geodir_message_error"><?php if (isset($required_msg)) {
|
| 1508 | - _e($required_msg, 'geodirectory'); |
|
| 1509 | - } ?></span> |
|
| 1508 | + _e($required_msg, 'geodirectory'); |
|
| 1509 | + } ?></span> |
|
| 1510 | 1510 | </div> |
| 1511 | 1511 | <?php |
| 1512 | 1512 | |
| 1513 | - } |
|
| 1513 | + } |
|
| 1514 | 1514 | } |
| 1515 | 1515 | |
| 1516 | 1516 | |
@@ -1535,42 +1535,42 @@ discard block |
||
| 1535 | 1535 | */ |
| 1536 | 1536 | function geodir_detail_page_tab_is_display($is_display, $tab) |
| 1537 | 1537 | {
|
| 1538 | - global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1538 | + global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1539 | 1539 | |
| 1540 | - if ($tab == 'post_profile') {
|
|
| 1541 | - /** This action is documented in geodirectory_template_actions.php */ |
|
| 1542 | - $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
|
| 1540 | + if ($tab == 'post_profile') {
|
|
| 1541 | + /** This action is documented in geodirectory_template_actions.php */ |
|
| 1542 | + $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
|
| 1543 | 1543 | |
| 1544 | - if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1545 | - $is_display = false; |
|
| 1546 | - } |
|
| 1547 | - } |
|
| 1544 | + if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1545 | + $is_display = false; |
|
| 1546 | + } |
|
| 1547 | + } |
|
| 1548 | 1548 | |
| 1549 | - if ($tab == 'post_info') |
|
| 1550 | - $is_display = (!empty($geodir_post_detail_fields)) ? true : false; |
|
| 1549 | + if ($tab == 'post_info') |
|
| 1550 | + $is_display = (!empty($geodir_post_detail_fields)) ? true : false; |
|
| 1551 | 1551 | |
| 1552 | - if ($tab == 'post_images') |
|
| 1553 | - $is_display = (!empty($post_images)) ? true : false; |
|
| 1552 | + if ($tab == 'post_images') |
|
| 1553 | + $is_display = (!empty($post_images)) ? true : false; |
|
| 1554 | 1554 | |
| 1555 | - if ($tab == 'post_video') |
|
| 1556 | - $is_display = (!empty($video)) ? true : false; |
|
| 1555 | + if ($tab == 'post_video') |
|
| 1556 | + $is_display = (!empty($video)) ? true : false; |
|
| 1557 | 1557 | |
| 1558 | - if ($tab == 'special_offers') |
|
| 1559 | - $is_display = (!empty($special_offers)) ? true : false; |
|
| 1558 | + if ($tab == 'special_offers') |
|
| 1559 | + $is_display = (!empty($special_offers)) ? true : false; |
|
| 1560 | 1560 | |
| 1561 | - if ($tab == 'reviews') |
|
| 1562 | - $is_display = (geodir_is_page('detail')) ? true : false;
|
|
| 1561 | + if ($tab == 'reviews') |
|
| 1562 | + $is_display = (geodir_is_page('detail')) ? true : false;
|
|
| 1563 | 1563 | |
| 1564 | - if ($tab == 'related_listing') {
|
|
| 1565 | - $message = __('No listings found which match your selection.', 'geodirectory');
|
|
| 1564 | + if ($tab == 'related_listing') {
|
|
| 1565 | + $message = __('No listings found which match your selection.', 'geodirectory');
|
|
| 1566 | 1566 | |
| 1567 | - /** This action is documented in geodirectory-functions/template_functions.php */ |
|
| 1568 | - $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
|
|
| 1567 | + /** This action is documented in geodirectory-functions/template_functions.php */ |
|
| 1568 | + $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
|
|
| 1569 | 1569 | |
| 1570 | - $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
|
|
| 1571 | - } |
|
| 1570 | + $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
|
|
| 1571 | + } |
|
| 1572 | 1572 | |
| 1573 | - return $is_display; |
|
| 1573 | + return $is_display; |
|
| 1574 | 1574 | } |
| 1575 | 1575 | |
| 1576 | 1576 | |
@@ -1586,69 +1586,69 @@ discard block |
||
| 1586 | 1586 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 1587 | 1587 | */ |
| 1588 | 1588 | function geodir_changes_in_custom_fields_table() {
|
| 1589 | - global $wpdb, $plugin_prefix; |
|
| 1589 | + global $wpdb, $plugin_prefix; |
|
| 1590 | 1590 | |
| 1591 | 1591 | // Remove unused virtual page |
| 1592 | 1592 | $listings_page_id = (int)get_option('geodir_listing_page');
|
| 1593 | 1593 | if ($listings_page_id) {
|
| 1594 | 1594 | $wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
| 1595 | - delete_option('geodir_listing_page');
|
|
| 1595 | + delete_option('geodir_listing_page');
|
|
| 1596 | 1596 | } |
| 1597 | 1597 | |
| 1598 | - if (!get_option('geodir_changes_in_custom_fields_table')) {
|
|
| 1599 | - $wpdb->query( |
|
| 1600 | - $wpdb->prepare( |
|
| 1601 | - "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1602 | - array('1', '1', 'admin')
|
|
| 1603 | - ) |
|
| 1604 | - ); |
|
| 1598 | + if (!get_option('geodir_changes_in_custom_fields_table')) {
|
|
| 1599 | + $wpdb->query( |
|
| 1600 | + $wpdb->prepare( |
|
| 1601 | + "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1602 | + array('1', '1', 'admin')
|
|
| 1603 | + ) |
|
| 1604 | + ); |
|
| 1605 | 1605 | |
| 1606 | 1606 | |
| 1607 | - /* --- terms meta value set --- */ |
|
| 1607 | + /* --- terms meta value set --- */ |
|
| 1608 | 1608 | |
| 1609 | - update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1609 | + update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1610 | 1610 | |
| 1611 | - $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1611 | + $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1612 | 1612 | |
| 1613 | - if (!empty($options_data)) {
|
|
| 1613 | + if (!empty($options_data)) {
|
|
| 1614 | 1614 | |
| 1615 | - foreach ($options_data as $optobj) {
|
|
| 1615 | + foreach ($options_data as $optobj) {
|
|
| 1616 | 1616 | |
| 1617 | - $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
|
| 1617 | + $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
|
| 1618 | 1618 | |
| 1619 | - $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1619 | + $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1620 | 1620 | |
| 1621 | - if (!empty($taxonomies_data)) {
|
|
| 1621 | + if (!empty($taxonomies_data)) {
|
|
| 1622 | 1622 | |
| 1623 | - foreach ($taxonomies_data as $taxobj) {
|
|
| 1623 | + foreach ($taxonomies_data as $taxobj) {
|
|
| 1624 | 1624 | |
| 1625 | - $taxObject = get_taxonomy($taxobj->taxonomy); |
|
| 1626 | - $post_type = $taxObject->object_type[0]; |
|
| 1625 | + $taxObject = get_taxonomy($taxobj->taxonomy); |
|
| 1626 | + $post_type = $taxObject->object_type[0]; |
|
| 1627 | 1627 | |
| 1628 | - $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1628 | + $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1629 | 1629 | |
| 1630 | - $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1630 | + $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1631 | 1631 | |
| 1632 | - if ($duplicate_data) {
|
|
| 1632 | + if ($duplicate_data) {
|
|
| 1633 | 1633 | |
| 1634 | - $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1634 | + $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1635 | 1635 | |
| 1636 | - } else {
|
|
| 1636 | + } else {
|
|
| 1637 | 1637 | |
| 1638 | - $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1638 | + $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1639 | 1639 | |
| 1640 | - } |
|
| 1640 | + } |
|
| 1641 | 1641 | |
| 1642 | - } |
|
| 1642 | + } |
|
| 1643 | 1643 | |
| 1644 | - } |
|
| 1644 | + } |
|
| 1645 | 1645 | |
| 1646 | - } |
|
| 1647 | - } |
|
| 1646 | + } |
|
| 1647 | + } |
|
| 1648 | 1648 | |
| 1649 | - update_option('geodir_changes_in_custom_fields_table', '1');
|
|
| 1649 | + update_option('geodir_changes_in_custom_fields_table', '1');
|
|
| 1650 | 1650 | |
| 1651 | - } |
|
| 1651 | + } |
|
| 1652 | 1652 | |
| 1653 | 1653 | } |
| 1654 | 1654 | |
@@ -1667,24 +1667,24 @@ discard block |
||
| 1667 | 1667 | function geodir_location_slug_check($slug) |
| 1668 | 1668 | {
|
| 1669 | 1669 | |
| 1670 | - global $wpdb, $table_prefix; |
|
| 1670 | + global $wpdb, $table_prefix; |
|
| 1671 | 1671 | |
| 1672 | - $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1672 | + $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1673 | 1673 | |
| 1674 | - if ($slug_exists) {
|
|
| 1674 | + if ($slug_exists) {
|
|
| 1675 | 1675 | |
| 1676 | - $suffix = 1; |
|
| 1677 | - do {
|
|
| 1678 | - $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1679 | - $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1680 | - $suffix++; |
|
| 1681 | - } while ($location_slug_check && $suffix < 100); |
|
| 1676 | + $suffix = 1; |
|
| 1677 | + do {
|
|
| 1678 | + $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1679 | + $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1680 | + $suffix++; |
|
| 1681 | + } while ($location_slug_check && $suffix < 100); |
|
| 1682 | 1682 | |
| 1683 | - $slug = $alt_location_name; |
|
| 1683 | + $slug = $alt_location_name; |
|
| 1684 | 1684 | |
| 1685 | - } |
|
| 1685 | + } |
|
| 1686 | 1686 | |
| 1687 | - return $slug; |
|
| 1687 | + return $slug; |
|
| 1688 | 1688 | |
| 1689 | 1689 | } |
| 1690 | 1690 | |
@@ -1709,42 +1709,42 @@ discard block |
||
| 1709 | 1709 | function geodir_update_term_slug($term_id, $tt_id, $taxonomy) |
| 1710 | 1710 | {
|
| 1711 | 1711 | |
| 1712 | - global $wpdb, $plugin_prefix, $table_prefix; |
|
| 1712 | + global $wpdb, $plugin_prefix, $table_prefix; |
|
| 1713 | 1713 | |
| 1714 | - $tern_data = get_term_by('id', $term_id, $taxonomy);
|
|
| 1714 | + $tern_data = get_term_by('id', $term_id, $taxonomy);
|
|
| 1715 | 1715 | |
| 1716 | - $slug = $tern_data->slug; |
|
| 1716 | + $slug = $tern_data->slug; |
|
| 1717 | 1717 | |
| 1718 | - /** |
|
| 1719 | - * Filter if a term slug exists. |
|
| 1720 | - * |
|
| 1721 | - * @since 1.0.0 |
|
| 1722 | - * @package GeoDirectory |
|
| 1723 | - * @param bool $bool Default: false. |
|
| 1724 | - * @param string $slug The term slug. |
|
| 1725 | - * @param int $term_id The term ID. |
|
| 1726 | - */ |
|
| 1727 | - $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
|
|
| 1718 | + /** |
|
| 1719 | + * Filter if a term slug exists. |
|
| 1720 | + * |
|
| 1721 | + * @since 1.0.0 |
|
| 1722 | + * @package GeoDirectory |
|
| 1723 | + * @param bool $bool Default: false. |
|
| 1724 | + * @param string $slug The term slug. |
|
| 1725 | + * @param int $term_id The term ID. |
|
| 1726 | + */ |
|
| 1727 | + $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
|
|
| 1728 | 1728 | |
| 1729 | - if ($slug_exists) {
|
|
| 1729 | + if ($slug_exists) {
|
|
| 1730 | 1730 | |
| 1731 | - $suffix = 1; |
|
| 1732 | - do {
|
|
| 1733 | - $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1731 | + $suffix = 1; |
|
| 1732 | + do {
|
|
| 1733 | + $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1734 | 1734 | |
| 1735 | - /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 1736 | - $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
|
| 1735 | + /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 1736 | + $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
|
| 1737 | 1737 | |
| 1738 | - $suffix++; |
|
| 1739 | - } while ($term_slug_check && $suffix < 100); |
|
| 1738 | + $suffix++; |
|
| 1739 | + } while ($term_slug_check && $suffix < 100); |
|
| 1740 | 1740 | |
| 1741 | - $slug = $new_slug; |
|
| 1741 | + $slug = $new_slug; |
|
| 1742 | 1742 | |
| 1743 | - //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
|
| 1743 | + //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
|
| 1744 | 1744 | |
| 1745 | - $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1745 | + $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1746 | 1746 | |
| 1747 | - } |
|
| 1747 | + } |
|
| 1748 | 1748 | |
| 1749 | 1749 | // Update tag in detail table. |
| 1750 | 1750 | $taxonomy_obj = get_taxonomy($taxonomy); |
@@ -1785,21 +1785,21 @@ discard block |
||
| 1785 | 1785 | function geodir_term_slug_is_exists($slug_exists, $slug, $term_id) |
| 1786 | 1786 | {
|
| 1787 | 1787 | |
| 1788 | - global $wpdb, $table_prefix; |
|
| 1788 | + global $wpdb, $table_prefix; |
|
| 1789 | 1789 | |
| 1790 | - $default_location = geodir_get_default_location(); |
|
| 1790 | + $default_location = geodir_get_default_location(); |
|
| 1791 | 1791 | |
| 1792 | - $country_slug = $default_location->country_slug; |
|
| 1793 | - $region_slug = $default_location->region_slug; |
|
| 1794 | - $city_slug = $default_location->city_slug; |
|
| 1792 | + $country_slug = $default_location->country_slug; |
|
| 1793 | + $region_slug = $default_location->region_slug; |
|
| 1794 | + $city_slug = $default_location->city_slug; |
|
| 1795 | 1795 | |
| 1796 | - if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
|
| 1797 | - return $slug_exists = true; |
|
| 1796 | + if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
|
| 1797 | + return $slug_exists = true; |
|
| 1798 | 1798 | |
| 1799 | - if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1800 | - return $slug_exists = true; |
|
| 1799 | + if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1800 | + return $slug_exists = true; |
|
| 1801 | 1801 | |
| 1802 | - return $slug_exists; |
|
| 1802 | + return $slug_exists; |
|
| 1803 | 1803 | } |
| 1804 | 1804 | |
| 1805 | 1805 | |
@@ -1818,75 +1818,75 @@ discard block |
||
| 1818 | 1818 | */ |
| 1819 | 1819 | function geodir_custom_page_title($title = '', $sep = '') |
| 1820 | 1820 | {
|
| 1821 | - global $wp; |
|
| 1822 | - if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
|
| 1823 | - return $title; |
|
| 1824 | - } |
|
| 1821 | + global $wp; |
|
| 1822 | + if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
|
| 1823 | + return $title; |
|
| 1824 | + } |
|
| 1825 | 1825 | |
| 1826 | - if ($sep == '') {
|
|
| 1827 | - /** |
|
| 1828 | - * Filter the page title separator. |
|
| 1829 | - * |
|
| 1830 | - * @since 1.0.0 |
|
| 1831 | - * @package GeoDirectory |
|
| 1832 | - * @param string $sep The separator, default: `|`. |
|
| 1833 | - */ |
|
| 1834 | - $sep = apply_filters('geodir_page_title_separator', '|');
|
|
| 1835 | - } |
|
| 1826 | + if ($sep == '') {
|
|
| 1827 | + /** |
|
| 1828 | + * Filter the page title separator. |
|
| 1829 | + * |
|
| 1830 | + * @since 1.0.0 |
|
| 1831 | + * @package GeoDirectory |
|
| 1832 | + * @param string $sep The separator, default: `|`. |
|
| 1833 | + */ |
|
| 1834 | + $sep = apply_filters('geodir_page_title_separator', '|');
|
|
| 1835 | + } |
|
| 1836 | 1836 | |
| 1837 | 1837 | |
| 1838 | - $gd_page = ''; |
|
| 1839 | - if(geodir_is_page('home')){
|
|
| 1840 | - $gd_page = 'home'; |
|
| 1841 | - $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
|
| 1842 | - } |
|
| 1843 | - elseif(geodir_is_page('detail')){
|
|
| 1844 | - $gd_page = 'detail'; |
|
| 1845 | - $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
|
| 1846 | - } |
|
| 1847 | - elseif(geodir_is_page('pt')){
|
|
| 1848 | - $gd_page = 'pt'; |
|
| 1849 | - $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
|
| 1850 | - } |
|
| 1851 | - elseif(geodir_is_page('listing')){
|
|
| 1852 | - $gd_page = 'listing'; |
|
| 1853 | - $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
|
| 1854 | - } |
|
| 1855 | - elseif(geodir_is_page('location')){
|
|
| 1856 | - $gd_page = 'location'; |
|
| 1857 | - $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
|
| 1858 | - } |
|
| 1859 | - elseif(geodir_is_page('search')){
|
|
| 1860 | - $gd_page = 'search'; |
|
| 1861 | - $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
|
| 1862 | - } |
|
| 1863 | - elseif(geodir_is_page('add-listing')){
|
|
| 1864 | - $gd_page = 'add-listing'; |
|
| 1865 | - $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
|
| 1866 | - } |
|
| 1867 | - elseif(geodir_is_page('author')){
|
|
| 1868 | - $gd_page = 'author'; |
|
| 1869 | - $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
|
| 1870 | - } |
|
| 1871 | - elseif(geodir_is_page('login')){
|
|
| 1872 | - $gd_page = 'login'; |
|
| 1873 | - $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
|
| 1874 | - } |
|
| 1875 | - elseif(geodir_is_page('listing-success')){
|
|
| 1876 | - $gd_page = 'listing-success'; |
|
| 1877 | - $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
|
| 1878 | - } |
|
| 1838 | + $gd_page = ''; |
|
| 1839 | + if(geodir_is_page('home')){
|
|
| 1840 | + $gd_page = 'home'; |
|
| 1841 | + $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
|
| 1842 | + } |
|
| 1843 | + elseif(geodir_is_page('detail')){
|
|
| 1844 | + $gd_page = 'detail'; |
|
| 1845 | + $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
|
| 1846 | + } |
|
| 1847 | + elseif(geodir_is_page('pt')){
|
|
| 1848 | + $gd_page = 'pt'; |
|
| 1849 | + $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
|
| 1850 | + } |
|
| 1851 | + elseif(geodir_is_page('listing')){
|
|
| 1852 | + $gd_page = 'listing'; |
|
| 1853 | + $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
|
| 1854 | + } |
|
| 1855 | + elseif(geodir_is_page('location')){
|
|
| 1856 | + $gd_page = 'location'; |
|
| 1857 | + $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
|
| 1858 | + } |
|
| 1859 | + elseif(geodir_is_page('search')){
|
|
| 1860 | + $gd_page = 'search'; |
|
| 1861 | + $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
|
| 1862 | + } |
|
| 1863 | + elseif(geodir_is_page('add-listing')){
|
|
| 1864 | + $gd_page = 'add-listing'; |
|
| 1865 | + $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
|
| 1866 | + } |
|
| 1867 | + elseif(geodir_is_page('author')){
|
|
| 1868 | + $gd_page = 'author'; |
|
| 1869 | + $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
|
| 1870 | + } |
|
| 1871 | + elseif(geodir_is_page('login')){
|
|
| 1872 | + $gd_page = 'login'; |
|
| 1873 | + $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
|
| 1874 | + } |
|
| 1875 | + elseif(geodir_is_page('listing-success')){
|
|
| 1876 | + $gd_page = 'listing-success'; |
|
| 1877 | + $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
|
| 1878 | + } |
|
| 1879 | 1879 | |
| 1880 | 1880 | |
| 1881 | - /** |
|
| 1882 | - * Filter page meta title to replace variables. |
|
| 1883 | - * |
|
| 1884 | - * @since 1.5.4 |
|
| 1885 | - * @param string $title The page title including variables. |
|
| 1886 | - * @param string $gd_page The GeoDirectory page type if any. |
|
| 1887 | - * @param string $sep The title separator symbol. |
|
| 1888 | - */ |
|
| 1889 | - return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
|
|
| 1881 | + /** |
|
| 1882 | + * Filter page meta title to replace variables. |
|
| 1883 | + * |
|
| 1884 | + * @since 1.5.4 |
|
| 1885 | + * @param string $title The page title including variables. |
|
| 1886 | + * @param string $gd_page The GeoDirectory page type if any. |
|
| 1887 | + * @param string $sep The title separator symbol. |
|
| 1888 | + */ |
|
| 1889 | + return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
|
|
| 1890 | 1890 | |
| 1891 | 1891 | } |
| 1892 | 1892 | |
@@ -1902,36 +1902,36 @@ discard block |
||
| 1902 | 1902 | function geodir_set_post_attachment() |
| 1903 | 1903 | {
|
| 1904 | 1904 | |
| 1905 | - if (!get_option('geodir_set_post_attachments')) {
|
|
| 1905 | + if (!get_option('geodir_set_post_attachments')) {
|
|
| 1906 | 1906 | |
| 1907 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1908 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1907 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1908 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1909 | 1909 | |
| 1910 | - $all_postypes = geodir_get_posttypes(); |
|
| 1910 | + $all_postypes = geodir_get_posttypes(); |
|
| 1911 | 1911 | |
| 1912 | - foreach($all_postypes as $post_type){
|
|
| 1913 | - $args = array( |
|
| 1914 | - 'posts_per_page' => -1, |
|
| 1915 | - 'post_type' => $post_type, |
|
| 1916 | - 'post_status' => 'publish'); |
|
| 1912 | + foreach($all_postypes as $post_type){
|
|
| 1913 | + $args = array( |
|
| 1914 | + 'posts_per_page' => -1, |
|
| 1915 | + 'post_type' => $post_type, |
|
| 1916 | + 'post_status' => 'publish'); |
|
| 1917 | 1917 | |
| 1918 | - $posts_array = get_posts($args); |
|
| 1918 | + $posts_array = get_posts($args); |
|
| 1919 | 1919 | |
| 1920 | - if (!empty($posts_array)) {
|
|
| 1920 | + if (!empty($posts_array)) {
|
|
| 1921 | 1921 | |
| 1922 | - foreach ($posts_array as $post) {
|
|
| 1922 | + foreach ($posts_array as $post) {
|
|
| 1923 | 1923 | |
| 1924 | - geodir_set_wp_featured_image($post->ID); |
|
| 1924 | + geodir_set_wp_featured_image($post->ID); |
|
| 1925 | 1925 | |
| 1926 | - } |
|
| 1926 | + } |
|
| 1927 | 1927 | |
| 1928 | - } |
|
| 1929 | - } |
|
| 1928 | + } |
|
| 1929 | + } |
|
| 1930 | 1930 | |
| 1931 | 1931 | |
| 1932 | - update_option('geodir_set_post_attachments', '1');
|
|
| 1932 | + update_option('geodir_set_post_attachments', '1');
|
|
| 1933 | 1933 | |
| 1934 | - } |
|
| 1934 | + } |
|
| 1935 | 1935 | |
| 1936 | 1936 | } |
| 1937 | 1937 | |
@@ -1948,19 +1948,19 @@ discard block |
||
| 1948 | 1948 | function geodir_remove_url_seperator() |
| 1949 | 1949 | {
|
| 1950 | 1950 | |
| 1951 | - if (!get_option('geodir_remove_url_seperator')) {
|
|
| 1951 | + if (!get_option('geodir_remove_url_seperator')) {
|
|
| 1952 | 1952 | |
| 1953 | - if (get_option('geodir_listingurl_separator'))
|
|
| 1954 | - delete_option('geodir_listingurl_separator');
|
|
| 1953 | + if (get_option('geodir_listingurl_separator'))
|
|
| 1954 | + delete_option('geodir_listingurl_separator');
|
|
| 1955 | 1955 | |
| 1956 | - if (get_option('geodir_detailurl_separator'))
|
|
| 1957 | - delete_option('geodir_detailurl_separator');
|
|
| 1956 | + if (get_option('geodir_detailurl_separator'))
|
|
| 1957 | + delete_option('geodir_detailurl_separator');
|
|
| 1958 | 1958 | |
| 1959 | - flush_rewrite_rules(false); |
|
| 1959 | + flush_rewrite_rules(false); |
|
| 1960 | 1960 | |
| 1961 | - update_option('geodir_remove_url_seperator', '1');
|
|
| 1961 | + update_option('geodir_remove_url_seperator', '1');
|
|
| 1962 | 1962 | |
| 1963 | - } |
|
| 1963 | + } |
|
| 1964 | 1964 | |
| 1965 | 1965 | } |
| 1966 | 1966 | |
@@ -1976,19 +1976,19 @@ discard block |
||
| 1976 | 1976 | */ |
| 1977 | 1977 | function geodir_remove_url_seperator_form_permalink_settings($permalink_arr) |
| 1978 | 1978 | {
|
| 1979 | - foreach ($permalink_arr as $key => $value) {
|
|
| 1979 | + foreach ($permalink_arr as $key => $value) {
|
|
| 1980 | 1980 | |
| 1981 | - if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') |
|
| 1982 | - unset($permalink_arr[$key]); |
|
| 1981 | + if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') |
|
| 1982 | + unset($permalink_arr[$key]); |
|
| 1983 | 1983 | |
| 1984 | - } |
|
| 1984 | + } |
|
| 1985 | 1985 | |
| 1986 | - return $permalink_arr; |
|
| 1986 | + return $permalink_arr; |
|
| 1987 | 1987 | |
| 1988 | 1988 | } |
| 1989 | 1989 | |
| 1990 | 1990 | if (!is_admin()) {
|
| 1991 | - add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
|
|
| 1991 | + add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
|
|
| 1992 | 1992 | } |
| 1993 | 1993 | /** |
| 1994 | 1994 | * Set status from draft to publish. |
@@ -2001,16 +2001,16 @@ discard block |
||
| 2001 | 2001 | */ |
| 2002 | 2002 | function geodir_set_status_draft_to_publish_for_own_post($post) |
| 2003 | 2003 | {
|
| 2004 | - $user_id = get_current_user_id(); |
|
| 2004 | + $user_id = get_current_user_id(); |
|
| 2005 | 2005 | |
| 2006 | - if(!$user_id){return $post;}
|
|
| 2006 | + if(!$user_id){return $post;}
|
|
| 2007 | 2007 | |
| 2008 | - $gd_post_types = geodir_get_posttypes(); |
|
| 2008 | + $gd_post_types = geodir_get_posttypes(); |
|
| 2009 | 2009 | |
| 2010 | - if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
|
|
| 2011 | - $post[0]->post_status = 'publish'; |
|
| 2012 | - } |
|
| 2013 | - return $post; |
|
| 2010 | + if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
|
|
| 2011 | + $post[0]->post_status = 'publish'; |
|
| 2012 | + } |
|
| 2013 | + return $post; |
|
| 2014 | 2014 | } |
| 2015 | 2015 | |
| 2016 | 2016 | |
@@ -2102,33 +2102,33 @@ discard block |
||
| 2102 | 2102 | */ |
| 2103 | 2103 | function geodir_detail_page_tab_headings_change($tabs_arr) |
| 2104 | 2104 | {
|
| 2105 | - global $wpdb; |
|
| 2105 | + global $wpdb; |
|
| 2106 | 2106 | |
| 2107 | - $post_type = geodir_get_current_posttype(); |
|
| 2107 | + $post_type = geodir_get_current_posttype(); |
|
| 2108 | 2108 | |
| 2109 | - $all_postypes = geodir_get_posttypes(); |
|
| 2109 | + $all_postypes = geodir_get_posttypes(); |
|
| 2110 | 2110 | |
| 2111 | - if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
|
|
| 2111 | + if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
|
|
| 2112 | 2112 | |
| 2113 | - if (array_key_exists('post_video', $tabs_arr)) {
|
|
| 2113 | + if (array_key_exists('post_video', $tabs_arr)) {
|
|
| 2114 | 2114 | |
| 2115 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2115 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2116 | 2116 | |
| 2117 | - if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
|
| 2118 | - $tabs_arr['post_video']['heading_text'] = $field_title; |
|
| 2119 | - } |
|
| 2117 | + if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
|
| 2118 | + $tabs_arr['post_video']['heading_text'] = $field_title; |
|
| 2119 | + } |
|
| 2120 | 2120 | |
| 2121 | - if (array_key_exists('special_offers', $tabs_arr)) {
|
|
| 2121 | + if (array_key_exists('special_offers', $tabs_arr)) {
|
|
| 2122 | 2122 | |
| 2123 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2123 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2124 | 2124 | |
| 2125 | - if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
|
| 2126 | - $tabs_arr['special_offers']['heading_text'] = $field_title; |
|
| 2127 | - } |
|
| 2125 | + if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
|
| 2126 | + $tabs_arr['special_offers']['heading_text'] = $field_title; |
|
| 2127 | + } |
|
| 2128 | 2128 | |
| 2129 | - } |
|
| 2129 | + } |
|
| 2130 | 2130 | |
| 2131 | - return $tabs_arr; |
|
| 2131 | + return $tabs_arr; |
|
| 2132 | 2132 | |
| 2133 | 2133 | } |
| 2134 | 2134 | |
@@ -2141,10 +2141,10 @@ discard block |
||
| 2141 | 2141 | */ |
| 2142 | 2142 | function geodir_remove_template_redirect_actions() |
| 2143 | 2143 | {
|
| 2144 | - if (geodir_is_page('login')){
|
|
| 2145 | - remove_all_actions('template_redirect');
|
|
| 2146 | - remove_action('init', 'avia_modify_front', 10);
|
|
| 2147 | - } |
|
| 2144 | + if (geodir_is_page('login')){
|
|
| 2145 | + remove_all_actions('template_redirect');
|
|
| 2146 | + remove_action('init', 'avia_modify_front', 10);
|
|
| 2147 | + } |
|
| 2148 | 2148 | } |
| 2149 | 2149 | |
| 2150 | 2150 | |
@@ -2166,51 +2166,51 @@ discard block |
||
| 2166 | 2166 | function geodirectory_before_featured_image_delete($attachment_id) |
| 2167 | 2167 | {
|
| 2168 | 2168 | |
| 2169 | - global $wpdb, $plugin_prefix; |
|
| 2169 | + global $wpdb, $plugin_prefix; |
|
| 2170 | 2170 | |
| 2171 | - $post_id = get_post_field('post_parent', $attachment_id);
|
|
| 2171 | + $post_id = get_post_field('post_parent', $attachment_id);
|
|
| 2172 | 2172 | |
| 2173 | - $attachment_url = wp_get_attachment_url($attachment_id); |
|
| 2173 | + $attachment_url = wp_get_attachment_url($attachment_id); |
|
| 2174 | 2174 | |
| 2175 | - if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
|
|
| 2175 | + if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
|
|
| 2176 | 2176 | |
| 2177 | - $post_type = get_post_type($post_id); |
|
| 2177 | + $post_type = get_post_type($post_id); |
|
| 2178 | 2178 | |
| 2179 | - $all_postypes = geodir_get_posttypes(); |
|
| 2179 | + $all_postypes = geodir_get_posttypes(); |
|
| 2180 | 2180 | |
| 2181 | - if (!in_array($post_type, $all_postypes) || !is_admin()) |
|
| 2182 | - return false; |
|
| 2181 | + if (!in_array($post_type, $all_postypes) || !is_admin()) |
|
| 2182 | + return false; |
|
| 2183 | 2183 | |
| 2184 | - $uploads = wp_upload_dir(); |
|
| 2184 | + $uploads = wp_upload_dir(); |
|
| 2185 | 2185 | |
| 2186 | - $split_img_path = explode($uploads['baseurl'], $attachment_url); |
|
| 2186 | + $split_img_path = explode($uploads['baseurl'], $attachment_url); |
|
| 2187 | 2187 | |
| 2188 | - $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 2188 | + $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 2189 | 2189 | |
| 2190 | - $wpdb->query( |
|
| 2191 | - $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2192 | - array($post_id, $split_img_file_path) |
|
| 2193 | - ) |
|
| 2194 | - ); |
|
| 2190 | + $wpdb->query( |
|
| 2191 | + $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2192 | + array($post_id, $split_img_file_path) |
|
| 2193 | + ) |
|
| 2194 | + ); |
|
| 2195 | 2195 | |
| 2196 | - $attachment_data = $wpdb->get_row( |
|
| 2197 | - $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2198 | - array($post_id) |
|
| 2199 | - ) |
|
| 2200 | - ); |
|
| 2196 | + $attachment_data = $wpdb->get_row( |
|
| 2197 | + $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2198 | + array($post_id) |
|
| 2199 | + ) |
|
| 2200 | + ); |
|
| 2201 | 2201 | |
| 2202 | - if (!empty($attachment_data)) {
|
|
| 2203 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2204 | - } |
|
| 2202 | + if (!empty($attachment_data)) {
|
|
| 2203 | + $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2204 | + } |
|
| 2205 | 2205 | |
| 2206 | 2206 | |
| 2207 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2207 | + $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2208 | 2208 | |
| 2209 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2209 | + $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2210 | 2210 | |
| 2211 | - geodir_set_wp_featured_image($post_id); |
|
| 2211 | + geodir_set_wp_featured_image($post_id); |
|
| 2212 | 2212 | |
| 2213 | - } |
|
| 2213 | + } |
|
| 2214 | 2214 | |
| 2215 | 2215 | } |
| 2216 | 2216 | |
@@ -2228,79 +2228,79 @@ discard block |
||
| 2228 | 2228 | function geodir_temp_set_post_attachment() |
| 2229 | 2229 | {
|
| 2230 | 2230 | |
| 2231 | - global $wpdb, $plugin_prefix; |
|
| 2231 | + global $wpdb, $plugin_prefix; |
|
| 2232 | 2232 | |
| 2233 | - $all_postypes = geodir_get_posttypes(); |
|
| 2233 | + $all_postypes = geodir_get_posttypes(); |
|
| 2234 | 2234 | |
| 2235 | - foreach ($all_postypes as $posttype) {
|
|
| 2235 | + foreach ($all_postypes as $posttype) {
|
|
| 2236 | 2236 | |
| 2237 | - $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2237 | + $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2238 | 2238 | |
| 2239 | - $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2239 | + $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2240 | 2240 | |
| 2241 | - if (!empty($get_post_data)) {
|
|
| 2241 | + if (!empty($get_post_data)) {
|
|
| 2242 | 2242 | |
| 2243 | - foreach ($get_post_data as $data) {
|
|
| 2243 | + foreach ($get_post_data as $data) {
|
|
| 2244 | 2244 | |
| 2245 | - $post_id = $data->post_id; |
|
| 2245 | + $post_id = $data->post_id; |
|
| 2246 | 2246 | |
| 2247 | - $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2247 | + $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2248 | 2248 | |
| 2249 | - if (!empty($attachment_data)) {
|
|
| 2249 | + if (!empty($attachment_data)) {
|
|
| 2250 | 2250 | |
| 2251 | - foreach ($attachment_data as $attach) {
|
|
| 2251 | + foreach ($attachment_data as $attach) {
|
|
| 2252 | 2252 | |
| 2253 | - $file_info = pathinfo($attach->file); |
|
| 2253 | + $file_info = pathinfo($attach->file); |
|
| 2254 | 2254 | |
| 2255 | - $sub_dir = ''; |
|
| 2256 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 2257 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 2255 | + $sub_dir = ''; |
|
| 2256 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 2257 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 2258 | 2258 | |
| 2259 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 2260 | - $uploads_path = $uploads['basedir']; |
|
| 2259 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 2260 | + $uploads_path = $uploads['basedir']; |
|
| 2261 | 2261 | |
| 2262 | - $file_name = $file_info['basename']; |
|
| 2262 | + $file_name = $file_info['basename']; |
|
| 2263 | 2263 | |
| 2264 | - $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2264 | + $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2265 | 2265 | |
| 2266 | - if (!file_exists($img_arr['path'])) {
|
|
| 2266 | + if (!file_exists($img_arr['path'])) {
|
|
| 2267 | 2267 | |
| 2268 | - $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2268 | + $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2269 | 2269 | |
| 2270 | - } |
|
| 2270 | + } |
|
| 2271 | 2271 | |
| 2272 | - } |
|
| 2272 | + } |
|
| 2273 | 2273 | |
| 2274 | - $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2274 | + $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2275 | 2275 | |
| 2276 | - if (!empty($attachment_data)) {
|
|
| 2276 | + if (!empty($attachment_data)) {
|
|
| 2277 | 2277 | |
| 2278 | - if ($attachment_data->ID) |
|
| 2279 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2278 | + if ($attachment_data->ID) |
|
| 2279 | + $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2280 | 2280 | |
| 2281 | - } else {
|
|
| 2281 | + } else {
|
|
| 2282 | 2282 | |
| 2283 | - if (has_post_thumbnail($post_id)) {
|
|
| 2283 | + if (has_post_thumbnail($post_id)) {
|
|
| 2284 | 2284 | |
| 2285 | - $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2285 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2286 | 2286 | |
| 2287 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2287 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2288 | 2288 | |
| 2289 | - } |
|
| 2289 | + } |
|
| 2290 | 2290 | |
| 2291 | - } |
|
| 2291 | + } |
|
| 2292 | 2292 | |
| 2293 | - $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2293 | + $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2294 | 2294 | |
| 2295 | - geodir_set_wp_featured_image($post_id); |
|
| 2295 | + geodir_set_wp_featured_image($post_id); |
|
| 2296 | 2296 | |
| 2297 | - } |
|
| 2297 | + } |
|
| 2298 | 2298 | |
| 2299 | - } |
|
| 2299 | + } |
|
| 2300 | 2300 | |
| 2301 | - } |
|
| 2301 | + } |
|
| 2302 | 2302 | |
| 2303 | - } |
|
| 2303 | + } |
|
| 2304 | 2304 | |
| 2305 | 2305 | } |
| 2306 | 2306 | |
@@ -2318,9 +2318,9 @@ discard block |
||
| 2318 | 2318 | function geodir_default_rating_star_icon() |
| 2319 | 2319 | {
|
| 2320 | 2320 | |
| 2321 | - if (!get_option('geodir_default_rating_star_icon')) {
|
|
| 2322 | - update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2323 | - } |
|
| 2321 | + if (!get_option('geodir_default_rating_star_icon')) {
|
|
| 2322 | + update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2323 | + } |
|
| 2324 | 2324 | |
| 2325 | 2325 | } |
| 2326 | 2326 | |
@@ -2338,27 +2338,27 @@ discard block |
||
| 2338 | 2338 | */ |
| 2339 | 2339 | function geodir_user_post_listing_count($user_id=null) |
| 2340 | 2340 | {
|
| 2341 | - global $wpdb, $plugin_prefix, $current_user; |
|
| 2342 | - if(!$user_id){
|
|
| 2343 | - $user_id = $current_user->ID; |
|
| 2344 | - } |
|
| 2341 | + global $wpdb, $plugin_prefix, $current_user; |
|
| 2342 | + if(!$user_id){
|
|
| 2343 | + $user_id = $current_user->ID; |
|
| 2344 | + } |
|
| 2345 | 2345 | |
| 2346 | - $user_id = $current_user->ID; |
|
| 2347 | - $all_postypes = geodir_get_posttypes(); |
|
| 2348 | - $all_posts = get_option('geodir_listing_link_user_dashboard');
|
|
| 2346 | + $user_id = $current_user->ID; |
|
| 2347 | + $all_postypes = geodir_get_posttypes(); |
|
| 2348 | + $all_posts = get_option('geodir_listing_link_user_dashboard');
|
|
| 2349 | 2349 | |
| 2350 | - $user_listing = array(); |
|
| 2351 | - if (is_array($all_posts) && !empty($all_posts)) {
|
|
| 2352 | - foreach ($all_posts as $ptype) {
|
|
| 2353 | - $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2350 | + $user_listing = array(); |
|
| 2351 | + if (is_array($all_posts) && !empty($all_posts)) {
|
|
| 2352 | + foreach ($all_posts as $ptype) {
|
|
| 2353 | + $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2354 | 2354 | |
| 2355 | - if ($total_posts > 0) {
|
|
| 2356 | - $user_listing[$ptype] = $total_posts; |
|
| 2357 | - } |
|
| 2358 | - } |
|
| 2359 | - } |
|
| 2355 | + if ($total_posts > 0) {
|
|
| 2356 | + $user_listing[$ptype] = $total_posts; |
|
| 2357 | + } |
|
| 2358 | + } |
|
| 2359 | + } |
|
| 2360 | 2360 | |
| 2361 | - return $user_listing; |
|
| 2361 | + return $user_listing; |
|
| 2362 | 2362 | } |
| 2363 | 2363 | |
| 2364 | 2364 | |
@@ -2378,192 +2378,192 @@ discard block |
||
| 2378 | 2378 | */ |
| 2379 | 2379 | function geodir_detail_page_custom_field_tab($tabs_arr) |
| 2380 | 2380 | {
|
| 2381 | - global $post; |
|
| 2382 | - |
|
| 2383 | - $post_type = geodir_get_current_posttype(); |
|
| 2384 | - $all_postypes = geodir_get_posttypes(); |
|
| 2385 | - |
|
| 2386 | - if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
|
|
| 2387 | - $package_info = array(); |
|
| 2388 | - $package_info = geodir_post_package_info($package_info, $post); |
|
| 2389 | - $post_package_id = !empty($package_info->pid) ? $package_info->pid : ''; |
|
| 2390 | - $fields_location = 'owntab'; |
|
| 2391 | - |
|
| 2392 | - $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
|
| 2393 | - |
|
| 2394 | - //remove video and special offers if it is already set to show |
|
| 2395 | - if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2396 | - $unset_video = true; |
|
| 2397 | - } |
|
| 2398 | - |
|
| 2399 | - if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2400 | - $unset_special_offers = true; |
|
| 2401 | - } |
|
| 2402 | - if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2403 | - foreach($custom_fields as $key => $custom_field){
|
|
| 2404 | - if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2405 | - unset($custom_fields[$key]); |
|
| 2406 | - } |
|
| 2407 | - if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2408 | - unset($custom_fields[$key]); |
|
| 2409 | - } |
|
| 2410 | - } |
|
| 2411 | - } |
|
| 2412 | - |
|
| 2413 | - |
|
| 2381 | + global $post; |
|
| 2414 | 2382 | |
| 2415 | - if (!empty($custom_fields)) {
|
|
| 2416 | - $parse_custom_fields = array(); |
|
| 2417 | - foreach ($custom_fields as $field) {
|
|
| 2418 | - $field = stripslashes_deep($field); // strip slashes |
|
| 2419 | - |
|
| 2420 | - $type = $field; |
|
| 2421 | - $field_name = $field['htmlvar_name']; |
|
| 2422 | - if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2423 | - $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2424 | - } |
|
| 2383 | + $post_type = geodir_get_current_posttype(); |
|
| 2384 | + $all_postypes = geodir_get_posttypes(); |
|
| 2425 | 2385 | |
| 2426 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
|
|
| 2427 | - if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2428 | - continue; |
|
| 2429 | - } |
|
| 2386 | + if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
|
|
| 2387 | + $package_info = array(); |
|
| 2388 | + $package_info = geodir_post_package_info($package_info, $post); |
|
| 2389 | + $post_package_id = !empty($package_info->pid) ? $package_info->pid : ''; |
|
| 2390 | + $fields_location = 'owntab'; |
|
| 2430 | 2391 | |
| 2431 | - $parse_custom_fields[] = $field; |
|
| 2432 | - } |
|
| 2433 | - } |
|
| 2434 | - $custom_fields = $parse_custom_fields; |
|
| 2435 | - } |
|
| 2436 | - //print_r($custom_fields); |
|
| 2437 | - if (!empty($custom_fields)) {
|
|
| 2392 | + $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
|
| 2438 | 2393 | |
| 2439 | - global $field_set_start; |
|
| 2440 | - |
|
| 2441 | - $post = stripslashes_deep($post); // strip slashes |
|
| 2442 | - |
|
| 2443 | - $field_set_start = 0; |
|
| 2444 | - $fieldset_count = 0; |
|
| 2445 | - $fieldset = ''; |
|
| 2446 | - $total_fields = count($custom_fields); |
|
| 2447 | - $count_field = 0; |
|
| 2448 | - $fieldset_arr = array(); |
|
| 2449 | - $i = 0; |
|
| 2450 | - $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL; |
|
| 2451 | - |
|
| 2452 | - foreach ($custom_fields as $field) {
|
|
| 2453 | - $count_field++; |
|
| 2454 | - $field_name = $field['htmlvar_name']; |
|
| 2455 | - if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2456 | - $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2457 | - } |
|
| 2394 | + //remove video and special offers if it is already set to show |
|
| 2395 | + if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2396 | + $unset_video = true; |
|
| 2397 | + } |
|
| 2458 | 2398 | |
| 2459 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
|
|
| 2460 | - $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title']; |
|
| 2461 | - $site_title = trim($field['site_title']); |
|
| 2462 | - $type = $field; |
|
| 2463 | - $variables_array = array(); |
|
| 2399 | + if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2400 | + $unset_special_offers = true; |
|
| 2401 | + } |
|
| 2402 | + if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2403 | + foreach($custom_fields as $key => $custom_field){
|
|
| 2404 | + if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2405 | + unset($custom_fields[$key]); |
|
| 2406 | + } |
|
| 2407 | + if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2408 | + unset($custom_fields[$key]); |
|
| 2409 | + } |
|
| 2410 | + } |
|
| 2411 | + } |
|
| 2464 | 2412 | |
| 2465 | - if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2466 | - continue; |
|
| 2467 | - } |
|
| 2468 | 2413 | |
| 2469 | - if ($type['type'] != 'fieldset') {
|
|
| 2470 | - $i++; |
|
| 2471 | - $variables_array['post_id'] = $post->ID; |
|
| 2472 | - $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
|
| 2473 | - $variables_array['value'] = ''; |
|
| 2474 | - $variables_array['value'] = $post->{$type['htmlvar_name']};
|
|
| 2475 | - }else{
|
|
| 2476 | - $i = 0; |
|
| 2477 | - $fieldset_count++; |
|
| 2478 | - $field_set_start = 1; |
|
| 2479 | - $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2480 | - $fieldset_arr[$fieldset_count]['label'] = $label; |
|
| 2481 | - } |
|
| 2482 | 2414 | |
| 2415 | + if (!empty($custom_fields)) {
|
|
| 2416 | + $parse_custom_fields = array(); |
|
| 2417 | + foreach ($custom_fields as $field) {
|
|
| 2418 | + $field = stripslashes_deep($field); // strip slashes |
|
| 2419 | + |
|
| 2420 | + $type = $field; |
|
| 2421 | + $field_name = $field['htmlvar_name']; |
|
| 2422 | + if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2423 | + $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2424 | + } |
|
| 2425 | + |
|
| 2426 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
|
|
| 2427 | + if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2428 | + continue; |
|
| 2429 | + } |
|
| 2430 | + |
|
| 2431 | + $parse_custom_fields[] = $field; |
|
| 2432 | + } |
|
| 2433 | + } |
|
| 2434 | + $custom_fields = $parse_custom_fields; |
|
| 2435 | + } |
|
| 2436 | + //print_r($custom_fields); |
|
| 2437 | + if (!empty($custom_fields)) {
|
|
| 2483 | 2438 | |
| 2484 | - if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2485 | - $type = stripslashes_deep($type); // strip slashes |
|
| 2486 | - if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2487 | - $html = ''; |
|
| 2488 | - $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
|
| 2489 | - if($html_var=='post'){$html_var='post_address';}
|
|
| 2490 | - $field_icon = geodir_field_icon_proccess($type); |
|
| 2491 | - $filed_type = $type['type']; |
|
| 2492 | - |
|
| 2493 | - /** |
|
| 2494 | - * Filter the output for custom fields. |
|
| 2495 | - * |
|
| 2496 | - * Here we can remove or add new functions depending on the field type. |
|
| 2497 | - * |
|
| 2498 | - * @param string $html The html to be filtered (blank). |
|
| 2499 | - * @param string $fields_location The location the field is to be show. |
|
| 2500 | - * @param array $type The array of field values. |
|
| 2501 | - */ |
|
| 2502 | - $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2503 | - |
|
| 2504 | - |
|
| 2505 | - /** |
|
| 2506 | - * Filter custom field output in tab. |
|
| 2507 | - * |
|
| 2508 | - * @since 1.5.6 |
|
| 2509 | - * |
|
| 2510 | - * @param string $html_var The HTML variable name for the field. |
|
| 2511 | - * @param string $html Custom field unfiltered HTML. |
|
| 2512 | - * @param array $variables_array Custom field variables array. |
|
| 2513 | - */ |
|
| 2514 | - $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
|
|
| 2515 | - |
|
| 2516 | - $fieldset_html = ''; |
|
| 2517 | - if ($field_set_start == 1) {
|
|
| 2518 | - $add_html = false; |
|
| 2519 | - if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
|
|
| 2520 | - if ($fieldset != '') {
|
|
| 2521 | - $add_html = true; |
|
| 2522 | - $label = $fieldset_arr[$fieldset_count - 1]['label']; |
|
| 2523 | - $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name']; |
|
| 2524 | - } |
|
| 2525 | - $fieldset_html = $fieldset; |
|
| 2526 | - $fieldset = ''; |
|
| 2527 | - } else {
|
|
| 2528 | - $fieldset .= $html; |
|
| 2529 | - if ($total_fields == $count_field && $fieldset != '') {
|
|
| 2530 | - $add_html = true; |
|
| 2531 | - $label = $fieldset_arr[$fieldset_count]['label']; |
|
| 2532 | - $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name']; |
|
| 2533 | - $fieldset_html = $fieldset; |
|
| 2534 | - } |
|
| 2535 | - } |
|
| 2439 | + global $field_set_start; |
|
| 2536 | 2440 | |
| 2537 | - if ($add_html) {
|
|
| 2538 | - $tabs_arr[$htmlvar_name] = array( |
|
| 2539 | - 'heading_text' => __($label, 'geodirectory'), |
|
| 2540 | - 'is_active_tab' => false, |
|
| 2541 | - /** |
|
| 2542 | - * Filter if a custom field should be displayed on the details page tab. |
|
| 2543 | - * |
|
| 2544 | - * @since 1.0.0 |
|
| 2545 | - * @param string $htmlvar_name The field HTML var name. |
|
| 2546 | - */ |
|
| 2547 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
|
| 2548 | - 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2549 | - ); |
|
| 2550 | - } |
|
| 2551 | - } else {
|
|
| 2552 | - if ($html != '') {
|
|
| 2553 | - $tabs_arr[$field['htmlvar_name']] = array( |
|
| 2554 | - 'heading_text' => __($label, 'geodirectory'), |
|
| 2555 | - 'is_active_tab' => false, |
|
| 2556 | - /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 2557 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
|
|
| 2558 | - 'tab_content' => $html |
|
| 2559 | - ); |
|
| 2560 | - } |
|
| 2561 | - } |
|
| 2562 | - } |
|
| 2563 | - } |
|
| 2564 | - } |
|
| 2565 | - } |
|
| 2566 | - return $tabs_arr; |
|
| 2441 | + $post = stripslashes_deep($post); // strip slashes |
|
| 2442 | + |
|
| 2443 | + $field_set_start = 0; |
|
| 2444 | + $fieldset_count = 0; |
|
| 2445 | + $fieldset = ''; |
|
| 2446 | + $total_fields = count($custom_fields); |
|
| 2447 | + $count_field = 0; |
|
| 2448 | + $fieldset_arr = array(); |
|
| 2449 | + $i = 0; |
|
| 2450 | + $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL; |
|
| 2451 | + |
|
| 2452 | + foreach ($custom_fields as $field) {
|
|
| 2453 | + $count_field++; |
|
| 2454 | + $field_name = $field['htmlvar_name']; |
|
| 2455 | + if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2456 | + $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2457 | + } |
|
| 2458 | + |
|
| 2459 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
|
|
| 2460 | + $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title']; |
|
| 2461 | + $site_title = trim($field['site_title']); |
|
| 2462 | + $type = $field; |
|
| 2463 | + $variables_array = array(); |
|
| 2464 | + |
|
| 2465 | + if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2466 | + continue; |
|
| 2467 | + } |
|
| 2468 | + |
|
| 2469 | + if ($type['type'] != 'fieldset') {
|
|
| 2470 | + $i++; |
|
| 2471 | + $variables_array['post_id'] = $post->ID; |
|
| 2472 | + $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
|
| 2473 | + $variables_array['value'] = ''; |
|
| 2474 | + $variables_array['value'] = $post->{$type['htmlvar_name']};
|
|
| 2475 | + }else{
|
|
| 2476 | + $i = 0; |
|
| 2477 | + $fieldset_count++; |
|
| 2478 | + $field_set_start = 1; |
|
| 2479 | + $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2480 | + $fieldset_arr[$fieldset_count]['label'] = $label; |
|
| 2481 | + } |
|
| 2482 | + |
|
| 2483 | + |
|
| 2484 | + if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2485 | + $type = stripslashes_deep($type); // strip slashes |
|
| 2486 | + if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2487 | + $html = ''; |
|
| 2488 | + $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
|
| 2489 | + if($html_var=='post'){$html_var='post_address';}
|
|
| 2490 | + $field_icon = geodir_field_icon_proccess($type); |
|
| 2491 | + $filed_type = $type['type']; |
|
| 2492 | + |
|
| 2493 | + /** |
|
| 2494 | + * Filter the output for custom fields. |
|
| 2495 | + * |
|
| 2496 | + * Here we can remove or add new functions depending on the field type. |
|
| 2497 | + * |
|
| 2498 | + * @param string $html The html to be filtered (blank). |
|
| 2499 | + * @param string $fields_location The location the field is to be show. |
|
| 2500 | + * @param array $type The array of field values. |
|
| 2501 | + */ |
|
| 2502 | + $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2503 | + |
|
| 2504 | + |
|
| 2505 | + /** |
|
| 2506 | + * Filter custom field output in tab. |
|
| 2507 | + * |
|
| 2508 | + * @since 1.5.6 |
|
| 2509 | + * |
|
| 2510 | + * @param string $html_var The HTML variable name for the field. |
|
| 2511 | + * @param string $html Custom field unfiltered HTML. |
|
| 2512 | + * @param array $variables_array Custom field variables array. |
|
| 2513 | + */ |
|
| 2514 | + $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
|
|
| 2515 | + |
|
| 2516 | + $fieldset_html = ''; |
|
| 2517 | + if ($field_set_start == 1) {
|
|
| 2518 | + $add_html = false; |
|
| 2519 | + if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
|
|
| 2520 | + if ($fieldset != '') {
|
|
| 2521 | + $add_html = true; |
|
| 2522 | + $label = $fieldset_arr[$fieldset_count - 1]['label']; |
|
| 2523 | + $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name']; |
|
| 2524 | + } |
|
| 2525 | + $fieldset_html = $fieldset; |
|
| 2526 | + $fieldset = ''; |
|
| 2527 | + } else {
|
|
| 2528 | + $fieldset .= $html; |
|
| 2529 | + if ($total_fields == $count_field && $fieldset != '') {
|
|
| 2530 | + $add_html = true; |
|
| 2531 | + $label = $fieldset_arr[$fieldset_count]['label']; |
|
| 2532 | + $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name']; |
|
| 2533 | + $fieldset_html = $fieldset; |
|
| 2534 | + } |
|
| 2535 | + } |
|
| 2536 | + |
|
| 2537 | + if ($add_html) {
|
|
| 2538 | + $tabs_arr[$htmlvar_name] = array( |
|
| 2539 | + 'heading_text' => __($label, 'geodirectory'), |
|
| 2540 | + 'is_active_tab' => false, |
|
| 2541 | + /** |
|
| 2542 | + * Filter if a custom field should be displayed on the details page tab. |
|
| 2543 | + * |
|
| 2544 | + * @since 1.0.0 |
|
| 2545 | + * @param string $htmlvar_name The field HTML var name. |
|
| 2546 | + */ |
|
| 2547 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
|
| 2548 | + 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2549 | + ); |
|
| 2550 | + } |
|
| 2551 | + } else {
|
|
| 2552 | + if ($html != '') {
|
|
| 2553 | + $tabs_arr[$field['htmlvar_name']] = array( |
|
| 2554 | + 'heading_text' => __($label, 'geodirectory'), |
|
| 2555 | + 'is_active_tab' => false, |
|
| 2556 | + /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 2557 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
|
|
| 2558 | + 'tab_content' => $html |
|
| 2559 | + ); |
|
| 2560 | + } |
|
| 2561 | + } |
|
| 2562 | + } |
|
| 2563 | + } |
|
| 2564 | + } |
|
| 2565 | + } |
|
| 2566 | + return $tabs_arr; |
|
| 2567 | 2567 | } |
| 2568 | 2568 | |
| 2569 | 2569 | /* display add listing page for wpml */ |
@@ -2587,39 +2587,39 @@ discard block |
||
| 2587 | 2587 | */ |
| 2588 | 2588 | function geodir_add_post_status_author_page() |
| 2589 | 2589 | {
|
| 2590 | - global $wpdb, $post; |
|
| 2591 | - |
|
| 2592 | - $html = ''; |
|
| 2593 | - if (get_current_user_id()) {
|
|
| 2594 | - |
|
| 2595 | - $is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
|
|
| 2596 | - if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
|
|
| 2597 | - |
|
| 2598 | - // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them. |
|
| 2599 | - $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
|
|
| 2600 | - $status = "<strong>(";
|
|
| 2601 | - $status_icon = '<i class="fa fa-play"></i>'; |
|
| 2602 | - if ($real_status == 'publish') {
|
|
| 2603 | - $status .= __('Published', 'geodirectory');
|
|
| 2604 | - } else {
|
|
| 2605 | - $status .= __('Not published', 'geodirectory');
|
|
| 2606 | - $status_icon = '<i class="fa fa-pause"></i>'; |
|
| 2607 | - } |
|
| 2608 | - $status .= ")</strong>"; |
|
| 2590 | + global $wpdb, $post; |
|
| 2591 | + |
|
| 2592 | + $html = ''; |
|
| 2593 | + if (get_current_user_id()) {
|
|
| 2594 | + |
|
| 2595 | + $is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
|
|
| 2596 | + if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
|
|
| 2597 | + |
|
| 2598 | + // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them. |
|
| 2599 | + $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
|
|
| 2600 | + $status = "<strong>(";
|
|
| 2601 | + $status_icon = '<i class="fa fa-play"></i>'; |
|
| 2602 | + if ($real_status == 'publish') {
|
|
| 2603 | + $status .= __('Published', 'geodirectory');
|
|
| 2604 | + } else {
|
|
| 2605 | + $status .= __('Not published', 'geodirectory');
|
|
| 2606 | + $status_icon = '<i class="fa fa-pause"></i>'; |
|
| 2607 | + } |
|
| 2608 | + $status .= ")</strong>"; |
|
| 2609 | 2609 | |
| 2610 | - $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2611 | - } |
|
| 2612 | - } |
|
| 2610 | + $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2611 | + } |
|
| 2612 | + } |
|
| 2613 | 2613 | |
| 2614 | - if ($html != '') {
|
|
| 2615 | - /** |
|
| 2616 | - * Filter the post status text on the author page. |
|
| 2617 | - * |
|
| 2618 | - * @since 1.0.0 |
|
| 2619 | - * @param string $html The HTML of the status. |
|
| 2620 | - */ |
|
| 2621 | - echo apply_filters('geodir_filter_status_text_on_author_page', $html);
|
|
| 2622 | - } |
|
| 2614 | + if ($html != '') {
|
|
| 2615 | + /** |
|
| 2616 | + * Filter the post status text on the author page. |
|
| 2617 | + * |
|
| 2618 | + * @since 1.0.0 |
|
| 2619 | + * @param string $html The HTML of the status. |
|
| 2620 | + */ |
|
| 2621 | + echo apply_filters('geodir_filter_status_text_on_author_page', $html);
|
|
| 2622 | + } |
|
| 2623 | 2623 | |
| 2624 | 2624 | |
| 2625 | 2625 | } |
@@ -2633,21 +2633,21 @@ discard block |
||
| 2633 | 2633 | */ |
| 2634 | 2634 | function geodir_init_no_rating() |
| 2635 | 2635 | {
|
| 2636 | - if (get_option('geodir_disable_rating')) {
|
|
| 2637 | - remove_action('comment_form_logged_in_after', 'geodir_comment_rating_fields');
|
|
| 2638 | - remove_action('comment_form_before_fields', 'geodir_comment_rating_fields');
|
|
| 2639 | - remove_action('comment_form_logged_in_after', 'geodir_reviewrating_comment_rating_fields');
|
|
| 2640 | - remove_action('comment_form_before_fields', 'geodir_reviewrating_comment_rating_fields');
|
|
| 2641 | - remove_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
|
|
| 2642 | - remove_action('add_meta_boxes', 'geodir_reviewrating_comment_metabox', 13);
|
|
| 2643 | - remove_filter('comment_text', 'geodir_wrap_comment_text', 40);
|
|
| 2644 | - |
|
| 2645 | - add_action('comment_form_logged_in_after', 'geodir_no_rating_rating_fields');
|
|
| 2646 | - add_action('comment_form_before_fields', 'geodir_no_rating_rating_fields');
|
|
| 2647 | - add_filter('comment_text', 'geodir_no_rating_comment_text', 100, 2);
|
|
| 2648 | - add_filter('geodir_detail_page_review_rating_html', 'geodir_no_rating_review_rating_html', 100);
|
|
| 2649 | - add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
|
|
| 2650 | - } |
|
| 2636 | + if (get_option('geodir_disable_rating')) {
|
|
| 2637 | + remove_action('comment_form_logged_in_after', 'geodir_comment_rating_fields');
|
|
| 2638 | + remove_action('comment_form_before_fields', 'geodir_comment_rating_fields');
|
|
| 2639 | + remove_action('comment_form_logged_in_after', 'geodir_reviewrating_comment_rating_fields');
|
|
| 2640 | + remove_action('comment_form_before_fields', 'geodir_reviewrating_comment_rating_fields');
|
|
| 2641 | + remove_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
|
|
| 2642 | + remove_action('add_meta_boxes', 'geodir_reviewrating_comment_metabox', 13);
|
|
| 2643 | + remove_filter('comment_text', 'geodir_wrap_comment_text', 40);
|
|
| 2644 | + |
|
| 2645 | + add_action('comment_form_logged_in_after', 'geodir_no_rating_rating_fields');
|
|
| 2646 | + add_action('comment_form_before_fields', 'geodir_no_rating_rating_fields');
|
|
| 2647 | + add_filter('comment_text', 'geodir_no_rating_comment_text', 100, 2);
|
|
| 2648 | + add_filter('geodir_detail_page_review_rating_html', 'geodir_no_rating_review_rating_html', 100);
|
|
| 2649 | + add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
|
|
| 2650 | + } |
|
| 2651 | 2651 | } |
| 2652 | 2652 | |
| 2653 | 2653 | /** |
@@ -2659,24 +2659,24 @@ discard block |
||
| 2659 | 2659 | */ |
| 2660 | 2660 | function geodir_no_rating_rating_fields() |
| 2661 | 2661 | {
|
| 2662 | - global $post; |
|
| 2662 | + global $post; |
|
| 2663 | 2663 | |
| 2664 | - $post_types = geodir_get_posttypes(); |
|
| 2664 | + $post_types = geodir_get_posttypes(); |
|
| 2665 | 2665 | |
| 2666 | - if (!empty($post) && isset($post->post_type) && in_array($post->post_type, $post_types)) {
|
|
| 2667 | - if (is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php')) {
|
|
| 2668 | - if (get_option('geodir_reviewrating_enable_rating')) {
|
|
| 2669 | - echo '<input type="hidden" value="1" name="geodir_rating[overall]" />'; |
|
| 2670 | - } else {
|
|
| 2671 | - echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />'; |
|
| 2672 | - } |
|
| 2673 | - if (get_option('geodir_reviewrating_enable_images')) {
|
|
| 2674 | - geodir_reviewrating_rating_img_html(); |
|
| 2675 | - } |
|
| 2676 | - } else {
|
|
| 2677 | - echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />'; |
|
| 2678 | - } |
|
| 2679 | - } |
|
| 2666 | + if (!empty($post) && isset($post->post_type) && in_array($post->post_type, $post_types)) {
|
|
| 2667 | + if (is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php')) {
|
|
| 2668 | + if (get_option('geodir_reviewrating_enable_rating')) {
|
|
| 2669 | + echo '<input type="hidden" value="1" name="geodir_rating[overall]" />'; |
|
| 2670 | + } else {
|
|
| 2671 | + echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />'; |
|
| 2672 | + } |
|
| 2673 | + if (get_option('geodir_reviewrating_enable_images')) {
|
|
| 2674 | + geodir_reviewrating_rating_img_html(); |
|
| 2675 | + } |
|
| 2676 | + } else {
|
|
| 2677 | + echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />'; |
|
| 2678 | + } |
|
| 2679 | + } |
|
| 2680 | 2680 | } |
| 2681 | 2681 | |
| 2682 | 2682 | /** |
@@ -2690,11 +2690,11 @@ discard block |
||
| 2690 | 2690 | */ |
| 2691 | 2691 | function geodir_no_rating_comment_text($content, $comment = '') |
| 2692 | 2692 | {
|
| 2693 | - if (!is_admin()) {
|
|
| 2694 | - return '<div class="description">' . $content . '</div>'; |
|
| 2695 | - } else {
|
|
| 2696 | - return $content; |
|
| 2697 | - } |
|
| 2693 | + if (!is_admin()) {
|
|
| 2694 | + return '<div class="description">' . $content . '</div>'; |
|
| 2695 | + } else {
|
|
| 2696 | + return $content; |
|
| 2697 | + } |
|
| 2698 | 2698 | } |
| 2699 | 2699 | |
| 2700 | 2700 | /** |
@@ -2707,7 +2707,7 @@ discard block |
||
| 2707 | 2707 | */ |
| 2708 | 2708 | function geodir_no_rating_review_rating_html($content = '') |
| 2709 | 2709 | {
|
| 2710 | - return NULL; |
|
| 2710 | + return NULL; |
|
| 2711 | 2711 | } |
| 2712 | 2712 | |
| 2713 | 2713 | /** |
@@ -2721,19 +2721,19 @@ discard block |
||
| 2721 | 2721 | */ |
| 2722 | 2722 | function geodir_no_rating_get_sort_options($options, $post_type = '') |
| 2723 | 2723 | {
|
| 2724 | - $new_options = array(); |
|
| 2725 | - if (!empty($options)) {
|
|
| 2726 | - foreach ($options as $option) {
|
|
| 2727 | - if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
|
|
| 2728 | - continue; |
|
| 2729 | - } |
|
| 2730 | - $new_options[] = $option; |
|
| 2731 | - } |
|
| 2724 | + $new_options = array(); |
|
| 2725 | + if (!empty($options)) {
|
|
| 2726 | + foreach ($options as $option) {
|
|
| 2727 | + if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
|
|
| 2728 | + continue; |
|
| 2729 | + } |
|
| 2730 | + $new_options[] = $option; |
|
| 2731 | + } |
|
| 2732 | 2732 | |
| 2733 | - $options = $new_options; |
|
| 2734 | - } |
|
| 2733 | + $options = $new_options; |
|
| 2734 | + } |
|
| 2735 | 2735 | |
| 2736 | - return $options; |
|
| 2736 | + return $options; |
|
| 2737 | 2737 | } |
| 2738 | 2738 | |
| 2739 | 2739 | add_filter('geodir_all_js_msg', 'geodir_all_js_msg_no_rating', 100);
|
@@ -2747,11 +2747,11 @@ discard block |
||
| 2747 | 2747 | */ |
| 2748 | 2748 | function geodir_all_js_msg_no_rating($msg = array()) |
| 2749 | 2749 | {
|
| 2750 | - if (get_option('geodir_disable_rating')) {
|
|
| 2751 | - $msg['gd_cmt_no_rating'] = true; |
|
| 2752 | - } |
|
| 2750 | + if (get_option('geodir_disable_rating')) {
|
|
| 2751 | + $msg['gd_cmt_no_rating'] = true; |
|
| 2752 | + } |
|
| 2753 | 2753 | |
| 2754 | - return $msg; |
|
| 2754 | + return $msg; |
|
| 2755 | 2755 | } |
| 2756 | 2756 | |
| 2757 | 2757 | add_filter('body_class', 'geodir_body_class_no_rating', 100);
|
@@ -2765,13 +2765,13 @@ discard block |
||
| 2765 | 2765 | */ |
| 2766 | 2766 | function geodir_body_class_no_rating($classes = array()) |
| 2767 | 2767 | {
|
| 2768 | - if (get_option('geodir_disable_rating')) {
|
|
| 2769 | - $classes[] = 'gd-no-rating'; |
|
| 2770 | - } |
|
| 2768 | + if (get_option('geodir_disable_rating')) {
|
|
| 2769 | + $classes[] = 'gd-no-rating'; |
|
| 2770 | + } |
|
| 2771 | 2771 | |
| 2772 | - $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2772 | + $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2773 | 2773 | |
| 2774 | - return $classes; |
|
| 2774 | + return $classes; |
|
| 2775 | 2775 | } |
| 2776 | 2776 | |
| 2777 | 2777 | add_filter('admin_body_class', 'geodir_admin_body_class_no_rating', 100);
|
@@ -2785,13 +2785,13 @@ discard block |
||
| 2785 | 2785 | */ |
| 2786 | 2786 | function geodir_admin_body_class_no_rating($class = '') |
| 2787 | 2787 | {
|
| 2788 | - if (get_option('geodir_disable_rating')) {
|
|
| 2789 | - $class .= ' gd-no-rating'; |
|
| 2790 | - } |
|
| 2788 | + if (get_option('geodir_disable_rating')) {
|
|
| 2789 | + $class .= ' gd-no-rating'; |
|
| 2790 | + } |
|
| 2791 | 2791 | |
| 2792 | - $class .= ' gd-map-' . geodir_map_name(); |
|
| 2792 | + $class .= ' gd-map-' . geodir_map_name(); |
|
| 2793 | 2793 | |
| 2794 | - return $class; |
|
| 2794 | + return $class; |
|
| 2795 | 2795 | } |
| 2796 | 2796 | |
| 2797 | 2797 | add_action('wp_head', 'geodir_wp_head_no_rating');
|
@@ -2804,10 +2804,10 @@ discard block |
||
| 2804 | 2804 | */ |
| 2805 | 2805 | function geodir_wp_head_no_rating() |
| 2806 | 2806 | {
|
| 2807 | - if (get_option('geodir_disable_rating')) {
|
|
| 2808 | - echo '<style>body .geodir-rating, body .geodir-bubble-rating, body .gd_ratings_module_box{display:none!important;}</style>';
|
|
| 2809 | - echo '<script type="text/javascript">jQuery(function(){jQuery(".gd_rating_show").parent(".geodir-rating").remove();});</script>';
|
|
| 2810 | - } |
|
| 2807 | + if (get_option('geodir_disable_rating')) {
|
|
| 2808 | + echo '<style>body .geodir-rating, body .geodir-bubble-rating, body .gd_ratings_module_box{display:none!important;}</style>';
|
|
| 2809 | + echo '<script type="text/javascript">jQuery(function(){jQuery(".gd_rating_show").parent(".geodir-rating").remove();});</script>';
|
|
| 2810 | + } |
|
| 2811 | 2811 | } |
| 2812 | 2812 | |
| 2813 | 2813 | add_filter('geodir_load_db_language', 'geodir_load_custom_field_translation');
|
@@ -2824,36 +2824,36 @@ discard block |
||
| 2824 | 2824 | * @return array Translation texts. |
| 2825 | 2825 | */ |
| 2826 | 2826 | function geodir_load_gd_options_text_translation($translation_texts = array()) {
|
| 2827 | - $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2828 | - |
|
| 2829 | - $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
|
| 2830 | - |
|
| 2831 | - /** |
|
| 2832 | - * Filters the geodirectory option names that requires to add for translation. |
|
| 2833 | - * |
|
| 2834 | - * @since 1.5.7 |
|
| 2835 | - * @package GeoDirectory |
|
| 2836 | - * |
|
| 2837 | - * @param array $gd_options Array of option names. |
|
| 2838 | - */ |
|
| 2839 | - $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
|
|
| 2840 | - $gd_options = array_unique($gd_options); |
|
| 2841 | - |
|
| 2842 | - if (!empty($gd_options)) {
|
|
| 2843 | - foreach ($gd_options as $gd_option) {
|
|
| 2844 | - if ($gd_option != '' && $option_value = get_option($gd_option)) {
|
|
| 2845 | - $option_value = is_string($option_value) ? stripslashes_deep($option_value) : ''; |
|
| 2827 | + $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2828 | + |
|
| 2829 | + $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
|
| 2830 | + |
|
| 2831 | + /** |
|
| 2832 | + * Filters the geodirectory option names that requires to add for translation. |
|
| 2833 | + * |
|
| 2834 | + * @since 1.5.7 |
|
| 2835 | + * @package GeoDirectory |
|
| 2836 | + * |
|
| 2837 | + * @param array $gd_options Array of option names. |
|
| 2838 | + */ |
|
| 2839 | + $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
|
|
| 2840 | + $gd_options = array_unique($gd_options); |
|
| 2841 | + |
|
| 2842 | + if (!empty($gd_options)) {
|
|
| 2843 | + foreach ($gd_options as $gd_option) {
|
|
| 2844 | + if ($gd_option != '' && $option_value = get_option($gd_option)) {
|
|
| 2845 | + $option_value = is_string($option_value) ? stripslashes_deep($option_value) : ''; |
|
| 2846 | 2846 | |
| 2847 | - if ($option_value != '' && !in_array($option_value, $translation_texts)) {
|
|
| 2848 | - $translation_texts[] = stripslashes_deep($option_value); |
|
| 2849 | - } |
|
| 2850 | - } |
|
| 2851 | - } |
|
| 2852 | - } |
|
| 2847 | + if ($option_value != '' && !in_array($option_value, $translation_texts)) {
|
|
| 2848 | + $translation_texts[] = stripslashes_deep($option_value); |
|
| 2849 | + } |
|
| 2850 | + } |
|
| 2851 | + } |
|
| 2852 | + } |
|
| 2853 | 2853 | |
| 2854 | - $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 2854 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 2855 | 2855 | |
| 2856 | - return $translation_texts; |
|
| 2856 | + return $translation_texts; |
|
| 2857 | 2857 | } |
| 2858 | 2858 | |
| 2859 | 2859 | add_filter('geodir_load_db_language', 'geodir_load_gd_options_text_translation');
|
@@ -2867,15 +2867,15 @@ discard block |
||
| 2867 | 2867 | |
| 2868 | 2868 | add_filter('get_comments_link', 'gd_get_comments_link', 10, 2);
|
| 2869 | 2869 | function gd_get_comments_link($comments_link, $post_id) {
|
| 2870 | - $post_type = get_post_type($post_id); |
|
| 2870 | + $post_type = get_post_type($post_id); |
|
| 2871 | 2871 | |
| 2872 | - $all_postypes = geodir_get_posttypes(); |
|
| 2873 | - if (in_array($post_type, $all_postypes)) {
|
|
| 2874 | - $comments_link = str_replace('#comments', '#reviews', $comments_link);
|
|
| 2875 | - $comments_link = str_replace('#respond', '#reviews', $comments_link);
|
|
| 2876 | - } |
|
| 2872 | + $all_postypes = geodir_get_posttypes(); |
|
| 2873 | + if (in_array($post_type, $all_postypes)) {
|
|
| 2874 | + $comments_link = str_replace('#comments', '#reviews', $comments_link);
|
|
| 2875 | + $comments_link = str_replace('#respond', '#reviews', $comments_link);
|
|
| 2876 | + } |
|
| 2877 | 2877 | |
| 2878 | - return $comments_link; |
|
| 2878 | + return $comments_link; |
|
| 2879 | 2879 | } |
| 2880 | 2880 | |
| 2881 | 2881 | |
@@ -2893,11 +2893,11 @@ discard block |
||
| 2893 | 2893 | function geodir_add_nav_menu_class( $args ) |
| 2894 | 2894 | {
|
| 2895 | 2895 | |
| 2896 | - if(isset($args['menu_class'])){
|
|
| 2897 | - $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
|
| 2898 | - } |
|
| 2896 | + if(isset($args['menu_class'])){
|
|
| 2897 | + $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
|
| 2898 | + } |
|
| 2899 | 2899 | |
| 2900 | - return $args; |
|
| 2900 | + return $args; |
|
| 2901 | 2901 | } |
| 2902 | 2902 | |
| 2903 | 2903 | add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' ); |
@@ -2914,15 +2914,15 @@ discard block |
||
| 2914 | 2914 | * @return string Filtered locale ID. |
| 2915 | 2915 | */ |
| 2916 | 2916 | function geodir_wpml_filter_locale($locale) {
|
| 2917 | - global $sitepress; |
|
| 2917 | + global $sitepress; |
|
| 2918 | 2918 | |
| 2919 | - $post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : ''); |
|
| 2919 | + $post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : ''); |
|
| 2920 | 2920 | |
| 2921 | - if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
|
|
| 2922 | - $locale = $sitepress->get_locale($current_lang); |
|
| 2923 | - } |
|
| 2921 | + if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
|
|
| 2922 | + $locale = $sitepress->get_locale($current_lang); |
|
| 2923 | + } |
|
| 2924 | 2924 | |
| 2925 | - return $locale; |
|
| 2925 | + return $locale; |
|
| 2926 | 2926 | } |
| 2927 | 2927 | |
| 2928 | 2928 | /** |
@@ -2932,14 +2932,14 @@ discard block |
||
| 2932 | 2932 | * @package GeoDirectory |
| 2933 | 2933 | */ |
| 2934 | 2934 | function geodir_wpml_set_filter() {
|
| 2935 | - if (!function_exists('icl_object_id') || defined('DOING_AJAX')) {
|
|
| 2936 | - return; |
|
| 2937 | - } |
|
| 2938 | - if (is_admin()) {
|
|
| 2939 | - //add_filter('locale', 'geodir_wpml_filter_locale', 100, 1);
|
|
| 2940 | - } else {
|
|
| 2941 | - add_filter('wp_nav_menu_objects', 'geodir_wpml_nav_menu_filter', 11, 2);
|
|
| 2942 | - } |
|
| 2935 | + if (!function_exists('icl_object_id') || defined('DOING_AJAX')) {
|
|
| 2936 | + return; |
|
| 2937 | + } |
|
| 2938 | + if (is_admin()) {
|
|
| 2939 | + //add_filter('locale', 'geodir_wpml_filter_locale', 100, 1);
|
|
| 2940 | + } else {
|
|
| 2941 | + add_filter('wp_nav_menu_objects', 'geodir_wpml_nav_menu_filter', 11, 2);
|
|
| 2942 | + } |
|
| 2943 | 2943 | } |
| 2944 | 2944 | add_filter('plugins_loaded', 'geodir_wpml_set_filter');
|
| 2945 | 2945 | |
@@ -2953,13 +2953,13 @@ discard block |
||
| 2953 | 2953 | * @return array Filtered menu items. |
| 2954 | 2954 | */ |
| 2955 | 2955 | function geodir_wpml_nav_menu_filter($menu_items, $args = array()) {
|
| 2956 | - if (!empty($_REQUEST['listing_type']) && geodir_is_page('add-listing')) {
|
|
| 2957 | - foreach ($menu_items as $key => $menu_item) {
|
|
| 2958 | - if (!empty($menu_item->type) && $menu_item->type == 'wpml_ls_menu_item') {
|
|
| 2959 | - $url = remove_query_arg(array('listing_type'), $menu_item->url);
|
|
| 2960 | - $menu_items[$key]->url = add_query_arg(array('listing_type' => $_REQUEST['listing_type']), $url);
|
|
| 2961 | - } |
|
| 2962 | - } |
|
| 2963 | - } |
|
| 2964 | - return $menu_items; |
|
| 2956 | + if (!empty($_REQUEST['listing_type']) && geodir_is_page('add-listing')) {
|
|
| 2957 | + foreach ($menu_items as $key => $menu_item) {
|
|
| 2958 | + if (!empty($menu_item->type) && $menu_item->type == 'wpml_ls_menu_item') {
|
|
| 2959 | + $url = remove_query_arg(array('listing_type'), $menu_item->url);
|
|
| 2960 | + $menu_items[$key]->url = add_query_arg(array('listing_type' => $_REQUEST['listing_type']), $url);
|
|
| 2961 | + } |
|
| 2962 | + } |
|
| 2963 | + } |
|
| 2964 | + return $menu_items; |
|
| 2965 | 2965 | } |
| 2966 | 2966 | \ No newline at end of file |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | /* ON TEMPLATE INCLUDE */ |
| 137 | 137 | ///////////////////////// |
| 138 | 138 | |
| 139 | -add_filter('template_include', 'geodir_template_loader',9);
|
|
| 139 | +add_filter('template_include', 'geodir_template_loader', 9);
|
|
| 140 | 140 | |
| 141 | 141 | ///////////////////////// |
| 142 | 142 | /* CATEGORY / TAXONOMY / CUSTOM POST ACTIONS */ |
@@ -176,9 +176,9 @@ discard block |
||
| 176 | 176 | /* WP REVIEW COUNT ACTIONS */ |
| 177 | 177 | //////////////////////// |
| 178 | 178 | |
| 179 | -add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100,1);
|
|
| 179 | +add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100, 1);
|
|
| 180 | 180 | //add_action('geodir_update_postrating', 'geodir_term_review_count_force_update', 100);
|
| 181 | -add_action('transition_post_status', 'geodir_term_review_count_force_update', 100,3);
|
|
| 181 | +add_action('transition_post_status', 'geodir_term_review_count_force_update', 100, 3);
|
|
| 182 | 182 | //add_action('created_term', 'geodir_term_review_count_force_update', 100);
|
| 183 | 183 | add_action('edited_term', 'geodir_term_review_count_force_update', 100);
|
| 184 | 184 | add_action('delete_term', 'geodir_term_review_count_force_update', 100);
|
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | function geodir_unset_prev_theme_nav_location($newname) |
| 224 | 224 | {
|
| 225 | - $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 225 | + $geodir_theme_location = get_option('geodir_theme_location_nav_'.$newname);
|
|
| 226 | 226 | if ($geodir_theme_location) {
|
| 227 | 227 | update_option('geodir_theme_location_nav', $geodir_theme_location);
|
| 228 | 228 | } else {
|
@@ -320,8 +320,8 @@ discard block |
||
| 320 | 320 | |
| 321 | 321 | /////// GEO DIRECOTORY CUSTOM HOOKS /// |
| 322 | 322 | |
| 323 | -add_action('geodir_before_tab_content', 'geodir_before_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 324 | -add_action('geodir_after_tab_content', 'geodir_after_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 323 | +add_action('geodir_before_tab_content', 'geodir_before_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 324 | +add_action('geodir_after_tab_content', 'geodir_after_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 325 | 325 | |
| 326 | 326 | // Detail page sidebar content |
| 327 | 327 | add_action('geodir_detail_page_sidebar', 'geodir_detail_page_sidebar_content_sorting', 1);
|
@@ -421,8 +421,8 @@ discard block |
||
| 421 | 421 | do_action('geodir_after_social_sharing_buttons');
|
| 422 | 422 | $content_html = ob_get_clean(); |
| 423 | 423 | if (trim($content_html) != '') |
| 424 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | - if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 424 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">'.$content_html.'</div>'; |
|
| 425 | + if ((int) get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | 426 | /** |
| 427 | 427 | * Filter the geodir_social_sharing_buttons() function content. |
| 428 | 428 | * |
@@ -462,12 +462,12 @@ discard block |
||
| 462 | 462 | $post_id = $post->ID; |
| 463 | 463 | |
| 464 | 464 | if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
| 465 | - $post_id = (int)$_REQUEST['pid']; |
|
| 465 | + $post_id = (int) $_REQUEST['pid']; |
|
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | $postlink = get_permalink(geodir_add_listing_page_id()); |
| 469 | 469 | $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
| 470 | - echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 470 | + echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="'.esc_url($editlink).'">'.__('Edit this Post', 'geodirectory').'</a></p>';
|
|
| 471 | 471 | } |
| 472 | 472 | }// end of if, if its a preview or not |
| 473 | 473 | /** |
@@ -478,8 +478,8 @@ discard block |
||
| 478 | 478 | do_action('geodir_after_edit_post_link');
|
| 479 | 479 | $content_html = ob_get_clean(); |
| 480 | 480 | if (trim($content_html) != '') |
| 481 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | - if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 481 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">'.$content_html.'</div>'; |
|
| 482 | + if ((int) get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | 483 | /** |
| 484 | 484 | * Filter the geodir_edit_post_link() function content. |
| 485 | 485 | * |
@@ -500,8 +500,8 @@ discard block |
||
| 500 | 500 | */ |
| 501 | 501 | function geodir_detail_page_google_analytics() |
| 502 | 502 | {
|
| 503 | - global $post,$preview; |
|
| 504 | - if($preview){return '';}
|
|
| 503 | + global $post, $preview; |
|
| 504 | + if ($preview) {return ''; }
|
|
| 505 | 505 | $package_info = array(); |
| 506 | 506 | $package_info = geodir_post_package_info($package_info, $post); |
| 507 | 507 | |
@@ -533,14 +533,14 @@ discard block |
||
| 533 | 533 | $hide_refresh = get_option('geodir_ga_auto_refresh');
|
| 534 | 534 | |
| 535 | 535 | $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
| 536 | - if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 536 | + if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id() == $post->post_author || current_user_can('manage_options'))) {
|
|
| 537 | 537 | $page_url = urlencode($_SERVER['REQUEST_URI']); |
| 538 | 538 | ?> |
| 539 | 539 | <script type="text/javascript"> |
| 540 | 540 | var gd_gaTimeOut; |
| 541 | - var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
|
|
| 542 | - var gd_gaHideRefresh = <?php echo (int)$hide_refresh;?>; |
|
| 543 | - var gd_gaAutoRefresh = <?php echo $auto_refresh;?>; |
|
| 541 | + var gd_gaTime = parseInt('<?php echo $refresh_time; ?>');
|
|
| 542 | + var gd_gaHideRefresh = <?php echo (int) $hide_refresh; ?>; |
|
| 543 | + var gd_gaAutoRefresh = <?php echo $auto_refresh; ?>; |
|
| 544 | 544 | ga_data1 = false; |
| 545 | 545 | ga_data2 = false; |
| 546 | 546 | ga_data3 = false; |
@@ -681,7 +681,7 @@ discard block |
||
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | function gdga_noResults() {
|
| 684 | - jQuery('#gdga-chart-container').html('<?php _e('No results available','geodirectory');?>');
|
|
| 684 | + jQuery('#gdga-chart-container').html('<?php _e('No results available', 'geodirectory'); ?>');
|
|
| 685 | 685 | jQuery('#gdga-legend-container').html('');
|
| 686 | 686 | } |
| 687 | 687 | |
@@ -713,18 +713,18 @@ discard block |
||
| 713 | 713 | var data2 = results[1].rows.map(function(row) { return +row[2]; });
|
| 714 | 714 | //var labelsN = results[0].rows.map(function(row) { return +row[1]; });
|
| 715 | 715 | |
| 716 | - var labels = ['<?php _e('Jan', 'geodirectory');?>',
|
|
| 717 | - '<?php _e('Feb', 'geodirectory');?>',
|
|
| 718 | - '<?php _e('Mar', 'geodirectory');?>',
|
|
| 719 | - '<?php _e('Apr', 'geodirectory');?>',
|
|
| 720 | - '<?php _e('May', 'geodirectory');?>',
|
|
| 721 | - '<?php _e('Jun', 'geodirectory');?>',
|
|
| 722 | - '<?php _e('Jul', 'geodirectory');?>',
|
|
| 723 | - '<?php _e('Aug', 'geodirectory');?>',
|
|
| 724 | - '<?php _e('Sep', 'geodirectory');?>',
|
|
| 725 | - '<?php _e('Oct', 'geodirectory');?>',
|
|
| 726 | - '<?php _e('Nov', 'geodirectory');?>',
|
|
| 727 | - '<?php _e('Dec', 'geodirectory');?>'];
|
|
| 716 | + var labels = ['<?php _e('Jan', 'geodirectory'); ?>',
|
|
| 717 | + '<?php _e('Feb', 'geodirectory'); ?>',
|
|
| 718 | + '<?php _e('Mar', 'geodirectory'); ?>',
|
|
| 719 | + '<?php _e('Apr', 'geodirectory'); ?>',
|
|
| 720 | + '<?php _e('May', 'geodirectory'); ?>',
|
|
| 721 | + '<?php _e('Jun', 'geodirectory'); ?>',
|
|
| 722 | + '<?php _e('Jul', 'geodirectory'); ?>',
|
|
| 723 | + '<?php _e('Aug', 'geodirectory'); ?>',
|
|
| 724 | + '<?php _e('Sep', 'geodirectory'); ?>',
|
|
| 725 | + '<?php _e('Oct', 'geodirectory'); ?>',
|
|
| 726 | + '<?php _e('Nov', 'geodirectory'); ?>',
|
|
| 727 | + '<?php _e('Dec', 'geodirectory'); ?>'];
|
|
| 728 | 728 | |
| 729 | 729 | // Ensure the data arrays are at least as long as the labels array. |
| 730 | 730 | // Chart.js bar charts don't (yet) accept sparse datasets. |
@@ -737,13 +737,13 @@ discard block |
||
| 737 | 737 | labels : labels, |
| 738 | 738 | datasets : [ |
| 739 | 739 | {
|
| 740 | - label: '<?php _e('Last Year', 'geodirectory');?>',
|
|
| 740 | + label: '<?php _e('Last Year', 'geodirectory'); ?>',
|
|
| 741 | 741 | fillColor : "rgba(220,220,220,0.5)", |
| 742 | 742 | strokeColor : "rgba(220,220,220,1)", |
| 743 | 743 | data : data2 |
| 744 | 744 | }, |
| 745 | 745 | {
|
| 746 | - label: '<?php _e('This Year', 'geodirectory');?>',
|
|
| 746 | + label: '<?php _e('This Year', 'geodirectory'); ?>',
|
|
| 747 | 747 | fillColor : "rgba(151,187,205,0.5)", |
| 748 | 748 | strokeColor : "rgba(151,187,205,1)", |
| 749 | 749 | data : data1 |
@@ -788,30 +788,30 @@ discard block |
||
| 788 | 788 | |
| 789 | 789 | <?php |
| 790 | 790 | // Here we list the shorthand days of the week so it can be used in translation. |
| 791 | - __("Mon",'geodirectory');
|
|
| 792 | - __("Tue",'geodirectory');
|
|
| 793 | - __("Wed",'geodirectory');
|
|
| 794 | - __("Thu",'geodirectory');
|
|
| 795 | - __("Fri",'geodirectory');
|
|
| 796 | - __("Sat",'geodirectory');
|
|
| 797 | - __("Sun",'geodirectory');
|
|
| 791 | + __("Mon", 'geodirectory');
|
|
| 792 | + __("Tue", 'geodirectory');
|
|
| 793 | + __("Wed", 'geodirectory');
|
|
| 794 | + __("Thu", 'geodirectory');
|
|
| 795 | + __("Fri", 'geodirectory');
|
|
| 796 | + __("Sat", 'geodirectory');
|
|
| 797 | + __("Sun", 'geodirectory');
|
|
| 798 | 798 | ?> |
| 799 | 799 | |
| 800 | 800 | labels = [ |
| 801 | - "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
|
|
| 802 | - "<?php _e(date('D', strtotime("+2 day")),'geodirectory'); ?>",
|
|
| 803 | - "<?php _e(date('D', strtotime("+3 day")),'geodirectory'); ?>",
|
|
| 804 | - "<?php _e(date('D', strtotime("+4 day")),'geodirectory'); ?>",
|
|
| 805 | - "<?php _e(date('D', strtotime("+5 day")),'geodirectory'); ?>",
|
|
| 806 | - "<?php _e(date('D', strtotime("+6 day")),'geodirectory'); ?>",
|
|
| 807 | - "<?php _e(date('D', strtotime("+7 day")),'geodirectory'); ?>"
|
|
| 801 | + "<?php _e(date('D', strtotime("+1 day")), 'geodirectory'); ?>",
|
|
| 802 | + "<?php _e(date('D', strtotime("+2 day")), 'geodirectory'); ?>",
|
|
| 803 | + "<?php _e(date('D', strtotime("+3 day")), 'geodirectory'); ?>",
|
|
| 804 | + "<?php _e(date('D', strtotime("+4 day")), 'geodirectory'); ?>",
|
|
| 805 | + "<?php _e(date('D', strtotime("+5 day")), 'geodirectory'); ?>",
|
|
| 806 | + "<?php _e(date('D', strtotime("+6 day")), 'geodirectory'); ?>",
|
|
| 807 | + "<?php _e(date('D', strtotime("+7 day")), 'geodirectory'); ?>"
|
|
| 808 | 808 | ]; |
| 809 | 809 | |
| 810 | 810 | var data = {
|
| 811 | 811 | labels : labels, |
| 812 | 812 | datasets : [ |
| 813 | 813 | {
|
| 814 | - label: '<?php _e('Last Week', 'geodirectory');?>',
|
|
| 814 | + label: '<?php _e('Last Week', 'geodirectory'); ?>',
|
|
| 815 | 815 | fillColor : "rgba(220,220,220,0.5)", |
| 816 | 816 | strokeColor : "rgba(220,220,220,1)", |
| 817 | 817 | pointColor : "rgba(220,220,220,1)", |
@@ -819,7 +819,7 @@ discard block |
||
| 819 | 819 | data : data2 |
| 820 | 820 | }, |
| 821 | 821 | {
|
| 822 | - label: '<?php _e('This Week', 'geodirectory');?>',
|
|
| 822 | + label: '<?php _e('This Week', 'geodirectory'); ?>',
|
|
| 823 | 823 | fillColor : "rgba(151,187,205,0.5)", |
| 824 | 824 | strokeColor : "rgba(151,187,205,1)", |
| 825 | 825 | pointColor : "rgba(151,187,205,1)", |
@@ -1026,18 +1026,18 @@ discard block |
||
| 1026 | 1026 | </style> |
| 1027 | 1027 | <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script> |
| 1028 | 1028 | <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script> |
| 1029 | - <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory');?></button>
|
|
| 1029 | + <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory'); ?></button>
|
|
| 1030 | 1030 | <span id="ga_stats" class="gdga-analytics-box" style="display:none"> |
| 1031 | - <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory');?></div>
|
|
| 1031 | + <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory'); ?></div>
|
|
| 1032 | 1032 | <div id="gd-active-users-container"> |
| 1033 | - <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory');?>"></i><?php _e("Active Users:", 'geodirectory');?>
|
|
| 1033 | + <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory'); ?>"></i><?php _e("Active Users:", 'geodirectory'); ?>
|
|
| 1034 | 1034 | <b class="gd-ActiveUsers-value">0</b> |
| 1035 | 1035 | </div> |
| 1036 | 1036 | </div> |
| 1037 | 1037 | <select id="gdga-select-analytic" onchange="gdga_select_option();" style="display: none;"> |
| 1038 | - <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory');?></option>
|
|
| 1039 | - <option value="years"><?php _e("This Year vs Last Year", 'geodirectory');?></option>
|
|
| 1040 | - <option value="country"><?php _e("Top Countries", 'geodirectory');?></option>
|
|
| 1038 | + <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory'); ?></option>
|
|
| 1039 | + <option value="years"><?php _e("This Year vs Last Year", 'geodirectory'); ?></option>
|
|
| 1040 | + <option value="country"><?php _e("Top Countries", 'geodirectory'); ?></option>
|
|
| 1041 | 1041 | </select> |
| 1042 | 1042 | <div class="Chartjs-figure" id="gdga-chart-container"></div> |
| 1043 | 1043 | <ol class="Chartjs-legend" id="gdga-legend-container"></ol> |
@@ -1053,8 +1053,8 @@ discard block |
||
| 1053 | 1053 | do_action('geodir_after_google_analytics');
|
| 1054 | 1054 | $content_html = ob_get_clean(); |
| 1055 | 1055 | if (trim($content_html) != '') |
| 1056 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | - if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1056 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">'.$content_html.'</div>'; |
|
| 1057 | + if ((int) get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | 1058 | /** |
| 1059 | 1059 | * Filter the geodir_edit_post_link() function content. |
| 1060 | 1060 | * |
@@ -1110,10 +1110,10 @@ discard block |
||
| 1110 | 1110 | |
| 1111 | 1111 | $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
|
| 1112 | 1112 | |
| 1113 | - $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
|
|
| 1113 | + $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="'.$post_avgratings.'">'.$post_avgratings.'</span> / <span itemprop="best" content="5">5</span> '.__("based on", 'geodirectory').' </span><span class="count" itemprop="count" content="'.$comment_count.'">'.$comment_count.' '.$reviews_text.'</span><br />';
|
|
| 1114 | 1114 | |
| 1115 | 1115 | $html .= '<span class="item">'; |
| 1116 | - $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1116 | + $html .= '<span class="fn" itemprop="itemreviewed">'.$post->post_title.'</span>'; |
|
| 1117 | 1117 | |
| 1118 | 1118 | if ($post_images) {
|
| 1119 | 1119 | foreach ($post_images as $img) {
|
@@ -1123,7 +1123,7 @@ discard block |
||
| 1123 | 1123 | } |
| 1124 | 1124 | |
| 1125 | 1125 | if (isset($post_img) && $post_img) {
|
| 1126 | - $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1126 | + $html .= '<br /><img src="'.$post_img.'" class="photo" alt="'.esc_attr($post->post_title).'" itemprop="photo" content="'.$post_img.'" class="photo" />'; |
|
| 1127 | 1127 | } |
| 1128 | 1128 | |
| 1129 | 1129 | $html .= '</span>'; |
@@ -1150,9 +1150,9 @@ discard block |
||
| 1150 | 1150 | do_action('geodir_after_detail_page_review_rating');
|
| 1151 | 1151 | $content_html = ob_get_clean(); |
| 1152 | 1152 | if (trim($content_html) != '') {
|
| 1153 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1153 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">'.$content_html.'</div>'; |
|
| 1154 | 1154 | } |
| 1155 | - if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1155 | + if ((int) get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1156 | 1156 | /** |
| 1157 | 1157 | * Filter the geodir_detail_page_review_rating() function content. |
| 1158 | 1158 | * |
@@ -1191,8 +1191,8 @@ discard block |
||
| 1191 | 1191 | |
| 1192 | 1192 | $content_html = ob_get_clean(); |
| 1193 | 1193 | if (trim($content_html) != '') |
| 1194 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1195 | - if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1194 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">'.$content_html.'</div>'; |
|
| 1195 | + if ((int) get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1196 | 1196 | /** |
| 1197 | 1197 | * Filter the output html for function geodir_detail_page_more_info(). |
| 1198 | 1198 | * |
@@ -1291,7 +1291,7 @@ discard block |
||
| 1291 | 1291 | 'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
|
| 1292 | 1292 | 'geodir_txt_form_wait' => __('Wait...', 'geodirectory'),
|
| 1293 | 1293 | 'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
|
| 1294 | - 'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
|
| 1294 | + 'fa_rating' => (int) get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
|
| 1295 | 1295 | 'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
|
| 1296 | 1296 | 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
| 1297 | 1297 | 'geodir_map_name' => geodir_map_name(), |
@@ -1315,10 +1315,10 @@ discard block |
||
| 1315 | 1315 | foreach ($arr_alert_msg as $key => $value) {
|
| 1316 | 1316 | if (!is_scalar($value)) |
| 1317 | 1317 | continue; |
| 1318 | - $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1318 | + $arr_alert_msg[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
| 1319 | 1319 | } |
| 1320 | 1320 | |
| 1321 | - $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1321 | + $script = "var geodir_all_js_msg = ".json_encode($arr_alert_msg).';'; |
|
| 1322 | 1322 | echo '<script>'; |
| 1323 | 1323 | echo $script; |
| 1324 | 1324 | echo '</script>'; |
@@ -1408,7 +1408,7 @@ discard block |
||
| 1408 | 1408 | $geodir_old_sidebars = get_option('geodir_sidebars');
|
| 1409 | 1409 | if (is_array($geodir_old_sidebars)) {
|
| 1410 | 1410 | foreach ($geodir_old_sidebars as $key => $val) {
|
| 1411 | - if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1411 | + if (0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1412 | 1412 | {
|
| 1413 | 1413 | $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
| 1414 | 1414 | } |
@@ -1487,7 +1487,7 @@ discard block |
||
| 1487 | 1487 | global $post; |
| 1488 | 1488 | $term_condition = ''; |
| 1489 | 1489 | if (isset($_REQUEST['backandedit'])) {
|
| 1490 | - $post = (object)$gd_session->get('listing');
|
|
| 1490 | + $post = (object) $gd_session->get('listing');
|
|
| 1491 | 1491 | $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
| 1492 | 1492 | } |
| 1493 | 1493 | |
@@ -1501,7 +1501,7 @@ discard block |
||
| 1501 | 1501 | echo 'checked="checked"'; |
| 1502 | 1502 | } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
| 1503 | 1503 | class="geodir_textfield" value="1" |
| 1504 | - style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
|
| 1504 | + style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if ($terms_page) { echo get_permalink($terms_page); }?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
|
| 1505 | 1505 | </span> |
| 1506 | 1506 | </div> |
| 1507 | 1507 | <span class="geodir_message_error"><?php if (isset($required_msg)) {
|
@@ -1541,7 +1541,7 @@ discard block |
||
| 1541 | 1541 | /** This action is documented in geodirectory_template_actions.php */ |
| 1542 | 1542 | $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
| 1543 | 1543 | |
| 1544 | - if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1544 | + if (!($desc_limit === '' || (int) $desc_limit > 0)) {
|
|
| 1545 | 1545 | $is_display = false; |
| 1546 | 1546 | } |
| 1547 | 1547 | } |
@@ -1589,16 +1589,16 @@ discard block |
||
| 1589 | 1589 | global $wpdb, $plugin_prefix; |
| 1590 | 1590 | |
| 1591 | 1591 | // Remove unused virtual page |
| 1592 | - $listings_page_id = (int)get_option('geodir_listing_page');
|
|
| 1592 | + $listings_page_id = (int) get_option('geodir_listing_page');
|
|
| 1593 | 1593 | if ($listings_page_id) {
|
| 1594 | - $wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
|
| 1594 | + $wpdb->query($wpdb->prepare("DELETE FROM ".$wpdb->posts." WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
|
| 1595 | 1595 | delete_option('geodir_listing_page');
|
| 1596 | 1596 | } |
| 1597 | 1597 | |
| 1598 | 1598 | if (!get_option('geodir_changes_in_custom_fields_table')) {
|
| 1599 | 1599 | $wpdb->query( |
| 1600 | 1600 | $wpdb->prepare( |
| 1601 | - "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1601 | + "UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1602 | 1602 | array('1', '1', 'admin')
|
| 1603 | 1603 | ) |
| 1604 | 1604 | ); |
@@ -1606,9 +1606,9 @@ discard block |
||
| 1606 | 1606 | |
| 1607 | 1607 | /* --- terms meta value set --- */ |
| 1608 | 1608 | |
| 1609 | - update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1609 | + update_option('geodir_default_marker_icon', geodir_plugin_url().'/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1610 | 1610 | |
| 1611 | - $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1611 | + $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1612 | 1612 | |
| 1613 | 1613 | if (!empty($options_data)) {
|
| 1614 | 1614 | |
@@ -1616,7 +1616,7 @@ discard block |
||
| 1616 | 1616 | |
| 1617 | 1617 | $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
| 1618 | 1618 | |
| 1619 | - $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1619 | + $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM ".$wpdb->prefix."term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1620 | 1620 | |
| 1621 | 1621 | if (!empty($taxonomies_data)) {
|
| 1622 | 1622 | |
@@ -1625,17 +1625,17 @@ discard block |
||
| 1625 | 1625 | $taxObject = get_taxonomy($taxobj->taxonomy); |
| 1626 | 1626 | $post_type = $taxObject->object_type[0]; |
| 1627 | 1627 | |
| 1628 | - $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1628 | + $opt_value = 'tax_meta_'.$post_type.'_'.$option_val; |
|
| 1629 | 1629 | |
| 1630 | - $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1630 | + $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM ".$wpdb->prefix."options WHERE option_name=%s", array('tax_meta_'.$option_val)));
|
|
| 1631 | 1631 | |
| 1632 | 1632 | if ($duplicate_data) {
|
| 1633 | 1633 | |
| 1634 | - $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1634 | + $wpdb->query($wpdb->prepare("UPDATE ".$wpdb->prefix."options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1635 | 1635 | |
| 1636 | 1636 | } else {
|
| 1637 | 1637 | |
| 1638 | - $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1638 | + $wpdb->query($wpdb->prepare("INSERT INTO ".$wpdb->prefix."options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1639 | 1639 | |
| 1640 | 1640 | } |
| 1641 | 1641 | |
@@ -1669,14 +1669,14 @@ discard block |
||
| 1669 | 1669 | |
| 1670 | 1670 | global $wpdb, $table_prefix; |
| 1671 | 1671 | |
| 1672 | - $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1672 | + $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($slug)));
|
|
| 1673 | 1673 | |
| 1674 | 1674 | if ($slug_exists) {
|
| 1675 | 1675 | |
| 1676 | 1676 | $suffix = 1; |
| 1677 | 1677 | do {
|
| 1678 | - $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1679 | - $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1678 | + $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix"; |
|
| 1679 | + $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1680 | 1680 | $suffix++; |
| 1681 | 1681 | } while ($location_slug_check && $suffix < 100); |
| 1682 | 1682 | |
@@ -1730,7 +1730,7 @@ discard block |
||
| 1730 | 1730 | |
| 1731 | 1731 | $suffix = 1; |
| 1732 | 1732 | do {
|
| 1733 | - $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1733 | + $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix"; |
|
| 1734 | 1734 | |
| 1735 | 1735 | /** This action is documented in geodirectory_hooks_actions.php */ |
| 1736 | 1736 | $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
@@ -1742,7 +1742,7 @@ discard block |
||
| 1742 | 1742 | |
| 1743 | 1743 | //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
| 1744 | 1744 | |
| 1745 | - $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1745 | + $wpdb->query($wpdb->prepare("UPDATE ".$table_prefix."terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1746 | 1746 | |
| 1747 | 1747 | } |
| 1748 | 1748 | |
@@ -1751,18 +1751,18 @@ discard block |
||
| 1751 | 1751 | $post_type = !empty($taxonomy_obj) ? $taxonomy_obj->object_type[0] : NULL; |
| 1752 | 1752 | |
| 1753 | 1753 | $post_types = geodir_get_posttypes(); |
| 1754 | - if ($post_type && in_array($post_type, $post_types) && $post_type . '_tags' == $taxonomy) {
|
|
| 1755 | - $posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM " . $wpdb->term_relationships . " WHERE term_taxonomy_id = %d", array($tt_id)));
|
|
| 1754 | + if ($post_type && in_array($post_type, $post_types) && $post_type.'_tags' == $taxonomy) {
|
|
| 1755 | + $posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM ".$wpdb->term_relationships." WHERE term_taxonomy_id = %d", array($tt_id)));
|
|
| 1756 | 1756 | |
| 1757 | 1757 | if (!empty($posts_obj)) {
|
| 1758 | 1758 | foreach ($posts_obj as $post_obj) {
|
| 1759 | 1759 | $post_id = $post_obj->object_id; |
| 1760 | 1760 | |
| 1761 | - $raw_tags = wp_get_object_terms($post_id, $post_type . '_tags', array('fields' => 'names'));
|
|
| 1761 | + $raw_tags = wp_get_object_terms($post_id, $post_type.'_tags', array('fields' => 'names'));
|
|
| 1762 | 1762 | $post_tags = !empty($raw_tags) ? implode(',', $raw_tags) : '';
|
| 1763 | 1763 | |
| 1764 | - $listing_table = $plugin_prefix . $post_type . '_detail'; |
|
| 1765 | - $wpdb->query($wpdb->prepare("UPDATE " . $listing_table . " SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
|
|
| 1764 | + $listing_table = $plugin_prefix.$post_type.'_detail'; |
|
| 1765 | + $wpdb->query($wpdb->prepare("UPDATE ".$listing_table." SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
|
|
| 1766 | 1766 | } |
| 1767 | 1767 | } |
| 1768 | 1768 | } |
@@ -1796,7 +1796,7 @@ discard block |
||
| 1796 | 1796 | if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
| 1797 | 1797 | return $slug_exists = true; |
| 1798 | 1798 | |
| 1799 | - if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1799 | + if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1800 | 1800 | return $slug_exists = true; |
| 1801 | 1801 | |
| 1802 | 1802 | return $slug_exists; |
@@ -1836,43 +1836,43 @@ discard block |
||
| 1836 | 1836 | |
| 1837 | 1837 | |
| 1838 | 1838 | $gd_page = ''; |
| 1839 | - if(geodir_is_page('home')){
|
|
| 1839 | + if (geodir_is_page('home')) {
|
|
| 1840 | 1840 | $gd_page = 'home'; |
| 1841 | 1841 | $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
| 1842 | 1842 | } |
| 1843 | - elseif(geodir_is_page('detail')){
|
|
| 1843 | + elseif (geodir_is_page('detail')) {
|
|
| 1844 | 1844 | $gd_page = 'detail'; |
| 1845 | 1845 | $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
| 1846 | 1846 | } |
| 1847 | - elseif(geodir_is_page('pt')){
|
|
| 1847 | + elseif (geodir_is_page('pt')) {
|
|
| 1848 | 1848 | $gd_page = 'pt'; |
| 1849 | 1849 | $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
| 1850 | 1850 | } |
| 1851 | - elseif(geodir_is_page('listing')){
|
|
| 1851 | + elseif (geodir_is_page('listing')) {
|
|
| 1852 | 1852 | $gd_page = 'listing'; |
| 1853 | 1853 | $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
| 1854 | 1854 | } |
| 1855 | - elseif(geodir_is_page('location')){
|
|
| 1855 | + elseif (geodir_is_page('location')) {
|
|
| 1856 | 1856 | $gd_page = 'location'; |
| 1857 | 1857 | $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
| 1858 | 1858 | } |
| 1859 | - elseif(geodir_is_page('search')){
|
|
| 1859 | + elseif (geodir_is_page('search')) {
|
|
| 1860 | 1860 | $gd_page = 'search'; |
| 1861 | 1861 | $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
| 1862 | 1862 | } |
| 1863 | - elseif(geodir_is_page('add-listing')){
|
|
| 1863 | + elseif (geodir_is_page('add-listing')) {
|
|
| 1864 | 1864 | $gd_page = 'add-listing'; |
| 1865 | 1865 | $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
| 1866 | 1866 | } |
| 1867 | - elseif(geodir_is_page('author')){
|
|
| 1867 | + elseif (geodir_is_page('author')) {
|
|
| 1868 | 1868 | $gd_page = 'author'; |
| 1869 | 1869 | $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
| 1870 | 1870 | } |
| 1871 | - elseif(geodir_is_page('login')){
|
|
| 1871 | + elseif (geodir_is_page('login')) {
|
|
| 1872 | 1872 | $gd_page = 'login'; |
| 1873 | 1873 | $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
| 1874 | 1874 | } |
| 1875 | - elseif(geodir_is_page('listing-success')){
|
|
| 1875 | + elseif (geodir_is_page('listing-success')) {
|
|
| 1876 | 1876 | $gd_page = 'listing-success'; |
| 1877 | 1877 | $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
| 1878 | 1878 | } |
@@ -1904,12 +1904,12 @@ discard block |
||
| 1904 | 1904 | |
| 1905 | 1905 | if (!get_option('geodir_set_post_attachments')) {
|
| 1906 | 1906 | |
| 1907 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1908 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1907 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 1908 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
| 1909 | 1909 | |
| 1910 | 1910 | $all_postypes = geodir_get_posttypes(); |
| 1911 | 1911 | |
| 1912 | - foreach($all_postypes as $post_type){
|
|
| 1912 | + foreach ($all_postypes as $post_type) {
|
|
| 1913 | 1913 | $args = array( |
| 1914 | 1914 | 'posts_per_page' => -1, |
| 1915 | 1915 | 'post_type' => $post_type, |
@@ -2003,7 +2003,7 @@ discard block |
||
| 2003 | 2003 | {
|
| 2004 | 2004 | $user_id = get_current_user_id(); |
| 2005 | 2005 | |
| 2006 | - if(!$user_id){return $post;}
|
|
| 2006 | + if (!$user_id) {return $post; }
|
|
| 2007 | 2007 | |
| 2008 | 2008 | $gd_post_types = geodir_get_posttypes(); |
| 2009 | 2009 | |
@@ -2112,7 +2112,7 @@ discard block |
||
| 2112 | 2112 | |
| 2113 | 2113 | if (array_key_exists('post_video', $tabs_arr)) {
|
| 2114 | 2114 | |
| 2115 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2115 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2116 | 2116 | |
| 2117 | 2117 | if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
| 2118 | 2118 | $tabs_arr['post_video']['heading_text'] = $field_title; |
@@ -2120,7 +2120,7 @@ discard block |
||
| 2120 | 2120 | |
| 2121 | 2121 | if (array_key_exists('special_offers', $tabs_arr)) {
|
| 2122 | 2122 | |
| 2123 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2123 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2124 | 2124 | |
| 2125 | 2125 | if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
| 2126 | 2126 | $tabs_arr['special_offers']['heading_text'] = $field_title; |
@@ -2141,7 +2141,7 @@ discard block |
||
| 2141 | 2141 | */ |
| 2142 | 2142 | function geodir_remove_template_redirect_actions() |
| 2143 | 2143 | {
|
| 2144 | - if (geodir_is_page('login')){
|
|
| 2144 | + if (geodir_is_page('login')) {
|
|
| 2145 | 2145 | remove_all_actions('template_redirect');
|
| 2146 | 2146 | remove_action('init', 'avia_modify_front', 10);
|
| 2147 | 2147 | } |
@@ -2188,25 +2188,25 @@ discard block |
||
| 2188 | 2188 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
| 2189 | 2189 | |
| 2190 | 2190 | $wpdb->query( |
| 2191 | - $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2191 | + $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d AND file=%s ",
|
|
| 2192 | 2192 | array($post_id, $split_img_file_path) |
| 2193 | 2193 | ) |
| 2194 | 2194 | ); |
| 2195 | 2195 | |
| 2196 | 2196 | $attachment_data = $wpdb->get_row( |
| 2197 | - $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2197 | + $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=%d",
|
|
| 2198 | 2198 | array($post_id) |
| 2199 | 2199 | ) |
| 2200 | 2200 | ); |
| 2201 | 2201 | |
| 2202 | 2202 | if (!empty($attachment_data)) {
|
| 2203 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2203 | + $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
|
|
| 2204 | 2204 | } |
| 2205 | 2205 | |
| 2206 | 2206 | |
| 2207 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2207 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
| 2208 | 2208 | |
| 2209 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2209 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='' WHERE post_id =".$post_id);
|
|
| 2210 | 2210 | |
| 2211 | 2211 | geodir_set_wp_featured_image($post_id); |
| 2212 | 2212 | |
@@ -2234,9 +2234,9 @@ discard block |
||
| 2234 | 2234 | |
| 2235 | 2235 | foreach ($all_postypes as $posttype) {
|
| 2236 | 2236 | |
| 2237 | - $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2237 | + $tablename = $plugin_prefix.$posttype.'_detail'; |
|
| 2238 | 2238 | |
| 2239 | - $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2239 | + $get_post_data = $wpdb->get_results("SELECT post_id FROM ".$tablename);
|
|
| 2240 | 2240 | |
| 2241 | 2241 | if (!empty($get_post_data)) {
|
| 2242 | 2242 | |
@@ -2244,7 +2244,7 @@ discard block |
||
| 2244 | 2244 | |
| 2245 | 2245 | $post_id = $data->post_id; |
| 2246 | 2246 | |
| 2247 | - $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2247 | + $attachment_data = $wpdb->get_results("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id =".$post_id." AND file!=''");
|
|
| 2248 | 2248 | |
| 2249 | 2249 | if (!empty($attachment_data)) {
|
| 2250 | 2250 | |
@@ -2261,22 +2261,22 @@ discard block |
||
| 2261 | 2261 | |
| 2262 | 2262 | $file_name = $file_info['basename']; |
| 2263 | 2263 | |
| 2264 | - $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2264 | + $img_arr['path'] = $uploads_path.$sub_dir.'/'.$file_name; |
|
| 2265 | 2265 | |
| 2266 | 2266 | if (!file_exists($img_arr['path'])) {
|
| 2267 | 2267 | |
| 2268 | - $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2268 | + $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ID=".$attach->ID);
|
|
| 2269 | 2269 | |
| 2270 | 2270 | } |
| 2271 | 2271 | |
| 2272 | 2272 | } |
| 2273 | 2273 | |
| 2274 | - $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2274 | + $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=".$post_id." GROUP BY post_id");
|
|
| 2275 | 2275 | |
| 2276 | 2276 | if (!empty($attachment_data)) {
|
| 2277 | 2277 | |
| 2278 | 2278 | if ($attachment_data->ID) |
| 2279 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2279 | + $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
|
|
| 2280 | 2280 | |
| 2281 | 2281 | } else {
|
| 2282 | 2282 | |
@@ -2290,7 +2290,7 @@ discard block |
||
| 2290 | 2290 | |
| 2291 | 2291 | } |
| 2292 | 2292 | |
| 2293 | - $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2293 | + $wpdb->query("UPDATE ".$tablename." SET featured_image='' WHERE post_id =".$post_id);
|
|
| 2294 | 2294 | |
| 2295 | 2295 | geodir_set_wp_featured_image($post_id); |
| 2296 | 2296 | |
@@ -2319,7 +2319,7 @@ discard block |
||
| 2319 | 2319 | {
|
| 2320 | 2320 | |
| 2321 | 2321 | if (!get_option('geodir_default_rating_star_icon')) {
|
| 2322 | - update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2322 | + update_option('geodir_default_rating_star_icon', geodir_plugin_url().'/geodirectory-assets/images/stars.png');
|
|
| 2323 | 2323 | } |
| 2324 | 2324 | |
| 2325 | 2325 | } |
@@ -2336,10 +2336,10 @@ discard block |
||
| 2336 | 2336 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 2337 | 2337 | * @return array User listing count for each post type. |
| 2338 | 2338 | */ |
| 2339 | -function geodir_user_post_listing_count($user_id=null) |
|
| 2339 | +function geodir_user_post_listing_count($user_id = null) |
|
| 2340 | 2340 | {
|
| 2341 | 2341 | global $wpdb, $plugin_prefix, $current_user; |
| 2342 | - if(!$user_id){
|
|
| 2342 | + if (!$user_id) {
|
|
| 2343 | 2343 | $user_id = $current_user->ID; |
| 2344 | 2344 | } |
| 2345 | 2345 | |
@@ -2350,7 +2350,7 @@ discard block |
||
| 2350 | 2350 | $user_listing = array(); |
| 2351 | 2351 | if (is_array($all_posts) && !empty($all_posts)) {
|
| 2352 | 2352 | foreach ($all_posts as $ptype) {
|
| 2353 | - $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2353 | + $total_posts = $wpdb->get_var("SELECT count( ID ) FROM ".$wpdb->prefix."posts WHERE post_author=".$user_id." AND post_type='".$ptype."' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2354 | 2354 | |
| 2355 | 2355 | if ($total_posts > 0) {
|
| 2356 | 2356 | $user_listing[$ptype] = $total_posts; |
@@ -2392,19 +2392,19 @@ discard block |
||
| 2392 | 2392 | $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
| 2393 | 2393 | |
| 2394 | 2394 | //remove video and special offers if it is already set to show |
| 2395 | - if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2395 | + if (isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']) {
|
|
| 2396 | 2396 | $unset_video = true; |
| 2397 | 2397 | } |
| 2398 | 2398 | |
| 2399 | - if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2399 | + if (isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']) {
|
|
| 2400 | 2400 | $unset_special_offers = true; |
| 2401 | 2401 | } |
| 2402 | - if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2403 | - foreach($custom_fields as $key => $custom_field){
|
|
| 2404 | - if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2402 | + if (isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)) {
|
|
| 2403 | + foreach ($custom_fields as $key => $custom_field) {
|
|
| 2404 | + if ($custom_field['name'] == 'geodir_video' && isset($unset_video)) {
|
|
| 2405 | 2405 | unset($custom_fields[$key]); |
| 2406 | 2406 | } |
| 2407 | - if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2407 | + if ($custom_field['name'] == 'geodir_special_offers' && isset($unset_special_offers)) {
|
|
| 2408 | 2408 | unset($custom_fields[$key]); |
| 2409 | 2409 | } |
| 2410 | 2410 | } |
@@ -2423,7 +2423,7 @@ discard block |
||
| 2423 | 2423 | $post->{$field_name} = $_REQUEST[$field_name];
|
| 2424 | 2424 | } |
| 2425 | 2425 | |
| 2426 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
|
|
| 2426 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
|
|
| 2427 | 2427 | if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
| 2428 | 2428 | continue; |
| 2429 | 2429 | } |
@@ -2472,21 +2472,21 @@ discard block |
||
| 2472 | 2472 | $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
| 2473 | 2473 | $variables_array['value'] = ''; |
| 2474 | 2474 | $variables_array['value'] = $post->{$type['htmlvar_name']};
|
| 2475 | - }else{
|
|
| 2475 | + } else {
|
|
| 2476 | 2476 | $i = 0; |
| 2477 | 2477 | $fieldset_count++; |
| 2478 | 2478 | $field_set_start = 1; |
| 2479 | - $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2479 | + $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_'.$fieldset_count; |
|
| 2480 | 2480 | $fieldset_arr[$fieldset_count]['label'] = $label; |
| 2481 | 2481 | } |
| 2482 | 2482 | |
| 2483 | 2483 | |
| 2484 | - if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2484 | + if (isset($type['extra_fields'])) {$extra_fields = $type['extra_fields']; }
|
|
| 2485 | 2485 | $type = stripslashes_deep($type); // strip slashes |
| 2486 | - if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2486 | + if (isset($type['extra_fields'])) {$type['extra_fields'] = $extra_fields; }
|
|
| 2487 | 2487 | $html = ''; |
| 2488 | 2488 | $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
| 2489 | - if($html_var=='post'){$html_var='post_address';}
|
|
| 2489 | + if ($html_var == 'post') {$html_var = 'post_address'; }
|
|
| 2490 | 2490 | $field_icon = geodir_field_icon_proccess($type); |
| 2491 | 2491 | $filed_type = $type['type']; |
| 2492 | 2492 | |
@@ -2499,7 +2499,7 @@ discard block |
||
| 2499 | 2499 | * @param string $fields_location The location the field is to be show. |
| 2500 | 2500 | * @param array $type The array of field values. |
| 2501 | 2501 | */ |
| 2502 | - $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2502 | + $html = apply_filters("geodir_custom_field_output_{$filed_type}", $html, $fields_location, $type);
|
|
| 2503 | 2503 | |
| 2504 | 2504 | |
| 2505 | 2505 | /** |
@@ -2545,7 +2545,7 @@ discard block |
||
| 2545 | 2545 | * @param string $htmlvar_name The field HTML var name. |
| 2546 | 2546 | */ |
| 2547 | 2547 | 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
| 2548 | - 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2548 | + 'tab_content' => '<div class="geodir-company_info field-group xxx">'.$fieldset_html.'</div>' |
|
| 2549 | 2549 | ); |
| 2550 | 2550 | } |
| 2551 | 2551 | } else {
|
@@ -2607,7 +2607,7 @@ discard block |
||
| 2607 | 2607 | } |
| 2608 | 2608 | $status .= ")</strong>"; |
| 2609 | 2609 | |
| 2610 | - $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2610 | + $html = '<span class="geodir-post-status">'.$status_icon.' <font class="geodir-status-label">'.__('Status: ', 'geodirectory').'</font>'.$status.'</span>';
|
|
| 2611 | 2611 | } |
| 2612 | 2612 | } |
| 2613 | 2613 | |
@@ -2691,7 +2691,7 @@ discard block |
||
| 2691 | 2691 | function geodir_no_rating_comment_text($content, $comment = '') |
| 2692 | 2692 | {
|
| 2693 | 2693 | if (!is_admin()) {
|
| 2694 | - return '<div class="description">' . $content . '</div>'; |
|
| 2694 | + return '<div class="description">'.$content.'</div>'; |
|
| 2695 | 2695 | } else {
|
| 2696 | 2696 | return $content; |
| 2697 | 2697 | } |
@@ -2769,7 +2769,7 @@ discard block |
||
| 2769 | 2769 | $classes[] = 'gd-no-rating'; |
| 2770 | 2770 | } |
| 2771 | 2771 | |
| 2772 | - $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2772 | + $classes[] = 'gd-map-'.geodir_map_name(); |
|
| 2773 | 2773 | |
| 2774 | 2774 | return $classes; |
| 2775 | 2775 | } |
@@ -2789,7 +2789,7 @@ discard block |
||
| 2789 | 2789 | $class .= ' gd-no-rating'; |
| 2790 | 2790 | } |
| 2791 | 2791 | |
| 2792 | - $class .= ' gd-map-' . geodir_map_name(); |
|
| 2792 | + $class .= ' gd-map-'.geodir_map_name(); |
|
| 2793 | 2793 | |
| 2794 | 2794 | return $class; |
| 2795 | 2795 | } |
@@ -2824,7 +2824,7 @@ discard block |
||
| 2824 | 2824 | * @return array Translation texts. |
| 2825 | 2825 | */ |
| 2826 | 2826 | function geodir_load_gd_options_text_translation($translation_texts = array()) {
|
| 2827 | - $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2827 | + $translation_texts = !empty($translation_texts) && is_array($translation_texts) ? $translation_texts : array(); |
|
| 2828 | 2828 | |
| 2829 | 2829 | $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
| 2830 | 2830 | |
@@ -2890,17 +2890,17 @@ discard block |
||
| 2890 | 2890 | * @param array $args The array of menu arguments. |
| 2891 | 2891 | * @return array The modified arguments. |
| 2892 | 2892 | */ |
| 2893 | -function geodir_add_nav_menu_class( $args ) |
|
| 2893 | +function geodir_add_nav_menu_class($args) |
|
| 2894 | 2894 | {
|
| 2895 | 2895 | |
| 2896 | - if(isset($args['menu_class'])){
|
|
| 2896 | + if (isset($args['menu_class'])) {
|
|
| 2897 | 2897 | $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
| 2898 | 2898 | } |
| 2899 | 2899 | |
| 2900 | 2900 | return $args; |
| 2901 | 2901 | } |
| 2902 | 2902 | |
| 2903 | -add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' ); |
|
| 2903 | +add_filter('wp_nav_menu_args', 'geodir_add_nav_menu_class');
|
|
| 2904 | 2904 | |
| 2905 | 2905 | /** |
| 2906 | 2906 | * Filters WordPress locale ID. |
@@ -13,125 +13,125 @@ discard block |
||
| 13 | 13 | * @package GeoDirectory |
| 14 | 14 | */ |
| 15 | 15 | function geodir_deactivation() {
|
| 16 | - // Update installed variable |
|
| 17 | - update_option("geodir_installed", 0);
|
|
| 16 | + // Update installed variable |
|
| 17 | + update_option("geodir_installed", 0);
|
|
| 18 | 18 | |
| 19 | - // Remove rewrite rules and then recreate rewrite rules. |
|
| 20 | - flush_rewrite_rules(); |
|
| 19 | + // Remove rewrite rules and then recreate rewrite rules. |
|
| 20 | + flush_rewrite_rules(); |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | if (!function_exists('geodir_admin_styles')) {
|
| 24 | - /** |
|
| 25 | - * Enqueue Admin Styles. |
|
| 26 | - * |
|
| 27 | - * @since 1.0.0 |
|
| 28 | - * @package GeoDirectory |
|
| 29 | - */ |
|
| 30 | - function geodir_admin_styles() {
|
|
| 31 | - wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 32 | - wp_enqueue_style('geodirectory-admin-css');
|
|
| 24 | + /** |
|
| 25 | + * Enqueue Admin Styles. |
|
| 26 | + * |
|
| 27 | + * @since 1.0.0 |
|
| 28 | + * @package GeoDirectory |
|
| 29 | + */ |
|
| 30 | + function geodir_admin_styles() {
|
|
| 31 | + wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 32 | + wp_enqueue_style('geodirectory-admin-css');
|
|
| 33 | 33 | |
| 34 | - wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 35 | - wp_enqueue_style('geodirectory-frontend-style');
|
|
| 34 | + wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 35 | + wp_enqueue_style('geodirectory-frontend-style');
|
|
| 36 | 36 | |
| 37 | - wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 38 | - wp_enqueue_style('geodir-chosen-style');
|
|
| 37 | + wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 38 | + wp_enqueue_style('geodir-chosen-style');
|
|
| 39 | 39 | |
| 40 | - wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 41 | - wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
|
| 40 | + wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 41 | + wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
|
| 42 | 42 | |
| 43 | - wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 44 | - wp_enqueue_style('geodirectory-jquery-ui-css');
|
|
| 43 | + wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 44 | + wp_enqueue_style('geodirectory-jquery-ui-css');
|
|
| 45 | 45 | |
| 46 | - wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 47 | - wp_enqueue_style('geodirectory-custom-fields-css');
|
|
| 46 | + wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 47 | + wp_enqueue_style('geodirectory-custom-fields-css');
|
|
| 48 | 48 | |
| 49 | - wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | - wp_enqueue_style('geodirectory-pluplodar-css');
|
|
| 49 | + wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | + wp_enqueue_style('geodirectory-pluplodar-css');
|
|
| 51 | 51 | |
| 52 | - wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | - wp_enqueue_style('geodir-rating-style');
|
|
| 52 | + wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | + wp_enqueue_style('geodir-rating-style');
|
|
| 54 | 54 | |
| 55 | - wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | - wp_enqueue_style('geodir-rtl-style');
|
|
| 57 | - } |
|
| 55 | + wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | + wp_enqueue_style('geodir-rtl-style');
|
|
| 57 | + } |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | if (!function_exists('geodir_admin_styles_req')) {
|
| 61 | - /** |
|
| 62 | - * Loads stylesheets from CDN. |
|
| 63 | - * |
|
| 64 | - * @since 1.0.0 |
|
| 65 | - * @package GeoDirectory |
|
| 66 | - */ |
|
| 67 | - function geodir_admin_styles_req() |
|
| 68 | - {
|
|
| 61 | + /** |
|
| 62 | + * Loads stylesheets from CDN. |
|
| 63 | + * |
|
| 64 | + * @since 1.0.0 |
|
| 65 | + * @package GeoDirectory |
|
| 66 | + */ |
|
| 67 | + function geodir_admin_styles_req() |
|
| 68 | + {
|
|
| 69 | 69 | |
| 70 | - wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
|
| 71 | - wp_enqueue_style('font-awesome');
|
|
| 70 | + wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
|
| 71 | + wp_enqueue_style('font-awesome');
|
|
| 72 | 72 | |
| 73 | - wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 74 | - wp_enqueue_script('geodirectory-admin');
|
|
| 73 | + wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 74 | + wp_enqueue_script('geodirectory-admin');
|
|
| 75 | 75 | |
| 76 | - } |
|
| 76 | + } |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | if (!function_exists('geodir_admin_scripts')) {
|
| 80 | - /** |
|
| 81 | - * Enqueue Admin Scripts. |
|
| 82 | - * |
|
| 83 | - * @since 1.0.0 |
|
| 84 | - * @package GeoDirectory |
|
| 85 | - */ |
|
| 86 | - function geodir_admin_scripts() |
|
| 87 | - {
|
|
| 88 | - $geodir_map_name = geodir_map_name(); |
|
| 80 | + /** |
|
| 81 | + * Enqueue Admin Scripts. |
|
| 82 | + * |
|
| 83 | + * @since 1.0.0 |
|
| 84 | + * @package GeoDirectory |
|
| 85 | + */ |
|
| 86 | + function geodir_admin_scripts() |
|
| 87 | + {
|
|
| 88 | + $geodir_map_name = geodir_map_name(); |
|
| 89 | 89 | |
| 90 | - wp_enqueue_script('jquery');
|
|
| 90 | + wp_enqueue_script('jquery');
|
|
| 91 | 91 | |
| 92 | - wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 92 | + wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 93 | 93 | |
| 94 | - wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 95 | - wp_enqueue_script('chosen');
|
|
| 94 | + wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 95 | + wp_enqueue_script('chosen');
|
|
| 96 | 96 | |
| 97 | - wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 98 | - wp_enqueue_script('geodirectory-choose-ajax');
|
|
| 97 | + wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 98 | + wp_enqueue_script('geodirectory-choose-ajax');
|
|
| 99 | 99 | |
| 100 | - if (isset($_REQUEST['listing_type'])) {
|
|
| 101 | - wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 102 | - } |
|
| 100 | + if (isset($_REQUEST['listing_type'])) {
|
|
| 101 | + wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 102 | + } |
|
| 103 | 103 | |
| 104 | - wp_enqueue_script('geodirectory-custom-fields-script');
|
|
| 105 | - $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 104 | + wp_enqueue_script('geodirectory-custom-fields-script');
|
|
| 105 | + $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 106 | 106 | |
| 107 | - wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 107 | + wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 108 | 108 | |
| 109 | - if (in_array($geodir_map_name, array('auto', 'google'))) {
|
|
| 110 | - $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 111 | - $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 112 | - /** This filter is documented in geodirectory_template_tags.php */ |
|
| 113 | - $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
|
| 114 | - wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 115 | - } |
|
| 109 | + if (in_array($geodir_map_name, array('auto', 'google'))) {
|
|
| 110 | + $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 111 | + $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 112 | + /** This filter is documented in geodirectory_template_tags.php */ |
|
| 113 | + $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
|
| 114 | + wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | - if ($geodir_map_name == 'osm') {
|
|
| 118 | - // Leaflet OpenStreetMap |
|
| 119 | - wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 120 | - wp_enqueue_style('geodirectory-leaflet-style');
|
|
| 117 | + if ($geodir_map_name == 'osm') {
|
|
| 118 | + // Leaflet OpenStreetMap |
|
| 119 | + wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 120 | + wp_enqueue_style('geodirectory-leaflet-style');
|
|
| 121 | 121 | |
| 122 | - wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 123 | - wp_enqueue_script('geodirectory-leaflet-script');
|
|
| 122 | + wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 123 | + wp_enqueue_script('geodirectory-leaflet-script');
|
|
| 124 | 124 | |
| 125 | - wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 126 | - wp_enqueue_script('geodirectory-leaflet-geo-script');
|
|
| 127 | - } |
|
| 128 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 125 | + wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 126 | + wp_enqueue_script('geodirectory-leaflet-geo-script');
|
|
| 127 | + } |
|
| 128 | + wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 129 | 129 | |
| 130 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 131 | - wp_enqueue_script('geodirectory-goMap-script');
|
|
| 130 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 131 | + wp_enqueue_script('geodirectory-goMap-script');
|
|
| 132 | 132 | |
| 133 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 134 | - wp_enqueue_script('geodirectory-goMap-script');
|
|
| 133 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 134 | + wp_enqueue_script('geodirectory-goMap-script');
|
|
| 135 | 135 | |
| 136 | 136 | // font awesome rating script |
| 137 | 137 | if (get_option('geodir_reviewrating_enable_font_awesome')) {
|
@@ -142,167 +142,167 @@ discard block |
||
| 142 | 142 | wp_enqueue_script('geodir-jRating-js');
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 146 | - wp_enqueue_script('geodir-on-document-load');
|
|
| 147 | - |
|
| 148 | - |
|
| 149 | - // SCRIPT FOR UPLOAD |
|
| 150 | - wp_enqueue_script('plupload-all');
|
|
| 151 | - wp_enqueue_script('jquery-ui-sortable');
|
|
| 152 | - |
|
| 153 | - wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 154 | - wp_enqueue_script('geodirectory-plupload-script');
|
|
| 155 | - |
|
| 156 | - // SCRIPT FOR UPLOAD END |
|
| 157 | - |
|
| 158 | - |
|
| 159 | - // place js config array for plupload |
|
| 160 | - $plupload_init = array( |
|
| 161 | - 'runtimes' => 'html5,silverlight,flash,html4', |
|
| 162 | - 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
| 163 | - 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
| 164 | - 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
| 165 | - 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
| 166 | - 'multiple_queues' => true, |
|
| 167 | - 'max_file_size' => geodir_max_upload_size(), |
|
| 168 | - 'url' => admin_url('admin-ajax.php'),
|
|
| 169 | - 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
|
|
| 170 | - 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
|
|
| 171 | - 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
|
|
| 172 | - 'multipart' => true, |
|
| 173 | - 'urlstream_upload' => true, |
|
| 174 | - 'multi_selection' => false, // will be added per uploader |
|
| 175 | - // additional post data to send to our ajax hook |
|
| 176 | - 'multipart_params' => array( |
|
| 177 | - '_ajax_nonce' => "", // will be added per uploader |
|
| 178 | - 'action' => 'plupload_action', // the ajax action name |
|
| 179 | - 'imgid' => 0 // will be added per uploader |
|
| 180 | - ) |
|
| 181 | - ); |
|
| 182 | - $base_plupload_config = json_encode($plupload_init); |
|
| 183 | - |
|
| 184 | - |
|
| 185 | - $thumb_img_arr = array(); |
|
| 186 | - |
|
| 187 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 188 | - $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
| 189 | - |
|
| 190 | - $totImg = ''; |
|
| 191 | - $image_limit = ''; |
|
| 192 | - if (!empty($thumb_img_arr)) {
|
|
| 193 | - $totImg = count($thumb_img_arr); |
|
| 194 | - } |
|
| 145 | + wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 146 | + wp_enqueue_script('geodir-on-document-load');
|
|
| 147 | + |
|
| 148 | + |
|
| 149 | + // SCRIPT FOR UPLOAD |
|
| 150 | + wp_enqueue_script('plupload-all');
|
|
| 151 | + wp_enqueue_script('jquery-ui-sortable');
|
|
| 152 | + |
|
| 153 | + wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 154 | + wp_enqueue_script('geodirectory-plupload-script');
|
|
| 155 | + |
|
| 156 | + // SCRIPT FOR UPLOAD END |
|
| 157 | + |
|
| 158 | + |
|
| 159 | + // place js config array for plupload |
|
| 160 | + $plupload_init = array( |
|
| 161 | + 'runtimes' => 'html5,silverlight,flash,html4', |
|
| 162 | + 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
| 163 | + 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
| 164 | + 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
| 165 | + 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
| 166 | + 'multiple_queues' => true, |
|
| 167 | + 'max_file_size' => geodir_max_upload_size(), |
|
| 168 | + 'url' => admin_url('admin-ajax.php'),
|
|
| 169 | + 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
|
|
| 170 | + 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
|
|
| 171 | + 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
|
|
| 172 | + 'multipart' => true, |
|
| 173 | + 'urlstream_upload' => true, |
|
| 174 | + 'multi_selection' => false, // will be added per uploader |
|
| 175 | + // additional post data to send to our ajax hook |
|
| 176 | + 'multipart_params' => array( |
|
| 177 | + '_ajax_nonce' => "", // will be added per uploader |
|
| 178 | + 'action' => 'plupload_action', // the ajax action name |
|
| 179 | + 'imgid' => 0 // will be added per uploader |
|
| 180 | + ) |
|
| 181 | + ); |
|
| 182 | + $base_plupload_config = json_encode($plupload_init); |
|
| 183 | + |
|
| 184 | + |
|
| 185 | + $thumb_img_arr = array(); |
|
| 186 | + |
|
| 187 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 188 | + $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
| 189 | + |
|
| 190 | + $totImg = ''; |
|
| 191 | + $image_limit = ''; |
|
| 192 | + if (!empty($thumb_img_arr)) {
|
|
| 193 | + $totImg = count($thumb_img_arr); |
|
| 194 | + } |
|
| 195 | 195 | |
| 196 | - $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
|
|
| 197 | - 'totalImg' => $totImg, |
|
| 198 | - 'image_limit' => $image_limit, |
|
| 199 | - 'upload_img_size' => geodir_max_upload_size()); |
|
| 196 | + $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
|
|
| 197 | + 'totalImg' => $totImg, |
|
| 198 | + 'image_limit' => $image_limit, |
|
| 199 | + 'upload_img_size' => geodir_max_upload_size()); |
|
| 200 | 200 | |
| 201 | - wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
|
|
| 201 | + wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
|
|
| 202 | 202 | |
| 203 | - $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
|
|
| 204 | - wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
|
| 203 | + $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
|
|
| 204 | + wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
|
| 205 | 205 | |
| 206 | 206 | |
| 207 | - wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 208 | - wp_enqueue_script('geodirectory-admin-script');
|
|
| 207 | + wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 208 | + wp_enqueue_script('geodirectory-admin-script');
|
|
| 209 | 209 | |
| 210 | - wp_enqueue_style('farbtastic');
|
|
| 211 | - wp_enqueue_script('farbtastic');
|
|
| 210 | + wp_enqueue_style('farbtastic');
|
|
| 211 | + wp_enqueue_script('farbtastic');
|
|
| 212 | 212 | |
| 213 | - $screen = get_current_screen(); |
|
| 214 | - if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
|
| 215 | - wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 216 | - } |
|
| 213 | + $screen = get_current_screen(); |
|
| 214 | + if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
|
| 215 | + wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
|
|
| 219 | - wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
|
| 218 | + $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
|
|
| 219 | + wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
|
| 220 | 220 | |
| 221 | - } |
|
| 221 | + } |
|
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | if (!function_exists('geodir_admin_menu')) {
|
| 225 | - /** |
|
| 226 | - * Admin Menus |
|
| 227 | - * |
|
| 228 | - * Sets up the admin menus in wordpress. |
|
| 229 | - * |
|
| 230 | - * @since 1.0.0 |
|
| 231 | - * @package GeoDirectory |
|
| 232 | - * @global array $menu Menu array. |
|
| 233 | - * @global object $geodirectory GeoDirectory plugin object. |
|
| 234 | - */ |
|
| 235 | - function geodir_admin_menu() |
|
| 236 | - {
|
|
| 237 | - global $menu, $geodirectory; |
|
| 225 | + /** |
|
| 226 | + * Admin Menus |
|
| 227 | + * |
|
| 228 | + * Sets up the admin menus in wordpress. |
|
| 229 | + * |
|
| 230 | + * @since 1.0.0 |
|
| 231 | + * @package GeoDirectory |
|
| 232 | + * @global array $menu Menu array. |
|
| 233 | + * @global object $geodirectory GeoDirectory plugin object. |
|
| 234 | + */ |
|
| 235 | + function geodir_admin_menu() |
|
| 236 | + {
|
|
| 237 | + global $menu, $geodirectory; |
|
| 238 | 238 | |
| 239 | - if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
|
| 239 | + if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
|
| 240 | 240 | |
| 241 | - add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 241 | + add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 242 | 242 | |
| 243 | 243 | |
| 244 | - } |
|
| 244 | + } |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | if (!function_exists('geodir_admin_menu_order')) {
|
| 248 | - /** |
|
| 249 | - * Order admin menus. |
|
| 250 | - * |
|
| 251 | - * @since 1.0.0 |
|
| 252 | - * @package GeoDirectory |
|
| 253 | - * @param array $menu_order Menu order array. |
|
| 254 | - * @return array Modified menu order array. |
|
| 255 | - */ |
|
| 256 | - function geodir_admin_menu_order($menu_order) |
|
| 257 | - {
|
|
| 258 | - |
|
| 259 | - // Initialize our custom order array |
|
| 260 | - $geodir_menu_order = array(); |
|
| 261 | - |
|
| 262 | - // Get the index of our custom separator |
|
| 263 | - $geodir_separator = array_search('separator-geodirectory', $menu_order);
|
|
| 264 | - |
|
| 265 | - // Get index of posttype menu |
|
| 266 | - $post_types = geodir_get_posttypes(); |
|
| 267 | - |
|
| 268 | - // Loop through menu order and do some rearranging |
|
| 269 | - foreach ($menu_order as $index => $item) : |
|
| 270 | - |
|
| 271 | - if ((('geodirectory') == $item)) :
|
|
| 272 | - $geodir_menu_order[] = 'separator-geodirectory'; |
|
| 273 | - if (!empty($post_types)) {
|
|
| 274 | - foreach ($post_types as $post_type) {
|
|
| 275 | - $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 276 | - } |
|
| 277 | - } |
|
| 278 | - $geodir_menu_order[] = $item; |
|
| 248 | + /** |
|
| 249 | + * Order admin menus. |
|
| 250 | + * |
|
| 251 | + * @since 1.0.0 |
|
| 252 | + * @package GeoDirectory |
|
| 253 | + * @param array $menu_order Menu order array. |
|
| 254 | + * @return array Modified menu order array. |
|
| 255 | + */ |
|
| 256 | + function geodir_admin_menu_order($menu_order) |
|
| 257 | + {
|
|
| 279 | 258 | |
| 280 | - unset($menu_order[$geodir_separator]); |
|
| 281 | - //unset( $menu_order[$geodir_places] ); |
|
| 282 | - elseif (!in_array($item, array('separator-geodirectory'))) :
|
|
| 283 | - $geodir_menu_order[] = $item; |
|
| 284 | - endif; |
|
| 259 | + // Initialize our custom order array |
|
| 260 | + $geodir_menu_order = array(); |
|
| 285 | 261 | |
| 286 | - endforeach; |
|
| 262 | + // Get the index of our custom separator |
|
| 263 | + $geodir_separator = array_search('separator-geodirectory', $menu_order);
|
|
| 287 | 264 | |
| 288 | - // Return order |
|
| 289 | - return $geodir_menu_order; |
|
| 290 | - } |
|
| 265 | + // Get index of posttype menu |
|
| 266 | + $post_types = geodir_get_posttypes(); |
|
| 267 | + |
|
| 268 | + // Loop through menu order and do some rearranging |
|
| 269 | + foreach ($menu_order as $index => $item) : |
|
| 270 | + |
|
| 271 | + if ((('geodirectory') == $item)) :
|
|
| 272 | + $geodir_menu_order[] = 'separator-geodirectory'; |
|
| 273 | + if (!empty($post_types)) {
|
|
| 274 | + foreach ($post_types as $post_type) {
|
|
| 275 | + $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 276 | + } |
|
| 277 | + } |
|
| 278 | + $geodir_menu_order[] = $item; |
|
| 279 | + |
|
| 280 | + unset($menu_order[$geodir_separator]); |
|
| 281 | + //unset( $menu_order[$geodir_places] ); |
|
| 282 | + elseif (!in_array($item, array('separator-geodirectory'))) :
|
|
| 283 | + $geodir_menu_order[] = $item; |
|
| 284 | + endif; |
|
| 285 | + |
|
| 286 | + endforeach; |
|
| 287 | + |
|
| 288 | + // Return order |
|
| 289 | + return $geodir_menu_order; |
|
| 290 | + } |
|
| 291 | 291 | } |
| 292 | 292 | |
| 293 | 293 | if (!function_exists('geodir_admin_custom_menu_order')) {
|
| 294 | - /** |
|
| 295 | - * Enables custom menu order. |
|
| 296 | - * |
|
| 297 | - * @since 1.0.0 |
|
| 298 | - * @package GeoDirectory |
|
| 299 | - * @return bool |
|
| 300 | - */ |
|
| 301 | - function geodir_admin_custom_menu_order() |
|
| 302 | - {
|
|
| 303 | - if (!current_user_can('manage_options')) return false;
|
|
| 304 | - return true; |
|
| 305 | - } |
|
| 294 | + /** |
|
| 295 | + * Enables custom menu order. |
|
| 296 | + * |
|
| 297 | + * @since 1.0.0 |
|
| 298 | + * @package GeoDirectory |
|
| 299 | + * @return bool |
|
| 300 | + */ |
|
| 301 | + function geodir_admin_custom_menu_order() |
|
| 302 | + {
|
|
| 303 | + if (!current_user_can('manage_options')) return false;
|
|
| 304 | + return true; |
|
| 305 | + } |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | /** |
@@ -313,51 +313,51 @@ discard block |
||
| 313 | 313 | */ |
| 314 | 314 | function geodir_before_admin_panel() |
| 315 | 315 | {
|
| 316 | - if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
|
| 317 | - echo '<div id="message" class="updated fade"> |
|
| 316 | + if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
|
| 317 | + echo '<div id="message" class="updated fade"> |
|
| 318 | 318 | <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
|
| 319 | 319 | <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
|
| 320 | 320 | </div>'; |
| 321 | 321 | |
| 322 | - } |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
|
| 325 | - switch ($_REQUEST['msg']) {
|
|
| 326 | - case 'success': |
|
| 327 | - echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 328 | - flush_rewrite_rules(false); |
|
| 324 | + if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
|
| 325 | + switch ($_REQUEST['msg']) {
|
|
| 326 | + case 'success': |
|
| 327 | + echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 328 | + flush_rewrite_rules(false); |
|
| 329 | 329 | |
| 330 | - break; |
|
| 330 | + break; |
|
| 331 | 331 | case 'fail': |
| 332 | 332 | $gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : ''; |
| 333 | 333 | |
| 334 | 334 | if ($gderr == 21) |
| 335 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 335 | + echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 336 | 336 | else |
| 337 | 337 | echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
|
| 338 | - break; |
|
| 339 | - } |
|
| 340 | - } |
|
| 338 | + break; |
|
| 339 | + } |
|
| 340 | + } |
|
| 341 | 341 | |
| 342 | - $geodir_load_map = get_option('geodir_load_map');
|
|
| 343 | - $need_map_key = false; |
|
| 344 | - if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 345 | - $need_map_key = true; |
|
| 346 | - } |
|
| 342 | + $geodir_load_map = get_option('geodir_load_map');
|
|
| 343 | + $need_map_key = false; |
|
| 344 | + if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 345 | + $need_map_key = true; |
|
| 346 | + } |
|
| 347 | 347 | |
| 348 | - if (!geodir_get_map_api_key() && $need_map_key) {
|
|
| 349 | - echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 350 | - } |
|
| 348 | + if (!geodir_get_map_api_key() && $need_map_key) {
|
|
| 349 | + echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - if (!geodir_is_default_location_set()) {
|
|
| 353 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 352 | + if (!geodir_is_default_location_set()) {
|
|
| 353 | + echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 354 | 354 | |
| 355 | - } |
|
| 355 | + } |
|
| 356 | 356 | |
| 357 | - if (!function_exists('curl_init')) {
|
|
| 358 | - echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 357 | + if (!function_exists('curl_init')) {
|
|
| 358 | + echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 359 | 359 | |
| 360 | - } |
|
| 360 | + } |
|
| 361 | 361 | |
| 362 | 362 | |
| 363 | 363 | |
@@ -374,19 +374,19 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | function geodir_handle_option_form_submit($current_tab) |
| 376 | 376 | {
|
| 377 | - global $geodir_settings; |
|
| 378 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 379 | - /** |
|
| 380 | - * Contains settings array for current tab. |
|
| 381 | - * |
|
| 382 | - * @since 1.0.0 |
|
| 383 | - * @package GeoDirectory |
|
| 384 | - */ |
|
| 385 | - include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 386 | - } |
|
| 387 | - if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
|
| 388 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | - if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 377 | + global $geodir_settings; |
|
| 378 | + if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 379 | + /** |
|
| 380 | + * Contains settings array for current tab. |
|
| 381 | + * |
|
| 382 | + * @since 1.0.0 |
|
| 383 | + * @package GeoDirectory |
|
| 384 | + */ |
|
| 385 | + include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 386 | + } |
|
| 387 | + if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
|
| 388 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | + if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 390 | 390 | |
| 391 | 391 | /** |
| 392 | 392 | * Fires before updating geodirectory admin settings. |
@@ -398,38 +398,38 @@ discard block |
||
| 398 | 398 | */ |
| 399 | 399 | do_action('geodir_before_update_options', $current_tab, $geodir_settings);
|
| 400 | 400 | |
| 401 | - if (!empty($geodir_settings[$current_tab])) |
|
| 402 | - geodir_update_options($geodir_settings[$current_tab]); |
|
| 401 | + if (!empty($geodir_settings[$current_tab])) |
|
| 402 | + geodir_update_options($geodir_settings[$current_tab]); |
|
| 403 | 403 | |
| 404 | - /** |
|
| 405 | - * Called after GeoDirectory options settings are updated. |
|
| 406 | - * |
|
| 407 | - * @since 1.0.0 |
|
| 408 | - * @param array $geodir_settings The array of GeoDirectory settings. |
|
| 409 | - * @see 'geodir_before_update_options' |
|
| 410 | - */ |
|
| 411 | - do_action('geodir_update_options', $geodir_settings);
|
|
| 404 | + /** |
|
| 405 | + * Called after GeoDirectory options settings are updated. |
|
| 406 | + * |
|
| 407 | + * @since 1.0.0 |
|
| 408 | + * @param array $geodir_settings The array of GeoDirectory settings. |
|
| 409 | + * @see 'geodir_before_update_options' |
|
| 410 | + */ |
|
| 411 | + do_action('geodir_update_options', $geodir_settings);
|
|
| 412 | 412 | |
| 413 | - /** |
|
| 414 | - * Called after GeoDirectory options settings are updated. |
|
| 415 | - * |
|
| 416 | - * Provides tab specific settings. |
|
| 417 | - * |
|
| 418 | - * @since 1.0.0 |
|
| 419 | - * @param string $current_tab The current settings tab name. |
|
| 420 | - * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
|
| 421 | - */ |
|
| 422 | - do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 413 | + /** |
|
| 414 | + * Called after GeoDirectory options settings are updated. |
|
| 415 | + * |
|
| 416 | + * Provides tab specific settings. |
|
| 417 | + * |
|
| 418 | + * @since 1.0.0 |
|
| 419 | + * @param string $current_tab The current settings tab name. |
|
| 420 | + * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
|
| 421 | + */ |
|
| 422 | + do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 423 | 423 | |
| 424 | - flush_rewrite_rules(false); |
|
| 424 | + flush_rewrite_rules(false); |
|
| 425 | 425 | |
| 426 | - $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
|
| 426 | + $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
|
| 427 | 427 | |
| 428 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 428 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 429 | 429 | |
| 430 | - wp_redirect($redirect_url); |
|
| 431 | - exit(); |
|
| 432 | - endif; |
|
| 430 | + wp_redirect($redirect_url); |
|
| 431 | + exit(); |
|
| 432 | + endif; |
|
| 433 | 433 | |
| 434 | 434 | |
| 435 | 435 | } |
@@ -447,144 +447,144 @@ discard block |
||
| 447 | 447 | * @return bool Returns true if saved. |
| 448 | 448 | */ |
| 449 | 449 | function geodir_update_options($options, $dummy = false) {
|
| 450 | - if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
| 450 | + if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
| 451 | 451 | |
| 452 | - foreach ($options as $value) {
|
|
| 453 | - if ($dummy && isset($value['std'])) |
|
| 454 | - $_POST[$value['id']] = $value['std']; |
|
| 452 | + foreach ($options as $value) {
|
|
| 453 | + if ($dummy && isset($value['std'])) |
|
| 454 | + $_POST[$value['id']] = $value['std']; |
|
| 455 | 455 | |
| 456 | 456 | |
| 457 | - if (isset($value['type']) && $value['type'] == 'checkbox') : |
|
| 457 | + if (isset($value['type']) && $value['type'] == 'checkbox') : |
|
| 458 | 458 | |
| 459 | - if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 460 | - update_option($value['id'], $_POST[$value['id']]); |
|
| 461 | - } else {
|
|
| 462 | - update_option($value['id'], 0); |
|
| 463 | - } |
|
| 459 | + if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 460 | + update_option($value['id'], $_POST[$value['id']]); |
|
| 461 | + } else {
|
|
| 462 | + update_option($value['id'], 0); |
|
| 463 | + } |
|
| 464 | 464 | |
| 465 | - elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
| 465 | + elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
| 466 | 466 | |
| 467 | - if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 468 | - update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 469 | - update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 470 | - if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 471 | - update_option($value['id'] . '_crop', 1); |
|
| 472 | - else : |
|
| 473 | - update_option($value['id'] . '_crop', 0); |
|
| 474 | - endif; |
|
| 475 | - } else {
|
|
| 476 | - update_option($value['id'] . '_width', $value['std']); |
|
| 477 | - update_option($value['id'] . '_height', $value['std']); |
|
| 478 | - update_option($value['id'] . '_crop', 1); |
|
| 479 | - } |
|
| 467 | + if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 468 | + update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 469 | + update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 470 | + if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 471 | + update_option($value['id'] . '_crop', 1); |
|
| 472 | + else : |
|
| 473 | + update_option($value['id'] . '_crop', 0); |
|
| 474 | + endif; |
|
| 475 | + } else {
|
|
| 476 | + update_option($value['id'] . '_width', $value['std']); |
|
| 477 | + update_option($value['id'] . '_height', $value['std']); |
|
| 478 | + update_option($value['id'] . '_crop', 1); |
|
| 479 | + } |
|
| 480 | 480 | |
| 481 | - elseif (isset($value['type']) && $value['type'] == 'map') : |
|
| 482 | - $post_types = array(); |
|
| 483 | - $categories = array(); |
|
| 481 | + elseif (isset($value['type']) && $value['type'] == 'map') : |
|
| 482 | + $post_types = array(); |
|
| 483 | + $categories = array(); |
|
| 484 | 484 | |
| 485 | - if (!empty($_POST['home_map_post_types'])) : |
|
| 486 | - foreach ($_POST['home_map_post_types'] as $post_type) : |
|
| 487 | - $post_types[] = $post_type; |
|
| 488 | - endforeach; |
|
| 489 | - endif; |
|
| 485 | + if (!empty($_POST['home_map_post_types'])) : |
|
| 486 | + foreach ($_POST['home_map_post_types'] as $post_type) : |
|
| 487 | + $post_types[] = $post_type; |
|
| 488 | + endforeach; |
|
| 489 | + endif; |
|
| 490 | 490 | |
| 491 | - update_option('geodir_exclude_post_type_on_map', $post_types);
|
|
| 491 | + update_option('geodir_exclude_post_type_on_map', $post_types);
|
|
| 492 | 492 | |
| 493 | - if (!empty($_POST['post_category'])) : |
|
| 494 | - foreach ($_POST['post_category'] as $texonomy => $cat_arr) : |
|
| 495 | - $categories[$texonomy] = array(); |
|
| 496 | - foreach ($cat_arr as $category) : |
|
| 497 | - $categories[$texonomy][] = $category; |
|
| 498 | - endforeach; |
|
| 499 | - $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array(); |
|
| 500 | - endforeach; |
|
| 501 | - endif; |
|
| 502 | - update_option('geodir_exclude_cat_on_map', $categories);
|
|
| 503 | - update_option('geodir_exclude_cat_on_map_upgrade', 1);
|
|
| 504 | - elseif (isset($value['type']) && $value['type'] == 'map_default_settings') : |
|
| 493 | + if (!empty($_POST['post_category'])) : |
|
| 494 | + foreach ($_POST['post_category'] as $texonomy => $cat_arr) : |
|
| 495 | + $categories[$texonomy] = array(); |
|
| 496 | + foreach ($cat_arr as $category) : |
|
| 497 | + $categories[$texonomy][] = $category; |
|
| 498 | + endforeach; |
|
| 499 | + $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array(); |
|
| 500 | + endforeach; |
|
| 501 | + endif; |
|
| 502 | + update_option('geodir_exclude_cat_on_map', $categories);
|
|
| 503 | + update_option('geodir_exclude_cat_on_map_upgrade', 1);
|
|
| 504 | + elseif (isset($value['type']) && $value['type'] == 'map_default_settings') : |
|
| 505 | 505 | |
| 506 | 506 | |
| 507 | - if (!empty($_POST['geodir_default_map_language'])): |
|
| 508 | - update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
|
|
| 509 | - endif; |
|
| 507 | + if (!empty($_POST['geodir_default_map_language'])): |
|
| 508 | + update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
|
|
| 509 | + endif; |
|
| 510 | 510 | |
| 511 | 511 | |
| 512 | - if (!empty($_POST['geodir_default_map_search_pt'])): |
|
| 513 | - update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
|
|
| 514 | - endif; |
|
| 512 | + if (!empty($_POST['geodir_default_map_search_pt'])): |
|
| 513 | + update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
|
|
| 514 | + endif; |
|
| 515 | 515 | |
| 516 | 516 | |
| 517 | - elseif (isset($value['type']) && $value['type'] == 'file') : |
|
| 517 | + elseif (isset($value['type']) && $value['type'] == 'file') : |
|
| 518 | 518 | |
| 519 | 519 | |
| 520 | - if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 520 | + if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 521 | 521 | |
| 522 | - if (get_option($value['id'])) {
|
|
| 523 | - $image_name_arr = explode('/', get_option($value['id']));
|
|
| 524 | - $noimg_name = end($image_name_arr); |
|
| 525 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 526 | - if (file_exists($img_path)) |
|
| 527 | - unlink($img_path); |
|
| 528 | - } |
|
| 522 | + if (get_option($value['id'])) {
|
|
| 523 | + $image_name_arr = explode('/', get_option($value['id']));
|
|
| 524 | + $noimg_name = end($image_name_arr); |
|
| 525 | + $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 526 | + if (file_exists($img_path)) |
|
| 527 | + unlink($img_path); |
|
| 528 | + } |
|
| 529 | 529 | |
| 530 | - update_option($value['id'], ''); |
|
| 531 | - } |
|
| 530 | + update_option($value['id'], ''); |
|
| 531 | + } |
|
| 532 | 532 | |
| 533 | - $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : ''; |
|
| 534 | - $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : ''; |
|
| 535 | - |
|
| 536 | - if (!empty($filename)): |
|
| 537 | - $ext = pathinfo($filename, PATHINFO_EXTENSION); |
|
| 538 | - $uplaods = array(); |
|
| 539 | - |
|
| 540 | - foreach ($uploadedfile as $key => $uplaod): |
|
| 541 | - if ($key == 'name'): |
|
| 542 | - $uplaods[$key] = $filename; |
|
| 543 | - else : |
|
| 544 | - $uplaods[$key] = $uplaod; |
|
| 545 | - endif; |
|
| 546 | - endforeach; |
|
| 547 | - |
|
| 548 | - $uploads = wp_upload_dir(); |
|
| 549 | - |
|
| 550 | - if (get_option($value['id'])) {
|
|
| 551 | - $image_name_arr = explode('/', get_option($value['id']));
|
|
| 552 | - $noimg_name = end($image_name_arr); |
|
| 553 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 554 | - if (file_exists($img_path)) |
|
| 555 | - unlink($img_path); |
|
| 556 | - } |
|
| 533 | + $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : ''; |
|
| 534 | + $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : ''; |
|
| 535 | + |
|
| 536 | + if (!empty($filename)): |
|
| 537 | + $ext = pathinfo($filename, PATHINFO_EXTENSION); |
|
| 538 | + $uplaods = array(); |
|
| 539 | + |
|
| 540 | + foreach ($uploadedfile as $key => $uplaod): |
|
| 541 | + if ($key == 'name'): |
|
| 542 | + $uplaods[$key] = $filename; |
|
| 543 | + else : |
|
| 544 | + $uplaods[$key] = $uplaod; |
|
| 545 | + endif; |
|
| 546 | + endforeach; |
|
| 547 | + |
|
| 548 | + $uploads = wp_upload_dir(); |
|
| 549 | + |
|
| 550 | + if (get_option($value['id'])) {
|
|
| 551 | + $image_name_arr = explode('/', get_option($value['id']));
|
|
| 552 | + $noimg_name = end($image_name_arr); |
|
| 553 | + $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 554 | + if (file_exists($img_path)) |
|
| 555 | + unlink($img_path); |
|
| 556 | + } |
|
| 557 | 557 | |
| 558 | - $upload_overrides = array('test_form' => false);
|
|
| 559 | - $movefile = wp_handle_upload($uplaods, $upload_overrides); |
|
| 558 | + $upload_overrides = array('test_form' => false);
|
|
| 559 | + $movefile = wp_handle_upload($uplaods, $upload_overrides); |
|
| 560 | 560 | |
| 561 | - update_option($value['id'], $movefile['url']); |
|
| 561 | + update_option($value['id'], $movefile['url']); |
|
| 562 | 562 | |
| 563 | - endif; |
|
| 563 | + endif; |
|
| 564 | 564 | |
| 565 | - if (!get_option($value['id']) && isset($value['value'])): |
|
| 566 | - update_option($value['id'], $value['value']); |
|
| 567 | - endif; |
|
| 565 | + if (!get_option($value['id']) && isset($value['value'])): |
|
| 566 | + update_option($value['id'], $value['value']); |
|
| 567 | + endif; |
|
| 568 | 568 | |
| 569 | 569 | |
| 570 | - else : |
|
| 571 | - // same menu setting per theme. |
|
| 572 | - if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
|
| 573 | - $theme = wp_get_theme(); |
|
| 574 | - update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 575 | - } |
|
| 570 | + else : |
|
| 571 | + // same menu setting per theme. |
|
| 572 | + if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
|
| 573 | + $theme = wp_get_theme(); |
|
| 574 | + update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 575 | + } |
|
| 576 | 576 | |
| 577 | - if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 578 | - update_option($value['id'], $_POST[$value['id']]); |
|
| 579 | - } else {
|
|
| 580 | - delete_option($value['id']); |
|
| 581 | - } |
|
| 577 | + if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 578 | + update_option($value['id'], $_POST[$value['id']]); |
|
| 579 | + } else {
|
|
| 580 | + delete_option($value['id']); |
|
| 581 | + } |
|
| 582 | 582 | |
| 583 | - endif; |
|
| 584 | - } |
|
| 585 | - if ($dummy) |
|
| 586 | - $_POST = array(); |
|
| 587 | - return true; |
|
| 583 | + endif; |
|
| 584 | + } |
|
| 585 | + if ($dummy) |
|
| 586 | + $_POST = array(); |
|
| 587 | + return true; |
|
| 588 | 588 | |
| 589 | 589 | } |
| 590 | 590 | |
@@ -633,33 +633,33 @@ discard block |
||
| 633 | 633 | function places_custom_fields_tab($tabs) |
| 634 | 634 | {
|
| 635 | 635 | |
| 636 | - $geodir_post_types = get_option('geodir_post_types');
|
|
| 636 | + $geodir_post_types = get_option('geodir_post_types');
|
|
| 637 | 637 | |
| 638 | - if (!empty($geodir_post_types)) {
|
|
| 638 | + if (!empty($geodir_post_types)) {
|
|
| 639 | 639 | |
| 640 | - foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info): |
|
| 640 | + foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info): |
|
| 641 | 641 | |
| 642 | - $listing_slug = $geodir_posttype_info['labels']['singular_name']; |
|
| 642 | + $listing_slug = $geodir_posttype_info['labels']['singular_name']; |
|
| 643 | 643 | |
| 644 | - $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 645 | - 'label' => __(ucfirst($listing_slug) . ' Settings', 'geodirectory'), |
|
| 646 | - 'subtabs' => array( |
|
| 647 | - array('subtab' => 'custom_fields',
|
|
| 648 | - 'label' => __('Custom Fields', 'geodirectory'),
|
|
| 649 | - 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 650 | - array('subtab' => 'sorting_options',
|
|
| 651 | - 'label' => __('Sorting Options', 'geodirectory'),
|
|
| 652 | - 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 653 | - ), |
|
| 654 | - 'tab_index' => 9, |
|
| 655 | - 'request' => array('listing_type' => $geodir_post_type)
|
|
| 656 | - ); |
|
| 644 | + $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 645 | + 'label' => __(ucfirst($listing_slug) . ' Settings', 'geodirectory'), |
|
| 646 | + 'subtabs' => array( |
|
| 647 | + array('subtab' => 'custom_fields',
|
|
| 648 | + 'label' => __('Custom Fields', 'geodirectory'),
|
|
| 649 | + 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 650 | + array('subtab' => 'sorting_options',
|
|
| 651 | + 'label' => __('Sorting Options', 'geodirectory'),
|
|
| 652 | + 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 653 | + ), |
|
| 654 | + 'tab_index' => 9, |
|
| 655 | + 'request' => array('listing_type' => $geodir_post_type)
|
|
| 656 | + ); |
|
| 657 | 657 | |
| 658 | - endforeach; |
|
| 658 | + endforeach; |
|
| 659 | 659 | |
| 660 | - } |
|
| 660 | + } |
|
| 661 | 661 | |
| 662 | - return $tabs; |
|
| 662 | + return $tabs; |
|
| 663 | 663 | } |
| 664 | 664 | |
| 665 | 665 | |
@@ -675,9 +675,9 @@ discard block |
||
| 675 | 675 | */ |
| 676 | 676 | function geodir_tools_setting_tab($tabs) |
| 677 | 677 | {
|
| 678 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 679 | - $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
|
| 680 | - return $tabs; |
|
| 678 | + wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 679 | + $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
|
| 680 | + return $tabs; |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | /** |
@@ -692,8 +692,8 @@ discard block |
||
| 692 | 692 | */ |
| 693 | 693 | function geodir_compatibility_setting_tab($tabs) |
| 694 | 694 | {
|
| 695 | - $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
|
|
| 696 | - return $tabs; |
|
| 695 | + $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
|
|
| 696 | + return $tabs; |
|
| 697 | 697 | } |
| 698 | 698 | |
| 699 | 699 | |
@@ -709,144 +709,144 @@ discard block |
||
| 709 | 709 | */ |
| 710 | 710 | function geodir_extend_geodirectory_setting_tab($tabs) |
| 711 | 711 | {
|
| 712 | - $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 713 | - return $tabs; |
|
| 712 | + $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 713 | + return $tabs; |
|
| 714 | 714 | } |
| 715 | 715 | |
| 716 | 716 | |
| 717 | 717 | if (!function_exists('geodir_edit_post_columns')) {
|
| 718 | - /** |
|
| 719 | - * Modify admin post listing page columns. |
|
| 720 | - * |
|
| 721 | - * @since 1.0.0 |
|
| 722 | - * @package GeoDirectory |
|
| 723 | - * @param array $columns The column array. |
|
| 724 | - * @return array Altered column array. |
|
| 725 | - */ |
|
| 726 | - function geodir_edit_post_columns($columns) |
|
| 727 | - {
|
|
| 728 | - |
|
| 729 | - $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
|
|
| 730 | - 'categorys' => __('Categories', 'geodirectory'));
|
|
| 731 | - |
|
| 732 | - if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
|
|
| 733 | - {
|
|
| 734 | - $offset = 0; // should we prepend $array with $data? |
|
| 735 | - $offset = count($columns); // or should we append $array with $data? lets pick this one... |
|
| 736 | - } |
|
| 718 | + /** |
|
| 719 | + * Modify admin post listing page columns. |
|
| 720 | + * |
|
| 721 | + * @since 1.0.0 |
|
| 722 | + * @package GeoDirectory |
|
| 723 | + * @param array $columns The column array. |
|
| 724 | + * @return array Altered column array. |
|
| 725 | + */ |
|
| 726 | + function geodir_edit_post_columns($columns) |
|
| 727 | + {
|
|
| 728 | + |
|
| 729 | + $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
|
|
| 730 | + 'categorys' => __('Categories', 'geodirectory'));
|
|
| 737 | 731 | |
| 738 | - $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset)); |
|
| 732 | + if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
|
|
| 733 | + {
|
|
| 734 | + $offset = 0; // should we prepend $array with $data? |
|
| 735 | + $offset = count($columns); // or should we append $array with $data? lets pick this one... |
|
| 736 | + } |
|
| 739 | 737 | |
| 740 | - $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
|
|
| 738 | + $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset)); |
|
| 741 | 739 | |
| 742 | - return $columns; |
|
| 743 | - } |
|
| 740 | + $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
|
|
| 741 | + |
|
| 742 | + return $columns; |
|
| 743 | + } |
|
| 744 | 744 | } |
| 745 | 745 | |
| 746 | 746 | |
| 747 | 747 | if (!function_exists('geodir_manage_post_columns')) {
|
| 748 | - /** |
|
| 749 | - * Adds content to our custom post listing page columns. |
|
| 750 | - * |
|
| 751 | - * @since 1.0.0 |
|
| 752 | - * @package GeoDirectory |
|
| 753 | - * @global object $wpdb WordPress Database object. |
|
| 754 | - * @global object $post WordPress Post object. |
|
| 755 | - * @param string $column The column name. |
|
| 756 | - * @param int $post_id The post ID. |
|
| 757 | - */ |
|
| 758 | - function geodir_manage_post_columns($column, $post_id) |
|
| 759 | - {
|
|
| 760 | - global $post, $wpdb; |
|
| 761 | - |
|
| 762 | - switch ($column): |
|
| 763 | - /* If displaying the 'city' column. */ |
|
| 764 | - case 'location' : |
|
| 765 | - $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true); |
|
| 766 | - $location = geodir_get_location($location_id); |
|
| 767 | - /* If no city is found, output a default message. */ |
|
| 768 | - if (empty($location)) {
|
|
| 769 | - _e('Unknown', 'geodirectory');
|
|
| 770 | - } else {
|
|
| 771 | - /* If there is a city id, append 'city name' to the text string. */ |
|
| 772 | - $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 773 | - echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 774 | - } |
|
| 775 | - break; |
|
| 776 | - |
|
| 777 | - /* If displaying the 'expire' column. */ |
|
| 778 | - case 'expire' : |
|
| 779 | - $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true); |
|
| 780 | - $d1 = $expire_date; // get expire_date |
|
| 781 | - $d2 = date('Y-m-d'); // get current date
|
|
| 782 | - $state = __('days left', 'geodirectory');
|
|
| 783 | - $date_diff_text = ''; |
|
| 784 | - $expire_class = 'expire_left'; |
|
| 785 | - if ($expire_date != 'Never') {
|
|
| 786 | - if (strtotime($d1) < strtotime($d2)) {
|
|
| 787 | - $state = __('days overdue', 'geodirectory');
|
|
| 788 | - $expire_class = 'expire_over'; |
|
| 789 | - } |
|
| 790 | - $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
|
| 791 | - $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 792 | - } |
|
| 793 | - /* If no expire_date is found, output a default message. */ |
|
| 794 | - if (empty($expire_date)) |
|
| 795 | - echo __('Unknown', 'geodirectory');
|
|
| 796 | - /* If there is a expire_date, append 'days left' to the text string. */ |
|
| 797 | - else |
|
| 798 | - echo $expire_date . $date_diff_text; |
|
| 799 | - break; |
|
| 800 | - |
|
| 801 | - /* If displaying the 'categorys' column. */ |
|
| 802 | - case 'categorys' : |
|
| 803 | - |
|
| 804 | - /* Get the categorys for the post. */ |
|
| 805 | - |
|
| 806 | - |
|
| 807 | - $terms = wp_get_object_terms($post_id, get_object_taxonomies($post)); |
|
| 808 | - |
|
| 809 | - /* If terms were found. */ |
|
| 810 | - if (!empty($terms)) {
|
|
| 811 | - $out = array(); |
|
| 812 | - /* Loop through each term, linking to the 'edit posts' page for the specific term. */ |
|
| 813 | - foreach ($terms as $term) {
|
|
| 814 | - if (!strstr($term->taxonomy, 'tag')) {
|
|
| 815 | - $out[] = sprintf('<a href="%s">%s</a>',
|
|
| 816 | - esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
|
|
| 817 | - esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
|
|
| 818 | - ); |
|
| 819 | - } |
|
| 820 | - } |
|
| 821 | - /* Join the terms, separating them with a comma. */ |
|
| 822 | - echo(join(', ', $out));
|
|
| 823 | - } /* If no terms were found, output a default message. */ |
|
| 824 | - else {
|
|
| 825 | - _e('No Categories', 'geodirectory');
|
|
| 826 | - } |
|
| 827 | - break; |
|
| 748 | + /** |
|
| 749 | + * Adds content to our custom post listing page columns. |
|
| 750 | + * |
|
| 751 | + * @since 1.0.0 |
|
| 752 | + * @package GeoDirectory |
|
| 753 | + * @global object $wpdb WordPress Database object. |
|
| 754 | + * @global object $post WordPress Post object. |
|
| 755 | + * @param string $column The column name. |
|
| 756 | + * @param int $post_id The post ID. |
|
| 757 | + */ |
|
| 758 | + function geodir_manage_post_columns($column, $post_id) |
|
| 759 | + {
|
|
| 760 | + global $post, $wpdb; |
|
| 761 | + |
|
| 762 | + switch ($column): |
|
| 763 | + /* If displaying the 'city' column. */ |
|
| 764 | + case 'location' : |
|
| 765 | + $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true); |
|
| 766 | + $location = geodir_get_location($location_id); |
|
| 767 | + /* If no city is found, output a default message. */ |
|
| 768 | + if (empty($location)) {
|
|
| 769 | + _e('Unknown', 'geodirectory');
|
|
| 770 | + } else {
|
|
| 771 | + /* If there is a city id, append 'city name' to the text string. */ |
|
| 772 | + $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 773 | + echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 774 | + } |
|
| 775 | + break; |
|
| 776 | + |
|
| 777 | + /* If displaying the 'expire' column. */ |
|
| 778 | + case 'expire' : |
|
| 779 | + $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true); |
|
| 780 | + $d1 = $expire_date; // get expire_date |
|
| 781 | + $d2 = date('Y-m-d'); // get current date
|
|
| 782 | + $state = __('days left', 'geodirectory');
|
|
| 783 | + $date_diff_text = ''; |
|
| 784 | + $expire_class = 'expire_left'; |
|
| 785 | + if ($expire_date != 'Never') {
|
|
| 786 | + if (strtotime($d1) < strtotime($d2)) {
|
|
| 787 | + $state = __('days overdue', 'geodirectory');
|
|
| 788 | + $expire_class = 'expire_over'; |
|
| 789 | + } |
|
| 790 | + $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
|
| 791 | + $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 792 | + } |
|
| 793 | + /* If no expire_date is found, output a default message. */ |
|
| 794 | + if (empty($expire_date)) |
|
| 795 | + echo __('Unknown', 'geodirectory');
|
|
| 796 | + /* If there is a expire_date, append 'days left' to the text string. */ |
|
| 797 | + else |
|
| 798 | + echo $expire_date . $date_diff_text; |
|
| 799 | + break; |
|
| 828 | 800 | |
| 829 | - endswitch; |
|
| 830 | - } |
|
| 801 | + /* If displaying the 'categorys' column. */ |
|
| 802 | + case 'categorys' : |
|
| 803 | + |
|
| 804 | + /* Get the categorys for the post. */ |
|
| 805 | + |
|
| 806 | + |
|
| 807 | + $terms = wp_get_object_terms($post_id, get_object_taxonomies($post)); |
|
| 808 | + |
|
| 809 | + /* If terms were found. */ |
|
| 810 | + if (!empty($terms)) {
|
|
| 811 | + $out = array(); |
|
| 812 | + /* Loop through each term, linking to the 'edit posts' page for the specific term. */ |
|
| 813 | + foreach ($terms as $term) {
|
|
| 814 | + if (!strstr($term->taxonomy, 'tag')) {
|
|
| 815 | + $out[] = sprintf('<a href="%s">%s</a>',
|
|
| 816 | + esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
|
|
| 817 | + esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
|
|
| 818 | + ); |
|
| 819 | + } |
|
| 820 | + } |
|
| 821 | + /* Join the terms, separating them with a comma. */ |
|
| 822 | + echo(join(', ', $out));
|
|
| 823 | + } /* If no terms were found, output a default message. */ |
|
| 824 | + else {
|
|
| 825 | + _e('No Categories', 'geodirectory');
|
|
| 826 | + } |
|
| 827 | + break; |
|
| 828 | + |
|
| 829 | + endswitch; |
|
| 830 | + } |
|
| 831 | 831 | } |
| 832 | 832 | |
| 833 | 833 | |
| 834 | 834 | if (!function_exists('geodir_post_sortable_columns')) {
|
| 835 | - /** |
|
| 836 | - * Makes admin post listing page columns sortable. |
|
| 837 | - * |
|
| 838 | - * @since 1.0.0 |
|
| 839 | - * @package GeoDirectory |
|
| 840 | - * @param array $columns The column array. |
|
| 841 | - * @return array Altered column array. |
|
| 842 | - */ |
|
| 843 | - function geodir_post_sortable_columns($columns) |
|
| 844 | - {
|
|
| 845 | - |
|
| 846 | - $columns['expire'] = 'expire'; |
|
| 847 | - |
|
| 848 | - return $columns; |
|
| 849 | - } |
|
| 835 | + /** |
|
| 836 | + * Makes admin post listing page columns sortable. |
|
| 837 | + * |
|
| 838 | + * @since 1.0.0 |
|
| 839 | + * @package GeoDirectory |
|
| 840 | + * @param array $columns The column array. |
|
| 841 | + * @return array Altered column array. |
|
| 842 | + */ |
|
| 843 | + function geodir_post_sortable_columns($columns) |
|
| 844 | + {
|
|
| 845 | + |
|
| 846 | + $columns['expire'] = 'expire'; |
|
| 847 | + |
|
| 848 | + return $columns; |
|
| 849 | + } |
|
| 850 | 850 | } |
| 851 | 851 | |
| 852 | 852 | /** |
@@ -860,32 +860,32 @@ discard block |
||
| 860 | 860 | * @param int $post_id The post ID. |
| 861 | 861 | */ |
| 862 | 862 | function geodir_post_information_save($post_id, $post) {
|
| 863 | - global $wpdb, $current_user; |
|
| 863 | + global $wpdb, $current_user; |
|
| 864 | 864 | |
| 865 | - if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 866 | - return; |
|
| 867 | - } |
|
| 865 | + if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 866 | + return; |
|
| 867 | + } |
|
| 868 | 868 | |
| 869 | - $geodir_posttypes = geodir_get_posttypes(); |
|
| 869 | + $geodir_posttypes = geodir_get_posttypes(); |
|
| 870 | 870 | |
| 871 | - if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
|
|
| 872 | - return; |
|
| 871 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
|
|
| 872 | + return; |
|
| 873 | 873 | |
| 874 | - if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 875 | - if (isset($_REQUEST['_status'])) |
|
| 876 | - geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
| 874 | + if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 875 | + if (isset($_REQUEST['_status'])) |
|
| 876 | + geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
| 877 | 877 | |
| 878 | - if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
| 879 | - return; |
|
| 878 | + if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
| 879 | + return; |
|
| 880 | 880 | |
| 881 | - if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
| 882 | - return; |
|
| 881 | + if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
| 882 | + return; |
|
| 883 | 883 | |
| 884 | - if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
| 885 | - return; |
|
| 884 | + if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
| 885 | + return; |
|
| 886 | 886 | |
| 887 | - geodir_save_listing($_REQUEST); |
|
| 888 | - } |
|
| 887 | + geodir_save_listing($_REQUEST); |
|
| 888 | + } |
|
| 889 | 889 | } |
| 890 | 890 | |
| 891 | 891 | /** |
@@ -901,102 +901,102 @@ discard block |
||
| 901 | 901 | */ |
| 902 | 902 | function geodir_admin_fields($options) |
| 903 | 903 | {
|
| 904 | - global $geodirectory; |
|
| 905 | - |
|
| 906 | - $first_title = true; |
|
| 907 | - $tab_id = ''; |
|
| 908 | - $i = 0; |
|
| 909 | - foreach ($options as $value) : |
|
| 910 | - if (!isset($value['name'])) $value['name'] = ''; |
|
| 911 | - if (!isset($value['class'])) $value['class'] = ''; |
|
| 912 | - if (!isset($value['css'])) $value['css'] = ''; |
|
| 913 | - if (!isset($value['std'])) $value['std'] = ''; |
|
| 914 | - $desc = ''; |
|
| 915 | - switch ($value['type']) : |
|
| 916 | - case 'dummy_installer': |
|
| 917 | - $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place'; |
|
| 918 | - geodir_autoinstall_admin_header($post_type); |
|
| 919 | - break; |
|
| 920 | - case 'title': |
|
| 921 | - |
|
| 922 | - if ($i == 0) {
|
|
| 923 | - echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>'; |
|
| 924 | - echo '<div class="inner_content_tab_main">'; |
|
| 925 | - } |
|
| 904 | + global $geodirectory; |
|
| 905 | + |
|
| 906 | + $first_title = true; |
|
| 907 | + $tab_id = ''; |
|
| 908 | + $i = 0; |
|
| 909 | + foreach ($options as $value) : |
|
| 910 | + if (!isset($value['name'])) $value['name'] = ''; |
|
| 911 | + if (!isset($value['class'])) $value['class'] = ''; |
|
| 912 | + if (!isset($value['css'])) $value['css'] = ''; |
|
| 913 | + if (!isset($value['std'])) $value['std'] = ''; |
|
| 914 | + $desc = ''; |
|
| 915 | + switch ($value['type']) : |
|
| 916 | + case 'dummy_installer': |
|
| 917 | + $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place'; |
|
| 918 | + geodir_autoinstall_admin_header($post_type); |
|
| 919 | + break; |
|
| 920 | + case 'title': |
|
| 921 | + |
|
| 922 | + if ($i == 0) {
|
|
| 923 | + echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>'; |
|
| 924 | + echo '<div class="inner_content_tab_main">'; |
|
| 925 | + } |
|
| 926 | 926 | |
| 927 | - $i++; |
|
| 927 | + $i++; |
|
| 928 | 928 | |
| 929 | - if (isset($value['id']) && $value['id']) |
|
| 930 | - $tab_id = $value['id']; |
|
| 929 | + if (isset($value['id']) && $value['id']) |
|
| 930 | + $tab_id = $value['id']; |
|
| 931 | 931 | |
| 932 | - if (isset($value['desc']) && $value['desc']) |
|
| 933 | - $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 932 | + if (isset($value['desc']) && $value['desc']) |
|
| 933 | + $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 934 | 934 | |
| 935 | - if (isset($value['name']) && $value['name']) {
|
|
| 936 | - if ($first_title === true) {
|
|
| 937 | - $first_title = false; |
|
| 938 | - } else {
|
|
| 939 | - echo '</div>'; |
|
| 940 | - } |
|
| 941 | - echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 935 | + if (isset($value['name']) && $value['name']) {
|
|
| 936 | + if ($first_title === true) {
|
|
| 937 | + $first_title = false; |
|
| 938 | + } else {
|
|
| 939 | + echo '</div>'; |
|
| 940 | + } |
|
| 941 | + echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 942 | 942 | |
| 943 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 944 | - } |
|
| 943 | + echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 944 | + } |
|
| 945 | 945 | |
| 946 | - /** |
|
| 947 | - * Called after a GeoDirectory settings title is output in the GD settings page. |
|
| 948 | - * |
|
| 949 | - * The action is called dynamically geodir_settings_$value['id']. |
|
| 950 | - * |
|
| 951 | - * @since 1.0.0 |
|
| 952 | - */ |
|
| 953 | - do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 954 | - break; |
|
| 955 | - |
|
| 956 | - case 'no_tabs': |
|
| 957 | - |
|
| 958 | - echo '<div class="inner_content_tab_main">'; |
|
| 959 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 960 | - |
|
| 961 | - break; |
|
| 962 | - |
|
| 963 | - case 'sectionstart': |
|
| 964 | - if (isset($value['desc']) && $value['desc']) |
|
| 965 | - $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 966 | - if (isset($value['name']) && $value['name']) |
|
| 967 | - echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 968 | - /** |
|
| 969 | - * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
|
| 970 | - * |
|
| 971 | - * The action is called dynamically geodir_settings_$value['id']_start. |
|
| 972 | - * |
|
| 973 | - * @since 1.0.0 |
|
| 974 | - */ |
|
| 975 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 976 | - echo '<table class="form-table">' . "\n\n"; |
|
| 977 | - |
|
| 978 | - break; |
|
| 979 | - case 'sectionend': |
|
| 980 | - /** |
|
| 981 | - * Called before a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 982 | - * |
|
| 983 | - * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 984 | - * |
|
| 985 | - * @since 1.0.0 |
|
| 986 | - */ |
|
| 987 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 988 | - echo '</table>'; |
|
| 989 | - /** |
|
| 990 | - * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 991 | - * |
|
| 992 | - * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 993 | - * |
|
| 994 | - * @since 1.0.0 |
|
| 995 | - */ |
|
| 996 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 997 | - break; |
|
| 998 | - case 'text': |
|
| 999 | - ?> |
|
| 946 | + /** |
|
| 947 | + * Called after a GeoDirectory settings title is output in the GD settings page. |
|
| 948 | + * |
|
| 949 | + * The action is called dynamically geodir_settings_$value['id']. |
|
| 950 | + * |
|
| 951 | + * @since 1.0.0 |
|
| 952 | + */ |
|
| 953 | + do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 954 | + break; |
|
| 955 | + |
|
| 956 | + case 'no_tabs': |
|
| 957 | + |
|
| 958 | + echo '<div class="inner_content_tab_main">'; |
|
| 959 | + echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 960 | + |
|
| 961 | + break; |
|
| 962 | + |
|
| 963 | + case 'sectionstart': |
|
| 964 | + if (isset($value['desc']) && $value['desc']) |
|
| 965 | + $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 966 | + if (isset($value['name']) && $value['name']) |
|
| 967 | + echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 968 | + /** |
|
| 969 | + * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
|
| 970 | + * |
|
| 971 | + * The action is called dynamically geodir_settings_$value['id']_start. |
|
| 972 | + * |
|
| 973 | + * @since 1.0.0 |
|
| 974 | + */ |
|
| 975 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 976 | + echo '<table class="form-table">' . "\n\n"; |
|
| 977 | + |
|
| 978 | + break; |
|
| 979 | + case 'sectionend': |
|
| 980 | + /** |
|
| 981 | + * Called before a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 982 | + * |
|
| 983 | + * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 984 | + * |
|
| 985 | + * @since 1.0.0 |
|
| 986 | + */ |
|
| 987 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 988 | + echo '</table>'; |
|
| 989 | + /** |
|
| 990 | + * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 991 | + * |
|
| 992 | + * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 993 | + * |
|
| 994 | + * @since 1.0.0 |
|
| 995 | + */ |
|
| 996 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 997 | + break; |
|
| 998 | + case 'text': |
|
| 999 | + ?> |
|
| 1000 | 1000 | <tr valign="top"> |
| 1001 | 1001 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1002 | 1002 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1005,15 +1005,15 @@ discard block |
||
| 1005 | 1005 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1006 | 1006 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1007 | 1007 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1008 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1009 | - } else {
|
|
| 1010 | - echo esc_attr($value['std']); |
|
| 1011 | - } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1008 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1009 | + } else {
|
|
| 1010 | + echo esc_attr($value['std']); |
|
| 1011 | + } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1012 | 1012 | </tr><?php |
| 1013 | - break; |
|
| 1013 | + break; |
|
| 1014 | 1014 | |
| 1015 | - case 'map-key': |
|
| 1016 | - ?> |
|
| 1015 | + case 'map-key': |
|
| 1016 | + ?> |
|
| 1017 | 1017 | <tr valign="top"> |
| 1018 | 1018 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1019 | 1019 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1022,17 +1022,17 @@ discard block |
||
| 1022 | 1022 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1023 | 1023 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1024 | 1024 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1025 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1026 | - } else {
|
|
| 1027 | - echo esc_attr($value['std']); |
|
| 1028 | - } ?>"/> |
|
| 1025 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1026 | + } else {
|
|
| 1027 | + echo esc_attr($value['std']); |
|
| 1028 | + } ?>"/> |
|
| 1029 | 1029 | <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
|
| 1030 | 1030 | <span class="description"><?php echo $value['desc']; ?></span></td> |
| 1031 | 1031 | </tr><?php |
| 1032 | - break; |
|
| 1032 | + break; |
|
| 1033 | 1033 | |
| 1034 | - case 'password': |
|
| 1035 | - ?> |
|
| 1034 | + case 'password': |
|
| 1035 | + ?> |
|
| 1036 | 1036 | <tr valign="top"> |
| 1037 | 1037 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1038 | 1038 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1041,42 +1041,42 @@ discard block |
||
| 1041 | 1041 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1042 | 1042 | style="<?php echo esc_attr($value['css']); ?>" |
| 1043 | 1043 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1044 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1045 | - } else {
|
|
| 1046 | - echo esc_attr($value['std']); |
|
| 1047 | - } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1044 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1045 | + } else {
|
|
| 1046 | + echo esc_attr($value['std']); |
|
| 1047 | + } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1048 | 1048 | </tr><?php |
| 1049 | - break; |
|
| 1049 | + break; |
|
| 1050 | 1050 | |
| 1051 | - case 'html_content': |
|
| 1052 | - ?> |
|
| 1051 | + case 'html_content': |
|
| 1052 | + ?> |
|
| 1053 | 1053 | <tr valign="top"> |
| 1054 | 1054 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1055 | 1055 | <td class="forminp"><span class="description"><?php echo $value['desc']; ?></span></td> |
| 1056 | 1056 | </tr><?php |
| 1057 | - break; |
|
| 1057 | + break; |
|
| 1058 | 1058 | |
| 1059 | - case 'color' : |
|
| 1060 | - ?> |
|
| 1059 | + case 'color' : |
|
| 1060 | + ?> |
|
| 1061 | 1061 | <tr valign="top"> |
| 1062 | 1062 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1063 | 1063 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1064 | 1064 | id="<?php echo esc_attr($value['id']); ?>" type="text" |
| 1065 | 1065 | style="<?php echo esc_attr($value['css']); ?>" |
| 1066 | 1066 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1067 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1068 | - } else {
|
|
| 1069 | - echo esc_attr($value['std']); |
|
| 1070 | - } ?>" class="colorpick"/> <span |
|
| 1067 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1068 | + } else {
|
|
| 1069 | + echo esc_attr($value['std']); |
|
| 1070 | + } ?>" class="colorpick"/> <span |
|
| 1071 | 1071 | class="description"><?php echo $value['desc']; ?></span> |
| 1072 | 1072 | |
| 1073 | 1073 | <div id="colorPickerDiv_<?php echo esc_attr($value['id']); ?>" class="colorpickdiv" |
| 1074 | 1074 | style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div> |
| 1075 | 1075 | </td> |
| 1076 | 1076 | </tr><?php |
| 1077 | - break; |
|
| 1078 | - case 'image_width' : |
|
| 1079 | - ?> |
|
| 1077 | + break; |
|
| 1078 | + case 'image_width' : |
|
| 1079 | + ?> |
|
| 1080 | 1080 | <tr valign="top"> |
| 1081 | 1081 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1082 | 1082 | <td class="forminp"> |
@@ -1098,11 +1098,11 @@ discard block |
||
| 1098 | 1098 | |
| 1099 | 1099 | <span class="description"><?php echo $value['desc'] ?></span></td> |
| 1100 | 1100 | </tr><?php |
| 1101 | - break; |
|
| 1102 | - case 'select': |
|
| 1103 | - $option_value = get_option($value['id']); |
|
| 1104 | - $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value; |
|
| 1105 | - ?> |
|
| 1101 | + break; |
|
| 1102 | + case 'select': |
|
| 1103 | + $option_value = get_option($value['id']); |
|
| 1104 | + $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value; |
|
| 1105 | + ?> |
|
| 1106 | 1106 | <tr valign="top"> |
| 1107 | 1107 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1108 | 1108 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
@@ -1111,33 +1111,33 @@ discard block |
||
| 1111 | 1111 | class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
| 1112 | 1112 | option-ajaxchosen="false"> |
| 1113 | 1113 | <?php |
| 1114 | - foreach ($value['options'] as $key => $val) {
|
|
| 1115 | - $geodir_select_value = ''; |
|
| 1116 | - if ($option_value != '') {
|
|
| 1117 | - if ($option_value != '' && $option_value == $key) |
|
| 1118 | - $geodir_select_value = ' selected="selected" '; |
|
| 1119 | - } else {
|
|
| 1120 | - if ($value['std'] == $key) |
|
| 1121 | - $geodir_select_value = ' selected="selected" '; |
|
| 1122 | - } |
|
| 1123 | - ?> |
|
| 1114 | + foreach ($value['options'] as $key => $val) {
|
|
| 1115 | + $geodir_select_value = ''; |
|
| 1116 | + if ($option_value != '') {
|
|
| 1117 | + if ($option_value != '' && $option_value == $key) |
|
| 1118 | + $geodir_select_value = ' selected="selected" '; |
|
| 1119 | + } else {
|
|
| 1120 | + if ($value['std'] == $key) |
|
| 1121 | + $geodir_select_value = ' selected="selected" '; |
|
| 1122 | + } |
|
| 1123 | + ?> |
|
| 1124 | 1124 | <option |
| 1125 | 1125 | value="<?php echo esc_attr($key); ?>" <?php echo $geodir_select_value; ?> ><?php echo ucfirst($val) ?></option> |
| 1126 | 1126 | <?php |
| 1127 | - } |
|
| 1128 | - ?> |
|
| 1127 | + } |
|
| 1128 | + ?> |
|
| 1129 | 1129 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1130 | 1130 | </td> |
| 1131 | 1131 | </tr><?php |
| 1132 | - break; |
|
| 1132 | + break; |
|
| 1133 | 1133 | |
| 1134 | - case 'multiselect': |
|
| 1135 | - $option_values = get_option($value['id']); |
|
| 1136 | - if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
|
|
| 1137 | - $option_values = $value['std']; |
|
| 1138 | - } |
|
| 1139 | - $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values; |
|
| 1140 | - ?> |
|
| 1134 | + case 'multiselect': |
|
| 1135 | + $option_values = get_option($value['id']); |
|
| 1136 | + if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
|
|
| 1137 | + $option_values = $value['std']; |
|
| 1138 | + } |
|
| 1139 | + $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values; |
|
| 1140 | + ?> |
|
| 1141 | 1141 | <tr valign="top"> |
| 1142 | 1142 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1143 | 1143 | <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]" |
@@ -1147,25 +1147,25 @@ discard block |
||
| 1147 | 1147 | data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>" |
| 1148 | 1148 | option-ajaxchosen="false"> |
| 1149 | 1149 | <?php |
| 1150 | - foreach ($value['options'] as $key => $val) {
|
|
| 1151 | - if (strpos($key, 'optgroup_start-') === 0) {
|
|
| 1152 | - ?><optgroup label="<?php echo ucfirst($val); ?>"><?php |
|
| 1153 | - } else if (strpos($key, 'optgroup_end-') === 0) {
|
|
| 1154 | - ?></optgroup><?php |
|
| 1155 | - } else {
|
|
| 1156 | - ?> |
|
| 1150 | + foreach ($value['options'] as $key => $val) {
|
|
| 1151 | + if (strpos($key, 'optgroup_start-') === 0) {
|
|
| 1152 | + ?><optgroup label="<?php echo ucfirst($val); ?>"><?php |
|
| 1153 | + } else if (strpos($key, 'optgroup_end-') === 0) {
|
|
| 1154 | + ?></optgroup><?php |
|
| 1155 | + } else {
|
|
| 1156 | + ?> |
|
| 1157 | 1157 | <option |
| 1158 | 1158 | value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option> |
| 1159 | 1159 | <?php |
| 1160 | - } |
|
| 1161 | - } |
|
| 1162 | - ?> |
|
| 1160 | + } |
|
| 1161 | + } |
|
| 1162 | + ?> |
|
| 1163 | 1163 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1164 | 1164 | </td> |
| 1165 | 1165 | </tr><?php |
| 1166 | - break; |
|
| 1167 | - case 'file': |
|
| 1168 | - ?> |
|
| 1166 | + break; |
|
| 1167 | + case 'file': |
|
| 1168 | + ?> |
|
| 1169 | 1169 | <tr valign="top"> |
| 1170 | 1170 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1171 | 1171 | <td class="forminp"> |
@@ -1185,87 +1185,87 @@ discard block |
||
| 1185 | 1185 | <?php } ?> |
| 1186 | 1186 | </td> |
| 1187 | 1187 | </tr><?php |
| 1188 | - break; |
|
| 1189 | - case 'map_default_settings' : |
|
| 1190 | - ?> |
|
| 1188 | + break; |
|
| 1189 | + case 'map_default_settings' : |
|
| 1190 | + ?> |
|
| 1191 | 1191 | |
| 1192 | 1192 | <tr valign="top"> |
| 1193 | 1193 | <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
|
| 1194 | 1194 | <td width="60%"> |
| 1195 | 1195 | <select name="geodir_default_map_language" style="width:60%"> |
| 1196 | 1196 | <?php |
| 1197 | - $arr_map_langages = array( |
|
| 1198 | - 'ar' => __('ARABIC', 'geodirectory'),
|
|
| 1199 | - 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1200 | - 'bg' => __('BULGARIAN', 'geodirectory'),
|
|
| 1201 | - 'bn' => __('BENGALI', 'geodirectory'),
|
|
| 1202 | - 'ca' => __('CATALAN', 'geodirectory'),
|
|
| 1203 | - 'cs' => __('CZECH', 'geodirectory'),
|
|
| 1204 | - 'da' => __('DANISH', 'geodirectory'),
|
|
| 1205 | - 'de' => __('GERMAN', 'geodirectory'),
|
|
| 1206 | - 'el' => __('GREEK', 'geodirectory'),
|
|
| 1207 | - 'en' => __('ENGLISH', 'geodirectory'),
|
|
| 1208 | - 'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
|
|
| 1209 | - 'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
|
|
| 1210 | - 'es' => __('SPANISH', 'geodirectory'),
|
|
| 1211 | - 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1212 | - 'fa' => __('FARSI', 'geodirectory'),
|
|
| 1213 | - 'fi' => __('FINNISH', 'geodirectory'),
|
|
| 1214 | - 'fil' => __('FILIPINO', 'geodirectory'),
|
|
| 1215 | - 'fr' => __('FRENCH', 'geodirectory'),
|
|
| 1216 | - 'gl' => __('GALICIAN', 'geodirectory'),
|
|
| 1217 | - 'gu' => __('GUJARATI', 'geodirectory'),
|
|
| 1218 | - 'hi' => __('HINDI', 'geodirectory'),
|
|
| 1219 | - 'hr' => __('CROATIAN', 'geodirectory'),
|
|
| 1220 | - 'hu' => __('HUNGARIAN', 'geodirectory'),
|
|
| 1221 | - 'id' => __('INDONESIAN', 'geodirectory'),
|
|
| 1222 | - 'it' => __('ITALIAN', 'geodirectory'),
|
|
| 1223 | - 'iw' => __('HEBREW', 'geodirectory'),
|
|
| 1224 | - 'ja' => __('JAPANESE', 'geodirectory'),
|
|
| 1225 | - 'kn' => __('KANNADA', 'geodirectory'),
|
|
| 1226 | - 'ko' => __('KOREAN', 'geodirectory'),
|
|
| 1227 | - 'lt' => __('LITHUANIAN', 'geodirectory'),
|
|
| 1228 | - 'lv' => __('LATVIAN', 'geodirectory'),
|
|
| 1229 | - 'ml' => __('MALAYALAM', 'geodirectory'),
|
|
| 1230 | - 'mr' => __('MARATHI', 'geodirectory'),
|
|
| 1231 | - 'nl' => __('DUTCH', 'geodirectory'),
|
|
| 1232 | - 'no' => __('NORWEGIAN', 'geodirectory'),
|
|
| 1233 | - 'pl' => __('POLISH', 'geodirectory'),
|
|
| 1234 | - 'pt' => __('PORTUGUESE', 'geodirectory'),
|
|
| 1235 | - 'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
|
|
| 1236 | - 'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
|
|
| 1237 | - 'ro' => __('ROMANIAN', 'geodirectory'),
|
|
| 1238 | - 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1239 | - 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1240 | - 'sk' => __('SLOVAK', 'geodirectory'),
|
|
| 1241 | - 'sl' => __('SLOVENIAN', 'geodirectory'),
|
|
| 1242 | - 'sr' => __('SERBIAN', 'geodirectory'),
|
|
| 1243 | - 'sv' => __(' SWEDISH', 'geodirectory'),
|
|
| 1244 | - 'tl' => __('TAGALOG', 'geodirectory'),
|
|
| 1245 | - 'ta' => __('TAMIL', 'geodirectory'),
|
|
| 1246 | - 'te' => __('TELUGU', 'geodirectory'),
|
|
| 1247 | - 'th' => __('THAI', 'geodirectory'),
|
|
| 1248 | - 'tr' => __('TURKISH', 'geodirectory'),
|
|
| 1249 | - 'uk' => __('UKRAINIAN', 'geodirectory'),
|
|
| 1250 | - 'vi' => __('VIETNAMESE', 'geodirectory'),
|
|
| 1251 | - 'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
|
|
| 1252 | - 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
|
|
| 1253 | - ); |
|
| 1254 | - $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 1255 | - if (empty($geodir_default_map_language)) |
|
| 1256 | - $geodir_default_map_language = 'en'; |
|
| 1257 | - foreach ($arr_map_langages as $language_key => $language_txt) {
|
|
| 1258 | - if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
| 1259 | - $geodir_default_language_selected = "selected='selected'"; |
|
| 1260 | - else |
|
| 1261 | - $geodir_default_language_selected = ''; |
|
| 1262 | - |
|
| 1263 | - ?> |
|
| 1197 | + $arr_map_langages = array( |
|
| 1198 | + 'ar' => __('ARABIC', 'geodirectory'),
|
|
| 1199 | + 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1200 | + 'bg' => __('BULGARIAN', 'geodirectory'),
|
|
| 1201 | + 'bn' => __('BENGALI', 'geodirectory'),
|
|
| 1202 | + 'ca' => __('CATALAN', 'geodirectory'),
|
|
| 1203 | + 'cs' => __('CZECH', 'geodirectory'),
|
|
| 1204 | + 'da' => __('DANISH', 'geodirectory'),
|
|
| 1205 | + 'de' => __('GERMAN', 'geodirectory'),
|
|
| 1206 | + 'el' => __('GREEK', 'geodirectory'),
|
|
| 1207 | + 'en' => __('ENGLISH', 'geodirectory'),
|
|
| 1208 | + 'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
|
|
| 1209 | + 'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
|
|
| 1210 | + 'es' => __('SPANISH', 'geodirectory'),
|
|
| 1211 | + 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1212 | + 'fa' => __('FARSI', 'geodirectory'),
|
|
| 1213 | + 'fi' => __('FINNISH', 'geodirectory'),
|
|
| 1214 | + 'fil' => __('FILIPINO', 'geodirectory'),
|
|
| 1215 | + 'fr' => __('FRENCH', 'geodirectory'),
|
|
| 1216 | + 'gl' => __('GALICIAN', 'geodirectory'),
|
|
| 1217 | + 'gu' => __('GUJARATI', 'geodirectory'),
|
|
| 1218 | + 'hi' => __('HINDI', 'geodirectory'),
|
|
| 1219 | + 'hr' => __('CROATIAN', 'geodirectory'),
|
|
| 1220 | + 'hu' => __('HUNGARIAN', 'geodirectory'),
|
|
| 1221 | + 'id' => __('INDONESIAN', 'geodirectory'),
|
|
| 1222 | + 'it' => __('ITALIAN', 'geodirectory'),
|
|
| 1223 | + 'iw' => __('HEBREW', 'geodirectory'),
|
|
| 1224 | + 'ja' => __('JAPANESE', 'geodirectory'),
|
|
| 1225 | + 'kn' => __('KANNADA', 'geodirectory'),
|
|
| 1226 | + 'ko' => __('KOREAN', 'geodirectory'),
|
|
| 1227 | + 'lt' => __('LITHUANIAN', 'geodirectory'),
|
|
| 1228 | + 'lv' => __('LATVIAN', 'geodirectory'),
|
|
| 1229 | + 'ml' => __('MALAYALAM', 'geodirectory'),
|
|
| 1230 | + 'mr' => __('MARATHI', 'geodirectory'),
|
|
| 1231 | + 'nl' => __('DUTCH', 'geodirectory'),
|
|
| 1232 | + 'no' => __('NORWEGIAN', 'geodirectory'),
|
|
| 1233 | + 'pl' => __('POLISH', 'geodirectory'),
|
|
| 1234 | + 'pt' => __('PORTUGUESE', 'geodirectory'),
|
|
| 1235 | + 'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
|
|
| 1236 | + 'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
|
|
| 1237 | + 'ro' => __('ROMANIAN', 'geodirectory'),
|
|
| 1238 | + 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1239 | + 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1240 | + 'sk' => __('SLOVAK', 'geodirectory'),
|
|
| 1241 | + 'sl' => __('SLOVENIAN', 'geodirectory'),
|
|
| 1242 | + 'sr' => __('SERBIAN', 'geodirectory'),
|
|
| 1243 | + 'sv' => __(' SWEDISH', 'geodirectory'),
|
|
| 1244 | + 'tl' => __('TAGALOG', 'geodirectory'),
|
|
| 1245 | + 'ta' => __('TAMIL', 'geodirectory'),
|
|
| 1246 | + 'te' => __('TELUGU', 'geodirectory'),
|
|
| 1247 | + 'th' => __('THAI', 'geodirectory'),
|
|
| 1248 | + 'tr' => __('TURKISH', 'geodirectory'),
|
|
| 1249 | + 'uk' => __('UKRAINIAN', 'geodirectory'),
|
|
| 1250 | + 'vi' => __('VIETNAMESE', 'geodirectory'),
|
|
| 1251 | + 'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
|
|
| 1252 | + 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
|
|
| 1253 | + ); |
|
| 1254 | + $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 1255 | + if (empty($geodir_default_map_language)) |
|
| 1256 | + $geodir_default_map_language = 'en'; |
|
| 1257 | + foreach ($arr_map_langages as $language_key => $language_txt) {
|
|
| 1258 | + if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
| 1259 | + $geodir_default_language_selected = "selected='selected'"; |
|
| 1260 | + else |
|
| 1261 | + $geodir_default_language_selected = ''; |
|
| 1262 | + |
|
| 1263 | + ?> |
|
| 1264 | 1264 | <option |
| 1265 | 1265 | value="<?php echo $language_key?>" <?php echo $geodir_default_language_selected; ?>><?php echo $language_txt; ?></option> |
| 1266 | 1266 | |
| 1267 | 1267 | <?php } |
| 1268 | - ?> |
|
| 1268 | + ?> |
|
| 1269 | 1269 | </select> |
| 1270 | 1270 | </td> |
| 1271 | 1271 | </tr> |
@@ -1276,46 +1276,46 @@ discard block |
||
| 1276 | 1276 | <td width="60%"> |
| 1277 | 1277 | <select name="geodir_default_map_search_pt" style="width:60%"> |
| 1278 | 1278 | <?php |
| 1279 | - $post_types = geodir_get_posttypes('array');
|
|
| 1280 | - $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
|
|
| 1281 | - if (empty($geodir_default_map_search_pt)) |
|
| 1282 | - $geodir_default_map_search_pt = 'gd_place'; |
|
| 1283 | - if (is_array($post_types)) {
|
|
| 1284 | - foreach ($post_types as $key => $post_types_obj) {
|
|
| 1285 | - if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
| 1286 | - $geodir_search_pt_selected = "selected='selected'"; |
|
| 1287 | - else |
|
| 1288 | - $geodir_search_pt_selected = ''; |
|
| 1289 | - |
|
| 1290 | - ?> |
|
| 1279 | + $post_types = geodir_get_posttypes('array');
|
|
| 1280 | + $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
|
|
| 1281 | + if (empty($geodir_default_map_search_pt)) |
|
| 1282 | + $geodir_default_map_search_pt = 'gd_place'; |
|
| 1283 | + if (is_array($post_types)) {
|
|
| 1284 | + foreach ($post_types as $key => $post_types_obj) {
|
|
| 1285 | + if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
| 1286 | + $geodir_search_pt_selected = "selected='selected'"; |
|
| 1287 | + else |
|
| 1288 | + $geodir_search_pt_selected = ''; |
|
| 1289 | + |
|
| 1290 | + ?> |
|
| 1291 | 1291 | <option |
| 1292 | 1292 | value="<?php echo $key?>" <?php echo $geodir_search_pt_selected; ?>><?php echo $post_types_obj['labels']['singular_name']; ?></option> |
| 1293 | 1293 | |
| 1294 | 1294 | <?php } |
| 1295 | 1295 | |
| 1296 | - } |
|
| 1296 | + } |
|
| 1297 | 1297 | |
| 1298 | - ?> |
|
| 1298 | + ?> |
|
| 1299 | 1299 | </select> |
| 1300 | 1300 | </td> |
| 1301 | 1301 | </tr> |
| 1302 | 1302 | |
| 1303 | 1303 | <?php |
| 1304 | - break; |
|
| 1304 | + break; |
|
| 1305 | 1305 | |
| 1306 | - case 'map': |
|
| 1307 | - ?> |
|
| 1306 | + case 'map': |
|
| 1307 | + ?> |
|
| 1308 | 1308 | <tr valign="top"> |
| 1309 | 1309 | <td class="forminp"> |
| 1310 | 1310 | <?php |
| 1311 | - global $post_cat, $cat_display; |
|
| 1312 | - $post_types = geodir_get_posttypes('object');
|
|
| 1313 | - $cat_display = 'checkbox'; |
|
| 1314 | - $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
|
| 1315 | - $gd_cats = get_option('geodir_exclude_cat_on_map');
|
|
| 1316 | - $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1317 | - $count = 1; |
|
| 1318 | - ?> |
|
| 1311 | + global $post_cat, $cat_display; |
|
| 1312 | + $post_types = geodir_get_posttypes('object');
|
|
| 1313 | + $cat_display = 'checkbox'; |
|
| 1314 | + $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
|
| 1315 | + $gd_cats = get_option('geodir_exclude_cat_on_map');
|
|
| 1316 | + $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1317 | + $count = 1; |
|
| 1318 | + ?> |
|
| 1319 | 1319 | <table width="70%" class="widefat"> |
| 1320 | 1320 | <thead> |
| 1321 | 1321 | <tr> |
@@ -1324,18 +1324,18 @@ discard block |
||
| 1324 | 1324 | <th><b><?php echo DESIGN_POST_TYPE_CAT; ?></b></th> |
| 1325 | 1325 | </tr> |
| 1326 | 1326 | <?php |
| 1327 | - $gd_categs = $gd_cats; |
|
| 1328 | - foreach ($post_types as $key => $post_types_obj) : |
|
| 1329 | - $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : ''; |
|
| 1330 | - $gd_taxonomy = geodir_get_taxonomies($key); |
|
| 1331 | - if ($gd_cats_upgrade) {
|
|
| 1332 | - $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : ''; |
|
| 1333 | - $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array(); |
|
| 1334 | - $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array(); |
|
| 1335 | - } |
|
| 1336 | - $post_cat = implode(',', $gd_cats);
|
|
| 1337 | - $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy); |
|
| 1338 | - ?> |
|
| 1327 | + $gd_categs = $gd_cats; |
|
| 1328 | + foreach ($post_types as $key => $post_types_obj) : |
|
| 1329 | + $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : ''; |
|
| 1330 | + $gd_taxonomy = geodir_get_taxonomies($key); |
|
| 1331 | + if ($gd_cats_upgrade) {
|
|
| 1332 | + $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : ''; |
|
| 1333 | + $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array(); |
|
| 1334 | + $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array(); |
|
| 1335 | + } |
|
| 1336 | + $post_cat = implode(',', $gd_cats);
|
|
| 1337 | + $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy); |
|
| 1338 | + ?> |
|
| 1339 | 1339 | <tr> |
| 1340 | 1340 | <td valign="top" width="5%"><?php echo $count; ?></td> |
| 1341 | 1341 | <td valign="top" width="25%" id="td_post_types"><input type="checkbox" |
@@ -1356,19 +1356,19 @@ discard block |
||
| 1356 | 1356 | </td> |
| 1357 | 1357 | </tr> |
| 1358 | 1358 | <?php |
| 1359 | - break; |
|
| 1359 | + break; |
|
| 1360 | 1360 | |
| 1361 | - case 'checkbox' : |
|
| 1361 | + case 'checkbox' : |
|
| 1362 | 1362 | |
| 1363 | - if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) : |
|
| 1364 | - ?> |
|
| 1363 | + if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) : |
|
| 1364 | + ?> |
|
| 1365 | 1365 | <tr valign="top"> |
| 1366 | 1366 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1367 | 1367 | <td class="forminp"> |
| 1368 | 1368 | <?php |
| 1369 | - endif; |
|
| 1369 | + endif; |
|
| 1370 | 1370 | |
| 1371 | - ?> |
|
| 1371 | + ?> |
|
| 1372 | 1372 | <fieldset> |
| 1373 | 1373 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1374 | 1374 | <label for="<?php echo $value['id'] ?>"> |
@@ -1378,49 +1378,49 @@ discard block |
||
| 1378 | 1378 | </fieldset> |
| 1379 | 1379 | <?php |
| 1380 | 1380 | |
| 1381 | - if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) : |
|
| 1382 | - ?> |
|
| 1381 | + if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) : |
|
| 1382 | + ?> |
|
| 1383 | 1383 | </td> |
| 1384 | 1384 | </tr> |
| 1385 | 1385 | <?php |
| 1386 | - endif; |
|
| 1386 | + endif; |
|
| 1387 | 1387 | |
| 1388 | - break; |
|
| 1388 | + break; |
|
| 1389 | 1389 | |
| 1390 | - case 'radio' : |
|
| 1390 | + case 'radio' : |
|
| 1391 | 1391 | |
| 1392 | - if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) : |
|
| 1393 | - ?> |
|
| 1392 | + if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) : |
|
| 1393 | + ?> |
|
| 1394 | 1394 | <tr valign="top"> |
| 1395 | 1395 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1396 | 1396 | <td class="forminp"> |
| 1397 | 1397 | <?php |
| 1398 | - endif; |
|
| 1398 | + endif; |
|
| 1399 | 1399 | |
| 1400 | - ?> |
|
| 1400 | + ?> |
|
| 1401 | 1401 | <fieldset> |
| 1402 | 1402 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1403 | 1403 | <label for="<?php echo $value['id'];?>"> |
| 1404 | 1404 | <input name="<?php echo esc_attr($value['id']); ?>" |
| 1405 | 1405 | id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio" |
| 1406 | 1406 | value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
|
| 1407 | - echo 'checked="checked"'; |
|
| 1408 | - }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1407 | + echo 'checked="checked"'; |
|
| 1408 | + }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1409 | 1409 | <?php echo $value['desc']; ?></label><br> |
| 1410 | 1410 | </fieldset> |
| 1411 | 1411 | <?php |
| 1412 | 1412 | |
| 1413 | - if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) : |
|
| 1414 | - ?> |
|
| 1413 | + if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) : |
|
| 1414 | + ?> |
|
| 1415 | 1415 | </td> |
| 1416 | 1416 | </tr> |
| 1417 | 1417 | <?php |
| 1418 | - endif; |
|
| 1418 | + endif; |
|
| 1419 | 1419 | |
| 1420 | - break; |
|
| 1420 | + break; |
|
| 1421 | 1421 | |
| 1422 | - case 'textarea': |
|
| 1423 | - ?> |
|
| 1422 | + case 'textarea': |
|
| 1423 | + ?> |
|
| 1424 | 1424 | <tr valign="top"> |
| 1425 | 1425 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1426 | 1426 | <td class="forminp"> |
@@ -1433,30 +1433,30 @@ discard block |
||
| 1433 | 1433 | |
| 1434 | 1434 | </td> |
| 1435 | 1435 | </tr><?php |
| 1436 | - break; |
|
| 1436 | + break; |
|
| 1437 | 1437 | |
| 1438 | - case 'editor': |
|
| 1439 | - ?> |
|
| 1438 | + case 'editor': |
|
| 1439 | + ?> |
|
| 1440 | 1440 | <tr valign="top"> |
| 1441 | 1441 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1442 | 1442 | <td class="forminp"><?php |
| 1443 | - if (get_option($value['id'])) |
|
| 1444 | - $content = stripslashes(get_option($value['id'])); |
|
| 1445 | - else |
|
| 1446 | - $content = $value['std']; |
|
| 1443 | + if (get_option($value['id'])) |
|
| 1444 | + $content = stripslashes(get_option($value['id'])); |
|
| 1445 | + else |
|
| 1446 | + $content = $value['std']; |
|
| 1447 | 1447 | |
| 1448 | - $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
|
|
| 1448 | + $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
|
|
| 1449 | 1449 | |
| 1450 | - wp_editor($content, esc_attr($value['id']), $editor_settings); |
|
| 1450 | + wp_editor($content, esc_attr($value['id']), $editor_settings); |
|
| 1451 | 1451 | |
| 1452 | - ?> <span class="description"><?php echo $value['desc'] ?></span> |
|
| 1452 | + ?> <span class="description"><?php echo $value['desc'] ?></span> |
|
| 1453 | 1453 | |
| 1454 | 1454 | </td> |
| 1455 | 1455 | </tr><?php |
| 1456 | - break; |
|
| 1456 | + break; |
|
| 1457 | 1457 | |
| 1458 | - case 'single_select_page' : |
|
| 1459 | - // WPML |
|
| 1458 | + case 'single_select_page' : |
|
| 1459 | + // WPML |
|
| 1460 | 1460 | $switch_lang = false; |
| 1461 | 1461 | $disabled = ''; |
| 1462 | 1462 | if (geodir_is_wpml() && isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') {
|
@@ -1474,18 +1474,18 @@ discard block |
||
| 1474 | 1474 | // |
| 1475 | 1475 | $page_setting = (int)get_option($value['id']); |
| 1476 | 1476 | |
| 1477 | - $args = array('name' => $value['id'],
|
|
| 1478 | - 'id' => $value['id'], |
|
| 1479 | - 'sort_column' => 'menu_order', |
|
| 1480 | - 'sort_order' => 'ASC', |
|
| 1481 | - 'show_option_none' => ' ', |
|
| 1482 | - 'class' => $value['class'], |
|
| 1483 | - 'echo' => false, |
|
| 1484 | - 'selected' => $page_setting); |
|
| 1477 | + $args = array('name' => $value['id'],
|
|
| 1478 | + 'id' => $value['id'], |
|
| 1479 | + 'sort_column' => 'menu_order', |
|
| 1480 | + 'sort_order' => 'ASC', |
|
| 1481 | + 'show_option_none' => ' ', |
|
| 1482 | + 'class' => $value['class'], |
|
| 1483 | + 'echo' => false, |
|
| 1484 | + 'selected' => $page_setting); |
|
| 1485 | 1485 | |
| 1486 | - if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
| 1486 | + if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
| 1487 | 1487 | |
| 1488 | - ?> |
|
| 1488 | + ?> |
|
| 1489 | 1489 | <tr valign="top" class="single_select_page"> |
| 1490 | 1490 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1491 | 1491 | <td class="forminp"> |
@@ -1496,17 +1496,17 @@ discard block |
||
| 1496 | 1496 | if ($switch_lang) {
|
| 1497 | 1497 | $sitepress->switch_lang($switch_lang, true); |
| 1498 | 1498 | } |
| 1499 | - break; |
|
| 1500 | - case 'single_select_country' : |
|
| 1501 | - $country_setting = (string)get_option($value['id']); |
|
| 1502 | - if (strstr($country_setting, ':')) : |
|
| 1503 | - $country = current(explode(':', $country_setting));
|
|
| 1504 | - $state = end(explode(':', $country_setting));
|
|
| 1505 | - else : |
|
| 1506 | - $country = $country_setting; |
|
| 1507 | - $state = '*'; |
|
| 1508 | - endif; |
|
| 1509 | - ?> |
|
| 1499 | + break; |
|
| 1500 | + case 'single_select_country' : |
|
| 1501 | + $country_setting = (string)get_option($value['id']); |
|
| 1502 | + if (strstr($country_setting, ':')) : |
|
| 1503 | + $country = current(explode(':', $country_setting));
|
|
| 1504 | + $state = end(explode(':', $country_setting));
|
|
| 1505 | + else : |
|
| 1506 | + $country = $country_setting; |
|
| 1507 | + $state = '*'; |
|
| 1508 | + endif; |
|
| 1509 | + ?> |
|
| 1510 | 1510 | <tr valign="top"> |
| 1511 | 1511 | <th scope="rpw" class="titledesc"><?php echo $value['name'] ?></th> |
| 1512 | 1512 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
@@ -1517,12 +1517,12 @@ discard block |
||
| 1517 | 1517 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1518 | 1518 | </td> |
| 1519 | 1519 | </tr><?php |
| 1520 | - break; |
|
| 1521 | - case 'multi_select_countries' : |
|
| 1522 | - $countries = $geodirectory->countries->countries; |
|
| 1523 | - asort($countries); |
|
| 1524 | - $selections = (array)get_option($value['id']); |
|
| 1525 | - ?> |
|
| 1520 | + break; |
|
| 1521 | + case 'multi_select_countries' : |
|
| 1522 | + $countries = $geodirectory->countries->countries; |
|
| 1523 | + asort($countries); |
|
| 1524 | + $selections = (array)get_option($value['id']); |
|
| 1525 | + ?> |
|
| 1526 | 1526 | <tr valign="top"> |
| 1527 | 1527 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1528 | 1528 | <td class="forminp"> |
@@ -1530,21 +1530,21 @@ discard block |
||
| 1530 | 1530 | data-placeholder="<?php _e('Choose countries…', 'geodirectory'); ?>"
|
| 1531 | 1531 | title="Country" class="chosen_select"> |
| 1532 | 1532 | <?php |
| 1533 | - if ($countries) foreach ($countries as $key => $val) : |
|
| 1534 | - echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1535 | - endforeach; |
|
| 1536 | - ?> |
|
| 1533 | + if ($countries) foreach ($countries as $key => $val) : |
|
| 1534 | + echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1535 | + endforeach; |
|
| 1536 | + ?> |
|
| 1537 | 1537 | </select> |
| 1538 | 1538 | </td> |
| 1539 | 1539 | </tr> |
| 1540 | 1540 | |
| 1541 | 1541 | <?php |
| 1542 | 1542 | |
| 1543 | - break; |
|
| 1543 | + break; |
|
| 1544 | 1544 | |
| 1545 | - case 'google_analytics' : |
|
| 1546 | - $selections = (array)get_option($value['id']); |
|
| 1547 | - ?> |
|
| 1545 | + case 'google_analytics' : |
|
| 1546 | + $selections = (array)get_option($value['id']); |
|
| 1547 | + ?> |
|
| 1548 | 1548 | <tr valign="top"> |
| 1549 | 1549 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1550 | 1550 | <td class="forminp"> |
@@ -1552,62 +1552,62 @@ discard block |
||
| 1552 | 1552 | |
| 1553 | 1553 | <?php |
| 1554 | 1554 | |
| 1555 | - $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
|
| 1556 | - $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
|
| 1557 | - $state = "&state=123";//any string |
|
| 1558 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1559 | - $response_type = "&response_type=code"; |
|
| 1560 | - $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
|
| 1561 | - $access_type = "&access_type=offline"; |
|
| 1562 | - $approval_prompt = "&approval_prompt=force"; |
|
| 1555 | + $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
|
| 1556 | + $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
|
| 1557 | + $state = "&state=123";//any string |
|
| 1558 | + $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1559 | + $response_type = "&response_type=code"; |
|
| 1560 | + $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
|
| 1561 | + $access_type = "&access_type=offline"; |
|
| 1562 | + $approval_prompt = "&approval_prompt=force"; |
|
| 1563 | 1563 | |
| 1564 | - $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1564 | + $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1565 | 1565 | |
| 1566 | 1566 | |
| 1567 | - if (get_option('geodir_ga_auth_token')) {
|
|
| 1568 | - ?> |
|
| 1567 | + if (get_option('geodir_ga_auth_token')) {
|
|
| 1568 | + ?> |
|
| 1569 | 1569 | <span class="button-primary" |
| 1570 | 1570 | onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
|
| 1571 | 1571 | <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
|
| 1572 | 1572 | <?php |
| 1573 | - global $gd_ga_errors; |
|
| 1574 | - if(!empty($gd_ga_errors)){
|
|
| 1575 | - print_r($gd_ga_errors); |
|
| 1576 | - } |
|
| 1577 | - } else {
|
|
| 1578 | - ?> |
|
| 1573 | + global $gd_ga_errors; |
|
| 1574 | + if(!empty($gd_ga_errors)){
|
|
| 1575 | + print_r($gd_ga_errors); |
|
| 1576 | + } |
|
| 1577 | + } else {
|
|
| 1578 | + ?> |
|
| 1579 | 1579 | <span class="button-primary" |
| 1580 | 1580 | onclick="window.open('<?php echo geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
|
| 1581 | 1581 | <?php |
| 1582 | - } |
|
| 1583 | - ?> |
|
| 1582 | + } |
|
| 1583 | + ?> |
|
| 1584 | 1584 | </td> |
| 1585 | 1585 | </tr> |
| 1586 | 1586 | |
| 1587 | 1587 | <?php |
| 1588 | 1588 | |
| 1589 | 1589 | |
| 1590 | - break; |
|
| 1590 | + break; |
|
| 1591 | 1591 | |
| 1592 | - case 'field_seperator' : |
|
| 1592 | + case 'field_seperator' : |
|
| 1593 | 1593 | |
| 1594 | - ?> |
|
| 1594 | + ?> |
|
| 1595 | 1595 | <tr valign="top"> |
| 1596 | 1596 | <td colspan="2" class="forminp geodir_line_seperator"></td> |
| 1597 | 1597 | </tr> |
| 1598 | 1598 | <?php |
| 1599 | 1599 | |
| 1600 | - break; |
|
| 1600 | + break; |
|
| 1601 | 1601 | |
| 1602 | - endswitch; |
|
| 1602 | + endswitch; |
|
| 1603 | 1603 | |
| 1604 | - endforeach; |
|
| 1604 | + endforeach; |
|
| 1605 | 1605 | |
| 1606 | - if ($first_title === false) {
|
|
| 1607 | - echo "</div>"; |
|
| 1608 | - } |
|
| 1606 | + if ($first_title === false) {
|
|
| 1607 | + echo "</div>"; |
|
| 1608 | + } |
|
| 1609 | 1609 | |
| 1610 | - ?> |
|
| 1610 | + ?> |
|
| 1611 | 1611 | |
| 1612 | 1612 | <script type="text/javascript"> |
| 1613 | 1613 | |
@@ -1667,33 +1667,33 @@ discard block |
||
| 1667 | 1667 | */ |
| 1668 | 1668 | function geodir_post_info_setting() |
| 1669 | 1669 | {
|
| 1670 | - global $post, $post_id; |
|
| 1671 | - |
|
| 1672 | - $post_type = get_post_type(); |
|
| 1673 | - |
|
| 1674 | - $package_info = array(); |
|
| 1675 | - |
|
| 1676 | - $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1677 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename'); |
|
| 1678 | - echo '<div id="geodir_wrapper">'; |
|
| 1679 | - /** |
|
| 1680 | - * Called before the GD custom fields are output in the wp-admin area. |
|
| 1681 | - * |
|
| 1682 | - * @since 1.0.0 |
|
| 1683 | - * @see 'geodir_after_default_field_in_meta_box' |
|
| 1684 | - */ |
|
| 1685 | - do_action('geodir_before_default_field_in_meta_box');
|
|
| 1686 | - //geodir_get_custom_fields_html($package_info->pid,'default',$post_type); |
|
| 1687 | - // to display all fields in one information box |
|
| 1688 | - geodir_get_custom_fields_html($package_info->pid, 'all', $post_type); |
|
| 1689 | - /** |
|
| 1690 | - * Called after the GD custom fields are output in the wp-admin area. |
|
| 1691 | - * |
|
| 1692 | - * @since 1.0.0 |
|
| 1693 | - * @see 'geodir_before_default_field_in_meta_box' |
|
| 1694 | - */ |
|
| 1695 | - do_action('geodir_after_default_field_in_meta_box');
|
|
| 1696 | - echo '</div>'; |
|
| 1670 | + global $post, $post_id; |
|
| 1671 | + |
|
| 1672 | + $post_type = get_post_type(); |
|
| 1673 | + |
|
| 1674 | + $package_info = array(); |
|
| 1675 | + |
|
| 1676 | + $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1677 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename'); |
|
| 1678 | + echo '<div id="geodir_wrapper">'; |
|
| 1679 | + /** |
|
| 1680 | + * Called before the GD custom fields are output in the wp-admin area. |
|
| 1681 | + * |
|
| 1682 | + * @since 1.0.0 |
|
| 1683 | + * @see 'geodir_after_default_field_in_meta_box' |
|
| 1684 | + */ |
|
| 1685 | + do_action('geodir_before_default_field_in_meta_box');
|
|
| 1686 | + //geodir_get_custom_fields_html($package_info->pid,'default',$post_type); |
|
| 1687 | + // to display all fields in one information box |
|
| 1688 | + geodir_get_custom_fields_html($package_info->pid, 'all', $post_type); |
|
| 1689 | + /** |
|
| 1690 | + * Called after the GD custom fields are output in the wp-admin area. |
|
| 1691 | + * |
|
| 1692 | + * @since 1.0.0 |
|
| 1693 | + * @see 'geodir_before_default_field_in_meta_box' |
|
| 1694 | + */ |
|
| 1695 | + do_action('geodir_after_default_field_in_meta_box');
|
|
| 1696 | + echo '</div>'; |
|
| 1697 | 1697 | } |
| 1698 | 1698 | |
| 1699 | 1699 | /** |
@@ -1706,18 +1706,18 @@ discard block |
||
| 1706 | 1706 | */ |
| 1707 | 1707 | function geodir_post_addinfo_setting() |
| 1708 | 1708 | {
|
| 1709 | - global $post, $post_id; |
|
| 1709 | + global $post, $post_id; |
|
| 1710 | 1710 | |
| 1711 | - $post_type = get_post_type(); |
|
| 1711 | + $post_type = get_post_type(); |
|
| 1712 | 1712 | |
| 1713 | - $package_info = array(); |
|
| 1713 | + $package_info = array(); |
|
| 1714 | 1714 | |
| 1715 | - $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1715 | + $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1716 | 1716 | |
| 1717 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename'); |
|
| 1718 | - echo '<div id="geodir_wrapper">'; |
|
| 1719 | - geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type); |
|
| 1720 | - echo '</div>'; |
|
| 1717 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename'); |
|
| 1718 | + echo '<div id="geodir_wrapper">'; |
|
| 1719 | + geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type); |
|
| 1720 | + echo '</div>'; |
|
| 1721 | 1721 | |
| 1722 | 1722 | } |
| 1723 | 1723 | |
@@ -1731,60 +1731,60 @@ discard block |
||
| 1731 | 1731 | */ |
| 1732 | 1732 | function geodir_post_attachments() |
| 1733 | 1733 | {
|
| 1734 | - global $post, $post_id; |
|
| 1734 | + global $post, $post_id; |
|
| 1735 | 1735 | |
| 1736 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
|
| 1736 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
|
| 1737 | 1737 | |
| 1738 | - if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
|
| 1739 | - echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 1740 | - geodir_show_featured_image($post_id, 'thumbnail'); |
|
| 1741 | - } |
|
| 1738 | + if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
|
| 1739 | + echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 1740 | + geodir_show_featured_image($post_id, 'thumbnail'); |
|
| 1741 | + } |
|
| 1742 | 1742 | |
| 1743 | - $image_limit = 0; |
|
| 1743 | + $image_limit = 0; |
|
| 1744 | 1744 | |
| 1745 | - ?> |
|
| 1745 | + ?> |
|
| 1746 | 1746 | |
| 1747 | 1747 | |
| 1748 | 1748 | <h5 class="form_title"> |
| 1749 | 1749 | <?php if ($image_limit != 0 && $image_limit == 1) {
|
| 1750 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 1751 | - } ?> |
|
| 1750 | + echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 1751 | + } ?> |
|
| 1752 | 1752 | <?php if ($image_limit != 0 && $image_limit > 1) {
|
| 1753 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 1754 | - } ?> |
|
| 1753 | + echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 1754 | + } ?> |
|
| 1755 | 1755 | <?php if ($image_limit == 0) {
|
| 1756 | - echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 1757 | - } ?> |
|
| 1756 | + echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 1757 | + } ?> |
|
| 1758 | 1758 | </h5> |
| 1759 | 1759 | |
| 1760 | 1760 | |
| 1761 | 1761 | <?php |
| 1762 | 1762 | |
| 1763 | - $curImages = geodir_get_images($post_id); |
|
| 1764 | - $place_img_array = array(); |
|
| 1763 | + $curImages = geodir_get_images($post_id); |
|
| 1764 | + $place_img_array = array(); |
|
| 1765 | 1765 | |
| 1766 | - if (!empty($curImages)): |
|
| 1767 | - foreach ($curImages as $p_img): |
|
| 1768 | - $place_img_array[] = $p_img->src; |
|
| 1769 | - endforeach; |
|
| 1770 | - endif; |
|
| 1766 | + if (!empty($curImages)): |
|
| 1767 | + foreach ($curImages as $p_img): |
|
| 1768 | + $place_img_array[] = $p_img->src; |
|
| 1769 | + endforeach; |
|
| 1770 | + endif; |
|
| 1771 | 1771 | |
| 1772 | - if (!empty($place_img_array)) |
|
| 1773 | - $curImages = implode(',', $place_img_array);
|
|
| 1772 | + if (!empty($place_img_array)) |
|
| 1773 | + $curImages = implode(',', $place_img_array);
|
|
| 1774 | 1774 | |
| 1775 | 1775 | |
| 1776 | - // adjust values here |
|
| 1777 | - $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
| 1776 | + // adjust values here |
|
| 1777 | + $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
| 1778 | 1778 | |
| 1779 | - $svalue = $curImages; // this will be initial value of the above form field. Image urls. |
|
| 1779 | + $svalue = $curImages; // this will be initial value of the above form field. Image urls. |
|
| 1780 | 1780 | |
| 1781 | - $multiple = true; // allow multiple files upload |
|
| 1781 | + $multiple = true; // allow multiple files upload |
|
| 1782 | 1782 | |
| 1783 | - $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
| 1783 | + $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
| 1784 | 1784 | |
| 1785 | - $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
| 1785 | + $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
| 1786 | 1786 | |
| 1787 | - ?> |
|
| 1787 | + ?> |
|
| 1788 | 1788 | |
| 1789 | 1789 | <div class="gtd-form_row clearfix" id="<?php echo $id; ?>dropbox" style="border:1px solid #999999;padding:5px;text-align:center;"> |
| 1790 | 1790 | <input type="hidden" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="<?php echo $svalue; ?>"/> |
@@ -1826,13 +1826,13 @@ discard block |
||
| 1826 | 1826 | */ |
| 1827 | 1827 | function geodir_action_post_updated($post_ID, $post_after, $post_before) |
| 1828 | 1828 | {
|
| 1829 | - $post_type = get_post_type($post_ID); |
|
| 1829 | + $post_type = get_post_type($post_ID); |
|
| 1830 | 1830 | |
| 1831 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1832 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
|
|
| 1833 | - geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title); |
|
| 1834 | - } |
|
| 1835 | - } |
|
| 1831 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1832 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
|
|
| 1833 | + geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title); |
|
| 1834 | + } |
|
| 1835 | + } |
|
| 1836 | 1836 | } |
| 1837 | 1837 | |
| 1838 | 1838 | /** |
@@ -1847,39 +1847,39 @@ discard block |
||
| 1847 | 1847 | */ |
| 1848 | 1848 | function geodir_notification_add_bcc_option($settings) |
| 1849 | 1849 | {
|
| 1850 | - if (!empty($settings)) {
|
|
| 1851 | - $new_settings = array(); |
|
| 1852 | - foreach ($settings as $setting) {
|
|
| 1853 | - if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
|
|
| 1854 | - $geodir_bcc_listing_published_yes = array( |
|
| 1855 | - 'name' => __('Listing published', 'geodirectory'),
|
|
| 1856 | - 'desc' => __('Yes', 'geodirectory'),
|
|
| 1857 | - 'id' => 'geodir_bcc_listing_published', |
|
| 1858 | - 'std' => 'yes', |
|
| 1859 | - 'type' => 'radio', |
|
| 1860 | - 'value' => '1', |
|
| 1861 | - 'radiogroup' => 'start' |
|
| 1862 | - ); |
|
| 1863 | - |
|
| 1864 | - $geodir_bcc_listing_published_no = array( |
|
| 1865 | - 'name' => __('Listing published', 'geodirectory'),
|
|
| 1866 | - 'desc' => __('No', 'geodirectory'),
|
|
| 1867 | - 'id' => 'geodir_bcc_listing_published', |
|
| 1868 | - 'std' => 'yes', |
|
| 1869 | - 'type' => 'radio', |
|
| 1870 | - 'value' => '0', |
|
| 1871 | - 'radiogroup' => 'end' |
|
| 1872 | - ); |
|
| 1873 | - |
|
| 1874 | - $new_settings[] = $geodir_bcc_listing_published_yes; |
|
| 1875 | - $new_settings[] = $geodir_bcc_listing_published_no; |
|
| 1876 | - } |
|
| 1877 | - $new_settings[] = $setting; |
|
| 1878 | - } |
|
| 1879 | - $settings = $new_settings; |
|
| 1880 | - } |
|
| 1850 | + if (!empty($settings)) {
|
|
| 1851 | + $new_settings = array(); |
|
| 1852 | + foreach ($settings as $setting) {
|
|
| 1853 | + if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
|
|
| 1854 | + $geodir_bcc_listing_published_yes = array( |
|
| 1855 | + 'name' => __('Listing published', 'geodirectory'),
|
|
| 1856 | + 'desc' => __('Yes', 'geodirectory'),
|
|
| 1857 | + 'id' => 'geodir_bcc_listing_published', |
|
| 1858 | + 'std' => 'yes', |
|
| 1859 | + 'type' => 'radio', |
|
| 1860 | + 'value' => '1', |
|
| 1861 | + 'radiogroup' => 'start' |
|
| 1862 | + ); |
|
| 1863 | + |
|
| 1864 | + $geodir_bcc_listing_published_no = array( |
|
| 1865 | + 'name' => __('Listing published', 'geodirectory'),
|
|
| 1866 | + 'desc' => __('No', 'geodirectory'),
|
|
| 1867 | + 'id' => 'geodir_bcc_listing_published', |
|
| 1868 | + 'std' => 'yes', |
|
| 1869 | + 'type' => 'radio', |
|
| 1870 | + 'value' => '0', |
|
| 1871 | + 'radiogroup' => 'end' |
|
| 1872 | + ); |
|
| 1873 | + |
|
| 1874 | + $new_settings[] = $geodir_bcc_listing_published_yes; |
|
| 1875 | + $new_settings[] = $geodir_bcc_listing_published_no; |
|
| 1876 | + } |
|
| 1877 | + $new_settings[] = $setting; |
|
| 1878 | + } |
|
| 1879 | + $settings = $new_settings; |
|
| 1880 | + } |
|
| 1881 | 1881 | |
| 1882 | - return $settings; |
|
| 1882 | + return $settings; |
|
| 1883 | 1883 | } |
| 1884 | 1884 | |
| 1885 | 1885 | |
@@ -1894,19 +1894,19 @@ discard block |
||
| 1894 | 1894 | */ |
| 1895 | 1895 | function get_gd_theme_compat_callback() |
| 1896 | 1896 | {
|
| 1897 | - global $wpdb; |
|
| 1898 | - $themes = get_option('gd_theme_compats');
|
|
| 1899 | - |
|
| 1900 | - if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
|
|
| 1901 | - if (isset($_POST['export'])) {
|
|
| 1902 | - echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']])); |
|
| 1903 | - } else {
|
|
| 1904 | - echo json_encode($themes[$_POST['theme']]); |
|
| 1905 | - } |
|
| 1897 | + global $wpdb; |
|
| 1898 | + $themes = get_option('gd_theme_compats');
|
|
| 1906 | 1899 | |
| 1907 | - } |
|
| 1900 | + if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
|
|
| 1901 | + if (isset($_POST['export'])) {
|
|
| 1902 | + echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']])); |
|
| 1903 | + } else {
|
|
| 1904 | + echo json_encode($themes[$_POST['theme']]); |
|
| 1905 | + } |
|
| 1906 | + |
|
| 1907 | + } |
|
| 1908 | 1908 | |
| 1909 | - die(); |
|
| 1909 | + die(); |
|
| 1910 | 1910 | } |
| 1911 | 1911 | |
| 1912 | 1912 | add_action('wp_ajax_get_gd_theme_compat_import_callback', 'get_gd_theme_compat_import_callback');
|
@@ -1920,20 +1920,20 @@ discard block |
||
| 1920 | 1920 | */ |
| 1921 | 1921 | function get_gd_theme_compat_import_callback() |
| 1922 | 1922 | {
|
| 1923 | - global $wpdb; |
|
| 1924 | - $themes = get_option('gd_theme_compats');
|
|
| 1925 | - if (isset($_POST['theme']) && !empty($_POST['theme'])) {
|
|
| 1926 | - $json = json_decode(stripslashes($_POST['theme']), true); |
|
| 1927 | - if (!empty($json) && is_array($json)) {
|
|
| 1928 | - $key = sanitize_text_field(key($json)); |
|
| 1929 | - $themes[$key] = $json[$key]; |
|
| 1930 | - update_option('gd_theme_compats', $themes);
|
|
| 1931 | - echo $key; |
|
| 1932 | - die(); |
|
| 1933 | - } |
|
| 1934 | - } |
|
| 1935 | - echo '0'; |
|
| 1936 | - die(); |
|
| 1923 | + global $wpdb; |
|
| 1924 | + $themes = get_option('gd_theme_compats');
|
|
| 1925 | + if (isset($_POST['theme']) && !empty($_POST['theme'])) {
|
|
| 1926 | + $json = json_decode(stripslashes($_POST['theme']), true); |
|
| 1927 | + if (!empty($json) && is_array($json)) {
|
|
| 1928 | + $key = sanitize_text_field(key($json)); |
|
| 1929 | + $themes[$key] = $json[$key]; |
|
| 1930 | + update_option('gd_theme_compats', $themes);
|
|
| 1931 | + echo $key; |
|
| 1932 | + die(); |
|
| 1933 | + } |
|
| 1934 | + } |
|
| 1935 | + echo '0'; |
|
| 1936 | + die(); |
|
| 1937 | 1937 | } |
| 1938 | 1938 | |
| 1939 | 1939 | |
@@ -1946,39 +1946,39 @@ discard block |
||
| 1946 | 1946 | */ |
| 1947 | 1947 | function gd_set_theme_compat() |
| 1948 | 1948 | {
|
| 1949 | - global $wpdb; |
|
| 1950 | - $theme = wp_get_theme(); |
|
| 1949 | + global $wpdb; |
|
| 1950 | + $theme = wp_get_theme(); |
|
| 1951 | 1951 | |
| 1952 | - if ($theme->parent()) {
|
|
| 1953 | - $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
|
|
| 1954 | - } else {
|
|
| 1955 | - $theme_name = str_replace(" ", "_", $theme->get('Name'));
|
|
| 1956 | - } |
|
| 1952 | + if ($theme->parent()) {
|
|
| 1953 | + $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
|
|
| 1954 | + } else {
|
|
| 1955 | + $theme_name = str_replace(" ", "_", $theme->get('Name'));
|
|
| 1956 | + } |
|
| 1957 | 1957 | |
| 1958 | - $theme_compats = get_option('gd_theme_compats');
|
|
| 1959 | - $current_compat = get_option('gd_theme_compat');
|
|
| 1960 | - $current_compat = str_replace("_custom", "", $current_compat);
|
|
| 1958 | + $theme_compats = get_option('gd_theme_compats');
|
|
| 1959 | + $current_compat = get_option('gd_theme_compat');
|
|
| 1960 | + $current_compat = str_replace("_custom", "", $current_compat);
|
|
| 1961 | 1961 | |
| 1962 | - if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
|
|
| 1963 | - return; |
|
| 1964 | - }// if already running correct compat then bail |
|
| 1962 | + if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
|
|
| 1963 | + return; |
|
| 1964 | + }// if already running correct compat then bail |
|
| 1965 | 1965 | |
| 1966 | - if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
|
|
| 1967 | - update_option('gd_theme_compat', $theme_name);
|
|
| 1968 | - update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
|
|
| 1966 | + if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
|
|
| 1967 | + update_option('gd_theme_compat', $theme_name);
|
|
| 1968 | + update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
|
|
| 1969 | 1969 | |
| 1970 | - // if there are default options to set then set them |
|
| 1971 | - if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
|
|
| 1970 | + // if there are default options to set then set them |
|
| 1971 | + if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
|
|
| 1972 | 1972 | |
| 1973 | - foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
|
|
| 1974 | - update_option($key, $val); |
|
| 1975 | - } |
|
| 1976 | - } |
|
| 1973 | + foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
|
|
| 1974 | + update_option($key, $val); |
|
| 1975 | + } |
|
| 1976 | + } |
|
| 1977 | 1977 | |
| 1978 | - } else {
|
|
| 1979 | - update_option('gd_theme_compat', '');
|
|
| 1980 | - update_option('theme_compatibility_setting', '');
|
|
| 1981 | - } |
|
| 1978 | + } else {
|
|
| 1979 | + update_option('gd_theme_compat', '');
|
|
| 1980 | + update_option('theme_compatibility_setting', '');
|
|
| 1981 | + } |
|
| 1982 | 1982 | |
| 1983 | 1983 | |
| 1984 | 1984 | } |
@@ -1993,9 +1993,9 @@ discard block |
||
| 1993 | 1993 | */ |
| 1994 | 1994 | function gd_check_avada_compat() |
| 1995 | 1995 | {
|
| 1996 | - if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
|
|
| 1997 | - add_action('admin_notices', 'gd_avada_compat_warning');
|
|
| 1998 | - } |
|
| 1996 | + if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
|
|
| 1997 | + add_action('admin_notices', 'gd_avada_compat_warning');
|
|
| 1998 | + } |
|
| 1999 | 1999 | } |
| 2000 | 2000 | |
| 2001 | 2001 | |
@@ -2008,22 +2008,22 @@ discard block |
||
| 2008 | 2008 | function gd_avada_compat_warning() |
| 2009 | 2009 | {
|
| 2010 | 2010 | |
| 2011 | - /* |
|
| 2011 | + /* |
|
| 2012 | 2012 | $msg_type = error |
| 2013 | 2013 | $msg_type = updated fade |
| 2014 | 2014 | $msg_type = update-nag |
| 2015 | 2015 | */ |
| 2016 | 2016 | |
| 2017 | - $plugin = 'avada-nag'; |
|
| 2018 | - $timestamp = 'avada-nag1234'; |
|
| 2019 | - $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
|
| 2020 | - echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2021 | - echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | - echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2023 | - echo "<p>$message</p>"; |
|
| 2024 | - echo "</div>"; |
|
| 2017 | + $plugin = 'avada-nag'; |
|
| 2018 | + $timestamp = 'avada-nag1234'; |
|
| 2019 | + $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
|
| 2020 | + echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2021 | + echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | + echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2023 | + echo "<p>$message</p>"; |
|
| 2024 | + echo "</div>"; |
|
| 2025 | 2025 | |
| 2026 | - ?> |
|
| 2026 | + ?> |
|
| 2027 | 2027 | <script> |
| 2028 | 2028 | function gdRemoveANotification($plugin, $timestamp) {
|
| 2029 | 2029 | |
@@ -2091,10 +2091,10 @@ discard block |
||
| 2091 | 2091 | */ |
| 2092 | 2092 | function geodir_avada_remove_notification() |
| 2093 | 2093 | {
|
| 2094 | - update_option('avada_nag', TRUE);
|
|
| 2094 | + update_option('avada_nag', TRUE);
|
|
| 2095 | 2095 | |
| 2096 | - // Always die in functions echoing ajax content |
|
| 2097 | - die(); |
|
| 2096 | + // Always die in functions echoing ajax content |
|
| 2097 | + die(); |
|
| 2098 | 2098 | } |
| 2099 | 2099 | |
| 2100 | 2100 | |
@@ -2116,9 +2116,9 @@ discard block |
||
| 2116 | 2116 | global $post, $typenow, $current_screen; |
| 2117 | 2117 | |
| 2118 | 2118 | $post_type = NULL; |
| 2119 | - if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
| 2119 | + if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
| 2120 | 2120 | $post_type = get_post_type($_REQUEST['post']); |
| 2121 | - elseif ($post && isset($post->post_type)) |
|
| 2121 | + elseif ($post && isset($post->post_type)) |
|
| 2122 | 2122 | $post_type = $post->post_type; |
| 2123 | 2123 | elseif ($typenow) |
| 2124 | 2124 | $post_type = $typenow; |
@@ -2153,7 +2153,7 @@ discard block |
||
| 2153 | 2153 | // Don't allow same slug url for listing and location |
| 2154 | 2154 | if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
|
| 2155 | 2155 | $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
|
| 2156 | - wp_redirect($redirect_url); |
|
| 2156 | + wp_redirect($redirect_url); |
|
| 2157 | 2157 | exit; |
| 2158 | 2158 | } |
| 2159 | 2159 | |
@@ -2183,10 +2183,10 @@ discard block |
||
| 2183 | 2183 | * @package GeoDirectory |
| 2184 | 2184 | */ |
| 2185 | 2185 | function geodir_hide_admin_preview_button() {
|
| 2186 | - global $post_type; |
|
| 2187 | - $post_types = geodir_get_posttypes(); |
|
| 2188 | - if(in_array($post_type, $post_types)) |
|
| 2189 | - echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
|
| 2186 | + global $post_type; |
|
| 2187 | + $post_types = geodir_get_posttypes(); |
|
| 2188 | + if(in_array($post_type, $post_types)) |
|
| 2189 | + echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
|
| 2190 | 2190 | } |
| 2191 | 2191 | add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' ); |
| 2192 | 2192 | add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' ); |
@@ -2201,7 +2201,7 @@ discard block |
||
| 2201 | 2201 | */ |
| 2202 | 2202 | function geodir_import_export_tab( $tabs ) {
|
| 2203 | 2203 | $tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) ); |
| 2204 | - return $tabs; |
|
| 2204 | + return $tabs; |
|
| 2205 | 2205 | } |
| 2206 | 2206 | |
| 2207 | 2207 | /** |
@@ -2216,26 +2216,26 @@ discard block |
||
| 2216 | 2216 | function geodir_import_export_page() {
|
| 2217 | 2217 | $nonce = wp_create_nonce( 'geodir_import_export_nonce' ); |
| 2218 | 2218 | $gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv'; |
| 2219 | - /** |
|
| 2220 | - * Filter sample category data csv file url. |
|
| 2221 | - * |
|
| 2222 | - * @since 1.0.0 |
|
| 2223 | - * @package GeoDirectory |
|
| 2224 | - * |
|
| 2225 | - * @param string $gd_cats_sample_csv Sample category data csv file url. |
|
| 2226 | - */ |
|
| 2219 | + /** |
|
| 2220 | + * Filter sample category data csv file url. |
|
| 2221 | + * |
|
| 2222 | + * @since 1.0.0 |
|
| 2223 | + * @package GeoDirectory |
|
| 2224 | + * |
|
| 2225 | + * @param string $gd_cats_sample_csv Sample category data csv file url. |
|
| 2226 | + */ |
|
| 2227 | 2227 | $gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv ); |
| 2228 | 2228 | |
| 2229 | 2229 | $gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv'; |
| 2230 | - /** |
|
| 2231 | - * Filter sample post data csv file url. |
|
| 2232 | - * |
|
| 2233 | - * @since 1.0.0 |
|
| 2234 | - * @package GeoDirectory |
|
| 2235 | - * |
|
| 2236 | - * @param string $gd_posts_sample_csv Sample post data csv file url. |
|
| 2237 | - */ |
|
| 2238 | - $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2230 | + /** |
|
| 2231 | + * Filter sample post data csv file url. |
|
| 2232 | + * |
|
| 2233 | + * @since 1.0.0 |
|
| 2234 | + * @package GeoDirectory |
|
| 2235 | + * |
|
| 2236 | + * @param string $gd_posts_sample_csv Sample post data csv file url. |
|
| 2237 | + */ |
|
| 2238 | + $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2239 | 2239 | |
| 2240 | 2240 | $gd_posttypes = geodir_get_posttypes( 'array' ); |
| 2241 | 2241 | |
@@ -2258,14 +2258,14 @@ discard block |
||
| 2258 | 2258 | $gd_chunksize_options[100000] = 100000; |
| 2259 | 2259 | |
| 2260 | 2260 | /** |
| 2261 | - * Filter max entries per export csv file. |
|
| 2262 | - * |
|
| 2263 | - * @since 1.5.6 |
|
| 2264 | - * @package GeoDirectory |
|
| 2265 | - * |
|
| 2266 | - * @param string $gd_chunksize_options Entries options. |
|
| 2267 | - */ |
|
| 2268 | - $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2261 | + * Filter max entries per export csv file. |
|
| 2262 | + * |
|
| 2263 | + * @since 1.5.6 |
|
| 2264 | + * @package GeoDirectory |
|
| 2265 | + * |
|
| 2266 | + * @param string $gd_chunksize_options Entries options. |
|
| 2267 | + */ |
|
| 2268 | + $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2269 | 2269 | |
| 2270 | 2270 | $gd_chunksize_option = ''; |
| 2271 | 2271 | foreach ($gd_chunksize_options as $value => $title) {
|
@@ -2282,12 +2282,12 @@ discard block |
||
| 2282 | 2282 | <div class="gd-content-heading"> |
| 2283 | 2283 | |
| 2284 | 2284 | <?php |
| 2285 | - ini_set('max_execution_time', 999999);
|
|
| 2286 | - $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2287 | - ini_restore('max_execution_time');
|
|
| 2285 | + ini_set('max_execution_time', 999999);
|
|
| 2286 | + $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2287 | + ini_restore('max_execution_time');
|
|
| 2288 | 2288 | |
| 2289 | - if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2290 | - ?> |
|
| 2289 | + if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2290 | + ?> |
|
| 2291 | 2291 | <div id="gd_ie_reqs" class="metabox-holder"> |
| 2292 | 2292 | <div class="meta-box-sortables ui-sortable"> |
| 2293 | 2293 | <div class="postbox"> |
@@ -2460,7 +2460,7 @@ discard block |
||
| 2460 | 2460 | * Called just after the sample CSV download link. |
| 2461 | 2461 | * |
| 2462 | 2462 | * @since 1.0.0 |
| 2463 | - * @package GeoDirectory |
|
| 2463 | + * @package GeoDirectory |
|
| 2464 | 2464 | */ |
| 2465 | 2465 | do_action('geodir_sample_cats_csv_download_link');
|
| 2466 | 2466 | ?> |
@@ -2545,11 +2545,11 @@ discard block |
||
| 2545 | 2545 | * |
| 2546 | 2546 | * Called after the last setting on the GD > Import & Export page. |
| 2547 | 2547 | * @since 1.4.6 |
| 2548 | - * @package GeoDirectory |
|
| 2548 | + * @package GeoDirectory |
|
| 2549 | 2549 | * |
| 2550 | 2550 | * @param array $gd_posttypes GD post types. |
| 2551 | - * @param array $gd_chunksize_options File chunk size options. |
|
| 2552 | - * @param string $nonce Wordpress security token for GD import & export. |
|
| 2551 | + * @param array $gd_chunksize_options File chunk size options. |
|
| 2552 | + * @param string $nonce Wordpress security token for GD import & export. |
|
| 2553 | 2553 | */ |
| 2554 | 2554 | do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce ); |
| 2555 | 2555 | ?> |
@@ -3236,44 +3236,44 @@ discard block |
||
| 3236 | 3236 | function geodir_init_filesystem() |
| 3237 | 3237 | {
|
| 3238 | 3238 | |
| 3239 | - if(!function_exists('get_filesystem_method')){
|
|
| 3240 | - require_once(ABSPATH."/wp-admin/includes/file.php"); |
|
| 3241 | - } |
|
| 3242 | - $access_type = get_filesystem_method(); |
|
| 3243 | - if ($access_type === 'direct') {
|
|
| 3244 | - /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
|
| 3245 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3246 | - |
|
| 3247 | - /* initialize the API */ |
|
| 3248 | - if (!WP_Filesystem($creds)) {
|
|
| 3249 | - /* any problems and we exit */ |
|
| 3250 | - //return '@@@3'; |
|
| 3251 | - return false; |
|
| 3252 | - } |
|
| 3253 | - |
|
| 3254 | - global $wp_filesystem; |
|
| 3255 | - return $wp_filesystem; |
|
| 3256 | - /* do our file manipulations below */ |
|
| 3257 | - } elseif (defined('FTP_USER')) {
|
|
| 3258 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3239 | + if(!function_exists('get_filesystem_method')){
|
|
| 3240 | + require_once(ABSPATH."/wp-admin/includes/file.php"); |
|
| 3241 | + } |
|
| 3242 | + $access_type = get_filesystem_method(); |
|
| 3243 | + if ($access_type === 'direct') {
|
|
| 3244 | + /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
|
| 3245 | + $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3246 | + |
|
| 3247 | + /* initialize the API */ |
|
| 3248 | + if (!WP_Filesystem($creds)) {
|
|
| 3249 | + /* any problems and we exit */ |
|
| 3250 | + //return '@@@3'; |
|
| 3251 | + return false; |
|
| 3252 | + } |
|
| 3259 | 3253 | |
| 3260 | - /* initialize the API */ |
|
| 3261 | - if (!WP_Filesystem($creds)) {
|
|
| 3262 | - /* any problems and we exit */ |
|
| 3263 | - //return '@@@33'; |
|
| 3264 | - return false; |
|
| 3265 | - } |
|
| 3254 | + global $wp_filesystem; |
|
| 3255 | + return $wp_filesystem; |
|
| 3256 | + /* do our file manipulations below */ |
|
| 3257 | + } elseif (defined('FTP_USER')) {
|
|
| 3258 | + $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3259 | + |
|
| 3260 | + /* initialize the API */ |
|
| 3261 | + if (!WP_Filesystem($creds)) {
|
|
| 3262 | + /* any problems and we exit */ |
|
| 3263 | + //return '@@@33'; |
|
| 3264 | + return false; |
|
| 3265 | + } |
|
| 3266 | 3266 | |
| 3267 | - global $wp_filesystem; |
|
| 3268 | - //return '@@@1'; |
|
| 3269 | - return $wp_filesystem; |
|
| 3267 | + global $wp_filesystem; |
|
| 3268 | + //return '@@@1'; |
|
| 3269 | + return $wp_filesystem; |
|
| 3270 | 3270 | |
| 3271 | - } else {
|
|
| 3272 | - //return '@@@2'; |
|
| 3273 | - /* don't have direct write access. Prompt user with our notice */ |
|
| 3274 | - add_action('admin_notice', 'geodir_filesystem_notice');
|
|
| 3275 | - return false; |
|
| 3276 | - } |
|
| 3271 | + } else {
|
|
| 3272 | + //return '@@@2'; |
|
| 3273 | + /* don't have direct write access. Prompt user with our notice */ |
|
| 3274 | + add_action('admin_notice', 'geodir_filesystem_notice');
|
|
| 3275 | + return false; |
|
| 3276 | + } |
|
| 3277 | 3277 | |
| 3278 | 3278 | } |
| 3279 | 3279 | |
@@ -3291,10 +3291,10 @@ discard block |
||
| 3291 | 3291 | */ |
| 3292 | 3292 | function geodir_filesystem_notice() |
| 3293 | 3293 | { if ( defined( 'DOING_AJAX' ) ){return;}
|
| 3294 | - $access_type = get_filesystem_method(); |
|
| 3295 | - if ($access_type === 'direct') {
|
|
| 3296 | - } elseif (!defined('FTP_USER')) {
|
|
| 3297 | - ?> |
|
| 3294 | + $access_type = get_filesystem_method(); |
|
| 3295 | + if ($access_type === 'direct') {
|
|
| 3296 | + } elseif (!defined('FTP_USER')) {
|
|
| 3297 | + ?> |
|
| 3298 | 3298 | <div class="error"> |
| 3299 | 3299 | <p><?php _e('GeoDirectory does not have access to your filesystem, thing like import/export will not work. Please define your details in wp-config.php as explained here', 'geodirectory'); ?>
|
| 3300 | 3300 | <a target="_blank" href="http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants">http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants</a> |
@@ -3321,1258 +3321,1258 @@ discard block |
||
| 3321 | 3321 | * @return string Json data. |
| 3322 | 3322 | */ |
| 3323 | 3323 | function geodir_ajax_import_export() {
|
| 3324 | - global $wpdb, $plugin_prefix, $current_user, $wp_filesystem; |
|
| 3324 | + global $wpdb, $plugin_prefix, $current_user, $wp_filesystem; |
|
| 3325 | 3325 | |
| 3326 | - error_reporting(0); |
|
| 3326 | + error_reporting(0); |
|
| 3327 | 3327 | |
| 3328 | - $xstart = microtime(true); |
|
| 3328 | + $xstart = microtime(true); |
|
| 3329 | 3329 | |
| 3330 | - // try to set higher limits for import |
|
| 3331 | - $max_input_time = ini_get('max_input_time');
|
|
| 3332 | - $max_execution_time = ini_get('max_execution_time');
|
|
| 3333 | - $memory_limit= ini_get('memory_limit');
|
|
| 3330 | + // try to set higher limits for import |
|
| 3331 | + $max_input_time = ini_get('max_input_time');
|
|
| 3332 | + $max_execution_time = ini_get('max_execution_time');
|
|
| 3333 | + $memory_limit= ini_get('memory_limit');
|
|
| 3334 | 3334 | |
| 3335 | - if(!$max_input_time || $max_input_time<3000){
|
|
| 3336 | - ini_set('max_input_time', 3000);
|
|
| 3337 | - } |
|
| 3335 | + if(!$max_input_time || $max_input_time<3000){
|
|
| 3336 | + ini_set('max_input_time', 3000);
|
|
| 3337 | + } |
|
| 3338 | 3338 | |
| 3339 | - if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3340 | - ini_set('max_execution_time', 3000);
|
|
| 3341 | - } |
|
| 3339 | + if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3340 | + ini_set('max_execution_time', 3000);
|
|
| 3341 | + } |
|
| 3342 | 3342 | |
| 3343 | - if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3344 | - if(str_replace('M','',$memory_limit)<256){
|
|
| 3345 | - ini_set('memory_limit', '256M');
|
|
| 3346 | - } |
|
| 3347 | - } |
|
| 3343 | + if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3344 | + if(str_replace('M','',$memory_limit)<256){
|
|
| 3345 | + ini_set('memory_limit', '256M');
|
|
| 3346 | + } |
|
| 3347 | + } |
|
| 3348 | 3348 | |
| 3349 | - $json = array(); |
|
| 3349 | + $json = array(); |
|
| 3350 | 3350 | |
| 3351 | - if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3352 | - wp_send_json( $json ); |
|
| 3353 | - } |
|
| 3351 | + if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3352 | + wp_send_json( $json ); |
|
| 3353 | + } |
|
| 3354 | 3354 | |
| 3355 | - $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3356 | - $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3357 | - $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3355 | + $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3356 | + $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3357 | + $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3358 | 3358 | |
| 3359 | - if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3360 | - wp_send_json( $json ); |
|
| 3361 | - } |
|
| 3359 | + if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3360 | + wp_send_json( $json ); |
|
| 3361 | + } |
|
| 3362 | 3362 | |
| 3363 | - $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3364 | - $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3365 | - $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
|
| 3366 | - $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3363 | + $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3364 | + $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3365 | + $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
|
| 3366 | + $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3367 | 3367 | |
| 3368 | - $wp_filesystem = geodir_init_filesystem(); |
|
| 3369 | - if (!$wp_filesystem) {
|
|
| 3370 | - $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3371 | - wp_send_json( $json ); |
|
| 3372 | - } |
|
| 3368 | + $wp_filesystem = geodir_init_filesystem(); |
|
| 3369 | + if (!$wp_filesystem) {
|
|
| 3370 | + $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3371 | + wp_send_json( $json ); |
|
| 3372 | + } |
|
| 3373 | 3373 | |
| 3374 | - if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
|
| 3375 | - $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3376 | - wp_send_json( $json ); |
|
| 3377 | - } |
|
| 3374 | + if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
|
| 3375 | + $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3376 | + wp_send_json( $json ); |
|
| 3377 | + } |
|
| 3378 | 3378 | |
| 3379 | - $csv_file_dir = geodir_path_import_export( false ); |
|
| 3380 | - if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3381 | - if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3382 | - $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3383 | - wp_send_json( $json ); |
|
| 3384 | - } |
|
| 3385 | - } |
|
| 3379 | + $csv_file_dir = geodir_path_import_export( false ); |
|
| 3380 | + if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3381 | + if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3382 | + $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3383 | + wp_send_json( $json ); |
|
| 3384 | + } |
|
| 3385 | + } |
|
| 3386 | 3386 | |
| 3387 | - $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 3388 | - $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 3389 | - |
|
| 3390 | - switch ( $task ) {
|
|
| 3391 | - case 'export_posts': {
|
|
| 3392 | - // WPML |
|
| 3393 | - $is_wpml = geodir_is_wpml(); |
|
| 3394 | - if ($is_wpml) {
|
|
| 3395 | - global $sitepress; |
|
| 3396 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3387 | + $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 3388 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 3389 | + |
|
| 3390 | + switch ( $task ) {
|
|
| 3391 | + case 'export_posts': {
|
|
| 3392 | + // WPML |
|
| 3393 | + $is_wpml = geodir_is_wpml(); |
|
| 3394 | + if ($is_wpml) {
|
|
| 3395 | + global $sitepress; |
|
| 3396 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3397 | 3397 | |
| 3398 | - $sitepress->switch_lang('all', true);
|
|
| 3399 | - } |
|
| 3400 | - // WPML |
|
| 3401 | - if ( $post_type == 'gd_event' ) {
|
|
| 3402 | - add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3403 | - } |
|
| 3404 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3398 | + $sitepress->switch_lang('all', true);
|
|
| 3399 | + } |
|
| 3400 | + // WPML |
|
| 3401 | + if ( $post_type == 'gd_event' ) {
|
|
| 3402 | + add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3403 | + } |
|
| 3404 | + $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3405 | 3405 | |
| 3406 | - $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3407 | - if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3408 | - $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3409 | - } |
|
| 3410 | - $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3411 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3412 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3413 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3414 | - $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3406 | + $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3407 | + if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3408 | + $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3409 | + } |
|
| 3410 | + $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3411 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3412 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3413 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3414 | + $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3415 | 3415 | |
| 3416 | - $chunk_file_paths = array(); |
|
| 3416 | + $chunk_file_paths = array(); |
|
| 3417 | 3417 | |
| 3418 | - if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3419 | - $json['total'] = $posts_count; |
|
| 3420 | - // WPML |
|
| 3421 | - if ($is_wpml) {
|
|
| 3422 | - $sitepress->switch_lang($active_lang, true); |
|
| 3423 | - } |
|
| 3424 | - // WPML |
|
| 3425 | - wp_send_json( $json ); |
|
| 3426 | - gd_die(); |
|
| 3427 | - } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3428 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3429 | - $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3430 | - $percentage = min( $percentage, 100 ); |
|
| 3418 | + if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3419 | + $json['total'] = $posts_count; |
|
| 3420 | + // WPML |
|
| 3421 | + if ($is_wpml) {
|
|
| 3422 | + $sitepress->switch_lang($active_lang, true); |
|
| 3423 | + } |
|
| 3424 | + // WPML |
|
| 3425 | + wp_send_json( $json ); |
|
| 3426 | + gd_die(); |
|
| 3427 | + } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3428 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3429 | + $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3430 | + $percentage = min( $percentage, 100 ); |
|
| 3431 | 3431 | |
| 3432 | - $json['percentage'] = $percentage; |
|
| 3433 | - // WPML |
|
| 3434 | - if ($is_wpml) {
|
|
| 3435 | - $sitepress->switch_lang($active_lang, true); |
|
| 3436 | - } |
|
| 3437 | - // WPML |
|
| 3438 | - wp_send_json( $json ); |
|
| 3439 | - gd_die(); |
|
| 3440 | - } else {
|
|
| 3441 | - if ( !$posts_count > 0 ) {
|
|
| 3442 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3443 | - } else {
|
|
| 3444 | - $total_posts = $posts_count; |
|
| 3445 | - if ($chunk_per_page > $total_posts) {
|
|
| 3446 | - $chunk_per_page = $total_posts; |
|
| 3447 | - } |
|
| 3448 | - $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3432 | + $json['percentage'] = $percentage; |
|
| 3433 | + // WPML |
|
| 3434 | + if ($is_wpml) {
|
|
| 3435 | + $sitepress->switch_lang($active_lang, true); |
|
| 3436 | + } |
|
| 3437 | + // WPML |
|
| 3438 | + wp_send_json( $json ); |
|
| 3439 | + gd_die(); |
|
| 3440 | + } else {
|
|
| 3441 | + if ( !$posts_count > 0 ) {
|
|
| 3442 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3443 | + } else {
|
|
| 3444 | + $total_posts = $posts_count; |
|
| 3445 | + if ($chunk_per_page > $total_posts) {
|
|
| 3446 | + $chunk_per_page = $total_posts; |
|
| 3447 | + } |
|
| 3448 | + $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3449 | 3449 | |
| 3450 | - $j = $chunk_page_no; |
|
| 3451 | - $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3450 | + $j = $chunk_page_no; |
|
| 3451 | + $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3452 | 3452 | |
| 3453 | - $per_page = 500; |
|
| 3454 | - if ($per_page > $chunk_per_page) {
|
|
| 3455 | - $per_page = $chunk_per_page; |
|
| 3456 | - } |
|
| 3457 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3453 | + $per_page = 500; |
|
| 3454 | + if ($per_page > $chunk_per_page) {
|
|
| 3455 | + $per_page = $chunk_per_page; |
|
| 3456 | + } |
|
| 3457 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3458 | 3458 | |
| 3459 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3460 | - $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3459 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3460 | + $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3461 | 3461 | |
| 3462 | - $clear = $i == 0 ? true : false; |
|
| 3463 | - geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3464 | - } |
|
| 3462 | + $clear = $i == 0 ? true : false; |
|
| 3463 | + geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3464 | + } |
|
| 3465 | 3465 | |
| 3466 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3467 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3468 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3469 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3470 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3466 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3467 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3468 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3469 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3470 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3471 | 3471 | |
| 3472 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3473 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3474 | - } |
|
| 3472 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3473 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3474 | + } |
|
| 3475 | 3475 | |
| 3476 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3477 | - $json['total'] = $posts_count; |
|
| 3478 | - $json['files'] = $chunk_file_paths; |
|
| 3479 | - } else {
|
|
| 3480 | - if ($j > 1) {
|
|
| 3481 | - $json['total'] = $posts_count; |
|
| 3482 | - $json['files'] = array(); |
|
| 3483 | - } else {
|
|
| 3484 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3485 | - } |
|
| 3486 | - } |
|
| 3487 | - } |
|
| 3488 | - // WPML |
|
| 3489 | - if ($is_wpml) {
|
|
| 3490 | - $sitepress->switch_lang($active_lang, true); |
|
| 3491 | - } |
|
| 3492 | - // WPML |
|
| 3493 | - wp_send_json( $json ); |
|
| 3494 | - } |
|
| 3495 | - } |
|
| 3496 | - break; |
|
| 3497 | - case 'export_cats': {
|
|
| 3498 | - // WPML |
|
| 3499 | - $is_wpml = geodir_is_wpml(); |
|
| 3500 | - if ($is_wpml) {
|
|
| 3501 | - global $sitepress; |
|
| 3502 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3476 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3477 | + $json['total'] = $posts_count; |
|
| 3478 | + $json['files'] = $chunk_file_paths; |
|
| 3479 | + } else {
|
|
| 3480 | + if ($j > 1) {
|
|
| 3481 | + $json['total'] = $posts_count; |
|
| 3482 | + $json['files'] = array(); |
|
| 3483 | + } else {
|
|
| 3484 | + $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3485 | + } |
|
| 3486 | + } |
|
| 3487 | + } |
|
| 3488 | + // WPML |
|
| 3489 | + if ($is_wpml) {
|
|
| 3490 | + $sitepress->switch_lang($active_lang, true); |
|
| 3491 | + } |
|
| 3492 | + // WPML |
|
| 3493 | + wp_send_json( $json ); |
|
| 3494 | + } |
|
| 3495 | + } |
|
| 3496 | + break; |
|
| 3497 | + case 'export_cats': {
|
|
| 3498 | + // WPML |
|
| 3499 | + $is_wpml = geodir_is_wpml(); |
|
| 3500 | + if ($is_wpml) {
|
|
| 3501 | + global $sitepress; |
|
| 3502 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3503 | 3503 | |
| 3504 | - $sitepress->switch_lang('all', true);
|
|
| 3505 | - } |
|
| 3506 | - // WPML |
|
| 3507 | - $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3504 | + $sitepress->switch_lang('all', true);
|
|
| 3505 | + } |
|
| 3506 | + // WPML |
|
| 3507 | + $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3508 | 3508 | |
| 3509 | - $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3510 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3511 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3512 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3513 | - $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3509 | + $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3510 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3511 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3512 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3513 | + $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3514 | 3514 | |
| 3515 | - $chunk_file_paths = array(); |
|
| 3515 | + $chunk_file_paths = array(); |
|
| 3516 | 3516 | |
| 3517 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3518 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3519 | - $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3520 | - $percentage = min( $percentage, 100 ); |
|
| 3517 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3518 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3519 | + $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3520 | + $percentage = min( $percentage, 100 ); |
|
| 3521 | 3521 | |
| 3522 | - $json['percentage'] = $percentage; |
|
| 3523 | - // WPML |
|
| 3524 | - if ($is_wpml) {
|
|
| 3525 | - $sitepress->switch_lang($active_lang, true); |
|
| 3526 | - } |
|
| 3527 | - // WPML |
|
| 3528 | - wp_send_json( $json ); |
|
| 3529 | - } else {
|
|
| 3530 | - if ( !$terms_count > 0 ) {
|
|
| 3531 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3532 | - } else {
|
|
| 3533 | - $total_terms = $terms_count; |
|
| 3534 | - if ($chunk_per_page > $terms_count) {
|
|
| 3535 | - $chunk_per_page = $terms_count; |
|
| 3536 | - } |
|
| 3537 | - $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3522 | + $json['percentage'] = $percentage; |
|
| 3523 | + // WPML |
|
| 3524 | + if ($is_wpml) {
|
|
| 3525 | + $sitepress->switch_lang($active_lang, true); |
|
| 3526 | + } |
|
| 3527 | + // WPML |
|
| 3528 | + wp_send_json( $json ); |
|
| 3529 | + } else {
|
|
| 3530 | + if ( !$terms_count > 0 ) {
|
|
| 3531 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3532 | + } else {
|
|
| 3533 | + $total_terms = $terms_count; |
|
| 3534 | + if ($chunk_per_page > $terms_count) {
|
|
| 3535 | + $chunk_per_page = $terms_count; |
|
| 3536 | + } |
|
| 3537 | + $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3538 | 3538 | |
| 3539 | - $j = $chunk_page_no; |
|
| 3540 | - $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3539 | + $j = $chunk_page_no; |
|
| 3540 | + $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3541 | 3541 | |
| 3542 | - $per_page = 500; |
|
| 3543 | - if ($per_page > $chunk_per_page) {
|
|
| 3544 | - $per_page = $chunk_per_page; |
|
| 3545 | - } |
|
| 3546 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3542 | + $per_page = 500; |
|
| 3543 | + if ($per_page > $chunk_per_page) {
|
|
| 3544 | + $per_page = $chunk_per_page; |
|
| 3545 | + } |
|
| 3546 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3547 | 3547 | |
| 3548 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3549 | - $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3548 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3549 | + $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3550 | 3550 | |
| 3551 | - $clear = $i == 0 ? true : false; |
|
| 3552 | - geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3553 | - } |
|
| 3551 | + $clear = $i == 0 ? true : false; |
|
| 3552 | + geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3553 | + } |
|
| 3554 | 3554 | |
| 3555 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3556 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3557 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3558 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3559 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3555 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3556 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3557 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3558 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3559 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3560 | 3560 | |
| 3561 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3562 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3563 | - } |
|
| 3561 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3562 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3563 | + } |
|
| 3564 | 3564 | |
| 3565 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3566 | - $json['total'] = $terms_count; |
|
| 3567 | - $json['files'] = $chunk_file_paths; |
|
| 3568 | - } else {
|
|
| 3569 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3570 | - } |
|
| 3571 | - } |
|
| 3572 | - // WPML |
|
| 3573 | - if ($is_wpml) {
|
|
| 3574 | - $sitepress->switch_lang($active_lang, true); |
|
| 3575 | - } |
|
| 3576 | - // WPML |
|
| 3577 | - wp_send_json( $json ); |
|
| 3578 | - } |
|
| 3579 | - } |
|
| 3580 | - break; |
|
| 3581 | - case 'export_locations': {
|
|
| 3582 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3583 | - $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3584 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3585 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3586 | - $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3565 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3566 | + $json['total'] = $terms_count; |
|
| 3567 | + $json['files'] = $chunk_file_paths; |
|
| 3568 | + } else {
|
|
| 3569 | + $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3570 | + } |
|
| 3571 | + } |
|
| 3572 | + // WPML |
|
| 3573 | + if ($is_wpml) {
|
|
| 3574 | + $sitepress->switch_lang($active_lang, true); |
|
| 3575 | + } |
|
| 3576 | + // WPML |
|
| 3577 | + wp_send_json( $json ); |
|
| 3578 | + } |
|
| 3579 | + } |
|
| 3580 | + break; |
|
| 3581 | + case 'export_locations': {
|
|
| 3582 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3583 | + $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3584 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3585 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3586 | + $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3587 | 3587 | |
| 3588 | - $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3588 | + $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3589 | 3589 | |
| 3590 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3591 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3592 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3593 | - $percentage = min( $percentage, 100 ); |
|
| 3590 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3591 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3592 | + $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3593 | + $percentage = min( $percentage, 100 ); |
|
| 3594 | 3594 | |
| 3595 | - $json['percentage'] = $percentage; |
|
| 3596 | - wp_send_json( $json ); |
|
| 3597 | - } else {
|
|
| 3598 | - $chunk_file_paths = array(); |
|
| 3595 | + $json['percentage'] = $percentage; |
|
| 3596 | + wp_send_json( $json ); |
|
| 3597 | + } else {
|
|
| 3598 | + $chunk_file_paths = array(); |
|
| 3599 | 3599 | |
| 3600 | - if ( !$items_count > 0 ) {
|
|
| 3601 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3602 | - } else {
|
|
| 3603 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3604 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3600 | + if ( !$items_count > 0 ) {
|
|
| 3601 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3602 | + } else {
|
|
| 3603 | + $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3604 | + $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3605 | 3605 | |
| 3606 | - $j = $chunk_page_no; |
|
| 3607 | - $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3606 | + $j = $chunk_page_no; |
|
| 3607 | + $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3608 | 3608 | |
| 3609 | - $per_page = 500; |
|
| 3610 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3611 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3609 | + $per_page = 500; |
|
| 3610 | + $per_page = min( $per_page, $chunk_per_page ); |
|
| 3611 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3612 | 3612 | |
| 3613 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3614 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3613 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3614 | + $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3615 | 3615 | |
| 3616 | - $clear = $i == 0 ? true : false; |
|
| 3617 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3618 | - } |
|
| 3616 | + $clear = $i == 0 ? true : false; |
|
| 3617 | + geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3618 | + } |
|
| 3619 | 3619 | |
| 3620 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3621 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3622 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3623 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3624 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3620 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3621 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3622 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3623 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3624 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3625 | 3625 | |
| 3626 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3627 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3628 | - } |
|
| 3626 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3627 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3628 | + } |
|
| 3629 | 3629 | |
| 3630 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3631 | - $json['total'] = $items_count; |
|
| 3632 | - $json['files'] = $chunk_file_paths; |
|
| 3633 | - } else {
|
|
| 3634 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3635 | - } |
|
| 3636 | - } |
|
| 3637 | - wp_send_json( $json ); |
|
| 3638 | - } |
|
| 3639 | - } |
|
| 3640 | - break; |
|
| 3641 | - case 'export_hoods': {
|
|
| 3642 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3643 | - $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3644 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3645 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3646 | - $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3630 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3631 | + $json['total'] = $items_count; |
|
| 3632 | + $json['files'] = $chunk_file_paths; |
|
| 3633 | + } else {
|
|
| 3634 | + $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3635 | + } |
|
| 3636 | + } |
|
| 3637 | + wp_send_json( $json ); |
|
| 3638 | + } |
|
| 3639 | + } |
|
| 3640 | + break; |
|
| 3641 | + case 'export_hoods': {
|
|
| 3642 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3643 | + $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3644 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3645 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3646 | + $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3647 | 3647 | |
| 3648 | - $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3648 | + $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3649 | 3649 | |
| 3650 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3651 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3652 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3653 | - $percentage = min( $percentage, 100 ); |
|
| 3650 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3651 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3652 | + $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3653 | + $percentage = min( $percentage, 100 ); |
|
| 3654 | 3654 | |
| 3655 | - $json['percentage'] = $percentage; |
|
| 3656 | - wp_send_json( $json ); |
|
| 3657 | - } else {
|
|
| 3658 | - $chunk_file_paths = array(); |
|
| 3655 | + $json['percentage'] = $percentage; |
|
| 3656 | + wp_send_json( $json ); |
|
| 3657 | + } else {
|
|
| 3658 | + $chunk_file_paths = array(); |
|
| 3659 | 3659 | |
| 3660 | - if ( !$items_count > 0 ) {
|
|
| 3661 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3662 | - } else {
|
|
| 3663 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3664 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3660 | + if ( !$items_count > 0 ) {
|
|
| 3661 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3662 | + } else {
|
|
| 3663 | + $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3664 | + $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3665 | 3665 | |
| 3666 | - $j = $chunk_page_no; |
|
| 3667 | - $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3666 | + $j = $chunk_page_no; |
|
| 3667 | + $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3668 | 3668 | |
| 3669 | - $per_page = 500; |
|
| 3670 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3671 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3669 | + $per_page = 500; |
|
| 3670 | + $per_page = min( $per_page, $chunk_per_page ); |
|
| 3671 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3672 | 3672 | |
| 3673 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3674 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3673 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3674 | + $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3675 | 3675 | |
| 3676 | - $clear = $i == 0 ? true : false; |
|
| 3677 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3678 | - } |
|
| 3676 | + $clear = $i == 0 ? true : false; |
|
| 3677 | + geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3678 | + } |
|
| 3679 | 3679 | |
| 3680 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3681 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3682 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3683 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3684 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3680 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3681 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3682 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3683 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3684 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3685 | 3685 | |
| 3686 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3687 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3688 | - } |
|
| 3686 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3687 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3688 | + } |
|
| 3689 | 3689 | |
| 3690 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3691 | - $json['total'] = $items_count; |
|
| 3692 | - $json['files'] = $chunk_file_paths; |
|
| 3693 | - } else {
|
|
| 3694 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3695 | - } |
|
| 3696 | - } |
|
| 3697 | - wp_send_json( $json ); |
|
| 3698 | - } |
|
| 3699 | - } |
|
| 3700 | - break; |
|
| 3701 | - case 'prepare_import': |
|
| 3702 | - case 'import_cat': |
|
| 3703 | - case 'import_post': |
|
| 3704 | - case 'import_loc': |
|
| 3705 | - case 'import_hood': {
|
|
| 3706 | - // WPML |
|
| 3707 | - $is_wpml = geodir_is_wpml(); |
|
| 3708 | - if ($is_wpml) {
|
|
| 3709 | - global $sitepress; |
|
| 3710 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3711 | - } |
|
| 3712 | - // WPML |
|
| 3690 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3691 | + $json['total'] = $items_count; |
|
| 3692 | + $json['files'] = $chunk_file_paths; |
|
| 3693 | + } else {
|
|
| 3694 | + $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3695 | + } |
|
| 3696 | + } |
|
| 3697 | + wp_send_json( $json ); |
|
| 3698 | + } |
|
| 3699 | + } |
|
| 3700 | + break; |
|
| 3701 | + case 'prepare_import': |
|
| 3702 | + case 'import_cat': |
|
| 3703 | + case 'import_post': |
|
| 3704 | + case 'import_loc': |
|
| 3705 | + case 'import_hood': {
|
|
| 3706 | + // WPML |
|
| 3707 | + $is_wpml = geodir_is_wpml(); |
|
| 3708 | + if ($is_wpml) {
|
|
| 3709 | + global $sitepress; |
|
| 3710 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3711 | + } |
|
| 3712 | + // WPML |
|
| 3713 | 3713 | |
| 3714 | - ini_set( 'auto_detect_line_endings', true ); |
|
| 3714 | + ini_set( 'auto_detect_line_endings', true ); |
|
| 3715 | 3715 | |
| 3716 | - $uploads = wp_upload_dir(); |
|
| 3717 | - $uploads_dir = $uploads['path']; |
|
| 3718 | - $uploads_subdir = $uploads['subdir']; |
|
| 3716 | + $uploads = wp_upload_dir(); |
|
| 3717 | + $uploads_dir = $uploads['path']; |
|
| 3718 | + $uploads_subdir = $uploads['subdir']; |
|
| 3719 | 3719 | |
| 3720 | - $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 3721 | - $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3720 | + $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 3721 | + $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3722 | 3722 | |
| 3723 | - $csv_file_arr = explode( '/', $csv_file ); |
|
| 3724 | - $csv_filename = end( $csv_file_arr ); |
|
| 3725 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 3723 | + $csv_file_arr = explode( '/', $csv_file ); |
|
| 3724 | + $csv_filename = end( $csv_file_arr ); |
|
| 3725 | + $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 3726 | 3726 | |
| 3727 | - $json['file'] = $csv_file; |
|
| 3728 | - $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 3729 | - $file = array(); |
|
| 3727 | + $json['file'] = $csv_file; |
|
| 3728 | + $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 3729 | + $file = array(); |
|
| 3730 | 3730 | |
| 3731 | - if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 3732 | - $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 3731 | + if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 3732 | + $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 3733 | 3733 | |
| 3734 | - if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
|
| 3735 | - $json['error'] = NULL; |
|
| 3736 | - $json['rows'] = 0; |
|
| 3734 | + if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
|
| 3735 | + $json['error'] = NULL; |
|
| 3736 | + $json['rows'] = 0; |
|
| 3737 | 3737 | |
| 3738 | - $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
|
| 3739 | - setlocale(LC_ALL, 'en_US.UTF-8'); |
|
| 3740 | - if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 3741 | - while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 3742 | - if ( !empty( $data ) ) {
|
|
| 3743 | - $file[] = $data; |
|
| 3744 | - } |
|
| 3745 | - } |
|
| 3746 | - fclose($handle); |
|
| 3747 | - } |
|
| 3748 | - setlocale(LC_ALL, $lc_all); |
|
| 3738 | + $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
|
| 3739 | + setlocale(LC_ALL, 'en_US.UTF-8'); |
|
| 3740 | + if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 3741 | + while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 3742 | + if ( !empty( $data ) ) {
|
|
| 3743 | + $file[] = $data; |
|
| 3744 | + } |
|
| 3745 | + } |
|
| 3746 | + fclose($handle); |
|
| 3747 | + } |
|
| 3748 | + setlocale(LC_ALL, $lc_all); |
|
| 3749 | 3749 | |
| 3750 | - $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
| 3750 | + $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
| 3751 | 3751 | |
| 3752 | - if (!$json['rows'] > 0) {
|
|
| 3753 | - $json['error'] = __('No data found in csv file.', 'geodirectory');
|
|
| 3754 | - } |
|
| 3755 | - } else {
|
|
| 3756 | - wp_send_json( $json ); |
|
| 3757 | - } |
|
| 3758 | - } else {
|
|
| 3759 | - wp_send_json( $json ); |
|
| 3760 | - } |
|
| 3752 | + if (!$json['rows'] > 0) {
|
|
| 3753 | + $json['error'] = __('No data found in csv file.', 'geodirectory');
|
|
| 3754 | + } |
|
| 3755 | + } else {
|
|
| 3756 | + wp_send_json( $json ); |
|
| 3757 | + } |
|
| 3758 | + } else {
|
|
| 3759 | + wp_send_json( $json ); |
|
| 3760 | + } |
|
| 3761 | 3761 | |
| 3762 | - if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 3763 | - wp_send_json( $json ); |
|
| 3764 | - } |
|
| 3762 | + if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 3763 | + wp_send_json( $json ); |
|
| 3764 | + } |
|
| 3765 | 3765 | |
| 3766 | - $total = $json['rows']; |
|
| 3767 | - $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 3768 | - $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 3766 | + $total = $json['rows']; |
|
| 3767 | + $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 3768 | + $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 3769 | 3769 | |
| 3770 | - $count = $limit; |
|
| 3770 | + $count = $limit; |
|
| 3771 | 3771 | |
| 3772 | - if ($count < $total) {
|
|
| 3773 | - $count = $processed + $count; |
|
| 3774 | - if ($count > $total) {
|
|
| 3775 | - $count = $total; |
|
| 3776 | - } |
|
| 3777 | - } else {
|
|
| 3778 | - $count = $total; |
|
| 3779 | - } |
|
| 3772 | + if ($count < $total) {
|
|
| 3773 | + $count = $processed + $count; |
|
| 3774 | + if ($count > $total) {
|
|
| 3775 | + $count = $total; |
|
| 3776 | + } |
|
| 3777 | + } else {
|
|
| 3778 | + $count = $total; |
|
| 3779 | + } |
|
| 3780 | 3780 | |
| 3781 | - $created = 0; |
|
| 3782 | - $updated = 0; |
|
| 3783 | - $skipped = 0; |
|
| 3784 | - $invalid = 0; |
|
| 3785 | - $invalid_addr = 0; |
|
| 3786 | - $images = 0; |
|
| 3781 | + $created = 0; |
|
| 3782 | + $updated = 0; |
|
| 3783 | + $skipped = 0; |
|
| 3784 | + $invalid = 0; |
|
| 3785 | + $invalid_addr = 0; |
|
| 3786 | + $images = 0; |
|
| 3787 | 3787 | |
| 3788 | - $gd_post_info = array(); |
|
| 3789 | - $countpost = 0; |
|
| 3788 | + $gd_post_info = array(); |
|
| 3789 | + $countpost = 0; |
|
| 3790 | 3790 | |
| 3791 | - $post_types = geodir_get_posttypes(); |
|
| 3791 | + $post_types = geodir_get_posttypes(); |
|
| 3792 | 3792 | |
| 3793 | - if ( $task == 'import_cat' ) {
|
|
| 3794 | - if (!empty($file)) {
|
|
| 3795 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 3793 | + if ( $task == 'import_cat' ) {
|
|
| 3794 | + if (!empty($file)) {
|
|
| 3795 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 3796 | 3796 | |
| 3797 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 3798 | - $json['error'] = CSV_INVAILD_FILE; |
|
| 3799 | - wp_send_json( $json ); |
|
| 3800 | - exit; |
|
| 3801 | - } |
|
| 3797 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 3798 | + $json['error'] = CSV_INVAILD_FILE; |
|
| 3799 | + wp_send_json( $json ); |
|
| 3800 | + exit; |
|
| 3801 | + } |
|
| 3802 | 3802 | |
| 3803 | - $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
|
|
| 3803 | + $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
|
|
| 3804 | 3804 | |
| 3805 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 3806 | - $index = $processed + $i; |
|
| 3805 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 3806 | + $index = $processed + $i; |
|
| 3807 | 3807 | |
| 3808 | - if (isset($file[$index])) {
|
|
| 3809 | - $row = $file[$index]; |
|
| 3810 | - $row = array_map( 'trim', $row ); |
|
| 3811 | - //$row = array_map( 'utf8_encode', $row ); |
|
| 3808 | + if (isset($file[$index])) {
|
|
| 3809 | + $row = $file[$index]; |
|
| 3810 | + $row = array_map( 'trim', $row ); |
|
| 3811 | + //$row = array_map( 'utf8_encode', $row ); |
|
| 3812 | 3812 | |
| 3813 | - $cat_id = ''; |
|
| 3814 | - $cat_name = ''; |
|
| 3815 | - $cat_slug = ''; |
|
| 3816 | - $cat_posttype = ''; |
|
| 3817 | - $cat_parent = ''; |
|
| 3818 | - $cat_description = ''; |
|
| 3819 | - $cat_schema = ''; |
|
| 3820 | - $cat_top_description = ''; |
|
| 3821 | - $cat_image = ''; |
|
| 3822 | - $cat_icon = ''; |
|
| 3823 | - $cat_language = ''; |
|
| 3824 | - $cat_id_original = ''; |
|
| 3813 | + $cat_id = ''; |
|
| 3814 | + $cat_name = ''; |
|
| 3815 | + $cat_slug = ''; |
|
| 3816 | + $cat_posttype = ''; |
|
| 3817 | + $cat_parent = ''; |
|
| 3818 | + $cat_description = ''; |
|
| 3819 | + $cat_schema = ''; |
|
| 3820 | + $cat_top_description = ''; |
|
| 3821 | + $cat_image = ''; |
|
| 3822 | + $cat_icon = ''; |
|
| 3823 | + $cat_language = ''; |
|
| 3824 | + $cat_id_original = ''; |
|
| 3825 | 3825 | |
| 3826 | - $c = 0; |
|
| 3827 | - foreach ($columns as $column ) {
|
|
| 3828 | - if ( $column == 'cat_id' ) {
|
|
| 3829 | - $cat_id = (int)$row[$c]; |
|
| 3830 | - } else if ( $column == 'cat_name' ) {
|
|
| 3831 | - $cat_name = $row[$c]; |
|
| 3832 | - } else if ( $column == 'cat_slug' ) {
|
|
| 3833 | - $cat_slug = $row[$c]; |
|
| 3834 | - } else if ( $column == 'cat_posttype' ) {
|
|
| 3835 | - $cat_posttype = $row[$c]; |
|
| 3836 | - } else if ( $column == 'cat_parent' ) {
|
|
| 3837 | - $cat_parent = trim($row[$c]); |
|
| 3838 | - } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 3839 | - $cat_schema = $row[$c]; |
|
| 3840 | - } else if ( $column == 'cat_description' ) {
|
|
| 3841 | - $cat_description = $row[$c]; |
|
| 3842 | - } else if ( $column == 'cat_top_description' ) {
|
|
| 3843 | - $cat_top_description = $row[$c]; |
|
| 3844 | - } else if ( $column == 'cat_image' ) {
|
|
| 3845 | - $cat_image = $row[$c]; |
|
| 3846 | - } else if ( $column == 'cat_icon' ) {
|
|
| 3847 | - $cat_icon = $row[$c]; |
|
| 3848 | - } |
|
| 3849 | - // WPML |
|
| 3850 | - if ( $is_wpml ) {
|
|
| 3851 | - if ( $column == 'cat_language' ) {
|
|
| 3852 | - $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 3853 | - } else if ( $column == 'cat_id_original' ) {
|
|
| 3854 | - $cat_id_original = (int)$row[$c]; |
|
| 3855 | - } |
|
| 3856 | - } |
|
| 3857 | - // WPML |
|
| 3858 | - $c++; |
|
| 3859 | - } |
|
| 3826 | + $c = 0; |
|
| 3827 | + foreach ($columns as $column ) {
|
|
| 3828 | + if ( $column == 'cat_id' ) {
|
|
| 3829 | + $cat_id = (int)$row[$c]; |
|
| 3830 | + } else if ( $column == 'cat_name' ) {
|
|
| 3831 | + $cat_name = $row[$c]; |
|
| 3832 | + } else if ( $column == 'cat_slug' ) {
|
|
| 3833 | + $cat_slug = $row[$c]; |
|
| 3834 | + } else if ( $column == 'cat_posttype' ) {
|
|
| 3835 | + $cat_posttype = $row[$c]; |
|
| 3836 | + } else if ( $column == 'cat_parent' ) {
|
|
| 3837 | + $cat_parent = trim($row[$c]); |
|
| 3838 | + } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 3839 | + $cat_schema = $row[$c]; |
|
| 3840 | + } else if ( $column == 'cat_description' ) {
|
|
| 3841 | + $cat_description = $row[$c]; |
|
| 3842 | + } else if ( $column == 'cat_top_description' ) {
|
|
| 3843 | + $cat_top_description = $row[$c]; |
|
| 3844 | + } else if ( $column == 'cat_image' ) {
|
|
| 3845 | + $cat_image = $row[$c]; |
|
| 3846 | + } else if ( $column == 'cat_icon' ) {
|
|
| 3847 | + $cat_icon = $row[$c]; |
|
| 3848 | + } |
|
| 3849 | + // WPML |
|
| 3850 | + if ( $is_wpml ) {
|
|
| 3851 | + if ( $column == 'cat_language' ) {
|
|
| 3852 | + $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 3853 | + } else if ( $column == 'cat_id_original' ) {
|
|
| 3854 | + $cat_id_original = (int)$row[$c]; |
|
| 3855 | + } |
|
| 3856 | + } |
|
| 3857 | + // WPML |
|
| 3858 | + $c++; |
|
| 3859 | + } |
|
| 3860 | 3860 | |
| 3861 | - if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 3862 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 3861 | + if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 3862 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 3863 | 3863 | |
| 3864 | - $invalid++; |
|
| 3865 | - continue; |
|
| 3866 | - } |
|
| 3864 | + $invalid++; |
|
| 3865 | + continue; |
|
| 3866 | + } |
|
| 3867 | 3867 | |
| 3868 | - // WPML |
|
| 3869 | - if ($is_wpml && $cat_language != '') {
|
|
| 3870 | - $sitepress->switch_lang($cat_language, true); |
|
| 3871 | - } |
|
| 3872 | - // WPML |
|
| 3868 | + // WPML |
|
| 3869 | + if ($is_wpml && $cat_language != '') {
|
|
| 3870 | + $sitepress->switch_lang($cat_language, true); |
|
| 3871 | + } |
|
| 3872 | + // WPML |
|
| 3873 | 3873 | |
| 3874 | - $term_data = array(); |
|
| 3875 | - $term_data['name'] = $cat_name; |
|
| 3876 | - $term_data['slug'] = $cat_slug; |
|
| 3877 | - $term_data['description'] = $cat_description; |
|
| 3878 | - $term_data['cat_schema'] = $cat_schema; |
|
| 3879 | - $term_data['top_description'] = $cat_top_description; |
|
| 3880 | - $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 3881 | - $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 3874 | + $term_data = array(); |
|
| 3875 | + $term_data['name'] = $cat_name; |
|
| 3876 | + $term_data['slug'] = $cat_slug; |
|
| 3877 | + $term_data['description'] = $cat_description; |
|
| 3878 | + $term_data['cat_schema'] = $cat_schema; |
|
| 3879 | + $term_data['top_description'] = $cat_top_description; |
|
| 3880 | + $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 3881 | + $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 3882 | 3882 | |
| 3883 | - //$term_data = array_map( 'utf8_encode', $term_data ); |
|
| 3883 | + //$term_data = array_map( 'utf8_encode', $term_data ); |
|
| 3884 | 3884 | |
| 3885 | - $taxonomy = $cat_posttype . 'category'; |
|
| 3885 | + $taxonomy = $cat_posttype . 'category'; |
|
| 3886 | 3886 | |
| 3887 | - $term_data['taxonomy'] = $taxonomy; |
|
| 3887 | + $term_data['taxonomy'] = $taxonomy; |
|
| 3888 | 3888 | |
| 3889 | - $term_parent_id = 0; |
|
| 3890 | - if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 3891 | - $term_parent = ''; |
|
| 3889 | + $term_parent_id = 0; |
|
| 3890 | + if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 3891 | + $term_parent = ''; |
|
| 3892 | 3892 | |
| 3893 | - if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 3894 | - // |
|
| 3895 | - } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 3896 | - // |
|
| 3897 | - } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 3898 | - // |
|
| 3899 | - } else {
|
|
| 3900 | - $term_parent_data = array(); |
|
| 3901 | - $term_parent_data['name'] = $cat_parent; |
|
| 3902 | - //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
|
| 3903 | - $term_parent_data['taxonomy'] = $taxonomy; |
|
| 3893 | + if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 3894 | + // |
|
| 3895 | + } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 3896 | + // |
|
| 3897 | + } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 3898 | + // |
|
| 3899 | + } else {
|
|
| 3900 | + $term_parent_data = array(); |
|
| 3901 | + $term_parent_data['name'] = $cat_parent; |
|
| 3902 | + //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
|
| 3903 | + $term_parent_data['taxonomy'] = $taxonomy; |
|
| 3904 | 3904 | |
| 3905 | - $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 3906 | - } |
|
| 3905 | + $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 3906 | + } |
|
| 3907 | 3907 | |
| 3908 | - if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 3909 | - $term_parent_id = (int)$term_parent->term_id; |
|
| 3910 | - } |
|
| 3911 | - } |
|
| 3912 | - $term_data['parent'] = (int)$term_parent_id; |
|
| 3908 | + if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 3909 | + $term_parent_id = (int)$term_parent->term_id; |
|
| 3910 | + } |
|
| 3911 | + } |
|
| 3912 | + $term_data['parent'] = (int)$term_parent_id; |
|
| 3913 | 3913 | |
| 3914 | - $term_id = NULL; |
|
| 3915 | - if ( $import_choice == 'update' ) {
|
|
| 3916 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3917 | - $term_data['term_id'] = $term['term_id']; |
|
| 3914 | + $term_id = NULL; |
|
| 3915 | + if ( $import_choice == 'update' ) {
|
|
| 3916 | + if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3917 | + $term_data['term_id'] = $term['term_id']; |
|
| 3918 | 3918 | |
| 3919 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3920 | - $updated++; |
|
| 3921 | - } else {
|
|
| 3922 | - $invalid++; |
|
| 3923 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3924 | - } |
|
| 3925 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3926 | - $term_data['term_id'] = $term['term_id']; |
|
| 3919 | + if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3920 | + $updated++; |
|
| 3921 | + } else {
|
|
| 3922 | + $invalid++; |
|
| 3923 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3924 | + } |
|
| 3925 | + } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3926 | + $term_data['term_id'] = $term['term_id']; |
|
| 3927 | 3927 | |
| 3928 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3929 | - $updated++; |
|
| 3930 | - } else {
|
|
| 3931 | - $invalid++; |
|
| 3932 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3933 | - } |
|
| 3934 | - } else {
|
|
| 3935 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3936 | - $created++; |
|
| 3937 | - } else {
|
|
| 3938 | - $invalid++; |
|
| 3939 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3940 | - } |
|
| 3941 | - } |
|
| 3942 | - } else if ( $import_choice == 'skip' ) {
|
|
| 3943 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3944 | - $skipped++; |
|
| 3945 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3946 | - $skipped++; |
|
| 3947 | - } else {
|
|
| 3948 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3949 | - $created++; |
|
| 3950 | - } else {
|
|
| 3951 | - $invalid++; |
|
| 3952 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3953 | - } |
|
| 3954 | - } |
|
| 3955 | - } else {
|
|
| 3956 | - $invalid++; |
|
| 3957 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3958 | - } |
|
| 3928 | + if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3929 | + $updated++; |
|
| 3930 | + } else {
|
|
| 3931 | + $invalid++; |
|
| 3932 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3933 | + } |
|
| 3934 | + } else {
|
|
| 3935 | + if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3936 | + $created++; |
|
| 3937 | + } else {
|
|
| 3938 | + $invalid++; |
|
| 3939 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3940 | + } |
|
| 3941 | + } |
|
| 3942 | + } else if ( $import_choice == 'skip' ) {
|
|
| 3943 | + if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3944 | + $skipped++; |
|
| 3945 | + } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3946 | + $skipped++; |
|
| 3947 | + } else {
|
|
| 3948 | + if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3949 | + $created++; |
|
| 3950 | + } else {
|
|
| 3951 | + $invalid++; |
|
| 3952 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3953 | + } |
|
| 3954 | + } |
|
| 3955 | + } else {
|
|
| 3956 | + $invalid++; |
|
| 3957 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3958 | + } |
|
| 3959 | 3959 | |
| 3960 | - if ( $term_id ) {
|
|
| 3961 | - // WPML |
|
| 3962 | - if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
|
| 3963 | - $wpml_element_type = 'tax_' . $taxonomy; |
|
| 3964 | - $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 3965 | - $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 3966 | - |
|
| 3967 | - $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 3960 | + if ( $term_id ) {
|
|
| 3961 | + // WPML |
|
| 3962 | + if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
|
| 3963 | + $wpml_element_type = 'tax_' . $taxonomy; |
|
| 3964 | + $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 3965 | + $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 3966 | + |
|
| 3967 | + $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 3968 | 3968 | |
| 3969 | - $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 3970 | - } |
|
| 3971 | - // WPML |
|
| 3969 | + $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 3970 | + } |
|
| 3971 | + // WPML |
|
| 3972 | 3972 | |
| 3973 | - if ( isset( $term_data['top_description'] ) ) {
|
|
| 3974 | - update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 3975 | - } |
|
| 3973 | + if ( isset( $term_data['top_description'] ) ) {
|
|
| 3974 | + update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 3975 | + } |
|
| 3976 | 3976 | |
| 3977 | - if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 3978 | - update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 3979 | - } |
|
| 3977 | + if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 3978 | + update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 3979 | + } |
|
| 3980 | 3980 | |
| 3981 | - $attachment = false; |
|
| 3982 | - if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 3983 | - $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 3984 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 3981 | + $attachment = false; |
|
| 3982 | + if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 3983 | + $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 3984 | + $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 3985 | 3985 | |
| 3986 | - if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 3987 | - $attachment = true; |
|
| 3988 | - update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 3989 | - } |
|
| 3990 | - } |
|
| 3986 | + if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 3987 | + $attachment = true; |
|
| 3988 | + update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 3989 | + } |
|
| 3990 | + } |
|
| 3991 | 3991 | |
| 3992 | - if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 3993 | - $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 3994 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 3992 | + if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 3993 | + $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 3994 | + $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 3995 | 3995 | |
| 3996 | - if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 3997 | - $attachment = true; |
|
| 3998 | - update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 3999 | - } |
|
| 4000 | - } |
|
| 3996 | + if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 3997 | + $attachment = true; |
|
| 3998 | + update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 3999 | + } |
|
| 4000 | + } |
|
| 4001 | 4001 | |
| 4002 | - if ( $attachment ) {
|
|
| 4003 | - $images++; |
|
| 4004 | - } |
|
| 4005 | - } |
|
| 4002 | + if ( $attachment ) {
|
|
| 4003 | + $images++; |
|
| 4004 | + } |
|
| 4005 | + } |
|
| 4006 | 4006 | |
| 4007 | - // WPML |
|
| 4008 | - if ($is_wpml && $cat_language != '') {
|
|
| 4009 | - $sitepress->switch_lang($active_lang, true); |
|
| 4010 | - } |
|
| 4011 | - // WPML |
|
| 4012 | - } |
|
| 4013 | - } |
|
| 4014 | - } |
|
| 4007 | + // WPML |
|
| 4008 | + if ($is_wpml && $cat_language != '') {
|
|
| 4009 | + $sitepress->switch_lang($active_lang, true); |
|
| 4010 | + } |
|
| 4011 | + // WPML |
|
| 4012 | + } |
|
| 4013 | + } |
|
| 4014 | + } |
|
| 4015 | 4015 | |
| 4016 | - $json = array(); |
|
| 4017 | - $json['processed'] = $limit; |
|
| 4018 | - $json['created'] = $created; |
|
| 4019 | - $json['updated'] = $updated; |
|
| 4020 | - $json['skipped'] = $skipped; |
|
| 4021 | - $json['invalid'] = $invalid; |
|
| 4022 | - $json['images'] = $images; |
|
| 4016 | + $json = array(); |
|
| 4017 | + $json['processed'] = $limit; |
|
| 4018 | + $json['created'] = $created; |
|
| 4019 | + $json['updated'] = $updated; |
|
| 4020 | + $json['skipped'] = $skipped; |
|
| 4021 | + $json['invalid'] = $invalid; |
|
| 4022 | + $json['images'] = $images; |
|
| 4023 | 4023 | |
| 4024 | - wp_send_json( $json ); |
|
| 4025 | - exit; |
|
| 4026 | - } else if ( $task == 'import_post' ) {
|
|
| 4027 | - $xtimings['###1'] = microtime(true)-$xstart; |
|
| 4028 | - //run some stuff to make the import quicker |
|
| 4029 | - wp_defer_term_counting( true ); |
|
| 4030 | - wp_defer_comment_counting( true ); |
|
| 4031 | - $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4024 | + wp_send_json( $json ); |
|
| 4025 | + exit; |
|
| 4026 | + } else if ( $task == 'import_post' ) {
|
|
| 4027 | + $xtimings['###1'] = microtime(true)-$xstart; |
|
| 4028 | + //run some stuff to make the import quicker |
|
| 4029 | + wp_defer_term_counting( true ); |
|
| 4030 | + wp_defer_comment_counting( true ); |
|
| 4031 | + $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4032 | 4032 | // |
| 4033 | 4033 | // remove_all_actions('publish_post');
|
| 4034 | 4034 | // remove_all_actions('transition_post_status');
|
| 4035 | 4035 | // remove_all_actions('publish_future_post');
|
| 4036 | 4036 | |
| 4037 | - if (!empty($file)) {
|
|
| 4038 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4039 | - $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
|
| 4040 | - $default_status = 'publish'; |
|
| 4041 | - $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4037 | + if (!empty($file)) {
|
|
| 4038 | + $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4039 | + $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
|
| 4040 | + $default_status = 'publish'; |
|
| 4041 | + $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4042 | 4042 | |
| 4043 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4043 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4044 | 4044 | |
| 4045 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4046 | - $json['error'] = CSV_INVAILD_FILE; |
|
| 4047 | - wp_send_json( $json ); |
|
| 4048 | - exit; |
|
| 4049 | - } |
|
| 4050 | - $xtimings['###2'] = microtime(true)-$xstart; |
|
| 4051 | - $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
|
| 4052 | - $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4053 | - $processed_actual = 0; |
|
| 4054 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4055 | - $index = $processed + $i; |
|
| 4056 | - $gd_post = array(); |
|
| 4045 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4046 | + $json['error'] = CSV_INVAILD_FILE; |
|
| 4047 | + wp_send_json( $json ); |
|
| 4048 | + exit; |
|
| 4049 | + } |
|
| 4050 | + $xtimings['###2'] = microtime(true)-$xstart; |
|
| 4051 | + $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
|
| 4052 | + $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4053 | + $processed_actual = 0; |
|
| 4054 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4055 | + $index = $processed + $i; |
|
| 4056 | + $gd_post = array(); |
|
| 4057 | 4057 | |
| 4058 | - if (isset($file[$index])) {
|
|
| 4059 | - $processed_actual++; |
|
| 4060 | - $row = $file[$index]; |
|
| 4061 | - $row = array_map( 'trim', $row ); |
|
| 4062 | - //$row = array_map( 'utf8_encode', $row ); |
|
| 4063 | - $row = array_map( 'addslashes_gpc', $row ); |
|
| 4058 | + if (isset($file[$index])) {
|
|
| 4059 | + $processed_actual++; |
|
| 4060 | + $row = $file[$index]; |
|
| 4061 | + $row = array_map( 'trim', $row ); |
|
| 4062 | + //$row = array_map( 'utf8_encode', $row ); |
|
| 4063 | + $row = array_map( 'addslashes_gpc', $row ); |
|
| 4064 | 4064 | |
| 4065 | - $post_id = ''; |
|
| 4066 | - $post_title = ''; |
|
| 4067 | - $post_author = ''; |
|
| 4068 | - $post_content = ''; |
|
| 4069 | - $post_category_arr = array(); |
|
| 4070 | - $default_category = ''; |
|
| 4071 | - $post_tags = array(); |
|
| 4072 | - $post_type = ''; |
|
| 4073 | - $post_status = ''; |
|
| 4074 | - $geodir_video = ''; |
|
| 4075 | - $post_address = ''; |
|
| 4076 | - $post_city = ''; |
|
| 4077 | - $post_region = ''; |
|
| 4078 | - $post_country = ''; |
|
| 4079 | - $post_zip = ''; |
|
| 4080 | - $post_latitude = ''; |
|
| 4081 | - $post_longitude = ''; |
|
| 4082 | - $post_neighbourhood = ''; |
|
| 4083 | - $neighbourhood_latitude = ''; |
|
| 4084 | - $neighbourhood_longitude = ''; |
|
| 4085 | - $geodir_timing = ''; |
|
| 4086 | - $geodir_contact = ''; |
|
| 4087 | - $geodir_email = ''; |
|
| 4088 | - $geodir_website = ''; |
|
| 4089 | - $geodir_twitter = ''; |
|
| 4090 | - $geodir_facebook = ''; |
|
| 4091 | - $geodir_twitter = ''; |
|
| 4092 | - $post_images = array(); |
|
| 4065 | + $post_id = ''; |
|
| 4066 | + $post_title = ''; |
|
| 4067 | + $post_author = ''; |
|
| 4068 | + $post_content = ''; |
|
| 4069 | + $post_category_arr = array(); |
|
| 4070 | + $default_category = ''; |
|
| 4071 | + $post_tags = array(); |
|
| 4072 | + $post_type = ''; |
|
| 4073 | + $post_status = ''; |
|
| 4074 | + $geodir_video = ''; |
|
| 4075 | + $post_address = ''; |
|
| 4076 | + $post_city = ''; |
|
| 4077 | + $post_region = ''; |
|
| 4078 | + $post_country = ''; |
|
| 4079 | + $post_zip = ''; |
|
| 4080 | + $post_latitude = ''; |
|
| 4081 | + $post_longitude = ''; |
|
| 4082 | + $post_neighbourhood = ''; |
|
| 4083 | + $neighbourhood_latitude = ''; |
|
| 4084 | + $neighbourhood_longitude = ''; |
|
| 4085 | + $geodir_timing = ''; |
|
| 4086 | + $geodir_contact = ''; |
|
| 4087 | + $geodir_email = ''; |
|
| 4088 | + $geodir_website = ''; |
|
| 4089 | + $geodir_twitter = ''; |
|
| 4090 | + $geodir_facebook = ''; |
|
| 4091 | + $geodir_twitter = ''; |
|
| 4092 | + $post_images = array(); |
|
| 4093 | 4093 | |
| 4094 | - $expire_date = 'Never'; |
|
| 4094 | + $expire_date = 'Never'; |
|
| 4095 | 4095 | |
| 4096 | - $language = ''; |
|
| 4097 | - $original_post_id = ''; |
|
| 4096 | + $language = ''; |
|
| 4097 | + $original_post_id = ''; |
|
| 4098 | 4098 | |
| 4099 | - $c = 0; |
|
| 4100 | - foreach ($columns as $column ) {
|
|
| 4101 | - $gd_post[$column] = $row[$c]; |
|
| 4099 | + $c = 0; |
|
| 4100 | + foreach ($columns as $column ) {
|
|
| 4101 | + $gd_post[$column] = $row[$c]; |
|
| 4102 | 4102 | |
| 4103 | - if ( $column == 'post_id' ) {
|
|
| 4104 | - $post_id = $row[$c]; |
|
| 4105 | - } else if ( $column == 'post_title' ) {
|
|
| 4106 | - $post_title = sanitize_text_field($row[$c]); |
|
| 4107 | - } else if ( $column == 'post_author' ) {
|
|
| 4108 | - $post_author = $row[$c]; |
|
| 4109 | - } else if ( $column == 'post_content' ) {
|
|
| 4110 | - $post_content = $row[$c]; |
|
| 4111 | - } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4112 | - $post_category_arr = explode( ',', $row[$c] ); |
|
| 4113 | - } else if ( $column == 'default_category' ) {
|
|
| 4114 | - $default_category = wp_kses_normalize_entities($row[$c]); |
|
| 4115 | - } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4116 | - $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4117 | - } else if ( $column == 'post_type' ) {
|
|
| 4118 | - $post_type = $row[$c]; |
|
| 4119 | - } else if ( $column == 'post_status' ) {
|
|
| 4120 | - $post_status = sanitize_key( $row[$c] ); |
|
| 4121 | - } else if ( $column == 'is_featured' ) {
|
|
| 4122 | - $is_featured = (int)$row[$c]; |
|
| 4123 | - } else if ( $column == 'geodir_video' ) {
|
|
| 4124 | - $geodir_video = $row[$c]; |
|
| 4125 | - } else if ( $column == 'post_address' ) {
|
|
| 4126 | - $post_address = sanitize_text_field($row[$c]); |
|
| 4127 | - } else if ( $column == 'post_city' ) {
|
|
| 4128 | - $post_city = sanitize_text_field($row[$c]); |
|
| 4129 | - } else if ( $column == 'post_region' ) {
|
|
| 4130 | - $post_region = sanitize_text_field($row[$c]); |
|
| 4131 | - } else if ( $column == 'post_country' ) {
|
|
| 4132 | - $post_country = sanitize_text_field($row[$c]); |
|
| 4133 | - } else if ( $column == 'post_zip' ) {
|
|
| 4134 | - $post_zip = sanitize_text_field($row[$c]); |
|
| 4135 | - } else if ( $column == 'post_latitude' ) {
|
|
| 4136 | - $post_latitude = sanitize_text_field($row[$c]); |
|
| 4137 | - } else if ( $column == 'post_longitude' ) {
|
|
| 4138 | - $post_longitude = sanitize_text_field($row[$c]); |
|
| 4139 | - } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4140 | - $post_neighbourhood = sanitize_text_field($row[$c]); |
|
| 4141 | - unset($gd_post[$column]); |
|
| 4142 | - } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4143 | - $neighbourhood_latitude = sanitize_text_field($row[$c]); |
|
| 4144 | - } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4145 | - $neighbourhood_longitude = sanitize_text_field($row[$c]); |
|
| 4146 | - } else if ( $column == 'geodir_timing' ) {
|
|
| 4147 | - $geodir_timing = sanitize_text_field($row[$c]); |
|
| 4148 | - } else if ( $column == 'geodir_contact' ) {
|
|
| 4149 | - $geodir_contact = sanitize_text_field($row[$c]); |
|
| 4150 | - } else if ( $column == 'geodir_email' ) {
|
|
| 4151 | - $geodir_email = sanitize_email($row[$c]); |
|
| 4152 | - } else if ( $column == 'geodir_website' ) {
|
|
| 4153 | - $geodir_website = sanitize_text_field($row[$c]); |
|
| 4154 | - } else if ( $column == 'geodir_twitter' ) {
|
|
| 4155 | - $geodir_twitter = sanitize_text_field($row[$c]); |
|
| 4156 | - } else if ( $column == 'geodir_facebook' ) {
|
|
| 4157 | - $geodir_facebook = sanitize_text_field($row[$c]); |
|
| 4158 | - } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4159 | - $post_images[] = $row[$c]; |
|
| 4160 | - } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4161 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4162 | - } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4163 | - $row[$c] = str_replace('/', '-', $row[$c]);
|
|
| 4164 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4165 | - } |
|
| 4166 | - // WPML |
|
| 4167 | - if ($is_wpml) {
|
|
| 4168 | - if ($column == 'language') {
|
|
| 4169 | - $language = geodir_strtolower(trim($row[$c])); |
|
| 4170 | - } else if ($column == 'original_post_id') {
|
|
| 4171 | - $original_post_id = (int)$row[$c]; |
|
| 4172 | - } |
|
| 4173 | - } |
|
| 4174 | - // WPML |
|
| 4175 | - $c++; |
|
| 4176 | - } |
|
| 4177 | - // listing claimed or not |
|
| 4178 | - if ($is_claim_active && isset($gd_post['claimed'])) {
|
|
| 4179 | - $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4180 | - } |
|
| 4103 | + if ( $column == 'post_id' ) {
|
|
| 4104 | + $post_id = $row[$c]; |
|
| 4105 | + } else if ( $column == 'post_title' ) {
|
|
| 4106 | + $post_title = sanitize_text_field($row[$c]); |
|
| 4107 | + } else if ( $column == 'post_author' ) {
|
|
| 4108 | + $post_author = $row[$c]; |
|
| 4109 | + } else if ( $column == 'post_content' ) {
|
|
| 4110 | + $post_content = $row[$c]; |
|
| 4111 | + } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4112 | + $post_category_arr = explode( ',', $row[$c] ); |
|
| 4113 | + } else if ( $column == 'default_category' ) {
|
|
| 4114 | + $default_category = wp_kses_normalize_entities($row[$c]); |
|
| 4115 | + } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4116 | + $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4117 | + } else if ( $column == 'post_type' ) {
|
|
| 4118 | + $post_type = $row[$c]; |
|
| 4119 | + } else if ( $column == 'post_status' ) {
|
|
| 4120 | + $post_status = sanitize_key( $row[$c] ); |
|
| 4121 | + } else if ( $column == 'is_featured' ) {
|
|
| 4122 | + $is_featured = (int)$row[$c]; |
|
| 4123 | + } else if ( $column == 'geodir_video' ) {
|
|
| 4124 | + $geodir_video = $row[$c]; |
|
| 4125 | + } else if ( $column == 'post_address' ) {
|
|
| 4126 | + $post_address = sanitize_text_field($row[$c]); |
|
| 4127 | + } else if ( $column == 'post_city' ) {
|
|
| 4128 | + $post_city = sanitize_text_field($row[$c]); |
|
| 4129 | + } else if ( $column == 'post_region' ) {
|
|
| 4130 | + $post_region = sanitize_text_field($row[$c]); |
|
| 4131 | + } else if ( $column == 'post_country' ) {
|
|
| 4132 | + $post_country = sanitize_text_field($row[$c]); |
|
| 4133 | + } else if ( $column == 'post_zip' ) {
|
|
| 4134 | + $post_zip = sanitize_text_field($row[$c]); |
|
| 4135 | + } else if ( $column == 'post_latitude' ) {
|
|
| 4136 | + $post_latitude = sanitize_text_field($row[$c]); |
|
| 4137 | + } else if ( $column == 'post_longitude' ) {
|
|
| 4138 | + $post_longitude = sanitize_text_field($row[$c]); |
|
| 4139 | + } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4140 | + $post_neighbourhood = sanitize_text_field($row[$c]); |
|
| 4141 | + unset($gd_post[$column]); |
|
| 4142 | + } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4143 | + $neighbourhood_latitude = sanitize_text_field($row[$c]); |
|
| 4144 | + } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4145 | + $neighbourhood_longitude = sanitize_text_field($row[$c]); |
|
| 4146 | + } else if ( $column == 'geodir_timing' ) {
|
|
| 4147 | + $geodir_timing = sanitize_text_field($row[$c]); |
|
| 4148 | + } else if ( $column == 'geodir_contact' ) {
|
|
| 4149 | + $geodir_contact = sanitize_text_field($row[$c]); |
|
| 4150 | + } else if ( $column == 'geodir_email' ) {
|
|
| 4151 | + $geodir_email = sanitize_email($row[$c]); |
|
| 4152 | + } else if ( $column == 'geodir_website' ) {
|
|
| 4153 | + $geodir_website = sanitize_text_field($row[$c]); |
|
| 4154 | + } else if ( $column == 'geodir_twitter' ) {
|
|
| 4155 | + $geodir_twitter = sanitize_text_field($row[$c]); |
|
| 4156 | + } else if ( $column == 'geodir_facebook' ) {
|
|
| 4157 | + $geodir_facebook = sanitize_text_field($row[$c]); |
|
| 4158 | + } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4159 | + $post_images[] = $row[$c]; |
|
| 4160 | + } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4161 | + $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4162 | + } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4163 | + $row[$c] = str_replace('/', '-', $row[$c]);
|
|
| 4164 | + $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4165 | + } |
|
| 4166 | + // WPML |
|
| 4167 | + if ($is_wpml) {
|
|
| 4168 | + if ($column == 'language') {
|
|
| 4169 | + $language = geodir_strtolower(trim($row[$c])); |
|
| 4170 | + } else if ($column == 'original_post_id') {
|
|
| 4171 | + $original_post_id = (int)$row[$c]; |
|
| 4172 | + } |
|
| 4173 | + } |
|
| 4174 | + // WPML |
|
| 4175 | + $c++; |
|
| 4176 | + } |
|
| 4177 | + // listing claimed or not |
|
| 4178 | + if ($is_claim_active && isset($gd_post['claimed'])) {
|
|
| 4179 | + $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4180 | + } |
|
| 4181 | 4181 | |
| 4182 | - // WPML |
|
| 4183 | - if ($is_wpml && $language != '') {
|
|
| 4184 | - $sitepress->switch_lang($language, true); |
|
| 4185 | - } |
|
| 4186 | - // WPML |
|
| 4182 | + // WPML |
|
| 4183 | + if ($is_wpml && $language != '') {
|
|
| 4184 | + $sitepress->switch_lang($language, true); |
|
| 4185 | + } |
|
| 4186 | + // WPML |
|
| 4187 | 4187 | |
| 4188 | - $gd_post['IMAGE'] = $post_images; |
|
| 4188 | + $gd_post['IMAGE'] = $post_images; |
|
| 4189 | 4189 | |
| 4190 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4191 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4190 | + $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4191 | + $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4192 | 4192 | |
| 4193 | - $valid = true; |
|
| 4193 | + $valid = true; |
|
| 4194 | 4194 | |
| 4195 | - if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4196 | - $invalid++; |
|
| 4197 | - $valid = false; |
|
| 4198 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4199 | - } |
|
| 4200 | - $xtimings['###3'] = microtime(true)-$xstart; |
|
| 4201 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4202 | - if ( $location_allowed ) {
|
|
| 4203 | - $location_result = geodir_get_default_location(); |
|
| 4204 | - if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4205 | - $invalid_addr++; |
|
| 4206 | - $valid = false; |
|
| 4207 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4208 | - } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4209 | - if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4210 | - $invalid_addr++; |
|
| 4211 | - $valid = false; |
|
| 4212 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4213 | - } else {
|
|
| 4214 | - if (!$location_manager) {
|
|
| 4215 | - $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4216 | - } |
|
| 4217 | - } |
|
| 4218 | - } |
|
| 4219 | - } |
|
| 4220 | - $xtimings['###4'] = microtime(true)-$xstart; |
|
| 4221 | - if ( !$valid ) {
|
|
| 4222 | - continue; |
|
| 4223 | - } |
|
| 4195 | + if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4196 | + $invalid++; |
|
| 4197 | + $valid = false; |
|
| 4198 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4199 | + } |
|
| 4200 | + $xtimings['###3'] = microtime(true)-$xstart; |
|
| 4201 | + $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4202 | + if ( $location_allowed ) {
|
|
| 4203 | + $location_result = geodir_get_default_location(); |
|
| 4204 | + if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4205 | + $invalid_addr++; |
|
| 4206 | + $valid = false; |
|
| 4207 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4208 | + } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4209 | + if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4210 | + $invalid_addr++; |
|
| 4211 | + $valid = false; |
|
| 4212 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4213 | + } else {
|
|
| 4214 | + if (!$location_manager) {
|
|
| 4215 | + $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4216 | + } |
|
| 4217 | + } |
|
| 4218 | + } |
|
| 4219 | + } |
|
| 4220 | + $xtimings['###4'] = microtime(true)-$xstart; |
|
| 4221 | + if ( !$valid ) {
|
|
| 4222 | + continue; |
|
| 4223 | + } |
|
| 4224 | 4224 | |
| 4225 | - $cat_taxonomy = $post_type . 'category'; |
|
| 4226 | - $tags_taxonomy = $post_type . '_tags'; |
|
| 4225 | + $cat_taxonomy = $post_type . 'category'; |
|
| 4226 | + $tags_taxonomy = $post_type . '_tags'; |
|
| 4227 | 4227 | |
| 4228 | - if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
|
| 4229 | - $post_category_arr = array_merge(array($default_category), $post_category_arr); |
|
| 4230 | - } |
|
| 4228 | + if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
|
| 4229 | + $post_category_arr = array_merge(array($default_category), $post_category_arr); |
|
| 4230 | + } |
|
| 4231 | 4231 | |
| 4232 | - $post_category = array(); |
|
| 4233 | - $default_category_id = NULL; |
|
| 4234 | - if ( !empty( $post_category_arr ) ) {
|
|
| 4235 | - foreach ( $post_category_arr as $value ) {
|
|
| 4236 | - $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4232 | + $post_category = array(); |
|
| 4233 | + $default_category_id = NULL; |
|
| 4234 | + if ( !empty( $post_category_arr ) ) {
|
|
| 4235 | + foreach ( $post_category_arr as $value ) {
|
|
| 4236 | + $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4237 | 4237 | |
| 4238 | - if ( $category_name != '' ) {
|
|
| 4239 | - $term_category = array(); |
|
| 4238 | + if ( $category_name != '' ) {
|
|
| 4239 | + $term_category = array(); |
|
| 4240 | 4240 | |
| 4241 | - if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4242 | - $term_category = $term; |
|
| 4243 | - } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4244 | - $term_category = $term; |
|
| 4245 | - } else {
|
|
| 4246 | - $term_data = array(); |
|
| 4247 | - $term_data['name'] = $category_name; |
|
| 4248 | - $term_data['taxonomy'] = $cat_taxonomy; |
|
| 4241 | + if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4242 | + $term_category = $term; |
|
| 4243 | + } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4244 | + $term_category = $term; |
|
| 4245 | + } else {
|
|
| 4246 | + $term_data = array(); |
|
| 4247 | + $term_data['name'] = $category_name; |
|
| 4248 | + $term_data['taxonomy'] = $cat_taxonomy; |
|
| 4249 | 4249 | |
| 4250 | - $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4251 | - if ( $term_id ) {
|
|
| 4252 | - $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4253 | - } |
|
| 4254 | - } |
|
| 4250 | + $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4251 | + if ( $term_id ) {
|
|
| 4252 | + $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4253 | + } |
|
| 4254 | + } |
|
| 4255 | 4255 | |
| 4256 | - if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4257 | - $post_category[] = intval($term_category->term_id); |
|
| 4256 | + if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4257 | + $post_category[] = intval($term_category->term_id); |
|
| 4258 | 4258 | |
| 4259 | - if ($category_name == $default_category) {
|
|
| 4260 | - $default_category_id = intval($term_category->term_id); |
|
| 4261 | - } |
|
| 4262 | - } |
|
| 4263 | - } |
|
| 4264 | - } |
|
| 4265 | - } |
|
| 4266 | - $xtimings['###5'] = microtime(true)-$xstart; |
|
| 4267 | - $save_post = array(); |
|
| 4268 | - $save_post['post_title'] = $post_title; |
|
| 4269 | - $save_post['post_content'] = $post_content; |
|
| 4270 | - $save_post['post_type'] = $post_type; |
|
| 4271 | - $save_post['post_author'] = $post_author; |
|
| 4272 | - $save_post['post_status'] = $post_status; |
|
| 4273 | - $save_post['post_category'] = $post_category; |
|
| 4274 | - $save_post['post_tags'] = $post_tags; |
|
| 4275 | - |
|
| 4276 | - $saved_post_id = NULL; |
|
| 4277 | - if ( $import_choice == 'update' ) {
|
|
| 4278 | - $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4259 | + if ($category_name == $default_category) {
|
|
| 4260 | + $default_category_id = intval($term_category->term_id); |
|
| 4261 | + } |
|
| 4262 | + } |
|
| 4263 | + } |
|
| 4264 | + } |
|
| 4265 | + } |
|
| 4266 | + $xtimings['###5'] = microtime(true)-$xstart; |
|
| 4267 | + $save_post = array(); |
|
| 4268 | + $save_post['post_title'] = $post_title; |
|
| 4269 | + $save_post['post_content'] = $post_content; |
|
| 4270 | + $save_post['post_type'] = $post_type; |
|
| 4271 | + $save_post['post_author'] = $post_author; |
|
| 4272 | + $save_post['post_status'] = $post_status; |
|
| 4273 | + $save_post['post_category'] = $post_category; |
|
| 4274 | + $save_post['post_tags'] = $post_tags; |
|
| 4275 | + |
|
| 4276 | + $saved_post_id = NULL; |
|
| 4277 | + if ( $import_choice == 'update' ) {
|
|
| 4278 | + $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4279 | 4279 | |
| 4280 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4281 | - $save_post['ID'] = $post_id; |
|
| 4280 | + if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4281 | + $save_post['ID'] = $post_id; |
|
| 4282 | 4282 | |
| 4283 | - if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4284 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4285 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4286 | - $saved_post_id = 0; |
|
| 4287 | - } else {
|
|
| 4288 | - $saved_post_id = $post_id; |
|
| 4289 | - $updated++; |
|
| 4290 | - } |
|
| 4291 | - } |
|
| 4292 | - } else {
|
|
| 4293 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4294 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4295 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4296 | - $saved_post_id = 0; |
|
| 4297 | - } else {
|
|
| 4298 | - $created++; |
|
| 4299 | - } |
|
| 4300 | - } |
|
| 4301 | - } |
|
| 4283 | + if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4284 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4285 | + $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4286 | + $saved_post_id = 0; |
|
| 4287 | + } else {
|
|
| 4288 | + $saved_post_id = $post_id; |
|
| 4289 | + $updated++; |
|
| 4290 | + } |
|
| 4291 | + } |
|
| 4292 | + } else {
|
|
| 4293 | + if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4294 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4295 | + $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4296 | + $saved_post_id = 0; |
|
| 4297 | + } else {
|
|
| 4298 | + $created++; |
|
| 4299 | + } |
|
| 4300 | + } |
|
| 4301 | + } |
|
| 4302 | 4302 | |
| 4303 | - if ( !$saved_post_id > 0 ) {
|
|
| 4304 | - $invalid++; |
|
| 4305 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4306 | - } |
|
| 4307 | - } else if ( $import_choice == 'skip' ) {
|
|
| 4308 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4309 | - $skipped++; |
|
| 4310 | - } else {
|
|
| 4311 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4312 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4313 | - $invalid++; |
|
| 4303 | + if ( !$saved_post_id > 0 ) {
|
|
| 4304 | + $invalid++; |
|
| 4305 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4306 | + } |
|
| 4307 | + } else if ( $import_choice == 'skip' ) {
|
|
| 4308 | + if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4309 | + $skipped++; |
|
| 4310 | + } else {
|
|
| 4311 | + if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4312 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4313 | + $invalid++; |
|
| 4314 | 4314 | |
| 4315 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4316 | - $saved_post_id = 0; |
|
| 4317 | - } else {
|
|
| 4318 | - $created++; |
|
| 4319 | - } |
|
| 4320 | - } else {
|
|
| 4321 | - $invalid++; |
|
| 4315 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4316 | + $saved_post_id = 0; |
|
| 4317 | + } else {
|
|
| 4318 | + $created++; |
|
| 4319 | + } |
|
| 4320 | + } else {
|
|
| 4321 | + $invalid++; |
|
| 4322 | 4322 | |
| 4323 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4324 | - } |
|
| 4325 | - } |
|
| 4326 | - } else {
|
|
| 4327 | - $invalid++; |
|
| 4323 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4324 | + } |
|
| 4325 | + } |
|
| 4326 | + } else {
|
|
| 4327 | + $invalid++; |
|
| 4328 | 4328 | |
| 4329 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4330 | - } |
|
| 4331 | - $xtimings['###6'] = microtime(true)-$xstart; |
|
| 4332 | - if ( (int)$saved_post_id > 0 ) {
|
|
| 4333 | - // WPML |
|
| 4334 | - if ($is_wpml && $original_post_id > 0 && $language != '') {
|
|
| 4335 | - $wpml_post_type = 'post_' . $post_type; |
|
| 4336 | - $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4337 | - $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 4338 | - |
|
| 4339 | - $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4329 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4330 | + } |
|
| 4331 | + $xtimings['###6'] = microtime(true)-$xstart; |
|
| 4332 | + if ( (int)$saved_post_id > 0 ) {
|
|
| 4333 | + // WPML |
|
| 4334 | + if ($is_wpml && $original_post_id > 0 && $language != '') {
|
|
| 4335 | + $wpml_post_type = 'post_' . $post_type; |
|
| 4336 | + $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4337 | + $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 4338 | + |
|
| 4339 | + $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4340 | 4340 | |
| 4341 | - $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4342 | - } |
|
| 4343 | - // WPML |
|
| 4344 | - $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4341 | + $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4342 | + } |
|
| 4343 | + // WPML |
|
| 4344 | + $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4345 | 4345 | |
| 4346 | - $gd_post['post_id'] = $saved_post_id; |
|
| 4347 | - $gd_post['ID'] = $saved_post_id; |
|
| 4348 | - $gd_post['post_tags'] = $post_tags; |
|
| 4349 | - $gd_post['post_title'] = $post_title; |
|
| 4350 | - $gd_post['post_status'] = $post_status; |
|
| 4351 | - $gd_post['submit_time'] = time(); |
|
| 4352 | - $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
| 4346 | + $gd_post['post_id'] = $saved_post_id; |
|
| 4347 | + $gd_post['ID'] = $saved_post_id; |
|
| 4348 | + $gd_post['post_tags'] = $post_tags; |
|
| 4349 | + $gd_post['post_title'] = $post_title; |
|
| 4350 | + $gd_post['post_status'] = $post_status; |
|
| 4351 | + $gd_post['submit_time'] = time(); |
|
| 4352 | + $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
| 4353 | 4353 | |
| 4354 | - // post location |
|
| 4355 | - $post_location_id = 0; |
|
| 4356 | - if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4357 | - $gd_post['post_neighbourhood'] = ''; |
|
| 4354 | + // post location |
|
| 4355 | + $post_location_id = 0; |
|
| 4356 | + if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4357 | + $gd_post['post_neighbourhood'] = ''; |
|
| 4358 | 4358 | |
| 4359 | - $post_location_info = array( |
|
| 4360 | - 'city' => $post_city, |
|
| 4361 | - 'region' => $post_region, |
|
| 4362 | - 'country' => $post_country, |
|
| 4363 | - 'geo_lat' => $post_latitude, |
|
| 4364 | - 'geo_lng' => $post_longitude |
|
| 4365 | - ); |
|
| 4366 | - if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4367 | - $post_location_id = $location_id; |
|
| 4368 | - } |
|
| 4359 | + $post_location_info = array( |
|
| 4360 | + 'city' => $post_city, |
|
| 4361 | + 'region' => $post_region, |
|
| 4362 | + 'country' => $post_country, |
|
| 4363 | + 'geo_lat' => $post_latitude, |
|
| 4364 | + 'geo_lng' => $post_longitude |
|
| 4365 | + ); |
|
| 4366 | + if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4367 | + $post_location_id = $location_id; |
|
| 4368 | + } |
|
| 4369 | 4369 | |
| 4370 | - if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
|
|
| 4371 | - $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id); |
|
| 4370 | + if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
|
|
| 4371 | + $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id); |
|
| 4372 | 4372 | |
| 4373 | - $hood_data = array(); |
|
| 4374 | - $hood_data['hood_location_id'] = $post_location_id; |
|
| 4375 | - $hood_data['hood_name'] = $post_neighbourhood; |
|
| 4373 | + $hood_data = array(); |
|
| 4374 | + $hood_data['hood_location_id'] = $post_location_id; |
|
| 4375 | + $hood_data['hood_name'] = $post_neighbourhood; |
|
| 4376 | 4376 | |
| 4377 | - if (!empty($neighbourhood_info)) {
|
|
| 4378 | - $hood_data['hood_id'] = $neighbourhood_info->hood_id; |
|
| 4379 | - $hood_data['hood_slug'] = $neighbourhood_info->hood_slug; |
|
| 4377 | + if (!empty($neighbourhood_info)) {
|
|
| 4378 | + $hood_data['hood_id'] = $neighbourhood_info->hood_id; |
|
| 4379 | + $hood_data['hood_slug'] = $neighbourhood_info->hood_slug; |
|
| 4380 | 4380 | |
| 4381 | - if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4382 | - $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4383 | - $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4384 | - } |
|
| 4385 | - } |
|
| 4381 | + if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4382 | + $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4383 | + $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4384 | + } |
|
| 4385 | + } |
|
| 4386 | 4386 | |
| 4387 | - if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4388 | - $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4389 | - $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4390 | - } |
|
| 4387 | + if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4388 | + $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4389 | + $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4390 | + } |
|
| 4391 | 4391 | |
| 4392 | - $hood_data['hood_latitude'] = $post_latitude; |
|
| 4393 | - $hood_data['hood_longitude'] = $post_longitude; |
|
| 4394 | - |
|
| 4395 | - $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data); |
|
| 4396 | - if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
|
|
| 4397 | - $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug; |
|
| 4398 | - } |
|
| 4399 | - } |
|
| 4400 | - } |
|
| 4401 | - $gd_post['post_location_id'] = $post_location_id; |
|
| 4392 | + $hood_data['hood_latitude'] = $post_latitude; |
|
| 4393 | + $hood_data['hood_longitude'] = $post_longitude; |
|
| 4394 | + |
|
| 4395 | + $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data); |
|
| 4396 | + if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
|
|
| 4397 | + $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug; |
|
| 4398 | + } |
|
| 4399 | + } |
|
| 4400 | + } |
|
| 4401 | + $gd_post['post_location_id'] = $post_location_id; |
|
| 4402 | 4402 | |
| 4403 | - // post package info |
|
| 4404 | - $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4405 | - if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
|
| 4406 | - $package_id = $gd_post_info->package_id; |
|
| 4407 | - } |
|
| 4403 | + // post package info |
|
| 4404 | + $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4405 | + if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
|
| 4406 | + $package_id = $gd_post_info->package_id; |
|
| 4407 | + } |
|
| 4408 | 4408 | |
| 4409 | - $package_info = array(); |
|
| 4410 | - if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
|
| 4411 | - $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4409 | + $package_info = array(); |
|
| 4410 | + if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
|
| 4411 | + $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4412 | 4412 | |
| 4413 | - if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
|
| 4414 | - $package_info = array(); |
|
| 4415 | - } |
|
| 4416 | - } |
|
| 4413 | + if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
|
| 4414 | + $package_info = array(); |
|
| 4415 | + } |
|
| 4416 | + } |
|
| 4417 | 4417 | |
| 4418 | - if (empty($package_info)) {
|
|
| 4419 | - $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4420 | - } |
|
| 4418 | + if (empty($package_info)) {
|
|
| 4419 | + $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4420 | + } |
|
| 4421 | 4421 | |
| 4422 | - if (!empty($package_info)) {
|
|
| 4423 | - $package_id = $package_info['pid']; |
|
| 4422 | + if (!empty($package_info)) {
|
|
| 4423 | + $package_id = $package_info['pid']; |
|
| 4424 | 4424 | |
| 4425 | - if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
|
| 4426 | - $gd_post['expire_date'] = $expire_date; |
|
| 4427 | - } else {
|
|
| 4428 | - if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4429 | - $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4430 | - $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4431 | - } else {
|
|
| 4432 | - $gd_post['expire_date'] = 'Never'; |
|
| 4433 | - } |
|
| 4434 | - } |
|
| 4425 | + if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
|
| 4426 | + $gd_post['expire_date'] = $expire_date; |
|
| 4427 | + } else {
|
|
| 4428 | + if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4429 | + $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4430 | + $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4431 | + } else {
|
|
| 4432 | + $gd_post['expire_date'] = 'Never'; |
|
| 4433 | + } |
|
| 4434 | + } |
|
| 4435 | 4435 | |
| 4436 | - $gd_post['package_id'] = $package_id; |
|
| 4437 | - } |
|
| 4436 | + $gd_post['package_id'] = $package_id; |
|
| 4437 | + } |
|
| 4438 | 4438 | |
| 4439 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4439 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4440 | 4440 | |
| 4441 | - if ($post_type == 'gd_event') {
|
|
| 4442 | - $gd_post = geodir_imex_process_event_data($gd_post); |
|
| 4443 | - } |
|
| 4441 | + if ($post_type == 'gd_event') {
|
|
| 4442 | + $gd_post = geodir_imex_process_event_data($gd_post); |
|
| 4443 | + } |
|
| 4444 | 4444 | |
| 4445 | - if (isset($gd_post['post_id'])) {
|
|
| 4446 | - unset($gd_post['post_id']); |
|
| 4447 | - } |
|
| 4445 | + if (isset($gd_post['post_id'])) {
|
|
| 4446 | + unset($gd_post['post_id']); |
|
| 4447 | + } |
|
| 4448 | 4448 | |
| 4449 | - // Export franchise fields |
|
| 4450 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4451 | - if ($is_franchise_active) {
|
|
| 4452 | - if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4453 | - $gd_franchise_lock = array(); |
|
| 4449 | + // Export franchise fields |
|
| 4450 | + $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4451 | + if ($is_franchise_active) {
|
|
| 4452 | + if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4453 | + $gd_franchise_lock = array(); |
|
| 4454 | 4454 | |
| 4455 | - if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4456 | - $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4457 | - $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4458 | - $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4459 | - } |
|
| 4455 | + if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4456 | + $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4457 | + $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4458 | + $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4459 | + } |
|
| 4460 | 4460 | |
| 4461 | - update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4462 | - update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4463 | - } else {
|
|
| 4464 | - if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4465 | - geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4466 | - } |
|
| 4467 | - } |
|
| 4468 | - } |
|
| 4461 | + update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4462 | + update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4463 | + } else {
|
|
| 4464 | + if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4465 | + geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4466 | + } |
|
| 4467 | + } |
|
| 4468 | + } |
|
| 4469 | 4469 | |
| 4470 | - if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
|
| 4471 | - $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4472 | - if ($default_category_id) {
|
|
| 4473 | - $save_post['post_default_category'] = $default_category_id; |
|
| 4474 | - $gd_post['default_category'] = $default_category_id; |
|
| 4475 | - } |
|
| 4476 | - $gd_post[$cat_taxonomy] = $save_post['post_category']; |
|
| 4477 | - } |
|
| 4478 | - $xtimings['###7'] = microtime(true)-$xstart; |
|
| 4479 | - // Save post info |
|
| 4480 | - geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4481 | - $xtimings['###8'] = microtime(true)-$xstart; |
|
| 4482 | - // post taxonomies |
|
| 4483 | - if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4484 | - wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4470 | + if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
|
| 4471 | + $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4472 | + if ($default_category_id) {
|
|
| 4473 | + $save_post['post_default_category'] = $default_category_id; |
|
| 4474 | + $gd_post['default_category'] = $default_category_id; |
|
| 4475 | + } |
|
| 4476 | + $gd_post[$cat_taxonomy] = $save_post['post_category']; |
|
| 4477 | + } |
|
| 4478 | + $xtimings['###7'] = microtime(true)-$xstart; |
|
| 4479 | + // Save post info |
|
| 4480 | + geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4481 | + $xtimings['###8'] = microtime(true)-$xstart; |
|
| 4482 | + // post taxonomies |
|
| 4483 | + if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4484 | + wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4485 | 4485 | |
| 4486 | - $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4487 | - if ($default_category_id) {
|
|
| 4488 | - $post_default_category = $default_category_id; |
|
| 4489 | - } |
|
| 4490 | - $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
|
| 4491 | - $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
|
| 4492 | - $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4486 | + $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4487 | + if ($default_category_id) {
|
|
| 4488 | + $post_default_category = $default_category_id; |
|
| 4489 | + } |
|
| 4490 | + $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
|
| 4491 | + $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
|
| 4492 | + $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4493 | 4493 | |
| 4494 | - if ($post_category_str != '' && $post_default_category) {
|
|
| 4495 | - $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4496 | - } |
|
| 4494 | + if ($post_category_str != '' && $post_default_category) {
|
|
| 4495 | + $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4496 | + } |
|
| 4497 | 4497 | |
| 4498 | - $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
|
| 4498 | + $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
|
| 4499 | 4499 | |
| 4500 | - geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4501 | - } |
|
| 4502 | - $xtimings['###8.1'] = microtime(true)-$xstart; |
|
| 4503 | - if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4504 | - wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4505 | - } |
|
| 4506 | - $xtimings['###9'] = microtime(true)-$xstart; |
|
| 4507 | - // Post images |
|
| 4508 | - if ( !empty( $post_images ) ) {
|
|
| 4509 | - $post_images = array_unique($post_images); |
|
| 4500 | + geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4501 | + } |
|
| 4502 | + $xtimings['###8.1'] = microtime(true)-$xstart; |
|
| 4503 | + if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4504 | + wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4505 | + } |
|
| 4506 | + $xtimings['###9'] = microtime(true)-$xstart; |
|
| 4507 | + // Post images |
|
| 4508 | + if ( !empty( $post_images ) ) {
|
|
| 4509 | + $post_images = array_unique($post_images); |
|
| 4510 | 4510 | |
| 4511 | - $old_post_images_arr = array(); |
|
| 4512 | - $saved_post_images_arr = array(); |
|
| 4511 | + $old_post_images_arr = array(); |
|
| 4512 | + $saved_post_images_arr = array(); |
|
| 4513 | 4513 | |
| 4514 | - $order = 1; |
|
| 4514 | + $order = 1; |
|
| 4515 | 4515 | |
| 4516 | - $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4517 | - $xtimings['###9.1'] = microtime(true)-$xstart; |
|
| 4518 | - if (!empty($old_post_images)) {
|
|
| 4519 | - foreach( $old_post_images as $old_post_image ) {
|
|
| 4520 | - if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
|
| 4521 | - $old_post_images_arr[] = $old_post_image->file; |
|
| 4522 | - } |
|
| 4523 | - } |
|
| 4524 | - } |
|
| 4516 | + $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4517 | + $xtimings['###9.1'] = microtime(true)-$xstart; |
|
| 4518 | + if (!empty($old_post_images)) {
|
|
| 4519 | + foreach( $old_post_images as $old_post_image ) {
|
|
| 4520 | + if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
|
| 4521 | + $old_post_images_arr[] = $old_post_image->file; |
|
| 4522 | + } |
|
| 4523 | + } |
|
| 4524 | + } |
|
| 4525 | 4525 | |
| 4526 | - foreach ( $post_images as $post_image ) {
|
|
| 4527 | - $image_name = basename( $post_image ); |
|
| 4528 | - $saved_post_images_arr[] = $image_name; |
|
| 4526 | + foreach ( $post_images as $post_image ) {
|
|
| 4527 | + $image_name = basename( $post_image ); |
|
| 4528 | + $saved_post_images_arr[] = $image_name; |
|
| 4529 | 4529 | |
| 4530 | - if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4531 | - continue; // Skip if image already exists. |
|
| 4532 | - } |
|
| 4530 | + if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4531 | + continue; // Skip if image already exists. |
|
| 4532 | + } |
|
| 4533 | 4533 | |
| 4534 | - $image_name_parts = explode( '.', $image_name ); |
|
| 4535 | - array_pop( $image_name_parts ); |
|
| 4536 | - $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4537 | - $xtimings['###9.2'] = microtime(true)-$xstart; |
|
| 4538 | - $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4539 | - $xtimings['###9.3'] = microtime(true)-$xstart; |
|
| 4540 | - if ( !empty( $arr_file_type ) ) {
|
|
| 4541 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 4534 | + $image_name_parts = explode( '.', $image_name ); |
|
| 4535 | + array_pop( $image_name_parts ); |
|
| 4536 | + $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4537 | + $xtimings['###9.2'] = microtime(true)-$xstart; |
|
| 4538 | + $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4539 | + $xtimings['###9.3'] = microtime(true)-$xstart; |
|
| 4540 | + if ( !empty( $arr_file_type ) ) {
|
|
| 4541 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 4542 | 4542 | |
| 4543 | - $attachment = array(); |
|
| 4544 | - $attachment['post_id'] = $saved_post_id; |
|
| 4545 | - $attachment['title'] = $proper_image_name; |
|
| 4546 | - $attachment['content'] = ''; |
|
| 4547 | - $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4548 | - $attachment['mime_type'] = $uploaded_file_type; |
|
| 4549 | - $attachment['menu_order'] = $order; |
|
| 4550 | - $attachment['is_featured'] = 0; |
|
| 4551 | - |
|
| 4552 | - $attachment_set = ''; |
|
| 4553 | - foreach ( $attachment as $key => $val ) {
|
|
| 4554 | - if ( $val != '' ) {
|
|
| 4555 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4556 | - } |
|
| 4557 | - } |
|
| 4558 | - $attachment_set = trim( $attachment_set, ", " ); |
|
| 4543 | + $attachment = array(); |
|
| 4544 | + $attachment['post_id'] = $saved_post_id; |
|
| 4545 | + $attachment['title'] = $proper_image_name; |
|
| 4546 | + $attachment['content'] = ''; |
|
| 4547 | + $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4548 | + $attachment['mime_type'] = $uploaded_file_type; |
|
| 4549 | + $attachment['menu_order'] = $order; |
|
| 4550 | + $attachment['is_featured'] = 0; |
|
| 4551 | + |
|
| 4552 | + $attachment_set = ''; |
|
| 4553 | + foreach ( $attachment as $key => $val ) {
|
|
| 4554 | + if ( $val != '' ) {
|
|
| 4555 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4556 | + } |
|
| 4557 | + } |
|
| 4558 | + $attachment_set = trim( $attachment_set, ", " ); |
|
| 4559 | 4559 | |
| 4560 | - // Add new attachment |
|
| 4561 | - $xtimings['###9.4'] = microtime(true)-$xstart; |
|
| 4562 | - $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4563 | - $xtimings['###9.5'] = microtime(true)-$xstart; |
|
| 4564 | - $order++; |
|
| 4565 | - } |
|
| 4566 | - } |
|
| 4567 | - |
|
| 4568 | - $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4569 | - // Remove previous attachment |
|
| 4570 | - $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4571 | - $xtimings['###9.6'] = microtime(true)-$xstart; |
|
| 4572 | - if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4573 | - geodir_set_wp_featured_image($saved_post_id); |
|
| 4574 | - $xtimings['###9.7'] = microtime(true)-$xstart; |
|
| 4575 | - /* |
|
| 4560 | + // Add new attachment |
|
| 4561 | + $xtimings['###9.4'] = microtime(true)-$xstart; |
|
| 4562 | + $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4563 | + $xtimings['###9.5'] = microtime(true)-$xstart; |
|
| 4564 | + $order++; |
|
| 4565 | + } |
|
| 4566 | + } |
|
| 4567 | + |
|
| 4568 | + $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4569 | + // Remove previous attachment |
|
| 4570 | + $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4571 | + $xtimings['###9.6'] = microtime(true)-$xstart; |
|
| 4572 | + if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4573 | + geodir_set_wp_featured_image($saved_post_id); |
|
| 4574 | + $xtimings['###9.7'] = microtime(true)-$xstart; |
|
| 4575 | + /* |
|
| 4576 | 4576 | $menu_order = 1; |
| 4577 | 4577 | |
| 4578 | 4578 | foreach ( $saved_post_images_arr as $img_name ) {
|
@@ -4585,288 +4585,288 @@ discard block |
||
| 4585 | 4585 | } |
| 4586 | 4586 | $menu_order++; |
| 4587 | 4587 | }*/ |
| 4588 | - } |
|
| 4588 | + } |
|
| 4589 | 4589 | |
| 4590 | - if ( $order > 1 ) {
|
|
| 4591 | - $images++; |
|
| 4592 | - } |
|
| 4593 | - } |
|
| 4594 | - $xtimings['###10'] = microtime(true)-$xstart; |
|
| 4595 | - /** This action is documented in geodirectory-functions/post-functions.php */ |
|
| 4596 | - do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4597 | - $xtimings['###11'] = microtime(true)-$xstart; |
|
| 4598 | - if (isset($is_featured)) {
|
|
| 4599 | - geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
|
| 4600 | - } |
|
| 4601 | - if (isset($gd_post['alive_days'])) {
|
|
| 4602 | - geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']); |
|
| 4603 | - } |
|
| 4604 | - if (isset($gd_post['expire_date'])) {
|
|
| 4605 | - geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
|
| 4606 | - } |
|
| 4607 | - $xtimings['###12'] = microtime(true)-$xstart; |
|
| 4608 | - } |
|
| 4590 | + if ( $order > 1 ) {
|
|
| 4591 | + $images++; |
|
| 4592 | + } |
|
| 4593 | + } |
|
| 4594 | + $xtimings['###10'] = microtime(true)-$xstart; |
|
| 4595 | + /** This action is documented in geodirectory-functions/post-functions.php */ |
|
| 4596 | + do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4597 | + $xtimings['###11'] = microtime(true)-$xstart; |
|
| 4598 | + if (isset($is_featured)) {
|
|
| 4599 | + geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
|
| 4600 | + } |
|
| 4601 | + if (isset($gd_post['alive_days'])) {
|
|
| 4602 | + geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']); |
|
| 4603 | + } |
|
| 4604 | + if (isset($gd_post['expire_date'])) {
|
|
| 4605 | + geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
|
| 4606 | + } |
|
| 4607 | + $xtimings['###12'] = microtime(true)-$xstart; |
|
| 4608 | + } |
|
| 4609 | 4609 | |
| 4610 | - // WPML |
|
| 4611 | - if ($is_wpml && $language != '') {
|
|
| 4612 | - $sitepress->switch_lang($active_lang, true); |
|
| 4613 | - } |
|
| 4614 | - // WPML |
|
| 4615 | - } |
|
| 4616 | - } |
|
| 4617 | - } |
|
| 4610 | + // WPML |
|
| 4611 | + if ($is_wpml && $language != '') {
|
|
| 4612 | + $sitepress->switch_lang($active_lang, true); |
|
| 4613 | + } |
|
| 4614 | + // WPML |
|
| 4615 | + } |
|
| 4616 | + } |
|
| 4617 | + } |
|
| 4618 | 4618 | |
| 4619 | - //undo some stuff to make the import quicker |
|
| 4620 | - wp_defer_term_counting( false ); |
|
| 4621 | - wp_defer_comment_counting( false ); |
|
| 4622 | - $wpdb->query( 'COMMIT;' ); |
|
| 4623 | - $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4624 | - $xtimings['###13'] = microtime(true)-$xstart; |
|
| 4625 | - $json = array(); |
|
| 4626 | - $json['processed'] = $processed_actual; |
|
| 4627 | - $json['created'] = $created; |
|
| 4628 | - $json['updated'] = $updated; |
|
| 4629 | - $json['skipped'] = $skipped; |
|
| 4630 | - $json['invalid'] = $invalid; |
|
| 4631 | - $json['invalid_addr'] = $invalid_addr; |
|
| 4632 | - $json['images'] = $images; |
|
| 4633 | - $json['timing'] = microtime(true)-$xstart; |
|
| 4634 | - $json['timings'] = $xtimings; |
|
| 4619 | + //undo some stuff to make the import quicker |
|
| 4620 | + wp_defer_term_counting( false ); |
|
| 4621 | + wp_defer_comment_counting( false ); |
|
| 4622 | + $wpdb->query( 'COMMIT;' ); |
|
| 4623 | + $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4624 | + $xtimings['###13'] = microtime(true)-$xstart; |
|
| 4625 | + $json = array(); |
|
| 4626 | + $json['processed'] = $processed_actual; |
|
| 4627 | + $json['created'] = $created; |
|
| 4628 | + $json['updated'] = $updated; |
|
| 4629 | + $json['skipped'] = $skipped; |
|
| 4630 | + $json['invalid'] = $invalid; |
|
| 4631 | + $json['invalid_addr'] = $invalid_addr; |
|
| 4632 | + $json['images'] = $images; |
|
| 4633 | + $json['timing'] = microtime(true)-$xstart; |
|
| 4634 | + $json['timings'] = $xtimings; |
|
| 4635 | 4635 | |
| 4636 | 4636 | |
| 4637 | - wp_send_json( $json ); |
|
| 4638 | - exit; |
|
| 4639 | - } else if ( $task == 'import_loc' ) {
|
|
| 4640 | - global $gd_post_types; |
|
| 4641 | - $gd_post_types = $post_types; |
|
| 4637 | + wp_send_json( $json ); |
|
| 4638 | + exit; |
|
| 4639 | + } else if ( $task == 'import_loc' ) {
|
|
| 4640 | + global $gd_post_types; |
|
| 4641 | + $gd_post_types = $post_types; |
|
| 4642 | 4642 | |
| 4643 | - if (!empty($file)) {
|
|
| 4644 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4643 | + if (!empty($file)) {
|
|
| 4644 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4645 | 4645 | |
| 4646 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4647 | - $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4648 | - wp_send_json( $json ); |
|
| 4649 | - } |
|
| 4646 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4647 | + $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4648 | + wp_send_json( $json ); |
|
| 4649 | + } |
|
| 4650 | 4650 | |
| 4651 | - $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
|
| 4652 | - $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4653 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4654 | - $index = $processed + $i; |
|
| 4651 | + $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
|
| 4652 | + $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4653 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4654 | + $index = $processed + $i; |
|
| 4655 | 4655 | |
| 4656 | - if (isset($file[$index])) {
|
|
| 4657 | - $row = $file[$index]; |
|
| 4658 | - $row = array_map( 'trim', $row ); |
|
| 4659 | - $data = array(); |
|
| 4656 | + if (isset($file[$index])) {
|
|
| 4657 | + $row = $file[$index]; |
|
| 4658 | + $row = array_map( 'trim', $row ); |
|
| 4659 | + $data = array(); |
|
| 4660 | 4660 | |
| 4661 | - foreach ($columns as $c => $column ) {
|
|
| 4662 | - if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
|
|
| 4663 | - $data[$column] = $row[$c]; |
|
| 4664 | - } |
|
| 4665 | - } |
|
| 4661 | + foreach ($columns as $c => $column ) {
|
|
| 4662 | + if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
|
|
| 4663 | + $data[$column] = $row[$c]; |
|
| 4664 | + } |
|
| 4665 | + } |
|
| 4666 | 4666 | |
| 4667 | - if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4668 | - $invalid++; |
|
| 4669 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4670 | - continue; |
|
| 4671 | - } |
|
| 4667 | + if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4668 | + $invalid++; |
|
| 4669 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4670 | + continue; |
|
| 4671 | + } |
|
| 4672 | 4672 | |
| 4673 | - $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
|
| 4673 | + $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
|
| 4674 | 4674 | |
| 4675 | - if ( $import_choice == 'update' ) {
|
|
| 4676 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4677 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4678 | - $updated++; |
|
| 4679 | - } else {
|
|
| 4680 | - $invalid++; |
|
| 4681 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4682 | - } |
|
| 4683 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4684 | - $data['location_id'] = (int)$location->location_id; |
|
| 4675 | + if ( $import_choice == 'update' ) {
|
|
| 4676 | + if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4677 | + if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4678 | + $updated++; |
|
| 4679 | + } else {
|
|
| 4680 | + $invalid++; |
|
| 4681 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4682 | + } |
|
| 4683 | + } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4684 | + $data['location_id'] = (int)$location->location_id; |
|
| 4685 | 4685 | |
| 4686 | - if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 4687 | - $data['location_id'] = (int)$location->location_id; |
|
| 4688 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 4689 | - $data['location_id'] = (int)$location->location_id; |
|
| 4690 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 4691 | - $data['location_id'] = (int)$location->location_id; |
|
| 4692 | - } |
|
| 4686 | + if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 4687 | + $data['location_id'] = (int)$location->location_id; |
|
| 4688 | + } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 4689 | + $data['location_id'] = (int)$location->location_id; |
|
| 4690 | + } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 4691 | + $data['location_id'] = (int)$location->location_id; |
|
| 4692 | + } |
|
| 4693 | 4693 | |
| 4694 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4695 | - $updated++; |
|
| 4696 | - } else {
|
|
| 4697 | - $invalid++; |
|
| 4698 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4699 | - } |
|
| 4700 | - } else {
|
|
| 4701 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4702 | - $created++; |
|
| 4703 | - } else {
|
|
| 4704 | - $invalid++; |
|
| 4705 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4706 | - } |
|
| 4707 | - } |
|
| 4708 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4709 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4710 | - $skipped++; |
|
| 4711 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4712 | - $skipped++; |
|
| 4713 | - } else {
|
|
| 4714 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4715 | - $created++; |
|
| 4716 | - } else {
|
|
| 4717 | - $invalid++; |
|
| 4718 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4719 | - } |
|
| 4720 | - } |
|
| 4721 | - } else {
|
|
| 4722 | - $invalid++; |
|
| 4723 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4724 | - } |
|
| 4725 | - } |
|
| 4726 | - } |
|
| 4727 | - } |
|
| 4694 | + if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4695 | + $updated++; |
|
| 4696 | + } else {
|
|
| 4697 | + $invalid++; |
|
| 4698 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4699 | + } |
|
| 4700 | + } else {
|
|
| 4701 | + if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4702 | + $created++; |
|
| 4703 | + } else {
|
|
| 4704 | + $invalid++; |
|
| 4705 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4706 | + } |
|
| 4707 | + } |
|
| 4708 | + } elseif ( $import_choice == 'skip' ) {
|
|
| 4709 | + if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4710 | + $skipped++; |
|
| 4711 | + } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4712 | + $skipped++; |
|
| 4713 | + } else {
|
|
| 4714 | + if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4715 | + $created++; |
|
| 4716 | + } else {
|
|
| 4717 | + $invalid++; |
|
| 4718 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4719 | + } |
|
| 4720 | + } |
|
| 4721 | + } else {
|
|
| 4722 | + $invalid++; |
|
| 4723 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4724 | + } |
|
| 4725 | + } |
|
| 4726 | + } |
|
| 4727 | + } |
|
| 4728 | 4728 | |
| 4729 | - $json = array(); |
|
| 4730 | - $json['processed'] = $limit; |
|
| 4731 | - $json['created'] = $created; |
|
| 4732 | - $json['updated'] = $updated; |
|
| 4733 | - $json['skipped'] = $skipped; |
|
| 4734 | - $json['invalid'] = $invalid; |
|
| 4735 | - $json['images'] = $images; |
|
| 4729 | + $json = array(); |
|
| 4730 | + $json['processed'] = $limit; |
|
| 4731 | + $json['created'] = $created; |
|
| 4732 | + $json['updated'] = $updated; |
|
| 4733 | + $json['skipped'] = $skipped; |
|
| 4734 | + $json['invalid'] = $invalid; |
|
| 4735 | + $json['images'] = $images; |
|
| 4736 | 4736 | |
| 4737 | - wp_send_json( $json ); |
|
| 4738 | - } else if ( $task == 'import_hood' ) {
|
|
| 4739 | - if (!empty($file)) {
|
|
| 4740 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4737 | + wp_send_json( $json ); |
|
| 4738 | + } else if ( $task == 'import_hood' ) {
|
|
| 4739 | + if (!empty($file)) {
|
|
| 4740 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4741 | 4741 | |
| 4742 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4743 | - $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4744 | - wp_send_json( $json ); |
|
| 4745 | - } |
|
| 4742 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4743 | + $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4744 | + wp_send_json( $json ); |
|
| 4745 | + } |
|
| 4746 | 4746 | |
| 4747 | - $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
|
| 4748 | - $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 4749 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4750 | - $index = $processed + $i; |
|
| 4747 | + $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
|
| 4748 | + $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 4749 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4750 | + $index = $processed + $i; |
|
| 4751 | 4751 | |
| 4752 | - if (isset($file[$index])) {
|
|
| 4753 | - $row = $file[$index]; |
|
| 4754 | - $row = array_map( 'trim', $row ); |
|
| 4755 | - $data = array(); |
|
| 4752 | + if (isset($file[$index])) {
|
|
| 4753 | + $row = $file[$index]; |
|
| 4754 | + $row = array_map( 'trim', $row ); |
|
| 4755 | + $data = array(); |
|
| 4756 | 4756 | |
| 4757 | - foreach ($columns as $c => $column) {
|
|
| 4758 | - if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
|
|
| 4759 | - $data[$column] = sanitize_text_field($row[$c]); |
|
| 4760 | - } |
|
| 4761 | - } |
|
| 4757 | + foreach ($columns as $c => $column) {
|
|
| 4758 | + if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
|
|
| 4759 | + $data[$column] = sanitize_text_field($row[$c]); |
|
| 4760 | + } |
|
| 4761 | + } |
|
| 4762 | 4762 | |
| 4763 | - if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4764 | - $invalid++; |
|
| 4765 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4766 | - continue; |
|
| 4767 | - } |
|
| 4763 | + if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4764 | + $invalid++; |
|
| 4765 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4766 | + continue; |
|
| 4767 | + } |
|
| 4768 | 4768 | |
| 4769 | - $location_info = array(); |
|
| 4770 | - if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 4771 | - $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 4772 | - } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
|
| 4773 | - $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
|
| 4774 | - } |
|
| 4769 | + $location_info = array(); |
|
| 4770 | + if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 4771 | + $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 4772 | + } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
|
| 4773 | + $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
|
| 4774 | + } |
|
| 4775 | 4775 | |
| 4776 | - if (empty($location_info)) {
|
|
| 4777 | - $invalid++; |
|
| 4778 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4779 | - continue; |
|
| 4780 | - } |
|
| 4776 | + if (empty($location_info)) {
|
|
| 4777 | + $invalid++; |
|
| 4778 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4779 | + continue; |
|
| 4780 | + } |
|
| 4781 | 4781 | |
| 4782 | - $location_id = $location_info->location_id; |
|
| 4782 | + $location_id = $location_info->location_id; |
|
| 4783 | 4783 | |
| 4784 | - $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0; |
|
| 4784 | + $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0; |
|
| 4785 | 4785 | |
| 4786 | - $hood_data = array(); |
|
| 4787 | - $hood_data['hood_name'] = $data['neighbourhood_name']; |
|
| 4788 | - $hood_data['hood_slug'] = $data['neighbourhood_slug']; |
|
| 4789 | - $hood_data['hood_latitude'] = $data['latitude']; |
|
| 4790 | - $hood_data['hood_longitude'] = $data['longitude']; |
|
| 4791 | - $hood_data['hood_location_id'] = $location_id; |
|
| 4786 | + $hood_data = array(); |
|
| 4787 | + $hood_data['hood_name'] = $data['neighbourhood_name']; |
|
| 4788 | + $hood_data['hood_slug'] = $data['neighbourhood_slug']; |
|
| 4789 | + $hood_data['hood_latitude'] = $data['latitude']; |
|
| 4790 | + $hood_data['hood_longitude'] = $data['longitude']; |
|
| 4791 | + $hood_data['hood_location_id'] = $location_id; |
|
| 4792 | 4792 | |
| 4793 | - if ( $import_choice == 'update' ) {
|
|
| 4794 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4795 | - $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 4793 | + if ( $import_choice == 'update' ) {
|
|
| 4794 | + if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4795 | + $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 4796 | 4796 | |
| 4797 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4798 | - $updated++; |
|
| 4799 | - } else {
|
|
| 4800 | - $invalid++; |
|
| 4801 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4802 | - } |
|
| 4803 | - } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4804 | - $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 4797 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4798 | + $updated++; |
|
| 4799 | + } else {
|
|
| 4800 | + $invalid++; |
|
| 4801 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4802 | + } |
|
| 4803 | + } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4804 | + $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 4805 | 4805 | |
| 4806 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4807 | - $updated++; |
|
| 4808 | - } else {
|
|
| 4809 | - $invalid++; |
|
| 4810 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4811 | - } |
|
| 4812 | - } else {
|
|
| 4813 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4814 | - $created++; |
|
| 4815 | - } else {
|
|
| 4816 | - $invalid++; |
|
| 4817 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4818 | - } |
|
| 4819 | - } |
|
| 4820 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4821 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4822 | - $skipped++; |
|
| 4823 | - } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4824 | - $skipped++; |
|
| 4825 | - } else {
|
|
| 4806 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4807 | + $updated++; |
|
| 4808 | + } else {
|
|
| 4809 | + $invalid++; |
|
| 4810 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4811 | + } |
|
| 4812 | + } else {
|
|
| 4813 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4814 | + $created++; |
|
| 4815 | + } else {
|
|
| 4816 | + $invalid++; |
|
| 4817 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4818 | + } |
|
| 4819 | + } |
|
| 4820 | + } elseif ( $import_choice == 'skip' ) {
|
|
| 4821 | + if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4822 | + $skipped++; |
|
| 4823 | + } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4824 | + $skipped++; |
|
| 4825 | + } else {
|
|
| 4826 | 4826 | |
| 4827 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4828 | - $created++; |
|
| 4829 | - } else {
|
|
| 4830 | - $invalid++; |
|
| 4831 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4832 | - } |
|
| 4833 | - } |
|
| 4834 | - } else {
|
|
| 4835 | - $invalid++; |
|
| 4836 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4837 | - } |
|
| 4838 | - } |
|
| 4839 | - } |
|
| 4840 | - } |
|
| 4827 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4828 | + $created++; |
|
| 4829 | + } else {
|
|
| 4830 | + $invalid++; |
|
| 4831 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4832 | + } |
|
| 4833 | + } |
|
| 4834 | + } else {
|
|
| 4835 | + $invalid++; |
|
| 4836 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4837 | + } |
|
| 4838 | + } |
|
| 4839 | + } |
|
| 4840 | + } |
|
| 4841 | 4841 | |
| 4842 | - $json = array(); |
|
| 4843 | - $json['processed'] = $limit; |
|
| 4844 | - $json['created'] = $created; |
|
| 4845 | - $json['updated'] = $updated; |
|
| 4846 | - $json['skipped'] = $skipped; |
|
| 4847 | - $json['invalid'] = $invalid; |
|
| 4848 | - $json['images'] = $images; |
|
| 4842 | + $json = array(); |
|
| 4843 | + $json['processed'] = $limit; |
|
| 4844 | + $json['created'] = $created; |
|
| 4845 | + $json['updated'] = $updated; |
|
| 4846 | + $json['skipped'] = $skipped; |
|
| 4847 | + $json['invalid'] = $invalid; |
|
| 4848 | + $json['images'] = $images; |
|
| 4849 | 4849 | |
| 4850 | - wp_send_json( $json ); |
|
| 4851 | - } |
|
| 4852 | - } |
|
| 4853 | - break; |
|
| 4854 | - case 'import_finish':{
|
|
| 4855 | - /** |
|
| 4856 | - * Run an action when an import finishes. |
|
| 4857 | - * |
|
| 4858 | - * This action can be used to fire functions after an import ends. |
|
| 4859 | - * |
|
| 4860 | - * @since 1.5.3 |
|
| 4861 | - * @package GeoDirectory |
|
| 4862 | - */ |
|
| 4863 | - do_action('geodir_import_finished');
|
|
| 4864 | - } |
|
| 4865 | - break; |
|
| 4850 | + wp_send_json( $json ); |
|
| 4851 | + } |
|
| 4852 | + } |
|
| 4853 | + break; |
|
| 4854 | + case 'import_finish':{
|
|
| 4855 | + /** |
|
| 4856 | + * Run an action when an import finishes. |
|
| 4857 | + * |
|
| 4858 | + * This action can be used to fire functions after an import ends. |
|
| 4859 | + * |
|
| 4860 | + * @since 1.5.3 |
|
| 4861 | + * @package GeoDirectory |
|
| 4862 | + */ |
|
| 4863 | + do_action('geodir_import_finished');
|
|
| 4864 | + } |
|
| 4865 | + break; |
|
| 4866 | 4866 | |
| 4867 | - } |
|
| 4868 | - echo '0'; |
|
| 4869 | - gd_die(); |
|
| 4867 | + } |
|
| 4868 | + echo '0'; |
|
| 4869 | + gd_die(); |
|
| 4870 | 4870 | } |
| 4871 | 4871 | |
| 4872 | 4872 | /** |
@@ -4910,12 +4910,12 @@ discard block |
||
| 4910 | 4910 | $args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args ); |
| 4911 | 4911 | } |
| 4912 | 4912 | |
| 4913 | - if( !empty( $term ) ) {
|
|
| 4913 | + if( !empty( $term ) ) {
|
|
| 4914 | 4914 | $result = wp_insert_term( $term, $taxonomy, $args ); |
| 4915 | - if( !is_wp_error( $result ) ) {
|
|
| 4916 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4917 | - } |
|
| 4918 | - } |
|
| 4915 | + if( !is_wp_error( $result ) ) {
|
|
| 4916 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4917 | + } |
|
| 4918 | + } |
|
| 4919 | 4919 | |
| 4920 | 4920 | return false; |
| 4921 | 4921 | } |
@@ -4961,16 +4961,16 @@ discard block |
||
| 4961 | 4961 | $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
| 4962 | 4962 | |
| 4963 | 4963 | if( !is_wp_error( $result ) ) {
|
| 4964 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4965 | - } |
|
| 4964 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4965 | + } |
|
| 4966 | 4966 | } else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
| 4967 | 4967 | $term_data['term_id'] = $term_info['term_id']; |
| 4968 | 4968 | |
| 4969 | 4969 | $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
| 4970 | 4970 | |
| 4971 | 4971 | if( !is_wp_error( $result ) ) {
|
| 4972 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4973 | - } |
|
| 4972 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4973 | + } |
|
| 4974 | 4974 | } else {
|
| 4975 | 4975 | return geodir_imex_insert_term( $taxonomy, $term_data ); |
| 4976 | 4976 | } |
@@ -4992,47 +4992,47 @@ discard block |
||
| 4992 | 4992 | * @return int Posts count. |
| 4993 | 4993 | */ |
| 4994 | 4994 | function geodir_get_posts_count( $post_type ) {
|
| 4995 | - global $wpdb, $plugin_prefix; |
|
| 4995 | + global $wpdb, $plugin_prefix; |
|
| 4996 | 4996 | |
| 4997 | - if ( !post_type_exists( $post_type ) ) {
|
|
| 4998 | - return 0; |
|
| 4999 | - } |
|
| 4997 | + if ( !post_type_exists( $post_type ) ) {
|
|
| 4998 | + return 0; |
|
| 4999 | + } |
|
| 5000 | 5000 | |
| 5001 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5001 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5002 | 5002 | |
| 5003 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5004 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5005 | - $where_statuses = ''; |
|
| 5006 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5007 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5008 | - } |
|
| 5003 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5004 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5005 | + $where_statuses = ''; |
|
| 5006 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5007 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5008 | + } |
|
| 5009 | 5009 | |
| 5010 | - /** |
|
| 5011 | - * Filter the SQL where clause part to filter posts count in import/export. |
|
| 5012 | - * |
|
| 5013 | - * @since 1.6.4 |
|
| 5014 | - * @package GeoDirectory |
|
| 5015 | - * |
|
| 5016 | - * @param string $where SQL where clause part. |
|
| 5017 | - */ |
|
| 5018 | - $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5019 | - |
|
| 5020 | - $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5021 | - |
|
| 5022 | - $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5010 | + /** |
|
| 5011 | + * Filter the SQL where clause part to filter posts count in import/export. |
|
| 5012 | + * |
|
| 5013 | + * @since 1.6.4 |
|
| 5014 | + * @package GeoDirectory |
|
| 5015 | + * |
|
| 5016 | + * @param string $where SQL where clause part. |
|
| 5017 | + */ |
|
| 5018 | + $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5019 | + |
|
| 5020 | + $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5021 | + |
|
| 5022 | + $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5023 | 5023 | |
| 5024 | - /** |
|
| 5025 | - * Modify returned post counts for the current post type. |
|
| 5026 | - * |
|
| 5027 | - * @since 1.4.6 |
|
| 5028 | - * @package GeoDirectory |
|
| 5029 | - * |
|
| 5030 | - * @param int $posts_count Post counts. |
|
| 5031 | - * @param string $post_type Post type. |
|
| 5032 | - */ |
|
| 5033 | - $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5034 | - |
|
| 5035 | - return $posts_count; |
|
| 5024 | + /** |
|
| 5025 | + * Modify returned post counts for the current post type. |
|
| 5026 | + * |
|
| 5027 | + * @since 1.4.6 |
|
| 5028 | + * @package GeoDirectory |
|
| 5029 | + * |
|
| 5030 | + * @param int $posts_count Post counts. |
|
| 5031 | + * @param string $post_type Post type. |
|
| 5032 | + */ |
|
| 5033 | + $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5034 | + |
|
| 5035 | + return $posts_count; |
|
| 5036 | 5036 | } |
| 5037 | 5037 | |
| 5038 | 5038 | /** |
@@ -5061,10 +5061,10 @@ discard block |
||
| 5061 | 5061 | |
| 5062 | 5062 | if ( !empty( $posts ) ) {
|
| 5063 | 5063 | $is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' ); |
| 5064 | - $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 5065 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5066 | - $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
|
| 5067 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5064 | + $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 5065 | + $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5066 | + $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
|
| 5067 | + $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5068 | 5068 | |
| 5069 | 5069 | $csv_row = array(); |
| 5070 | 5070 | $csv_row[] = 'post_id'; |
@@ -5096,7 +5096,7 @@ discard block |
||
| 5096 | 5096 | } |
| 5097 | 5097 | $csv_row[] = 'post_status'; |
| 5098 | 5098 | $csv_row[] = 'is_featured'; |
| 5099 | - // Export claim listing field |
|
| 5099 | + // Export claim listing field |
|
| 5100 | 5100 | if ($is_claim_active) {
|
| 5101 | 5101 | $csv_row[] = 'claimed'; |
| 5102 | 5102 | } |
@@ -5105,7 +5105,7 @@ discard block |
||
| 5105 | 5105 | $csv_row[] = 'alive_days'; |
| 5106 | 5106 | $csv_row[] = 'expire_date'; |
| 5107 | 5107 | } |
| 5108 | - $csv_row[] = 'post_date'; |
|
| 5108 | + $csv_row[] = 'post_date'; |
|
| 5109 | 5109 | $csv_row[] = 'post_address'; |
| 5110 | 5110 | $csv_row[] = 'post_city'; |
| 5111 | 5111 | $csv_row[] = 'post_region'; |
@@ -5113,11 +5113,11 @@ discard block |
||
| 5113 | 5113 | $csv_row[] = 'post_zip'; |
| 5114 | 5114 | $csv_row[] = 'post_latitude'; |
| 5115 | 5115 | $csv_row[] = 'post_longitude'; |
| 5116 | - if ($neighbourhood_active) {
|
|
| 5117 | - $csv_row[] = 'post_neighbourhood'; |
|
| 5118 | - $csv_row[] = 'neighbourhood_latitude'; |
|
| 5119 | - $csv_row[] = 'neighbourhood_longitude'; |
|
| 5120 | - } |
|
| 5116 | + if ($neighbourhood_active) {
|
|
| 5117 | + $csv_row[] = 'post_neighbourhood'; |
|
| 5118 | + $csv_row[] = 'neighbourhood_latitude'; |
|
| 5119 | + $csv_row[] = 'neighbourhood_longitude'; |
|
| 5120 | + } |
|
| 5121 | 5121 | $csv_row[] = 'geodir_timing'; |
| 5122 | 5122 | $csv_row[] = 'geodir_contact'; |
| 5123 | 5123 | $csv_row[] = 'geodir_email'; |
@@ -5149,21 +5149,21 @@ discard block |
||
| 5149 | 5149 | $csv_row[] = 'franchise'; |
| 5150 | 5150 | } |
| 5151 | 5151 | |
| 5152 | - /** |
|
| 5153 | - * Filter columns field names of gd export listings csv. |
|
| 5154 | - * |
|
| 5155 | - * @since 1.6.5 |
|
| 5156 | - * @package GeoDirectory |
|
| 5157 | - * |
|
| 5158 | - * @param array $csv_row Column names being exported in csv. |
|
| 5159 | - * @param string $post_type The post type. |
|
| 5160 | - */ |
|
| 5161 | - $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
|
|
| 5152 | + /** |
|
| 5153 | + * Filter columns field names of gd export listings csv. |
|
| 5154 | + * |
|
| 5155 | + * @since 1.6.5 |
|
| 5156 | + * @package GeoDirectory |
|
| 5157 | + * |
|
| 5158 | + * @param array $csv_row Column names being exported in csv. |
|
| 5159 | + * @param string $post_type The post type. |
|
| 5160 | + */ |
|
| 5161 | + $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
|
|
| 5162 | 5162 | |
| 5163 | 5163 | $csv_rows[] = $csv_row; |
| 5164 | 5164 | |
| 5165 | 5165 | $images_count = 5; |
| 5166 | - $xx=0; |
|
| 5166 | + $xx=0; |
|
| 5167 | 5167 | foreach ( $posts as $post ) {$xx++;
|
| 5168 | 5168 | $post_id = $post['ID']; |
| 5169 | 5169 | |
@@ -5294,15 +5294,15 @@ discard block |
||
| 5294 | 5294 | } |
| 5295 | 5295 | $csv_row[] = $post_info['post_status']; // post_status |
| 5296 | 5296 | $csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
| 5297 | - if ($is_claim_active) {
|
|
| 5298 | - $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5299 | - } |
|
| 5297 | + if ($is_claim_active) {
|
|
| 5298 | + $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5299 | + } |
|
| 5300 | 5300 | if ($is_payment_plugin) {
|
| 5301 | 5301 | $csv_row[] = (int)$post_info['package_id']; // package_id |
| 5302 | 5302 | $csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days |
| 5303 | 5303 | $csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
|
| 5304 | 5304 | } |
| 5305 | - $csv_row[] = $post_info['post_date']; // post_date |
|
| 5305 | + $csv_row[] = $post_info['post_date']; // post_date |
|
| 5306 | 5306 | $csv_row[] = stripslashes($post_info['post_address']); // post_address |
| 5307 | 5307 | $csv_row[] = stripslashes($post_info['post_city']); // post_city |
| 5308 | 5308 | $csv_row[] = stripslashes($post_info['post_region']); // post_region |
@@ -5310,21 +5310,21 @@ discard block |
||
| 5310 | 5310 | $csv_row[] = stripslashes($post_info['post_zip']); // post_zip |
| 5311 | 5311 | $csv_row[] = $post_info['post_latitude']; // post_latitude |
| 5312 | 5312 | $csv_row[] = $post_info['post_longitude']; // post_longitude |
| 5313 | - if ($neighbourhood_active) {
|
|
| 5314 | - $post_neighbourhood = ''; |
|
| 5315 | - $neighbourhood_latitude = ''; |
|
| 5316 | - $neighbourhood_longitude = ''; |
|
| 5317 | - if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
|
|
| 5318 | - if (!empty($hood_info)) {
|
|
| 5319 | - $post_neighbourhood = $hood_info->hood_name; |
|
| 5320 | - $neighbourhood_latitude = $hood_info->hood_latitude; |
|
| 5321 | - $neighbourhood_longitude = $hood_info->hood_longitude; |
|
| 5322 | - } |
|
| 5323 | - } |
|
| 5324 | - $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood |
|
| 5325 | - $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude |
|
| 5326 | - $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude |
|
| 5327 | - } |
|
| 5313 | + if ($neighbourhood_active) {
|
|
| 5314 | + $post_neighbourhood = ''; |
|
| 5315 | + $neighbourhood_latitude = ''; |
|
| 5316 | + $neighbourhood_longitude = ''; |
|
| 5317 | + if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
|
|
| 5318 | + if (!empty($hood_info)) {
|
|
| 5319 | + $post_neighbourhood = $hood_info->hood_name; |
|
| 5320 | + $neighbourhood_latitude = $hood_info->hood_latitude; |
|
| 5321 | + $neighbourhood_longitude = $hood_info->hood_longitude; |
|
| 5322 | + } |
|
| 5323 | + } |
|
| 5324 | + $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood |
|
| 5325 | + $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude |
|
| 5326 | + $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude |
|
| 5327 | + } |
|
| 5328 | 5328 | $csv_row[] = stripslashes($post_info['geodir_timing']); // geodir_timing |
| 5329 | 5329 | $csv_row[] = stripslashes($post_info['geodir_contact']); // geodir_contact |
| 5330 | 5330 | $csv_row[] = stripslashes($post_info['geodir_email']); // geodir_email |
@@ -5364,16 +5364,16 @@ discard block |
||
| 5364 | 5364 | $csv_row[] = (int)$franchise; // franchise id |
| 5365 | 5365 | } |
| 5366 | 5366 | |
| 5367 | - /** |
|
| 5368 | - * Filter columns values of gd export listings csv file |
|
| 5369 | - * |
|
| 5370 | - * @since 1.6.5 |
|
| 5371 | - * @package GeoDirectory |
|
| 5372 | - * |
|
| 5373 | - * @param array $csv_row Field values being exported in csv. |
|
| 5374 | - * @param array $post_info The post info. |
|
| 5375 | - */ |
|
| 5376 | - $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
|
| 5367 | + /** |
|
| 5368 | + * Filter columns values of gd export listings csv file |
|
| 5369 | + * |
|
| 5370 | + * @since 1.6.5 |
|
| 5371 | + * @package GeoDirectory |
|
| 5372 | + * |
|
| 5373 | + * @param array $csv_row Field values being exported in csv. |
|
| 5374 | + * @param array $post_info The post info. |
|
| 5375 | + */ |
|
| 5376 | + $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
|
| 5377 | 5377 | |
| 5378 | 5378 | for ( $c = 0; $c < $images_count; $c++ ) {
|
| 5379 | 5379 | $csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE |
@@ -5406,64 +5406,64 @@ discard block |
||
| 5406 | 5406 | * @return array Array of posts data. |
| 5407 | 5407 | */ |
| 5408 | 5408 | function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
| 5409 | - global $wpdb, $plugin_prefix; |
|
| 5409 | + global $wpdb, $plugin_prefix; |
|
| 5410 | 5410 | |
| 5411 | - if ( ! post_type_exists( $post_type ) ) |
|
| 5412 | - return new stdClass; |
|
| 5411 | + if ( ! post_type_exists( $post_type ) ) |
|
| 5412 | + return new stdClass; |
|
| 5413 | 5413 | |
| 5414 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5414 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5415 | 5415 | |
| 5416 | - $limit = ''; |
|
| 5417 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5418 | - $offset = ( $page_no - 1 ) * $per_page; |
|
| 5416 | + $limit = ''; |
|
| 5417 | + if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5418 | + $offset = ( $page_no - 1 ) * $per_page; |
|
| 5419 | 5419 | |
| 5420 | - if ( $offset > 0 ) {
|
|
| 5421 | - $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5422 | - } else {
|
|
| 5423 | - $limit = " LIMIT " . $per_page; |
|
| 5424 | - } |
|
| 5425 | - } |
|
| 5420 | + if ( $offset > 0 ) {
|
|
| 5421 | + $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5422 | + } else {
|
|
| 5423 | + $limit = " LIMIT " . $per_page; |
|
| 5424 | + } |
|
| 5425 | + } |
|
| 5426 | 5426 | |
| 5427 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5428 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5429 | - $where_statuses = ''; |
|
| 5430 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5431 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5432 | - } |
|
| 5427 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5428 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5429 | + $where_statuses = ''; |
|
| 5430 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5431 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5432 | + } |
|
| 5433 | 5433 | |
| 5434 | - /** |
|
| 5435 | - * Filter the SQL where clause part to filter posts in import/export. |
|
| 5436 | - * |
|
| 5437 | - * @since 1.6.4 |
|
| 5438 | - * @package GeoDirectory |
|
| 5439 | - * |
|
| 5440 | - * @param string $where SQL where clause part. |
|
| 5441 | - */ |
|
| 5442 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5443 | - |
|
| 5444 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5445 | - /** |
|
| 5446 | - * Modify returned posts SQL query for the current post type. |
|
| 5447 | - * |
|
| 5448 | - * @since 1.4.6 |
|
| 5449 | - * @package GeoDirectory |
|
| 5450 | - * |
|
| 5451 | - * @param int $query The SQL query. |
|
| 5452 | - * @param string $post_type Post type. |
|
| 5453 | - */ |
|
| 5454 | - $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5455 | - $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5456 | - |
|
| 5457 | - /** |
|
| 5458 | - * Modify returned post results for the current post type. |
|
| 5459 | - * |
|
| 5460 | - * @since 1.4.6 |
|
| 5461 | - * @package GeoDirectory |
|
| 5462 | - * |
|
| 5463 | - * @param object $results An object containing all post ids. |
|
| 5464 | - * @param string $post_type Post type. |
|
| 5465 | - */ |
|
| 5466 | - return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5434 | + /** |
|
| 5435 | + * Filter the SQL where clause part to filter posts in import/export. |
|
| 5436 | + * |
|
| 5437 | + * @since 1.6.4 |
|
| 5438 | + * @package GeoDirectory |
|
| 5439 | + * |
|
| 5440 | + * @param string $where SQL where clause part. |
|
| 5441 | + */ |
|
| 5442 | + $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5443 | + |
|
| 5444 | + $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5445 | + /** |
|
| 5446 | + * Modify returned posts SQL query for the current post type. |
|
| 5447 | + * |
|
| 5448 | + * @since 1.4.6 |
|
| 5449 | + * @package GeoDirectory |
|
| 5450 | + * |
|
| 5451 | + * @param int $query The SQL query. |
|
| 5452 | + * @param string $post_type Post type. |
|
| 5453 | + */ |
|
| 5454 | + $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5455 | + $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5456 | + |
|
| 5457 | + /** |
|
| 5458 | + * Modify returned post results for the current post type. |
|
| 5459 | + * |
|
| 5460 | + * @since 1.4.6 |
|
| 5461 | + * @package GeoDirectory |
|
| 5462 | + * |
|
| 5463 | + * @param object $results An object containing all post ids. |
|
| 5464 | + * @param string $post_type Post type. |
|
| 5465 | + */ |
|
| 5466 | + return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5467 | 5467 | } |
| 5468 | 5468 | |
| 5469 | 5469 | /** |
@@ -5482,26 +5482,26 @@ discard block |
||
| 5482 | 5482 | * @return string The SQL query. |
| 5483 | 5483 | */ |
| 5484 | 5484 | function geodir_imex_get_events_query( $query, $post_type ) {
|
| 5485 | - if ( $post_type == 'gd_event' ) {
|
|
| 5486 | - global $wpdb, $plugin_prefix; |
|
| 5485 | + if ( $post_type == 'gd_event' ) {
|
|
| 5486 | + global $wpdb, $plugin_prefix; |
|
| 5487 | 5487 | |
| 5488 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5489 | - $schedule_table = EVENT_SCHEDULE; |
|
| 5488 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5489 | + $schedule_table = EVENT_SCHEDULE; |
|
| 5490 | 5490 | |
| 5491 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5492 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5493 | - $where_statuses = ''; |
|
| 5494 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5495 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5496 | - } |
|
| 5491 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5492 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5493 | + $where_statuses = ''; |
|
| 5494 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5495 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5496 | + } |
|
| 5497 | 5497 | |
| 5498 | - /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
|
| 5499 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5498 | + /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
|
| 5499 | + $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5500 | 5500 | |
| 5501 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5502 | - } |
|
| 5501 | + $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5502 | + } |
|
| 5503 | 5503 | |
| 5504 | - return $query; |
|
| 5504 | + return $query; |
|
| 5505 | 5505 | } |
| 5506 | 5506 | |
| 5507 | 5507 | /** |
@@ -5523,36 +5523,36 @@ discard block |
||
| 5523 | 5523 | * @return int Total terms count. |
| 5524 | 5524 | */ |
| 5525 | 5525 | function geodir_get_terms_count( $post_type ) {
|
| 5526 | - $args = array( 'hide_empty' => 0 ); |
|
| 5526 | + $args = array( 'hide_empty' => 0 ); |
|
| 5527 | 5527 | |
| 5528 | - remove_all_filters( 'get_terms' ); |
|
| 5528 | + remove_all_filters( 'get_terms' ); |
|
| 5529 | 5529 | |
| 5530 | - $taxonomy = $post_type . 'category'; |
|
| 5530 | + $taxonomy = $post_type . 'category'; |
|
| 5531 | 5531 | |
| 5532 | - // WPML |
|
| 5533 | - $is_wpml = geodir_is_wpml(); |
|
| 5534 | - $active_lang = 'all'; |
|
| 5535 | - if ( $is_wpml ) {
|
|
| 5536 | - global $sitepress; |
|
| 5537 | - $active_lang = $sitepress->get_current_language(); |
|
| 5532 | + // WPML |
|
| 5533 | + $is_wpml = geodir_is_wpml(); |
|
| 5534 | + $active_lang = 'all'; |
|
| 5535 | + if ( $is_wpml ) {
|
|
| 5536 | + global $sitepress; |
|
| 5537 | + $active_lang = $sitepress->get_current_language(); |
|
| 5538 | 5538 | |
| 5539 | - if ( $active_lang != 'all' ) {
|
|
| 5540 | - $sitepress->switch_lang( 'all', true ); |
|
| 5541 | - } |
|
| 5542 | - } |
|
| 5543 | - // WPML |
|
| 5539 | + if ( $active_lang != 'all' ) {
|
|
| 5540 | + $sitepress->switch_lang( 'all', true ); |
|
| 5541 | + } |
|
| 5542 | + } |
|
| 5543 | + // WPML |
|
| 5544 | 5544 | |
| 5545 | - $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5545 | + $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5546 | 5546 | |
| 5547 | - // WPML |
|
| 5548 | - if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5549 | - global $sitepress; |
|
| 5550 | - $sitepress->switch_lang( $active_lang, true ); |
|
| 5551 | - } |
|
| 5552 | - // WPML |
|
| 5553 | - $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5547 | + // WPML |
|
| 5548 | + if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5549 | + global $sitepress; |
|
| 5550 | + $sitepress->switch_lang( $active_lang, true ); |
|
| 5551 | + } |
|
| 5552 | + // WPML |
|
| 5553 | + $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5554 | 5554 | |
| 5555 | - return $count_terms; |
|
| 5555 | + return $count_terms; |
|
| 5556 | 5556 | } |
| 5557 | 5557 | |
| 5558 | 5558 | /** |
@@ -5591,11 +5591,11 @@ discard block |
||
| 5591 | 5591 | $csv_row[] = 'cat_posttype'; |
| 5592 | 5592 | $csv_row[] = 'cat_parent'; |
| 5593 | 5593 | $csv_row[] = 'cat_schema'; |
| 5594 | - // WPML |
|
| 5594 | + // WPML |
|
| 5595 | 5595 | $is_wpml = geodir_is_wpml(); |
| 5596 | 5596 | if ($is_wpml) {
|
| 5597 | 5597 | $csv_row[] = 'cat_language'; |
| 5598 | - $csv_row[] = 'cat_id_original'; |
|
| 5598 | + $csv_row[] = 'cat_id_original'; |
|
| 5599 | 5599 | } |
| 5600 | 5600 | // WPML |
| 5601 | 5601 | $csv_row[] = 'cat_description'; |
@@ -5625,10 +5625,10 @@ discard block |
||
| 5625 | 5625 | $csv_row[] = $post_type; |
| 5626 | 5626 | $csv_row[] = $cat_parent; |
| 5627 | 5627 | $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type ); |
| 5628 | - // WPML |
|
| 5628 | + // WPML |
|
| 5629 | 5629 | if ($is_wpml) {
|
| 5630 | 5630 | $csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy ); |
| 5631 | - $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5631 | + $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5632 | 5632 | } |
| 5633 | 5633 | // WPML |
| 5634 | 5634 | $csv_row[] = $term->description; |
@@ -6224,43 +6224,43 @@ discard block |
||
| 6224 | 6224 | * @param string $status Post status. |
| 6225 | 6225 | */ |
| 6226 | 6226 | function geodir_create_page($slug, $option, $page_title = '', $page_content = '', $post_parent = 0, $status = 'publish') {
|
| 6227 | - global $wpdb, $current_user; |
|
| 6228 | - |
|
| 6229 | - $option_value = get_option($option); |
|
| 6230 | - |
|
| 6231 | - if ($option_value > 0) : |
|
| 6232 | - if (get_post($option_value)) : |
|
| 6233 | - // Page exists |
|
| 6234 | - return; |
|
| 6235 | - endif; |
|
| 6236 | - endif; |
|
| 6237 | - |
|
| 6238 | - $page_found = $wpdb->get_var( |
|
| 6239 | - $wpdb->prepare( |
|
| 6240 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6241 | - array($slug) |
|
| 6242 | - ) |
|
| 6243 | - ); |
|
| 6244 | - |
|
| 6245 | - if ($page_found) : |
|
| 6246 | - // Page exists |
|
| 6247 | - if (!$option_value) update_option($option, $page_found); |
|
| 6248 | - return; |
|
| 6249 | - endif; |
|
| 6250 | - |
|
| 6251 | - $page_data = array( |
|
| 6252 | - 'post_status' => $status, |
|
| 6253 | - 'post_type' => 'page', |
|
| 6254 | - 'post_author' => $current_user->ID, |
|
| 6255 | - 'post_name' => $slug, |
|
| 6256 | - 'post_title' => $page_title, |
|
| 6257 | - 'post_content' => $page_content, |
|
| 6258 | - 'post_parent' => $post_parent, |
|
| 6259 | - 'comment_status' => 'closed' |
|
| 6260 | - ); |
|
| 6261 | - $page_id = wp_insert_post($page_data); |
|
| 6262 | - |
|
| 6263 | - add_option($option, $page_id); |
|
| 6227 | + global $wpdb, $current_user; |
|
| 6228 | + |
|
| 6229 | + $option_value = get_option($option); |
|
| 6230 | + |
|
| 6231 | + if ($option_value > 0) : |
|
| 6232 | + if (get_post($option_value)) : |
|
| 6233 | + // Page exists |
|
| 6234 | + return; |
|
| 6235 | + endif; |
|
| 6236 | + endif; |
|
| 6237 | + |
|
| 6238 | + $page_found = $wpdb->get_var( |
|
| 6239 | + $wpdb->prepare( |
|
| 6240 | + "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6241 | + array($slug) |
|
| 6242 | + ) |
|
| 6243 | + ); |
|
| 6244 | + |
|
| 6245 | + if ($page_found) : |
|
| 6246 | + // Page exists |
|
| 6247 | + if (!$option_value) update_option($option, $page_found); |
|
| 6248 | + return; |
|
| 6249 | + endif; |
|
| 6250 | + |
|
| 6251 | + $page_data = array( |
|
| 6252 | + 'post_status' => $status, |
|
| 6253 | + 'post_type' => 'page', |
|
| 6254 | + 'post_author' => $current_user->ID, |
|
| 6255 | + 'post_name' => $slug, |
|
| 6256 | + 'post_title' => $page_title, |
|
| 6257 | + 'post_content' => $page_content, |
|
| 6258 | + 'post_parent' => $post_parent, |
|
| 6259 | + 'comment_status' => 'closed' |
|
| 6260 | + ); |
|
| 6261 | + $page_id = wp_insert_post($page_data); |
|
| 6262 | + |
|
| 6263 | + add_option($option, $page_id); |
|
| 6264 | 6264 | |
| 6265 | 6265 | } |
| 6266 | 6266 | |
@@ -6291,9 +6291,9 @@ discard block |
||
| 6291 | 6291 | * @package GeoDirectory |
| 6292 | 6292 | */ |
| 6293 | 6293 | function geodir_admin_upgrade_notice() {
|
| 6294 | - $class = "error"; |
|
| 6295 | - $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6296 | - echo"<div class=\"$class\"> <p>$message</p></div>"; |
|
| 6294 | + $class = "error"; |
|
| 6295 | + $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6296 | + echo"<div class=\"$class\"> <p>$message</p></div>"; |
|
| 6297 | 6297 | } |
| 6298 | 6298 | |
| 6299 | 6299 | /** |
@@ -6306,18 +6306,18 @@ discard block |
||
| 6306 | 6306 | */ |
| 6307 | 6307 | function geodire_admin_upgrade_notice( $plugin_data, $r ) |
| 6308 | 6308 | {
|
| 6309 | - // readme contents |
|
| 6310 | - $args = array( |
|
| 6311 | - 'timeout' => 15, |
|
| 6312 | - 'redirection' => 5 |
|
| 6313 | - ); |
|
| 6314 | - $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
|
| 6315 | - $data = wp_remote_get( $url, $args ); |
|
| 6309 | + // readme contents |
|
| 6310 | + $args = array( |
|
| 6311 | + 'timeout' => 15, |
|
| 6312 | + 'redirection' => 5 |
|
| 6313 | + ); |
|
| 6314 | + $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
|
| 6315 | + $data = wp_remote_get( $url, $args ); |
|
| 6316 | 6316 | |
| 6317 | - if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
|
| 6317 | + if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
|
| 6318 | 6318 | |
| 6319 | - geodir_in_plugin_update_message($data['body']); |
|
| 6320 | - } |
|
| 6319 | + geodir_in_plugin_update_message($data['body']); |
|
| 6320 | + } |
|
| 6321 | 6321 | } |
| 6322 | 6322 | |
| 6323 | 6323 | |
@@ -6325,28 +6325,28 @@ discard block |
||
| 6325 | 6325 | * @param string $content http response body |
| 6326 | 6326 | */ |
| 6327 | 6327 | function geodir_in_plugin_update_message($content) {
|
| 6328 | - // Output Upgrade Notice |
|
| 6329 | - $matches = null; |
|
| 6330 | - $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6331 | - $upgrade_notice = ''; |
|
| 6332 | - if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6333 | - if(empty($matches)){return;}
|
|
| 6334 | - |
|
| 6335 | - $version = trim( $matches[1] ); |
|
| 6336 | - if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6337 | - |
|
| 6338 | - |
|
| 6339 | - $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6340 | - if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6341 | - $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
|
| 6342 | - foreach ( $notices as $index => $line ) {
|
|
| 6343 | - $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6344 | - } |
|
| 6345 | - $upgrade_notice .= '</div> '; |
|
| 6346 | - } |
|
| 6347 | - } |
|
| 6348 | - } |
|
| 6349 | - echo $upgrade_notice; |
|
| 6328 | + // Output Upgrade Notice |
|
| 6329 | + $matches = null; |
|
| 6330 | + $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6331 | + $upgrade_notice = ''; |
|
| 6332 | + if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6333 | + if(empty($matches)){return;}
|
|
| 6334 | + |
|
| 6335 | + $version = trim( $matches[1] ); |
|
| 6336 | + if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6337 | + |
|
| 6338 | + |
|
| 6339 | + $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6340 | + if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6341 | + $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
|
| 6342 | + foreach ( $notices as $index => $line ) {
|
|
| 6343 | + $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6344 | + } |
|
| 6345 | + $upgrade_notice .= '</div> '; |
|
| 6346 | + } |
|
| 6347 | + } |
|
| 6348 | + } |
|
| 6349 | + echo $upgrade_notice; |
|
| 6350 | 6350 | } |
| 6351 | 6351 | |
| 6352 | 6352 | /** |
@@ -6379,19 +6379,19 @@ discard block |
||
| 6379 | 6379 | * @param array Listing statuses to be skipped. |
| 6380 | 6380 | */ |
| 6381 | 6381 | function geodir_imex_export_skip_statuses() {
|
| 6382 | - $statuses = array( 'trash', 'auto-draft' ); |
|
| 6382 | + $statuses = array( 'trash', 'auto-draft' ); |
|
| 6383 | 6383 | |
| 6384 | - /** |
|
| 6385 | - * Filter the statuses to skip during GD export listings. |
|
| 6386 | - * |
|
| 6387 | - * @since 1.6.0 |
|
| 6388 | - * @package GeoDirectory |
|
| 6389 | - * |
|
| 6390 | - * @param array $statuses Listing statuses to be skipped. |
|
| 6391 | - */ |
|
| 6392 | - $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6384 | + /** |
|
| 6385 | + * Filter the statuses to skip during GD export listings. |
|
| 6386 | + * |
|
| 6387 | + * @since 1.6.0 |
|
| 6388 | + * @package GeoDirectory |
|
| 6389 | + * |
|
| 6390 | + * @param array $statuses Listing statuses to be skipped. |
|
| 6391 | + */ |
|
| 6392 | + $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6393 | 6393 | |
| 6394 | - return $statuses; |
|
| 6394 | + return $statuses; |
|
| 6395 | 6395 | } |
| 6396 | 6396 | |
| 6397 | 6397 | /** |
@@ -6403,15 +6403,15 @@ discard block |
||
| 6403 | 6403 | * @since 1.6.3 |
| 6404 | 6404 | */ |
| 6405 | 6405 | function geodir_admin_dequeue_scripts() {
|
| 6406 | - // EDD |
|
| 6407 | - if (wp_script_is('jquery-chosen', 'enqueued')) {
|
|
| 6408 | - wp_dequeue_script('jquery-chosen');
|
|
| 6409 | - } |
|
| 6406 | + // EDD |
|
| 6407 | + if (wp_script_is('jquery-chosen', 'enqueued')) {
|
|
| 6408 | + wp_dequeue_script('jquery-chosen');
|
|
| 6409 | + } |
|
| 6410 | 6410 | |
| 6411 | - // Ultimate Addons for Visual Composer |
|
| 6412 | - if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
|
|
| 6413 | - wp_dequeue_script('ultimate-vc-backend-script');
|
|
| 6414 | - } |
|
| 6411 | + // Ultimate Addons for Visual Composer |
|
| 6412 | + if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
|
|
| 6413 | + wp_dequeue_script('ultimate-vc-backend-script');
|
|
| 6414 | + } |
|
| 6415 | 6415 | } |
| 6416 | 6416 | |
| 6417 | 6417 | /** |
@@ -6427,48 +6427,48 @@ discard block |
||
| 6427 | 6427 | * @return string SQL where clause part. |
| 6428 | 6428 | */ |
| 6429 | 6429 | function geodir_imex_get_filter_where($where = '', $post_type = '') {
|
| 6430 | - global $wpdb; |
|
| 6430 | + global $wpdb; |
|
| 6431 | 6431 | |
| 6432 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6432 | + $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6433 | 6433 | |
| 6434 | - if ( !empty( $filters ) ) {
|
|
| 6435 | - foreach ( $filters as $field => $value ) {
|
|
| 6436 | - switch ($field) {
|
|
| 6437 | - case 'start_date': |
|
| 6438 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6439 | - break; |
|
| 6440 | - case 'end_date': |
|
| 6441 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6442 | - break; |
|
| 6443 | - } |
|
| 6444 | - } |
|
| 6445 | - } |
|
| 6434 | + if ( !empty( $filters ) ) {
|
|
| 6435 | + foreach ( $filters as $field => $value ) {
|
|
| 6436 | + switch ($field) {
|
|
| 6437 | + case 'start_date': |
|
| 6438 | + $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6439 | + break; |
|
| 6440 | + case 'end_date': |
|
| 6441 | + $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6442 | + break; |
|
| 6443 | + } |
|
| 6444 | + } |
|
| 6445 | + } |
|
| 6446 | 6446 | |
| 6447 | - return $where; |
|
| 6447 | + return $where; |
|
| 6448 | 6448 | } |
| 6449 | 6449 | add_filter('geodir_get_posts_count', 'geodir_imex_get_filter_where', 10, 2);
|
| 6450 | 6450 | add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
|
| 6451 | 6451 | |
| 6452 | 6452 | |
| 6453 | 6453 | function geodir_fix_for_primer_theme(){
|
| 6454 | - if(!defined( 'PRIMER_VERSION' )){return;}
|
|
| 6455 | - global $pagenow; |
|
| 6454 | + if(!defined( 'PRIMER_VERSION' )){return;}
|
|
| 6455 | + global $pagenow; |
|
| 6456 | 6456 | |
| 6457 | - if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){
|
|
| 6457 | + if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){
|
|
| 6458 | 6458 | |
| 6459 | - $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
| 6459 | + $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
| 6460 | 6460 | |
| 6461 | - $post_types = geodir_get_posttypes(); |
|
| 6462 | - if ($post_type && in_array($post_type, $post_types) ) {
|
|
| 6463 | - global $primer_customizer_layouts; |
|
| 6464 | - remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
| 6465 | - } |
|
| 6466 | - } |
|
| 6461 | + $post_types = geodir_get_posttypes(); |
|
| 6462 | + if ($post_type && in_array($post_type, $post_types) ) {
|
|
| 6463 | + global $primer_customizer_layouts; |
|
| 6464 | + remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
| 6465 | + } |
|
| 6466 | + } |
|
| 6467 | 6467 | |
| 6468 | 6468 | } |
| 6469 | 6469 | |
| 6470 | 6470 | if(is_admin()){
|
| 6471 | - add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);
|
|
| 6471 | + add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);
|
|
| 6472 | 6472 | } |
| 6473 | 6473 | |
| 6474 | 6474 | |
@@ -6601,94 +6601,94 @@ discard block |
||
| 6601 | 6601 | |
| 6602 | 6602 | function geodir_ga_activation_url() {
|
| 6603 | 6603 | |
| 6604 | - return add_query_arg( array( |
|
| 6605 | - 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
|
|
| 6606 | - 'scope' => GEODIR_GA_SCOPE, |
|
| 6607 | - 'response_type' => 'code', |
|
| 6608 | - 'redirect_uri' => GEODIR_GA_REDIRECT, |
|
| 6609 | - 'client_id' => GEODIR_GA_CLIENTID, |
|
| 6610 | - ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
| 6604 | + return add_query_arg( array( |
|
| 6605 | + 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
|
|
| 6606 | + 'scope' => GEODIR_GA_SCOPE, |
|
| 6607 | + 'response_type' => 'code', |
|
| 6608 | + 'redirect_uri' => GEODIR_GA_REDIRECT, |
|
| 6609 | + 'client_id' => GEODIR_GA_CLIENTID, |
|
| 6610 | + ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
| 6611 | 6611 | |
| 6612 | - return $url; |
|
| 6612 | + return $url; |
|
| 6613 | 6613 | } |
| 6614 | 6614 | |
| 6615 | 6615 | function geodir_gd_accounts(){
|
| 6616 | - $accounts = array(); |
|
| 6617 | - $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
| 6618 | - if($useAuth){
|
|
| 6619 | - try {
|
|
| 6620 | - $accounts = geodir_ga_get_analytics_accounts(); |
|
| 6621 | - } catch (Exception $e) {
|
|
| 6622 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 6623 | - } |
|
| 6616 | + $accounts = array(); |
|
| 6617 | + $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
| 6618 | + if($useAuth){
|
|
| 6619 | + try {
|
|
| 6620 | + $accounts = geodir_ga_get_analytics_accounts(); |
|
| 6621 | + } catch (Exception $e) {
|
|
| 6622 | + geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 6623 | + } |
|
| 6624 | 6624 | |
| 6625 | - if(is_array($accounts)){
|
|
| 6626 | - $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
|
| 6627 | - }elseif(get_option('geodir_ga_account_id')){
|
|
| 6628 | - $accounts = array(); |
|
| 6629 | - $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6630 | - } |
|
| 6631 | - } |
|
| 6632 | - return $accounts; |
|
| 6625 | + if(is_array($accounts)){
|
|
| 6626 | + $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
|
| 6627 | + }elseif(get_option('geodir_ga_account_id')){
|
|
| 6628 | + $accounts = array(); |
|
| 6629 | + $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6630 | + } |
|
| 6631 | + } |
|
| 6632 | + return $accounts; |
|
| 6633 | 6633 | } |
| 6634 | 6634 | |
| 6635 | 6635 | function geodir_ga_get_analytics_accounts() |
| 6636 | 6636 | {
|
| 6637 | - global $gd_ga_errors; |
|
| 6638 | - $accounts = array(); |
|
| 6637 | + global $gd_ga_errors; |
|
| 6638 | + $accounts = array(); |
|
| 6639 | 6639 | |
| 6640 | - if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
|
|
| 6640 | + if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
|
|
| 6641 | 6641 | |
| 6642 | 6642 | |
| 6643 | - if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
|
|
| 6644 | - return get_option('geodir_gd_uids');
|
|
| 6645 | - } |
|
| 6643 | + if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
|
|
| 6644 | + return get_option('geodir_gd_uids');
|
|
| 6645 | + } |
|
| 6646 | 6646 | |
| 6647 | - # Create a new Gdata call |
|
| 6648 | - if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6649 | - $stats = new GDGoogleAnalyticsStats(); |
|
| 6650 | - else |
|
| 6651 | - return false; |
|
| 6647 | + # Create a new Gdata call |
|
| 6648 | + if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6649 | + $stats = new GDGoogleAnalyticsStats(); |
|
| 6650 | + else |
|
| 6651 | + return false; |
|
| 6652 | 6652 | |
| 6653 | - # Check if Google sucessfully logged in |
|
| 6654 | - if ( ! $stats->checkLogin() ) |
|
| 6655 | - return false; |
|
| 6653 | + # Check if Google sucessfully logged in |
|
| 6654 | + if ( ! $stats->checkLogin() ) |
|
| 6655 | + return false; |
|
| 6656 | 6656 | |
| 6657 | - # Get a list of accounts |
|
| 6658 | - try {
|
|
| 6659 | - $accounts = $stats->getAllProfiles(); |
|
| 6660 | - } catch (Exception $e) {
|
|
| 6661 | - $gd_ga_errors[] = $e->getMessage(); |
|
| 6662 | - return false; |
|
| 6663 | - } |
|
| 6657 | + # Get a list of accounts |
|
| 6658 | + try {
|
|
| 6659 | + $accounts = $stats->getAllProfiles(); |
|
| 6660 | + } catch (Exception $e) {
|
|
| 6661 | + $gd_ga_errors[] = $e->getMessage(); |
|
| 6662 | + return false; |
|
| 6663 | + } |
|
| 6664 | 6664 | |
| 6665 | 6665 | |
| 6666 | - natcasesort ($accounts); |
|
| 6666 | + natcasesort ($accounts); |
|
| 6667 | 6667 | |
| 6668 | - # Return the account array if there are accounts |
|
| 6669 | - if ( count($accounts) > 0 ){
|
|
| 6670 | - update_option('geodir_gd_uids',$accounts);
|
|
| 6671 | - return $accounts; |
|
| 6672 | - } |
|
| 6673 | - else |
|
| 6674 | - return false; |
|
| 6668 | + # Return the account array if there are accounts |
|
| 6669 | + if ( count($accounts) > 0 ){
|
|
| 6670 | + update_option('geodir_gd_uids',$accounts);
|
|
| 6671 | + return $accounts; |
|
| 6672 | + } |
|
| 6673 | + else |
|
| 6674 | + return false; |
|
| 6675 | 6675 | } |
| 6676 | 6676 | |
| 6677 | 6677 | add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' ); |
| 6678 | 6678 | function geodir_ga_deauthorize(){
|
| 6679 | 6679 | |
| 6680 | - if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
|
|
| 6680 | + if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
|
|
| 6681 | 6681 | |
| 6682 | - die( 'Security check' ); |
|
| 6682 | + die( 'Security check' ); |
|
| 6683 | 6683 | |
| 6684 | - } else {
|
|
| 6685 | - update_option('geodir_ga_auth_token','');
|
|
| 6686 | - update_option('geodir_ga_auth_code','');
|
|
| 6687 | - update_option('geodir_gd_uids','');
|
|
| 6684 | + } else {
|
|
| 6685 | + update_option('geodir_ga_auth_token','');
|
|
| 6686 | + update_option('geodir_ga_auth_code','');
|
|
| 6687 | + update_option('geodir_gd_uids','');
|
|
| 6688 | 6688 | |
| 6689 | 6689 | |
| 6690 | - echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
|
|
| 6691 | - } |
|
| 6690 | + echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
|
|
| 6691 | + } |
|
| 6692 | 6692 | |
| 6693 | - die(); |
|
| 6693 | + die(); |
|
| 6694 | 6694 | } |
| 6695 | 6695 | \ No newline at end of file |
@@ -28,31 +28,31 @@ discard block |
||
| 28 | 28 | * @package GeoDirectory |
| 29 | 29 | */ |
| 30 | 30 | function geodir_admin_styles() {
|
| 31 | - wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 31 | + wp_register_style('geodirectory-admin-css', geodir_plugin_url().'/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 32 | 32 | wp_enqueue_style('geodirectory-admin-css');
|
| 33 | 33 | |
| 34 | - wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 34 | + wp_register_style('geodirectory-frontend-style', geodir_plugin_url().'/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 35 | 35 | wp_enqueue_style('geodirectory-frontend-style');
|
| 36 | 36 | |
| 37 | - wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 37 | + wp_register_style('geodir-chosen-style', geodir_plugin_url().'/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 38 | 38 | wp_enqueue_style('geodir-chosen-style');
|
| 39 | 39 | |
| 40 | - wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 40 | + wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url().'/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 41 | 41 | wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
| 42 | 42 | |
| 43 | - wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 43 | + wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url().'/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 44 | 44 | wp_enqueue_style('geodirectory-jquery-ui-css');
|
| 45 | 45 | |
| 46 | - wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 46 | + wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url().'/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 47 | 47 | wp_enqueue_style('geodirectory-custom-fields-css');
|
| 48 | 48 | |
| 49 | - wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 49 | + wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url().'/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | 50 | wp_enqueue_style('geodirectory-pluplodar-css');
|
| 51 | 51 | |
| 52 | - wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 52 | + wp_register_style('geodir-rating-style', geodir_plugin_url().'/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | 53 | wp_enqueue_style('geodir-rating-style');
|
| 54 | 54 | |
| 55 | - wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 55 | + wp_register_style('geodir-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | 56 | wp_enqueue_style('geodir-rtl-style');
|
| 57 | 57 | } |
| 58 | 58 | } |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
| 71 | 71 | wp_enqueue_style('font-awesome');
|
| 72 | 72 | |
| 73 | - wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 73 | + wp_register_script('geodirectory-admin', geodir_plugin_url().'/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 74 | 74 | wp_enqueue_script('geodirectory-admin');
|
| 75 | 75 | |
| 76 | 76 | } |
@@ -89,60 +89,60 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | wp_enqueue_script('jquery');
|
| 91 | 91 | |
| 92 | - wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 92 | + wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 93 | 93 | |
| 94 | - wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 94 | + wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 95 | 95 | wp_enqueue_script('chosen');
|
| 96 | 96 | |
| 97 | - wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 97 | + wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 98 | 98 | wp_enqueue_script('geodirectory-choose-ajax');
|
| 99 | 99 | |
| 100 | 100 | if (isset($_REQUEST['listing_type'])) {
|
| 101 | - wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 101 | + wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url().'/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | wp_enqueue_script('geodirectory-custom-fields-script');
|
| 105 | - $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 105 | + $plugin_path = geodir_plugin_url().'/geodirectory-functions/cat-meta-functions'; |
|
| 106 | 106 | |
| 107 | - wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 107 | + wp_enqueue_script('tax-meta-clss', $plugin_path.'/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 108 | 108 | |
| 109 | 109 | if (in_array($geodir_map_name, array('auto', 'google'))) {
|
| 110 | - $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 111 | - $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 110 | + $map_lang = "&language=".geodir_get_map_default_language(); |
|
| 111 | + $map_key = "&key=".geodir_get_map_api_key(); |
|
| 112 | 112 | /** This filter is documented in geodirectory_template_tags.php */ |
| 113 | 113 | $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
| 114 | - wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 114 | + wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
|
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | if ($geodir_map_name == 'osm') {
|
| 118 | 118 | // Leaflet OpenStreetMap |
| 119 | - wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 119 | + wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 120 | 120 | wp_enqueue_style('geodirectory-leaflet-style');
|
| 121 | 121 | |
| 122 | - wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 122 | + wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 123 | 123 | wp_enqueue_script('geodirectory-leaflet-script');
|
| 124 | 124 | |
| 125 | - wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 125 | + wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 126 | 126 | wp_enqueue_script('geodirectory-leaflet-geo-script');
|
| 127 | 127 | } |
| 128 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 128 | + wp_enqueue_script('jquery-ui-autocomplete');
|
|
| 129 | 129 | |
| 130 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 130 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
|
|
| 131 | 131 | wp_enqueue_script('geodirectory-goMap-script');
|
| 132 | 132 | |
| 133 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 133 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 134 | 134 | wp_enqueue_script('geodirectory-goMap-script');
|
| 135 | 135 | |
| 136 | 136 | // font awesome rating script |
| 137 | 137 | if (get_option('geodir_reviewrating_enable_font_awesome')) {
|
| 138 | - wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 138 | + wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 139 | 139 | wp_enqueue_script('geodir-barrating-js');
|
| 140 | 140 | } else { // default rating script
|
| 141 | - wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
|
|
| 141 | + wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
|
|
| 142 | 142 | wp_enqueue_script('geodir-jRating-js');
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 145 | + wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 146 | 146 | wp_enqueue_script('geodir-on-document-load');
|
| 147 | 147 | |
| 148 | 148 | |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | wp_enqueue_script('plupload-all');
|
| 151 | 151 | wp_enqueue_script('jquery-ui-sortable');
|
| 152 | 152 | |
| 153 | - wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 153 | + wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 154 | 154 | wp_enqueue_script('geodirectory-plupload-script');
|
| 155 | 155 | |
| 156 | 156 | // SCRIPT FOR UPLOAD END |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
| 205 | 205 | |
| 206 | 206 | |
| 207 | - wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 207 | + wp_register_script('geodirectory-admin-script', geodir_plugin_url().'/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 208 | 208 | wp_enqueue_script('geodirectory-admin-script');
|
| 209 | 209 | |
| 210 | 210 | wp_enqueue_style('farbtastic');
|
@@ -212,10 +212,10 @@ discard block |
||
| 212 | 212 | |
| 213 | 213 | $screen = get_current_screen(); |
| 214 | 214 | if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
| 215 | - wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 215 | + wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
|
|
| 218 | + $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl').'?geodir_ajax=true')));
|
|
| 219 | 219 | wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
| 220 | 220 | |
| 221 | 221 | } |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | |
| 239 | 239 | if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
| 240 | 240 | |
| 241 | - add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 241 | + add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url().'/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 242 | 242 | |
| 243 | 243 | |
| 244 | 244 | } |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | $geodir_menu_order[] = 'separator-geodirectory'; |
| 273 | 273 | if (!empty($post_types)) {
|
| 274 | 274 | foreach ($post_types as $post_type) {
|
| 275 | - $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 275 | + $geodir_menu_order[] = 'edit.php?post_type='.$post_type; |
|
| 276 | 276 | } |
| 277 | 277 | } |
| 278 | 278 | $geodir_menu_order[] = $item; |
@@ -315,8 +315,8 @@ discard block |
||
| 315 | 315 | {
|
| 316 | 316 | if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
| 317 | 317 | echo '<div id="message" class="updated fade"> |
| 318 | - <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
|
|
| 319 | - <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
|
|
| 318 | + <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory').' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">'.__('Support us by leaving a rating!', 'geodirectory').'</a></p>
|
|
| 319 | + <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory').'</strong></p>
|
|
| 320 | 320 | </div>'; |
| 321 | 321 | |
| 322 | 322 | } |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
| 325 | 325 | switch ($_REQUEST['msg']) {
|
| 326 | 326 | case 'success': |
| 327 | - echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 327 | + echo '<div id="message" class="updated fade"><p><strong>'.__('Your settings have been saved.', 'geodirectory').'</strong></p></div>';
|
|
| 328 | 328 | flush_rewrite_rules(false); |
| 329 | 329 | |
| 330 | 330 | break; |
@@ -332,30 +332,30 @@ discard block |
||
| 332 | 332 | $gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : ''; |
| 333 | 333 | |
| 334 | 334 | if ($gderr == 21) |
| 335 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 335 | + echo '<div id="message" class="error fade"><p><strong>'.__('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory').'</strong></p></div>';
|
|
| 336 | 336 | else |
| 337 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 337 | + echo '<div id="message" class="error fade"><p><strong>'.__('Error: Your settings have not been saved, please try again.', 'geodirectory').'</strong></p></div>';
|
|
| 338 | 338 | break; |
| 339 | 339 | } |
| 340 | 340 | } |
| 341 | 341 | |
| 342 | 342 | $geodir_load_map = get_option('geodir_load_map');
|
| 343 | 343 | $need_map_key = false; |
| 344 | - if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 344 | + if ($geodir_load_map == '' || $geodir_load_map == 'google' || $geodir_load_map == 'auto') {
|
|
| 345 | 345 | $need_map_key = true; |
| 346 | 346 | } |
| 347 | 347 | |
| 348 | 348 | if (!geodir_get_map_api_key() && $need_map_key) {
|
| 349 | - echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 349 | + echo '<div class="error"><p><strong>'.sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings').'\'>', '</a>').'</strong></p></div>';
|
|
| 350 | 350 | } |
| 351 | 351 | |
| 352 | 352 | if (!geodir_is_default_location_set()) {
|
| 353 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 353 | + echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>';
|
|
| 354 | 354 | |
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | if (!function_exists('curl_init')) {
|
| 358 | - echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 358 | + echo '<div class="error"><p><strong>'.__('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory').'</strong></p></div>';
|
|
| 359 | 359 | |
| 360 | 360 | } |
| 361 | 361 | |
@@ -375,18 +375,18 @@ discard block |
||
| 375 | 375 | function geodir_handle_option_form_submit($current_tab) |
| 376 | 376 | {
|
| 377 | 377 | global $geodir_settings; |
| 378 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 378 | + if (file_exists(dirname(__FILE__).'/option-pages/'.$current_tab.'_array.php')) {
|
|
| 379 | 379 | /** |
| 380 | 380 | * Contains settings array for current tab. |
| 381 | 381 | * |
| 382 | 382 | * @since 1.0.0 |
| 383 | 383 | * @package GeoDirectory |
| 384 | 384 | */ |
| 385 | - include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 385 | + include_once('option-pages/'.$current_tab.'_array.php');
|
|
| 386 | 386 | } |
| 387 | 387 | if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
| 388 | 388 | if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
| 389 | - if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | + if (!wp_verify_nonce($_REQUEST['_wpnonce-'.$current_tab], 'geodir-settings-'.$current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 390 | 390 | |
| 391 | 391 | /** |
| 392 | 392 | * Fires before updating geodirectory admin settings. |
@@ -419,13 +419,13 @@ discard block |
||
| 419 | 419 | * @param string $current_tab The current settings tab name. |
| 420 | 420 | * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
| 421 | 421 | */ |
| 422 | - do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 422 | + do_action('geodir_update_options_'.$current_tab, $geodir_settings[$current_tab]);
|
|
| 423 | 423 | |
| 424 | 424 | flush_rewrite_rules(false); |
| 425 | 425 | |
| 426 | 426 | $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
| 427 | 427 | |
| 428 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 428 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$_REQUEST['active_tab'].'&msg=success');
|
|
| 429 | 429 | |
| 430 | 430 | wp_redirect($redirect_url); |
| 431 | 431 | exit(); |
@@ -464,18 +464,18 @@ discard block |
||
| 464 | 464 | |
| 465 | 465 | elseif (isset($value['type']) && $value['type'] == 'image_width') : |
| 466 | 466 | |
| 467 | - if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 468 | - update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 469 | - update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 470 | - if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 471 | - update_option($value['id'] . '_crop', 1); |
|
| 467 | + if (isset($value['id']) && isset($_POST[$value['id'].'_width'])) {
|
|
| 468 | + update_option($value['id'].'_width', $_POST[$value['id'].'_width']); |
|
| 469 | + update_option($value['id'].'_height', $_POST[$value['id'].'_height']); |
|
| 470 | + if (isset($_POST[$value['id'].'_crop'])) : |
|
| 471 | + update_option($value['id'].'_crop', 1); |
|
| 472 | 472 | else : |
| 473 | - update_option($value['id'] . '_crop', 0); |
|
| 473 | + update_option($value['id'].'_crop', 0); |
|
| 474 | 474 | endif; |
| 475 | 475 | } else {
|
| 476 | - update_option($value['id'] . '_width', $value['std']); |
|
| 477 | - update_option($value['id'] . '_height', $value['std']); |
|
| 478 | - update_option($value['id'] . '_crop', 1); |
|
| 476 | + update_option($value['id'].'_width', $value['std']); |
|
| 477 | + update_option($value['id'].'_height', $value['std']); |
|
| 478 | + update_option($value['id'].'_crop', 1); |
|
| 479 | 479 | } |
| 480 | 480 | |
| 481 | 481 | elseif (isset($value['type']) && $value['type'] == 'map') : |
@@ -517,12 +517,12 @@ discard block |
||
| 517 | 517 | elseif (isset($value['type']) && $value['type'] == 'file') : |
| 518 | 518 | |
| 519 | 519 | |
| 520 | - if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 520 | + if (isset($_POST[$value['id'].'_remove']) && $_POST[$value['id'].'_remove']) {// if remove is set then remove the file
|
|
| 521 | 521 | |
| 522 | 522 | if (get_option($value['id'])) {
|
| 523 | 523 | $image_name_arr = explode('/', get_option($value['id']));
|
| 524 | 524 | $noimg_name = end($image_name_arr); |
| 525 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 525 | + $img_path = $uploads['path'].'/'.$noimg_name; |
|
| 526 | 526 | if (file_exists($img_path)) |
| 527 | 527 | unlink($img_path); |
| 528 | 528 | } |
@@ -550,7 +550,7 @@ discard block |
||
| 550 | 550 | if (get_option($value['id'])) {
|
| 551 | 551 | $image_name_arr = explode('/', get_option($value['id']));
|
| 552 | 552 | $noimg_name = end($image_name_arr); |
| 553 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 553 | + $img_path = $uploads['path'].'/'.$noimg_name; |
|
| 554 | 554 | if (file_exists($img_path)) |
| 555 | 555 | unlink($img_path); |
| 556 | 556 | } |
@@ -571,7 +571,7 @@ discard block |
||
| 571 | 571 | // same menu setting per theme. |
| 572 | 572 | if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
| 573 | 573 | $theme = wp_get_theme(); |
| 574 | - update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 574 | + update_option('geodir_theme_location_nav_'.$theme->name, $_POST[$value['id']]);
|
|
| 575 | 575 | } |
| 576 | 576 | |
| 577 | 577 | if (isset($value['id']) && isset($_POST[$value['id']])) {
|
@@ -641,8 +641,8 @@ discard block |
||
| 641 | 641 | |
| 642 | 642 | $listing_slug = $geodir_posttype_info['labels']['singular_name']; |
| 643 | 643 | |
| 644 | - $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 645 | - 'label' => __(ucfirst($listing_slug) . ' Settings', 'geodirectory'), |
|
| 644 | + $tabs[$geodir_post_type.'_fields_settings'] = array( |
|
| 645 | + 'label' => __(ucfirst($listing_slug).' Settings', 'geodirectory'), |
|
| 646 | 646 | 'subtabs' => array( |
| 647 | 647 | array('subtab' => 'custom_fields',
|
| 648 | 648 | 'label' => __('Custom Fields', 'geodirectory'),
|
@@ -675,7 +675,7 @@ discard block |
||
| 675 | 675 | */ |
| 676 | 676 | function geodir_tools_setting_tab($tabs) |
| 677 | 677 | {
|
| 678 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 678 | + wp_enqueue_script('jquery-ui-progressbar');
|
|
| 679 | 679 | $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
| 680 | 680 | return $tabs; |
| 681 | 681 | } |
@@ -709,7 +709,7 @@ discard block |
||
| 709 | 709 | */ |
| 710 | 710 | function geodir_extend_geodirectory_setting_tab($tabs) |
| 711 | 711 | {
|
| 712 | - $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 712 | + $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory').' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 713 | 713 | return $tabs; |
| 714 | 714 | } |
| 715 | 715 | |
@@ -769,8 +769,8 @@ discard block |
||
| 769 | 769 | _e('Unknown', 'geodirectory');
|
| 770 | 770 | } else {
|
| 771 | 771 | /* If there is a city id, append 'city name' to the text string. */ |
| 772 | - $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 773 | - echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 772 | + $add_location_id = $location_id > 0 ? ' ('.$location_id.')' : '';
|
|
| 773 | + echo(__($location->country, 'geodirectory').'-'.$location->region.'-'.$location->city.$add_location_id); |
|
| 774 | 774 | } |
| 775 | 775 | break; |
| 776 | 776 | |
@@ -788,14 +788,14 @@ discard block |
||
| 788 | 788 | $expire_class = 'expire_over'; |
| 789 | 789 | } |
| 790 | 790 | $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
| 791 | - $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 791 | + $date_diff_text = '<br /><span class="'.$expire_class.'">('.$date_diff.' '.$state.')</span>';
|
|
| 792 | 792 | } |
| 793 | 793 | /* If no expire_date is found, output a default message. */ |
| 794 | 794 | if (empty($expire_date)) |
| 795 | 795 | echo __('Unknown', 'geodirectory');
|
| 796 | 796 | /* If there is a expire_date, append 'days left' to the text string. */ |
| 797 | 797 | else |
| 798 | - echo $expire_date . $date_diff_text; |
|
| 798 | + echo $expire_date.$date_diff_text; |
|
| 799 | 799 | break; |
| 800 | 800 | |
| 801 | 801 | /* If displaying the 'categorys' column. */ |
@@ -862,7 +862,7 @@ discard block |
||
| 862 | 862 | function geodir_post_information_save($post_id, $post) {
|
| 863 | 863 | global $wpdb, $current_user; |
| 864 | 864 | |
| 865 | - if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 865 | + if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) {
|
|
| 866 | 866 | return; |
| 867 | 867 | } |
| 868 | 868 | |
@@ -930,7 +930,7 @@ discard block |
||
| 930 | 930 | $tab_id = $value['id']; |
| 931 | 931 | |
| 932 | 932 | if (isset($value['desc']) && $value['desc']) |
| 933 | - $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 933 | + $desc = '<span style=" text-transform:none;">:- '.$value['desc'].'</span>'; |
|
| 934 | 934 | |
| 935 | 935 | if (isset($value['name']) && $value['name']) {
|
| 936 | 936 | if ($first_title === true) {
|
@@ -938,9 +938,9 @@ discard block |
||
| 938 | 938 | } else {
|
| 939 | 939 | echo '</div>'; |
| 940 | 940 | } |
| 941 | - echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 941 | + echo '<dd id="'.trim($tab_id).'" class="geodir_option_tabs" ><a href="javascript:void(0);">'.$value['name'].'</a></dd>'; |
|
| 942 | 942 | |
| 943 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 943 | + echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | /** |
@@ -950,21 +950,21 @@ discard block |
||
| 950 | 950 | * |
| 951 | 951 | * @since 1.0.0 |
| 952 | 952 | */ |
| 953 | - do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 953 | + do_action('geodir_settings_'.sanitize_title($value['id']));
|
|
| 954 | 954 | break; |
| 955 | 955 | |
| 956 | 956 | case 'no_tabs': |
| 957 | 957 | |
| 958 | 958 | echo '<div class="inner_content_tab_main">'; |
| 959 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 959 | + echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 960 | 960 | |
| 961 | 961 | break; |
| 962 | 962 | |
| 963 | 963 | case 'sectionstart': |
| 964 | 964 | if (isset($value['desc']) && $value['desc']) |
| 965 | - $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 965 | + $desc = '<span style=" text-transform:none;"> - '.$value['desc'].'</span>'; |
|
| 966 | 966 | if (isset($value['name']) && $value['name']) |
| 967 | - echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 967 | + echo '<h3>'.$value['name'].$desc.'</h3>'; |
|
| 968 | 968 | /** |
| 969 | 969 | * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
| 970 | 970 | * |
@@ -972,8 +972,8 @@ discard block |
||
| 972 | 972 | * |
| 973 | 973 | * @since 1.0.0 |
| 974 | 974 | */ |
| 975 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 976 | - echo '<table class="form-table">' . "\n\n"; |
|
| 975 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_start');
|
|
| 976 | + echo '<table class="form-table">'."\n\n"; |
|
| 977 | 977 | |
| 978 | 978 | break; |
| 979 | 979 | case 'sectionend': |
@@ -984,7 +984,7 @@ discard block |
||
| 984 | 984 | * |
| 985 | 985 | * @since 1.0.0 |
| 986 | 986 | */ |
| 987 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 987 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_end');
|
|
| 988 | 988 | echo '</table>'; |
| 989 | 989 | /** |
| 990 | 990 | * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
@@ -993,7 +993,7 @@ discard block |
||
| 993 | 993 | * |
| 994 | 994 | * @since 1.0.0 |
| 995 | 995 | */ |
| 996 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 996 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_after');
|
|
| 997 | 997 | break; |
| 998 | 998 | case 'text': |
| 999 | 999 | ?> |
@@ -1002,7 +1002,7 @@ discard block |
||
| 1002 | 1002 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1003 | 1003 | id="<?php echo esc_attr($value['id']); ?>" |
| 1004 | 1004 | type="<?php echo esc_attr($value['type']); ?>" |
| 1005 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1005 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1006 | 1006 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1007 | 1007 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1008 | 1008 | echo esc_attr(stripslashes(get_option($value['id']))); |
@@ -1019,14 +1019,14 @@ discard block |
||
| 1019 | 1019 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1020 | 1020 | id="<?php echo esc_attr($value['id']); ?>" |
| 1021 | 1021 | type="<?php echo esc_attr($value['type']); ?>" |
| 1022 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1022 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1023 | 1023 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1024 | 1024 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1025 | 1025 | echo esc_attr(stripslashes(get_option($value['id']))); |
| 1026 | 1026 | } else {
|
| 1027 | 1027 | echo esc_attr($value['std']); |
| 1028 | 1028 | } ?>"/> |
| 1029 | - <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
|
|
| 1029 | + <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )', 'geodirectory'); ?>" ><?php _e('Generate API Key', 'geodirectory'); ?></a>
|
|
| 1030 | 1030 | <span class="description"><?php echo $value['desc']; ?></span></td> |
| 1031 | 1031 | </tr><?php |
| 1032 | 1032 | break; |
@@ -1038,7 +1038,7 @@ discard block |
||
| 1038 | 1038 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1039 | 1039 | id="<?php echo esc_attr($value['id']); ?>" |
| 1040 | 1040 | type="<?php echo esc_attr($value['type']); ?>" |
| 1041 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1041 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1042 | 1042 | style="<?php echo esc_attr($value['css']); ?>" |
| 1043 | 1043 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1044 | 1044 | echo esc_attr(stripslashes(get_option($value['id']))); |
@@ -1084,17 +1084,17 @@ discard block |
||
| 1084 | 1084 | <?php _e('Width', 'geodirectory'); ?> <input
|
| 1085 | 1085 | name="<?php echo esc_attr($value['id']); ?>_width" |
| 1086 | 1086 | id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3" |
| 1087 | - value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1087 | + value="<?php if ($size = get_option($value['id'].'_width')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1088 | 1088 | |
| 1089 | 1089 | <?php _e('Height', 'geodirectory'); ?> <input
|
| 1090 | 1090 | name="<?php echo esc_attr($value['id']); ?>_height" |
| 1091 | 1091 | id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3" |
| 1092 | - value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1092 | + value="<?php if ($size = get_option($value['id'].'_height')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1093 | 1093 | |
| 1094 | 1094 | <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
|
| 1095 | 1095 | name="<?php echo esc_attr($value['id']); ?>_crop" |
| 1096 | 1096 | id="<?php echo esc_attr($value['id']); ?>_crop" |
| 1097 | - type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label> |
|
| 1097 | + type="checkbox" <?php if (get_option($value['id'].'_crop') != '') checked(get_option($value['id'].'_crop'), 1); else checked(1); ?> /></label> |
|
| 1098 | 1098 | |
| 1099 | 1099 | <span class="description"><?php echo $value['desc'] ?></span></td> |
| 1100 | 1100 | </tr><?php |
@@ -1144,7 +1144,7 @@ discard block |
||
| 1144 | 1144 | id="<?php echo esc_attr($value['id']); ?>" |
| 1145 | 1145 | style="<?php echo esc_attr($value['css']); ?>" |
| 1146 | 1146 | class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
| 1147 | - data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>" |
|
| 1147 | + data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text']; ?>" |
|
| 1148 | 1148 | option-ajaxchosen="false"> |
| 1149 | 1149 | <?php |
| 1150 | 1150 | foreach ($value['options'] as $key => $val) {
|
@@ -1155,7 +1155,7 @@ discard block |
||
| 1155 | 1155 | } else {
|
| 1156 | 1156 | ?> |
| 1157 | 1157 | <option |
| 1158 | - value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option> |
|
| 1158 | + value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values))); ?>><?php echo ucfirst($val) ?></option> |
|
| 1159 | 1159 | <?php |
| 1160 | 1160 | } |
| 1161 | 1161 | } |
@@ -1190,7 +1190,7 @@ discard block |
||
| 1190 | 1190 | ?> |
| 1191 | 1191 | |
| 1192 | 1192 | <tr valign="top"> |
| 1193 | - <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
|
|
| 1193 | + <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory'); ?></th>
|
|
| 1194 | 1194 | <td width="60%"> |
| 1195 | 1195 | <select name="geodir_default_map_language" style="width:60%"> |
| 1196 | 1196 | <?php |
@@ -1272,7 +1272,7 @@ discard block |
||
| 1272 | 1272 | |
| 1273 | 1273 | <tr valign="top"> |
| 1274 | 1274 | <th class="titledesc" |
| 1275 | - width="40%"><?php _e('Default post type search on map', 'geodirectory');?></th>
|
|
| 1275 | + width="40%"><?php _e('Default post type search on map', 'geodirectory'); ?></th>
|
|
| 1276 | 1276 | <td width="60%"> |
| 1277 | 1277 | <select name="geodir_default_map_search_pt" style="width:60%"> |
| 1278 | 1278 | <?php |
@@ -1313,7 +1313,7 @@ discard block |
||
| 1313 | 1313 | $cat_display = 'checkbox'; |
| 1314 | 1314 | $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
| 1315 | 1315 | $gd_cats = get_option('geodir_exclude_cat_on_map');
|
| 1316 | - $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1316 | + $gd_cats_upgrade = (int) get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1317 | 1317 | $count = 1; |
| 1318 | 1318 | ?> |
| 1319 | 1319 | <table width="70%" class="widefat"> |
@@ -1342,7 +1342,7 @@ discard block |
||
| 1342 | 1342 | name="home_map_post_types[]" |
| 1343 | 1343 | id="<?php echo esc_attr($value['id']); ?>" |
| 1344 | 1344 | value="<?php echo $key; ?>" |
| 1345 | - class="map_post_type" <?php echo $checked;?> /> |
|
| 1345 | + class="map_post_type" <?php echo $checked; ?> /> |
|
| 1346 | 1346 | <?php echo $post_types_obj->labels->singular_name; ?></td> |
| 1347 | 1347 | <td width="40%"> |
| 1348 | 1348 | <div class="home_map_category" style="overflow:auto;width:200px;height:100px;" |
@@ -1400,12 +1400,12 @@ discard block |
||
| 1400 | 1400 | ?> |
| 1401 | 1401 | <fieldset> |
| 1402 | 1402 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1403 | - <label for="<?php echo $value['id'];?>"> |
|
| 1403 | + <label for="<?php echo $value['id']; ?>"> |
|
| 1404 | 1404 | <input name="<?php echo esc_attr($value['id']); ?>" |
| 1405 | - id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio" |
|
| 1405 | + id="<?php echo esc_attr($value['id'].$value['value']); ?>" type="radio" |
|
| 1406 | 1406 | value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
|
| 1407 | 1407 | echo 'checked="checked"'; |
| 1408 | - }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1408 | + }elseif (get_option($value['id']) == '' && $value['std'] == $value['value']) {echo 'checked="checked"'; } ?> />
|
|
| 1409 | 1409 | <?php echo $value['desc']; ?></label><br> |
| 1410 | 1410 | </fieldset> |
| 1411 | 1411 | <?php |
@@ -1425,9 +1425,9 @@ discard block |
||
| 1425 | 1425 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1426 | 1426 | <td class="forminp"> |
| 1427 | 1427 | <textarea |
| 1428 | - <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>" |
|
| 1428 | + <?php if (isset($value['args'])) echo $value['args'].' '; ?>name="<?php echo esc_attr($value['id']); ?>" |
|
| 1429 | 1429 | id="<?php echo esc_attr($value['id']); ?>" |
| 1430 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1430 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1431 | 1431 | style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span |
| 1432 | 1432 | class="description"><?php echo $value['desc'] ?></span> |
| 1433 | 1433 | |
@@ -1472,7 +1472,7 @@ discard block |
||
| 1472 | 1472 | } |
| 1473 | 1473 | } |
| 1474 | 1474 | // |
| 1475 | - $page_setting = (int)get_option($value['id']); |
|
| 1475 | + $page_setting = (int) get_option($value['id']); |
|
| 1476 | 1476 | |
| 1477 | 1477 | $args = array('name' => $value['id'],
|
| 1478 | 1478 | 'id' => $value['id'], |
@@ -1489,7 +1489,7 @@ discard block |
||
| 1489 | 1489 | <tr valign="top" class="single_select_page"> |
| 1490 | 1490 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1491 | 1491 | <td class="forminp"> |
| 1492 | - <?php echo str_replace(' id=', " data-placeholder='" . __('Select a page...', 'geodirectory') . "' style='" . $value['css'] . "' class='" . $value['class'] . "' " . $disabled . " id=", wp_dropdown_pages($args)); ?>
|
|
| 1492 | + <?php echo str_replace(' id=', " data-placeholder='".__('Select a page...', 'geodirectory')."' style='".$value['css']."' class='".$value['class']."' ".$disabled." id=", wp_dropdown_pages($args)); ?>
|
|
| 1493 | 1493 | <span class="description"><?php echo $value['desc'] ?></span> |
| 1494 | 1494 | </td> |
| 1495 | 1495 | </tr><?php |
@@ -1498,7 +1498,7 @@ discard block |
||
| 1498 | 1498 | } |
| 1499 | 1499 | break; |
| 1500 | 1500 | case 'single_select_country' : |
| 1501 | - $country_setting = (string)get_option($value['id']); |
|
| 1501 | + $country_setting = (string) get_option($value['id']); |
|
| 1502 | 1502 | if (strstr($country_setting, ':')) : |
| 1503 | 1503 | $country = current(explode(':', $country_setting));
|
| 1504 | 1504 | $state = end(explode(':', $country_setting));
|
@@ -1521,7 +1521,7 @@ discard block |
||
| 1521 | 1521 | case 'multi_select_countries' : |
| 1522 | 1522 | $countries = $geodirectory->countries->countries; |
| 1523 | 1523 | asort($countries); |
| 1524 | - $selections = (array)get_option($value['id']); |
|
| 1524 | + $selections = (array) get_option($value['id']); |
|
| 1525 | 1525 | ?> |
| 1526 | 1526 | <tr valign="top"> |
| 1527 | 1527 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
@@ -1531,7 +1531,7 @@ discard block |
||
| 1531 | 1531 | title="Country" class="chosen_select"> |
| 1532 | 1532 | <?php |
| 1533 | 1533 | if ($countries) foreach ($countries as $key => $val) : |
| 1534 | - echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1534 | + echo '<option value="'.$key.'" '.selected(in_array($key, $selections), true, false).'>'.$val.'</option>'; |
|
| 1535 | 1535 | endforeach; |
| 1536 | 1536 | ?> |
| 1537 | 1537 | </select> |
@@ -1543,7 +1543,7 @@ discard block |
||
| 1543 | 1543 | break; |
| 1544 | 1544 | |
| 1545 | 1545 | case 'google_analytics' : |
| 1546 | - $selections = (array)get_option($value['id']); |
|
| 1546 | + $selections = (array) get_option($value['id']); |
|
| 1547 | 1547 | ?> |
| 1548 | 1548 | <tr valign="top"> |
| 1549 | 1549 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
@@ -1554,30 +1554,30 @@ discard block |
||
| 1554 | 1554 | |
| 1555 | 1555 | $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
| 1556 | 1556 | $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
| 1557 | - $state = "&state=123";//any string |
|
| 1558 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1557 | + $state = "&state=123"; //any string |
|
| 1558 | + $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback";
|
|
| 1559 | 1559 | $response_type = "&response_type=code"; |
| 1560 | 1560 | $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
| 1561 | 1561 | $access_type = "&access_type=offline"; |
| 1562 | 1562 | $approval_prompt = "&approval_prompt=force"; |
| 1563 | 1563 | |
| 1564 | - $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1564 | + $auth_url = $oAuthURL.$scope.$state.$redirect_uri.$response_type.$client_id.$access_type.$approval_prompt; |
|
| 1565 | 1565 | |
| 1566 | 1566 | |
| 1567 | 1567 | if (get_option('geodir_ga_auth_token')) {
|
| 1568 | 1568 | ?> |
| 1569 | 1569 | <span class="button-primary" |
| 1570 | - onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
|
|
| 1570 | + onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize'); ?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
|
|
| 1571 | 1571 | <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
|
| 1572 | 1572 | <?php |
| 1573 | 1573 | global $gd_ga_errors; |
| 1574 | - if(!empty($gd_ga_errors)){
|
|
| 1574 | + if (!empty($gd_ga_errors)) {
|
|
| 1575 | 1575 | print_r($gd_ga_errors); |
| 1576 | 1576 | } |
| 1577 | 1577 | } else {
|
| 1578 | 1578 | ?> |
| 1579 | 1579 | <span class="button-primary" |
| 1580 | - onclick="window.open('<?php echo geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
|
|
| 1580 | + onclick="window.open('<?php echo geodir_ga_activation_url(); ?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory'); ?></span>
|
|
| 1581 | 1581 | <?php |
| 1582 | 1582 | } |
| 1583 | 1583 | ?> |
@@ -1648,9 +1648,9 @@ discard block |
||
| 1648 | 1648 | |
| 1649 | 1649 | <?php if (isset($_REQUEST['active_tab']) && $_REQUEST['active_tab'] != '') { ?>
|
| 1650 | 1650 | jQuery('.geodir_option_tabs').removeClass('gd-tab-active');
|
| 1651 | - jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').addClass('gd-tab-active');
|
|
| 1651 | + jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').addClass('gd-tab-active');
|
|
| 1652 | 1652 | jQuery('.gd-content-heading').hide();
|
| 1653 | - jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').show();
|
|
| 1653 | + jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').show();
|
|
| 1654 | 1654 | <?php } ?> |
| 1655 | 1655 | }); |
| 1656 | 1656 | </script> |
@@ -1736,7 +1736,7 @@ discard block |
||
| 1736 | 1736 | wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
| 1737 | 1737 | |
| 1738 | 1738 | if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
| 1739 | - echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 1739 | + echo '<h4>'.__('Featured Image', 'geodirectory').'</h4>';
|
|
| 1740 | 1740 | geodir_show_featured_image($post_id, 'thumbnail'); |
| 1741 | 1741 | } |
| 1742 | 1742 | |
@@ -1747,13 +1747,13 @@ discard block |
||
| 1747 | 1747 | |
| 1748 | 1748 | <h5 class="form_title"> |
| 1749 | 1749 | <?php if ($image_limit != 0 && $image_limit == 1) {
|
| 1750 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 1750 | + echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
|
|
| 1751 | 1751 | } ?> |
| 1752 | 1752 | <?php if ($image_limit != 0 && $image_limit > 1) {
|
| 1753 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 1753 | + echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
|
|
| 1754 | 1754 | } ?> |
| 1755 | 1755 | <?php if ($image_limit == 0) {
|
| 1756 | - echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 1756 | + echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
|
|
| 1757 | 1757 | } ?> |
| 1758 | 1758 | </h5> |
| 1759 | 1759 | |
@@ -1792,10 +1792,10 @@ discard block |
||
| 1792 | 1792 | <div |
| 1793 | 1793 | class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>" |
| 1794 | 1794 | id="<?php echo $id; ?>plupload-upload-ui"> |
| 1795 | - <h4><?php _e('Drop files to upload', 'geodirectory');?></h4>
|
|
| 1795 | + <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4>
|
|
| 1796 | 1796 | <input id="<?php echo $id; ?>plupload-browse-button" type="button" |
| 1797 | 1797 | value="<?php _e('Select Files', 'geodirectory'); ?>" class="button"/>
|
| 1798 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span> |
|
| 1798 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span> |
|
| 1799 | 1799 | <?php if ($width && $height): ?> |
| 1800 | 1800 | <span class="plupload-resize"></span> |
| 1801 | 1801 | <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span> |
@@ -1807,7 +1807,7 @@ discard block |
||
| 1807 | 1807 | id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;"> |
| 1808 | 1808 | </div> |
| 1809 | 1809 | <span |
| 1810 | - id="upload-msg"><?php _e('Please drag & drop the images to rearrange the order', 'geodirectory');?></span>
|
|
| 1810 | + id="upload-msg"><?php _e('Please drag & drop the images to rearrange the order', 'geodirectory'); ?></span>
|
|
| 1811 | 1811 | <span id="<?php echo $id; ?>upload-error" style="display:none"></span> |
| 1812 | 1812 | </div> |
| 1813 | 1813 | |
@@ -2017,9 +2017,9 @@ discard block |
||
| 2017 | 2017 | $plugin = 'avada-nag'; |
| 2018 | 2018 | $timestamp = 'avada-nag1234'; |
| 2019 | 2019 | $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
| 2020 | - echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2021 | - echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | - echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2020 | + echo '<div id="'.$timestamp.'" class="error">'; |
|
| 2021 | + echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\''.$plugin.'\',\''.$timestamp.'\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | + echo "<img class='gd-icon-noti' src='".plugin_dir_url('')."geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2023 | 2023 | echo "<p>$message</p>"; |
| 2024 | 2024 | echo "</div>"; |
| 2025 | 2025 | |
@@ -2152,7 +2152,7 @@ discard block |
||
| 2152 | 2152 | |
| 2153 | 2153 | // Don't allow same slug url for listing and location |
| 2154 | 2154 | if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
|
| 2155 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
|
|
| 2155 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab.'&msg=fail&gderr=21');
|
|
| 2156 | 2156 | wp_redirect($redirect_url); |
| 2157 | 2157 | exit; |
| 2158 | 2158 | } |
@@ -2164,7 +2164,7 @@ discard block |
||
| 2164 | 2164 | $default_language = $sitepress->get_default_language(); |
| 2165 | 2165 | |
| 2166 | 2166 | if ($current_language != 'all' && $current_language != $default_language) {
|
| 2167 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab);
|
|
| 2167 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab);
|
|
| 2168 | 2168 | wp_redirect($redirect_url); |
| 2169 | 2169 | exit; |
| 2170 | 2170 | } |
@@ -2185,11 +2185,11 @@ discard block |
||
| 2185 | 2185 | function geodir_hide_admin_preview_button() {
|
| 2186 | 2186 | global $post_type; |
| 2187 | 2187 | $post_types = geodir_get_posttypes(); |
| 2188 | - if(in_array($post_type, $post_types)) |
|
| 2188 | + if (in_array($post_type, $post_types)) |
|
| 2189 | 2189 | echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
| 2190 | 2190 | } |
| 2191 | -add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' ); |
|
| 2192 | -add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' ); |
|
| 2191 | +add_action('admin_head-post-new.php', 'geodir_hide_admin_preview_button');
|
|
| 2192 | +add_action('admin_head-post.php', 'geodir_hide_admin_preview_button');
|
|
| 2193 | 2193 | |
| 2194 | 2194 | /** |
| 2195 | 2195 | * Add the tab in left sidebar menu fro import & export page. |
@@ -2199,8 +2199,8 @@ discard block |
||
| 2199 | 2199 | * |
| 2200 | 2200 | * @return array Array of tab data. |
| 2201 | 2201 | */ |
| 2202 | -function geodir_import_export_tab( $tabs ) {
|
|
| 2203 | - $tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) ); |
|
| 2202 | +function geodir_import_export_tab($tabs) {
|
|
| 2203 | + $tabs['import_export'] = array('label' => __('Import & Export', 'geodirectory'));
|
|
| 2204 | 2204 | return $tabs; |
| 2205 | 2205 | } |
| 2206 | 2206 | |
@@ -2214,8 +2214,8 @@ discard block |
||
| 2214 | 2214 | * @return string Html content. |
| 2215 | 2215 | */ |
| 2216 | 2216 | function geodir_import_export_page() {
|
| 2217 | - $nonce = wp_create_nonce( 'geodir_import_export_nonce' ); |
|
| 2218 | - $gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv'; |
|
| 2217 | + $nonce = wp_create_nonce('geodir_import_export_nonce');
|
|
| 2218 | + $gd_cats_sample_csv = geodir_plugin_url().'/geodirectory-assets/gd_sample_categories.csv'; |
|
| 2219 | 2219 | /** |
| 2220 | 2220 | * Filter sample category data csv file url. |
| 2221 | 2221 | * |
@@ -2224,9 +2224,9 @@ discard block |
||
| 2224 | 2224 | * |
| 2225 | 2225 | * @param string $gd_cats_sample_csv Sample category data csv file url. |
| 2226 | 2226 | */ |
| 2227 | - $gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv ); |
|
| 2227 | + $gd_cats_sample_csv = apply_filters('geodir_export_cats_sample_csv', $gd_cats_sample_csv);
|
|
| 2228 | 2228 | |
| 2229 | - $gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv'; |
|
| 2229 | + $gd_posts_sample_csv = geodir_plugin_url().'/geodirectory-assets/place_listing.csv'; |
|
| 2230 | 2230 | /** |
| 2231 | 2231 | * Filter sample post data csv file url. |
| 2232 | 2232 | * |
@@ -2235,15 +2235,15 @@ discard block |
||
| 2235 | 2235 | * |
| 2236 | 2236 | * @param string $gd_posts_sample_csv Sample post data csv file url. |
| 2237 | 2237 | */ |
| 2238 | - $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2238 | + $gd_posts_sample_csv = apply_filters('geodir_export_posts_sample_csv', $gd_posts_sample_csv);
|
|
| 2239 | 2239 | |
| 2240 | - $gd_posttypes = geodir_get_posttypes( 'array' ); |
|
| 2240 | + $gd_posttypes = geodir_get_posttypes('array');
|
|
| 2241 | 2241 | |
| 2242 | 2242 | $gd_posttypes_option = ''; |
| 2243 | - foreach ( $gd_posttypes as $gd_posttype => $row ) {
|
|
| 2244 | - $gd_posttypes_option .= '<option value="' . $gd_posttype . '" data-cats="' . (int)geodir_get_terms_count( $gd_posttype ) . '" data-posts="' . (int)geodir_get_posts_count( $gd_posttype ) . '">' . __( $row['labels']['name'], 'geodirectory' ) . '</option>'; |
|
| 2243 | + foreach ($gd_posttypes as $gd_posttype => $row) {
|
|
| 2244 | + $gd_posttypes_option .= '<option value="'.$gd_posttype.'" data-cats="'.(int) geodir_get_terms_count($gd_posttype).'" data-posts="'.(int) geodir_get_posts_count($gd_posttype).'">'.__($row['labels']['name'], 'geodirectory').'</option>'; |
|
| 2245 | 2245 | } |
| 2246 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 2246 | + wp_enqueue_script('jquery-ui-progressbar');
|
|
| 2247 | 2247 | |
| 2248 | 2248 | $gd_chunksize_options = array(); |
| 2249 | 2249 | $gd_chunksize_options[100] = 100; |
@@ -2265,50 +2265,50 @@ discard block |
||
| 2265 | 2265 | * |
| 2266 | 2266 | * @param string $gd_chunksize_options Entries options. |
| 2267 | 2267 | */ |
| 2268 | - $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2268 | + $gd_chunksize_options = apply_filters('geodir_export_csv_chunksize_options', $gd_chunksize_options);
|
|
| 2269 | 2269 | |
| 2270 | 2270 | $gd_chunksize_option = ''; |
| 2271 | 2271 | foreach ($gd_chunksize_options as $value => $title) {
|
| 2272 | - $gd_chunksize_option .= '<option value="' . $value . '" ' . selected($value, 5000, false) . '>' . $title . '</option>'; |
|
| 2272 | + $gd_chunksize_option .= '<option value="'.$value.'" '.selected($value, 5000, false).'>'.$title.'</option>'; |
|
| 2273 | 2273 | } |
| 2274 | 2274 | |
| 2275 | 2275 | $uploads = wp_upload_dir(); |
| 2276 | - $upload_dir = wp_sprintf( CSV_TRANSFER_IMG_FOLDER, str_replace( ABSPATH, '', $uploads['path'] ) ); |
|
| 2276 | + $upload_dir = wp_sprintf(CSV_TRANSFER_IMG_FOLDER, str_replace(ABSPATH, '', $uploads['path'])); |
|
| 2277 | 2277 | ?> |
| 2278 | 2278 | </form> |
| 2279 | 2279 | <div class="inner_content_tab_main gd-import-export"> |
| 2280 | - <h3><?php _e( 'GD Import & Export CSV', 'geodirectory' ) ;?></h3> |
|
| 2281 | - <span class="description"><?php _e( 'Import & export csv for GD listings & categories.', 'geodirectory' ) ;?></span> |
|
| 2280 | + <h3><?php _e('GD Import & Export CSV', 'geodirectory'); ?></h3>
|
|
| 2281 | + <span class="description"><?php _e('Import & export csv for GD listings & categories.', 'geodirectory'); ?></span>
|
|
| 2282 | 2282 | <div class="gd-content-heading"> |
| 2283 | 2283 | |
| 2284 | 2284 | <?php |
| 2285 | 2285 | ini_set('max_execution_time', 999999);
|
| 2286 | - $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2286 | + $ini_max_execution_time_check = @ini_get('max_execution_time');
|
|
| 2287 | 2287 | ini_restore('max_execution_time');
|
| 2288 | 2288 | |
| 2289 | - if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2289 | + if ($ini_max_execution_time_check != 999999) { // only show these setting to the user if we can't change the ini setting
|
|
| 2290 | 2290 | ?> |
| 2291 | 2291 | <div id="gd_ie_reqs" class="metabox-holder"> |
| 2292 | 2292 | <div class="meta-box-sortables ui-sortable"> |
| 2293 | 2293 | <div class="postbox"> |
| 2294 | - <h3 class="hndle"><span style='vertical-align:top;'><?php echo __( 'PHP Requirements for GD Import & Export CSV', 'geodirectory' );?></span></h3> |
|
| 2294 | + <h3 class="hndle"><span style='vertical-align:top;'><?php echo __('PHP Requirements for GD Import & Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2295 | 2295 | <div class="inside"> |
| 2296 | - <span class="description"><?php echo __( 'Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory' );?></span> |
|
| 2296 | + <span class="description"><?php echo __('Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory'); ?></span>
|
|
| 2297 | 2297 | <table class="form-table"> |
| 2298 | 2298 | <thead> |
| 2299 | 2299 | <tr> |
| 2300 | - <th><?php _e( 'PHP Settings', 'geodirectory' );?></th><th><?php _e( 'Current Value', 'geodirectory' );?></th><th><?php _e( 'Recommended Value', 'geodirectory' );?></th> |
|
| 2300 | + <th><?php _e('PHP Settings', 'geodirectory'); ?></th><th><?php _e('Current Value', 'geodirectory'); ?></th><th><?php _e('Recommended Value', 'geodirectory'); ?></th>
|
|
| 2301 | 2301 | </tr> |
| 2302 | 2302 | </thead> |
| 2303 | 2303 | <tbody> |
| 2304 | 2304 | <tr> |
| 2305 | - <td>max_input_time</td><td><?php echo @ini_get( 'max_input_time' );?></td><td>3000</td> |
|
| 2305 | + <td>max_input_time</td><td><?php echo @ini_get('max_input_time'); ?></td><td>3000</td>
|
|
| 2306 | 2306 | </tr> |
| 2307 | 2307 | <tr> |
| 2308 | - <td>max_execution_time</td><td><?php echo @ini_get( 'max_execution_time' );?></td><td>3000</td> |
|
| 2308 | + <td>max_execution_time</td><td><?php echo @ini_get('max_execution_time'); ?></td><td>3000</td>
|
|
| 2309 | 2309 | </tr> |
| 2310 | 2310 | <tr> |
| 2311 | - <td>memory_limit</td><td><?php echo @ini_get( 'memory_limit' );?></td><td>256M</td> |
|
| 2311 | + <td>memory_limit</td><td><?php echo @ini_get('memory_limit'); ?></td><td>256M</td>
|
|
| 2312 | 2312 | </tr> |
| 2313 | 2313 | </tbody> |
| 2314 | 2314 | </table> |
@@ -2320,21 +2320,21 @@ discard block |
||
| 2320 | 2320 | <div id="gd_ie_imposts" class="metabox-holder"> |
| 2321 | 2321 | <div class="meta-box-sortables ui-sortable"> |
| 2322 | 2322 | <div id="gd_ie_im_posts" class="postbox gd-hndle-pbox"> |
| 2323 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Listings: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2324 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Import CSV', 'geodirectory' );?></span></h3> |
|
| 2323 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Listings: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2324 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Import CSV', 'geodirectory'); ?></span></h3>
|
|
| 2325 | 2325 | <div class="inside"> |
| 2326 | 2326 | <table class="form-table"> |
| 2327 | 2327 | <tbody> |
| 2328 | 2328 | <tr> |
| 2329 | 2329 | <td class="gd-imex-box"> |
| 2330 | 2330 | <div class="gd-im-choices"> |
| 2331 | - <p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e( 'Update listing if post with post_id already exists.', 'geodirectory' );?></label></p> |
|
| 2332 | - <p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e( 'Ignore listing if post with post_id already exists.', 'geodirectory' );?></label></p> |
|
| 2331 | + <p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e('Update listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
|
|
| 2332 | + <p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e('Ignore listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
|
|
| 2333 | 2333 | </div> |
| 2334 | 2334 | <div class="plupload-upload-uic hide-if-no-js" id="gd_im_postplupload-upload-ui"> |
| 2335 | 2335 | <input type="text" readonly="readonly" name="gd_im_post_file" class="gd-imex-file gd_im_post_file" id="gd_im_post" onclick="jQuery('#gd_im_postplupload-browse-button').trigger('click');" />
|
| 2336 | - <input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample"> |
|
| 2337 | - <input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv;?>" /> |
|
| 2336 | + <input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
|
|
| 2337 | + <input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv; ?>" /> |
|
| 2338 | 2338 | <?php |
| 2339 | 2339 | /** |
| 2340 | 2340 | * Called just after the sample CSV download link. |
@@ -2343,7 +2343,7 @@ discard block |
||
| 2343 | 2343 | */ |
| 2344 | 2344 | do_action('geodir_sample_csv_download_link');
|
| 2345 | 2345 | ?> |
| 2346 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_postpluploadan' ); ?>"></span> |
|
| 2346 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_postpluploadan'); ?>"></span>
|
|
| 2347 | 2347 | <div class="filelist"></div> |
| 2348 | 2348 | </div> |
| 2349 | 2349 | <span id="gd_im_catupload-error" style="display:none"></span> |
@@ -2361,7 +2361,7 @@ discard block |
||
| 2361 | 2361 | <input type="hidden" id="gd_terminateaction" value="continue"/> |
| 2362 | 2362 | </div> |
| 2363 | 2363 | <div class="gd-import-progress" id="gd-import-progress" style="display:none"> |
| 2364 | - <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
|
|
| 2364 | + <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
|
|
| 2365 | 2365 | id="gd-import-done">0</font> / <font id="gd-import-total">0</font> ( <font |
| 2366 | 2366 | id="gd-import-perc">0%</font> ) |
| 2367 | 2367 | <div class="gd-fileprogress"></div> |
@@ -2373,10 +2373,10 @@ discard block |
||
| 2373 | 2373 | <div class="gd-imex-btns" style="display:none;"> |
| 2374 | 2374 | <input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/> |
| 2375 | 2375 | <input onclick="gd_imex_PrepareImport(this, 'post')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" /> |
| 2376 | - <input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/> |
|
| 2377 | - <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
|
|
| 2376 | + <input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
|
|
| 2377 | + <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
|
|
| 2378 | 2378 | <div id="gd_process_data" style="display:none"> |
| 2379 | - <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
|
|
| 2379 | + <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
|
|
| 2380 | 2380 | </div> |
| 2381 | 2381 | </div> |
| 2382 | 2382 | </td> |
@@ -2390,30 +2390,30 @@ discard block |
||
| 2390 | 2390 | <div id="gd_ie_excategs" class="metabox-holder"> |
| 2391 | 2391 | <div class="meta-box-sortables ui-sortable"> |
| 2392 | 2392 | <div id="gd_ie_ex_posts" class="postbox gd-hndle-pbox"> |
| 2393 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - Listings: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2394 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Export CSV', 'geodirectory' );?></span></h3> |
|
| 2393 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - Listings: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2394 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2395 | 2395 | <div class="inside"> |
| 2396 | 2396 | <table class="form-table"> |
| 2397 | 2397 | <tbody> |
| 2398 | 2398 | <tr> |
| 2399 | 2399 | <td class="fld"><label for="gd_post_type"> |
| 2400 | - <?php _e( 'Post Type:', 'geodirectory' );?> |
|
| 2400 | + <?php _e('Post Type:', 'geodirectory'); ?>
|
|
| 2401 | 2401 | </label></td> |
| 2402 | 2402 | <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"> |
| 2403 | - <?php echo $gd_posttypes_option;?> |
|
| 2403 | + <?php echo $gd_posttypes_option; ?> |
|
| 2404 | 2404 | </select></td> |
| 2405 | 2405 | </tr> |
| 2406 | 2406 | <tr> |
| 2407 | - <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td> |
|
| 2408 | - <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td> |
|
| 2407 | + <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
|
|
| 2408 | + <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
|
|
| 2409 | 2409 | </tr> |
| 2410 | 2410 | <tr class="gd-imex-dates"> |
| 2411 | - <td class="fld"><label><?php _e( 'Published Date:', 'geodirectory' );?></label></td> |
|
| 2412 | - <td><label><span class="label-responsive"><?php _e( 'Start date:', 'geodirectory' );?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e( 'End date:', 'geodirectory' );?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td> |
|
| 2411 | + <td class="fld"><label><?php _e('Published Date:', 'geodirectory'); ?></label></td>
|
|
| 2412 | + <td><label><span class="label-responsive"><?php _e('Start date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e('End date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
|
|
| 2413 | 2413 | </tr> |
| 2414 | 2414 | <tr> |
| 2415 | 2415 | <td class="fld" style="vertical-align:top"><label> |
| 2416 | - <?php _e( 'Progress:', 'geodirectory' );?> |
|
| 2416 | + <?php _e('Progress:', 'geodirectory'); ?>
|
|
| 2417 | 2417 | </label></td> |
| 2418 | 2418 | <td><div id='gd_progressbar_box'> |
| 2419 | 2419 | <div id="gd_progressbar" class="gd_progressbar"> |
@@ -2421,13 +2421,13 @@ discard block |
||
| 2421 | 2421 | </div> |
| 2422 | 2422 | </div> |
| 2423 | 2423 | <p style="display:inline-block"> |
| 2424 | - <?php _e( 'Elapsed Time:', 'geodirectory' );?> |
|
| 2424 | + <?php _e('Elapsed Time:', 'geodirectory'); ?>
|
|
| 2425 | 2425 | </p> |
| 2426 | 2426 | |
| 2427 | 2427 | <p id="gd_timer" class="gd_timer">00:00:00</p></td> |
| 2428 | 2428 | </tr> |
| 2429 | 2429 | <tr class="gd-ie-actions"> |
| 2430 | - <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit"> |
|
| 2430 | + <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
|
|
| 2431 | 2431 | </td> |
| 2432 | 2432 | <td id="gd_ie_ex_files" class="gd-ie-files"></td> |
| 2433 | 2433 | </tr> |
@@ -2440,21 +2440,21 @@ discard block |
||
| 2440 | 2440 | <div id="gd_ie_imcategs" class="metabox-holder"> |
| 2441 | 2441 | <div class="meta-box-sortables ui-sortable"> |
| 2442 | 2442 | <div id="gd_ie_imcats" class="postbox gd-hndle-pbox"> |
| 2443 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2444 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Import CSV', 'geodirectory' );?></span></h3> |
|
| 2443 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2444 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Import CSV', 'geodirectory'); ?></span></h3>
|
|
| 2445 | 2445 | <div class="inside"> |
| 2446 | 2446 | <table class="form-table"> |
| 2447 | 2447 | <tbody> |
| 2448 | 2448 | <tr> |
| 2449 | 2449 | <td class="gd-imex-box"> |
| 2450 | 2450 | <div class="gd-im-choices"> |
| 2451 | - <p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e( 'Update item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p> |
|
| 2452 | - <p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e( 'Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p> |
|
| 2451 | + <p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e('Update item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
|
|
| 2452 | + <p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e('Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
|
|
| 2453 | 2453 | </div> |
| 2454 | 2454 | <div class="plupload-upload-uic hide-if-no-js" id="gd_im_catplupload-upload-ui"> |
| 2455 | 2455 | <input type="text" readonly="readonly" name="gd_im_cat_file" class="gd-imex-file gd_im_cat_file" id="gd_im_cat" onclick="jQuery('#gd_im_catplupload-browse-button').trigger('click');" />
|
| 2456 | - <input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample"> |
|
| 2457 | - <input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv;?>" /> |
|
| 2456 | + <input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
|
|
| 2457 | + <input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv; ?>" /> |
|
| 2458 | 2458 | <?php |
| 2459 | 2459 | /** |
| 2460 | 2460 | * Called just after the sample CSV download link. |
@@ -2464,7 +2464,7 @@ discard block |
||
| 2464 | 2464 | */ |
| 2465 | 2465 | do_action('geodir_sample_cats_csv_download_link');
|
| 2466 | 2466 | ?> |
| 2467 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_catpluploadan' ); ?>"></span> |
|
| 2467 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_catpluploadan'); ?>"></span>
|
|
| 2468 | 2468 | <div class="filelist"></div> |
| 2469 | 2469 | </div> |
| 2470 | 2470 | <span id="gd_im_catupload-error" style="display:none"></span> |
@@ -2481,7 +2481,7 @@ discard block |
||
| 2481 | 2481 | <input type="hidden" id="gd_terminateaction" value="continue"/> |
| 2482 | 2482 | </div> |
| 2483 | 2483 | <div class="gd-import-progress" id="gd-import-progress" style="display:none"> |
| 2484 | - <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
|
|
| 2484 | + <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
|
|
| 2485 | 2485 | id="gd-import-done">0</font> / <font id="gd-import-total">0</font> ( <font |
| 2486 | 2486 | id="gd-import-perc">0%</font> ) |
| 2487 | 2487 | <div class="gd-fileprogress"></div> |
@@ -2493,10 +2493,10 @@ discard block |
||
| 2493 | 2493 | <div class="gd-imex-btns" style="display:none;"> |
| 2494 | 2494 | <input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/> |
| 2495 | 2495 | <input onclick="gd_imex_PrepareImport(this, 'cat')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" /> |
| 2496 | - <input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/> |
|
| 2497 | - <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
|
|
| 2496 | + <input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
|
|
| 2497 | + <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
|
|
| 2498 | 2498 | <div id="gd_process_data" style="display:none"> |
| 2499 | - <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
|
|
| 2499 | + <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
|
|
| 2500 | 2500 | </div> |
| 2501 | 2501 | </div> |
| 2502 | 2502 | </td> |
@@ -2510,26 +2510,26 @@ discard block |
||
| 2510 | 2510 | <div id="gd_ie_excategs" class="metabox-holder"> |
| 2511 | 2511 | <div class="meta-box-sortables ui-sortable"> |
| 2512 | 2512 | <div id="gd_ie_ex_cats" class="postbox gd-hndle-pbox"> |
| 2513 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2514 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Export CSV', 'geodirectory' );?></span></h3> |
|
| 2513 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2514 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2515 | 2515 | <div class="inside"> |
| 2516 | 2516 | <table class="form-table"> |
| 2517 | 2517 | <tbody> |
| 2518 | 2518 | <tr> |
| 2519 | - <td class="fld"><label for="gd_post_type"><?php _e( 'Post Type:', 'geodirectory' );?></label></td> |
|
| 2520 | - <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option;?></select></td> |
|
| 2519 | + <td class="fld"><label for="gd_post_type"><?php _e('Post Type:', 'geodirectory'); ?></label></td>
|
|
| 2520 | + <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option; ?></select></td> |
|
| 2521 | 2521 | </tr> |
| 2522 | 2522 | <tr> |
| 2523 | - <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td> |
|
| 2524 | - <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td> |
|
| 2523 | + <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
|
|
| 2524 | + <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
|
|
| 2525 | 2525 | </tr> |
| 2526 | 2526 | <tr> |
| 2527 | - <td class="fld" style="vertical-align:top"><label><?php _e( 'Progress:', 'geodirectory' );?></label></td> |
|
| 2528 | - <td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e( 'Elapsed Time:', 'geodirectory' );?></p> <p id="gd_timer" class="gd_timer">00:00:00</p></td> |
|
| 2527 | + <td class="fld" style="vertical-align:top"><label><?php _e('Progress:', 'geodirectory'); ?></label></td>
|
|
| 2528 | + <td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e('Elapsed Time:', 'geodirectory'); ?></p> <p id="gd_timer" class="gd_timer">00:00:00</p></td>
|
|
| 2529 | 2529 | </tr> |
| 2530 | 2530 | <tr class="gd-ie-actions"> |
| 2531 | 2531 | <td style="vertical-align:top"> |
| 2532 | - <input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit"> |
|
| 2532 | + <input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
|
|
| 2533 | 2533 | </td> |
| 2534 | 2534 | <td id="gd_ie_ex_files" class="gd-ie-files"></td> |
| 2535 | 2535 | </tr> |
@@ -2551,7 +2551,7 @@ discard block |
||
| 2551 | 2551 | * @param array $gd_chunksize_options File chunk size options. |
| 2552 | 2552 | * @param string $nonce Wordpress security token for GD import & export. |
| 2553 | 2553 | */ |
| 2554 | - do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce ); |
|
| 2554 | + do_action('geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce);
|
|
| 2555 | 2555 | ?> |
| 2556 | 2556 | </div> |
| 2557 | 2557 | </div> |
@@ -2570,7 +2570,7 @@ discard block |
||
| 2570 | 2570 | jQuery.ajax({
|
| 2571 | 2571 | url: ajaxurl, |
| 2572 | 2572 | type: "POST", |
| 2573 | - data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce;?>', |
|
| 2573 | + data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce; ?>', |
|
| 2574 | 2574 | dataType: 'json', |
| 2575 | 2575 | cache: false, |
| 2576 | 2576 | success: function(data) {
|
@@ -2622,7 +2622,7 @@ discard block |
||
| 2622 | 2622 | |
| 2623 | 2623 | jQuery(cont).find('.filelist .file').remove();
|
| 2624 | 2624 | |
| 2625 | - jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr( PLZ_SELECT_CSV_FILE );?></p>");
|
|
| 2625 | + jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr(PLZ_SELECT_CSV_FILE); ?></p>");
|
|
| 2626 | 2626 | jQuery('#gd-import-msg', cont).show();
|
| 2627 | 2627 | |
| 2628 | 2628 | return false; |
@@ -2681,7 +2681,7 @@ discard block |
||
| 2681 | 2681 | jQuery.ajax({
|
| 2682 | 2682 | url: ajaxurl, |
| 2683 | 2683 | type: "POST", |
| 2684 | - data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce;?>', |
|
| 2684 | + data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce; ?>', |
|
| 2685 | 2685 | dataType : 'json', |
| 2686 | 2686 | cache: false, |
| 2687 | 2687 | success: function (data) {
|
@@ -2870,27 +2870,27 @@ discard block |
||
| 2870 | 2870 | |
| 2871 | 2871 | var gdMsg = '<p></p>'; |
| 2872 | 2872 | if ( processed > 0 ) {
|
| 2873 | - var msgParse = '<p><?php echo addslashes( sprintf( __( 'Total %s item(s) found.', 'geodirectory' ), '%s' ) );?></p>'; |
|
| 2873 | + var msgParse = '<p><?php echo addslashes(sprintf(__('Total %s item(s) found.', 'geodirectory'), '%s')); ?></p>';
|
|
| 2874 | 2874 | msgParse = msgParse.replace("%s", processed);
|
| 2875 | 2875 | gdMsg += msgParse; |
| 2876 | 2876 | } |
| 2877 | 2877 | |
| 2878 | 2878 | if ( updated > 0 ) {
|
| 2879 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) updated.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2879 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) updated.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2880 | 2880 | msgParse = msgParse.replace("%s", updated);
|
| 2881 | 2881 | msgParse = msgParse.replace("%d", processed);
|
| 2882 | 2882 | gdMsg += msgParse; |
| 2883 | 2883 | } |
| 2884 | 2884 | |
| 2885 | 2885 | if ( created > 0 ) {
|
| 2886 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) added.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2886 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) added.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2887 | 2887 | msgParse = msgParse.replace("%s", created);
|
| 2888 | 2888 | msgParse = msgParse.replace("%d", processed);
|
| 2889 | 2889 | gdMsg += msgParse; |
| 2890 | 2890 | } |
| 2891 | 2891 | |
| 2892 | 2892 | if ( skipped > 0 ) {
|
| 2893 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) ignored due to already exists.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2893 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) ignored due to already exists.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2894 | 2894 | msgParse = msgParse.replace("%s", skipped);
|
| 2895 | 2895 | msgParse = msgParse.replace("%d", processed);
|
| 2896 | 2896 | gdMsg += msgParse; |
@@ -2900,17 +2900,17 @@ discard block |
||
| 2900 | 2900 | if (type=='loc') {
|
| 2901 | 2901 | invalid_addr = invalid; |
| 2902 | 2902 | } |
| 2903 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2903 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2904 | 2904 | msgParse = msgParse.replace("%s", invalid_addr);
|
| 2905 | 2905 | msgParse = msgParse.replace("%d", total);
|
| 2906 | 2906 | gdMsg += msgParse; |
| 2907 | 2907 | } |
| 2908 | 2908 | |
| 2909 | 2909 | if (invalid > 0 && type!='loc') {
|
| 2910 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2910 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2911 | 2911 | |
| 2912 | 2912 | if (type=='hood') {
|
| 2913 | - msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2913 | + msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2914 | 2914 | } |
| 2915 | 2915 | msgParse = msgParse.replace("%s", invalid);
|
| 2916 | 2916 | msgParse = msgParse.replace("%d", total);
|
@@ -2918,7 +2918,7 @@ discard block |
||
| 2918 | 2918 | } |
| 2919 | 2919 | |
| 2920 | 2920 | if (images > 0) {
|
| 2921 | - gdMsg += '<p><?php echo addslashes( $upload_dir );?></p>'; |
|
| 2921 | + gdMsg += '<p><?php echo addslashes($upload_dir); ?></p>'; |
|
| 2922 | 2922 | } |
| 2923 | 2923 | gdMsg += '<p></p>'; |
| 2924 | 2924 | jQuery('#gd-import-msg', cont).find('#message').removeClass('error').addClass('updated').html(gdMsg);
|
@@ -3082,9 +3082,9 @@ discard block |
||
| 3082 | 3082 | if (typeof filters !== 'undefined' && filters && doFilter) {
|
| 3083 | 3083 | getTotal = true; |
| 3084 | 3084 | attach += '&_c=1'; |
| 3085 | - gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Preparing...', 'geodirectory' ) );?>'); |
|
| 3085 | + gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Preparing...', 'geodirectory')); ?>');
|
|
| 3086 | 3086 | } else {
|
| 3087 | - gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>'); |
|
| 3087 | + gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3088 | 3088 | } |
| 3089 | 3089 | jQuery(el).find('#gd_timer').text('00:00:01');
|
| 3090 | 3090 | jQuery('#gd_ie_ex_files', el).html('');
|
@@ -3093,7 +3093,7 @@ discard block |
||
| 3093 | 3093 | jQuery.ajax({
|
| 3094 | 3094 | url: ajaxurl, |
| 3095 | 3095 | type: "POST", |
| 3096 | - data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page + attach, |
|
| 3096 | + data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page + attach, |
|
| 3097 | 3097 | dataType : 'json', |
| 3098 | 3098 | cache: false, |
| 3099 | 3099 | beforeSend: function (jqXHR, settings) {},
|
@@ -3118,11 +3118,11 @@ discard block |
||
| 3118 | 3118 | } else {
|
| 3119 | 3119 | if (pages < page || pages == page) {
|
| 3120 | 3120 | window.clearInterval(timer_posts); |
| 3121 | - gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
|
|
| 3121 | + gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
|
|
| 3122 | 3122 | } else {
|
| 3123 | 3123 | var percentage = Math.round(((page * chunk_size) / total_posts) * 100); |
| 3124 | 3124 | percentage = percentage > 100 ? 100 : percentage; |
| 3125 | - gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
|
|
| 3125 | + gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3126 | 3126 | } |
| 3127 | 3127 | if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
|
| 3128 | 3128 | var obj_files = data.files; |
@@ -3153,7 +3153,7 @@ discard block |
||
| 3153 | 3153 | |
| 3154 | 3154 | function gd_process_export_cats(el, post_type, total_cats, chunk_size, pages, page) {
|
| 3155 | 3155 | if (page < 2) {
|
| 3156 | - gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>'); |
|
| 3156 | + gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3157 | 3157 | jQuery(el).find('#gd_timer').text('00:00:01');
|
| 3158 | 3158 | jQuery('#gd_ie_ex_files', el).html('');
|
| 3159 | 3159 | } |
@@ -3161,7 +3161,7 @@ discard block |
||
| 3161 | 3161 | jQuery.ajax({
|
| 3162 | 3162 | url: ajaxurl, |
| 3163 | 3163 | type: "POST", |
| 3164 | - data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page, |
|
| 3164 | + data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page, |
|
| 3165 | 3165 | dataType : 'json', |
| 3166 | 3166 | cache: false, |
| 3167 | 3167 | beforeSend: function (jqXHR, settings) {},
|
@@ -3175,11 +3175,11 @@ discard block |
||
| 3175 | 3175 | } else {
|
| 3176 | 3176 | if (pages < page || pages == page) {
|
| 3177 | 3177 | window.clearInterval(timer_cats); |
| 3178 | - gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
|
|
| 3178 | + gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
|
|
| 3179 | 3179 | } else {
|
| 3180 | 3180 | var percentage = Math.round(((page * chunk_size) / total_cats) * 100); |
| 3181 | 3181 | percentage = percentage > 100 ? 100 : percentage; |
| 3182 | - gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e( 'Exporting...', 'geodirectory' );?>');
|
|
| 3182 | + gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e('Exporting...', 'geodirectory'); ?>');
|
|
| 3183 | 3183 | } |
| 3184 | 3184 | if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
|
| 3185 | 3185 | var obj_files = data.files; |
@@ -3236,13 +3236,13 @@ discard block |
||
| 3236 | 3236 | function geodir_init_filesystem() |
| 3237 | 3237 | {
|
| 3238 | 3238 | |
| 3239 | - if(!function_exists('get_filesystem_method')){
|
|
| 3239 | + if (!function_exists('get_filesystem_method')) {
|
|
| 3240 | 3240 | require_once(ABSPATH."/wp-admin/includes/file.php"); |
| 3241 | 3241 | } |
| 3242 | 3242 | $access_type = get_filesystem_method(); |
| 3243 | 3243 | if ($access_type === 'direct') {
|
| 3244 | 3244 | /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
| 3245 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3245 | + $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array()); |
|
| 3246 | 3246 | |
| 3247 | 3247 | /* initialize the API */ |
| 3248 | 3248 | if (!WP_Filesystem($creds)) {
|
@@ -3255,7 +3255,7 @@ discard block |
||
| 3255 | 3255 | return $wp_filesystem; |
| 3256 | 3256 | /* do our file manipulations below */ |
| 3257 | 3257 | } elseif (defined('FTP_USER')) {
|
| 3258 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3258 | + $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array()); |
|
| 3259 | 3259 | |
| 3260 | 3260 | /* initialize the API */ |
| 3261 | 3261 | if (!WP_Filesystem($creds)) {
|
@@ -3290,7 +3290,7 @@ discard block |
||
| 3290 | 3290 | * @package GeoDirectory |
| 3291 | 3291 | */ |
| 3292 | 3292 | function geodir_filesystem_notice() |
| 3293 | -{ if ( defined( 'DOING_AJAX' ) ){return;}
|
|
| 3293 | +{ if (defined('DOING_AJAX')) {return; }
|
|
| 3294 | 3294 | $access_type = get_filesystem_method(); |
| 3295 | 3295 | if ($access_type === 'direct') {
|
| 3296 | 3296 | } elseif (!defined('FTP_USER')) {
|
@@ -3330,64 +3330,64 @@ discard block |
||
| 3330 | 3330 | // try to set higher limits for import |
| 3331 | 3331 | $max_input_time = ini_get('max_input_time');
|
| 3332 | 3332 | $max_execution_time = ini_get('max_execution_time');
|
| 3333 | - $memory_limit= ini_get('memory_limit');
|
|
| 3333 | + $memory_limit = ini_get('memory_limit');
|
|
| 3334 | 3334 | |
| 3335 | - if(!$max_input_time || $max_input_time<3000){
|
|
| 3335 | + if (!$max_input_time || $max_input_time < 3000) {
|
|
| 3336 | 3336 | ini_set('max_input_time', 3000);
|
| 3337 | 3337 | } |
| 3338 | 3338 | |
| 3339 | - if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3339 | + if (!$max_execution_time || $max_execution_time < 3000) {
|
|
| 3340 | 3340 | ini_set('max_execution_time', 3000);
|
| 3341 | 3341 | } |
| 3342 | 3342 | |
| 3343 | - if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3344 | - if(str_replace('M','',$memory_limit)<256){
|
|
| 3343 | + if ($memory_limit && str_replace('M', '', $memory_limit)) {
|
|
| 3344 | + if (str_replace('M', '', $memory_limit) < 256) {
|
|
| 3345 | 3345 | ini_set('memory_limit', '256M');
|
| 3346 | 3346 | } |
| 3347 | 3347 | } |
| 3348 | 3348 | |
| 3349 | 3349 | $json = array(); |
| 3350 | 3350 | |
| 3351 | - if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3352 | - wp_send_json( $json ); |
|
| 3351 | + if (!current_user_can('manage_options')) {
|
|
| 3352 | + wp_send_json($json); |
|
| 3353 | 3353 | } |
| 3354 | 3354 | |
| 3355 | - $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3356 | - $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3357 | - $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3355 | + $task = isset($_REQUEST['task']) ? $_REQUEST['task'] : NULL; |
|
| 3356 | + $nonce = isset($_REQUEST['_nonce']) ? $_REQUEST['_nonce'] : NULL; |
|
| 3357 | + $stat = isset($_REQUEST['_st']) ? $_REQUEST['_st'] : false; |
|
| 3358 | 3358 | |
| 3359 | - if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3360 | - wp_send_json( $json ); |
|
| 3359 | + if (!wp_verify_nonce($nonce, 'geodir_import_export_nonce')) {
|
|
| 3360 | + wp_send_json($json); |
|
| 3361 | 3361 | } |
| 3362 | 3362 | |
| 3363 | - $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3364 | - $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3363 | + $post_type = isset($_REQUEST['_pt']) ? $_REQUEST['_pt'] : NULL; |
|
| 3364 | + $chunk_per_page = isset($_REQUEST['_n']) ? absint($_REQUEST['_n']) : NULL; |
|
| 3365 | 3365 | $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
| 3366 | - $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3366 | + $chunk_page_no = isset($_REQUEST['_p']) ? absint($_REQUEST['_p']) : 1; |
|
| 3367 | 3367 | |
| 3368 | 3368 | $wp_filesystem = geodir_init_filesystem(); |
| 3369 | 3369 | if (!$wp_filesystem) {
|
| 3370 | - $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3371 | - wp_send_json( $json ); |
|
| 3370 | + $json['error'] = __('Filesystem ERROR: Could not access filesystem.', 'geodirectory');
|
|
| 3371 | + wp_send_json($json); |
|
| 3372 | 3372 | } |
| 3373 | 3373 | |
| 3374 | 3374 | if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
| 3375 | - $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3376 | - wp_send_json( $json ); |
|
| 3375 | + $json['error'] = __('Filesystem ERROR: '.$wp_filesystem->errors->get_error_message(), 'geodirectory');
|
|
| 3376 | + wp_send_json($json); |
|
| 3377 | 3377 | } |
| 3378 | 3378 | |
| 3379 | - $csv_file_dir = geodir_path_import_export( false ); |
|
| 3380 | - if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3381 | - if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3382 | - $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3383 | - wp_send_json( $json ); |
|
| 3379 | + $csv_file_dir = geodir_path_import_export(false); |
|
| 3380 | + if (!$wp_filesystem->is_dir($csv_file_dir)) {
|
|
| 3381 | + if (!$wp_filesystem->mkdir($csv_file_dir, FS_CHMOD_DIR)) {
|
|
| 3382 | + $json['error'] = __('ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3383 | + wp_send_json($json); |
|
| 3384 | 3384 | } |
| 3385 | 3385 | } |
| 3386 | 3386 | |
| 3387 | 3387 | $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
| 3388 | 3388 | $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
| 3389 | 3389 | |
| 3390 | - switch ( $task ) {
|
|
| 3390 | + switch ($task) {
|
|
| 3391 | 3391 | case 'export_posts': {
|
| 3392 | 3392 | // WPML |
| 3393 | 3393 | $is_wpml = geodir_is_wpml(); |
@@ -3398,36 +3398,36 @@ discard block |
||
| 3398 | 3398 | $sitepress->switch_lang('all', true);
|
| 3399 | 3399 | } |
| 3400 | 3400 | // WPML |
| 3401 | - if ( $post_type == 'gd_event' ) {
|
|
| 3402 | - add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3401 | + if ($post_type == 'gd_event') {
|
|
| 3402 | + add_filter('geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2);
|
|
| 3403 | 3403 | } |
| 3404 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3404 | + $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3405 | 3405 | |
| 3406 | - $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3407 | - if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3408 | - $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3406 | + $file_name = $post_type.'_'.date('dmyHi');
|
|
| 3407 | + if ($filters && isset($filters['start_date']) && isset($filters['end_date'])) {
|
|
| 3408 | + $file_name = $post_type.'_'.date_i18n('dmy', strtotime($filters['start_date'])).'_'.date_i18n('dmy', strtotime($filters['end_date']));
|
|
| 3409 | 3409 | } |
| 3410 | - $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3411 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3412 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3413 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3414 | - $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3410 | + $posts_count = geodir_get_posts_count($post_type); |
|
| 3411 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3412 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3413 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3414 | + $file_path_temp = $csv_file_dir.'/'.$post_type.'_'.$nonce.'.csv'; |
|
| 3415 | 3415 | |
| 3416 | 3416 | $chunk_file_paths = array(); |
| 3417 | 3417 | |
| 3418 | - if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3418 | + if (isset($_REQUEST['_c'])) {
|
|
| 3419 | 3419 | $json['total'] = $posts_count; |
| 3420 | 3420 | // WPML |
| 3421 | 3421 | if ($is_wpml) {
|
| 3422 | 3422 | $sitepress->switch_lang($active_lang, true); |
| 3423 | 3423 | } |
| 3424 | 3424 | // WPML |
| 3425 | - wp_send_json( $json ); |
|
| 3425 | + wp_send_json($json); |
|
| 3426 | 3426 | gd_die(); |
| 3427 | - } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3428 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3429 | - $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3430 | - $percentage = min( $percentage, 100 ); |
|
| 3427 | + } else if (isset($_REQUEST['_st'])) {
|
|
| 3428 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3429 | + $percentage = count($posts_count) > 0 && $line_count > 0 ? ceil($line_count / $posts_count) * 100 : 0; |
|
| 3430 | + $percentage = min($percentage, 100); |
|
| 3431 | 3431 | |
| 3432 | 3432 | $json['percentage'] = $percentage; |
| 3433 | 3433 | // WPML |
@@ -3435,45 +3435,45 @@ discard block |
||
| 3435 | 3435 | $sitepress->switch_lang($active_lang, true); |
| 3436 | 3436 | } |
| 3437 | 3437 | // WPML |
| 3438 | - wp_send_json( $json ); |
|
| 3438 | + wp_send_json($json); |
|
| 3439 | 3439 | gd_die(); |
| 3440 | 3440 | } else {
|
| 3441 | - if ( !$posts_count > 0 ) {
|
|
| 3442 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3441 | + if (!$posts_count > 0) {
|
|
| 3442 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3443 | 3443 | } else {
|
| 3444 | 3444 | $total_posts = $posts_count; |
| 3445 | 3445 | if ($chunk_per_page > $total_posts) {
|
| 3446 | 3446 | $chunk_per_page = $total_posts; |
| 3447 | 3447 | } |
| 3448 | - $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3448 | + $chunk_total_pages = ceil($total_posts / $chunk_per_page); |
|
| 3449 | 3449 | |
| 3450 | 3450 | $j = $chunk_page_no; |
| 3451 | - $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3451 | + $chunk_save_posts = geodir_imex_get_posts($post_type, $chunk_per_page, $j); |
|
| 3452 | 3452 | |
| 3453 | 3453 | $per_page = 500; |
| 3454 | 3454 | if ($per_page > $chunk_per_page) {
|
| 3455 | 3455 | $per_page = $chunk_per_page; |
| 3456 | 3456 | } |
| 3457 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3457 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3458 | 3458 | |
| 3459 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3460 | - $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3459 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3460 | + $save_posts = array_slice($chunk_save_posts, ($i * $per_page), $per_page); |
|
| 3461 | 3461 | |
| 3462 | 3462 | $clear = $i == 0 ? true : false; |
| 3463 | - geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3463 | + geodir_save_csv_data($file_path_temp, $save_posts, $clear); |
|
| 3464 | 3464 | } |
| 3465 | 3465 | |
| 3466 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3467 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3468 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3469 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3470 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3466 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3467 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3468 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3469 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3470 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3471 | 3471 | |
| 3472 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3473 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3472 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3473 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3474 | 3474 | } |
| 3475 | 3475 | |
| 3476 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3476 | + if (!empty($chunk_file_paths)) {
|
|
| 3477 | 3477 | $json['total'] = $posts_count; |
| 3478 | 3478 | $json['files'] = $chunk_file_paths; |
| 3479 | 3479 | } else {
|
@@ -3481,7 +3481,7 @@ discard block |
||
| 3481 | 3481 | $json['total'] = $posts_count; |
| 3482 | 3482 | $json['files'] = array(); |
| 3483 | 3483 | } else {
|
| 3484 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3484 | + $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3485 | 3485 | } |
| 3486 | 3486 | } |
| 3487 | 3487 | } |
@@ -3490,7 +3490,7 @@ discard block |
||
| 3490 | 3490 | $sitepress->switch_lang($active_lang, true); |
| 3491 | 3491 | } |
| 3492 | 3492 | // WPML |
| 3493 | - wp_send_json( $json ); |
|
| 3493 | + wp_send_json($json); |
|
| 3494 | 3494 | } |
| 3495 | 3495 | } |
| 3496 | 3496 | break; |
@@ -3504,20 +3504,20 @@ discard block |
||
| 3504 | 3504 | $sitepress->switch_lang('all', true);
|
| 3505 | 3505 | } |
| 3506 | 3506 | // WPML |
| 3507 | - $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3507 | + $file_name = $post_type.'category_'.date('dmyHi');
|
|
| 3508 | 3508 | |
| 3509 | - $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3510 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3511 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3512 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3513 | - $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3509 | + $terms_count = geodir_get_terms_count($post_type); |
|
| 3510 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3511 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3512 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3513 | + $file_path_temp = $csv_file_dir.'/'.$post_type.'category_'.$nonce.'.csv'; |
|
| 3514 | 3514 | |
| 3515 | 3515 | $chunk_file_paths = array(); |
| 3516 | 3516 | |
| 3517 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3518 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3519 | - $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3520 | - $percentage = min( $percentage, 100 ); |
|
| 3517 | + if (isset($_REQUEST['_st'])) {
|
|
| 3518 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3519 | + $percentage = count($terms_count) > 0 && $line_count > 0 ? ceil($line_count / $terms_count) * 100 : 0; |
|
| 3520 | + $percentage = min($percentage, 100); |
|
| 3521 | 3521 | |
| 3522 | 3522 | $json['percentage'] = $percentage; |
| 3523 | 3523 | // WPML |
@@ -3525,48 +3525,48 @@ discard block |
||
| 3525 | 3525 | $sitepress->switch_lang($active_lang, true); |
| 3526 | 3526 | } |
| 3527 | 3527 | // WPML |
| 3528 | - wp_send_json( $json ); |
|
| 3528 | + wp_send_json($json); |
|
| 3529 | 3529 | } else {
|
| 3530 | - if ( !$terms_count > 0 ) {
|
|
| 3531 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3530 | + if (!$terms_count > 0) {
|
|
| 3531 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3532 | 3532 | } else {
|
| 3533 | 3533 | $total_terms = $terms_count; |
| 3534 | 3534 | if ($chunk_per_page > $terms_count) {
|
| 3535 | 3535 | $chunk_per_page = $terms_count; |
| 3536 | 3536 | } |
| 3537 | - $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3537 | + $chunk_total_pages = ceil($total_terms / $chunk_per_page); |
|
| 3538 | 3538 | |
| 3539 | 3539 | $j = $chunk_page_no; |
| 3540 | - $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3540 | + $chunk_save_terms = geodir_imex_get_terms($post_type, $chunk_per_page, $j); |
|
| 3541 | 3541 | |
| 3542 | 3542 | $per_page = 500; |
| 3543 | 3543 | if ($per_page > $chunk_per_page) {
|
| 3544 | 3544 | $per_page = $chunk_per_page; |
| 3545 | 3545 | } |
| 3546 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3546 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3547 | 3547 | |
| 3548 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3549 | - $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3548 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3549 | + $save_terms = array_slice($chunk_save_terms, ($i * $per_page), $per_page); |
|
| 3550 | 3550 | |
| 3551 | 3551 | $clear = $i == 0 ? true : false; |
| 3552 | - geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3552 | + geodir_save_csv_data($file_path_temp, $save_terms, $clear); |
|
| 3553 | 3553 | } |
| 3554 | 3554 | |
| 3555 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3556 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3557 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3558 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3559 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3555 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3556 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3557 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3558 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3559 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3560 | 3560 | |
| 3561 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3562 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3561 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3562 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3563 | 3563 | } |
| 3564 | 3564 | |
| 3565 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3565 | + if (!empty($chunk_file_paths)) {
|
|
| 3566 | 3566 | $json['total'] = $terms_count; |
| 3567 | 3567 | $json['files'] = $chunk_file_paths; |
| 3568 | 3568 | } else {
|
| 3569 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3569 | + $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3570 | 3570 | } |
| 3571 | 3571 | } |
| 3572 | 3572 | // WPML |
@@ -3574,127 +3574,127 @@ discard block |
||
| 3574 | 3574 | $sitepress->switch_lang($active_lang, true); |
| 3575 | 3575 | } |
| 3576 | 3576 | // WPML |
| 3577 | - wp_send_json( $json ); |
|
| 3577 | + wp_send_json($json); |
|
| 3578 | 3578 | } |
| 3579 | 3579 | } |
| 3580 | 3580 | break; |
| 3581 | 3581 | case 'export_locations': {
|
| 3582 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3583 | - $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3584 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3585 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3586 | - $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3582 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3583 | + $file_name = 'gd_locations_'.date('dmyHi');
|
|
| 3584 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3585 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3586 | + $file_path_temp = $csv_file_dir.'/gd_locations_'.$nonce.'.csv'; |
|
| 3587 | 3587 | |
| 3588 | - $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3588 | + $items_count = (int) geodir_location_imex_count_locations(); |
|
| 3589 | 3589 | |
| 3590 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3591 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3592 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3593 | - $percentage = min( $percentage, 100 ); |
|
| 3590 | + if (isset($_REQUEST['_st'])) {
|
|
| 3591 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3592 | + $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0; |
|
| 3593 | + $percentage = min($percentage, 100); |
|
| 3594 | 3594 | |
| 3595 | 3595 | $json['percentage'] = $percentage; |
| 3596 | - wp_send_json( $json ); |
|
| 3596 | + wp_send_json($json); |
|
| 3597 | 3597 | } else {
|
| 3598 | 3598 | $chunk_file_paths = array(); |
| 3599 | 3599 | |
| 3600 | - if ( !$items_count > 0 ) {
|
|
| 3601 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3600 | + if (!$items_count > 0) {
|
|
| 3601 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3602 | 3602 | } else {
|
| 3603 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3604 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3603 | + $chunk_per_page = min($chunk_per_page, $items_count); |
|
| 3604 | + $chunk_total_pages = ceil($items_count / $chunk_per_page); |
|
| 3605 | 3605 | |
| 3606 | 3606 | $j = $chunk_page_no; |
| 3607 | - $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3607 | + $chunk_save_items = geodir_location_imex_locations_data($chunk_per_page, $j); |
|
| 3608 | 3608 | |
| 3609 | 3609 | $per_page = 500; |
| 3610 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3611 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3610 | + $per_page = min($per_page, $chunk_per_page); |
|
| 3611 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3612 | 3612 | |
| 3613 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3614 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3613 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3614 | + $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page); |
|
| 3615 | 3615 | |
| 3616 | 3616 | $clear = $i == 0 ? true : false; |
| 3617 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3617 | + geodir_save_csv_data($file_path_temp, $save_items, $clear); |
|
| 3618 | 3618 | } |
| 3619 | 3619 | |
| 3620 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3621 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3622 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3623 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3624 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3620 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3621 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3622 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3623 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3624 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3625 | 3625 | |
| 3626 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3627 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3626 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3627 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3628 | 3628 | } |
| 3629 | 3629 | |
| 3630 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3630 | + if (!empty($chunk_file_paths)) {
|
|
| 3631 | 3631 | $json['total'] = $items_count; |
| 3632 | 3632 | $json['files'] = $chunk_file_paths; |
| 3633 | 3633 | } else {
|
| 3634 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3634 | + $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
|
|
| 3635 | 3635 | } |
| 3636 | 3636 | } |
| 3637 | - wp_send_json( $json ); |
|
| 3637 | + wp_send_json($json); |
|
| 3638 | 3638 | } |
| 3639 | 3639 | } |
| 3640 | 3640 | break; |
| 3641 | 3641 | case 'export_hoods': {
|
| 3642 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3643 | - $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3644 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3645 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3646 | - $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3642 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3643 | + $file_name = 'gd_neighbourhoods_'.date('dmyHi');
|
|
| 3644 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3645 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3646 | + $file_path_temp = $csv_file_dir.'/gd_neighbourhoods_'.$nonce.'.csv'; |
|
| 3647 | 3647 | |
| 3648 | - $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3648 | + $items_count = (int) geodir_location_imex_count_neighbourhoods(); |
|
| 3649 | 3649 | |
| 3650 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3651 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3652 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3653 | - $percentage = min( $percentage, 100 ); |
|
| 3650 | + if (isset($_REQUEST['_st'])) {
|
|
| 3651 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3652 | + $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0; |
|
| 3653 | + $percentage = min($percentage, 100); |
|
| 3654 | 3654 | |
| 3655 | 3655 | $json['percentage'] = $percentage; |
| 3656 | - wp_send_json( $json ); |
|
| 3656 | + wp_send_json($json); |
|
| 3657 | 3657 | } else {
|
| 3658 | 3658 | $chunk_file_paths = array(); |
| 3659 | 3659 | |
| 3660 | - if ( !$items_count > 0 ) {
|
|
| 3661 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3660 | + if (!$items_count > 0) {
|
|
| 3661 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3662 | 3662 | } else {
|
| 3663 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3664 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3663 | + $chunk_per_page = min($chunk_per_page, $items_count); |
|
| 3664 | + $chunk_total_pages = ceil($items_count / $chunk_per_page); |
|
| 3665 | 3665 | |
| 3666 | 3666 | $j = $chunk_page_no; |
| 3667 | - $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3667 | + $chunk_save_items = geodir_location_imex_neighbourhoods_data($chunk_per_page, $j); |
|
| 3668 | 3668 | |
| 3669 | 3669 | $per_page = 500; |
| 3670 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3671 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3670 | + $per_page = min($per_page, $chunk_per_page); |
|
| 3671 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3672 | 3672 | |
| 3673 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3674 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3673 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3674 | + $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page); |
|
| 3675 | 3675 | |
| 3676 | 3676 | $clear = $i == 0 ? true : false; |
| 3677 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3677 | + geodir_save_csv_data($file_path_temp, $save_items, $clear); |
|
| 3678 | 3678 | } |
| 3679 | 3679 | |
| 3680 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3681 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3682 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3683 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3684 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3680 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3681 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3682 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3683 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3684 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3685 | 3685 | |
| 3686 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3687 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3686 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3687 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3688 | 3688 | } |
| 3689 | 3689 | |
| 3690 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3690 | + if (!empty($chunk_file_paths)) {
|
|
| 3691 | 3691 | $json['total'] = $items_count; |
| 3692 | 3692 | $json['files'] = $chunk_file_paths; |
| 3693 | 3693 | } else {
|
| 3694 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3694 | + $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
|
|
| 3695 | 3695 | } |
| 3696 | 3696 | } |
| 3697 | - wp_send_json( $json ); |
|
| 3697 | + wp_send_json($json); |
|
| 3698 | 3698 | } |
| 3699 | 3699 | } |
| 3700 | 3700 | break; |
@@ -3711,25 +3711,25 @@ discard block |
||
| 3711 | 3711 | } |
| 3712 | 3712 | // WPML |
| 3713 | 3713 | |
| 3714 | - ini_set( 'auto_detect_line_endings', true ); |
|
| 3714 | + ini_set('auto_detect_line_endings', true);
|
|
| 3715 | 3715 | |
| 3716 | 3716 | $uploads = wp_upload_dir(); |
| 3717 | 3717 | $uploads_dir = $uploads['path']; |
| 3718 | 3718 | $uploads_subdir = $uploads['subdir']; |
| 3719 | 3719 | |
| 3720 | - $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 3721 | - $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3720 | + $csv_file = isset($_POST['_file']) ? $_POST['_file'] : NULL; |
|
| 3721 | + $import_choice = isset($_REQUEST['_ch']) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3722 | 3722 | |
| 3723 | - $csv_file_arr = explode( '/', $csv_file ); |
|
| 3724 | - $csv_filename = end( $csv_file_arr ); |
|
| 3725 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 3723 | + $csv_file_arr = explode('/', $csv_file);
|
|
| 3724 | + $csv_filename = end($csv_file_arr); |
|
| 3725 | + $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$csv_filename; |
|
| 3726 | 3726 | |
| 3727 | 3727 | $json['file'] = $csv_file; |
| 3728 | - $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 3728 | + $json['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory');
|
|
| 3729 | 3729 | $file = array(); |
| 3730 | 3730 | |
| 3731 | - if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 3732 | - $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 3731 | + if ($csv_file && $wp_filesystem->is_file($target_path) && $wp_filesystem->exists($target_path)) {
|
|
| 3732 | + $wp_filetype = wp_check_filetype_and_ext($target_path, $csv_filename); |
|
| 3733 | 3733 | |
| 3734 | 3734 | if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
| 3735 | 3735 | $json['error'] = NULL; |
@@ -3737,9 +3737,9 @@ discard block |
||
| 3737 | 3737 | |
| 3738 | 3738 | $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
| 3739 | 3739 | setlocale(LC_ALL, 'en_US.UTF-8'); |
| 3740 | - if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 3741 | - while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 3742 | - if ( !empty( $data ) ) {
|
|
| 3740 | + if (($handle = fopen($target_path, "r")) !== FALSE) {
|
|
| 3741 | + while (($data = fgetcsv($handle, 100000, ",")) !== FALSE) {
|
|
| 3742 | + if (!empty($data)) {
|
|
| 3743 | 3743 | $file[] = $data; |
| 3744 | 3744 | } |
| 3745 | 3745 | } |
@@ -3753,19 +3753,19 @@ discard block |
||
| 3753 | 3753 | $json['error'] = __('No data found in csv file.', 'geodirectory');
|
| 3754 | 3754 | } |
| 3755 | 3755 | } else {
|
| 3756 | - wp_send_json( $json ); |
|
| 3756 | + wp_send_json($json); |
|
| 3757 | 3757 | } |
| 3758 | 3758 | } else {
|
| 3759 | - wp_send_json( $json ); |
|
| 3759 | + wp_send_json($json); |
|
| 3760 | 3760 | } |
| 3761 | 3761 | |
| 3762 | - if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 3763 | - wp_send_json( $json ); |
|
| 3762 | + if ($task == 'prepare_import' || !empty($json['error'])) {
|
|
| 3763 | + wp_send_json($json); |
|
| 3764 | 3764 | } |
| 3765 | 3765 | |
| 3766 | 3766 | $total = $json['rows']; |
| 3767 | - $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 3768 | - $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 3767 | + $limit = isset($_POST['limit']) ? (int) $_POST['limit'] : 1; |
|
| 3768 | + $processed = isset($_POST['processed']) ? (int) $_POST['processed'] : 0; |
|
| 3769 | 3769 | |
| 3770 | 3770 | $count = $limit; |
| 3771 | 3771 | |
@@ -3790,13 +3790,13 @@ discard block |
||
| 3790 | 3790 | |
| 3791 | 3791 | $post_types = geodir_get_posttypes(); |
| 3792 | 3792 | |
| 3793 | - if ( $task == 'import_cat' ) {
|
|
| 3793 | + if ($task == 'import_cat') {
|
|
| 3794 | 3794 | if (!empty($file)) {
|
| 3795 | 3795 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 3796 | 3796 | |
| 3797 | 3797 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 3798 | 3798 | $json['error'] = CSV_INVAILD_FILE; |
| 3799 | - wp_send_json( $json ); |
|
| 3799 | + wp_send_json($json); |
|
| 3800 | 3800 | exit; |
| 3801 | 3801 | } |
| 3802 | 3802 | |
@@ -3807,7 +3807,7 @@ discard block |
||
| 3807 | 3807 | |
| 3808 | 3808 | if (isset($file[$index])) {
|
| 3809 | 3809 | $row = $file[$index]; |
| 3810 | - $row = array_map( 'trim', $row ); |
|
| 3810 | + $row = array_map('trim', $row);
|
|
| 3811 | 3811 | //$row = array_map( 'utf8_encode', $row ); |
| 3812 | 3812 | |
| 3813 | 3813 | $cat_id = ''; |
@@ -3824,42 +3824,42 @@ discard block |
||
| 3824 | 3824 | $cat_id_original = ''; |
| 3825 | 3825 | |
| 3826 | 3826 | $c = 0; |
| 3827 | - foreach ($columns as $column ) {
|
|
| 3828 | - if ( $column == 'cat_id' ) {
|
|
| 3829 | - $cat_id = (int)$row[$c]; |
|
| 3830 | - } else if ( $column == 'cat_name' ) {
|
|
| 3827 | + foreach ($columns as $column) {
|
|
| 3828 | + if ($column == 'cat_id') {
|
|
| 3829 | + $cat_id = (int) $row[$c]; |
|
| 3830 | + } else if ($column == 'cat_name') {
|
|
| 3831 | 3831 | $cat_name = $row[$c]; |
| 3832 | - } else if ( $column == 'cat_slug' ) {
|
|
| 3832 | + } else if ($column == 'cat_slug') {
|
|
| 3833 | 3833 | $cat_slug = $row[$c]; |
| 3834 | - } else if ( $column == 'cat_posttype' ) {
|
|
| 3834 | + } else if ($column == 'cat_posttype') {
|
|
| 3835 | 3835 | $cat_posttype = $row[$c]; |
| 3836 | - } else if ( $column == 'cat_parent' ) {
|
|
| 3836 | + } else if ($column == 'cat_parent') {
|
|
| 3837 | 3837 | $cat_parent = trim($row[$c]); |
| 3838 | - } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 3838 | + } else if ($column == 'cat_schema' && $row[$c] != '') {
|
|
| 3839 | 3839 | $cat_schema = $row[$c]; |
| 3840 | - } else if ( $column == 'cat_description' ) {
|
|
| 3840 | + } else if ($column == 'cat_description') {
|
|
| 3841 | 3841 | $cat_description = $row[$c]; |
| 3842 | - } else if ( $column == 'cat_top_description' ) {
|
|
| 3842 | + } else if ($column == 'cat_top_description') {
|
|
| 3843 | 3843 | $cat_top_description = $row[$c]; |
| 3844 | - } else if ( $column == 'cat_image' ) {
|
|
| 3844 | + } else if ($column == 'cat_image') {
|
|
| 3845 | 3845 | $cat_image = $row[$c]; |
| 3846 | - } else if ( $column == 'cat_icon' ) {
|
|
| 3846 | + } else if ($column == 'cat_icon') {
|
|
| 3847 | 3847 | $cat_icon = $row[$c]; |
| 3848 | 3848 | } |
| 3849 | 3849 | // WPML |
| 3850 | - if ( $is_wpml ) {
|
|
| 3851 | - if ( $column == 'cat_language' ) {
|
|
| 3852 | - $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 3853 | - } else if ( $column == 'cat_id_original' ) {
|
|
| 3854 | - $cat_id_original = (int)$row[$c]; |
|
| 3850 | + if ($is_wpml) {
|
|
| 3851 | + if ($column == 'cat_language') {
|
|
| 3852 | + $cat_language = geodir_strtolower(trim($row[$c])); |
|
| 3853 | + } else if ($column == 'cat_id_original') {
|
|
| 3854 | + $cat_id_original = (int) $row[$c]; |
|
| 3855 | 3855 | } |
| 3856 | 3856 | } |
| 3857 | 3857 | // WPML |
| 3858 | 3858 | $c++; |
| 3859 | 3859 | } |
| 3860 | 3860 | |
| 3861 | - if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 3862 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 3861 | + if ($cat_name == '' || !in_array($cat_posttype, $post_types)) {
|
|
| 3862 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
|
|
| 3863 | 3863 | |
| 3864 | 3864 | $invalid++; |
| 3865 | 3865 | continue; |
@@ -3877,24 +3877,24 @@ discard block |
||
| 3877 | 3877 | $term_data['description'] = $cat_description; |
| 3878 | 3878 | $term_data['cat_schema'] = $cat_schema; |
| 3879 | 3879 | $term_data['top_description'] = $cat_top_description; |
| 3880 | - $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 3881 | - $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 3880 | + $term_data['image'] = $cat_image != '' ? basename($cat_image) : ''; |
|
| 3881 | + $term_data['icon'] = $cat_icon != '' ? basename($cat_icon) : ''; |
|
| 3882 | 3882 | |
| 3883 | 3883 | //$term_data = array_map( 'utf8_encode', $term_data ); |
| 3884 | 3884 | |
| 3885 | - $taxonomy = $cat_posttype . 'category'; |
|
| 3885 | + $taxonomy = $cat_posttype.'category'; |
|
| 3886 | 3886 | |
| 3887 | 3887 | $term_data['taxonomy'] = $taxonomy; |
| 3888 | 3888 | |
| 3889 | 3889 | $term_parent_id = 0; |
| 3890 | - if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 3890 | + if ($cat_parent != "" || (int) $cat_parent > 0) {
|
|
| 3891 | 3891 | $term_parent = ''; |
| 3892 | 3892 | |
| 3893 | - if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 3893 | + if ($term_parent = get_term_by('name', $cat_parent, $taxonomy)) {
|
|
| 3894 | 3894 | // |
| 3895 | - } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 3895 | + } else if ($term_parent = get_term_by('slug', $cat_parent, $taxonomy)) {
|
|
| 3896 | 3896 | // |
| 3897 | - } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 3897 | + } else if ($term_parent = get_term_by('id', $cat_parent, $taxonomy)) {
|
|
| 3898 | 3898 | // |
| 3899 | 3899 | } else {
|
| 3900 | 3900 | $term_parent_data = array(); |
@@ -3902,104 +3902,104 @@ discard block |
||
| 3902 | 3902 | //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
| 3903 | 3903 | $term_parent_data['taxonomy'] = $taxonomy; |
| 3904 | 3904 | |
| 3905 | - $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 3905 | + $term_parent_id = (int) geodir_imex_insert_term($taxonomy, $term_parent_data); |
|
| 3906 | 3906 | } |
| 3907 | 3907 | |
| 3908 | - if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 3909 | - $term_parent_id = (int)$term_parent->term_id; |
|
| 3908 | + if (!empty($term_parent) && !is_wp_error($term_parent)) {
|
|
| 3909 | + $term_parent_id = (int) $term_parent->term_id; |
|
| 3910 | 3910 | } |
| 3911 | 3911 | } |
| 3912 | - $term_data['parent'] = (int)$term_parent_id; |
|
| 3912 | + $term_data['parent'] = (int) $term_parent_id; |
|
| 3913 | 3913 | |
| 3914 | 3914 | $term_id = NULL; |
| 3915 | - if ( $import_choice == 'update' ) {
|
|
| 3916 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3915 | + if ($import_choice == 'update') {
|
|
| 3916 | + if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
|
|
| 3917 | 3917 | $term_data['term_id'] = $term['term_id']; |
| 3918 | 3918 | |
| 3919 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3919 | + if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
|
|
| 3920 | 3920 | $updated++; |
| 3921 | 3921 | } else {
|
| 3922 | 3922 | $invalid++; |
| 3923 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3923 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3924 | 3924 | } |
| 3925 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3925 | + } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 3926 | 3926 | $term_data['term_id'] = $term['term_id']; |
| 3927 | 3927 | |
| 3928 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3928 | + if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
|
|
| 3929 | 3929 | $updated++; |
| 3930 | 3930 | } else {
|
| 3931 | 3931 | $invalid++; |
| 3932 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3932 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3933 | 3933 | } |
| 3934 | 3934 | } else {
|
| 3935 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3935 | + if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
|
|
| 3936 | 3936 | $created++; |
| 3937 | 3937 | } else {
|
| 3938 | 3938 | $invalid++; |
| 3939 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3939 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3940 | 3940 | } |
| 3941 | 3941 | } |
| 3942 | - } else if ( $import_choice == 'skip' ) {
|
|
| 3943 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3942 | + } else if ($import_choice == 'skip') {
|
|
| 3943 | + if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
|
|
| 3944 | 3944 | $skipped++; |
| 3945 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3945 | + } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 3946 | 3946 | $skipped++; |
| 3947 | 3947 | } else {
|
| 3948 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3948 | + if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
|
|
| 3949 | 3949 | $created++; |
| 3950 | 3950 | } else {
|
| 3951 | 3951 | $invalid++; |
| 3952 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3952 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3953 | 3953 | } |
| 3954 | 3954 | } |
| 3955 | 3955 | } else {
|
| 3956 | 3956 | $invalid++; |
| 3957 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3957 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3958 | 3958 | } |
| 3959 | 3959 | |
| 3960 | - if ( $term_id ) {
|
|
| 3960 | + if ($term_id) {
|
|
| 3961 | 3961 | // WPML |
| 3962 | 3962 | if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
| 3963 | - $wpml_element_type = 'tax_' . $taxonomy; |
|
| 3964 | - $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 3963 | + $wpml_element_type = 'tax_'.$taxonomy; |
|
| 3964 | + $source_language = geodir_get_language_for_element($cat_id_original, $wpml_element_type); |
|
| 3965 | 3965 | $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
| 3966 | 3966 | |
| 3967 | - $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 3967 | + $trid = $sitepress->get_element_trid($cat_id_original, $wpml_element_type); |
|
| 3968 | 3968 | |
| 3969 | - $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 3969 | + $sitepress->set_element_language_details($term_id, $wpml_element_type, $trid, $cat_language, $source_language); |
|
| 3970 | 3970 | } |
| 3971 | 3971 | // WPML |
| 3972 | 3972 | |
| 3973 | - if ( isset( $term_data['top_description'] ) ) {
|
|
| 3974 | - update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 3973 | + if (isset($term_data['top_description'])) {
|
|
| 3974 | + update_tax_meta($term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype); |
|
| 3975 | 3975 | } |
| 3976 | 3976 | |
| 3977 | - if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 3978 | - update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 3977 | + if (isset($term_data['cat_schema'])) {
|
|
| 3978 | + update_tax_meta($term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype); |
|
| 3979 | 3979 | } |
| 3980 | 3980 | |
| 3981 | 3981 | $attachment = false; |
| 3982 | - if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 3983 | - $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 3984 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 3982 | + if (isset($term_data['image']) && $term_data['image'] != '') {
|
|
| 3983 | + $cat_image = geodir_get_default_catimage($term_id, $cat_posttype); |
|
| 3984 | + $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; |
|
| 3985 | 3985 | |
| 3986 | - if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 3986 | + if (basename($cat_image) != $term_data['image']) {
|
|
| 3987 | 3987 | $attachment = true; |
| 3988 | - update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 3988 | + update_tax_meta($term_id, 'ct_cat_default_img', array('id' => 'image', 'src' => $uploads['url'].'/'.$term_data['image']), $cat_posttype);
|
|
| 3989 | 3989 | } |
| 3990 | 3990 | } |
| 3991 | 3991 | |
| 3992 | - if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 3993 | - $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 3994 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 3992 | + if (isset($term_data['icon']) && $term_data['icon'] != '') {
|
|
| 3993 | + $cat_icon = get_tax_meta($term_id, 'ct_cat_icon', false, $cat_posttype); |
|
| 3994 | + $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : ''; |
|
| 3995 | 3995 | |
| 3996 | - if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 3996 | + if (basename($cat_icon) != $term_data['icon']) {
|
|
| 3997 | 3997 | $attachment = true; |
| 3998 | - update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 3998 | + update_tax_meta($term_id, 'ct_cat_icon', array('id' => 'icon', 'src' => $uploads['url'].'/'.$term_data['icon']), $cat_posttype);
|
|
| 3999 | 3999 | } |
| 4000 | 4000 | } |
| 4001 | 4001 | |
| 4002 | - if ( $attachment ) {
|
|
| 4002 | + if ($attachment) {
|
|
| 4003 | 4003 | $images++; |
| 4004 | 4004 | } |
| 4005 | 4005 | } |
@@ -4021,35 +4021,35 @@ discard block |
||
| 4021 | 4021 | $json['invalid'] = $invalid; |
| 4022 | 4022 | $json['images'] = $images; |
| 4023 | 4023 | |
| 4024 | - wp_send_json( $json ); |
|
| 4024 | + wp_send_json($json); |
|
| 4025 | 4025 | exit; |
| 4026 | - } else if ( $task == 'import_post' ) {
|
|
| 4027 | - $xtimings['###1'] = microtime(true)-$xstart; |
|
| 4026 | + } else if ($task == 'import_post') {
|
|
| 4027 | + $xtimings['###1'] = microtime(true) - $xstart; |
|
| 4028 | 4028 | //run some stuff to make the import quicker |
| 4029 | - wp_defer_term_counting( true ); |
|
| 4030 | - wp_defer_comment_counting( true ); |
|
| 4031 | - $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4029 | + wp_defer_term_counting(true); |
|
| 4030 | + wp_defer_comment_counting(true); |
|
| 4031 | + $wpdb->query('SET autocommit = 0;');
|
|
| 4032 | 4032 | // |
| 4033 | 4033 | // remove_all_actions('publish_post');
|
| 4034 | 4034 | // remove_all_actions('transition_post_status');
|
| 4035 | 4035 | // remove_all_actions('publish_future_post');
|
| 4036 | 4036 | |
| 4037 | 4037 | if (!empty($file)) {
|
| 4038 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4038 | + $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4039 | 4039 | $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
| 4040 | 4040 | $default_status = 'publish'; |
| 4041 | - $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4041 | + $current_date = date_i18n('Y-m-d', time());
|
|
| 4042 | 4042 | |
| 4043 | 4043 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 4044 | 4044 | |
| 4045 | 4045 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4046 | 4046 | $json['error'] = CSV_INVAILD_FILE; |
| 4047 | - wp_send_json( $json ); |
|
| 4047 | + wp_send_json($json); |
|
| 4048 | 4048 | exit; |
| 4049 | 4049 | } |
| 4050 | - $xtimings['###2'] = microtime(true)-$xstart; |
|
| 4050 | + $xtimings['###2'] = microtime(true) - $xstart; |
|
| 4051 | 4051 | $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
| 4052 | - $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4052 | + $wp_chars_error = __('(check & remove if any invalid characters used in data)', 'geodirectory');
|
|
| 4053 | 4053 | $processed_actual = 0; |
| 4054 | 4054 | for ($i = 1; $i <= $limit; $i++) {
|
| 4055 | 4055 | $index = $processed + $i; |
@@ -4058,9 +4058,9 @@ discard block |
||
| 4058 | 4058 | if (isset($file[$index])) {
|
| 4059 | 4059 | $processed_actual++; |
| 4060 | 4060 | $row = $file[$index]; |
| 4061 | - $row = array_map( 'trim', $row ); |
|
| 4061 | + $row = array_map('trim', $row);
|
|
| 4062 | 4062 | //$row = array_map( 'utf8_encode', $row ); |
| 4063 | - $row = array_map( 'addslashes_gpc', $row ); |
|
| 4063 | + $row = array_map('addslashes_gpc', $row);
|
|
| 4064 | 4064 | |
| 4065 | 4065 | $post_id = ''; |
| 4066 | 4066 | $post_title = ''; |
@@ -4097,78 +4097,78 @@ discard block |
||
| 4097 | 4097 | $original_post_id = ''; |
| 4098 | 4098 | |
| 4099 | 4099 | $c = 0; |
| 4100 | - foreach ($columns as $column ) {
|
|
| 4100 | + foreach ($columns as $column) {
|
|
| 4101 | 4101 | $gd_post[$column] = $row[$c]; |
| 4102 | 4102 | |
| 4103 | - if ( $column == 'post_id' ) {
|
|
| 4103 | + if ($column == 'post_id') {
|
|
| 4104 | 4104 | $post_id = $row[$c]; |
| 4105 | - } else if ( $column == 'post_title' ) {
|
|
| 4105 | + } else if ($column == 'post_title') {
|
|
| 4106 | 4106 | $post_title = sanitize_text_field($row[$c]); |
| 4107 | - } else if ( $column == 'post_author' ) {
|
|
| 4107 | + } else if ($column == 'post_author') {
|
|
| 4108 | 4108 | $post_author = $row[$c]; |
| 4109 | - } else if ( $column == 'post_content' ) {
|
|
| 4109 | + } else if ($column == 'post_content') {
|
|
| 4110 | 4110 | $post_content = $row[$c]; |
| 4111 | - } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4112 | - $post_category_arr = explode( ',', $row[$c] ); |
|
| 4113 | - } else if ( $column == 'default_category' ) {
|
|
| 4111 | + } else if ($column == 'post_category' && $row[$c] != '') {
|
|
| 4112 | + $post_category_arr = explode(',', $row[$c]);
|
|
| 4113 | + } else if ($column == 'default_category') {
|
|
| 4114 | 4114 | $default_category = wp_kses_normalize_entities($row[$c]); |
| 4115 | - } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4116 | - $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4117 | - } else if ( $column == 'post_type' ) {
|
|
| 4115 | + } else if ($column == 'post_tags' && $row[$c] != '') {
|
|
| 4116 | + $post_tags = explode(',', sanitize_text_field($row[$c]));
|
|
| 4117 | + } else if ($column == 'post_type') {
|
|
| 4118 | 4118 | $post_type = $row[$c]; |
| 4119 | - } else if ( $column == 'post_status' ) {
|
|
| 4120 | - $post_status = sanitize_key( $row[$c] ); |
|
| 4121 | - } else if ( $column == 'is_featured' ) {
|
|
| 4122 | - $is_featured = (int)$row[$c]; |
|
| 4123 | - } else if ( $column == 'geodir_video' ) {
|
|
| 4119 | + } else if ($column == 'post_status') {
|
|
| 4120 | + $post_status = sanitize_key($row[$c]); |
|
| 4121 | + } else if ($column == 'is_featured') {
|
|
| 4122 | + $is_featured = (int) $row[$c]; |
|
| 4123 | + } else if ($column == 'geodir_video') {
|
|
| 4124 | 4124 | $geodir_video = $row[$c]; |
| 4125 | - } else if ( $column == 'post_address' ) {
|
|
| 4125 | + } else if ($column == 'post_address') {
|
|
| 4126 | 4126 | $post_address = sanitize_text_field($row[$c]); |
| 4127 | - } else if ( $column == 'post_city' ) {
|
|
| 4127 | + } else if ($column == 'post_city') {
|
|
| 4128 | 4128 | $post_city = sanitize_text_field($row[$c]); |
| 4129 | - } else if ( $column == 'post_region' ) {
|
|
| 4129 | + } else if ($column == 'post_region') {
|
|
| 4130 | 4130 | $post_region = sanitize_text_field($row[$c]); |
| 4131 | - } else if ( $column == 'post_country' ) {
|
|
| 4131 | + } else if ($column == 'post_country') {
|
|
| 4132 | 4132 | $post_country = sanitize_text_field($row[$c]); |
| 4133 | - } else if ( $column == 'post_zip' ) {
|
|
| 4133 | + } else if ($column == 'post_zip') {
|
|
| 4134 | 4134 | $post_zip = sanitize_text_field($row[$c]); |
| 4135 | - } else if ( $column == 'post_latitude' ) {
|
|
| 4135 | + } else if ($column == 'post_latitude') {
|
|
| 4136 | 4136 | $post_latitude = sanitize_text_field($row[$c]); |
| 4137 | - } else if ( $column == 'post_longitude' ) {
|
|
| 4137 | + } else if ($column == 'post_longitude') {
|
|
| 4138 | 4138 | $post_longitude = sanitize_text_field($row[$c]); |
| 4139 | - } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4139 | + } else if ($column == 'post_neighbourhood') {
|
|
| 4140 | 4140 | $post_neighbourhood = sanitize_text_field($row[$c]); |
| 4141 | 4141 | unset($gd_post[$column]); |
| 4142 | - } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4142 | + } else if ($column == 'neighbourhood_latitude') {
|
|
| 4143 | 4143 | $neighbourhood_latitude = sanitize_text_field($row[$c]); |
| 4144 | - } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4144 | + } else if ($column == 'neighbourhood_longitude') {
|
|
| 4145 | 4145 | $neighbourhood_longitude = sanitize_text_field($row[$c]); |
| 4146 | - } else if ( $column == 'geodir_timing' ) {
|
|
| 4146 | + } else if ($column == 'geodir_timing') {
|
|
| 4147 | 4147 | $geodir_timing = sanitize_text_field($row[$c]); |
| 4148 | - } else if ( $column == 'geodir_contact' ) {
|
|
| 4148 | + } else if ($column == 'geodir_contact') {
|
|
| 4149 | 4149 | $geodir_contact = sanitize_text_field($row[$c]); |
| 4150 | - } else if ( $column == 'geodir_email' ) {
|
|
| 4150 | + } else if ($column == 'geodir_email') {
|
|
| 4151 | 4151 | $geodir_email = sanitize_email($row[$c]); |
| 4152 | - } else if ( $column == 'geodir_website' ) {
|
|
| 4152 | + } else if ($column == 'geodir_website') {
|
|
| 4153 | 4153 | $geodir_website = sanitize_text_field($row[$c]); |
| 4154 | - } else if ( $column == 'geodir_twitter' ) {
|
|
| 4154 | + } else if ($column == 'geodir_twitter') {
|
|
| 4155 | 4155 | $geodir_twitter = sanitize_text_field($row[$c]); |
| 4156 | - } else if ( $column == 'geodir_facebook' ) {
|
|
| 4156 | + } else if ($column == 'geodir_facebook') {
|
|
| 4157 | 4157 | $geodir_facebook = sanitize_text_field($row[$c]); |
| 4158 | - } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4158 | + } else if ($column == 'IMAGE' && !empty($row[$c]) && $row[$c] != '') {
|
|
| 4159 | 4159 | $post_images[] = $row[$c]; |
| 4160 | - } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4161 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4162 | - } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4160 | + } else if ($column == 'alive_days' && (int) $row[$c] > 0) {
|
|
| 4161 | + $expire_date = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $row[$c].' days'));
|
|
| 4162 | + } else if ($column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never') {
|
|
| 4163 | 4163 | $row[$c] = str_replace('/', '-', $row[$c]);
|
| 4164 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4164 | + $expire_date = date_i18n('Y-m-d', strtotime($row[$c]));
|
|
| 4165 | 4165 | } |
| 4166 | 4166 | // WPML |
| 4167 | 4167 | if ($is_wpml) {
|
| 4168 | 4168 | if ($column == 'language') {
|
| 4169 | 4169 | $language = geodir_strtolower(trim($row[$c])); |
| 4170 | 4170 | } else if ($column == 'original_post_id') {
|
| 4171 | - $original_post_id = (int)$row[$c]; |
|
| 4171 | + $original_post_id = (int) $row[$c]; |
|
| 4172 | 4172 | } |
| 4173 | 4173 | } |
| 4174 | 4174 | // WPML |
@@ -4176,7 +4176,7 @@ discard block |
||
| 4176 | 4176 | } |
| 4177 | 4177 | // listing claimed or not |
| 4178 | 4178 | if ($is_claim_active && isset($gd_post['claimed'])) {
|
| 4179 | - $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4179 | + $gd_post['claimed'] = (int) $gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4180 | 4180 | } |
| 4181 | 4181 | |
| 4182 | 4182 | // WPML |
@@ -4187,43 +4187,43 @@ discard block |
||
| 4187 | 4187 | |
| 4188 | 4188 | $gd_post['IMAGE'] = $post_images; |
| 4189 | 4189 | |
| 4190 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4191 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4190 | + $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status; |
|
| 4191 | + $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status; |
|
| 4192 | 4192 | |
| 4193 | 4193 | $valid = true; |
| 4194 | 4194 | |
| 4195 | - if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4195 | + if ($post_title == '' || !in_array($post_type, $post_types)) {
|
|
| 4196 | 4196 | $invalid++; |
| 4197 | 4197 | $valid = false; |
| 4198 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4198 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
|
|
| 4199 | 4199 | } |
| 4200 | - $xtimings['###3'] = microtime(true)-$xstart; |
|
| 4201 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4202 | - if ( $location_allowed ) {
|
|
| 4200 | + $xtimings['###3'] = microtime(true) - $xstart; |
|
| 4201 | + $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
|
|
| 4202 | + if ($location_allowed) {
|
|
| 4203 | 4203 | $location_result = geodir_get_default_location(); |
| 4204 | - if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4204 | + if ($post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '') {
|
|
| 4205 | 4205 | $invalid_addr++; |
| 4206 | 4206 | $valid = false; |
| 4207 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4208 | - } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4209 | - if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4207 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
|
|
| 4208 | + } else if (!empty($location_result) && $location_result->location_id == 0) {
|
|
| 4209 | + if ((geodir_strtolower($post_city) != geodir_strtolower($location_result->city)) || (geodir_strtolower($post_region) != geodir_strtolower($location_result->region)) || (geodir_strtolower($post_country) != geodir_strtolower($location_result->country))) {
|
|
| 4210 | 4210 | $invalid_addr++; |
| 4211 | 4211 | $valid = false; |
| 4212 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4212 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
|
|
| 4213 | 4213 | } else {
|
| 4214 | 4214 | if (!$location_manager) {
|
| 4215 | - $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4215 | + $gd_post['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // Set the default location when location manager not activated. |
|
| 4216 | 4216 | } |
| 4217 | 4217 | } |
| 4218 | 4218 | } |
| 4219 | 4219 | } |
| 4220 | - $xtimings['###4'] = microtime(true)-$xstart; |
|
| 4221 | - if ( !$valid ) {
|
|
| 4220 | + $xtimings['###4'] = microtime(true) - $xstart; |
|
| 4221 | + if (!$valid) {
|
|
| 4222 | 4222 | continue; |
| 4223 | 4223 | } |
| 4224 | 4224 | |
| 4225 | - $cat_taxonomy = $post_type . 'category'; |
|
| 4226 | - $tags_taxonomy = $post_type . '_tags'; |
|
| 4225 | + $cat_taxonomy = $post_type.'category'; |
|
| 4226 | + $tags_taxonomy = $post_type.'_tags'; |
|
| 4227 | 4227 | |
| 4228 | 4228 | if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
| 4229 | 4229 | $post_category_arr = array_merge(array($default_category), $post_category_arr); |
@@ -4231,29 +4231,29 @@ discard block |
||
| 4231 | 4231 | |
| 4232 | 4232 | $post_category = array(); |
| 4233 | 4233 | $default_category_id = NULL; |
| 4234 | - if ( !empty( $post_category_arr ) ) {
|
|
| 4235 | - foreach ( $post_category_arr as $value ) {
|
|
| 4236 | - $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4234 | + if (!empty($post_category_arr)) {
|
|
| 4235 | + foreach ($post_category_arr as $value) {
|
|
| 4236 | + $category_name = wp_kses_normalize_entities(trim($value)); |
|
| 4237 | 4237 | |
| 4238 | - if ( $category_name != '' ) {
|
|
| 4238 | + if ($category_name != '') {
|
|
| 4239 | 4239 | $term_category = array(); |
| 4240 | 4240 | |
| 4241 | - if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4241 | + if ($term = get_term_by('name', $category_name, $cat_taxonomy)) {
|
|
| 4242 | 4242 | $term_category = $term; |
| 4243 | - } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4243 | + } else if ($term = get_term_by('slug', $category_name, $cat_taxonomy)) {
|
|
| 4244 | 4244 | $term_category = $term; |
| 4245 | 4245 | } else {
|
| 4246 | 4246 | $term_data = array(); |
| 4247 | 4247 | $term_data['name'] = $category_name; |
| 4248 | 4248 | $term_data['taxonomy'] = $cat_taxonomy; |
| 4249 | 4249 | |
| 4250 | - $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4251 | - if ( $term_id ) {
|
|
| 4252 | - $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4250 | + $term_id = geodir_imex_insert_term($cat_taxonomy, $term_data); |
|
| 4251 | + if ($term_id) {
|
|
| 4252 | + $term_category = get_term($term_id, $cat_taxonomy); |
|
| 4253 | 4253 | } |
| 4254 | 4254 | } |
| 4255 | 4255 | |
| 4256 | - if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4256 | + if (!empty($term_category) && !is_wp_error($term_category)) {
|
|
| 4257 | 4257 | $post_category[] = intval($term_category->term_id); |
| 4258 | 4258 | |
| 4259 | 4259 | if ($category_name == $default_category) {
|
@@ -4263,7 +4263,7 @@ discard block |
||
| 4263 | 4263 | } |
| 4264 | 4264 | } |
| 4265 | 4265 | } |
| 4266 | - $xtimings['###5'] = microtime(true)-$xstart; |
|
| 4266 | + $xtimings['###5'] = microtime(true) - $xstart; |
|
| 4267 | 4267 | $save_post = array(); |
| 4268 | 4268 | $save_post['post_title'] = $post_title; |
| 4269 | 4269 | $save_post['post_content'] = $post_content; |
@@ -4274,15 +4274,15 @@ discard block |
||
| 4274 | 4274 | $save_post['post_tags'] = $post_tags; |
| 4275 | 4275 | |
| 4276 | 4276 | $saved_post_id = NULL; |
| 4277 | - if ( $import_choice == 'update' ) {
|
|
| 4278 | - $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4277 | + if ($import_choice == 'update') {
|
|
| 4278 | + $gd_wp_error = __('Unable to add listing, please check the listing data.', 'geodirectory');
|
|
| 4279 | 4279 | |
| 4280 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4280 | + if ($post_id > 0 && get_post($post_id)) {
|
|
| 4281 | 4281 | $save_post['ID'] = $post_id; |
| 4282 | 4282 | |
| 4283 | - if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4284 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4285 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4283 | + if ($saved_post_id = wp_update_post($save_post, true)) {
|
|
| 4284 | + if (is_wp_error($saved_post_id)) {
|
|
| 4285 | + $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error; |
|
| 4286 | 4286 | $saved_post_id = 0; |
| 4287 | 4287 | } else {
|
| 4288 | 4288 | $saved_post_id = $post_id; |
@@ -4290,9 +4290,9 @@ discard block |
||
| 4290 | 4290 | } |
| 4291 | 4291 | } |
| 4292 | 4292 | } else {
|
| 4293 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4294 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4295 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4293 | + if ($saved_post_id = wp_insert_post($save_post, true)) {
|
|
| 4294 | + if (is_wp_error($saved_post_id)) {
|
|
| 4295 | + $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error; |
|
| 4296 | 4296 | $saved_post_id = 0; |
| 4297 | 4297 | } else {
|
| 4298 | 4298 | $created++; |
@@ -4300,19 +4300,19 @@ discard block |
||
| 4300 | 4300 | } |
| 4301 | 4301 | } |
| 4302 | 4302 | |
| 4303 | - if ( !$saved_post_id > 0 ) {
|
|
| 4303 | + if (!$saved_post_id > 0) {
|
|
| 4304 | 4304 | $invalid++; |
| 4305 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4305 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_wp_error); |
|
| 4306 | 4306 | } |
| 4307 | - } else if ( $import_choice == 'skip' ) {
|
|
| 4308 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4307 | + } else if ($import_choice == 'skip') {
|
|
| 4308 | + if ($post_id > 0 && get_post($post_id)) {
|
|
| 4309 | 4309 | $skipped++; |
| 4310 | 4310 | } else {
|
| 4311 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4312 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4311 | + if ($saved_post_id = wp_insert_post($save_post, true)) {
|
|
| 4312 | + if (is_wp_error($saved_post_id)) {
|
|
| 4313 | 4313 | $invalid++; |
| 4314 | 4314 | |
| 4315 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4315 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$saved_post_id->get_error_message().' '.$wp_chars_error); |
|
| 4316 | 4316 | $saved_post_id = 0; |
| 4317 | 4317 | } else {
|
| 4318 | 4318 | $created++; |
@@ -4320,28 +4320,28 @@ discard block |
||
| 4320 | 4320 | } else {
|
| 4321 | 4321 | $invalid++; |
| 4322 | 4322 | |
| 4323 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4323 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error); |
|
| 4324 | 4324 | } |
| 4325 | 4325 | } |
| 4326 | 4326 | } else {
|
| 4327 | 4327 | $invalid++; |
| 4328 | 4328 | |
| 4329 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4329 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error); |
|
| 4330 | 4330 | } |
| 4331 | - $xtimings['###6'] = microtime(true)-$xstart; |
|
| 4332 | - if ( (int)$saved_post_id > 0 ) {
|
|
| 4331 | + $xtimings['###6'] = microtime(true) - $xstart; |
|
| 4332 | + if ((int) $saved_post_id > 0) {
|
|
| 4333 | 4333 | // WPML |
| 4334 | 4334 | if ($is_wpml && $original_post_id > 0 && $language != '') {
|
| 4335 | - $wpml_post_type = 'post_' . $post_type; |
|
| 4336 | - $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4335 | + $wpml_post_type = 'post_'.$post_type; |
|
| 4336 | + $source_language = geodir_get_language_for_element($original_post_id, $wpml_post_type); |
|
| 4337 | 4337 | $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
| 4338 | 4338 | |
| 4339 | - $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4339 | + $trid = $sitepress->get_element_trid($original_post_id, $wpml_post_type); |
|
| 4340 | 4340 | |
| 4341 | - $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4341 | + $sitepress->set_element_language_details($saved_post_id, $wpml_post_type, $trid, $language, $source_language); |
|
| 4342 | 4342 | } |
| 4343 | 4343 | // WPML |
| 4344 | - $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4344 | + $gd_post_info = geodir_get_post_info($saved_post_id); |
|
| 4345 | 4345 | |
| 4346 | 4346 | $gd_post['post_id'] = $saved_post_id; |
| 4347 | 4347 | $gd_post['ID'] = $saved_post_id; |
@@ -4353,7 +4353,7 @@ discard block |
||
| 4353 | 4353 | |
| 4354 | 4354 | // post location |
| 4355 | 4355 | $post_location_id = 0; |
| 4356 | - if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4356 | + if ($location_allowed && !empty($location_result) && $location_result->location_id > 0) {
|
|
| 4357 | 4357 | $gd_post['post_neighbourhood'] = ''; |
| 4358 | 4358 | |
| 4359 | 4359 | $post_location_info = array( |
@@ -4363,7 +4363,7 @@ discard block |
||
| 4363 | 4363 | 'geo_lat' => $post_latitude, |
| 4364 | 4364 | 'geo_lng' => $post_longitude |
| 4365 | 4365 | ); |
| 4366 | - if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4366 | + if ($location_id = (int) geodir_add_new_location($post_location_info)) {
|
|
| 4367 | 4367 | $post_location_id = $location_id; |
| 4368 | 4368 | } |
| 4369 | 4369 | |
@@ -4401,14 +4401,14 @@ discard block |
||
| 4401 | 4401 | $gd_post['post_location_id'] = $post_location_id; |
| 4402 | 4402 | |
| 4403 | 4403 | // post package info |
| 4404 | - $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4404 | + $package_id = isset($gd_post['package_id']) && !empty($gd_post['package_id']) ? (int) $gd_post['package_id'] : 0; |
|
| 4405 | 4405 | if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
| 4406 | 4406 | $package_id = $gd_post_info->package_id; |
| 4407 | 4407 | } |
| 4408 | 4408 | |
| 4409 | 4409 | $package_info = array(); |
| 4410 | 4410 | if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
| 4411 | - $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4411 | + $package_info = (array) geodir_get_package_info_by_id($package_id); |
|
| 4412 | 4412 | |
| 4413 | 4413 | if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
| 4414 | 4414 | $package_info = array(); |
@@ -4416,18 +4416,18 @@ discard block |
||
| 4416 | 4416 | } |
| 4417 | 4417 | |
| 4418 | 4418 | if (empty($package_info)) {
|
| 4419 | - $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4419 | + $package_info = (array) geodir_post_package_info(array(), '', $post_type); |
|
| 4420 | 4420 | } |
| 4421 | 4421 | |
| 4422 | - if (!empty($package_info)) {
|
|
| 4422 | + if (!empty($package_info)) {
|
|
| 4423 | 4423 | $package_id = $package_info['pid']; |
| 4424 | 4424 | |
| 4425 | 4425 | if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
| 4426 | 4426 | $gd_post['expire_date'] = $expire_date; |
| 4427 | 4427 | } else {
|
| 4428 | - if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4429 | - $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4430 | - $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4428 | + if (isset($package_info['days']) && (int) $package_info['days'] > 0) {
|
|
| 4429 | + $gd_post['alive_days'] = (int) $package_info['days']; |
|
| 4430 | + $gd_post['expire_date'] = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $package_info['days'].' days'));
|
|
| 4431 | 4431 | } else {
|
| 4432 | 4432 | $gd_post['expire_date'] = 'Never'; |
| 4433 | 4433 | } |
@@ -4436,7 +4436,7 @@ discard block |
||
| 4436 | 4436 | $gd_post['package_id'] = $package_id; |
| 4437 | 4437 | } |
| 4438 | 4438 | |
| 4439 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4439 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 4440 | 4440 | |
| 4441 | 4441 | if ($post_type == 'gd_event') {
|
| 4442 | 4442 | $gd_post = geodir_imex_process_event_data($gd_post); |
@@ -4447,65 +4447,65 @@ discard block |
||
| 4447 | 4447 | } |
| 4448 | 4448 | |
| 4449 | 4449 | // Export franchise fields |
| 4450 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4450 | + $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
|
|
| 4451 | 4451 | if ($is_franchise_active) {
|
| 4452 | - if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4452 | + if (isset($gd_post['gd_is_franchise']) && (int) $gd_post['gd_is_franchise'] == 1) {
|
|
| 4453 | 4453 | $gd_franchise_lock = array(); |
| 4454 | 4454 | |
| 4455 | - if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4456 | - $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4457 | - $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4458 | - $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4455 | + if (isset($gd_post['gd_franchise_lock'])) {
|
|
| 4456 | + $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock']);
|
|
| 4457 | + $gd_franchise_lock = trim($gd_franchise_lock); |
|
| 4458 | + $gd_franchise_lock = explode(",", $gd_franchise_lock);
|
|
| 4459 | 4459 | } |
| 4460 | 4460 | |
| 4461 | - update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4462 | - update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4461 | + update_post_meta($saved_post_id, 'gd_is_franchise', 1); |
|
| 4462 | + update_post_meta($saved_post_id, 'gd_franchise_lock', $gd_franchise_lock); |
|
| 4463 | 4463 | } else {
|
| 4464 | - if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4465 | - geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4464 | + if (isset($gd_post['franchise']) && (int) $gd_post['franchise'] > 0 && geodir_franchise_check((int) $gd_post['franchise'])) {
|
|
| 4465 | + geodir_save_post_meta($saved_post_id, 'franchise', (int) $gd_post['franchise']); |
|
| 4466 | 4466 | } |
| 4467 | 4467 | } |
| 4468 | 4468 | } |
| 4469 | 4469 | |
| 4470 | 4470 | if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
| 4471 | - $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4471 | + $save_post['post_category'] = array_unique(array_map('intval', $save_post['post_category']));
|
|
| 4472 | 4472 | if ($default_category_id) {
|
| 4473 | 4473 | $save_post['post_default_category'] = $default_category_id; |
| 4474 | 4474 | $gd_post['default_category'] = $default_category_id; |
| 4475 | 4475 | } |
| 4476 | 4476 | $gd_post[$cat_taxonomy] = $save_post['post_category']; |
| 4477 | 4477 | } |
| 4478 | - $xtimings['###7'] = microtime(true)-$xstart; |
|
| 4478 | + $xtimings['###7'] = microtime(true) - $xstart; |
|
| 4479 | 4479 | // Save post info |
| 4480 | - geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4481 | - $xtimings['###8'] = microtime(true)-$xstart; |
|
| 4480 | + geodir_save_post_info($saved_post_id, $gd_post); |
|
| 4481 | + $xtimings['###8'] = microtime(true) - $xstart; |
|
| 4482 | 4482 | // post taxonomies |
| 4483 | - if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4484 | - wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4483 | + if (!empty($save_post['post_category'])) {
|
|
| 4484 | + wp_set_object_terms($saved_post_id, $save_post['post_category'], $cat_taxonomy); |
|
| 4485 | 4485 | |
| 4486 | - $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4486 | + $post_default_category = isset($save_post['post_default_category']) ? $save_post['post_default_category'] : ''; |
|
| 4487 | 4487 | if ($default_category_id) {
|
| 4488 | 4488 | $post_default_category = $default_category_id; |
| 4489 | 4489 | } |
| 4490 | 4490 | $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
| 4491 | 4491 | $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
| 4492 | - $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4492 | + $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']).',y:' : '';
|
|
| 4493 | 4493 | |
| 4494 | 4494 | if ($post_category_str != '' && $post_default_category) {
|
| 4495 | - $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4495 | + $post_category_str = str_replace($post_default_category.',y:', $post_default_category.',y,d:', $post_category_str); |
|
| 4496 | 4496 | } |
| 4497 | 4497 | |
| 4498 | 4498 | $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
| 4499 | 4499 | |
| 4500 | - geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4500 | + geodir_set_postcat_structure($saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str); |
|
| 4501 | 4501 | } |
| 4502 | - $xtimings['###8.1'] = microtime(true)-$xstart; |
|
| 4503 | - if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4504 | - wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4502 | + $xtimings['###8.1'] = microtime(true) - $xstart; |
|
| 4503 | + if (!empty($save_post['post_tags'])) {
|
|
| 4504 | + wp_set_object_terms($saved_post_id, $save_post['post_tags'], $tags_taxonomy); |
|
| 4505 | 4505 | } |
| 4506 | - $xtimings['###9'] = microtime(true)-$xstart; |
|
| 4506 | + $xtimings['###9'] = microtime(true) - $xstart; |
|
| 4507 | 4507 | // Post images |
| 4508 | - if ( !empty( $post_images ) ) {
|
|
| 4508 | + if (!empty($post_images)) {
|
|
| 4509 | 4509 | $post_images = array_unique($post_images); |
| 4510 | 4510 | |
| 4511 | 4511 | $old_post_images_arr = array(); |
@@ -4513,65 +4513,65 @@ discard block |
||
| 4513 | 4513 | |
| 4514 | 4514 | $order = 1; |
| 4515 | 4515 | |
| 4516 | - $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4517 | - $xtimings['###9.1'] = microtime(true)-$xstart; |
|
| 4516 | + $old_post_images = geodir_get_images($saved_post_id); |
|
| 4517 | + $xtimings['###9.1'] = microtime(true) - $xstart; |
|
| 4518 | 4518 | if (!empty($old_post_images)) {
|
| 4519 | - foreach( $old_post_images as $old_post_image ) {
|
|
| 4519 | + foreach ($old_post_images as $old_post_image) {
|
|
| 4520 | 4520 | if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
| 4521 | 4521 | $old_post_images_arr[] = $old_post_image->file; |
| 4522 | 4522 | } |
| 4523 | 4523 | } |
| 4524 | 4524 | } |
| 4525 | 4525 | |
| 4526 | - foreach ( $post_images as $post_image ) {
|
|
| 4527 | - $image_name = basename( $post_image ); |
|
| 4526 | + foreach ($post_images as $post_image) {
|
|
| 4527 | + $image_name = basename($post_image); |
|
| 4528 | 4528 | $saved_post_images_arr[] = $image_name; |
| 4529 | 4529 | |
| 4530 | - if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4530 | + if (!empty($old_post_images_arr) && in_array($image_name, $old_post_images_arr)) {
|
|
| 4531 | 4531 | continue; // Skip if image already exists. |
| 4532 | 4532 | } |
| 4533 | 4533 | |
| 4534 | - $image_name_parts = explode( '.', $image_name ); |
|
| 4535 | - array_pop( $image_name_parts ); |
|
| 4536 | - $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4537 | - $xtimings['###9.2'] = microtime(true)-$xstart; |
|
| 4538 | - $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4539 | - $xtimings['###9.3'] = microtime(true)-$xstart; |
|
| 4540 | - if ( !empty( $arr_file_type ) ) {
|
|
| 4534 | + $image_name_parts = explode('.', $image_name);
|
|
| 4535 | + array_pop($image_name_parts); |
|
| 4536 | + $proper_image_name = implode('.', $image_name_parts);
|
|
| 4537 | + $xtimings['###9.2'] = microtime(true) - $xstart; |
|
| 4538 | + $arr_file_type = wp_check_filetype($image_name); |
|
| 4539 | + $xtimings['###9.3'] = microtime(true) - $xstart; |
|
| 4540 | + if (!empty($arr_file_type)) {
|
|
| 4541 | 4541 | $uploaded_file_type = $arr_file_type['type']; |
| 4542 | 4542 | |
| 4543 | 4543 | $attachment = array(); |
| 4544 | 4544 | $attachment['post_id'] = $saved_post_id; |
| 4545 | 4545 | $attachment['title'] = $proper_image_name; |
| 4546 | 4546 | $attachment['content'] = ''; |
| 4547 | - $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4547 | + $attachment['file'] = $uploads_subdir.'/'.$image_name; |
|
| 4548 | 4548 | $attachment['mime_type'] = $uploaded_file_type; |
| 4549 | 4549 | $attachment['menu_order'] = $order; |
| 4550 | 4550 | $attachment['is_featured'] = 0; |
| 4551 | 4551 | |
| 4552 | 4552 | $attachment_set = ''; |
| 4553 | - foreach ( $attachment as $key => $val ) {
|
|
| 4554 | - if ( $val != '' ) {
|
|
| 4555 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4553 | + foreach ($attachment as $key => $val) {
|
|
| 4554 | + if ($val != '') {
|
|
| 4555 | + $attachment_set .= $key." = '".$val."', "; |
|
| 4556 | 4556 | } |
| 4557 | 4557 | } |
| 4558 | - $attachment_set = trim( $attachment_set, ", " ); |
|
| 4558 | + $attachment_set = trim($attachment_set, ", "); |
|
| 4559 | 4559 | |
| 4560 | 4560 | // Add new attachment |
| 4561 | - $xtimings['###9.4'] = microtime(true)-$xstart; |
|
| 4562 | - $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4563 | - $xtimings['###9.5'] = microtime(true)-$xstart; |
|
| 4561 | + $xtimings['###9.4'] = microtime(true) - $xstart; |
|
| 4562 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
|
|
| 4563 | + $xtimings['###9.5'] = microtime(true) - $xstart; |
|
| 4564 | 4564 | $order++; |
| 4565 | 4565 | } |
| 4566 | 4566 | } |
| 4567 | 4567 | |
| 4568 | - $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4568 | + $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/".implode("' AND file NOT LIKE '%/", $saved_post_images_arr)."' )" : '';
|
|
| 4569 | 4569 | // Remove previous attachment |
| 4570 | - $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4571 | - $xtimings['###9.6'] = microtime(true)-$xstart; |
|
| 4572 | - if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4570 | + $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = ".(int) $saved_post_id." ".$saved_post_images_sql);
|
|
| 4571 | + $xtimings['###9.6'] = microtime(true) - $xstart; |
|
| 4572 | + if (!empty($saved_post_images_arr)) {
|
|
| 4573 | 4573 | geodir_set_wp_featured_image($saved_post_id); |
| 4574 | - $xtimings['###9.7'] = microtime(true)-$xstart; |
|
| 4574 | + $xtimings['###9.7'] = microtime(true) - $xstart; |
|
| 4575 | 4575 | /* |
| 4576 | 4576 | $menu_order = 1; |
| 4577 | 4577 | |
@@ -4587,14 +4587,14 @@ discard block |
||
| 4587 | 4587 | }*/ |
| 4588 | 4588 | } |
| 4589 | 4589 | |
| 4590 | - if ( $order > 1 ) {
|
|
| 4590 | + if ($order > 1) {
|
|
| 4591 | 4591 | $images++; |
| 4592 | 4592 | } |
| 4593 | 4593 | } |
| 4594 | - $xtimings['###10'] = microtime(true)-$xstart; |
|
| 4594 | + $xtimings['###10'] = microtime(true) - $xstart; |
|
| 4595 | 4595 | /** This action is documented in geodirectory-functions/post-functions.php */ |
| 4596 | - do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4597 | - $xtimings['###11'] = microtime(true)-$xstart; |
|
| 4596 | + do_action('geodir_after_save_listing', $saved_post_id, $gd_post);
|
|
| 4597 | + $xtimings['###11'] = microtime(true) - $xstart; |
|
| 4598 | 4598 | if (isset($is_featured)) {
|
| 4599 | 4599 | geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
| 4600 | 4600 | } |
@@ -4604,7 +4604,7 @@ discard block |
||
| 4604 | 4604 | if (isset($gd_post['expire_date'])) {
|
| 4605 | 4605 | geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
| 4606 | 4606 | } |
| 4607 | - $xtimings['###12'] = microtime(true)-$xstart; |
|
| 4607 | + $xtimings['###12'] = microtime(true) - $xstart; |
|
| 4608 | 4608 | } |
| 4609 | 4609 | |
| 4610 | 4610 | // WPML |
@@ -4617,11 +4617,11 @@ discard block |
||
| 4617 | 4617 | } |
| 4618 | 4618 | |
| 4619 | 4619 | //undo some stuff to make the import quicker |
| 4620 | - wp_defer_term_counting( false ); |
|
| 4621 | - wp_defer_comment_counting( false ); |
|
| 4622 | - $wpdb->query( 'COMMIT;' ); |
|
| 4623 | - $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4624 | - $xtimings['###13'] = microtime(true)-$xstart; |
|
| 4620 | + wp_defer_term_counting(false); |
|
| 4621 | + wp_defer_comment_counting(false); |
|
| 4622 | + $wpdb->query('COMMIT;');
|
|
| 4623 | + $wpdb->query('SET autocommit = 1;');
|
|
| 4624 | + $xtimings['###13'] = microtime(true) - $xstart; |
|
| 4625 | 4625 | $json = array(); |
| 4626 | 4626 | $json['processed'] = $processed_actual; |
| 4627 | 4627 | $json['created'] = $created; |
@@ -4630,13 +4630,13 @@ discard block |
||
| 4630 | 4630 | $json['invalid'] = $invalid; |
| 4631 | 4631 | $json['invalid_addr'] = $invalid_addr; |
| 4632 | 4632 | $json['images'] = $images; |
| 4633 | - $json['timing'] = microtime(true)-$xstart; |
|
| 4633 | + $json['timing'] = microtime(true) - $xstart; |
|
| 4634 | 4634 | $json['timings'] = $xtimings; |
| 4635 | 4635 | |
| 4636 | 4636 | |
| 4637 | - wp_send_json( $json ); |
|
| 4637 | + wp_send_json($json); |
|
| 4638 | 4638 | exit; |
| 4639 | - } else if ( $task == 'import_loc' ) {
|
|
| 4639 | + } else if ($task == 'import_loc') {
|
|
| 4640 | 4640 | global $gd_post_types; |
| 4641 | 4641 | $gd_post_types = $post_types; |
| 4642 | 4642 | |
@@ -4645,82 +4645,82 @@ discard block |
||
| 4645 | 4645 | |
| 4646 | 4646 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4647 | 4647 | $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
| 4648 | - wp_send_json( $json ); |
|
| 4648 | + wp_send_json($json); |
|
| 4649 | 4649 | } |
| 4650 | 4650 | |
| 4651 | 4651 | $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
| 4652 | - $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4652 | + $gd_error_location = __('Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory');
|
|
| 4653 | 4653 | for ($i = 1; $i <= $limit; $i++) {
|
| 4654 | 4654 | $index = $processed + $i; |
| 4655 | 4655 | |
| 4656 | 4656 | if (isset($file[$index])) {
|
| 4657 | 4657 | $row = $file[$index]; |
| 4658 | - $row = array_map( 'trim', $row ); |
|
| 4658 | + $row = array_map('trim', $row);
|
|
| 4659 | 4659 | $data = array(); |
| 4660 | 4660 | |
| 4661 | - foreach ($columns as $c => $column ) {
|
|
| 4661 | + foreach ($columns as $c => $column) {
|
|
| 4662 | 4662 | if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
|
| 4663 | 4663 | $data[$column] = $row[$c]; |
| 4664 | 4664 | } |
| 4665 | 4665 | } |
| 4666 | 4666 | |
| 4667 | - if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4667 | + if (empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4668 | 4668 | $invalid++; |
| 4669 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4669 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4670 | 4670 | continue; |
| 4671 | 4671 | } |
| 4672 | 4672 | |
| 4673 | 4673 | $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
| 4674 | 4674 | |
| 4675 | - if ( $import_choice == 'update' ) {
|
|
| 4676 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4677 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4675 | + if ($import_choice == 'update') {
|
|
| 4676 | + if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
|
|
| 4677 | + if ($location_id = geodir_location_update_city($data, true, $location)) {
|
|
| 4678 | 4678 | $updated++; |
| 4679 | 4679 | } else {
|
| 4680 | 4680 | $invalid++; |
| 4681 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4681 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4682 | 4682 | } |
| 4683 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4684 | - $data['location_id'] = (int)$location->location_id; |
|
| 4683 | + } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
|
|
| 4684 | + $data['location_id'] = (int) $location->location_id; |
|
| 4685 | 4685 | |
| 4686 | - if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 4687 | - $data['location_id'] = (int)$location->location_id; |
|
| 4688 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 4689 | - $data['location_id'] = (int)$location->location_id; |
|
| 4690 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 4691 | - $data['location_id'] = (int)$location->location_id; |
|
| 4686 | + if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region']))) {
|
|
| 4687 | + $data['location_id'] = (int) $location->location_id; |
|
| 4688 | + } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'region' => $data['region']))) {
|
|
| 4689 | + $data['location_id'] = (int) $location->location_id; |
|
| 4690 | + } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country']))) {
|
|
| 4691 | + $data['location_id'] = (int) $location->location_id; |
|
| 4692 | 4692 | } |
| 4693 | 4693 | |
| 4694 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4694 | + if ($location_id = geodir_location_update_city($data, true, $location)) {
|
|
| 4695 | 4695 | $updated++; |
| 4696 | 4696 | } else {
|
| 4697 | 4697 | $invalid++; |
| 4698 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4698 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4699 | 4699 | } |
| 4700 | 4700 | } else {
|
| 4701 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4701 | + if ($location_id = geodir_location_insert_city($data, true)) {
|
|
| 4702 | 4702 | $created++; |
| 4703 | 4703 | } else {
|
| 4704 | 4704 | $invalid++; |
| 4705 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4705 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4706 | 4706 | } |
| 4707 | 4707 | } |
| 4708 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4709 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4708 | + } elseif ($import_choice == 'skip') {
|
|
| 4709 | + if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
|
|
| 4710 | 4710 | $skipped++; |
| 4711 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4711 | + } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
|
|
| 4712 | 4712 | $skipped++; |
| 4713 | 4713 | } else {
|
| 4714 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4714 | + if ($location_id = geodir_location_insert_city($data, true)) {
|
|
| 4715 | 4715 | $created++; |
| 4716 | 4716 | } else {
|
| 4717 | 4717 | $invalid++; |
| 4718 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4718 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4719 | 4719 | } |
| 4720 | 4720 | } |
| 4721 | 4721 | } else {
|
| 4722 | 4722 | $invalid++; |
| 4723 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4723 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4724 | 4724 | } |
| 4725 | 4725 | } |
| 4726 | 4726 | } |
@@ -4734,24 +4734,24 @@ discard block |
||
| 4734 | 4734 | $json['invalid'] = $invalid; |
| 4735 | 4735 | $json['images'] = $images; |
| 4736 | 4736 | |
| 4737 | - wp_send_json( $json ); |
|
| 4738 | - } else if ( $task == 'import_hood' ) {
|
|
| 4737 | + wp_send_json($json); |
|
| 4738 | + } else if ($task == 'import_hood') {
|
|
| 4739 | 4739 | if (!empty($file)) {
|
| 4740 | 4740 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 4741 | 4741 | |
| 4742 | 4742 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4743 | 4743 | $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
| 4744 | - wp_send_json( $json ); |
|
| 4744 | + wp_send_json($json); |
|
| 4745 | 4745 | } |
| 4746 | 4746 | |
| 4747 | 4747 | $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
| 4748 | - $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 4748 | + $gd_error_hood = __('Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory');
|
|
| 4749 | 4749 | for ($i = 1; $i <= $limit; $i++) {
|
| 4750 | 4750 | $index = $processed + $i; |
| 4751 | 4751 | |
| 4752 | 4752 | if (isset($file[$index])) {
|
| 4753 | 4753 | $row = $file[$index]; |
| 4754 | - $row = array_map( 'trim', $row ); |
|
| 4754 | + $row = array_map('trim', $row);
|
|
| 4755 | 4755 | $data = array(); |
| 4756 | 4756 | |
| 4757 | 4757 | foreach ($columns as $c => $column) {
|
@@ -4762,20 +4762,20 @@ discard block |
||
| 4762 | 4762 | |
| 4763 | 4763 | if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
| 4764 | 4764 | $invalid++; |
| 4765 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4765 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4766 | 4766 | continue; |
| 4767 | 4767 | } |
| 4768 | 4768 | |
| 4769 | 4769 | $location_info = array(); |
| 4770 | - if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 4771 | - $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 4770 | + if (!empty($data['location_id']) && (int) $data['location_id'] > 0) {
|
|
| 4771 | + $location_info = geodir_get_location_by_id('', (int) $data['location_id']);
|
|
| 4772 | 4772 | } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
| 4773 | 4773 | $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
| 4774 | 4774 | } |
| 4775 | 4775 | |
| 4776 | 4776 | if (empty($location_info)) {
|
| 4777 | 4777 | $invalid++; |
| 4778 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4778 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4779 | 4779 | continue; |
| 4780 | 4780 | } |
| 4781 | 4781 | |
@@ -4790,35 +4790,35 @@ discard block |
||
| 4790 | 4790 | $hood_data['hood_longitude'] = $data['longitude']; |
| 4791 | 4791 | $hood_data['hood_location_id'] = $location_id; |
| 4792 | 4792 | |
| 4793 | - if ( $import_choice == 'update' ) {
|
|
| 4794 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4795 | - $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 4793 | + if ($import_choice == 'update') {
|
|
| 4794 | + if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
|
|
| 4795 | + $hood_data['hood_id'] = (int) $data['neighbourhood_id']; |
|
| 4796 | 4796 | |
| 4797 | 4797 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 4798 | 4798 | $updated++; |
| 4799 | 4799 | } else {
|
| 4800 | 4800 | $invalid++; |
| 4801 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4801 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4802 | 4802 | } |
| 4803 | 4803 | } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
| 4804 | - $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 4804 | + $hood_data['hood_id'] = (int) $neighbourhood->hood_id; |
|
| 4805 | 4805 | |
| 4806 | 4806 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 4807 | 4807 | $updated++; |
| 4808 | 4808 | } else {
|
| 4809 | 4809 | $invalid++; |
| 4810 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4810 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4811 | 4811 | } |
| 4812 | 4812 | } else {
|
| 4813 | 4813 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 4814 | 4814 | $created++; |
| 4815 | 4815 | } else {
|
| 4816 | 4816 | $invalid++; |
| 4817 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4817 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4818 | 4818 | } |
| 4819 | 4819 | } |
| 4820 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4821 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4820 | + } elseif ($import_choice == 'skip') {
|
|
| 4821 | + if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
|
|
| 4822 | 4822 | $skipped++; |
| 4823 | 4823 | } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
| 4824 | 4824 | $skipped++; |
@@ -4828,12 +4828,12 @@ discard block |
||
| 4828 | 4828 | $created++; |
| 4829 | 4829 | } else {
|
| 4830 | 4830 | $invalid++; |
| 4831 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4831 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4832 | 4832 | } |
| 4833 | 4833 | } |
| 4834 | 4834 | } else {
|
| 4835 | 4835 | $invalid++; |
| 4836 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4836 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4837 | 4837 | } |
| 4838 | 4838 | } |
| 4839 | 4839 | } |
@@ -4847,7 +4847,7 @@ discard block |
||
| 4847 | 4847 | $json['invalid'] = $invalid; |
| 4848 | 4848 | $json['images'] = $images; |
| 4849 | 4849 | |
| 4850 | - wp_send_json( $json ); |
|
| 4850 | + wp_send_json($json); |
|
| 4851 | 4851 | } |
| 4852 | 4852 | } |
| 4853 | 4853 | break; |
@@ -4891,29 +4891,29 @@ discard block |
||
| 4891 | 4891 | * } |
| 4892 | 4892 | * @return int|bool Term id when success, false when fail. |
| 4893 | 4893 | */ |
| 4894 | -function geodir_imex_insert_term( $taxonomy, $term_data ) {
|
|
| 4895 | - if ( empty( $taxonomy ) || empty( $term_data ) ) {
|
|
| 4894 | +function geodir_imex_insert_term($taxonomy, $term_data) {
|
|
| 4895 | + if (empty($taxonomy) || empty($term_data)) {
|
|
| 4896 | 4896 | return false; |
| 4897 | 4897 | } |
| 4898 | 4898 | |
| 4899 | - $term = isset( $term_data['name'] ) && !empty( $term_data['name'] ) ? $term_data['name'] : ''; |
|
| 4899 | + $term = isset($term_data['name']) && !empty($term_data['name']) ? $term_data['name'] : ''; |
|
| 4900 | 4900 | $args = array(); |
| 4901 | - $args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : ''; |
|
| 4902 | - $args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : ''; |
|
| 4903 | - $args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : ''; |
|
| 4901 | + $args['description'] = isset($term_data['description']) ? $term_data['description'] : ''; |
|
| 4902 | + $args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : ''; |
|
| 4903 | + $args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : ''; |
|
| 4904 | 4904 | |
| 4905 | - if ( ( !empty( $args['slug'] ) && term_exists( $args['slug'], $taxonomy ) ) || empty( $args['slug'] ) ) {
|
|
| 4906 | - $term_args = array_merge( $term_data, $args ); |
|
| 4907 | - $defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => ''); |
|
| 4908 | - $term_args = wp_parse_args( $term_args, $defaults ); |
|
| 4909 | - $term_args = sanitize_term( $term_args, $taxonomy, 'db' ); |
|
| 4910 | - $args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args ); |
|
| 4905 | + if ((!empty($args['slug']) && term_exists($args['slug'], $taxonomy)) || empty($args['slug'])) {
|
|
| 4906 | + $term_args = array_merge($term_data, $args); |
|
| 4907 | + $defaults = array('alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
|
|
| 4908 | + $term_args = wp_parse_args($term_args, $defaults); |
|
| 4909 | + $term_args = sanitize_term($term_args, $taxonomy, 'db'); |
|
| 4910 | + $args['slug'] = wp_unique_term_slug($args['slug'], (object) $term_args); |
|
| 4911 | 4911 | } |
| 4912 | 4912 | |
| 4913 | - if( !empty( $term ) ) {
|
|
| 4914 | - $result = wp_insert_term( $term, $taxonomy, $args ); |
|
| 4915 | - if( !is_wp_error( $result ) ) {
|
|
| 4916 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4913 | + if (!empty($term)) {
|
|
| 4914 | + $result = wp_insert_term($term, $taxonomy, $args); |
|
| 4915 | + if (!is_wp_error($result)) {
|
|
| 4916 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 4917 | 4917 | } |
| 4918 | 4918 | } |
| 4919 | 4919 | |
@@ -4943,36 +4943,36 @@ discard block |
||
| 4943 | 4943 | * } |
| 4944 | 4944 | * @return int|bool Term id when success, false when fail. |
| 4945 | 4945 | */ |
| 4946 | -function geodir_imex_update_term( $taxonomy, $term_data ) {
|
|
| 4947 | - if ( empty( $taxonomy ) || empty( $term_data ) ) {
|
|
| 4946 | +function geodir_imex_update_term($taxonomy, $term_data) {
|
|
| 4947 | + if (empty($taxonomy) || empty($term_data)) {
|
|
| 4948 | 4948 | return false; |
| 4949 | 4949 | } |
| 4950 | 4950 | |
| 4951 | - $term_id = isset( $term_data['term_id'] ) && !empty( $term_data['term_id'] ) ? $term_data['term_id'] : 0; |
|
| 4951 | + $term_id = isset($term_data['term_id']) && !empty($term_data['term_id']) ? $term_data['term_id'] : 0; |
|
| 4952 | 4952 | |
| 4953 | 4953 | $args = array(); |
| 4954 | - $args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : ''; |
|
| 4955 | - $args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : ''; |
|
| 4956 | - $args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : ''; |
|
| 4954 | + $args['description'] = isset($term_data['description']) ? $term_data['description'] : ''; |
|
| 4955 | + $args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : ''; |
|
| 4956 | + $args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : ''; |
|
| 4957 | 4957 | |
| 4958 | - if ( $term_id > 0 && $term_info = (array)get_term( $term_id, $taxonomy ) ) {
|
|
| 4958 | + if ($term_id > 0 && $term_info = (array) get_term($term_id, $taxonomy)) {
|
|
| 4959 | 4959 | $term_data['term_id'] = $term_info['term_id']; |
| 4960 | 4960 | |
| 4961 | - $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
|
| 4961 | + $result = wp_update_term($term_data['term_id'], $taxonomy, $term_data); |
|
| 4962 | 4962 | |
| 4963 | - if( !is_wp_error( $result ) ) {
|
|
| 4964 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4963 | + if (!is_wp_error($result)) {
|
|
| 4964 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 4965 | 4965 | } |
| 4966 | - } else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 4966 | + } else if ($term_data['slug'] != '' && $term_info = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 4967 | 4967 | $term_data['term_id'] = $term_info['term_id']; |
| 4968 | 4968 | |
| 4969 | - $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
|
| 4969 | + $result = wp_update_term($term_data['term_id'], $taxonomy, $term_data); |
|
| 4970 | 4970 | |
| 4971 | - if( !is_wp_error( $result ) ) {
|
|
| 4972 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4971 | + if (!is_wp_error($result)) {
|
|
| 4972 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 4973 | 4973 | } |
| 4974 | 4974 | } else {
|
| 4975 | - return geodir_imex_insert_term( $taxonomy, $term_data ); |
|
| 4975 | + return geodir_imex_insert_term($taxonomy, $term_data); |
|
| 4976 | 4976 | } |
| 4977 | 4977 | |
| 4978 | 4978 | return false; |
@@ -4991,20 +4991,20 @@ discard block |
||
| 4991 | 4991 | * @param string $post_type Post type. |
| 4992 | 4992 | * @return int Posts count. |
| 4993 | 4993 | */ |
| 4994 | -function geodir_get_posts_count( $post_type ) {
|
|
| 4994 | +function geodir_get_posts_count($post_type) {
|
|
| 4995 | 4995 | global $wpdb, $plugin_prefix; |
| 4996 | 4996 | |
| 4997 | - if ( !post_type_exists( $post_type ) ) {
|
|
| 4997 | + if (!post_type_exists($post_type)) {
|
|
| 4998 | 4998 | return 0; |
| 4999 | 4999 | } |
| 5000 | 5000 | |
| 5001 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5001 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5002 | 5002 | |
| 5003 | 5003 | // Skip listing with statuses trash, auto-draft etc... |
| 5004 | 5004 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5005 | 5005 | $where_statuses = ''; |
| 5006 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5007 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5006 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5007 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5008 | 5008 | } |
| 5009 | 5009 | |
| 5010 | 5010 | /** |
@@ -5015,11 +5015,11 @@ discard block |
||
| 5015 | 5015 | * |
| 5016 | 5016 | * @param string $where SQL where clause part. |
| 5017 | 5017 | */ |
| 5018 | - $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5018 | + $where_statuses = apply_filters('geodir_get_posts_count', $where_statuses, $post_type);
|
|
| 5019 | 5019 | |
| 5020 | - $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5020 | + $query = $wpdb->prepare("SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses, $post_type);
|
|
| 5021 | 5021 | |
| 5022 | - $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5022 | + $posts_count = (int) $wpdb->get_var($query); |
|
| 5023 | 5023 | |
| 5024 | 5024 | /** |
| 5025 | 5025 | * Modify returned post counts for the current post type. |
@@ -5030,7 +5030,7 @@ discard block |
||
| 5030 | 5030 | * @param int $posts_count Post counts. |
| 5031 | 5031 | * @param string $post_type Post type. |
| 5032 | 5032 | */ |
| 5033 | - $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5033 | + $posts_count = apply_filters('geodir_imex_count_posts', $posts_count, $post_type);
|
|
| 5034 | 5034 | |
| 5035 | 5035 | return $posts_count; |
| 5036 | 5036 | } |
@@ -5052,19 +5052,19 @@ discard block |
||
| 5052 | 5052 | * @param int $page_no Page number. Default 0. |
| 5053 | 5053 | * @return array Array of posts data. |
| 5054 | 5054 | */ |
| 5055 | -function geodir_imex_get_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5055 | +function geodir_imex_get_posts($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5056 | 5056 | global $wp_filesystem; |
| 5057 | 5057 | |
| 5058 | - $posts = geodir_get_export_posts( $post_type, $per_page, $page_no ); |
|
| 5058 | + $posts = geodir_get_export_posts($post_type, $per_page, $page_no); |
|
| 5059 | 5059 | |
| 5060 | 5060 | $csv_rows = array(); |
| 5061 | 5061 | |
| 5062 | - if ( !empty( $posts ) ) {
|
|
| 5063 | - $is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' ); |
|
| 5062 | + if (!empty($posts)) {
|
|
| 5063 | + $is_payment_plugin = is_plugin_active('geodir_payment_manager/geodir_payment_manager.php');
|
|
| 5064 | 5064 | $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
| 5065 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5065 | + $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
|
|
| 5066 | 5066 | $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
| 5067 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5067 | + $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5068 | 5068 | |
| 5069 | 5069 | $csv_row = array(); |
| 5070 | 5070 | $csv_row[] = 'post_id'; |
@@ -5075,7 +5075,7 @@ discard block |
||
| 5075 | 5075 | $csv_row[] = 'default_category'; |
| 5076 | 5076 | $csv_row[] = 'post_tags'; |
| 5077 | 5077 | $csv_row[] = 'post_type'; |
| 5078 | - if ( $post_type == 'gd_event' ) {
|
|
| 5078 | + if ($post_type == 'gd_event') {
|
|
| 5079 | 5079 | $csv_row[] = 'event_date'; |
| 5080 | 5080 | $csv_row[] = 'event_enddate'; |
| 5081 | 5081 | $csv_row[] = 'starttime'; |
@@ -5134,15 +5134,15 @@ discard block |
||
| 5134 | 5134 | } |
| 5135 | 5135 | // WPML |
| 5136 | 5136 | |
| 5137 | - $custom_fields = geodir_imex_get_custom_fields( $post_type ); |
|
| 5138 | - if ( !empty( $custom_fields ) ) {
|
|
| 5139 | - foreach ( $custom_fields as $custom_field ) {
|
|
| 5137 | + $custom_fields = geodir_imex_get_custom_fields($post_type); |
|
| 5138 | + if (!empty($custom_fields)) {
|
|
| 5139 | + foreach ($custom_fields as $custom_field) {
|
|
| 5140 | 5140 | $csv_row[] = $custom_field->htmlvar_name; |
| 5141 | 5141 | } |
| 5142 | 5142 | } |
| 5143 | 5143 | |
| 5144 | 5144 | // Export franchise fields |
| 5145 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 5145 | + $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
|
|
| 5146 | 5146 | if ($is_franchise_active) {
|
| 5147 | 5147 | $csv_row[] = 'gd_is_franchise'; |
| 5148 | 5148 | $csv_row[] = 'gd_franchise_lock'; |
@@ -5163,28 +5163,28 @@ discard block |
||
| 5163 | 5163 | $csv_rows[] = $csv_row; |
| 5164 | 5164 | |
| 5165 | 5165 | $images_count = 5; |
| 5166 | - $xx=0; |
|
| 5167 | - foreach ( $posts as $post ) {$xx++;
|
|
| 5166 | + $xx = 0; |
|
| 5167 | + foreach ($posts as $post) {$xx++;
|
|
| 5168 | 5168 | $post_id = $post['ID']; |
| 5169 | 5169 | |
| 5170 | - $gd_post_info = geodir_get_post_info( $post_id ); |
|
| 5171 | - $post_info = (array)$gd_post_info; |
|
| 5170 | + $gd_post_info = geodir_get_post_info($post_id); |
|
| 5171 | + $post_info = (array) $gd_post_info; |
|
| 5172 | 5172 | |
| 5173 | - $taxonomy_category = $post_type . 'category'; |
|
| 5174 | - $taxonomy_tags = $post_type . '_tags'; |
|
| 5173 | + $taxonomy_category = $post_type.'category'; |
|
| 5174 | + $taxonomy_tags = $post_type.'_tags'; |
|
| 5175 | 5175 | |
| 5176 | 5176 | $post_category = ''; |
| 5177 | 5177 | $default_category_id = $gd_post_info->default_category; |
| 5178 | 5178 | $default_category = ''; |
| 5179 | 5179 | $post_tags = ''; |
| 5180 | - $terms = wp_get_post_terms( $post_id, array( $taxonomy_category, $taxonomy_tags ) ); |
|
| 5180 | + $terms = wp_get_post_terms($post_id, array($taxonomy_category, $taxonomy_tags)); |
|
| 5181 | 5181 | |
| 5182 | - if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
|
|
| 5182 | + if (!empty($terms) && !is_wp_error($terms)) {
|
|
| 5183 | 5183 | $post_category = array(); |
| 5184 | 5184 | $post_tags = array(); |
| 5185 | 5185 | |
| 5186 | - foreach ( $terms as $term ) {
|
|
| 5187 | - if ( $term->taxonomy == $taxonomy_category ) {
|
|
| 5186 | + foreach ($terms as $term) {
|
|
| 5187 | + if ($term->taxonomy == $taxonomy_category) {
|
|
| 5188 | 5188 | $post_category[] = $term->name; |
| 5189 | 5189 | |
| 5190 | 5190 | if ($default_category_id == $term->term_id) {
|
@@ -5192,7 +5192,7 @@ discard block |
||
| 5192 | 5192 | } |
| 5193 | 5193 | } |
| 5194 | 5194 | |
| 5195 | - if ( $term->taxonomy == $taxonomy_tags ) {
|
|
| 5195 | + if ($term->taxonomy == $taxonomy_tags) {
|
|
| 5196 | 5196 | $post_tags[] = $term->name; |
| 5197 | 5197 | } |
| 5198 | 5198 | } |
@@ -5200,47 +5200,47 @@ discard block |
||
| 5200 | 5200 | if (empty($default_category) && !empty($post_category)) {
|
| 5201 | 5201 | $default_category = $post_category[0]; // Set first one as default category. |
| 5202 | 5202 | } |
| 5203 | - $post_category = !empty( $post_category ) ? implode( ',', $post_category ) : ''; |
|
| 5204 | - $post_tags = !empty( $post_tags ) ? implode( ',', $post_tags ) : ''; |
|
| 5203 | + $post_category = !empty($post_category) ? implode(',', $post_category) : '';
|
|
| 5204 | + $post_tags = !empty($post_tags) ? implode(',', $post_tags) : '';
|
|
| 5205 | 5205 | } |
| 5206 | 5206 | |
| 5207 | 5207 | // Franchise data |
| 5208 | - if ($is_franchise_active && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 && geodir_franchise_check((int)$post_info['franchise'])) {
|
|
| 5208 | + if ($is_franchise_active && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 && geodir_franchise_check((int) $post_info['franchise'])) {
|
|
| 5209 | 5209 | $franchise_id = $post_info['franchise']; |
| 5210 | 5210 | $gd_franchise_info = geodir_get_post_info($franchise_id); |
| 5211 | 5211 | |
| 5212 | 5212 | if (geodir_franchise_pkg_is_active($gd_franchise_info)) {
|
| 5213 | - $franchise_info = (array)$gd_franchise_info; |
|
| 5213 | + $franchise_info = (array) $gd_franchise_info; |
|
| 5214 | 5214 | $locked_fields = geodir_franchise_get_locked_fields($franchise_id, true); |
| 5215 | 5215 | |
| 5216 | 5216 | if (!empty($locked_fields)) {
|
| 5217 | - foreach( $locked_fields as $locked_field) {
|
|
| 5217 | + foreach ($locked_fields as $locked_field) {
|
|
| 5218 | 5218 | if (isset($post_info[$locked_field]) && isset($franchise_info[$locked_field])) {
|
| 5219 | 5219 | $post_info[$locked_field] = $franchise_info[$locked_field]; |
| 5220 | 5220 | } |
| 5221 | 5221 | |
| 5222 | 5222 | if (in_array($taxonomy_category, $locked_fields) || in_array('post_tags', $locked_fields)) {
|
| 5223 | - $franchise_terms = wp_get_post_terms( $franchise_id, array( $taxonomy_category, $taxonomy_tags ) ); |
|
| 5223 | + $franchise_terms = wp_get_post_terms($franchise_id, array($taxonomy_category, $taxonomy_tags)); |
|
| 5224 | 5224 | |
| 5225 | - if ( !empty( $franchise_terms ) && !is_wp_error( $franchise_terms ) ) {
|
|
| 5225 | + if (!empty($franchise_terms) && !is_wp_error($franchise_terms)) {
|
|
| 5226 | 5226 | $franchise_post_category = array(); |
| 5227 | 5227 | $franchise_post_tags = array(); |
| 5228 | 5228 | |
| 5229 | - foreach ( $franchise_terms as $franchise_term ) {
|
|
| 5230 | - if ( $franchise_term->taxonomy == $taxonomy_category ) {
|
|
| 5229 | + foreach ($franchise_terms as $franchise_term) {
|
|
| 5230 | + if ($franchise_term->taxonomy == $taxonomy_category) {
|
|
| 5231 | 5231 | $franchise_post_category[] = $franchise_term->name; |
| 5232 | 5232 | } |
| 5233 | 5233 | |
| 5234 | - if ( $franchise_term->taxonomy == $taxonomy_tags ) {
|
|
| 5234 | + if ($franchise_term->taxonomy == $taxonomy_tags) {
|
|
| 5235 | 5235 | $franchise_post_tags[] = $franchise_term->name; |
| 5236 | 5236 | } |
| 5237 | 5237 | } |
| 5238 | 5238 | |
| 5239 | 5239 | if (in_array($taxonomy_category, $locked_fields)) {
|
| 5240 | - $post_category = !empty( $franchise_post_category ) ? implode( ',', $franchise_post_category ) : ''; |
|
| 5240 | + $post_category = !empty($franchise_post_category) ? implode(',', $franchise_post_category) : '';
|
|
| 5241 | 5241 | } |
| 5242 | 5242 | if (in_array('post_tags', $locked_fields)) {
|
| 5243 | - $post_tags = !empty( $franchise_post_tags ) ? implode( ',', $franchise_post_tags ) : ''; |
|
| 5243 | + $post_tags = !empty($franchise_post_tags) ? implode(',', $franchise_post_tags) : '';
|
|
| 5244 | 5244 | } |
| 5245 | 5245 | } |
| 5246 | 5246 | } |
@@ -5249,18 +5249,18 @@ discard block |
||
| 5249 | 5249 | } |
| 5250 | 5250 | } |
| 5251 | 5251 | |
| 5252 | - $post_images = geodir_get_images( $post_id ); |
|
| 5252 | + $post_images = geodir_get_images($post_id); |
|
| 5253 | 5253 | $current_images = array(); |
| 5254 | - if ( !empty( $post_images ) ) {
|
|
| 5255 | - foreach ( $post_images as $post_image ) {
|
|
| 5256 | - $post_image = (array)$post_image; |
|
| 5257 | - $image = !empty( $post_image ) && isset( $post_image['path'] ) && $wp_filesystem->is_file( $post_image['path'] ) && $wp_filesystem->exists( $post_image['path'] ) ? $post_image['src'] : ''; |
|
| 5258 | - if ( $image ) {
|
|
| 5254 | + if (!empty($post_images)) {
|
|
| 5255 | + foreach ($post_images as $post_image) {
|
|
| 5256 | + $post_image = (array) $post_image; |
|
| 5257 | + $image = !empty($post_image) && isset($post_image['path']) && $wp_filesystem->is_file($post_image['path']) && $wp_filesystem->exists($post_image['path']) ? $post_image['src'] : ''; |
|
| 5258 | + if ($image) {
|
|
| 5259 | 5259 | $current_images[] = $image; |
| 5260 | 5260 | } |
| 5261 | 5261 | } |
| 5262 | 5262 | |
| 5263 | - $images_count = max( $images_count, count( $current_images ) ); |
|
| 5263 | + $images_count = max($images_count, count($current_images)); |
|
| 5264 | 5264 | } |
| 5265 | 5265 | |
| 5266 | 5266 | $csv_row = array(); |
@@ -5272,7 +5272,7 @@ discard block |
||
| 5272 | 5272 | $csv_row[] = $default_category; // default_category |
| 5273 | 5273 | $csv_row[] = $post_tags; // post_tags |
| 5274 | 5274 | $csv_row[] = $post_type; // post_type |
| 5275 | - if ( $post_type == 'gd_event' ) {
|
|
| 5275 | + if ($post_type == 'gd_event') {
|
|
| 5276 | 5276 | $event_data = geodir_imex_get_event_data($post, $gd_post_info); |
| 5277 | 5277 | $csv_row[] = $event_data['event_date']; // event_date |
| 5278 | 5278 | $csv_row[] = $event_data['event_enddate']; // enddate |
@@ -5293,12 +5293,12 @@ discard block |
||
| 5293 | 5293 | $csv_row[] = $event_data['recurring_end_date']; // repeat_end |
| 5294 | 5294 | } |
| 5295 | 5295 | $csv_row[] = $post_info['post_status']; // post_status |
| 5296 | - $csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
|
| 5296 | + $csv_row[] = (int) $post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
|
| 5297 | 5297 | if ($is_claim_active) {
|
| 5298 | - $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5298 | + $csv_row[] = !empty($post_info['claimed']) && (int) $post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5299 | 5299 | } |
| 5300 | 5300 | if ($is_payment_plugin) {
|
| 5301 | - $csv_row[] = (int)$post_info['package_id']; // package_id |
|
| 5301 | + $csv_row[] = (int) $post_info['package_id']; // package_id |
|
| 5302 | 5302 | $csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days |
| 5303 | 5303 | $csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
|
| 5304 | 5304 | } |
@@ -5335,14 +5335,14 @@ discard block |
||
| 5335 | 5335 | $csv_row[] = stripslashes($post_info['geodir_special_offers']); // geodir_special_offers |
| 5336 | 5336 | // WPML |
| 5337 | 5337 | if ($is_wpml) {
|
| 5338 | - $csv_row[] = geodir_get_language_for_element( $post_id, 'post_' . $post_type ); |
|
| 5339 | - $csv_row[] = geodir_imex_original_post_id( $post_id, 'post_' . $post_type ); |
|
| 5338 | + $csv_row[] = geodir_get_language_for_element($post_id, 'post_'.$post_type); |
|
| 5339 | + $csv_row[] = geodir_imex_original_post_id($post_id, 'post_'.$post_type); |
|
| 5340 | 5340 | } |
| 5341 | 5341 | // WPML |
| 5342 | 5342 | |
| 5343 | - if ( !empty( $custom_fields ) ) {
|
|
| 5344 | - foreach ( $custom_fields as $custom_field ) {
|
|
| 5345 | - $csv_row[] = isset( $post_info[$custom_field->htmlvar_name] ) ? $post_info[$custom_field->htmlvar_name] : ''; |
|
| 5343 | + if (!empty($custom_fields)) {
|
|
| 5344 | + foreach ($custom_fields as $custom_field) {
|
|
| 5345 | + $csv_row[] = isset($post_info[$custom_field->htmlvar_name]) ? $post_info[$custom_field->htmlvar_name] : ''; |
|
| 5346 | 5346 | } |
| 5347 | 5347 | } |
| 5348 | 5348 | |
@@ -5353,15 +5353,15 @@ discard block |
||
| 5353 | 5353 | $franchise = ''; |
| 5354 | 5354 | |
| 5355 | 5355 | if (geodir_franchise_pkg_is_active($gd_post_info)) {
|
| 5356 | - $gd_is_franchise = (int)get_post_meta( $post_id, 'gd_is_franchise', true ); |
|
| 5357 | - $locaked_fields = $gd_is_franchise ? get_post_meta( $post_id, 'gd_franchise_lock', true ) : ''; |
|
| 5356 | + $gd_is_franchise = (int) get_post_meta($post_id, 'gd_is_franchise', true); |
|
| 5357 | + $locaked_fields = $gd_is_franchise ? get_post_meta($post_id, 'gd_franchise_lock', true) : ''; |
|
| 5358 | 5358 | $locaked_fields = (is_array($locaked_fields) && !empty($locaked_fields) ? implode(",", $locaked_fields) : '');
|
| 5359 | - $franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 ? (int)$post_info['franchise'] : 0; // franchise id |
|
| 5359 | + $franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 ? (int) $post_info['franchise'] : 0; // franchise id |
|
| 5360 | 5360 | } |
| 5361 | 5361 | |
| 5362 | - $csv_row[] = (int)$gd_is_franchise; // gd_is_franchise |
|
| 5362 | + $csv_row[] = (int) $gd_is_franchise; // gd_is_franchise |
|
| 5363 | 5363 | $csv_row[] = $locaked_fields; // gd_franchise_lock fields |
| 5364 | - $csv_row[] = (int)$franchise; // franchise id |
|
| 5364 | + $csv_row[] = (int) $franchise; // franchise id |
|
| 5365 | 5365 | } |
| 5366 | 5366 | |
| 5367 | 5367 | /** |
@@ -5375,15 +5375,15 @@ discard block |
||
| 5375 | 5375 | */ |
| 5376 | 5376 | $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
| 5377 | 5377 | |
| 5378 | - for ( $c = 0; $c < $images_count; $c++ ) {
|
|
| 5379 | - $csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE |
|
| 5378 | + for ($c = 0; $c < $images_count; $c++) {
|
|
| 5379 | + $csv_row[] = isset($current_images[$c]) ? $current_images[$c] : ''; // IMAGE |
|
| 5380 | 5380 | } |
| 5381 | 5381 | |
| 5382 | 5382 | $csv_rows[] = $csv_row; |
| 5383 | 5383 | |
| 5384 | 5384 | } |
| 5385 | 5385 | |
| 5386 | - for ( $c = 0; $c < $images_count; $c++ ) {
|
|
| 5386 | + for ($c = 0; $c < $images_count; $c++) {
|
|
| 5387 | 5387 | $csv_rows[0][] = 'IMAGE'; |
| 5388 | 5388 | } |
| 5389 | 5389 | } |
@@ -5405,30 +5405,30 @@ discard block |
||
| 5405 | 5405 | * @param int $page_no Page number. Default 0. |
| 5406 | 5406 | * @return array Array of posts data. |
| 5407 | 5407 | */ |
| 5408 | -function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5408 | +function geodir_get_export_posts($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5409 | 5409 | global $wpdb, $plugin_prefix; |
| 5410 | 5410 | |
| 5411 | - if ( ! post_type_exists( $post_type ) ) |
|
| 5411 | + if (!post_type_exists($post_type)) |
|
| 5412 | 5412 | return new stdClass; |
| 5413 | 5413 | |
| 5414 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5414 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5415 | 5415 | |
| 5416 | 5416 | $limit = ''; |
| 5417 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5418 | - $offset = ( $page_no - 1 ) * $per_page; |
|
| 5417 | + if ($per_page > 0 && $page_no > 0) {
|
|
| 5418 | + $offset = ($page_no - 1) * $per_page; |
|
| 5419 | 5419 | |
| 5420 | - if ( $offset > 0 ) {
|
|
| 5421 | - $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5420 | + if ($offset > 0) {
|
|
| 5421 | + $limit = " LIMIT ".$offset.",".$per_page; |
|
| 5422 | 5422 | } else {
|
| 5423 | - $limit = " LIMIT " . $per_page; |
|
| 5423 | + $limit = " LIMIT ".$per_page; |
|
| 5424 | 5424 | } |
| 5425 | 5425 | } |
| 5426 | 5426 | |
| 5427 | 5427 | // Skip listing with statuses trash, auto-draft etc... |
| 5428 | 5428 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5429 | 5429 | $where_statuses = ''; |
| 5430 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5431 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5430 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5431 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5432 | 5432 | } |
| 5433 | 5433 | |
| 5434 | 5434 | /** |
@@ -5439,9 +5439,9 @@ discard block |
||
| 5439 | 5439 | * |
| 5440 | 5440 | * @param string $where SQL where clause part. |
| 5441 | 5441 | */ |
| 5442 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5442 | + $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
|
|
| 5443 | 5443 | |
| 5444 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5444 | + $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." ORDER BY {$wpdb->posts}.ID ASC".$limit, $post_type);
|
|
| 5445 | 5445 | /** |
| 5446 | 5446 | * Modify returned posts SQL query for the current post type. |
| 5447 | 5447 | * |
@@ -5451,8 +5451,8 @@ discard block |
||
| 5451 | 5451 | * @param int $query The SQL query. |
| 5452 | 5452 | * @param string $post_type Post type. |
| 5453 | 5453 | */ |
| 5454 | - $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5455 | - $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5454 | + $query = apply_filters('geodir_imex_export_posts_query', $query, $post_type);
|
|
| 5455 | + $results = (array) $wpdb->get_results($wpdb->prepare($query, $post_type), ARRAY_A); |
|
| 5456 | 5456 | |
| 5457 | 5457 | /** |
| 5458 | 5458 | * Modify returned post results for the current post type. |
@@ -5463,7 +5463,7 @@ discard block |
||
| 5463 | 5463 | * @param object $results An object containing all post ids. |
| 5464 | 5464 | * @param string $post_type Post type. |
| 5465 | 5465 | */ |
| 5466 | - return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5466 | + return apply_filters('geodir_export_posts', $results, $post_type);
|
|
| 5467 | 5467 | } |
| 5468 | 5468 | |
| 5469 | 5469 | /** |
@@ -5481,24 +5481,24 @@ discard block |
||
| 5481 | 5481 | * @param string $post_type Post type. |
| 5482 | 5482 | * @return string The SQL query. |
| 5483 | 5483 | */ |
| 5484 | -function geodir_imex_get_events_query( $query, $post_type ) {
|
|
| 5485 | - if ( $post_type == 'gd_event' ) {
|
|
| 5484 | +function geodir_imex_get_events_query($query, $post_type) {
|
|
| 5485 | + if ($post_type == 'gd_event') {
|
|
| 5486 | 5486 | global $wpdb, $plugin_prefix; |
| 5487 | 5487 | |
| 5488 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5488 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5489 | 5489 | $schedule_table = EVENT_SCHEDULE; |
| 5490 | 5490 | |
| 5491 | 5491 | // Skip listing with statuses trash, auto-draft etc... |
| 5492 | 5492 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5493 | 5493 | $where_statuses = ''; |
| 5494 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5495 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5494 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5495 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5496 | 5496 | } |
| 5497 | 5497 | |
| 5498 | 5498 | /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
| 5499 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5499 | + $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
|
|
| 5500 | 5500 | |
| 5501 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5501 | + $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type);
|
|
| 5502 | 5502 | } |
| 5503 | 5503 | |
| 5504 | 5504 | return $query; |
@@ -5522,35 +5522,35 @@ discard block |
||
| 5522 | 5522 | * @param string $post_type Post type. |
| 5523 | 5523 | * @return int Total terms count. |
| 5524 | 5524 | */ |
| 5525 | -function geodir_get_terms_count( $post_type ) {
|
|
| 5526 | - $args = array( 'hide_empty' => 0 ); |
|
| 5525 | +function geodir_get_terms_count($post_type) {
|
|
| 5526 | + $args = array('hide_empty' => 0);
|
|
| 5527 | 5527 | |
| 5528 | - remove_all_filters( 'get_terms' ); |
|
| 5528 | + remove_all_filters('get_terms');
|
|
| 5529 | 5529 | |
| 5530 | - $taxonomy = $post_type . 'category'; |
|
| 5530 | + $taxonomy = $post_type.'category'; |
|
| 5531 | 5531 | |
| 5532 | 5532 | // WPML |
| 5533 | 5533 | $is_wpml = geodir_is_wpml(); |
| 5534 | 5534 | $active_lang = 'all'; |
| 5535 | - if ( $is_wpml ) {
|
|
| 5535 | + if ($is_wpml) {
|
|
| 5536 | 5536 | global $sitepress; |
| 5537 | 5537 | $active_lang = $sitepress->get_current_language(); |
| 5538 | 5538 | |
| 5539 | - if ( $active_lang != 'all' ) {
|
|
| 5540 | - $sitepress->switch_lang( 'all', true ); |
|
| 5539 | + if ($active_lang != 'all') {
|
|
| 5540 | + $sitepress->switch_lang('all', true);
|
|
| 5541 | 5541 | } |
| 5542 | 5542 | } |
| 5543 | 5543 | // WPML |
| 5544 | 5544 | |
| 5545 | - $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5545 | + $count_terms = wp_count_terms($taxonomy, $args); |
|
| 5546 | 5546 | |
| 5547 | 5547 | // WPML |
| 5548 | - if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5548 | + if ($is_wpml && $active_lang !== 'all') {
|
|
| 5549 | 5549 | global $sitepress; |
| 5550 | - $sitepress->switch_lang( $active_lang, true ); |
|
| 5550 | + $sitepress->switch_lang($active_lang, true); |
|
| 5551 | 5551 | } |
| 5552 | 5552 | // WPML |
| 5553 | - $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5553 | + $count_terms = !is_wp_error($count_terms) ? $count_terms : 0; |
|
| 5554 | 5554 | |
| 5555 | 5555 | return $count_terms; |
| 5556 | 5556 | } |
@@ -5567,23 +5567,23 @@ discard block |
||
| 5567 | 5567 | * @param int $page_no Page number. Default 0. |
| 5568 | 5568 | * @return array Array of terms data. |
| 5569 | 5569 | */ |
| 5570 | -function geodir_imex_get_terms( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5571 | - $args = array( 'hide_empty' => 0, 'orderby' => 'id' ); |
|
| 5570 | +function geodir_imex_get_terms($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5571 | + $args = array('hide_empty' => 0, 'orderby' => 'id');
|
|
| 5572 | 5572 | |
| 5573 | - remove_all_filters( 'get_terms' ); |
|
| 5573 | + remove_all_filters('get_terms');
|
|
| 5574 | 5574 | |
| 5575 | - $taxonomy = $post_type . 'category'; |
|
| 5575 | + $taxonomy = $post_type.'category'; |
|
| 5576 | 5576 | |
| 5577 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5578 | - $args['offset'] = ( $page_no - 1 ) * $per_page; |
|
| 5577 | + if ($per_page > 0 && $page_no > 0) {
|
|
| 5578 | + $args['offset'] = ($page_no - 1) * $per_page; |
|
| 5579 | 5579 | $args['number'] = $per_page; |
| 5580 | 5580 | } |
| 5581 | 5581 | |
| 5582 | - $terms = get_terms( $taxonomy, $args ); |
|
| 5582 | + $terms = get_terms($taxonomy, $args); |
|
| 5583 | 5583 | |
| 5584 | 5584 | $csv_rows = array(); |
| 5585 | 5585 | |
| 5586 | - if ( !empty( $terms ) ) {
|
|
| 5586 | + if (!empty($terms)) {
|
|
| 5587 | 5587 | $csv_row = array(); |
| 5588 | 5588 | $csv_row[] = 'cat_id'; |
| 5589 | 5589 | $csv_row[] = 'cat_name'; |
@@ -5605,16 +5605,16 @@ discard block |
||
| 5605 | 5605 | |
| 5606 | 5606 | $csv_rows[] = $csv_row; |
| 5607 | 5607 | |
| 5608 | - foreach ( $terms as $term ) {
|
|
| 5609 | - $cat_icon = get_tax_meta( $term->term_id, 'ct_cat_icon', false, $post_type ); |
|
| 5610 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 5608 | + foreach ($terms as $term) {
|
|
| 5609 | + $cat_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $post_type); |
|
| 5610 | + $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : ''; |
|
| 5611 | 5611 | |
| 5612 | - $cat_image = geodir_get_default_catimage( $term->term_id, $post_type ); |
|
| 5613 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 5612 | + $cat_image = geodir_get_default_catimage($term->term_id, $post_type); |
|
| 5613 | + $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; |
|
| 5614 | 5614 | |
| 5615 | 5615 | $cat_parent = ''; |
| 5616 | - if (isset($term->parent) && (int)$term->parent > 0 && term_exists((int)$term->parent, $taxonomy)) {
|
|
| 5617 | - $parent_term = (array)get_term_by( 'id', (int)$term->parent, $taxonomy ); |
|
| 5616 | + if (isset($term->parent) && (int) $term->parent > 0 && term_exists((int) $term->parent, $taxonomy)) {
|
|
| 5617 | + $parent_term = (array) get_term_by('id', (int) $term->parent, $taxonomy);
|
|
| 5618 | 5618 | $cat_parent = !empty($parent_term) && isset($parent_term['name']) ? $parent_term['name'] : ''; |
| 5619 | 5619 | } |
| 5620 | 5620 | |
@@ -5624,15 +5624,15 @@ discard block |
||
| 5624 | 5624 | $csv_row[] = $term->slug; |
| 5625 | 5625 | $csv_row[] = $post_type; |
| 5626 | 5626 | $csv_row[] = $cat_parent; |
| 5627 | - $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type ); |
|
| 5627 | + $csv_row[] = get_tax_meta($term->term_id, 'ct_cat_schema', false, $post_type); |
|
| 5628 | 5628 | // WPML |
| 5629 | 5629 | if ($is_wpml) {
|
| 5630 | - $csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5631 | - $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5630 | + $csv_row[] = geodir_get_language_for_element($term->term_id, 'tax_'.$taxonomy); |
|
| 5631 | + $csv_row[] = geodir_imex_original_post_id($term->term_id, 'tax_'.$taxonomy); |
|
| 5632 | 5632 | } |
| 5633 | 5633 | // WPML |
| 5634 | 5634 | $csv_row[] = $term->description; |
| 5635 | - $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_top_desc', false, $post_type ); |
|
| 5635 | + $csv_row[] = get_tax_meta($term->term_id, 'ct_cat_top_desc', false, $post_type); |
|
| 5636 | 5636 | $csv_row[] = $cat_image; |
| 5637 | 5637 | $csv_row[] = $cat_icon; |
| 5638 | 5638 | |
@@ -5651,10 +5651,10 @@ discard block |
||
| 5651 | 5651 | * @param bool $relative True for relative path & False for absolute path. |
| 5652 | 5652 | * @return string Path to the cache directory. |
| 5653 | 5653 | */ |
| 5654 | -function geodir_path_import_export( $relative = true ) {
|
|
| 5654 | +function geodir_path_import_export($relative = true) {
|
|
| 5655 | 5655 | $upload_dir = wp_upload_dir(); |
| 5656 | 5656 | |
| 5657 | - return $relative ? $upload_dir['baseurl'] . '/cache' : $upload_dir['basedir'] . '/cache'; |
|
| 5657 | + return $relative ? $upload_dir['baseurl'].'/cache' : $upload_dir['basedir'].'/cache'; |
|
| 5658 | 5658 | } |
| 5659 | 5659 | |
| 5660 | 5660 | /** |
@@ -5670,8 +5670,8 @@ discard block |
||
| 5670 | 5670 | * @param bool $clear If true then it overwrite data otherwise add rows at the end of file. |
| 5671 | 5671 | * @return bool true if success otherwise false. |
| 5672 | 5672 | */ |
| 5673 | -function geodir_save_csv_data( $file_path, $csv_data = array(), $clear = true ) {
|
|
| 5674 | - if ( empty( $csv_data ) ) {
|
|
| 5673 | +function geodir_save_csv_data($file_path, $csv_data = array(), $clear = true) {
|
|
| 5674 | + if (empty($csv_data)) {
|
|
| 5675 | 5675 | return false; |
| 5676 | 5676 | } |
| 5677 | 5677 | |
@@ -5679,17 +5679,17 @@ discard block |
||
| 5679 | 5679 | |
| 5680 | 5680 | $mode = $clear ? 'w+' : 'a+'; |
| 5681 | 5681 | |
| 5682 | - if ( function_exists( 'fputcsv' ) ) {
|
|
| 5683 | - $file = fopen( $file_path, $mode ); |
|
| 5684 | - foreach( $csv_data as $csv_row ) {
|
|
| 5682 | + if (function_exists('fputcsv')) {
|
|
| 5683 | + $file = fopen($file_path, $mode); |
|
| 5684 | + foreach ($csv_data as $csv_row) {
|
|
| 5685 | 5685 | //$csv_row = array_map( 'utf8_decode', $csv_row ); |
| 5686 | - $write_successful = fputcsv( $file, $csv_row, ",", $enclosure = '"' ); |
|
| 5686 | + $write_successful = fputcsv($file, $csv_row, ",", $enclosure = '"'); |
|
| 5687 | 5687 | } |
| 5688 | - fclose( $file ); |
|
| 5688 | + fclose($file); |
|
| 5689 | 5689 | } else {
|
| 5690 | - foreach( $csv_data as $csv_row ) {
|
|
| 5690 | + foreach ($csv_data as $csv_row) {
|
|
| 5691 | 5691 | //$csv_row = array_map( 'utf8_decode', $csv_row ); |
| 5692 | - $wp_filesystem->put_contents( $file_path, $csv_row ); |
|
| 5692 | + $wp_filesystem->put_contents($file_path, $csv_row); |
|
| 5693 | 5693 | } |
| 5694 | 5694 | } |
| 5695 | 5695 | |
@@ -5707,14 +5707,14 @@ discard block |
||
| 5707 | 5707 | * @param string $file Full path to file. |
| 5708 | 5708 | * @return int No of file rows. |
| 5709 | 5709 | */ |
| 5710 | -function geodir_import_export_line_count( $file ) {
|
|
| 5710 | +function geodir_import_export_line_count($file) {
|
|
| 5711 | 5711 | global $wp_filesystem; |
| 5712 | 5712 | |
| 5713 | - if ( $wp_filesystem->is_file( $file ) && $wp_filesystem->exists( $file ) ) {
|
|
| 5714 | - $contents = $wp_filesystem->get_contents_array( $file ); |
|
| 5713 | + if ($wp_filesystem->is_file($file) && $wp_filesystem->exists($file)) {
|
|
| 5714 | + $contents = $wp_filesystem->get_contents_array($file); |
|
| 5715 | 5715 | |
| 5716 | - if ( !empty( $contents ) && is_array( $contents ) ) {
|
|
| 5717 | - return count( $contents ) - 1; |
|
| 5716 | + if (!empty($contents) && is_array($contents)) {
|
|
| 5717 | + return count($contents) - 1; |
|
| 5718 | 5718 | } |
| 5719 | 5719 | } |
| 5720 | 5720 | |
@@ -5731,11 +5731,11 @@ discard block |
||
| 5731 | 5731 | * @param string $post_type The post type. |
| 5732 | 5732 | * @return object Queried object. |
| 5733 | 5733 | */ |
| 5734 | -function geodir_imex_get_custom_fields( $post_type ) {
|
|
| 5734 | +function geodir_imex_get_custom_fields($post_type) {
|
|
| 5735 | 5735 | global $wpdb; |
| 5736 | 5736 | |
| 5737 | - $sql = $wpdb->prepare("SELECT htmlvar_name FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array( $post_type ) );
|
|
| 5738 | - $rows = $wpdb->get_results( $sql ); |
|
| 5737 | + $sql = $wpdb->prepare("SELECT htmlvar_name FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array($post_type));
|
|
| 5738 | + $rows = $wpdb->get_results($sql); |
|
| 5739 | 5739 | |
| 5740 | 5740 | return $rows; |
| 5741 | 5741 | } |
@@ -5814,14 +5814,14 @@ discard block |
||
| 5814 | 5814 | global $wpdb, $plugin_prefix; |
| 5815 | 5815 | |
| 5816 | 5816 | $post_type = get_post_type($master_post_id); |
| 5817 | - $post_table = $plugin_prefix . $post_type . '_detail'; |
|
| 5817 | + $post_table = $plugin_prefix.$post_type.'_detail'; |
|
| 5818 | 5818 | |
| 5819 | - $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
|
|
| 5820 | - $data = (array)$wpdb->get_row($query); |
|
| 5819 | + $query = $wpdb->prepare("SELECT * FROM ".$post_table." WHERE post_id = %d", array($master_post_id));
|
|
| 5820 | + $data = (array) $wpdb->get_row($query); |
|
| 5821 | 5821 | |
| 5822 | - if ( !empty( $data ) ) {
|
|
| 5822 | + if (!empty($data)) {
|
|
| 5823 | 5823 | $data['post_id'] = $tr_post_id; |
| 5824 | - unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category'], $data['overall_rating'], $data['rating_count'], $data['ratings']); |
|
| 5824 | + unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type.'category'], $data['overall_rating'], $data['rating_count'], $data['ratings']); |
|
| 5825 | 5825 | |
| 5826 | 5826 | $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
|
| 5827 | 5827 | return true; |
@@ -5847,7 +5847,7 @@ discard block |
||
| 5847 | 5847 | global $sitepress, $wpdb; |
| 5848 | 5848 | $post_type = get_post_type($master_post_id); |
| 5849 | 5849 | |
| 5850 | - remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
|
|
| 5850 | + remove_filter('get_term', array($sitepress, 'get_term_adjust_id')); // AVOID filtering to current language
|
|
| 5851 | 5851 | |
| 5852 | 5852 | $taxonomies = get_object_taxonomies($post_type); |
| 5853 | 5853 | foreach ($taxonomies as $taxonomy) {
|
@@ -5856,9 +5856,9 @@ discard block |
||
| 5856 | 5856 | |
| 5857 | 5857 | if ($terms) {
|
| 5858 | 5858 | foreach ($terms as $term) {
|
| 5859 | - $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang); |
|
| 5859 | + $tr_id = apply_filters('translate_object_id', $term->term_id, $taxonomy, false, $lang);
|
|
| 5860 | 5860 | |
| 5861 | - if (!is_null($tr_id)){
|
|
| 5861 | + if (!is_null($tr_id)) {
|
|
| 5862 | 5862 | // not using get_term - unfiltered get_term |
| 5863 | 5863 | $translated_term = $wpdb->get_row($wpdb->prepare("
|
| 5864 | 5864 | 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));
|
@@ -5867,14 +5867,14 @@ discard block |
||
| 5867 | 5867 | } |
| 5868 | 5868 | } |
| 5869 | 5869 | |
| 5870 | - if (!is_taxonomy_hierarchical($taxonomy)){
|
|
| 5871 | - $terms_array = array_unique( array_map( 'intval', $terms_array ) ); |
|
| 5870 | + if (!is_taxonomy_hierarchical($taxonomy)) {
|
|
| 5871 | + $terms_array = array_unique(array_map('intval', $terms_array));
|
|
| 5872 | 5872 | } |
| 5873 | 5873 | |
| 5874 | 5874 | wp_set_post_terms($tr_post_id, $terms_array, $taxonomy); |
| 5875 | 5875 | |
| 5876 | - if ($taxonomy == $post_type . 'category') {
|
|
| 5877 | - geodir_set_postcat_structure($tr_post_id, $post_type . 'category'); |
|
| 5876 | + if ($taxonomy == $post_type.'category') {
|
|
| 5877 | + geodir_set_postcat_structure($tr_post_id, $post_type.'category'); |
|
| 5878 | 5878 | } |
| 5879 | 5879 | } |
| 5880 | 5880 | } |
@@ -5895,15 +5895,15 @@ discard block |
||
| 5895 | 5895 | function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
|
| 5896 | 5896 | global $wpdb; |
| 5897 | 5897 | |
| 5898 | - $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
|
|
| 5898 | + $query = $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
|
|
| 5899 | 5899 | $wpdb->query($query); |
| 5900 | 5900 | |
| 5901 | - $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));
|
|
| 5901 | + $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));
|
|
| 5902 | 5902 | $post_images = $wpdb->get_results($query); |
| 5903 | 5903 | |
| 5904 | - if ( !empty( $post_images ) ) {
|
|
| 5905 | - foreach ( $post_images as $post_image) {
|
|
| 5906 | - $image_data = (array)$post_image; |
|
| 5904 | + if (!empty($post_images)) {
|
|
| 5905 | + foreach ($post_images as $post_image) {
|
|
| 5906 | + $image_data = (array) $post_image; |
|
| 5907 | 5907 | unset($image_data['ID']); |
| 5908 | 5908 | $image_data['post_id'] = $tr_post_id; |
| 5909 | 5909 | |
@@ -5929,10 +5929,10 @@ discard block |
||
| 5929 | 5929 | * @return array Event data array. |
| 5930 | 5930 | */ |
| 5931 | 5931 | function geodir_imex_get_event_data($post, $gd_post_info) {
|
| 5932 | - $event_date = isset( $post['event_date'] ) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $post['event_date'] ) ) : ''; |
|
| 5932 | + $event_date = isset($post['event_date']) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($post['event_date'])) : '';
|
|
| 5933 | 5933 | $event_enddate = $event_date; |
| 5934 | - $starttime = isset( $post['starttime'] ) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['starttime'] ) ) : ''; |
|
| 5935 | - $endtime = isset( $post['endtime'] ) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['endtime'] ) ) : ''; |
|
| 5934 | + $starttime = isset($post['starttime']) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['starttime'])) : '';
|
|
| 5935 | + $endtime = isset($post['endtime']) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['endtime'])) : '';
|
|
| 5936 | 5936 | |
| 5937 | 5937 | $is_recurring_event = ''; |
| 5938 | 5938 | $event_duration_days = ''; |
@@ -5949,15 +5949,15 @@ discard block |
||
| 5949 | 5949 | |
| 5950 | 5950 | $recurring_data = isset($gd_post_info->recurring_dates) ? maybe_unserialize($gd_post_info->recurring_dates) : array(); |
| 5951 | 5951 | if (!empty($recurring_data)) {
|
| 5952 | - $event_date = isset( $recurring_data['event_start'] ) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_start'] ) ) : $event_date; |
|
| 5953 | - $event_enddate = isset( $recurring_data['event_end'] ) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_end'] ) ) : $event_date; |
|
| 5954 | - $starttime = isset( $recurring_data['starttime'] ) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['starttime'] ) ) : $starttime; |
|
| 5955 | - $endtime = isset( $recurring_data['endtime'] ) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['endtime'] ) ) : $endtime; |
|
| 5952 | + $event_date = isset($recurring_data['event_start']) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_start'])) : $event_date;
|
|
| 5953 | + $event_enddate = isset($recurring_data['event_end']) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_end'])) : $event_date;
|
|
| 5954 | + $starttime = isset($recurring_data['starttime']) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['starttime'])) : $starttime;
|
|
| 5955 | + $endtime = isset($recurring_data['endtime']) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['endtime'])) : $endtime;
|
|
| 5956 | 5956 | $is_whole_day_event = !empty($recurring_data['all_day']) ? 1 : ''; |
| 5957 | 5957 | $different_times = !empty($recurring_data['different_times']) ? true : false; |
| 5958 | 5958 | |
| 5959 | - $recurring_pkg = geodir_event_recurring_pkg( $gd_post_info ); |
|
| 5960 | - $is_recurring = isset( $gd_post_info->is_recurring ) && (int)$gd_post_info->is_recurring == 0 ? false : true; |
|
| 5959 | + $recurring_pkg = geodir_event_recurring_pkg($gd_post_info); |
|
| 5960 | + $is_recurring = isset($gd_post_info->is_recurring) && (int) $gd_post_info->is_recurring == 0 ? false : true; |
|
| 5961 | 5961 | |
| 5962 | 5962 | if ($recurring_pkg && $is_recurring) {
|
| 5963 | 5963 | $recurring_dates = $event_date; |
@@ -5967,13 +5967,13 @@ discard block |
||
| 5967 | 5967 | $recurring_type = !empty($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'custom';
|
| 5968 | 5968 | |
| 5969 | 5969 | if (!empty($recurring_data['event_recurring_dates'])) {
|
| 5970 | - $event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] ); |
|
| 5970 | + $event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
|
|
| 5971 | 5971 | |
| 5972 | 5972 | if (!empty($event_recurring_dates)) {
|
| 5973 | 5973 | $recurring_dates = array(); |
| 5974 | 5974 | |
| 5975 | 5975 | foreach ($event_recurring_dates as $date) {
|
| 5976 | - $recurring_dates[] = date_i18n( 'd/m/Y', strtotime( $date ) ); |
|
| 5976 | + $recurring_dates[] = date_i18n('d/m/Y', strtotime($date));
|
|
| 5977 | 5977 | } |
| 5978 | 5978 | |
| 5979 | 5979 | $recurring_dates = implode(",", $recurring_dates);
|
@@ -5989,7 +5989,7 @@ discard block |
||
| 5989 | 5989 | $times = array(); |
| 5990 | 5990 | |
| 5991 | 5991 | foreach ($recurring_data['starttimes'] as $time) {
|
| 5992 | - $times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00'; |
|
| 5992 | + $times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
|
|
| 5993 | 5993 | } |
| 5994 | 5994 | |
| 5995 | 5995 | $event_starttimes = implode(",", $times);
|
@@ -5999,7 +5999,7 @@ discard block |
||
| 5999 | 5999 | $times = array(); |
| 6000 | 6000 | |
| 6001 | 6001 | foreach ($recurring_data['endtimes'] as $time) {
|
| 6002 | - $times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00'; |
|
| 6002 | + $times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
|
|
| 6003 | 6003 | } |
| 6004 | 6004 | |
| 6005 | 6005 | $event_endtimes = implode(",", $times);
|
@@ -6011,8 +6011,8 @@ discard block |
||
| 6011 | 6011 | } |
| 6012 | 6012 | } |
| 6013 | 6013 | } else {
|
| 6014 | - $event_duration_days = isset($recurring_data['duration_x']) ? (int)$recurring_data['duration_x'] : 1; |
|
| 6015 | - $recurring_interval = !empty($recurring_data['repeat_x']) && (int)$recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1; |
|
| 6014 | + $event_duration_days = isset($recurring_data['duration_x']) ? (int) $recurring_data['duration_x'] : 1; |
|
| 6015 | + $recurring_interval = !empty($recurring_data['repeat_x']) && (int) $recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1; |
|
| 6016 | 6016 | |
| 6017 | 6017 | if (($recurring_type == 'week' || $recurring_type == 'month') && !empty($recurring_data['repeat_days'])) {
|
| 6018 | 6018 | $week_days = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
|
@@ -6028,11 +6028,11 @@ discard block |
||
| 6028 | 6028 | } |
| 6029 | 6029 | |
| 6030 | 6030 | $recurring_week_nos = $recurring_type == 'month' && !empty($recurring_data['repeat_weeks']) ? implode(",", $recurring_data['repeat_weeks']) : $recurring_week_nos;
|
| 6031 | - if (!empty($recurring_data['repeat_end_type']) && (int)$recurring_data['repeat_end_type'] == 1) {
|
|
| 6032 | - $recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['repeat_end'] ) ) : ''; |
|
| 6031 | + if (!empty($recurring_data['repeat_end_type']) && (int) $recurring_data['repeat_end_type'] == 1) {
|
|
| 6032 | + $recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['repeat_end'])) : '';
|
|
| 6033 | 6033 | $max_recurring_count = empty($recurring_end_date) ? 1 : ''; |
| 6034 | 6034 | } else {
|
| 6035 | - $max_recurring_count = (!empty($recurring_data['max_repeat']) && (int)$recurring_data['max_repeat'] > 0 ? (int)$recurring_data['max_repeat'] : 1); |
|
| 6035 | + $max_recurring_count = (!empty($recurring_data['max_repeat']) && (int) $recurring_data['max_repeat'] > 0 ? (int) $recurring_data['max_repeat'] : 1); |
|
| 6036 | 6036 | } |
| 6037 | 6037 | } |
| 6038 | 6038 | } |
@@ -6096,9 +6096,9 @@ discard block |
||
| 6096 | 6096 | * @return array Event data array. |
| 6097 | 6097 | */ |
| 6098 | 6098 | function geodir_imex_process_event_data($gd_post) {
|
| 6099 | - $recurring_pkg = geodir_event_recurring_pkg( (object)$gd_post ); |
|
| 6099 | + $recurring_pkg = geodir_event_recurring_pkg((object) $gd_post); |
|
| 6100 | 6100 | |
| 6101 | - $is_recurring = isset( $gd_post['is_recurring_event'] ) && (int)$gd_post['is_recurring_event'] == 0 ? false : true; |
|
| 6101 | + $is_recurring = isset($gd_post['is_recurring_event']) && (int) $gd_post['is_recurring_event'] == 0 ? false : true; |
|
| 6102 | 6102 | $event_date = isset($gd_post['event_date']) && $gd_post['event_date'] != '' ? geodir_imex_get_date_ymd($gd_post['event_date']) : ''; |
| 6103 | 6103 | $event_enddate = isset($gd_post['event_enddate']) && $gd_post['event_enddate'] != '' ? geodir_imex_get_date_ymd($gd_post['event_enddate']) : $event_date; |
| 6104 | 6104 | $all_day = isset($gd_post['is_whole_day_event']) && !empty($gd_post['is_whole_day_event']) ? true : false; |
@@ -6145,17 +6145,17 @@ discard block |
||
| 6145 | 6145 | $event_recurring_dates = implode(",", $event_recurring_dates);
|
| 6146 | 6146 | } |
| 6147 | 6147 | } else {
|
| 6148 | - $duration_x = !empty( $gd_post['event_duration_days'] ) ? (int)$gd_post['event_duration_days'] : 1; |
|
| 6149 | - $repeat_x = !empty( $gd_post['recurring_interval'] ) ? (int)$gd_post['recurring_interval'] : 1; |
|
| 6150 | - $max_repeat = !empty( $gd_post['max_recurring_count'] ) ? (int)$gd_post['max_recurring_count'] : 1; |
|
| 6151 | - $repeat_end = !empty( $gd_post['recurring_end_date'] ) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : ''; |
|
| 6148 | + $duration_x = !empty($gd_post['event_duration_days']) ? (int) $gd_post['event_duration_days'] : 1; |
|
| 6149 | + $repeat_x = !empty($gd_post['recurring_interval']) ? (int) $gd_post['recurring_interval'] : 1; |
|
| 6150 | + $max_repeat = !empty($gd_post['max_recurring_count']) ? (int) $gd_post['max_recurring_count'] : 1; |
|
| 6151 | + $repeat_end = !empty($gd_post['recurring_end_date']) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : ''; |
|
| 6152 | 6152 | |
| 6153 | 6153 | $repeat_end_type = $repeat_end != '' ? 1 : 0; |
| 6154 | 6154 | $max_repeat = $repeat_end != '' ? '' : $max_repeat; |
| 6155 | 6155 | |
| 6156 | 6156 | $week_days = array_flip(array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'));
|
| 6157 | 6157 | |
| 6158 | - $a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days'])!='' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
|
|
| 6158 | + $a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days']) != '' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
|
|
| 6159 | 6159 | $repeat_days = array(); |
| 6160 | 6160 | if (!empty($a_repeat_days)) {
|
| 6161 | 6161 | foreach ($a_repeat_days as $repeat_day) {
|
@@ -6173,7 +6173,7 @@ discard block |
||
| 6173 | 6173 | $repeat_weeks = array(); |
| 6174 | 6174 | if (!empty($a_repeat_weeks)) {
|
| 6175 | 6175 | foreach ($a_repeat_weeks as $repeat_week) {
|
| 6176 | - $repeat_weeks[] = (int)$repeat_week; |
|
| 6176 | + $repeat_weeks[] = (int) $repeat_week; |
|
| 6177 | 6177 | } |
| 6178 | 6178 | |
| 6179 | 6179 | $repeat_weeks = array_unique($repeat_weeks); |
@@ -6237,7 +6237,7 @@ discard block |
||
| 6237 | 6237 | |
| 6238 | 6238 | $page_found = $wpdb->get_var( |
| 6239 | 6239 | $wpdb->prepare( |
| 6240 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6240 | + "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;", |
|
| 6241 | 6241 | array($slug) |
| 6242 | 6242 | ) |
| 6243 | 6243 | ); |
@@ -6292,7 +6292,7 @@ discard block |
||
| 6292 | 6292 | */ |
| 6293 | 6293 | function geodir_admin_upgrade_notice() {
|
| 6294 | 6294 | $class = "error"; |
| 6295 | - $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6295 | + $message = __("Please update core GeoDirectory or some addons may not function correctly.", "geodirectory");
|
|
| 6296 | 6296 | echo"<div class=\"$class\"> <p>$message</p></div>"; |
| 6297 | 6297 | } |
| 6298 | 6298 | |
@@ -6304,7 +6304,7 @@ discard block |
||
| 6304 | 6304 | * @param (object) $r |
| 6305 | 6305 | * @return (string) $output |
| 6306 | 6306 | */ |
| 6307 | -function geodire_admin_upgrade_notice( $plugin_data, $r ) |
|
| 6307 | +function geodire_admin_upgrade_notice($plugin_data, $r) |
|
| 6308 | 6308 | {
|
| 6309 | 6309 | // readme contents |
| 6310 | 6310 | $args = array( |
@@ -6312,7 +6312,7 @@ discard block |
||
| 6312 | 6312 | 'redirection' => 5 |
| 6313 | 6313 | ); |
| 6314 | 6314 | $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
| 6315 | - $data = wp_remote_get( $url, $args ); |
|
| 6315 | + $data = wp_remote_get($url, $args); |
|
| 6316 | 6316 | |
| 6317 | 6317 | if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
| 6318 | 6318 | |
@@ -6327,20 +6327,20 @@ discard block |
||
| 6327 | 6327 | function geodir_in_plugin_update_message($content) {
|
| 6328 | 6328 | // Output Upgrade Notice |
| 6329 | 6329 | $matches = null; |
| 6330 | - $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6330 | + $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*'.preg_quote(GEODIRECTORY_VERSION).'\s*=|$)~Uis'; |
|
| 6331 | 6331 | $upgrade_notice = ''; |
| 6332 | - if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6333 | - if(empty($matches)){return;}
|
|
| 6332 | + if (preg_match($regexp, $content, $matches)) {
|
|
| 6333 | + if (empty($matches)) {return; }
|
|
| 6334 | 6334 | |
| 6335 | - $version = trim( $matches[1] ); |
|
| 6336 | - if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6335 | + $version = trim($matches[1]); |
|
| 6336 | + if ($version && $version > GEODIRECTORY_VERSION) {
|
|
| 6337 | 6337 | |
| 6338 | 6338 | |
| 6339 | - $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6340 | - if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6339 | + $notices = (array) preg_split('~[\r\n]+~', trim($matches[2]));
|
|
| 6340 | + if (version_compare(GEODIRECTORY_VERSION, $version, '<')) {
|
|
| 6341 | 6341 | $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
| 6342 | - foreach ( $notices as $index => $line ) {
|
|
| 6343 | - $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6342 | + foreach ($notices as $index => $line) {
|
|
| 6343 | + $upgrade_notice .= wp_kses_post(preg_replace('~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line));
|
|
| 6344 | 6344 | } |
| 6345 | 6345 | $upgrade_notice .= '</div> '; |
| 6346 | 6346 | } |
@@ -6364,7 +6364,7 @@ discard block |
||
| 6364 | 6364 | $default_language = $sitepress->get_default_language(); |
| 6365 | 6365 | if ($current_language != 'all' && $current_language != $default_language) {
|
| 6366 | 6366 | ?> |
| 6367 | - <div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory');?></strong></p></div>
|
|
| 6367 | + <div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory'); ?></strong></p></div>
|
|
| 6368 | 6368 | <?php |
| 6369 | 6369 | } |
| 6370 | 6370 | } |
@@ -6379,7 +6379,7 @@ discard block |
||
| 6379 | 6379 | * @param array Listing statuses to be skipped. |
| 6380 | 6380 | */ |
| 6381 | 6381 | function geodir_imex_export_skip_statuses() {
|
| 6382 | - $statuses = array( 'trash', 'auto-draft' ); |
|
| 6382 | + $statuses = array('trash', 'auto-draft');
|
|
| 6383 | 6383 | |
| 6384 | 6384 | /** |
| 6385 | 6385 | * Filter the statuses to skip during GD export listings. |
@@ -6389,7 +6389,7 @@ discard block |
||
| 6389 | 6389 | * |
| 6390 | 6390 | * @param array $statuses Listing statuses to be skipped. |
| 6391 | 6391 | */ |
| 6392 | - $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6392 | + $statuses = apply_filters('geodir_imex_export_skip_statuses', $statuses);
|
|
| 6393 | 6393 | |
| 6394 | 6394 | return $statuses; |
| 6395 | 6395 | } |
@@ -6429,16 +6429,16 @@ discard block |
||
| 6429 | 6429 | function geodir_imex_get_filter_where($where = '', $post_type = '') {
|
| 6430 | 6430 | global $wpdb; |
| 6431 | 6431 | |
| 6432 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6432 | + $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6433 | 6433 | |
| 6434 | - if ( !empty( $filters ) ) {
|
|
| 6435 | - foreach ( $filters as $field => $value ) {
|
|
| 6434 | + if (!empty($filters)) {
|
|
| 6435 | + foreach ($filters as $field => $value) {
|
|
| 6436 | 6436 | switch ($field) {
|
| 6437 | 6437 | case 'start_date': |
| 6438 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6438 | + $where .= " AND `".$wpdb->posts."`.`post_date` >= '".sanitize_text_field($value)." 00:00:00'"; |
|
| 6439 | 6439 | break; |
| 6440 | 6440 | case 'end_date': |
| 6441 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6441 | + $where .= " AND `".$wpdb->posts."`.`post_date` <= '".sanitize_text_field($value)." 23:59:59'"; |
|
| 6442 | 6442 | break; |
| 6443 | 6443 | } |
| 6444 | 6444 | } |
@@ -6450,25 +6450,25 @@ discard block |
||
| 6450 | 6450 | add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
|
| 6451 | 6451 | |
| 6452 | 6452 | |
| 6453 | -function geodir_fix_for_primer_theme(){
|
|
| 6454 | - if(!defined( 'PRIMER_VERSION' )){return;}
|
|
| 6453 | +function geodir_fix_for_primer_theme() {
|
|
| 6454 | + if (!defined('PRIMER_VERSION')) {return; }
|
|
| 6455 | 6455 | global $pagenow; |
| 6456 | 6456 | |
| 6457 | - if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){
|
|
| 6457 | + if (('post.php' === $pagenow || 'post-new.php' === $pagenow) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']))) {
|
|
| 6458 | 6458 | |
| 6459 | - $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
| 6459 | + $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type($_GET['post']); |
|
| 6460 | 6460 | |
| 6461 | 6461 | $post_types = geodir_get_posttypes(); |
| 6462 | - if ($post_type && in_array($post_type, $post_types) ) {
|
|
| 6462 | + if ($post_type && in_array($post_type, $post_types)) {
|
|
| 6463 | 6463 | global $primer_customizer_layouts; |
| 6464 | - remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
| 6464 | + remove_action('add_meta_boxes', array($primer_customizer_layouts, 'add_meta_box'), 10);
|
|
| 6465 | 6465 | } |
| 6466 | 6466 | } |
| 6467 | 6467 | |
| 6468 | 6468 | } |
| 6469 | 6469 | |
| 6470 | -if(is_admin()){
|
|
| 6471 | - add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);
|
|
| 6470 | +if (is_admin()) {
|
|
| 6471 | + add_action('add_meta_boxes', 'geodir_fix_for_primer_theme', 0);
|
|
| 6472 | 6472 | } |
| 6473 | 6473 | |
| 6474 | 6474 | |
@@ -6601,32 +6601,32 @@ discard block |
||
| 6601 | 6601 | |
| 6602 | 6602 | function geodir_ga_activation_url() {
|
| 6603 | 6603 | |
| 6604 | - return add_query_arg( array( |
|
| 6604 | + return add_query_arg(array( |
|
| 6605 | 6605 | 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
|
| 6606 | 6606 | 'scope' => GEODIR_GA_SCOPE, |
| 6607 | 6607 | 'response_type' => 'code', |
| 6608 | 6608 | 'redirect_uri' => GEODIR_GA_REDIRECT, |
| 6609 | 6609 | 'client_id' => GEODIR_GA_CLIENTID, |
| 6610 | - ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
| 6610 | + ), 'https://accounts.google.com/o/oauth2/auth'); |
|
| 6611 | 6611 | |
| 6612 | 6612 | return $url; |
| 6613 | 6613 | } |
| 6614 | 6614 | |
| 6615 | -function geodir_gd_accounts(){
|
|
| 6615 | +function geodir_gd_accounts() {
|
|
| 6616 | 6616 | $accounts = array(); |
| 6617 | - $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
| 6618 | - if($useAuth){
|
|
| 6617 | + $useAuth = (get_option('geodir_ga_auth_code') == '' ? false : true);
|
|
| 6618 | + if ($useAuth) {
|
|
| 6619 | 6619 | try {
|
| 6620 | 6620 | $accounts = geodir_ga_get_analytics_accounts(); |
| 6621 | 6621 | } catch (Exception $e) {
|
| 6622 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 6622 | + geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage()));
|
|
| 6623 | 6623 | } |
| 6624 | 6624 | |
| 6625 | - if(is_array($accounts)){
|
|
| 6626 | - $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
|
| 6627 | - }elseif(get_option('geodir_ga_account_id')){
|
|
| 6625 | + if (is_array($accounts)) {
|
|
| 6626 | + $accounts = array_merge(array(__('Select Account', 'geodirectory')), $accounts);
|
|
| 6627 | + }elseif (get_option('geodir_ga_account_id')) {
|
|
| 6628 | 6628 | $accounts = array(); |
| 6629 | - $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6629 | + $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required', 'geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6630 | 6630 | } |
| 6631 | 6631 | } |
| 6632 | 6632 | return $accounts; |
@@ -6637,21 +6637,21 @@ discard block |
||
| 6637 | 6637 | global $gd_ga_errors; |
| 6638 | 6638 | $accounts = array(); |
| 6639 | 6639 | |
| 6640 | - if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
|
|
| 6640 | + if (get_option('geodir_ga_auth_token') === false) {update_option('geodir_ga_auth_token', ''); }
|
|
| 6641 | 6641 | |
| 6642 | 6642 | |
| 6643 | - if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
|
|
| 6643 | + if (get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])) {
|
|
| 6644 | 6644 | return get_option('geodir_gd_uids');
|
| 6645 | 6645 | } |
| 6646 | 6646 | |
| 6647 | 6647 | # Create a new Gdata call |
| 6648 | - if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6648 | + if (trim(get_option('geodir_ga_auth_code')) != '')
|
|
| 6649 | 6649 | $stats = new GDGoogleAnalyticsStats(); |
| 6650 | 6650 | else |
| 6651 | 6651 | return false; |
| 6652 | 6652 | |
| 6653 | 6653 | # Check if Google sucessfully logged in |
| 6654 | - if ( ! $stats->checkLogin() ) |
|
| 6654 | + if (!$stats->checkLogin()) |
|
| 6655 | 6655 | return false; |
| 6656 | 6656 | |
| 6657 | 6657 | # Get a list of accounts |
@@ -6663,28 +6663,28 @@ discard block |
||
| 6663 | 6663 | } |
| 6664 | 6664 | |
| 6665 | 6665 | |
| 6666 | - natcasesort ($accounts); |
|
| 6666 | + natcasesort($accounts); |
|
| 6667 | 6667 | |
| 6668 | 6668 | # Return the account array if there are accounts |
| 6669 | - if ( count($accounts) > 0 ){
|
|
| 6670 | - update_option('geodir_gd_uids',$accounts);
|
|
| 6669 | + if (count($accounts) > 0) {
|
|
| 6670 | + update_option('geodir_gd_uids', $accounts);
|
|
| 6671 | 6671 | return $accounts; |
| 6672 | 6672 | } |
| 6673 | 6673 | else |
| 6674 | 6674 | return false; |
| 6675 | 6675 | } |
| 6676 | 6676 | |
| 6677 | -add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' ); |
|
| 6678 | -function geodir_ga_deauthorize(){
|
|
| 6677 | +add_action('wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize');
|
|
| 6678 | +function geodir_ga_deauthorize() {
|
|
| 6679 | 6679 | |
| 6680 | - if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
|
|
| 6680 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'gd_ga_deauthorize')) {
|
|
| 6681 | 6681 | |
| 6682 | - die( 'Security check' ); |
|
| 6682 | + die('Security check');
|
|
| 6683 | 6683 | |
| 6684 | 6684 | } else {
|
| 6685 | - update_option('geodir_ga_auth_token','');
|
|
| 6686 | - update_option('geodir_ga_auth_code','');
|
|
| 6687 | - update_option('geodir_gd_uids','');
|
|
| 6685 | + update_option('geodir_ga_auth_token', '');
|
|
| 6686 | + update_option('geodir_ga_auth_code', '');
|
|
| 6687 | + update_option('geodir_gd_uids', '');
|
|
| 6688 | 6688 | |
| 6689 | 6689 | |
| 6690 | 6690 | echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
|
@@ -18,9 +18,9 @@ discard block |
||
| 18 | 18 | */ |
| 19 | 19 | function init_listing_map_script() |
| 20 | 20 | {
|
| 21 | - global $list_map_json; |
|
| 21 | + global $list_map_json; |
|
| 22 | 22 | |
| 23 | - $list_map_json = array(); |
|
| 23 | + $list_map_json = array(); |
|
| 24 | 24 | |
| 25 | 25 | } |
| 26 | 26 | |
@@ -35,18 +35,18 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | function create_list_jsondata($post) |
| 37 | 37 | {
|
| 38 | - global $wpdb, $list_map_json, $add_post_in_marker_array; |
|
| 39 | - |
|
| 40 | - if ((is_main_query() || $add_post_in_marker_array) && isset($post->marker_json) && $post->marker_json != '') {
|
|
| 41 | - /** |
|
| 42 | - * Filter the json data for search listing map. |
|
| 43 | - * |
|
| 44 | - * @since 1.5.7 |
|
| 45 | - * @param string $post->marker_json JSON representation of the post marker info. |
|
| 46 | - * @param object $post The post object. |
|
| 47 | - */ |
|
| 48 | - $list_map_json[] = apply_filters('geodir_create_list_jsondata',$post->marker_json,$post);
|
|
| 49 | - } |
|
| 38 | + global $wpdb, $list_map_json, $add_post_in_marker_array; |
|
| 39 | + |
|
| 40 | + if ((is_main_query() || $add_post_in_marker_array) && isset($post->marker_json) && $post->marker_json != '') {
|
|
| 41 | + /** |
|
| 42 | + * Filter the json data for search listing map. |
|
| 43 | + * |
|
| 44 | + * @since 1.5.7 |
|
| 45 | + * @param string $post->marker_json JSON representation of the post marker info. |
|
| 46 | + * @param object $post The post object. |
|
| 47 | + */ |
|
| 48 | + $list_map_json[] = apply_filters('geodir_create_list_jsondata',$post->marker_json,$post);
|
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | 51 | } |
| 52 | 52 | |
@@ -59,29 +59,29 @@ discard block |
||
| 59 | 59 | */ |
| 60 | 60 | function show_listing_widget_map() |
| 61 | 61 | {
|
| 62 | - global $list_map_json; |
|
| 62 | + global $list_map_json; |
|
| 63 | 63 | |
| 64 | - if (!empty($list_map_json)) {
|
|
| 65 | - $list_map_json = array_unique($list_map_json); |
|
| 66 | - $cat_content_info[] = implode(',', $list_map_json);
|
|
| 67 | - } |
|
| 64 | + if (!empty($list_map_json)) {
|
|
| 65 | + $list_map_json = array_unique($list_map_json); |
|
| 66 | + $cat_content_info[] = implode(',', $list_map_json);
|
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - $totalcount = count(array_unique($list_map_json)); |
|
| 69 | + $totalcount = count(array_unique($list_map_json)); |
|
| 70 | 70 | |
| 71 | 71 | |
| 72 | - if (!empty($cat_content_info)) {
|
|
| 73 | - $json_content = substr(implode(',', $cat_content_info), 1);
|
|
| 74 | - $json_content = htmlentities($json_content, ENT_QUOTES, get_option('blog_charset')); // Quotes in csv title import break maps - FIXED by kiran on 2nd March, 2016
|
|
| 75 | - $json_content = wp_specialchars_decode($json_content); // Fixed #post-320722 on 2016-12-08 |
|
| 76 | - $list_json = '[{"totalcount":"' . $totalcount . '",' . $json_content . ']';
|
|
| 77 | - } else {
|
|
| 78 | - $list_json = '[{"totalcount":"0"}]';
|
|
| 79 | - } |
|
| 72 | + if (!empty($cat_content_info)) {
|
|
| 73 | + $json_content = substr(implode(',', $cat_content_info), 1);
|
|
| 74 | + $json_content = htmlentities($json_content, ENT_QUOTES, get_option('blog_charset')); // Quotes in csv title import break maps - FIXED by kiran on 2nd March, 2016
|
|
| 75 | + $json_content = wp_specialchars_decode($json_content); // Fixed #post-320722 on 2016-12-08 |
|
| 76 | + $list_json = '[{"totalcount":"' . $totalcount . '",' . $json_content . ']';
|
|
| 77 | + } else {
|
|
| 78 | + $list_json = '[{"totalcount":"0"}]';
|
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - $listing_map_args = array('list_json' => $list_json);
|
|
| 81 | + $listing_map_args = array('list_json' => $list_json);
|
|
| 82 | 82 | |
| 83 | - // Pass the json data in listing map script |
|
| 84 | - wp_localize_script('geodir-listing-map-widget', 'listing_map_args', $listing_map_args);
|
|
| 83 | + // Pass the json data in listing map script |
|
| 84 | + wp_localize_script('geodir-listing-map-widget', 'listing_map_args', $listing_map_args);
|
|
| 85 | 85 | |
| 86 | 86 | } |
| 87 | 87 | |
@@ -93,187 +93,187 @@ discard block |
||
| 93 | 93 | class geodir_map_listingpage extends WP_Widget |
| 94 | 94 | {
|
| 95 | 95 | |
| 96 | - /** |
|
| 96 | + /** |
|
| 97 | 97 | * Register the listing page map widget. |
| 98 | 98 | * |
| 99 | 99 | * @since 1.0.0 |
| 100 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
| 100 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
| 101 | 101 | */ |
| 102 | - public function __construct() {
|
|
| 103 | - $widget_ops = array('classname' => 'widget geodir-map-listing-page', 'description' => __('Google Map for Listing page. It will show you google map V3 for Listing page.', 'geodirectory'));
|
|
| 104 | - parent::__construct( |
|
| 105 | - 'geodir_map_v3_listing_map', // Base ID |
|
| 106 | - __('GD > GMap - Listing page', 'geodirectory'), // Name
|
|
| 107 | - $widget_ops// Args |
|
| 108 | - ); |
|
| 102 | + public function __construct() {
|
|
| 103 | + $widget_ops = array('classname' => 'widget geodir-map-listing-page', 'description' => __('Google Map for Listing page. It will show you google map V3 for Listing page.', 'geodirectory'));
|
|
| 104 | + parent::__construct( |
|
| 105 | + 'geodir_map_v3_listing_map', // Base ID |
|
| 106 | + __('GD > GMap - Listing page', 'geodirectory'), // Name
|
|
| 107 | + $widget_ops// Args |
|
| 108 | + ); |
|
| 109 | 109 | |
| 110 | - add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
|
|
| 110 | + add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
|
|
| 111 | 111 | |
| 112 | - add_action('the_post', 'create_list_jsondata'); // Add marker in json array
|
|
| 112 | + add_action('the_post', 'create_list_jsondata'); // Add marker in json array
|
|
| 113 | 113 | |
| 114 | - add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
|
|
| 115 | - } |
|
| 114 | + add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
|
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | 117 | /** |
| 118 | 118 | * Front-end display content for listing page map widget. |
| 119 | 119 | * |
| 120 | 120 | * @since 1.0.0 |
| 121 | - * @since 1.5.1 Declare function public. |
|
| 121 | + * @since 1.5.1 Declare function public. |
|
| 122 | + * |
|
| 123 | + * @global object $post The current post object. |
|
| 122 | 124 | * |
| 123 | - * @global object $post The current post object. |
|
| 124 | - * |
|
| 125 | 125 | * @param array $args Widget arguments. |
| 126 | 126 | * @param array $instance Saved values from database. |
| 127 | 127 | */ |
| 128 | - public function widget($args, $instance) |
|
| 129 | - {
|
|
| 130 | - |
|
| 131 | - if (geodir_is_page('listing') || geodir_is_page('author') || geodir_is_page('search')
|
|
| 132 | - || geodir_is_page('detail')
|
|
| 133 | - ) : |
|
| 134 | - |
|
| 135 | - extract($args, EXTR_SKIP); |
|
| 136 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
| 137 | - $width = empty($instance['width']) ? '294' : apply_filters('widget_width', $instance['width']);
|
|
| 138 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
| 139 | - $height = empty($instance['heigh']) ? '370' : apply_filters('widget_heigh', $instance['heigh']);
|
|
| 140 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
| 141 | - $maptype = empty($instance['maptype']) ? 'ROADMAP' : apply_filters('widget_maptype', $instance['maptype']);
|
|
| 142 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
| 143 | - $zoom = empty($instance['zoom']) ? '13' : apply_filters('widget_zoom', $instance['zoom']);
|
|
| 144 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
| 145 | - $autozoom = empty($instance['autozoom']) ? '' : apply_filters('widget_autozoom', $instance['autozoom']);
|
|
| 146 | - /** |
|
| 147 | - * Filter the listing map value widget_sticky, to set if the map should be sticky or not (scroll with page). |
|
| 148 | - * |
|
| 149 | - * @since 1.0.0 |
|
| 150 | - * @param bool $sticky True if should be sticky, false if not |
|
| 151 | - */ |
|
| 152 | - $sticky = empty($instance['sticky']) ? '' : apply_filters('widget_sticky', $instance['sticky']);
|
|
| 153 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
| 154 | - $scrollwheel = empty($instance['scrollwheel']) ? '0' : apply_filters('widget_scrollwheel', $instance['scrollwheel']);
|
|
| 155 | - $showall = empty($instance['showall']) ? '0' : apply_filters('widget_showall', $instance['showall']);
|
|
| 128 | + public function widget($args, $instance) |
|
| 129 | + {
|
|
| 130 | + |
|
| 131 | + if (geodir_is_page('listing') || geodir_is_page('author') || geodir_is_page('search')
|
|
| 132 | + || geodir_is_page('detail')
|
|
| 133 | + ) : |
|
| 134 | + |
|
| 135 | + extract($args, EXTR_SKIP); |
|
| 136 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
| 137 | + $width = empty($instance['width']) ? '294' : apply_filters('widget_width', $instance['width']);
|
|
| 138 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
| 139 | + $height = empty($instance['heigh']) ? '370' : apply_filters('widget_heigh', $instance['heigh']);
|
|
| 140 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
| 141 | + $maptype = empty($instance['maptype']) ? 'ROADMAP' : apply_filters('widget_maptype', $instance['maptype']);
|
|
| 142 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
| 143 | + $zoom = empty($instance['zoom']) ? '13' : apply_filters('widget_zoom', $instance['zoom']);
|
|
| 144 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
| 145 | + $autozoom = empty($instance['autozoom']) ? '' : apply_filters('widget_autozoom', $instance['autozoom']);
|
|
| 146 | + /** |
|
| 147 | + * Filter the listing map value widget_sticky, to set if the map should be sticky or not (scroll with page). |
|
| 148 | + * |
|
| 149 | + * @since 1.0.0 |
|
| 150 | + * @param bool $sticky True if should be sticky, false if not |
|
| 151 | + */ |
|
| 152 | + $sticky = empty($instance['sticky']) ? '' : apply_filters('widget_sticky', $instance['sticky']);
|
|
| 153 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
| 154 | + $scrollwheel = empty($instance['scrollwheel']) ? '0' : apply_filters('widget_scrollwheel', $instance['scrollwheel']);
|
|
| 155 | + $showall = empty($instance['showall']) ? '0' : apply_filters('widget_showall', $instance['showall']);
|
|
| 156 | 156 | |
| 157 | 157 | /** |
| 158 | - * Filter the listing map should to be displayed or not. |
|
| 159 | - * |
|
| 160 | - * @since 1.4.6 |
|
| 158 | + * Filter the listing map should to be displayed or not. |
|
| 161 | 159 | * |
| 162 | - * @param bool $display true if map should be displayed, false if not. |
|
| 163 | - */ |
|
| 160 | + * @since 1.4.6 |
|
| 161 | + * |
|
| 162 | + * @param bool $display true if map should be displayed, false if not. |
|
| 163 | + */ |
|
| 164 | 164 | $show_map = apply_filters( 'geodir_show_map_listing', $display = true ); |
| 165 | 165 | if ( !$show_map ) {
|
| 166 | 166 | return; |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - $map_args = array(); |
|
| 170 | - $map_args['map_canvas_name'] = str_replace('-', '_', $args['widget_id']);
|
|
| 171 | - $map_args['width'] = $width; |
|
| 172 | - $map_args['height'] = $height; |
|
| 173 | - |
|
| 174 | - $map_args['scrollwheel'] = $scrollwheel; |
|
| 175 | - $map_args['showall'] = $showall; |
|
| 176 | - $map_args['child_collapse'] = '0'; |
|
| 177 | - $map_args['sticky'] = $sticky; |
|
| 178 | - $map_args['enable_cat_filters'] = false; |
|
| 179 | - $map_args['enable_text_search'] = false; |
|
| 180 | - $map_args['enable_post_type_filters'] = false; |
|
| 181 | - $map_args['enable_location_filters'] = false; |
|
| 182 | - $map_args['enable_jason_on_load'] = true; |
|
| 169 | + $map_args = array(); |
|
| 170 | + $map_args['map_canvas_name'] = str_replace('-', '_', $args['widget_id']);
|
|
| 171 | + $map_args['width'] = $width; |
|
| 172 | + $map_args['height'] = $height; |
|
| 173 | + |
|
| 174 | + $map_args['scrollwheel'] = $scrollwheel; |
|
| 175 | + $map_args['showall'] = $showall; |
|
| 176 | + $map_args['child_collapse'] = '0'; |
|
| 177 | + $map_args['sticky'] = $sticky; |
|
| 178 | + $map_args['enable_cat_filters'] = false; |
|
| 179 | + $map_args['enable_text_search'] = false; |
|
| 180 | + $map_args['enable_post_type_filters'] = false; |
|
| 181 | + $map_args['enable_location_filters'] = false; |
|
| 182 | + $map_args['enable_jason_on_load'] = true; |
|
| 183 | 183 | |
| 184 | - if (is_single()) {
|
|
| 185 | - |
|
| 186 | - global $post; |
|
| 187 | - $map_default_lat = $address_latitude = $post->post_latitude; |
|
| 188 | - $map_default_lng = $address_longitude = $post->post_longitude; |
|
| 189 | - $mapview = $post->post_mapview; |
|
| 190 | - $mapzoom = $post->post_mapzoom; |
|
| 191 | - $map_args['map_class_name'] = 'geodir-map-listing-page-single'; |
|
| 192 | - |
|
| 193 | - } else {
|
|
| 194 | - $default_location = geodir_get_default_location(); |
|
| 195 | - |
|
| 196 | - $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : ''; |
|
| 197 | - $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : ''; |
|
| 198 | - $map_args['map_class_name'] = 'geodir-map-listing-page'; |
|
| 199 | - $mapview = $maptype; |
|
| 200 | - } |
|
| 201 | - |
|
| 202 | - if (empty($mapzoom)) $mapzoom = $zoom; |
|
| 203 | - |
|
| 204 | - // Set default map options |
|
| 205 | - $map_args['ajax_url'] = geodir_get_ajax_url(); |
|
| 206 | - $map_args['latitude'] = $map_default_lat; |
|
| 207 | - $map_args['longitude'] = $map_default_lng; |
|
| 208 | - $map_args['zoom'] = $zoom; |
|
| 209 | - //$map_args['scrollwheel'] = true; |
|
| 210 | - $map_args['scrollwheel'] = $scrollwheel; |
|
| 211 | - $map_args['showall'] = $showall; |
|
| 212 | - $map_args['streetViewControl'] = true; |
|
| 213 | - $map_args['maptype'] = $maptype; |
|
| 214 | - $map_args['showPreview'] = '0'; |
|
| 215 | - $map_args['maxZoom'] = 21; |
|
| 216 | - $map_args['autozoom'] = $autozoom; |
|
| 217 | - $map_args['bubble_size'] = 'small'; |
|
| 184 | + if (is_single()) {
|
|
| 185 | + |
|
| 186 | + global $post; |
|
| 187 | + $map_default_lat = $address_latitude = $post->post_latitude; |
|
| 188 | + $map_default_lng = $address_longitude = $post->post_longitude; |
|
| 189 | + $mapview = $post->post_mapview; |
|
| 190 | + $mapzoom = $post->post_mapzoom; |
|
| 191 | + $map_args['map_class_name'] = 'geodir-map-listing-page-single'; |
|
| 192 | + |
|
| 193 | + } else {
|
|
| 194 | + $default_location = geodir_get_default_location(); |
|
| 195 | + |
|
| 196 | + $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : ''; |
|
| 197 | + $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : ''; |
|
| 198 | + $map_args['map_class_name'] = 'geodir-map-listing-page'; |
|
| 199 | + $mapview = $maptype; |
|
| 200 | + } |
|
| 201 | + |
|
| 202 | + if (empty($mapzoom)) $mapzoom = $zoom; |
|
| 203 | + |
|
| 204 | + // Set default map options |
|
| 205 | + $map_args['ajax_url'] = geodir_get_ajax_url(); |
|
| 206 | + $map_args['latitude'] = $map_default_lat; |
|
| 207 | + $map_args['longitude'] = $map_default_lng; |
|
| 208 | + $map_args['zoom'] = $zoom; |
|
| 209 | + //$map_args['scrollwheel'] = true; |
|
| 210 | + $map_args['scrollwheel'] = $scrollwheel; |
|
| 211 | + $map_args['showall'] = $showall; |
|
| 212 | + $map_args['streetViewControl'] = true; |
|
| 213 | + $map_args['maptype'] = $maptype; |
|
| 214 | + $map_args['showPreview'] = '0'; |
|
| 215 | + $map_args['maxZoom'] = 21; |
|
| 216 | + $map_args['autozoom'] = $autozoom; |
|
| 217 | + $map_args['bubble_size'] = 'small'; |
|
| 218 | 218 | |
| 219 | - $map_args['enable_marker_cluster'] = defined('GDCLUSTER_VERSION') && !empty($instance['marker_cluster']) ? true : false;
|
|
| 219 | + $map_args['enable_marker_cluster'] = defined('GDCLUSTER_VERSION') && !empty($instance['marker_cluster']) ? true : false;
|
|
| 220 | 220 | |
| 221 | - echo $before_widget; |
|
| 222 | - geodir_draw_map($map_args); |
|
| 223 | - echo $after_widget; |
|
| 221 | + echo $before_widget; |
|
| 222 | + geodir_draw_map($map_args); |
|
| 223 | + echo $after_widget; |
|
| 224 | 224 | |
| 225 | - endif; |
|
| 226 | - } |
|
| 225 | + endif; |
|
| 226 | + } |
|
| 227 | 227 | |
| 228 | 228 | /** |
| 229 | 229 | * Sanitize listing page map widget form values as they are saved. |
| 230 | 230 | * |
| 231 | 231 | * @since 1.0.0 |
| 232 | - * @since 1.5.1 Declare function public. |
|
| 232 | + * @since 1.5.1 Declare function public. |
|
| 233 | 233 | * |
| 234 | 234 | * @param array $new_instance Values just sent to be saved. |
| 235 | 235 | * @param array $old_instance Previously saved values from database. |
| 236 | 236 | * |
| 237 | 237 | * @return array Updated safe values to be saved. |
| 238 | 238 | */ |
| 239 | - public function update($new_instance, $old_instance) {
|
|
| 240 | - //save the widget |
|
| 241 | - $instance = $old_instance; |
|
| 242 | - $instance['width'] = strip_tags($new_instance['width']); |
|
| 243 | - $instance['heigh'] = ($new_instance['heigh']); |
|
| 244 | - $instance['maptype'] = ($new_instance['maptype']); |
|
| 245 | - $instance['zoom'] = ($new_instance['zoom']); |
|
| 246 | - $instance['autozoom'] = isset($new_instance['autozoom']) ? $new_instance['autozoom'] : ''; |
|
| 247 | - $instance['sticky'] = isset($new_instance['sticky']) ? $new_instance['sticky'] : ''; |
|
| 248 | - $instance['scrollwheel'] = isset($new_instance['scrollwheel']) ? ($new_instance['scrollwheel']) : ''; |
|
| 249 | - $instance['showall'] = isset($new_instance['showall']) ? ($new_instance['showall']) : ''; |
|
| 250 | - $instance['marker_cluster'] = defined('GDCLUSTER_VERSION') && !empty($new_instance['marker_cluster']) ? 1 : '';
|
|
| 251 | - |
|
| 252 | - return $instance; |
|
| 253 | - } |
|
| 239 | + public function update($new_instance, $old_instance) {
|
|
| 240 | + //save the widget |
|
| 241 | + $instance = $old_instance; |
|
| 242 | + $instance['width'] = strip_tags($new_instance['width']); |
|
| 243 | + $instance['heigh'] = ($new_instance['heigh']); |
|
| 244 | + $instance['maptype'] = ($new_instance['maptype']); |
|
| 245 | + $instance['zoom'] = ($new_instance['zoom']); |
|
| 246 | + $instance['autozoom'] = isset($new_instance['autozoom']) ? $new_instance['autozoom'] : ''; |
|
| 247 | + $instance['sticky'] = isset($new_instance['sticky']) ? $new_instance['sticky'] : ''; |
|
| 248 | + $instance['scrollwheel'] = isset($new_instance['scrollwheel']) ? ($new_instance['scrollwheel']) : ''; |
|
| 249 | + $instance['showall'] = isset($new_instance['showall']) ? ($new_instance['showall']) : ''; |
|
| 250 | + $instance['marker_cluster'] = defined('GDCLUSTER_VERSION') && !empty($new_instance['marker_cluster']) ? 1 : '';
|
|
| 251 | + |
|
| 252 | + return $instance; |
|
| 253 | + } |
|
| 254 | 254 | |
| 255 | 255 | /** |
| 256 | 256 | * Back-end listing page map widget settings form. |
| 257 | 257 | * |
| 258 | 258 | * @since 1.0.0 |
| 259 | - * @since 1.5.1 Declare function public. |
|
| 259 | + * @since 1.5.1 Declare function public. |
|
| 260 | 260 | * |
| 261 | 261 | * @param array $instance Previously saved values from database. |
| 262 | 262 | */ |
| 263 | - public function form($instance) {
|
|
| 264 | - // widget form in backend |
|
| 265 | - $instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'sticky' => '', 'scrollwheel' => '0', 'showall' => '0', 'marker_cluster' => '0'));
|
|
| 263 | + public function form($instance) {
|
|
| 264 | + // widget form in backend |
|
| 265 | + $instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'sticky' => '', 'scrollwheel' => '0', 'showall' => '0', 'marker_cluster' => '0'));
|
|
| 266 | 266 | |
| 267 | - $width = strip_tags($instance['width']); |
|
| 268 | - $heigh = strip_tags($instance['heigh']); |
|
| 269 | - $maptype = strip_tags($instance['maptype']); |
|
| 270 | - $zoom = strip_tags($instance['zoom']); |
|
| 271 | - $autozoom = strip_tags($instance['autozoom']); |
|
| 272 | - $sticky = strip_tags($instance['sticky']); |
|
| 273 | - $scrollwheel = strip_tags($instance['scrollwheel']); |
|
| 274 | - $showall = strip_tags($instance['showall']); |
|
| 275 | - $marker_cluster = (int)$instance['marker_cluster']; |
|
| 276 | - ?> |
|
| 267 | + $width = strip_tags($instance['width']); |
|
| 268 | + $heigh = strip_tags($instance['heigh']); |
|
| 269 | + $maptype = strip_tags($instance['maptype']); |
|
| 270 | + $zoom = strip_tags($instance['zoom']); |
|
| 271 | + $autozoom = strip_tags($instance['autozoom']); |
|
| 272 | + $sticky = strip_tags($instance['sticky']); |
|
| 273 | + $scrollwheel = strip_tags($instance['scrollwheel']); |
|
| 274 | + $showall = strip_tags($instance['showall']); |
|
| 275 | + $marker_cluster = (int)$instance['marker_cluster']; |
|
| 276 | + ?> |
|
| 277 | 277 | <p> |
| 278 | 278 | <label |
| 279 | 279 | for="<?php echo $this->get_field_id('width'); ?>"><?php _e('Map Width <small>(Default is : 294) you can use px or % here</small>', 'geodirectory'); ?>
|
@@ -302,14 +302,14 @@ discard block |
||
| 302 | 302 | name="<?php echo $this->get_field_name('maptype'); ?>">
|
| 303 | 303 | |
| 304 | 304 | <option <?php if (isset($maptype) && $maptype == 'ROADMAP') {
|
| 305 | - echo 'selected="selected"'; |
|
| 306 | - } ?> value="ROADMAP"><?php _e('Road Map', 'geodirectory'); ?></option>
|
|
| 305 | + echo 'selected="selected"'; |
|
| 306 | + } ?> value="ROADMAP"><?php _e('Road Map', 'geodirectory'); ?></option>
|
|
| 307 | 307 | <option <?php if (isset($maptype) && $maptype == 'SATELLITE') {
|
| 308 | - echo 'selected="selected"'; |
|
| 309 | - } ?> value="SATELLITE"><?php _e('Satellite Map', 'geodirectory'); ?></option>
|
|
| 308 | + echo 'selected="selected"'; |
|
| 309 | + } ?> value="SATELLITE"><?php _e('Satellite Map', 'geodirectory'); ?></option>
|
|
| 310 | 310 | <option <?php if (isset($maptype) && $maptype == 'HYBRID') {
|
| 311 | - echo 'selected="selected"'; |
|
| 312 | - } ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option>
|
|
| 311 | + echo 'selected="selected"'; |
|
| 312 | + } ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option>
|
|
| 313 | 313 | <option <?php selected($maptype, 'TERRAIN');?> |
| 314 | 314 | value="TERRAIN"><?php _e('Terrain Map', 'geodirectory'); ?></option>
|
| 315 | 315 | </select> |
@@ -317,8 +317,8 @@ discard block |
||
| 317 | 317 | </p> |
| 318 | 318 | |
| 319 | 319 | <?php |
| 320 | - $map_zoom_level = geodir_map_zoom_level(); |
|
| 321 | - ?> |
|
| 320 | + $map_zoom_level = geodir_map_zoom_level(); |
|
| 321 | + ?> |
|
| 322 | 322 | |
| 323 | 323 | <p> |
| 324 | 324 | <label |
@@ -328,14 +328,14 @@ discard block |
||
| 328 | 328 | <select class="widefat" id="<?php echo $this->get_field_id('zoom'); ?>"
|
| 329 | 329 | name="<?php echo $this->get_field_name('zoom'); ?>"> <?php
|
| 330 | 330 | |
| 331 | - foreach ($map_zoom_level as $level) {
|
|
| 332 | - $selected = ''; |
|
| 333 | - if ($level == $zoom) |
|
| 334 | - $selected = 'selected="selected"'; |
|
| 331 | + foreach ($map_zoom_level as $level) {
|
|
| 332 | + $selected = ''; |
|
| 333 | + if ($level == $zoom) |
|
| 334 | + $selected = 'selected="selected"'; |
|
| 335 | 335 | |
| 336 | - echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>'; |
|
| 336 | + echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>'; |
|
| 337 | 337 | |
| 338 | - } ?> |
|
| 338 | + } ?> |
|
| 339 | 339 | |
| 340 | 340 | </select> |
| 341 | 341 | |
@@ -347,8 +347,8 @@ discard block |
||
| 347 | 347 | for="<?php echo $this->get_field_id('autozoom'); ?>">
|
| 348 | 348 | <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('autozoom'); ?>"
|
| 349 | 349 | name="<?php echo $this->get_field_name('autozoom'); ?>"<?php if ($autozoom) {
|
| 350 | - echo 'checked="checked"'; |
|
| 351 | - } ?> /> <?php _e('Map Auto Zoom ?', 'geodirectory'); ?></label>
|
|
| 350 | + echo 'checked="checked"'; |
|
| 351 | + } ?> /> <?php _e('Map Auto Zoom ?', 'geodirectory'); ?></label>
|
|
| 352 | 352 | </p> |
| 353 | 353 | |
| 354 | 354 | <p> |
@@ -356,8 +356,8 @@ discard block |
||
| 356 | 356 | for="<?php echo $this->get_field_id('sticky'); ?>">
|
| 357 | 357 | <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('sticky'); ?>"
|
| 358 | 358 | name="<?php echo $this->get_field_name('sticky'); ?>"<?php if ($sticky) {
|
| 359 | - echo 'checked="checked"'; |
|
| 360 | - } ?> /> <?php _e('Map Sticky(should stick to the right of screen) ?', 'geodirectory'); ?>
|
|
| 359 | + echo 'checked="checked"'; |
|
| 360 | + } ?> /> <?php _e('Map Sticky(should stick to the right of screen) ?', 'geodirectory'); ?>
|
|
| 361 | 361 | </label> |
| 362 | 362 | </p> |
| 363 | 363 | |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | </p> --> |
| 384 | 384 | |
| 385 | 385 | <?php |
| 386 | - } |
|
| 386 | + } |
|
| 387 | 387 | } // class geodir_map_listingpage |
| 388 | 388 | |
| 389 | 389 | register_widget('geodir_map_listingpage');
|
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | * @param string $post->marker_json JSON representation of the post marker info. |
| 46 | 46 | * @param object $post The post object. |
| 47 | 47 | */ |
| 48 | - $list_map_json[] = apply_filters('geodir_create_list_jsondata',$post->marker_json,$post);
|
|
| 48 | + $list_map_json[] = apply_filters('geodir_create_list_jsondata', $post->marker_json, $post);
|
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $json_content = substr(implode(',', $cat_content_info), 1);
|
| 74 | 74 | $json_content = htmlentities($json_content, ENT_QUOTES, get_option('blog_charset')); // Quotes in csv title import break maps - FIXED by kiran on 2nd March, 2016
|
| 75 | 75 | $json_content = wp_specialchars_decode($json_content); // Fixed #post-320722 on 2016-12-08 |
| 76 | - $list_json = '[{"totalcount":"' . $totalcount . '",' . $json_content . ']';
|
|
| 76 | + $list_json = '[{"totalcount":"'.$totalcount.'",'.$json_content.']';
|
|
| 77 | 77 | } else {
|
| 78 | 78 | $list_json = '[{"totalcount":"0"}]';
|
| 79 | 79 | } |
@@ -161,8 +161,8 @@ discard block |
||
| 161 | 161 | * |
| 162 | 162 | * @param bool $display true if map should be displayed, false if not. |
| 163 | 163 | */ |
| 164 | - $show_map = apply_filters( 'geodir_show_map_listing', $display = true ); |
|
| 165 | - if ( !$show_map ) {
|
|
| 164 | + $show_map = apply_filters('geodir_show_map_listing', $display = true);
|
|
| 165 | + if (!$show_map) {
|
|
| 166 | 166 | return; |
| 167 | 167 | } |
| 168 | 168 | |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | */ |
| 263 | 263 | public function form($instance) {
|
| 264 | 264 | // widget form in backend |
| 265 | - $instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'sticky' => '', 'scrollwheel' => '0', 'showall' => '0', 'marker_cluster' => '0'));
|
|
| 265 | + $instance = wp_parse_args((array) $instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'sticky' => '', 'scrollwheel' => '0', 'showall' => '0', 'marker_cluster' => '0'));
|
|
| 266 | 266 | |
| 267 | 267 | $width = strip_tags($instance['width']); |
| 268 | 268 | $heigh = strip_tags($instance['heigh']); |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | $sticky = strip_tags($instance['sticky']); |
| 273 | 273 | $scrollwheel = strip_tags($instance['scrollwheel']); |
| 274 | 274 | $showall = strip_tags($instance['showall']); |
| 275 | - $marker_cluster = (int)$instance['marker_cluster']; |
|
| 275 | + $marker_cluster = (int) $instance['marker_cluster']; |
|
| 276 | 276 | ?> |
| 277 | 277 | <p> |
| 278 | 278 | <label |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | <option <?php if (isset($maptype) && $maptype == 'HYBRID') {
|
| 311 | 311 | echo 'selected="selected"'; |
| 312 | 312 | } ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option>
|
| 313 | - <option <?php selected($maptype, 'TERRAIN');?> |
|
| 313 | + <option <?php selected($maptype, 'TERRAIN'); ?> |
|
| 314 | 314 | value="TERRAIN"><?php _e('Terrain Map', 'geodirectory'); ?></option>
|
| 315 | 315 | </select> |
| 316 | 316 | </label> |
@@ -333,7 +333,7 @@ discard block |
||
| 333 | 333 | if ($level == $zoom) |
| 334 | 334 | $selected = 'selected="selected"'; |
| 335 | 335 | |
| 336 | - echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>'; |
|
| 336 | + echo '<option '.$selected.' value="'.$level.'">'.$level.'</option>'; |
|
| 337 | 337 | |
| 338 | 338 | } ?> |
| 339 | 339 | |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | for="<?php echo $this->get_field_id('scrollwheel'); ?>">
|
| 367 | 367 | <input id="<?php echo $this->get_field_id('scrollwheel'); ?>"
|
| 368 | 368 | name="<?php echo $this->get_field_name('scrollwheel'); ?>" type="checkbox" value="1"
|
| 369 | - <?php if ($scrollwheel){ ?>checked="checked" <?php } ?> /> <?php _e('Enable mouse scroll zoom ?', 'geodirectory'); ?>
|
|
| 369 | + <?php if ($scrollwheel) { ?>checked="checked" <?php } ?> /> <?php _e('Enable mouse scroll zoom ?', 'geodirectory'); ?>
|
|
| 370 | 370 | </label> |
| 371 | 371 | </p> |
| 372 | 372 | <?php if (defined('GDCLUSTER_VERSION')) { ?>
|
@@ -16,22 +16,22 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | function geodir_on_wp_loaded() |
| 18 | 18 | {
|
| 19 | - /** |
|
| 20 | - * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms. |
|
| 21 | - * |
|
| 22 | - * @since 1.0.0 |
|
| 23 | - */ |
|
| 24 | - do_action('giodir_handle_request_plugins_loaded');
|
|
| 25 | - global $wpdb; |
|
| 19 | + /** |
|
| 20 | + * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms. |
|
| 21 | + * |
|
| 22 | + * @since 1.0.0 |
|
| 23 | + */ |
|
| 24 | + do_action('giodir_handle_request_plugins_loaded');
|
|
| 25 | + global $wpdb; |
|
| 26 | 26 | |
| 27 | 27 | |
| 28 | - if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') {
|
|
| 29 | - geodir_send_inquiry($_REQUEST); // function in custom_functions.php |
|
| 28 | + if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') {
|
|
| 29 | + geodir_send_inquiry($_REQUEST); // function in custom_functions.php |
|
| 30 | 30 | |
| 31 | - } elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') {
|
|
| 32 | - geodir_send_friend($_REQUEST); // function in custom_functions.php |
|
| 31 | + } elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') {
|
|
| 32 | + geodir_send_friend($_REQUEST); // function in custom_functions.php |
|
| 33 | 33 | |
| 34 | - } |
|
| 34 | + } |
|
| 35 | 35 | |
| 36 | 36 | } |
| 37 | 37 | |
@@ -44,9 +44,9 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | function geodir_on_wp() |
| 46 | 46 | {
|
| 47 | - if(geodir_is_page('login')) {
|
|
| 48 | - geodir_user_signup(); |
|
| 49 | - } |
|
| 47 | + if(geodir_is_page('login')) {
|
|
| 48 | + geodir_user_signup(); |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | 51 | } |
| 52 | 52 | |
@@ -59,32 +59,32 @@ discard block |
||
| 59 | 59 | */ |
| 60 | 60 | function geodir_on_init() |
| 61 | 61 | {
|
| 62 | - /** |
|
| 63 | - * Called on the wp_init WP hook at the start of the geodir_on_init() function. |
|
| 64 | - * |
|
| 65 | - * @since 1.0.0 |
|
| 66 | - */ |
|
| 67 | - do_action('giodir_handle_request');
|
|
| 68 | - global $wpdb; |
|
| 62 | + /** |
|
| 63 | + * Called on the wp_init WP hook at the start of the geodir_on_init() function. |
|
| 64 | + * |
|
| 65 | + * @since 1.0.0 |
|
| 66 | + */ |
|
| 67 | + do_action('giodir_handle_request');
|
|
| 68 | + global $wpdb; |
|
| 69 | 69 | |
| 70 | 70 | |
| 71 | 71 | |
| 72 | 72 | |
| 73 | - if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) {
|
|
| 74 | - show_admin_bar(false); |
|
| 75 | - } |
|
| 73 | + if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) {
|
|
| 74 | + show_admin_bar(false); |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | 77 | |
| 78 | - if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') {
|
|
| 79 | - /** |
|
| 80 | - * Contains map marker functions. |
|
| 81 | - * |
|
| 82 | - * @since 1.0.0 |
|
| 83 | - * @package GeoDirectory |
|
| 84 | - */ |
|
| 85 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 86 | - die; |
|
| 87 | - } |
|
| 78 | + if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') {
|
|
| 79 | + /** |
|
| 80 | + * Contains map marker functions. |
|
| 81 | + * |
|
| 82 | + * @since 1.0.0 |
|
| 83 | + * @package GeoDirectory |
|
| 84 | + */ |
|
| 85 | + include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 86 | + die; |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | 89 | |
| 90 | 90 | |
@@ -104,294 +104,294 @@ discard block |
||
| 104 | 104 | * @todo check if nonce is required here and if so add one. |
| 105 | 105 | */ |
| 106 | 106 | function geodir_ajax_handler() {
|
| 107 | - global $wpdb, $gd_session,$post; |
|
| 107 | + global $wpdb, $gd_session,$post; |
|
| 108 | 108 | |
| 109 | - if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
|
|
| 109 | + if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
|
|
| 110 | 110 | $gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']);
|
| 111 | - echo '1'; |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
|
|
| 115 | - if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) |
|
| 116 | - geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
| 117 | - else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) |
|
| 118 | - geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
|
|
| 122 | - if (current_user_can('manage_options')) {
|
|
| 123 | - /** |
|
| 124 | - * Contains admin ajax handling functions. |
|
| 125 | - * |
|
| 126 | - * @since 1.0.0 |
|
| 127 | - * @package GeoDirectory |
|
| 128 | - */ |
|
| 129 | - include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
| 130 | - } else {
|
|
| 131 | - wp_redirect(geodir_login_url()); |
|
| 132 | - gd_die(); |
|
| 133 | - } |
|
| 134 | - } |
|
| 135 | - |
|
| 136 | - if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) {
|
|
| 137 | - if (current_user_can('manage_options')) {
|
|
| 138 | - switch ($_REQUEST['geodir_autofill']): |
|
| 139 | - case "geodir_dummy_delete" : |
|
| 140 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 141 | - return; |
|
| 142 | - |
|
| 143 | - $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : ''; |
|
| 144 | - if (isset($_REQUEST['posttype'])) |
|
| 145 | - /** |
|
| 146 | - * Used to delete the dummy post data per post type. |
|
| 147 | - * |
|
| 148 | - * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. |
|
| 149 | - * |
|
| 150 | - * @since 1.6.11 |
|
| 151 | - * @param string $posttype The post type to insert. |
|
| 152 | - * @param string $datatype The type of dummy data to insert. |
|
| 153 | - */ |
|
| 154 | - do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
|
|
| 155 | - break; |
|
| 156 | - case "geodir_dummy_insert" : |
|
| 157 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 158 | - return; |
|
| 159 | - |
|
| 160 | - global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; |
|
| 161 | - $city_bound_lat1 = $_REQUEST['city_bound_lat1']; |
|
| 162 | - $city_bound_lng1 = $_REQUEST['city_bound_lng1']; |
|
| 163 | - $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
|
| 164 | - $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
|
| 165 | - |
|
| 166 | - if (isset($_REQUEST['posttype'])){
|
|
| 167 | - /** |
|
| 168 | - * Used to insert the dummy post data per post type. |
|
| 169 | - * |
|
| 170 | - * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype']. |
|
| 171 | - * |
|
| 172 | - * @since 1.6.11 |
|
| 173 | - * @param string $posttype The post type to insert. |
|
| 174 | - * @param string $datatype The type of dummy data to insert. |
|
| 175 | - * @param int $post_index The item number to insert. |
|
| 176 | - */ |
|
| 177 | - do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
|
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - |
|
| 181 | - break; |
|
| 182 | - endswitch; |
|
| 183 | - } else {
|
|
| 184 | - wp_redirect(geodir_login_url()); |
|
| 185 | - exit(); |
|
| 186 | - } |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') {
|
|
| 190 | - |
|
| 191 | - if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
|
|
| 192 | - $template = locate_template(array("geodirectory/popup-forms.php"));
|
|
| 193 | - if (!$template) {
|
|
| 194 | - $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
| 195 | - } |
|
| 196 | - require_once($template); |
|
| 197 | - } |
|
| 198 | - |
|
| 199 | - gd_die(); |
|
| 200 | - } |
|
| 201 | - |
|
| 202 | - /*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){
|
|
| 111 | + echo '1'; |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
|
|
| 115 | + if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) |
|
| 116 | + geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
| 117 | + else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) |
|
| 118 | + geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
|
|
| 122 | + if (current_user_can('manage_options')) {
|
|
| 123 | + /** |
|
| 124 | + * Contains admin ajax handling functions. |
|
| 125 | + * |
|
| 126 | + * @since 1.0.0 |
|
| 127 | + * @package GeoDirectory |
|
| 128 | + */ |
|
| 129 | + include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
| 130 | + } else {
|
|
| 131 | + wp_redirect(geodir_login_url()); |
|
| 132 | + gd_die(); |
|
| 133 | + } |
|
| 134 | + } |
|
| 135 | + |
|
| 136 | + if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) {
|
|
| 137 | + if (current_user_can('manage_options')) {
|
|
| 138 | + switch ($_REQUEST['geodir_autofill']): |
|
| 139 | + case "geodir_dummy_delete" : |
|
| 140 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 141 | + return; |
|
| 142 | + |
|
| 143 | + $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : ''; |
|
| 144 | + if (isset($_REQUEST['posttype'])) |
|
| 145 | + /** |
|
| 146 | + * Used to delete the dummy post data per post type. |
|
| 147 | + * |
|
| 148 | + * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. |
|
| 149 | + * |
|
| 150 | + * @since 1.6.11 |
|
| 151 | + * @param string $posttype The post type to insert. |
|
| 152 | + * @param string $datatype The type of dummy data to insert. |
|
| 153 | + */ |
|
| 154 | + do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
|
|
| 155 | + break; |
|
| 156 | + case "geodir_dummy_insert" : |
|
| 157 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 158 | + return; |
|
| 159 | + |
|
| 160 | + global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; |
|
| 161 | + $city_bound_lat1 = $_REQUEST['city_bound_lat1']; |
|
| 162 | + $city_bound_lng1 = $_REQUEST['city_bound_lng1']; |
|
| 163 | + $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
|
| 164 | + $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
|
| 165 | + |
|
| 166 | + if (isset($_REQUEST['posttype'])){
|
|
| 167 | + /** |
|
| 168 | + * Used to insert the dummy post data per post type. |
|
| 169 | + * |
|
| 170 | + * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype']. |
|
| 171 | + * |
|
| 172 | + * @since 1.6.11 |
|
| 173 | + * @param string $posttype The post type to insert. |
|
| 174 | + * @param string $datatype The type of dummy data to insert. |
|
| 175 | + * @param int $post_index The item number to insert. |
|
| 176 | + */ |
|
| 177 | + do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
|
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + |
|
| 181 | + break; |
|
| 182 | + endswitch; |
|
| 183 | + } else {
|
|
| 184 | + wp_redirect(geodir_login_url()); |
|
| 185 | + exit(); |
|
| 186 | + } |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') {
|
|
| 190 | + |
|
| 191 | + if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
|
|
| 192 | + $template = locate_template(array("geodirectory/popup-forms.php"));
|
|
| 193 | + if (!$template) {
|
|
| 194 | + $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
| 195 | + } |
|
| 196 | + require_once($template); |
|
| 197 | + } |
|
| 198 | + |
|
| 199 | + gd_die(); |
|
| 200 | + } |
|
| 201 | + |
|
| 202 | + /*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){
|
|
| 203 | 203 | include_once ( geodir_plugin_path() . '/geodirectory-templates/advance-search-form.php'); |
| 204 | 204 | }*/ |
| 205 | 205 | |
| 206 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') {
|
|
| 207 | - /** |
|
| 208 | - * Contains map marker functions. |
|
| 209 | - * |
|
| 210 | - * @since 1.0.0 |
|
| 211 | - * @package GeoDirectory |
|
| 212 | - */ |
|
| 213 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 214 | - } |
|
| 215 | - |
|
| 216 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
|
|
| 217 | - if (is_user_logged_in()) {
|
|
| 218 | - switch ($_REQUEST['ajax_action']): |
|
| 219 | - case "add" : |
|
| 220 | - geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
| 221 | - break; |
|
| 222 | - case "remove" : |
|
| 223 | - geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
| 224 | - break; |
|
| 225 | - endswitch; |
|
| 226 | - } else {
|
|
| 227 | - wp_redirect(geodir_login_url()); |
|
| 228 | - exit(); |
|
| 229 | - } |
|
| 230 | - } |
|
| 231 | - |
|
| 232 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') {
|
|
| 233 | - |
|
| 234 | - $is_current_user_owner = true; |
|
| 235 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 236 | - $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
| 237 | - } |
|
| 238 | - |
|
| 239 | - $request = $gd_session->get('listing');
|
|
| 240 | - |
|
| 241 | - if (is_user_logged_in() && $is_current_user_owner) {
|
|
| 242 | - |
|
| 243 | - switch ($_REQUEST['ajax_action']): |
|
| 244 | - case "add": |
|
| 245 | - case "update": |
|
| 246 | - |
|
| 247 | - if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
|
|
| 248 | - $last_id = geodir_save_listing(); |
|
| 249 | - |
|
| 250 | - if ($last_id) {
|
|
| 251 | - //$redirect_to = get_permalink( $last_id ); |
|
| 252 | - $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
|
|
| 253 | - |
|
| 254 | - } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 255 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 256 | - $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
|
| 257 | - } else |
|
| 258 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 259 | - |
|
| 260 | - wp_redirect($redirect_to); |
|
| 261 | - } else {
|
|
| 262 | - $gd_session->un_set('listing');
|
|
| 263 | - wp_redirect(home_url()); |
|
| 264 | - } |
|
| 265 | - |
|
| 266 | - break; |
|
| 267 | - case "cancel" : |
|
| 268 | - |
|
| 269 | - $gd_session->un_set('listing');
|
|
| 270 | - |
|
| 271 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) |
|
| 272 | - wp_redirect(get_permalink($_REQUEST['pid'])); |
|
| 273 | - else {
|
|
| 274 | - geodir_remove_temp_images(); |
|
| 275 | - wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
|
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - break; |
|
| 279 | - |
|
| 280 | - case "publish" : |
|
| 281 | - |
|
| 282 | - if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
|
|
| 283 | - |
|
| 284 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 285 | - $new_post = array(); |
|
| 286 | - $new_post['ID'] = $_REQUEST['pid']; |
|
| 287 | - |
|
| 288 | - $lastid = wp_update_post($new_post); |
|
| 289 | - |
|
| 290 | - $gd_session->un_set('listing');
|
|
| 291 | - wp_redirect(get_permalink($lastid)); |
|
| 292 | - } else {
|
|
| 293 | - $last_id = geodir_save_listing(); |
|
| 294 | - |
|
| 295 | - if ($last_id) {
|
|
| 296 | - //$redirect_to = get_permalink( $last_id ); |
|
| 297 | - $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
|
|
| 298 | - } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 299 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 300 | - $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
|
| 301 | - } else |
|
| 302 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 303 | - |
|
| 304 | - $gd_session->un_set('listing');
|
|
| 305 | - wp_redirect($redirect_to); |
|
| 306 | - } |
|
| 307 | - } else {
|
|
| 308 | - $gd_session->un_set('listing');
|
|
| 309 | - wp_redirect(home_url()); |
|
| 310 | - } |
|
| 311 | - |
|
| 312 | - break; |
|
| 313 | - case "delete" : |
|
| 314 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 315 | - global $current_user; |
|
| 316 | - |
|
| 317 | - if (get_option('geodir_disable_perm_delete')) {
|
|
| 318 | - $lastid = wp_trash_post($_REQUEST['pid']); |
|
| 319 | - } else {
|
|
| 320 | - $lastid = wp_delete_post($_REQUEST['pid']); |
|
| 321 | - } |
|
| 322 | - |
|
| 323 | - if ($lastid && !is_wp_error($lastid)) |
|
| 324 | - wp_redirect($_SERVER['HTTP_REFERER']); |
|
| 325 | - |
|
| 326 | - //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
|
|
| 327 | - } |
|
| 328 | - break; |
|
| 329 | - endswitch; |
|
| 330 | - |
|
| 331 | - $gd_session->un_set('listing');
|
|
| 332 | - } else {
|
|
| 333 | - $gd_session->un_set('listing');
|
|
| 334 | - wp_redirect(geodir_login_url()); |
|
| 335 | - exit(); |
|
| 336 | - } |
|
| 337 | - } |
|
| 338 | - |
|
| 339 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') {
|
|
| 340 | - /** |
|
| 341 | - * Contains registration and login functions. |
|
| 342 | - * @todo Fix the file path. |
|
| 343 | - * |
|
| 344 | - * @since 1.0.0 |
|
| 345 | - * @package GeoDirectory |
|
| 346 | - */ |
|
| 347 | - include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
| 348 | - } |
|
| 349 | - |
|
| 350 | - if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
|
|
| 351 | - $args = array('taxonomy' => sanitize_text_field($_REQUEST['term']));
|
|
| 352 | - if (!empty($_REQUEST['parent_only'])) {
|
|
| 353 | - $args['parent'] = 0; |
|
| 354 | - } |
|
| 355 | - $terms_o = get_terms($args); |
|
| 356 | - |
|
| 357 | - // Skip terms which has no listing |
|
| 358 | - if (!empty($terms_o)) {
|
|
| 359 | - $filter_terms = array(); |
|
| 360 | - |
|
| 361 | - foreach ($terms_o as $term) {
|
|
| 362 | - if (isset($term->count) && $term->count > 0) {
|
|
| 363 | - $filter_terms[] = $term; |
|
| 364 | - } |
|
| 365 | - } |
|
| 366 | - $terms_o = $filter_terms; |
|
| 367 | - } |
|
| 368 | - |
|
| 369 | - $terms = geodir_sort_terms($terms_o, 'count'); |
|
| 370 | - geodir_helper_cat_list_output($terms, intval($_REQUEST['limit'])); |
|
| 371 | - exit(); |
|
| 372 | - } |
|
| 373 | - |
|
| 374 | - gd_die(); |
|
| 206 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') {
|
|
| 207 | + /** |
|
| 208 | + * Contains map marker functions. |
|
| 209 | + * |
|
| 210 | + * @since 1.0.0 |
|
| 211 | + * @package GeoDirectory |
|
| 212 | + */ |
|
| 213 | + include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 214 | + } |
|
| 215 | + |
|
| 216 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
|
|
| 217 | + if (is_user_logged_in()) {
|
|
| 218 | + switch ($_REQUEST['ajax_action']): |
|
| 219 | + case "add" : |
|
| 220 | + geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
| 221 | + break; |
|
| 222 | + case "remove" : |
|
| 223 | + geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
| 224 | + break; |
|
| 225 | + endswitch; |
|
| 226 | + } else {
|
|
| 227 | + wp_redirect(geodir_login_url()); |
|
| 228 | + exit(); |
|
| 229 | + } |
|
| 230 | + } |
|
| 231 | + |
|
| 232 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') {
|
|
| 233 | + |
|
| 234 | + $is_current_user_owner = true; |
|
| 235 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 236 | + $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
| 237 | + } |
|
| 238 | + |
|
| 239 | + $request = $gd_session->get('listing');
|
|
| 240 | + |
|
| 241 | + if (is_user_logged_in() && $is_current_user_owner) {
|
|
| 242 | + |
|
| 243 | + switch ($_REQUEST['ajax_action']): |
|
| 244 | + case "add": |
|
| 245 | + case "update": |
|
| 246 | + |
|
| 247 | + if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
|
|
| 248 | + $last_id = geodir_save_listing(); |
|
| 249 | + |
|
| 250 | + if ($last_id) {
|
|
| 251 | + //$redirect_to = get_permalink( $last_id ); |
|
| 252 | + $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
|
|
| 253 | + |
|
| 254 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 255 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 256 | + $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
|
| 257 | + } else |
|
| 258 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 259 | + |
|
| 260 | + wp_redirect($redirect_to); |
|
| 261 | + } else {
|
|
| 262 | + $gd_session->un_set('listing');
|
|
| 263 | + wp_redirect(home_url()); |
|
| 264 | + } |
|
| 265 | + |
|
| 266 | + break; |
|
| 267 | + case "cancel" : |
|
| 268 | + |
|
| 269 | + $gd_session->un_set('listing');
|
|
| 270 | + |
|
| 271 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) |
|
| 272 | + wp_redirect(get_permalink($_REQUEST['pid'])); |
|
| 273 | + else {
|
|
| 274 | + geodir_remove_temp_images(); |
|
| 275 | + wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
|
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + break; |
|
| 279 | + |
|
| 280 | + case "publish" : |
|
| 281 | + |
|
| 282 | + if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
|
|
| 283 | + |
|
| 284 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 285 | + $new_post = array(); |
|
| 286 | + $new_post['ID'] = $_REQUEST['pid']; |
|
| 287 | + |
|
| 288 | + $lastid = wp_update_post($new_post); |
|
| 289 | + |
|
| 290 | + $gd_session->un_set('listing');
|
|
| 291 | + wp_redirect(get_permalink($lastid)); |
|
| 292 | + } else {
|
|
| 293 | + $last_id = geodir_save_listing(); |
|
| 294 | + |
|
| 295 | + if ($last_id) {
|
|
| 296 | + //$redirect_to = get_permalink( $last_id ); |
|
| 297 | + $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
|
|
| 298 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 299 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 300 | + $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
|
| 301 | + } else |
|
| 302 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 303 | + |
|
| 304 | + $gd_session->un_set('listing');
|
|
| 305 | + wp_redirect($redirect_to); |
|
| 306 | + } |
|
| 307 | + } else {
|
|
| 308 | + $gd_session->un_set('listing');
|
|
| 309 | + wp_redirect(home_url()); |
|
| 310 | + } |
|
| 311 | + |
|
| 312 | + break; |
|
| 313 | + case "delete" : |
|
| 314 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 315 | + global $current_user; |
|
| 316 | + |
|
| 317 | + if (get_option('geodir_disable_perm_delete')) {
|
|
| 318 | + $lastid = wp_trash_post($_REQUEST['pid']); |
|
| 319 | + } else {
|
|
| 320 | + $lastid = wp_delete_post($_REQUEST['pid']); |
|
| 321 | + } |
|
| 322 | + |
|
| 323 | + if ($lastid && !is_wp_error($lastid)) |
|
| 324 | + wp_redirect($_SERVER['HTTP_REFERER']); |
|
| 325 | + |
|
| 326 | + //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
|
|
| 327 | + } |
|
| 328 | + break; |
|
| 329 | + endswitch; |
|
| 330 | + |
|
| 331 | + $gd_session->un_set('listing');
|
|
| 332 | + } else {
|
|
| 333 | + $gd_session->un_set('listing');
|
|
| 334 | + wp_redirect(geodir_login_url()); |
|
| 335 | + exit(); |
|
| 336 | + } |
|
| 337 | + } |
|
| 338 | + |
|
| 339 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') {
|
|
| 340 | + /** |
|
| 341 | + * Contains registration and login functions. |
|
| 342 | + * @todo Fix the file path. |
|
| 343 | + * |
|
| 344 | + * @since 1.0.0 |
|
| 345 | + * @package GeoDirectory |
|
| 346 | + */ |
|
| 347 | + include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
| 348 | + } |
|
| 349 | + |
|
| 350 | + if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
|
|
| 351 | + $args = array('taxonomy' => sanitize_text_field($_REQUEST['term']));
|
|
| 352 | + if (!empty($_REQUEST['parent_only'])) {
|
|
| 353 | + $args['parent'] = 0; |
|
| 354 | + } |
|
| 355 | + $terms_o = get_terms($args); |
|
| 356 | + |
|
| 357 | + // Skip terms which has no listing |
|
| 358 | + if (!empty($terms_o)) {
|
|
| 359 | + $filter_terms = array(); |
|
| 360 | + |
|
| 361 | + foreach ($terms_o as $term) {
|
|
| 362 | + if (isset($term->count) && $term->count > 0) {
|
|
| 363 | + $filter_terms[] = $term; |
|
| 364 | + } |
|
| 365 | + } |
|
| 366 | + $terms_o = $filter_terms; |
|
| 367 | + } |
|
| 368 | + |
|
| 369 | + $terms = geodir_sort_terms($terms_o, 'count'); |
|
| 370 | + geodir_helper_cat_list_output($terms, intval($_REQUEST['limit'])); |
|
| 371 | + exit(); |
|
| 372 | + } |
|
| 373 | + |
|
| 374 | + gd_die(); |
|
| 375 | 375 | } |
| 376 | 376 | |
| 377 | 377 | |
| 378 | 378 | function geodir_show_ga_stats(){
|
| 379 | - if (isset($_REQUEST['ga_start'])) {
|
|
| 380 | - $ga_start = $_REQUEST['ga_start']; |
|
| 381 | - } else {
|
|
| 382 | - $ga_start = ''; |
|
| 383 | - } |
|
| 384 | - if (isset($_REQUEST['ga_end'])) {
|
|
| 385 | - $ga_end = $_REQUEST['ga_end']; |
|
| 386 | - } else {
|
|
| 387 | - $ga_end = ''; |
|
| 388 | - } |
|
| 389 | - try {
|
|
| 390 | - geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
|
| 391 | - } catch (Exception $e) {
|
|
| 392 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 393 | - } |
|
| 394 | - die; |
|
| 379 | + if (isset($_REQUEST['ga_start'])) {
|
|
| 380 | + $ga_start = $_REQUEST['ga_start']; |
|
| 381 | + } else {
|
|
| 382 | + $ga_start = ''; |
|
| 383 | + } |
|
| 384 | + if (isset($_REQUEST['ga_end'])) {
|
|
| 385 | + $ga_end = $_REQUEST['ga_end']; |
|
| 386 | + } else {
|
|
| 387 | + $ga_end = ''; |
|
| 388 | + } |
|
| 389 | + try {
|
|
| 390 | + geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
|
| 391 | + } catch (Exception $e) {
|
|
| 392 | + geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 393 | + } |
|
| 394 | + die; |
|
| 395 | 395 | } |
| 396 | 396 | add_action( 'wp_ajax_gdga', 'geodir_show_ga_stats' ); |
| 397 | 397 | add_action( 'wp_ajax_nopriv_gdga', 'geodir_show_ga_stats' ); |
| 398 | 398 | \ No newline at end of file |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | function geodir_on_wp() |
| 46 | 46 | {
|
| 47 | - if(geodir_is_page('login')) {
|
|
| 47 | + if (geodir_is_page('login')) {
|
|
| 48 | 48 | geodir_user_signup(); |
| 49 | 49 | } |
| 50 | 50 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | * @since 1.0.0 |
| 83 | 83 | * @package GeoDirectory |
| 84 | 84 | */ |
| 85 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 85 | + include_once(geodir_plugin_path().'/geodirectory-functions/map-functions/get_markers.php'); |
|
| 86 | 86 | die; |
| 87 | 87 | } |
| 88 | 88 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | * @todo check if nonce is required here and if so add one. |
| 105 | 105 | */ |
| 106 | 106 | function geodir_ajax_handler() {
|
| 107 | - global $wpdb, $gd_session,$post; |
|
| 107 | + global $wpdb, $gd_session, $post; |
|
| 108 | 108 | |
| 109 | 109 | if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
|
| 110 | 110 | $gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']);
|
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * @since 1.0.0 |
| 127 | 127 | * @package GeoDirectory |
| 128 | 128 | */ |
| 129 | - include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
| 129 | + include_once(geodir_plugin_path().'/geodirectory-admin/geodir_admin_ajax.php'); |
|
| 130 | 130 | } else {
|
| 131 | 131 | wp_redirect(geodir_login_url()); |
| 132 | 132 | gd_die(); |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | * @param string $posttype The post type to insert. |
| 152 | 152 | * @param string $datatype The type of dummy data to insert. |
| 153 | 153 | */ |
| 154 | - do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
|
|
| 154 | + do_action('geodir_delete_dummy_posts', sanitize_key($_REQUEST['posttype']), $datatype);
|
|
| 155 | 155 | break; |
| 156 | 156 | case "geodir_dummy_insert" : |
| 157 | 157 | if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
| 164 | 164 | $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
| 165 | 165 | |
| 166 | - if (isset($_REQUEST['posttype'])){
|
|
| 166 | + if (isset($_REQUEST['posttype'])) {
|
|
| 167 | 167 | /** |
| 168 | 168 | * Used to insert the dummy post data per post type. |
| 169 | 169 | * |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | * @param string $datatype The type of dummy data to insert. |
| 175 | 175 | * @param int $post_index The item number to insert. |
| 176 | 176 | */ |
| 177 | - do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
|
|
| 177 | + do_action('geodir_insert_dummy_posts', sanitize_key($_REQUEST['posttype']), sanitize_key($_REQUEST['datatype']), absint($_REQUEST['insert_dummy_post_index']));
|
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
|
| 192 | 192 | $template = locate_template(array("geodirectory/popup-forms.php"));
|
| 193 | 193 | if (!$template) {
|
| 194 | - $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
| 194 | + $template = geodir_plugin_path().'/geodirectory-templates/popup-forms.php'; |
|
| 195 | 195 | } |
| 196 | 196 | require_once($template); |
| 197 | 197 | } |
@@ -210,17 +210,17 @@ discard block |
||
| 210 | 210 | * @since 1.0.0 |
| 211 | 211 | * @package GeoDirectory |
| 212 | 212 | */ |
| 213 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 213 | + include_once(geodir_plugin_path().'/geodirectory-functions/map-functions/get_markers.php'); |
|
| 214 | 214 | } |
| 215 | 215 | |
| 216 | 216 | if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
|
| 217 | 217 | if (is_user_logged_in()) {
|
| 218 | 218 | switch ($_REQUEST['ajax_action']): |
| 219 | 219 | case "add" : |
| 220 | - geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
| 220 | + geodir_add_to_favorite((int) $_REQUEST['pid']); |
|
| 221 | 221 | break; |
| 222 | 222 | case "remove" : |
| 223 | - geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
| 223 | + geodir_remove_from_favorite((int) $_REQUEST['pid']); |
|
| 224 | 224 | break; |
| 225 | 225 | endswitch; |
| 226 | 226 | } else {
|
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | |
| 234 | 234 | $is_current_user_owner = true; |
| 235 | 235 | if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
| 236 | - $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
| 236 | + $is_current_user_owner = geodir_listing_belong_to_current_user((int) $_REQUEST['pid']); |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | $request = $gd_session->get('listing');
|
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | * @since 1.0.0 |
| 345 | 345 | * @package GeoDirectory |
| 346 | 346 | */ |
| 347 | - include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
| 347 | + include_once(geodir_plugin_path().'/geodirectory-functions/geodirectory_reg.php'); |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
|
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | } |
| 376 | 376 | |
| 377 | 377 | |
| 378 | -function geodir_show_ga_stats(){
|
|
| 378 | +function geodir_show_ga_stats() {
|
|
| 379 | 379 | if (isset($_REQUEST['ga_start'])) {
|
| 380 | 380 | $ga_start = $_REQUEST['ga_start']; |
| 381 | 381 | } else {
|
@@ -389,9 +389,9 @@ discard block |
||
| 389 | 389 | try {
|
| 390 | 390 | geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
| 391 | 391 | } catch (Exception $e) {
|
| 392 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 392 | + geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage()));
|
|
| 393 | 393 | } |
| 394 | 394 | die; |
| 395 | 395 | } |
| 396 | -add_action( 'wp_ajax_gdga', 'geodir_show_ga_stats' ); |
|
| 397 | -add_action( 'wp_ajax_nopriv_gdga', 'geodir_show_ga_stats' ); |
|
| 398 | 396 | \ No newline at end of file |
| 397 | +add_action('wp_ajax_gdga', 'geodir_show_ga_stats');
|
|
| 398 | +add_action('wp_ajax_nopriv_gdga', 'geodir_show_ga_stats'); |
|
| 399 | 399 | \ No newline at end of file |