@@ -16,8 +16,9 @@ |
||
16 | 16 | * the visitor has not yet entered the password we will |
17 | 17 | * return early without loading the comments. |
18 | 18 | */ |
19 | -if (post_password_required()) |
|
20 | - return; |
|
19 | +if (post_password_required()) { |
|
20 | + return; |
|
21 | +} |
|
21 | 22 | ?> |
22 | 23 | |
23 | 24 | <div id="comments" class="comments-area"> |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | * return early without loading the comments. |
18 | 18 | */ |
19 | 19 | if (post_password_required()) |
20 | - return; |
|
20 | + return; |
|
21 | 21 | ?> |
22 | 22 | |
23 | 23 | <div id="comments" class="comments-area"> |
@@ -25,35 +25,35 @@ discard block |
||
25 | 25 | <?php // You can start editing here -- including this comment! ?> |
26 | 26 | |
27 | 27 | <?php |
28 | - /** |
|
29 | - * Called before displaying reviews. |
|
30 | - * |
|
31 | - * If you would like to wrap reviews inside a div this is the place to print your open div. @see geodir_before_review_form to print your closing div. |
|
32 | - * |
|
33 | - * @since 1.5.7 |
|
34 | - */ |
|
35 | - do_action('geodir_before_review_list'); ?> |
|
28 | + /** |
|
29 | + * Called before displaying reviews. |
|
30 | + * |
|
31 | + * If you would like to wrap reviews inside a div this is the place to print your open div. @see geodir_before_review_form to print your closing div. |
|
32 | + * |
|
33 | + * @since 1.5.7 |
|
34 | + */ |
|
35 | + do_action('geodir_before_review_list'); ?> |
|
36 | 36 | |
37 | 37 | <?php if (have_comments()) : ?> |
38 | 38 | <h2 class="comments-title"> |
39 | 39 | <?php |
40 | - printf(_n('1 Review <span class="r-title-on">on</span> <span class="r-title">“%2$s”</span>', '%1$s Reviews <span>on</span> <span class="r-title"> “%2$s”</span>', get_comments_number(), 'geodirectory'), |
|
41 | - number_format_i18n(get_comments_number()), get_the_title()); |
|
42 | - ?> |
|
40 | + printf(_n('1 Review <span class="r-title-on">on</span> <span class="r-title">“%2$s”</span>', '%1$s Reviews <span>on</span> <span class="r-title"> “%2$s”</span>', get_comments_number(), 'geodirectory'), |
|
41 | + number_format_i18n(get_comments_number()), get_the_title()); |
|
42 | + ?> |
|
43 | 43 | </h2> |
44 | 44 | |
45 | 45 | <?php |
46 | - /** |
|
47 | - * Called after displaying review listing title. |
|
48 | - * |
|
49 | - * @since 1.5.7 |
|
50 | - */ |
|
51 | - do_action('geodir_after_review_list_title'); ?> |
|
46 | + /** |
|
47 | + * Called after displaying review listing title. |
|
48 | + * |
|
49 | + * @since 1.5.7 |
|
50 | + */ |
|
51 | + do_action('geodir_after_review_list_title'); ?> |
|
52 | 52 | |
53 | 53 | <ol class="commentlist"> |
54 | 54 | <?php $reverse_top_level = is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php') ? false : null; ?> |
55 | 55 | <?php wp_list_comments(array('callback' => 'geodir_comment', 'reverse_top_level' => $reverse_top_level, 'style' => 'ol')); |
56 | - ?> |
|
56 | + ?> |
|
57 | 57 | </ol><!-- .commentlist --> |
58 | 58 | |
59 | 59 | <?php if (get_comment_pages_count() > 1 && get_option('page_comments')) : // are there comments to navigate through ?> |
@@ -68,51 +68,51 @@ discard block |
||
68 | 68 | <?php endif; // check for comment navigation ?> |
69 | 69 | |
70 | 70 | <?php |
71 | - /* If there are no comments and comments are closed, let's leave a note. |
|
71 | + /* If there are no comments and comments are closed, let's leave a note. |
|
72 | 72 | * But we only want the note on posts and pages that had comments in the first place. |
73 | 73 | */ |
74 | - if (!comments_open() && get_comments_number()) : ?> |
|
74 | + if (!comments_open() && get_comments_number()) : ?> |
|
75 | 75 | <p class="nocomments"><?php _e('Reviews are closed.', 'geodirectory'); ?></p> |
76 | 76 | <?php endif; ?> |
77 | 77 | |
78 | 78 | <?php endif; // have_comments() ?> |
79 | 79 | |
80 | 80 | <?php |
81 | - /** |
|
82 | - * Called before displaying "Leave a review form". |
|
83 | - * |
|
84 | - * If you would like to wrap "review form" inside a div this is the best place to hook your open div. @see geodir_after_review_form to print your closing div. |
|
85 | - * Also If you would like to wrap "reviews" inside a div this is the best place to print your closing div. @see geodir_before_review_list to print your open div. |
|
86 | - * |
|
87 | - * @since 1.5.7 |
|
88 | - */ |
|
89 | - do_action('geodir_before_review_form'); ?> |
|
81 | + /** |
|
82 | + * Called before displaying "Leave a review form". |
|
83 | + * |
|
84 | + * If you would like to wrap "review form" inside a div this is the best place to hook your open div. @see geodir_after_review_form to print your closing div. |
|
85 | + * Also If you would like to wrap "reviews" inside a div this is the best place to print your closing div. @see geodir_before_review_list to print your open div. |
|
86 | + * |
|
87 | + * @since 1.5.7 |
|
88 | + */ |
|
89 | + do_action('geodir_before_review_form'); ?> |
|
90 | 90 | |
91 | 91 | <?php |
92 | - /** |
|
93 | - * Filters comment form args |
|
94 | - * |
|
95 | - * If you would like to modify your comment form args, use this filter. @see https://codex.wordpress.org/Function_Reference/comment_form for accepted args. |
|
96 | - * |
|
97 | - * @since 1.0.0 |
|
98 | - */ |
|
99 | - $args = apply_filters('geodir_review_form_args', array( |
|
100 | - 'title_reply' => __('Leave a Review', 'geodirectory'), |
|
101 | - 'label_submit' => __('Post Review', 'geodirectory'), |
|
102 | - 'comment_field' => '<p class="comment-form-comment"><label for="comment">' . __('Review text', 'geodirectory') . ' <span class="required">*</span></label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" required></textarea></p>', |
|
103 | - 'must_log_in' => '<p class="must-log-in">' . sprintf(__('You must be <a href="%s">logged in</a> to post a comment.', 'geodirectory'), geodir_login_url()) . '</p>' |
|
104 | - )); |
|
105 | - comment_form($args); |
|
106 | - ?> |
|
92 | + /** |
|
93 | + * Filters comment form args |
|
94 | + * |
|
95 | + * If you would like to modify your comment form args, use this filter. @see https://codex.wordpress.org/Function_Reference/comment_form for accepted args. |
|
96 | + * |
|
97 | + * @since 1.0.0 |
|
98 | + */ |
|
99 | + $args = apply_filters('geodir_review_form_args', array( |
|
100 | + 'title_reply' => __('Leave a Review', 'geodirectory'), |
|
101 | + 'label_submit' => __('Post Review', 'geodirectory'), |
|
102 | + 'comment_field' => '<p class="comment-form-comment"><label for="comment">' . __('Review text', 'geodirectory') . ' <span class="required">*</span></label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" required></textarea></p>', |
|
103 | + 'must_log_in' => '<p class="must-log-in">' . sprintf(__('You must be <a href="%s">logged in</a> to post a comment.', 'geodirectory'), geodir_login_url()) . '</p>' |
|
104 | + )); |
|
105 | + comment_form($args); |
|
106 | + ?> |
|
107 | 107 | |
108 | 108 | <?php |
109 | - /** |
|
110 | - * Called after displaying "Leave a review form". |
|
111 | - * |
|
112 | - * If you would like to wrap "review form" inside a div this is the best place to print your closing div. @see geodir_before_review_form to print your open div. |
|
113 | - * |
|
114 | - * @since 1.5.7 |
|
115 | - */ |
|
116 | - do_action('geodir_after_review_form'); ?> |
|
109 | + /** |
|
110 | + * Called after displaying "Leave a review form". |
|
111 | + * |
|
112 | + * If you would like to wrap "review form" inside a div this is the best place to print your closing div. @see geodir_before_review_form to print your open div. |
|
113 | + * |
|
114 | + * @since 1.5.7 |
|
115 | + */ |
|
116 | + do_action('geodir_after_review_form'); ?> |
|
117 | 117 | |
118 | 118 | </div><!-- #comments .comments-area --> |
119 | 119 | \ No newline at end of file |
@@ -99,8 +99,8 @@ |
||
99 | 99 | $args = apply_filters('geodir_review_form_args', array( |
100 | 100 | 'title_reply' => __('Leave a Review', 'geodirectory'), |
101 | 101 | 'label_submit' => __('Post Review', 'geodirectory'), |
102 | - 'comment_field' => '<p class="comment-form-comment"><label for="comment">' . __('Review text', 'geodirectory') . ' <span class="required">*</span></label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" required></textarea></p>', |
|
103 | - 'must_log_in' => '<p class="must-log-in">' . sprintf(__('You must be <a href="%s">logged in</a> to post a comment.', 'geodirectory'), geodir_login_url()) . '</p>' |
|
102 | + 'comment_field' => '<p class="comment-form-comment"><label for="comment">'.__('Review text', 'geodirectory').' <span class="required">*</span></label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" required></textarea></p>', |
|
103 | + 'must_log_in' => '<p class="must-log-in">'.sprintf(__('You must be <a href="%s">logged in</a> to post a comment.', 'geodirectory'), geodir_login_url()).'</p>' |
|
104 | 104 | )); |
105 | 105 | comment_form($args); |
106 | 106 | ?> |
@@ -61,10 +61,11 @@ |
||
61 | 61 | ob_start(); |
62 | 62 | echo '<h5 class="geodir_information">'; |
63 | 63 | |
64 | - if (!isset($_REQUEST['pid'])) |
|
65 | - printf(GOING_TO_FREE_MSG, $type_title, $alive_days); |
|
66 | - else |
|
67 | - printf(GOING_TO_UPDATE_MSG, $type_title, $alive_days); |
|
64 | + if (!isset($_REQUEST['pid'])) { |
|
65 | + printf(GOING_TO_FREE_MSG, $type_title, $alive_days); |
|
66 | + } else { |
|
67 | + printf(GOING_TO_UPDATE_MSG, $type_title, $alive_days); |
|
68 | + } |
|
68 | 69 | |
69 | 70 | echo '</h5>'; |
70 | 71 | $publish_listing_form_message = ob_get_clean(); |
@@ -15,9 +15,9 @@ discard block |
||
15 | 15 | $post_type = $post->listing_type; |
16 | 16 | |
17 | 17 | if (isset($_REQUEST['preview']) && $_REQUEST['preview'] && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
18 | - $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=update&listing_type=' . $post_type; |
|
18 | + $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=update&listing_type=' . $post_type; |
|
19 | 19 | } elseif (isset($_REQUEST['preview']) && $_REQUEST['preview']) { |
20 | - $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=publish&listing_type=' . $post_type; |
|
20 | + $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=publish&listing_type=' . $post_type; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -45,48 +45,48 @@ discard block |
||
45 | 45 | <form action="<?php echo $form_action_url; ?>" name="publish_listing" id="publish_listing" method="post"> |
46 | 46 | <div class="clearfix"> |
47 | 47 | <input type="hidden" name="pid" value="<?php if (isset($post->pid)) { |
48 | - echo $post->pid; |
|
49 | - } ?>"> |
|
48 | + echo $post->pid; |
|
49 | + } ?>"> |
|
50 | 50 | <?php |
51 | - /** |
|
52 | - * Called on the add listing preview page inside the publish listings form, before the publish message. |
|
53 | - * |
|
54 | - * @since 1.0.0 |
|
55 | - * @see 'geodir_publish_listing_form_after_msg' |
|
56 | - */ |
|
57 | - do_action('geodir_publish_listing_form_before_msg'); ?> |
|
51 | + /** |
|
52 | + * Called on the add listing preview page inside the publish listings form, before the publish message. |
|
53 | + * |
|
54 | + * @since 1.0.0 |
|
55 | + * @see 'geodir_publish_listing_form_after_msg' |
|
56 | + */ |
|
57 | + do_action('geodir_publish_listing_form_before_msg'); ?> |
|
58 | 58 | <?php |
59 | - $alive_days = UNLIMITED; |
|
60 | - $type_title = ''; |
|
61 | - ob_start(); |
|
62 | - echo '<h5 class="geodir_information">'; |
|
63 | - |
|
64 | - if (!isset($_REQUEST['pid'])) |
|
65 | - printf(GOING_TO_FREE_MSG, $type_title, $alive_days); |
|
66 | - else |
|
67 | - printf(GOING_TO_UPDATE_MSG, $type_title, $alive_days); |
|
68 | - |
|
69 | - echo '</h5>'; |
|
70 | - $publish_listing_form_message = ob_get_clean(); |
|
71 | - /** |
|
72 | - * Filter the publish listing message on the preview page. |
|
73 | - * |
|
74 | - * @since 1.0.0 |
|
75 | - * @param string $publish_listing_form_message The message to be filtered. |
|
76 | - */ |
|
77 | - $publish_listing_form_message = apply_filters('geodir_publish_listing_form_message', $publish_listing_form_message); |
|
78 | - echo $publish_listing_form_message; |
|
79 | - |
|
80 | - /** |
|
81 | - * Called on the add listing preview page inside the publish listings form, after the publish message. |
|
82 | - * |
|
83 | - * @since 1.0.0 |
|
84 | - * @see 'geodir_publish_listing_form_before_msg' |
|
85 | - */ |
|
86 | - do_action('geodir_publish_listing_form_after_msg'); |
|
87 | - |
|
88 | - ob_start(); // start action button buffering |
|
89 | - ?> |
|
59 | + $alive_days = UNLIMITED; |
|
60 | + $type_title = ''; |
|
61 | + ob_start(); |
|
62 | + echo '<h5 class="geodir_information">'; |
|
63 | + |
|
64 | + if (!isset($_REQUEST['pid'])) |
|
65 | + printf(GOING_TO_FREE_MSG, $type_title, $alive_days); |
|
66 | + else |
|
67 | + printf(GOING_TO_UPDATE_MSG, $type_title, $alive_days); |
|
68 | + |
|
69 | + echo '</h5>'; |
|
70 | + $publish_listing_form_message = ob_get_clean(); |
|
71 | + /** |
|
72 | + * Filter the publish listing message on the preview page. |
|
73 | + * |
|
74 | + * @since 1.0.0 |
|
75 | + * @param string $publish_listing_form_message The message to be filtered. |
|
76 | + */ |
|
77 | + $publish_listing_form_message = apply_filters('geodir_publish_listing_form_message', $publish_listing_form_message); |
|
78 | + echo $publish_listing_form_message; |
|
79 | + |
|
80 | + /** |
|
81 | + * Called on the add listing preview page inside the publish listings form, after the publish message. |
|
82 | + * |
|
83 | + * @since 1.0.0 |
|
84 | + * @see 'geodir_publish_listing_form_before_msg' |
|
85 | + */ |
|
86 | + do_action('geodir_publish_listing_form_after_msg'); |
|
87 | + |
|
88 | + ob_start(); // start action button buffering |
|
89 | + ?> |
|
90 | 90 | <?php if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { ?> |
91 | 91 | |
92 | 92 | <input type="submit" name="Submit and Pay" value="<?php echo PRO_UPDATE_BUTTON; ?>" |
@@ -95,46 +95,46 @@ discard block |
||
95 | 95 | <input type="submit" name="Submit and Pay" value="<?php echo PRO_SUBMIT_BUTTON; ?>" |
96 | 96 | class=" geodir_button geodir_publish_button"/> |
97 | 97 | <?php |
98 | - } |
|
99 | - $publish_listing_form_button = ob_get_clean(); |
|
100 | - /** |
|
101 | - * Filter the HTML button for publishing the listing on the preview page. |
|
102 | - * |
|
103 | - * @since 1.0.0 |
|
104 | - * @param string $publish_listing_form_button The HTML for the submit button. |
|
105 | - */ |
|
106 | - $publish_listing_form_button = apply_filters('geodir_publish_listing_form_button', $publish_listing_form_button); |
|
107 | - echo $publish_listing_form_button; |
|
108 | - |
|
109 | - $post_id = ''; |
|
110 | - if (isset($post->pid)) { |
|
111 | - $post_id = $post->pid; |
|
112 | - } else if (isset($_REQUEST['pid'])) { |
|
113 | - $post_id = (int)$_REQUEST['pid']; |
|
114 | - } |
|
115 | - |
|
116 | - $postlink = get_permalink(geodir_add_listing_page_id()); |
|
117 | - $postlink = geodir_getlink($postlink, array('pid' => $post_id, 'backandedit' => '1', 'listing_type' => $post_type), false); |
|
118 | - |
|
119 | - ob_start(); // start go back and edit / cancel buffering |
|
120 | - ?> |
|
98 | + } |
|
99 | + $publish_listing_form_button = ob_get_clean(); |
|
100 | + /** |
|
101 | + * Filter the HTML button for publishing the listing on the preview page. |
|
102 | + * |
|
103 | + * @since 1.0.0 |
|
104 | + * @param string $publish_listing_form_button The HTML for the submit button. |
|
105 | + */ |
|
106 | + $publish_listing_form_button = apply_filters('geodir_publish_listing_form_button', $publish_listing_form_button); |
|
107 | + echo $publish_listing_form_button; |
|
108 | + |
|
109 | + $post_id = ''; |
|
110 | + if (isset($post->pid)) { |
|
111 | + $post_id = $post->pid; |
|
112 | + } else if (isset($_REQUEST['pid'])) { |
|
113 | + $post_id = (int)$_REQUEST['pid']; |
|
114 | + } |
|
115 | + |
|
116 | + $postlink = get_permalink(geodir_add_listing_page_id()); |
|
117 | + $postlink = geodir_getlink($postlink, array('pid' => $post_id, 'backandedit' => '1', 'listing_type' => $post_type), false); |
|
118 | + |
|
119 | + ob_start(); // start go back and edit / cancel buffering |
|
120 | + ?> |
|
121 | 121 | <a href="<?php echo esc_url($postlink); ?>" class="geodir_goback"><?php echo PRO_BACK_AND_EDIT_TEXT; ?></a> |
122 | 122 | <input type="button" name="Cancel" value="<?php echo(PRO_CANCEL_BUTTON); ?>" |
123 | 123 | class="geodir_button geodir_cancle_button" |
124 | 124 | onclick="window.location.href='<?php echo geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=cancel&pid=' . $post_id . '&listing_type=' . $post_type; ?>'"/> |
125 | 125 | <?php |
126 | 126 | |
127 | - $publish_listing_form_go_back = ob_get_clean(); |
|
128 | - /** |
|
129 | - * Filter the cancel and go back and edit HTML on the preview page. |
|
130 | - * |
|
131 | - * @since 1.0.0 |
|
132 | - * @param string $publish_listing_form_go_back The HTML for the cancel and go back and edit button/link. |
|
133 | - */ |
|
134 | - $publish_listing_form_go_back = apply_filters('geodir_publish_listing_form_go_back', $publish_listing_form_go_back); |
|
135 | - echo $publish_listing_form_go_back; |
|
136 | - |
|
137 | - ?> |
|
127 | + $publish_listing_form_go_back = ob_get_clean(); |
|
128 | + /** |
|
129 | + * Filter the cancel and go back and edit HTML on the preview page. |
|
130 | + * |
|
131 | + * @since 1.0.0 |
|
132 | + * @param string $publish_listing_form_go_back The HTML for the cancel and go back and edit button/link. |
|
133 | + */ |
|
134 | + $publish_listing_form_go_back = apply_filters('geodir_publish_listing_form_go_back', $publish_listing_form_go_back); |
|
135 | + echo $publish_listing_form_go_back; |
|
136 | + |
|
137 | + ?> |
|
138 | 138 | </div> |
139 | 139 | </form> |
140 | 140 | </div> |
@@ -15,9 +15,9 @@ discard block |
||
15 | 15 | $post_type = $post->listing_type; |
16 | 16 | |
17 | 17 | if (isset($_REQUEST['preview']) && $_REQUEST['preview'] && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
18 | - $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=update&listing_type=' . $post_type; |
|
18 | + $form_action_url = geodir_get_ajax_url().'&geodir_ajax=add_listing&ajax_action=update&listing_type='.$post_type; |
|
19 | 19 | } elseif (isset($_REQUEST['preview']) && $_REQUEST['preview']) { |
20 | - $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=publish&listing_type=' . $post_type; |
|
20 | + $form_action_url = geodir_get_ajax_url().'&geodir_ajax=add_listing&ajax_action=publish&listing_type='.$post_type; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | if (isset($post->pid)) { |
111 | 111 | $post_id = $post->pid; |
112 | 112 | } else if (isset($_REQUEST['pid'])) { |
113 | - $post_id = (int)$_REQUEST['pid']; |
|
113 | + $post_id = (int) $_REQUEST['pid']; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | $postlink = get_permalink(geodir_add_listing_page_id()); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | <a href="<?php echo esc_url($postlink); ?>" class="geodir_goback"><?php echo PRO_BACK_AND_EDIT_TEXT; ?></a> |
122 | 122 | <input type="button" name="Cancel" value="<?php echo(PRO_CANCEL_BUTTON); ?>" |
123 | 123 | class="geodir_button geodir_cancle_button" |
124 | - onclick="window.location.href='<?php echo geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=cancel&pid=' . $post_id . '&listing_type=' . $post_type; ?>'"/> |
|
124 | + onclick="window.location.href='<?php echo geodir_get_ajax_url().'&geodir_ajax=add_listing&ajax_action=cancel&pid='.$post_id.'&listing_type='.$post_type; ?>'"/> |
|
125 | 125 | <?php |
126 | 126 | |
127 | 127 | $publish_listing_form_go_back = ob_get_clean(); |
@@ -353,7 +353,7 @@ |
||
353 | 353 | |
354 | 354 | if(!$cpt_left){ |
355 | 355 | $cpt_left = "gd-cpt-flat"; |
356 | - }else{ |
|
356 | + } else{ |
|
357 | 357 | $cpt_left = ''; |
358 | 358 | } |
359 | 359 |
@@ -169,9 +169,9 @@ discard block |
||
169 | 169 | $output = geodir_cpt_categories_output($params); |
170 | 170 | |
171 | 171 | echo $args['before_widget']; |
172 | - if ( $params['title'] ) { |
|
172 | + if ($params['title']) { |
|
173 | 173 | echo '<div class="geodir_list_heading clearfix">'; |
174 | - echo $args['before_title'] . $params['title'] . $args['after_title']; |
|
174 | + echo $args['before_title'].$params['title'].$args['after_title']; |
|
175 | 175 | echo '</div>'; |
176 | 176 | } |
177 | 177 | echo '<div class="gd-cptcats-widget">'; |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * @param array $instance Previously saved values from database. |
219 | 219 | */ |
220 | 220 | public function form($instance) { |
221 | - $instance = wp_parse_args( (array)$instance, |
|
221 | + $instance = wp_parse_args((array) $instance, |
|
222 | 222 | array( |
223 | 223 | 'title' => '', |
224 | 224 | 'post_type' => array(), // NULL for all |
@@ -252,50 +252,50 @@ discard block |
||
252 | 252 | <p> |
253 | 253 | <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Select CPT:', 'geodirectory'); ?></label> |
254 | 254 | <select name="<?php echo $this->get_field_name('post_type'); ?>[]" id="<?php echo $this->get_field_id('post_type'); ?>" class="widefat" multiple="multiple"> |
255 | - <option value="0" <?php selected( (empty($post_type) || (is_array($post_type) && in_array('0', $post_type))), true ); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
255 | + <option value="0" <?php selected((empty($post_type) || (is_array($post_type) && in_array('0', $post_type))), true); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
256 | 256 | <?php foreach ($post_type_options as $name => $title) { ?> |
257 | - <option value="<?php echo $name;?>" <?php selected( is_array($post_type) && in_array($name, $post_type), true ); ?>><?php echo $title; ?></option> |
|
257 | + <option value="<?php echo $name; ?>" <?php selected(is_array($post_type) && in_array($name, $post_type), true); ?>><?php echo $title; ?></option> |
|
258 | 258 | <?php } ?> |
259 | 259 | </select> |
260 | 260 | </p> |
261 | - <p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hide_empty'); ?>" name="<?php echo $this->get_field_name('hide_empty'); ?>"<?php checked( $hide_empty ); ?> value="1" /> |
|
262 | - <label for="<?php echo $this->get_field_id('hide_empty'); ?>"><?php _e( 'Hide empty categories', 'geodirectory' ); ?></label><br /> |
|
263 | - <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('show_count'); ?>" name="<?php echo $this->get_field_name('show_count'); ?>"<?php checked( $show_count ); ?> value="1" /> |
|
264 | - <label for="<?php echo $this->get_field_id('show_count'); ?>"><?php _e( 'Show category count' ); ?></label> <small><?php _e( '( Enabling will slow down page loading for big directories. )', 'geodirectory' ); ?></small><br /> |
|
265 | - <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hide_icon'); ?>" name="<?php echo $this->get_field_name('hide_icon'); ?>"<?php checked( $hide_icon ); ?> value="1" /> |
|
266 | - <label for="<?php echo $this->get_field_id('hide_icon'); ?>"><?php _e( 'Hide category icon', 'geodirectory' ); ?></label><br /> |
|
267 | - <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('cpt_left'); ?>" name="<?php echo $this->get_field_name('cpt_left'); ?>"<?php checked( $cpt_left ); ?> value="1" /> |
|
268 | - <label for="<?php echo $this->get_field_id('cpt_left'); ?>"><?php _e( 'Show CPT on same line', 'geodirectory' ); ?></label> |
|
261 | + <p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hide_empty'); ?>" name="<?php echo $this->get_field_name('hide_empty'); ?>"<?php checked($hide_empty); ?> value="1" /> |
|
262 | + <label for="<?php echo $this->get_field_id('hide_empty'); ?>"><?php _e('Hide empty categories', 'geodirectory'); ?></label><br /> |
|
263 | + <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('show_count'); ?>" name="<?php echo $this->get_field_name('show_count'); ?>"<?php checked($show_count); ?> value="1" /> |
|
264 | + <label for="<?php echo $this->get_field_id('show_count'); ?>"><?php _e('Show category count'); ?></label> <small><?php _e('( Enabling will slow down page loading for big directories. )', 'geodirectory'); ?></small><br /> |
|
265 | + <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hide_icon'); ?>" name="<?php echo $this->get_field_name('hide_icon'); ?>"<?php checked($hide_icon); ?> value="1" /> |
|
266 | + <label for="<?php echo $this->get_field_id('hide_icon'); ?>"><?php _e('Hide category icon', 'geodirectory'); ?></label><br /> |
|
267 | + <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('cpt_left'); ?>" name="<?php echo $this->get_field_name('cpt_left'); ?>"<?php checked($cpt_left); ?> value="1" /> |
|
268 | + <label for="<?php echo $this->get_field_id('cpt_left'); ?>"><?php _e('Show CPT on same line', 'geodirectory'); ?></label> |
|
269 | 269 | <p> |
270 | 270 | <label for="<?php echo $this->get_field_id('sort_by'); ?>"><?php _e('Sort by:', 'geodirectory'); ?></label> |
271 | 271 | <select name="<?php echo $this->get_field_name('sort_by'); ?>" id="<?php echo $this->get_field_id('sort_by'); ?>" class="widefat"> |
272 | - <option value="az" <?php selected( $sort_by, 'az' ); ?>><?php _e('A-Z', 'geodirectory'); ?></option> |
|
273 | - <option value="count" <?php selected( $sort_by, 'count' ); ?>><?php _e('Count', 'geodirectory'); ?></option> |
|
272 | + <option value="az" <?php selected($sort_by, 'az'); ?>><?php _e('A-Z', 'geodirectory'); ?></option> |
|
273 | + <option value="count" <?php selected($sort_by, 'count'); ?>><?php _e('Count', 'geodirectory'); ?></option> |
|
274 | 274 | </select> |
275 | 275 | </p> |
276 | 276 | <p> |
277 | 277 | <label for="<?php echo $this->get_field_id('max_count'); ?>"><?php _e('Max no of sub-categories:', 'geodirectory'); ?></label> |
278 | 278 | <select name="<?php echo $this->get_field_name('max_count'); ?>" id="<?php echo $this->get_field_id('max_count'); ?>" class="widefat"> |
279 | - <option value="all" <?php selected( $max_count, 'all' ); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
279 | + <option value="all" <?php selected($max_count, 'all'); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
280 | 280 | <?php for ($n = 10; $n >= 0; $n--) { ?> |
281 | - <option value="<?php echo $n;?>" <?php selected( $max_count, $n ); ?>><?php echo $n; ?></option> |
|
281 | + <option value="<?php echo $n; ?>" <?php selected($max_count, $n); ?>><?php echo $n; ?></option> |
|
282 | 282 | <?php } ?> |
283 | 283 | </select> |
284 | 284 | </p> |
285 | 285 | <p> |
286 | 286 | <label for="<?php echo $this->get_field_id('max_level'); ?>"><?php _e('Show max sub-categories depth:', 'geodirectory'); ?></label> |
287 | 287 | <select name="<?php echo $this->get_field_name('max_level'); ?>" id="<?php echo $this->get_field_id('max_level'); ?>" class="widefat"> |
288 | - <option value="all" <?php selected( $max_level, 'all' ); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
288 | + <option value="all" <?php selected($max_level, 'all'); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
289 | 289 | <?php for ($n = 0; $n <= 10; $n++) { ?> |
290 | - <option value="<?php echo $n;?>" <?php selected( $max_level, $n ); ?>><?php echo $n; ?></option> |
|
290 | + <option value="<?php echo $n; ?>" <?php selected($max_level, $n); ?>><?php echo $n; ?></option> |
|
291 | 291 | <?php } ?> |
292 | 292 | </select> |
293 | 293 | </p> |
294 | 294 | <p> |
295 | - <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('no_cpt_filter'); ?>" name="<?php echo $this->get_field_name('no_cpt_filter'); ?>"<?php checked( $no_cpt_filter ); ?> value="1" /> |
|
296 | - <label for="<?php echo $this->get_field_id('no_cpt_filter'); ?>"><?php _e( 'Don\'t filter for current viewing post type', 'geodirectory' ); ?></label> |
|
297 | - <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('no_cat_filter'); ?>" name="<?php echo $this->get_field_name('no_cat_filter'); ?>"<?php checked( $no_cat_filter ); ?> value="1" /> |
|
298 | - <label for="<?php echo $this->get_field_id('no_cat_filter'); ?>"><?php _e( 'Don\'t filter for current viewing category', 'geodirectory' ); ?></label> |
|
295 | + <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('no_cpt_filter'); ?>" name="<?php echo $this->get_field_name('no_cpt_filter'); ?>"<?php checked($no_cpt_filter); ?> value="1" /> |
|
296 | + <label for="<?php echo $this->get_field_id('no_cpt_filter'); ?>"><?php _e('Don\'t filter for current viewing post type', 'geodirectory'); ?></label> |
|
297 | + <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('no_cat_filter'); ?>" name="<?php echo $this->get_field_name('no_cat_filter'); ?>"<?php checked($no_cat_filter); ?> value="1" /> |
|
298 | + <label for="<?php echo $this->get_field_id('no_cat_filter'); ?>"><?php _e('Don\'t filter for current viewing category', 'geodirectory'); ?></label> |
|
299 | 299 | </p> |
300 | 300 | <?php |
301 | 301 | } |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | |
323 | 323 | $gd_use_query_vars = geodir_is_page('detail') ? true : false; |
324 | 324 | |
325 | - $args = wp_parse_args((array)$params, |
|
325 | + $args = wp_parse_args((array) $params, |
|
326 | 326 | array( |
327 | 327 | 'title' => '', |
328 | 328 | 'post_type' => array(), // NULL for all |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | if ($current_posttype != '' && isset($gd_post_types[$current_posttype])) { |
360 | 360 | if ($is_detail_page) { |
361 | 361 | $is_detail = true; |
362 | - $post_ID = is_object($post) && !empty($post->ID) ? (int)$post->ID : 0; |
|
362 | + $post_ID = is_object($post) && !empty($post->ID) ? (int) $post->ID : 0; |
|
363 | 363 | } else { |
364 | 364 | $is_listing = true; |
365 | 365 | if (is_tax()) { // category page |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | $current_taxonomy = get_query_var('taxonomy'); |
368 | 368 | $current_posttype = geodir_get_current_posttype(); |
369 | 369 | |
370 | - if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') { |
|
370 | + if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype.'category') { |
|
371 | 371 | $is_category = true; |
372 | 372 | } |
373 | 373 | } |
@@ -400,15 +400,15 @@ discard block |
||
400 | 400 | $hide_empty = !empty($args['hide_empty']) ? true : false; |
401 | 401 | $max_count = strip_tags($args['max_count']); |
402 | 402 | $all_childs = $max_count == 'all' ? true : false; |
403 | - $max_count = $max_count > 0 ? (int)$max_count : 0; |
|
403 | + $max_count = $max_count > 0 ? (int) $max_count : 0; |
|
404 | 404 | $max_level = strip_tags($args['max_level']); |
405 | 405 | $show_count = !empty($args['show_count']) ? true : false; |
406 | 406 | $hide_icon = !empty($args['hide_icon']) ? true : false; |
407 | 407 | $cpt_left = !empty($args['cpt_left']) ? true : false; |
408 | 408 | |
409 | - if(!$cpt_left){ |
|
409 | + if (!$cpt_left) { |
|
410 | 410 | $cpt_left = "gd-cpt-flat"; |
411 | - }else{ |
|
411 | + } else { |
|
412 | 412 | $cpt_left = ''; |
413 | 413 | } |
414 | 414 | |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | if (!empty($post_types)) { |
424 | 424 | foreach ($post_types as $cpt => $cpt_info) { |
425 | 425 | $parent_category = ($is_category && $cat_filter && $cpt == $current_posttype) ? $current_term_id : 0; |
426 | - $cat_taxonomy = $cpt . 'category'; |
|
426 | + $cat_taxonomy = $cpt.'category'; |
|
427 | 427 | $skip_childs = false; |
428 | 428 | if ($cat_filter && $cpt == $current_posttype && $is_detail && $post_ID) { |
429 | 429 | $skip_childs = true; |
@@ -446,32 +446,32 @@ discard block |
||
446 | 446 | if ($is_listing) { |
447 | 447 | $row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing'; |
448 | 448 | } |
449 | - $cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">'; |
|
449 | + $cpt_row = '<div class="gd-cptcat-row gd-cptcat-'.$cpt.$row_class.' '.$cpt_left.'">'; |
|
450 | 450 | |
451 | 451 | if ($is_category && $cat_filter && $cpt == $current_posttype) { |
452 | 452 | $term_info = get_term($current_term_id, $cat_taxonomy); |
453 | 453 | |
454 | 454 | $term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : ''; |
455 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
455 | + $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($term_info->name).' icon" src="'.$term_icon_url.'" /> ' : ''; |
|
456 | 456 | |
457 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : ''; |
|
458 | - $cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>'; |
|
457 | + $count = $show_count ? ' <span class="gd-cptcat-count">('.$term_info->count.')</span>' : ''; |
|
458 | + $cpt_row .= '<h2 class="gd-cptcat-title">'.$term_icon_url.$term_info->name.$count.'</h2>'; |
|
459 | 459 | } else { |
460 | - $cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>'; |
|
460 | + $cpt_row .= '<h2 class="gd-cptcat-title">'.__($cpt_info['labels']['name'], 'geodirectory').'</h2>'; |
|
461 | 461 | } |
462 | 462 | foreach ($categories as $category) { |
463 | 463 | $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
464 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
464 | + $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($category->name).' icon" src="'.$term_icon_url.'" /> ' : ''; |
|
465 | 465 | |
466 | - $term_link = get_term_link( $category, $category->taxonomy ); |
|
466 | + $term_link = get_term_link($category, $category->taxonomy); |
|
467 | 467 | /** Filter documented in geodirectory-functions/general_functions.php **/ |
468 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
468 | + $term_link = apply_filters('geodir_category_term_link', $term_link, $category->term_id, $cpt); |
|
469 | 469 | |
470 | 470 | $cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent '.$cpt_left.'">'; |
471 | 471 | $cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">'; |
472 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
473 | - $cpt_row .= '<h3 class="gd-cptcat-cat"><a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' .$term_icon_url . $category->name . $count . '</a></h3>'; |
|
474 | - if (!$skip_childs && ($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) { |
|
472 | + $count = $show_count ? ' <span class="gd-cptcat-count">('.$category->count.')</span>' : ''; |
|
473 | + $cpt_row .= '<h3 class="gd-cptcat-cat"><a href="'.esc_url($term_link).'" title="'.esc_attr($category->name).'">'.$term_icon_url.$category->name.$count.'</a></h3>'; |
|
474 | + if (!$skip_childs && ($all_childs || $max_count > 0) && ($max_level == 'all' || (int) $max_level > 0)) { |
|
475 | 475 | $cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons); |
476 | 476 | } |
477 | 477 | $cpt_row .= '</li>'; |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | * @return string Html content. |
507 | 507 | */ |
508 | 508 | function geodir_cpt_categories_child_cats($parent_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth = 1) { |
509 | - $cat_taxonomy = $cpt . 'category'; |
|
509 | + $cat_taxonomy = $cpt.'category'; |
|
510 | 510 | |
511 | 511 | $orderby = 'count'; |
512 | 512 | $order = 'DESC'; |
@@ -515,7 +515,7 @@ discard block |
||
515 | 515 | $order = 'ASC'; |
516 | 516 | } |
517 | 517 | |
518 | - if ($max_level != 'all' && $depth > (int)$max_level ) { |
|
518 | + if ($max_level != 'all' && $depth > (int) $max_level) { |
|
519 | 519 | return ''; |
520 | 520 | } |
521 | 521 | |
@@ -532,18 +532,18 @@ discard block |
||
532 | 532 | $child_cats = geodir_sort_terms($child_cats, 'count'); |
533 | 533 | } |
534 | 534 | |
535 | - $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">'; |
|
535 | + $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-'.$depth.'">'; |
|
536 | 536 | $depth++; |
537 | 537 | foreach ($child_cats as $category) { |
538 | 538 | $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
539 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
540 | - $term_link = get_term_link( $category, $category->taxonomy ); |
|
539 | + $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($category->name).' icon" src="'.$term_icon_url.'" /> ' : ''; |
|
540 | + $term_link = get_term_link($category, $category->taxonomy); |
|
541 | 541 | /** Filter documented in geodirectory-functions/general_functions.php **/ |
542 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
543 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
542 | + $term_link = apply_filters('geodir_category_term_link', $term_link, $category->term_id, $cpt); |
|
543 | + $count = $show_count ? ' <span class="gd-cptcat-count">('.$category->count.')</span>' : ''; |
|
544 | 544 | |
545 | 545 | $content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">'; |
546 | - $content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>'; |
|
546 | + $content .= '<a href="'.esc_url($term_link).'" title="'.esc_attr($category->name).'">'.$term_icon_url.$category->name.$count.'</a></li>'; |
|
547 | 547 | $content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth); |
548 | 548 | } |
549 | 549 | $content .= '</li></ul>'; |
@@ -13,241 +13,241 @@ discard block |
||
13 | 13 | */ |
14 | 14 | class geodir_cpt_categories_widget extends WP_Widget { |
15 | 15 | |
16 | - /** |
|
17 | - * Register the cpt categories with WordPress. |
|
18 | - * |
|
19 | - * @since 1.5.4 |
|
20 | - */ |
|
21 | - public function __construct() { |
|
22 | - $widget_ops = array('classname' => 'geodir_cpt_categories_widget', 'description' => __('A list of GeoDirectory CPT categories.', 'geodirectory')); |
|
23 | - parent::__construct('geodir_cpt_categories_widget', __('GD > CPT Categories', 'geodirectory'), $widget_ops); |
|
24 | - } |
|
25 | - |
|
26 | - /** |
|
27 | - * Front-end display content for cpt categories widget. |
|
28 | - * |
|
29 | - * @since 1.5.4 |
|
30 | - * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added. |
|
31 | - * |
|
32 | - * @param array $args Widget arguments. |
|
33 | - * @param array $instance Saved values from database. |
|
34 | - */ |
|
35 | - public function widget($args, $instance) { |
|
36 | - $params = array(); |
|
37 | - /** |
|
38 | - * Filter the widget title. |
|
39 | - * |
|
40 | - * @since 1.5.4 |
|
41 | - * |
|
42 | - * @param string $title The widget title. Default empty. |
|
43 | - * @param array $instance An array of the widget's settings. |
|
44 | - * @param mixed $id_base The widget ID. |
|
45 | - */ |
|
46 | - $params['title'] = apply_filters('geodir_cpt_categories_widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base); |
|
47 | - |
|
48 | - /** |
|
49 | - * Filter the widget setting post type. |
|
50 | - * |
|
51 | - * @since 1.5.4 |
|
52 | - * |
|
53 | - * @param array $post_type The post types to display categories. |
|
54 | - * @param array $instance An array of the widget's settings. |
|
55 | - * @param mixed $id_base The widget ID. |
|
56 | - */ |
|
57 | - $params['post_type'] = apply_filters('geodir_cpt_categories_widget_post_type', empty($instance['post_type']) ? array() : $instance['post_type'], $instance, $this->id_base); |
|
58 | - |
|
59 | - /** |
|
60 | - * Filter the widget setting to hide empty categories. |
|
61 | - * |
|
62 | - * @since 1.5.4 |
|
63 | - * |
|
64 | - * @param bool $hide_empty If true then empty category will be not displayed. |
|
65 | - * @param array $instance An array of the widget's settings. |
|
66 | - * @param mixed $id_base The widget ID. |
|
67 | - */ |
|
68 | - $params['hide_empty'] = apply_filters('geodir_cpt_categories_widget_hide_empty', empty($instance['hide_empty']) ? 0 : 1, $instance, $this->id_base); |
|
69 | - |
|
70 | - /** |
|
71 | - * Filter the widget setting to show/hide category count. |
|
72 | - * |
|
73 | - * @since 1.5.4 |
|
74 | - * |
|
75 | - * @param bool $show_count If true then category count will be displayed. |
|
76 | - * @param array $instance An array of the widget's settings. |
|
77 | - * @param mixed $id_base The widget ID. |
|
78 | - */ |
|
79 | - $params['show_count'] = apply_filters('geodir_cpt_categories_widget_show_count', empty($instance['show_count']) ? 0 : 1, $instance, $this->id_base); |
|
80 | - |
|
81 | - /** |
|
82 | - * Filter the widget setting to show/hide category icon. |
|
83 | - * |
|
84 | - * @since 1.5.4 |
|
85 | - * |
|
86 | - * @param bool $hide_icon If true then category icon will be not displayed. |
|
87 | - * @param array $instance An array of the widget's settings. |
|
88 | - * @param mixed $id_base The widget ID. |
|
89 | - */ |
|
90 | - $params['hide_icon'] = apply_filters('geodir_cpt_categories_widget_hide_icon', empty($instance['hide_icon']) ? 0 : 1, $instance, $this->id_base); |
|
91 | - |
|
92 | - /** |
|
93 | - * Filter the widget setting to show CPT inline or not. |
|
94 | - * |
|
95 | - * @since 1.5.4 |
|
96 | - * |
|
97 | - * @param bool $cpt_left If true then CPT will be displayed inline. |
|
98 | - * @param array $instance An array of the widget's settings. |
|
99 | - * @param mixed $id_base The widget ID. |
|
100 | - */ |
|
101 | - $params['cpt_left'] = apply_filters('geodir_cpt_categories_widget_cpt_left', empty($instance['cpt_left']) ? 0 : 1, $instance, $this->id_base); |
|
102 | - |
|
103 | - /** |
|
104 | - * Filter the widget categories sorting order settings. |
|
105 | - * |
|
106 | - * @since 1.5.4 |
|
107 | - * |
|
108 | - * @param string $max_count Widget max no of sub-categories count. Default 'count'. |
|
109 | - * @param array $instance An array of the widget's settings. |
|
110 | - * @param mixed $id_base The widget ID. |
|
111 | - */ |
|
112 | - $params['sort_by'] = apply_filters('geodir_cpt_categories_widget_sort_by', isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count', $instance, $this->id_base); |
|
113 | - |
|
114 | - /** |
|
115 | - * Filter the widget max no of sub-categories count. |
|
116 | - * |
|
117 | - * @since 1.5.4 |
|
118 | - * |
|
119 | - * @param bool|string $max_count Widget max no of sub-categories count. |
|
120 | - * @param array $instance An array of the widget's settings. |
|
121 | - * @param mixed $id_base The widget ID. |
|
122 | - */ |
|
123 | - $params['max_count'] = apply_filters('geodir_cpt_categories_widget_max_count', !isset($instance['max_count']) ? 'all' : strip_tags($instance['max_count']), $instance, $this->id_base); |
|
124 | - |
|
125 | - /** |
|
126 | - * Filter the widget max sub-categories depth. |
|
127 | - * |
|
128 | - * @since 1.5.4 |
|
129 | - * |
|
130 | - * @param bool|string $max_level Widget max sub-categories depth. |
|
131 | - * @param array $instance An array of the widget's settings. |
|
132 | - * @param mixed $id_base The widget ID. |
|
133 | - */ |
|
134 | - $params['max_level'] = apply_filters('geodir_cpt_categories_widget_max_level', !isset($instance['max_level']) ? 'all' : strip_tags($instance['max_level']), $instance, $this->id_base); |
|
16 | + /** |
|
17 | + * Register the cpt categories with WordPress. |
|
18 | + * |
|
19 | + * @since 1.5.4 |
|
20 | + */ |
|
21 | + public function __construct() { |
|
22 | + $widget_ops = array('classname' => 'geodir_cpt_categories_widget', 'description' => __('A list of GeoDirectory CPT categories.', 'geodirectory')); |
|
23 | + parent::__construct('geodir_cpt_categories_widget', __('GD > CPT Categories', 'geodirectory'), $widget_ops); |
|
24 | + } |
|
25 | + |
|
26 | + /** |
|
27 | + * Front-end display content for cpt categories widget. |
|
28 | + * |
|
29 | + * @since 1.5.4 |
|
30 | + * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added. |
|
31 | + * |
|
32 | + * @param array $args Widget arguments. |
|
33 | + * @param array $instance Saved values from database. |
|
34 | + */ |
|
35 | + public function widget($args, $instance) { |
|
36 | + $params = array(); |
|
37 | + /** |
|
38 | + * Filter the widget title. |
|
39 | + * |
|
40 | + * @since 1.5.4 |
|
41 | + * |
|
42 | + * @param string $title The widget title. Default empty. |
|
43 | + * @param array $instance An array of the widget's settings. |
|
44 | + * @param mixed $id_base The widget ID. |
|
45 | + */ |
|
46 | + $params['title'] = apply_filters('geodir_cpt_categories_widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base); |
|
47 | + |
|
48 | + /** |
|
49 | + * Filter the widget setting post type. |
|
50 | + * |
|
51 | + * @since 1.5.4 |
|
52 | + * |
|
53 | + * @param array $post_type The post types to display categories. |
|
54 | + * @param array $instance An array of the widget's settings. |
|
55 | + * @param mixed $id_base The widget ID. |
|
56 | + */ |
|
57 | + $params['post_type'] = apply_filters('geodir_cpt_categories_widget_post_type', empty($instance['post_type']) ? array() : $instance['post_type'], $instance, $this->id_base); |
|
58 | + |
|
59 | + /** |
|
60 | + * Filter the widget setting to hide empty categories. |
|
61 | + * |
|
62 | + * @since 1.5.4 |
|
63 | + * |
|
64 | + * @param bool $hide_empty If true then empty category will be not displayed. |
|
65 | + * @param array $instance An array of the widget's settings. |
|
66 | + * @param mixed $id_base The widget ID. |
|
67 | + */ |
|
68 | + $params['hide_empty'] = apply_filters('geodir_cpt_categories_widget_hide_empty', empty($instance['hide_empty']) ? 0 : 1, $instance, $this->id_base); |
|
69 | + |
|
70 | + /** |
|
71 | + * Filter the widget setting to show/hide category count. |
|
72 | + * |
|
73 | + * @since 1.5.4 |
|
74 | + * |
|
75 | + * @param bool $show_count If true then category count will be displayed. |
|
76 | + * @param array $instance An array of the widget's settings. |
|
77 | + * @param mixed $id_base The widget ID. |
|
78 | + */ |
|
79 | + $params['show_count'] = apply_filters('geodir_cpt_categories_widget_show_count', empty($instance['show_count']) ? 0 : 1, $instance, $this->id_base); |
|
80 | + |
|
81 | + /** |
|
82 | + * Filter the widget setting to show/hide category icon. |
|
83 | + * |
|
84 | + * @since 1.5.4 |
|
85 | + * |
|
86 | + * @param bool $hide_icon If true then category icon will be not displayed. |
|
87 | + * @param array $instance An array of the widget's settings. |
|
88 | + * @param mixed $id_base The widget ID. |
|
89 | + */ |
|
90 | + $params['hide_icon'] = apply_filters('geodir_cpt_categories_widget_hide_icon', empty($instance['hide_icon']) ? 0 : 1, $instance, $this->id_base); |
|
91 | + |
|
92 | + /** |
|
93 | + * Filter the widget setting to show CPT inline or not. |
|
94 | + * |
|
95 | + * @since 1.5.4 |
|
96 | + * |
|
97 | + * @param bool $cpt_left If true then CPT will be displayed inline. |
|
98 | + * @param array $instance An array of the widget's settings. |
|
99 | + * @param mixed $id_base The widget ID. |
|
100 | + */ |
|
101 | + $params['cpt_left'] = apply_filters('geodir_cpt_categories_widget_cpt_left', empty($instance['cpt_left']) ? 0 : 1, $instance, $this->id_base); |
|
102 | + |
|
103 | + /** |
|
104 | + * Filter the widget categories sorting order settings. |
|
105 | + * |
|
106 | + * @since 1.5.4 |
|
107 | + * |
|
108 | + * @param string $max_count Widget max no of sub-categories count. Default 'count'. |
|
109 | + * @param array $instance An array of the widget's settings. |
|
110 | + * @param mixed $id_base The widget ID. |
|
111 | + */ |
|
112 | + $params['sort_by'] = apply_filters('geodir_cpt_categories_widget_sort_by', isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count', $instance, $this->id_base); |
|
113 | + |
|
114 | + /** |
|
115 | + * Filter the widget max no of sub-categories count. |
|
116 | + * |
|
117 | + * @since 1.5.4 |
|
118 | + * |
|
119 | + * @param bool|string $max_count Widget max no of sub-categories count. |
|
120 | + * @param array $instance An array of the widget's settings. |
|
121 | + * @param mixed $id_base The widget ID. |
|
122 | + */ |
|
123 | + $params['max_count'] = apply_filters('geodir_cpt_categories_widget_max_count', !isset($instance['max_count']) ? 'all' : strip_tags($instance['max_count']), $instance, $this->id_base); |
|
124 | + |
|
125 | + /** |
|
126 | + * Filter the widget max sub-categories depth. |
|
127 | + * |
|
128 | + * @since 1.5.4 |
|
129 | + * |
|
130 | + * @param bool|string $max_level Widget max sub-categories depth. |
|
131 | + * @param array $instance An array of the widget's settings. |
|
132 | + * @param mixed $id_base The widget ID. |
|
133 | + */ |
|
134 | + $params['max_level'] = apply_filters('geodir_cpt_categories_widget_max_level', !isset($instance['max_level']) ? 'all' : strip_tags($instance['max_level']), $instance, $this->id_base); |
|
135 | 135 | |
136 | - /** |
|
137 | - * Filter the widget setting to disable filter current viewing post type. |
|
138 | - * |
|
139 | - * @since 1.6.6 |
|
140 | - * |
|
141 | - * @param bool $no_cpt_filter If true then it doesn't filter current viewing post type. |
|
142 | - * @param array $instance An array of the widget's settings. |
|
143 | - * @param mixed $id_base The widget ID. |
|
144 | - */ |
|
145 | - $params['no_cpt_filter'] = apply_filters('geodir_cpt_categories_widget_no_cpt_filter', empty($instance['no_cpt_filter']) ? 0 : 1, $instance, $this->id_base); |
|
136 | + /** |
|
137 | + * Filter the widget setting to disable filter current viewing post type. |
|
138 | + * |
|
139 | + * @since 1.6.6 |
|
140 | + * |
|
141 | + * @param bool $no_cpt_filter If true then it doesn't filter current viewing post type. |
|
142 | + * @param array $instance An array of the widget's settings. |
|
143 | + * @param mixed $id_base The widget ID. |
|
144 | + */ |
|
145 | + $params['no_cpt_filter'] = apply_filters('geodir_cpt_categories_widget_no_cpt_filter', empty($instance['no_cpt_filter']) ? 0 : 1, $instance, $this->id_base); |
|
146 | 146 | |
147 | - /** |
|
148 | - * Filter the widget setting to disable current viewing category. |
|
149 | - * |
|
150 | - * @since 1.6.6 |
|
151 | - * |
|
152 | - * @param bool $no_cat_filter If true then it doesn't filter current viewing category. |
|
153 | - * @param array $instance An array of the widget's settings. |
|
154 | - * @param mixed $id_base The widget ID. |
|
155 | - */ |
|
156 | - $params['no_cat_filter'] = apply_filters('geodir_cpt_categories_widget_no_cat_filter', empty($instance['no_cat_filter']) ? 0 : 1, $instance, $this->id_base); |
|
157 | - |
|
158 | - /** |
|
159 | - * Filter the widget parameters. |
|
160 | - * |
|
161 | - * @since 1.5.4 |
|
162 | - * |
|
163 | - * @param array $params The widget parameters. |
|
164 | - * @param array $instance An array of the widget's settings. |
|
165 | - * @param mixed $id_base The widget ID. |
|
166 | - */ |
|
167 | - $params = apply_filters('geodir_cpt_categories_widget_params', $params, $instance, $this->id_base); |
|
168 | - |
|
169 | - $output = geodir_cpt_categories_output($params); |
|
170 | - |
|
171 | - echo $args['before_widget']; |
|
172 | - if ( $params['title'] ) { |
|
173 | - echo '<div class="geodir_list_heading clearfix">'; |
|
174 | - echo $args['before_title'] . $params['title'] . $args['after_title']; |
|
175 | - echo '</div>'; |
|
176 | - } |
|
177 | - echo '<div class="gd-cptcats-widget">'; |
|
178 | - echo $output; |
|
179 | - echo '</div>'; |
|
180 | - echo $args['after_widget']; |
|
181 | - } |
|
182 | - |
|
183 | - /** |
|
184 | - * Sanitize cpt categories widget values as they are saved. |
|
185 | - * |
|
186 | - * @since 1.5.4 |
|
187 | - * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added. |
|
188 | - * |
|
189 | - * @param array $new_instance Values just sent to be saved. |
|
190 | - * @param array $old_instance Previously saved values from database. |
|
191 | - * |
|
192 | - * @return array Updated safe values to be saved. |
|
193 | - */ |
|
194 | - public function update($new_instance, $old_instance) { |
|
195 | - $new_instance['post_type'] = is_array($new_instance['post_type']) && in_array('0', $new_instance['post_type']) ? array('0') : $new_instance['post_type']; |
|
196 | - $instance = $old_instance; |
|
197 | - $instance['title'] = strip_tags($new_instance['title']); |
|
198 | - $instance['post_type'] = isset($new_instance['post_type']) ? $new_instance['post_type'] : array('0'); |
|
199 | - $instance['hide_empty'] = !empty($new_instance['hide_empty']) ? 1 : 0; |
|
200 | - $instance['show_count'] = !empty($new_instance['show_count']) ? 1 : 0; |
|
201 | - $instance['hide_icon'] = !empty($new_instance['hide_icon']) ? 1 : 0; |
|
202 | - $instance['cpt_left'] = !empty($new_instance['cpt_left']) ? 1 : 0; |
|
203 | - $instance['sort_by'] = isset($new_instance['sort_by']) && in_array($new_instance['sort_by'], array('az', 'count')) ? $new_instance['sort_by'] : 'count'; |
|
204 | - $instance['max_count'] = strip_tags($new_instance['max_count']); |
|
205 | - $instance['max_level'] = strip_tags($new_instance['max_level']); |
|
206 | - $instance['no_cpt_filter'] = !empty($new_instance['no_cpt_filter']) ? 1 : 0; |
|
207 | - $instance['no_cat_filter'] = !empty($new_instance['no_cat_filter']) ? 1 : 0; |
|
208 | - |
|
209 | - return $instance; |
|
210 | - } |
|
211 | - |
|
212 | - /** |
|
213 | - * Back-end cpt categories settings form. |
|
214 | - * |
|
215 | - * @since 1.5.4 |
|
216 | - * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added. |
|
217 | - * |
|
218 | - * @param array $instance Previously saved values from database. |
|
219 | - */ |
|
220 | - public function form($instance) { |
|
221 | - $instance = wp_parse_args( (array)$instance, |
|
222 | - array( |
|
223 | - 'title' => '', |
|
224 | - 'post_type' => array(), // NULL for all |
|
225 | - 'hide_empty' => '', |
|
226 | - 'show_count' => '', |
|
227 | - 'hide_icon' => '', |
|
228 | - 'cpt_left' => '', |
|
229 | - 'sort_by' => 'count', |
|
230 | - 'max_count' => 'all', |
|
231 | - 'max_level' => '1', |
|
232 | - 'no_cpt_filter' => '', |
|
233 | - 'no_cat_filter' => '', |
|
234 | - ) |
|
235 | - ); |
|
236 | - |
|
237 | - $title = strip_tags($instance['title']); |
|
238 | - $post_type = $instance['post_type']; |
|
239 | - $hide_empty = !empty($instance['hide_empty']) ? true : false; |
|
240 | - $show_count = !empty($instance['show_count']) ? true : false; |
|
241 | - $hide_icon = !empty($instance['hide_icon']) ? true : false; |
|
242 | - $cpt_left = !empty($instance['cpt_left']) ? true : false; |
|
243 | - $max_count = strip_tags($instance['max_count']); |
|
244 | - $max_level = strip_tags($instance['max_level']); |
|
245 | - $sort_by = isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count'; |
|
246 | - $no_cpt_filter = !empty($instance['no_cpt_filter']) ? true : false; |
|
247 | - $no_cat_filter = !empty($instance['no_cat_filter']) ? true : false; |
|
248 | - |
|
249 | - $post_type_options = geodir_get_posttypes('options'); |
|
250 | - ?> |
|
147 | + /** |
|
148 | + * Filter the widget setting to disable current viewing category. |
|
149 | + * |
|
150 | + * @since 1.6.6 |
|
151 | + * |
|
152 | + * @param bool $no_cat_filter If true then it doesn't filter current viewing category. |
|
153 | + * @param array $instance An array of the widget's settings. |
|
154 | + * @param mixed $id_base The widget ID. |
|
155 | + */ |
|
156 | + $params['no_cat_filter'] = apply_filters('geodir_cpt_categories_widget_no_cat_filter', empty($instance['no_cat_filter']) ? 0 : 1, $instance, $this->id_base); |
|
157 | + |
|
158 | + /** |
|
159 | + * Filter the widget parameters. |
|
160 | + * |
|
161 | + * @since 1.5.4 |
|
162 | + * |
|
163 | + * @param array $params The widget parameters. |
|
164 | + * @param array $instance An array of the widget's settings. |
|
165 | + * @param mixed $id_base The widget ID. |
|
166 | + */ |
|
167 | + $params = apply_filters('geodir_cpt_categories_widget_params', $params, $instance, $this->id_base); |
|
168 | + |
|
169 | + $output = geodir_cpt_categories_output($params); |
|
170 | + |
|
171 | + echo $args['before_widget']; |
|
172 | + if ( $params['title'] ) { |
|
173 | + echo '<div class="geodir_list_heading clearfix">'; |
|
174 | + echo $args['before_title'] . $params['title'] . $args['after_title']; |
|
175 | + echo '</div>'; |
|
176 | + } |
|
177 | + echo '<div class="gd-cptcats-widget">'; |
|
178 | + echo $output; |
|
179 | + echo '</div>'; |
|
180 | + echo $args['after_widget']; |
|
181 | + } |
|
182 | + |
|
183 | + /** |
|
184 | + * Sanitize cpt categories widget values as they are saved. |
|
185 | + * |
|
186 | + * @since 1.5.4 |
|
187 | + * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added. |
|
188 | + * |
|
189 | + * @param array $new_instance Values just sent to be saved. |
|
190 | + * @param array $old_instance Previously saved values from database. |
|
191 | + * |
|
192 | + * @return array Updated safe values to be saved. |
|
193 | + */ |
|
194 | + public function update($new_instance, $old_instance) { |
|
195 | + $new_instance['post_type'] = is_array($new_instance['post_type']) && in_array('0', $new_instance['post_type']) ? array('0') : $new_instance['post_type']; |
|
196 | + $instance = $old_instance; |
|
197 | + $instance['title'] = strip_tags($new_instance['title']); |
|
198 | + $instance['post_type'] = isset($new_instance['post_type']) ? $new_instance['post_type'] : array('0'); |
|
199 | + $instance['hide_empty'] = !empty($new_instance['hide_empty']) ? 1 : 0; |
|
200 | + $instance['show_count'] = !empty($new_instance['show_count']) ? 1 : 0; |
|
201 | + $instance['hide_icon'] = !empty($new_instance['hide_icon']) ? 1 : 0; |
|
202 | + $instance['cpt_left'] = !empty($new_instance['cpt_left']) ? 1 : 0; |
|
203 | + $instance['sort_by'] = isset($new_instance['sort_by']) && in_array($new_instance['sort_by'], array('az', 'count')) ? $new_instance['sort_by'] : 'count'; |
|
204 | + $instance['max_count'] = strip_tags($new_instance['max_count']); |
|
205 | + $instance['max_level'] = strip_tags($new_instance['max_level']); |
|
206 | + $instance['no_cpt_filter'] = !empty($new_instance['no_cpt_filter']) ? 1 : 0; |
|
207 | + $instance['no_cat_filter'] = !empty($new_instance['no_cat_filter']) ? 1 : 0; |
|
208 | + |
|
209 | + return $instance; |
|
210 | + } |
|
211 | + |
|
212 | + /** |
|
213 | + * Back-end cpt categories settings form. |
|
214 | + * |
|
215 | + * @since 1.5.4 |
|
216 | + * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added. |
|
217 | + * |
|
218 | + * @param array $instance Previously saved values from database. |
|
219 | + */ |
|
220 | + public function form($instance) { |
|
221 | + $instance = wp_parse_args( (array)$instance, |
|
222 | + array( |
|
223 | + 'title' => '', |
|
224 | + 'post_type' => array(), // NULL for all |
|
225 | + 'hide_empty' => '', |
|
226 | + 'show_count' => '', |
|
227 | + 'hide_icon' => '', |
|
228 | + 'cpt_left' => '', |
|
229 | + 'sort_by' => 'count', |
|
230 | + 'max_count' => 'all', |
|
231 | + 'max_level' => '1', |
|
232 | + 'no_cpt_filter' => '', |
|
233 | + 'no_cat_filter' => '', |
|
234 | + ) |
|
235 | + ); |
|
236 | + |
|
237 | + $title = strip_tags($instance['title']); |
|
238 | + $post_type = $instance['post_type']; |
|
239 | + $hide_empty = !empty($instance['hide_empty']) ? true : false; |
|
240 | + $show_count = !empty($instance['show_count']) ? true : false; |
|
241 | + $hide_icon = !empty($instance['hide_icon']) ? true : false; |
|
242 | + $cpt_left = !empty($instance['cpt_left']) ? true : false; |
|
243 | + $max_count = strip_tags($instance['max_count']); |
|
244 | + $max_level = strip_tags($instance['max_level']); |
|
245 | + $sort_by = isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count'; |
|
246 | + $no_cpt_filter = !empty($instance['no_cpt_filter']) ? true : false; |
|
247 | + $no_cat_filter = !empty($instance['no_cat_filter']) ? true : false; |
|
248 | + |
|
249 | + $post_type_options = geodir_get_posttypes('options'); |
|
250 | + ?> |
|
251 | 251 | <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p> |
252 | 252 | <p> |
253 | 253 | <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Select CPT:', 'geodirectory'); ?></label> |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | <label for="<?php echo $this->get_field_id('no_cat_filter'); ?>"><?php _e( 'Don\'t filter for current viewing category', 'geodirectory' ); ?></label> |
299 | 299 | </p> |
300 | 300 | <?php |
301 | - } |
|
301 | + } |
|
302 | 302 | } // class geodir_cpt_categories_widget |
303 | 303 | |
304 | 304 | register_widget('geodir_cpt_categories_widget'); |
@@ -316,179 +316,179 @@ discard block |
||
316 | 316 | * @return string CPT categories content. |
317 | 317 | */ |
318 | 318 | function geodir_cpt_categories_output($params) { |
319 | - global $post, $gd_use_query_vars; |
|
319 | + global $post, $gd_use_query_vars; |
|
320 | 320 | |
321 | - $old_gd_use_query_vars = $gd_use_query_vars; |
|
321 | + $old_gd_use_query_vars = $gd_use_query_vars; |
|
322 | 322 | |
323 | - $gd_use_query_vars = geodir_is_page('detail') ? true : false; |
|
323 | + $gd_use_query_vars = geodir_is_page('detail') ? true : false; |
|
324 | 324 | |
325 | - $args = wp_parse_args((array)$params, |
|
326 | - array( |
|
327 | - 'title' => '', |
|
328 | - 'post_type' => array(), // NULL for all |
|
329 | - 'hide_empty' => '', |
|
330 | - 'show_count' => '', |
|
331 | - 'hide_icon' => '', |
|
332 | - 'cpt_left' => '', |
|
333 | - 'sort_by' => 'count', |
|
334 | - 'max_count' => 'all', |
|
335 | - 'max_level' => '1', |
|
336 | - 'no_cpt_filter' => '', |
|
337 | - 'no_cat_filter' => '', |
|
338 | - ) |
|
339 | - ); |
|
340 | - |
|
341 | - $sort_by = isset($args['sort_by']) && in_array($args['sort_by'], array('az', 'count')) ? $args['sort_by'] : 'count'; |
|
342 | - $cpt_filter = empty($args['no_cpt_filter']) ? true : false; |
|
343 | - $cat_filter = empty($args['no_cat_filter']) ? true : false; |
|
344 | - |
|
345 | - $gd_post_types = geodir_get_posttypes('array'); |
|
346 | - |
|
347 | - $post_type_arr = !is_array($args['post_type']) ? explode(',', $args['post_type']) : $args['post_type']; |
|
348 | - $current_posttype = geodir_get_current_posttype(); |
|
349 | - |
|
350 | - $is_listing = false; |
|
351 | - $is_detail = false; |
|
352 | - $is_category = false; |
|
353 | - $post_ID = 0; |
|
354 | - $is_listing_page = geodir_is_page('listing'); |
|
355 | - $is_detail_page = geodir_is_page('detail'); |
|
356 | - if ($is_listing_page || $is_detail_page) { |
|
357 | - $current_posttype = geodir_get_current_posttype(); |
|
358 | - |
|
359 | - if ($current_posttype != '' && isset($gd_post_types[$current_posttype])) { |
|
360 | - if ($is_detail_page) { |
|
361 | - $is_detail = true; |
|
362 | - $post_ID = is_object($post) && !empty($post->ID) ? (int)$post->ID : 0; |
|
363 | - } else { |
|
364 | - $is_listing = true; |
|
365 | - if (is_tax()) { // category page |
|
366 | - $current_term_id = get_queried_object_id(); |
|
367 | - $current_taxonomy = get_query_var('taxonomy'); |
|
368 | - $current_posttype = geodir_get_current_posttype(); |
|
369 | - |
|
370 | - if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') { |
|
371 | - $is_category = true; |
|
372 | - } |
|
373 | - } |
|
374 | - } |
|
375 | - } |
|
376 | - } |
|
377 | - |
|
378 | - $parent_category = 0; |
|
379 | - if (($is_listing || $is_detail) && $cpt_filter) { |
|
380 | - $post_type_arr = array($current_posttype); |
|
381 | - } |
|
382 | - |
|
383 | - $post_types = array(); |
|
384 | - if (!empty($post_type_arr)) { |
|
385 | - if (in_array('0', $post_type_arr)) { |
|
386 | - $post_types = $gd_post_types; |
|
387 | - } else { |
|
388 | - foreach ($post_type_arr as $cpt) { |
|
389 | - if (isset($gd_post_types[$cpt])) { |
|
390 | - $post_types[$cpt] = $gd_post_types[$cpt]; |
|
391 | - } |
|
392 | - } |
|
393 | - } |
|
394 | - } |
|
395 | - |
|
396 | - if (empty($post_type_arr)) { |
|
397 | - $post_types = $gd_post_types; |
|
398 | - } |
|
399 | - |
|
400 | - $hide_empty = !empty($args['hide_empty']) ? true : false; |
|
401 | - $max_count = strip_tags($args['max_count']); |
|
402 | - $all_childs = $max_count == 'all' ? true : false; |
|
403 | - $max_count = $max_count > 0 ? (int)$max_count : 0; |
|
404 | - $max_level = strip_tags($args['max_level']); |
|
405 | - $show_count = !empty($args['show_count']) ? true : false; |
|
406 | - $hide_icon = !empty($args['hide_icon']) ? true : false; |
|
407 | - $cpt_left = !empty($args['cpt_left']) ? true : false; |
|
408 | - |
|
409 | - if(!$cpt_left){ |
|
410 | - $cpt_left = "gd-cpt-flat"; |
|
411 | - }else{ |
|
412 | - $cpt_left = ''; |
|
413 | - } |
|
414 | - |
|
415 | - $orderby = 'count'; |
|
416 | - $order = 'DESC'; |
|
417 | - if ($sort_by == 'az') { |
|
418 | - $orderby = 'name'; |
|
419 | - $order = 'ASC'; |
|
420 | - } |
|
421 | - |
|
422 | - $output = ''; |
|
423 | - if (!empty($post_types)) { |
|
424 | - foreach ($post_types as $cpt => $cpt_info) { |
|
425 | - $parent_category = ($is_category && $cat_filter && $cpt == $current_posttype) ? $current_term_id : 0; |
|
426 | - $cat_taxonomy = $cpt . 'category'; |
|
427 | - $skip_childs = false; |
|
428 | - if ($cat_filter && $cpt == $current_posttype && $is_detail && $post_ID) { |
|
429 | - $skip_childs = true; |
|
430 | - $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'object_ids' => $post_ID)); |
|
431 | - } else { |
|
432 | - $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_category)); |
|
433 | - } |
|
434 | - |
|
435 | - if ($hide_empty) { |
|
436 | - $categories = geodir_filter_empty_terms($categories); |
|
437 | - } |
|
438 | - if ($sort_by == 'count') { |
|
439 | - $categories = geodir_sort_terms($categories, 'count'); |
|
440 | - } |
|
325 | + $args = wp_parse_args((array)$params, |
|
326 | + array( |
|
327 | + 'title' => '', |
|
328 | + 'post_type' => array(), // NULL for all |
|
329 | + 'hide_empty' => '', |
|
330 | + 'show_count' => '', |
|
331 | + 'hide_icon' => '', |
|
332 | + 'cpt_left' => '', |
|
333 | + 'sort_by' => 'count', |
|
334 | + 'max_count' => 'all', |
|
335 | + 'max_level' => '1', |
|
336 | + 'no_cpt_filter' => '', |
|
337 | + 'no_cat_filter' => '', |
|
338 | + ) |
|
339 | + ); |
|
340 | + |
|
341 | + $sort_by = isset($args['sort_by']) && in_array($args['sort_by'], array('az', 'count')) ? $args['sort_by'] : 'count'; |
|
342 | + $cpt_filter = empty($args['no_cpt_filter']) ? true : false; |
|
343 | + $cat_filter = empty($args['no_cat_filter']) ? true : false; |
|
344 | + |
|
345 | + $gd_post_types = geodir_get_posttypes('array'); |
|
346 | + |
|
347 | + $post_type_arr = !is_array($args['post_type']) ? explode(',', $args['post_type']) : $args['post_type']; |
|
348 | + $current_posttype = geodir_get_current_posttype(); |
|
349 | + |
|
350 | + $is_listing = false; |
|
351 | + $is_detail = false; |
|
352 | + $is_category = false; |
|
353 | + $post_ID = 0; |
|
354 | + $is_listing_page = geodir_is_page('listing'); |
|
355 | + $is_detail_page = geodir_is_page('detail'); |
|
356 | + if ($is_listing_page || $is_detail_page) { |
|
357 | + $current_posttype = geodir_get_current_posttype(); |
|
358 | + |
|
359 | + if ($current_posttype != '' && isset($gd_post_types[$current_posttype])) { |
|
360 | + if ($is_detail_page) { |
|
361 | + $is_detail = true; |
|
362 | + $post_ID = is_object($post) && !empty($post->ID) ? (int)$post->ID : 0; |
|
363 | + } else { |
|
364 | + $is_listing = true; |
|
365 | + if (is_tax()) { // category page |
|
366 | + $current_term_id = get_queried_object_id(); |
|
367 | + $current_taxonomy = get_query_var('taxonomy'); |
|
368 | + $current_posttype = geodir_get_current_posttype(); |
|
369 | + |
|
370 | + if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') { |
|
371 | + $is_category = true; |
|
372 | + } |
|
373 | + } |
|
374 | + } |
|
375 | + } |
|
376 | + } |
|
377 | + |
|
378 | + $parent_category = 0; |
|
379 | + if (($is_listing || $is_detail) && $cpt_filter) { |
|
380 | + $post_type_arr = array($current_posttype); |
|
381 | + } |
|
382 | + |
|
383 | + $post_types = array(); |
|
384 | + if (!empty($post_type_arr)) { |
|
385 | + if (in_array('0', $post_type_arr)) { |
|
386 | + $post_types = $gd_post_types; |
|
387 | + } else { |
|
388 | + foreach ($post_type_arr as $cpt) { |
|
389 | + if (isset($gd_post_types[$cpt])) { |
|
390 | + $post_types[$cpt] = $gd_post_types[$cpt]; |
|
391 | + } |
|
392 | + } |
|
393 | + } |
|
394 | + } |
|
395 | + |
|
396 | + if (empty($post_type_arr)) { |
|
397 | + $post_types = $gd_post_types; |
|
398 | + } |
|
399 | + |
|
400 | + $hide_empty = !empty($args['hide_empty']) ? true : false; |
|
401 | + $max_count = strip_tags($args['max_count']); |
|
402 | + $all_childs = $max_count == 'all' ? true : false; |
|
403 | + $max_count = $max_count > 0 ? (int)$max_count : 0; |
|
404 | + $max_level = strip_tags($args['max_level']); |
|
405 | + $show_count = !empty($args['show_count']) ? true : false; |
|
406 | + $hide_icon = !empty($args['hide_icon']) ? true : false; |
|
407 | + $cpt_left = !empty($args['cpt_left']) ? true : false; |
|
408 | + |
|
409 | + if(!$cpt_left){ |
|
410 | + $cpt_left = "gd-cpt-flat"; |
|
411 | + }else{ |
|
412 | + $cpt_left = ''; |
|
413 | + } |
|
414 | + |
|
415 | + $orderby = 'count'; |
|
416 | + $order = 'DESC'; |
|
417 | + if ($sort_by == 'az') { |
|
418 | + $orderby = 'name'; |
|
419 | + $order = 'ASC'; |
|
420 | + } |
|
421 | + |
|
422 | + $output = ''; |
|
423 | + if (!empty($post_types)) { |
|
424 | + foreach ($post_types as $cpt => $cpt_info) { |
|
425 | + $parent_category = ($is_category && $cat_filter && $cpt == $current_posttype) ? $current_term_id : 0; |
|
426 | + $cat_taxonomy = $cpt . 'category'; |
|
427 | + $skip_childs = false; |
|
428 | + if ($cat_filter && $cpt == $current_posttype && $is_detail && $post_ID) { |
|
429 | + $skip_childs = true; |
|
430 | + $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'object_ids' => $post_ID)); |
|
431 | + } else { |
|
432 | + $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_category)); |
|
433 | + } |
|
434 | + |
|
435 | + if ($hide_empty) { |
|
436 | + $categories = geodir_filter_empty_terms($categories); |
|
437 | + } |
|
438 | + if ($sort_by == 'count') { |
|
439 | + $categories = geodir_sort_terms($categories, 'count'); |
|
440 | + } |
|
441 | 441 | |
442 | - $categories = apply_filters('geodir_custom_sort_cpt_terms', $categories); |
|
443 | - |
|
444 | - if (!empty($categories)) { |
|
445 | - $term_icons = !$hide_icon ? geodir_get_term_icon() : array(); |
|
446 | - $row_class = ''; |
|
447 | - |
|
448 | - if ($is_listing) { |
|
449 | - $row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing'; |
|
450 | - } |
|
451 | - $cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">'; |
|
452 | - |
|
453 | - if ($is_category && $cat_filter && $cpt == $current_posttype) { |
|
454 | - $term_info = get_term($current_term_id, $cat_taxonomy); |
|
455 | - |
|
456 | - $term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : ''; |
|
457 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
458 | - |
|
459 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : ''; |
|
460 | - $cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>'; |
|
461 | - } else { |
|
462 | - $cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>'; |
|
463 | - } |
|
464 | - foreach ($categories as $category) { |
|
465 | - $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
|
466 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
467 | - |
|
468 | - $term_link = get_term_link( $category, $category->taxonomy ); |
|
469 | - /** Filter documented in geodirectory-functions/general_functions.php **/ |
|
470 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
471 | - |
|
472 | - $cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent '.$cpt_left.'">'; |
|
473 | - $cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">'; |
|
474 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
475 | - $cpt_row .= '<h3 class="gd-cptcat-cat"><a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' .$term_icon_url . $category->name . $count . '</a></h3>'; |
|
476 | - if (!$skip_childs && ($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) { |
|
477 | - $cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons); |
|
478 | - } |
|
479 | - $cpt_row .= '</li>'; |
|
480 | - $cpt_row .= '</ul>'; |
|
481 | - } |
|
482 | - $cpt_row .= '</div>'; |
|
483 | - |
|
484 | - $output .= $cpt_row; |
|
485 | - } |
|
486 | - } |
|
487 | - } |
|
442 | + $categories = apply_filters('geodir_custom_sort_cpt_terms', $categories); |
|
443 | + |
|
444 | + if (!empty($categories)) { |
|
445 | + $term_icons = !$hide_icon ? geodir_get_term_icon() : array(); |
|
446 | + $row_class = ''; |
|
447 | + |
|
448 | + if ($is_listing) { |
|
449 | + $row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing'; |
|
450 | + } |
|
451 | + $cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">'; |
|
452 | + |
|
453 | + if ($is_category && $cat_filter && $cpt == $current_posttype) { |
|
454 | + $term_info = get_term($current_term_id, $cat_taxonomy); |
|
455 | + |
|
456 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : ''; |
|
457 | + $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
458 | + |
|
459 | + $count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : ''; |
|
460 | + $cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>'; |
|
461 | + } else { |
|
462 | + $cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>'; |
|
463 | + } |
|
464 | + foreach ($categories as $category) { |
|
465 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
|
466 | + $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
467 | + |
|
468 | + $term_link = get_term_link( $category, $category->taxonomy ); |
|
469 | + /** Filter documented in geodirectory-functions/general_functions.php **/ |
|
470 | + $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
471 | + |
|
472 | + $cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent '.$cpt_left.'">'; |
|
473 | + $cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">'; |
|
474 | + $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
475 | + $cpt_row .= '<h3 class="gd-cptcat-cat"><a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' .$term_icon_url . $category->name . $count . '</a></h3>'; |
|
476 | + if (!$skip_childs && ($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) { |
|
477 | + $cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons); |
|
478 | + } |
|
479 | + $cpt_row .= '</li>'; |
|
480 | + $cpt_row .= '</ul>'; |
|
481 | + } |
|
482 | + $cpt_row .= '</div>'; |
|
483 | + |
|
484 | + $output .= $cpt_row; |
|
485 | + } |
|
486 | + } |
|
487 | + } |
|
488 | 488 | |
489 | - $gd_use_query_vars = $old_gd_use_query_vars; |
|
489 | + $gd_use_query_vars = $old_gd_use_query_vars; |
|
490 | 490 | |
491 | - return $output; |
|
491 | + return $output; |
|
492 | 492 | } |
493 | 493 | |
494 | 494 | /** |
@@ -508,48 +508,48 @@ discard block |
||
508 | 508 | * @return string Html content. |
509 | 509 | */ |
510 | 510 | function geodir_cpt_categories_child_cats($parent_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth = 1) { |
511 | - $cat_taxonomy = $cpt . 'category'; |
|
512 | - |
|
513 | - $orderby = 'count'; |
|
514 | - $order = 'DESC'; |
|
515 | - if ($sort_by == 'az') { |
|
516 | - $orderby = 'name'; |
|
517 | - $order = 'ASC'; |
|
518 | - } |
|
519 | - |
|
520 | - if ($max_level != 'all' && $depth > (int)$max_level ) { |
|
521 | - return ''; |
|
522 | - } |
|
523 | - |
|
524 | - $child_cats = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_id, 'number' => $max_count)); |
|
525 | - if ($hide_empty) { |
|
526 | - $child_cats = geodir_filter_empty_terms($child_cats); |
|
527 | - } |
|
528 | - |
|
529 | - if (empty($child_cats)) { |
|
530 | - return ''; |
|
531 | - } |
|
532 | - |
|
533 | - if ($sort_by == 'count') { |
|
534 | - $child_cats = geodir_sort_terms($child_cats, 'count'); |
|
535 | - } |
|
536 | - |
|
537 | - $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">'; |
|
538 | - $depth++; |
|
539 | - foreach ($child_cats as $category) { |
|
540 | - $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
|
541 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
542 | - $term_link = get_term_link( $category, $category->taxonomy ); |
|
543 | - /** Filter documented in geodirectory-functions/general_functions.php **/ |
|
544 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
545 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
546 | - |
|
547 | - $content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">'; |
|
548 | - $content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>'; |
|
549 | - $content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth); |
|
550 | - } |
|
551 | - $content .= '</li></ul>'; |
|
552 | - |
|
553 | - return $content; |
|
511 | + $cat_taxonomy = $cpt . 'category'; |
|
512 | + |
|
513 | + $orderby = 'count'; |
|
514 | + $order = 'DESC'; |
|
515 | + if ($sort_by == 'az') { |
|
516 | + $orderby = 'name'; |
|
517 | + $order = 'ASC'; |
|
518 | + } |
|
519 | + |
|
520 | + if ($max_level != 'all' && $depth > (int)$max_level ) { |
|
521 | + return ''; |
|
522 | + } |
|
523 | + |
|
524 | + $child_cats = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_id, 'number' => $max_count)); |
|
525 | + if ($hide_empty) { |
|
526 | + $child_cats = geodir_filter_empty_terms($child_cats); |
|
527 | + } |
|
528 | + |
|
529 | + if (empty($child_cats)) { |
|
530 | + return ''; |
|
531 | + } |
|
532 | + |
|
533 | + if ($sort_by == 'count') { |
|
534 | + $child_cats = geodir_sort_terms($child_cats, 'count'); |
|
535 | + } |
|
536 | + |
|
537 | + $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">'; |
|
538 | + $depth++; |
|
539 | + foreach ($child_cats as $category) { |
|
540 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
|
541 | + $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
542 | + $term_link = get_term_link( $category, $category->taxonomy ); |
|
543 | + /** Filter documented in geodirectory-functions/general_functions.php **/ |
|
544 | + $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
545 | + $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
546 | + |
|
547 | + $content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">'; |
|
548 | + $content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>'; |
|
549 | + $content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth); |
|
550 | + } |
|
551 | + $content .= '</li></ul>'; |
|
552 | + |
|
553 | + return $content; |
|
554 | 554 | } |
555 | 555 | ?> |
556 | 556 | \ No newline at end of file |
@@ -192,8 +192,9 @@ |
||
192 | 192 | |
193 | 193 | foreach ($map_zoom_level as $level) { |
194 | 194 | $selected = ''; |
195 | - if ($level == $zoom) |
|
196 | - $selected = 'selected="selected"'; |
|
195 | + if ($level == $zoom) { |
|
196 | + $selected = 'selected="selected"'; |
|
197 | + } |
|
197 | 198 | |
198 | 199 | echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>'; |
199 | 200 |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | { |
128 | 128 | //widgetform in backend |
129 | 129 | |
130 | - $instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'child_collapse' => '0', 'scrollwheel' => '0')); |
|
130 | + $instance = wp_parse_args((array) $instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'child_collapse' => '0', 'scrollwheel' => '0')); |
|
131 | 131 | $width = strip_tags($instance['width']); |
132 | 132 | $heigh = strip_tags($instance['heigh']); |
133 | 133 | $maptype = strip_tags($instance['maptype']); |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | <option <?php if (isset($maptype) && $maptype == 'HYBRID') { |
173 | 173 | echo 'selected="selected"'; |
174 | 174 | } ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option> |
175 | - <option <?php selected($maptype, 'TERRAIN');?> |
|
175 | + <option <?php selected($maptype, 'TERRAIN'); ?> |
|
176 | 176 | value="TERRAIN"><?php _e('Terrain Map', 'geodirectory'); ?></option> |
177 | 177 | </select> |
178 | 178 | </label> |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | if ($level == $zoom) |
195 | 195 | $selected = 'selected="selected"'; |
196 | 196 | |
197 | - echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>'; |
|
197 | + echo '<option '.$selected.' value="'.$level.'">'.$level.'</option>'; |
|
198 | 198 | |
199 | 199 | } ?> |
200 | 200 | |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | : |
220 | 220 | <input id="<?php echo $this->get_field_id('child_collapse'); ?>" |
221 | 221 | name="<?php echo $this->get_field_name('child_collapse'); ?>" type="checkbox" value="1" |
222 | - <?php if ($child_collapse){ ?>checked="checked" <?php } ?> /> |
|
222 | + <?php if ($child_collapse) { ?>checked="checked" <?php } ?> /> |
|
223 | 223 | </label> |
224 | 224 | </p> |
225 | 225 | |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | : |
230 | 230 | <input id="<?php echo $this->get_field_id('scrollwheel'); ?>" |
231 | 231 | name="<?php echo $this->get_field_name('scrollwheel'); ?>" type="checkbox" value="1" |
232 | - <?php if ($scrollwheel){ ?>checked="checked" <?php } ?> /> |
|
232 | + <?php if ($scrollwheel) { ?>checked="checked" <?php } ?> /> |
|
233 | 233 | </label> |
234 | 234 | </p> |
235 | 235 |
@@ -16,127 +16,127 @@ discard block |
||
16 | 16 | */ |
17 | 17 | class geodir_homepage_map extends WP_Widget |
18 | 18 | { |
19 | - /** |
|
19 | + /** |
|
20 | 20 | * Register the home page map widget. |
21 | 21 | * |
22 | 22 | * @since 1.0.0 |
23 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
23 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
24 | 24 | */ |
25 | - public function __construct() { |
|
26 | - $widget_ops = array('classname' => 'widget Google Map in Home page', 'description' => __('Google Map in Home page. It will show you google map V3 for Home page with category checkbox selection.', 'geodirectory')); |
|
27 | - parent::__construct( |
|
28 | - 'geodir_map_v3_home_map', // Base ID |
|
29 | - __('GD > GMap - Home page', 'geodirectory'), // Name |
|
30 | - $widget_ops// Args |
|
31 | - ); |
|
32 | - } |
|
25 | + public function __construct() { |
|
26 | + $widget_ops = array('classname' => 'widget Google Map in Home page', 'description' => __('Google Map in Home page. It will show you google map V3 for Home page with category checkbox selection.', 'geodirectory')); |
|
27 | + parent::__construct( |
|
28 | + 'geodir_map_v3_home_map', // Base ID |
|
29 | + __('GD > GMap - Home page', 'geodirectory'), // Name |
|
30 | + $widget_ops// Args |
|
31 | + ); |
|
32 | + } |
|
33 | 33 | |
34 | 34 | /** |
35 | 35 | * Front-end display content for home page map widget. |
36 | 36 | * |
37 | 37 | * @since 1.0.0 |
38 | - * @since 1.5.1 Declare function public. |
|
38 | + * @since 1.5.1 Declare function public. |
|
39 | 39 | * |
40 | 40 | * @param array $args Widget arguments. |
41 | 41 | * @param array $instance Saved values from database. |
42 | 42 | */ |
43 | - public function widget($args, $instance) |
|
44 | - { |
|
45 | - extract($args, EXTR_SKIP); |
|
46 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
47 | - $width = empty($instance['width']) ? '100%' : apply_filters('widget_width', $instance['width']); |
|
48 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
49 | - $height = empty($instance['heigh']) ? '425' : apply_filters('widget_heigh', $instance['heigh']); |
|
50 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
51 | - $maptype = empty($instance['maptype']) ? 'ROADMAP' : apply_filters('widget_maptype', $instance['maptype']); |
|
52 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
53 | - $zoom = empty($instance['zoom']) ? '13' : apply_filters('widget_zoom', $instance['zoom']); |
|
54 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
55 | - $autozoom = empty($instance['autozoom']) ? '' : apply_filters('widget_autozoom', $instance['autozoom']); |
|
56 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
57 | - $child_collapse = empty($instance['child_collapse']) ? '0' : apply_filters('widget_child_collapse', $instance['child_collapse']); |
|
58 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
59 | - $scrollwheel = empty($instance['scrollwheel']) ? '0' : apply_filters('widget_scrollwheel', $instance['scrollwheel']); |
|
43 | + public function widget($args, $instance) |
|
44 | + { |
|
45 | + extract($args, EXTR_SKIP); |
|
46 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
47 | + $width = empty($instance['width']) ? '100%' : apply_filters('widget_width', $instance['width']); |
|
48 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
49 | + $height = empty($instance['heigh']) ? '425' : apply_filters('widget_heigh', $instance['heigh']); |
|
50 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
51 | + $maptype = empty($instance['maptype']) ? 'ROADMAP' : apply_filters('widget_maptype', $instance['maptype']); |
|
52 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
53 | + $zoom = empty($instance['zoom']) ? '13' : apply_filters('widget_zoom', $instance['zoom']); |
|
54 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
55 | + $autozoom = empty($instance['autozoom']) ? '' : apply_filters('widget_autozoom', $instance['autozoom']); |
|
56 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
57 | + $child_collapse = empty($instance['child_collapse']) ? '0' : apply_filters('widget_child_collapse', $instance['child_collapse']); |
|
58 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
59 | + $scrollwheel = empty($instance['scrollwheel']) ? '0' : apply_filters('widget_scrollwheel', $instance['scrollwheel']); |
|
60 | 60 | |
61 | - $map_args = array(); |
|
62 | - $map_args['map_canvas_name'] = str_replace('-', '_', $args['widget_id']); //'home_map_canvas'.$str ; |
|
63 | - $map_args['width'] = $width; |
|
64 | - $map_args['height'] = $height; |
|
65 | - $map_args['maptype'] = $maptype; |
|
66 | - $map_args['scrollwheel'] = $scrollwheel; |
|
67 | - $map_args['fullscreenControl'] = false; |
|
68 | - $map_args['zoom'] = $zoom; |
|
69 | - $map_args['autozoom'] = $autozoom; |
|
70 | - $map_args['child_collapse'] = $child_collapse; |
|
71 | - $map_args['enable_cat_filters'] = true; |
|
72 | - $map_args['enable_text_search'] = true; |
|
73 | - $map_args['enable_post_type_filters'] = true; |
|
74 | - /** This action is documented in geodirectory_shortcodes.php */ |
|
75 | - $map_args['enable_location_filters'] = apply_filters('geodir_home_map_enable_location_filters', false); |
|
76 | - $map_args['enable_jason_on_load'] = false; |
|
77 | - $map_args['enable_marker_cluster'] = false; |
|
78 | - $map_args['enable_map_resize_button'] = true; |
|
79 | - $map_args['map_class_name'] = 'geodir-map-home-page'; |
|
61 | + $map_args = array(); |
|
62 | + $map_args['map_canvas_name'] = str_replace('-', '_', $args['widget_id']); //'home_map_canvas'.$str ; |
|
63 | + $map_args['width'] = $width; |
|
64 | + $map_args['height'] = $height; |
|
65 | + $map_args['maptype'] = $maptype; |
|
66 | + $map_args['scrollwheel'] = $scrollwheel; |
|
67 | + $map_args['fullscreenControl'] = false; |
|
68 | + $map_args['zoom'] = $zoom; |
|
69 | + $map_args['autozoom'] = $autozoom; |
|
70 | + $map_args['child_collapse'] = $child_collapse; |
|
71 | + $map_args['enable_cat_filters'] = true; |
|
72 | + $map_args['enable_text_search'] = true; |
|
73 | + $map_args['enable_post_type_filters'] = true; |
|
74 | + /** This action is documented in geodirectory_shortcodes.php */ |
|
75 | + $map_args['enable_location_filters'] = apply_filters('geodir_home_map_enable_location_filters', false); |
|
76 | + $map_args['enable_jason_on_load'] = false; |
|
77 | + $map_args['enable_marker_cluster'] = false; |
|
78 | + $map_args['enable_map_resize_button'] = true; |
|
79 | + $map_args['map_class_name'] = 'geodir-map-home-page'; |
|
80 | 80 | |
81 | - $is_geodir_home_map_widget = true; |
|
82 | - $map_args['is_geodir_home_map_widget'] = $is_geodir_home_map_widget; |
|
81 | + $is_geodir_home_map_widget = true; |
|
82 | + $map_args['is_geodir_home_map_widget'] = $is_geodir_home_map_widget; |
|
83 | 83 | |
84 | - geodir_draw_map($map_args); |
|
84 | + geodir_draw_map($map_args); |
|
85 | 85 | |
86 | - /* home map post type slider */ |
|
87 | - if ($is_geodir_home_map_widget) { |
|
88 | - add_action('wp_footer', array($this, 'geodir_home_map_add_script'), 100); |
|
89 | - } |
|
86 | + /* home map post type slider */ |
|
87 | + if ($is_geodir_home_map_widget) { |
|
88 | + add_action('wp_footer', array($this, 'geodir_home_map_add_script'), 100); |
|
89 | + } |
|
90 | 90 | |
91 | - } |
|
91 | + } |
|
92 | 92 | |
93 | 93 | /** |
94 | 94 | * Sanitize home page map widget form values as they are saved. |
95 | 95 | * |
96 | 96 | * @since 1.0.0 |
97 | - * @since 1.5.1 Declare function public. |
|
97 | + * @since 1.5.1 Declare function public. |
|
98 | 98 | * |
99 | 99 | * @param array $new_instance Values just sent to be saved. |
100 | 100 | * @param array $old_instance Previously saved values from database. |
101 | 101 | * |
102 | 102 | * @return array Updated safe values to be saved. |
103 | 103 | */ |
104 | - public function update($new_instance, $old_instance) |
|
105 | - { |
|
106 | - //save the widget |
|
107 | - $instance = $old_instance; |
|
108 | - $instance['width'] = strip_tags($new_instance['width']); |
|
109 | - $instance['heigh'] = ($new_instance['heigh']); |
|
110 | - $instance['maptype'] = ($new_instance['maptype']); |
|
111 | - $instance['zoom'] = ($new_instance['zoom']); |
|
112 | - $instance['autozoom'] = isset($new_instance['autozoom']) ? $new_instance['autozoom'] : ''; |
|
113 | - $instance['child_collapse'] = isset($new_instance['child_collapse']) ? ($new_instance['child_collapse']) : ''; |
|
114 | - $instance['scrollwheel'] = isset($new_instance['scrollwheel']) ? ($new_instance['scrollwheel']) : ''; |
|
104 | + public function update($new_instance, $old_instance) |
|
105 | + { |
|
106 | + //save the widget |
|
107 | + $instance = $old_instance; |
|
108 | + $instance['width'] = strip_tags($new_instance['width']); |
|
109 | + $instance['heigh'] = ($new_instance['heigh']); |
|
110 | + $instance['maptype'] = ($new_instance['maptype']); |
|
111 | + $instance['zoom'] = ($new_instance['zoom']); |
|
112 | + $instance['autozoom'] = isset($new_instance['autozoom']) ? $new_instance['autozoom'] : ''; |
|
113 | + $instance['child_collapse'] = isset($new_instance['child_collapse']) ? ($new_instance['child_collapse']) : ''; |
|
114 | + $instance['scrollwheel'] = isset($new_instance['scrollwheel']) ? ($new_instance['scrollwheel']) : ''; |
|
115 | 115 | |
116 | - return $instance; |
|
117 | - } |
|
116 | + return $instance; |
|
117 | + } |
|
118 | 118 | |
119 | 119 | /** |
120 | 120 | * Back-end home page map widget settings form. |
121 | 121 | * |
122 | 122 | * @since 1.0.0 |
123 | - * @since 1.5.1 Declare function public. |
|
123 | + * @since 1.5.1 Declare function public. |
|
124 | 124 | * |
125 | 125 | * @param array $instance Previously saved values from database. |
126 | 126 | */ |
127 | - public function form($instance) |
|
128 | - { |
|
129 | - //widgetform in backend |
|
127 | + public function form($instance) |
|
128 | + { |
|
129 | + //widgetform in backend |
|
130 | 130 | |
131 | - $instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'child_collapse' => '0', 'scrollwheel' => '0')); |
|
132 | - $width = strip_tags($instance['width']); |
|
133 | - $heigh = strip_tags($instance['heigh']); |
|
134 | - $maptype = strip_tags($instance['maptype']); |
|
135 | - $zoom = strip_tags($instance['zoom']); |
|
136 | - $autozoom = strip_tags($instance['autozoom']); |
|
137 | - $child_collapse = strip_tags($instance['child_collapse']); |
|
138 | - $scrollwheel = strip_tags($instance['scrollwheel']); |
|
139 | - ?> |
|
131 | + $instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'child_collapse' => '0', 'scrollwheel' => '0')); |
|
132 | + $width = strip_tags($instance['width']); |
|
133 | + $heigh = strip_tags($instance['heigh']); |
|
134 | + $maptype = strip_tags($instance['maptype']); |
|
135 | + $zoom = strip_tags($instance['zoom']); |
|
136 | + $autozoom = strip_tags($instance['autozoom']); |
|
137 | + $child_collapse = strip_tags($instance['child_collapse']); |
|
138 | + $scrollwheel = strip_tags($instance['scrollwheel']); |
|
139 | + ?> |
|
140 | 140 | |
141 | 141 | <p> |
142 | 142 | <label |
@@ -165,14 +165,14 @@ discard block |
||
165 | 165 | name="<?php echo $this->get_field_name('maptype'); ?>"> |
166 | 166 | |
167 | 167 | <option <?php if (isset($maptype) && $maptype == 'ROADMAP') { |
168 | - echo 'selected="selected"'; |
|
169 | - } ?> value="ROADMAP"><?php _e('Road Map', 'geodirectory'); ?></option> |
|
168 | + echo 'selected="selected"'; |
|
169 | + } ?> value="ROADMAP"><?php _e('Road Map', 'geodirectory'); ?></option> |
|
170 | 170 | <option <?php if (isset($maptype) && $maptype == 'SATELLITE') { |
171 | - echo 'selected="selected"'; |
|
172 | - } ?> value="SATELLITE"><?php _e('Satellite Map', 'geodirectory'); ?></option> |
|
171 | + echo 'selected="selected"'; |
|
172 | + } ?> value="SATELLITE"><?php _e('Satellite Map', 'geodirectory'); ?></option> |
|
173 | 173 | <option <?php if (isset($maptype) && $maptype == 'HYBRID') { |
174 | - echo 'selected="selected"'; |
|
175 | - } ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option> |
|
174 | + echo 'selected="selected"'; |
|
175 | + } ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option> |
|
176 | 176 | <option <?php selected($maptype, 'TERRAIN');?> |
177 | 177 | value="TERRAIN"><?php _e('Terrain Map', 'geodirectory'); ?></option> |
178 | 178 | </select> |
@@ -180,8 +180,8 @@ discard block |
||
180 | 180 | </p> |
181 | 181 | |
182 | 182 | <?php |
183 | - $map_zoom_level = geodir_map_zoom_level(); |
|
184 | - ?> |
|
183 | + $map_zoom_level = geodir_map_zoom_level(); |
|
184 | + ?> |
|
185 | 185 | |
186 | 186 | <p> |
187 | 187 | <label |
@@ -190,14 +190,14 @@ discard block |
||
190 | 190 | <select class="widefat" id="<?php echo $this->get_field_id('zoom'); ?>" |
191 | 191 | name="<?php echo $this->get_field_name('zoom'); ?>"> <?php |
192 | 192 | |
193 | - foreach ($map_zoom_level as $level) { |
|
194 | - $selected = ''; |
|
195 | - if ($level == $zoom) |
|
196 | - $selected = 'selected="selected"'; |
|
193 | + foreach ($map_zoom_level as $level) { |
|
194 | + $selected = ''; |
|
195 | + if ($level == $zoom) |
|
196 | + $selected = 'selected="selected"'; |
|
197 | 197 | |
198 | - echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>'; |
|
198 | + echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>'; |
|
199 | 199 | |
200 | - } ?> |
|
200 | + } ?> |
|
201 | 201 | |
202 | 202 | </select> |
203 | 203 | </label> |
@@ -210,8 +210,8 @@ discard block |
||
210 | 210 | : |
211 | 211 | <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('autozoom'); ?>" |
212 | 212 | name="<?php echo $this->get_field_name('autozoom'); ?>"<?php if ($autozoom) { |
213 | - echo 'checked="checked"'; |
|
214 | - } ?> /></label> |
|
213 | + echo 'checked="checked"'; |
|
214 | + } ?> /></label> |
|
215 | 215 | </p> |
216 | 216 | |
217 | 217 | <p> |
@@ -235,17 +235,17 @@ discard block |
||
235 | 235 | </p> |
236 | 236 | |
237 | 237 | <?php |
238 | - } |
|
238 | + } |
|
239 | 239 | |
240 | - /** |
|
240 | + /** |
|
241 | 241 | * Adds the javascript in the footer for home page map widget. |
242 | 242 | * |
243 | 243 | * @since 1.0.0 |
244 | - * @since 1.5.1 Declare function public. |
|
244 | + * @since 1.5.1 Declare function public. |
|
245 | 245 | */ |
246 | - public function geodir_home_map_add_script() |
|
247 | - { |
|
248 | - ?> |
|
246 | + public function geodir_home_map_add_script() |
|
247 | + { |
|
248 | + ?> |
|
249 | 249 | <script type="text/javascript"> |
250 | 250 | jQuery(document).ready(function () { |
251 | 251 | geoDirMapSlide(); |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | } |
319 | 319 | </script> |
320 | 320 | <?php |
321 | - } |
|
321 | + } |
|
322 | 322 | } // class geodir_homepage_map |
323 | 323 | |
324 | 324 | register_widget('geodir_homepage_map'); |
@@ -721,7 +721,7 @@ discard block |
||
721 | 721 | * @param int $post_id The post ID. |
722 | 722 | * @param string $postmeta Detail table column name. |
723 | 723 | * @param string $meta_value Detail table column value. |
724 | - * @return void|bool |
|
724 | + * @return null|false |
|
725 | 725 | */ |
726 | 726 | function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
727 | 727 | { |
@@ -775,7 +775,7 @@ discard block |
||
775 | 775 | * @param string $postmeta Detail table column name. |
776 | 776 | * @todo check if this is depreciated |
777 | 777 | * @todo Fix unknown variable mval |
778 | - * @return bool |
|
778 | + * @return boolean|null |
|
779 | 779 | */ |
780 | 780 | function geodir_delete_post_meta($post_id, $postmeta) |
781 | 781 | { |
@@ -2124,7 +2124,7 @@ discard block |
||
2124 | 2124 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
2125 | 2125 | * @param int $deleted_postid The post ID. |
2126 | 2126 | * @param bool $force Optional. Do you want to force delete it? Default: false. |
2127 | - * @return bool|void |
|
2127 | + * @return null|false |
|
2128 | 2128 | */ |
2129 | 2129 | function geodir_delete_listing_info($deleted_postid, $force = false) |
2130 | 2130 | { |
@@ -2693,7 +2693,7 @@ discard block |
||
2693 | 2693 | * @since 1.0.0 |
2694 | 2694 | * @package GeoDirectory |
2695 | 2695 | * @global object $current_user Current user object. |
2696 | - * @param int|string $listing_id The post ID. |
|
2696 | + * @param integer $listing_id The post ID. |
|
2697 | 2697 | * @param bool $exclude_admin Optional. Do you want to exclude admin from the check?. Default true. |
2698 | 2698 | * @return bool |
2699 | 2699 | */ |
@@ -21,12 +21,13 @@ discard block |
||
21 | 21 | { |
22 | 22 | |
23 | 23 | $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy); |
24 | - if (!empty($post_cat_ids)) |
|
25 | - $post_cat_array = explode(",", trim($post_cat_ids, ",")); |
|
24 | + if (!empty($post_cat_ids)) { |
|
25 | + $post_cat_array = explode(",", trim($post_cat_ids, ",")); |
|
26 | + } |
|
26 | 27 | |
27 | 28 | if (!isset($default_cat) || empty($default_cat)) { |
28 | 29 | $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
29 | - }else{ |
|
30 | + } else{ |
|
30 | 31 | if(!is_int($default_cat)){ |
31 | 32 | $category = get_term_by('name', $default_cat, $taxonomy); |
32 | 33 | if(isset($category->term_id)){ |
@@ -384,8 +385,9 @@ discard block |
||
384 | 385 | } elseif (trim($type) == 'file') { |
385 | 386 | if (isset($request_info[$name])) { |
386 | 387 | $request_files = array(); |
387 | - if ($request_info[$name] != '') |
|
388 | - $request_files = explode(",", $request_info[$name]); |
|
388 | + if ($request_info[$name] != '') { |
|
389 | + $request_files = explode(",", $request_info[$name]); |
|
390 | + } |
|
389 | 391 | |
390 | 392 | $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
391 | 393 | geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
@@ -412,7 +414,7 @@ discard block |
||
412 | 414 | |
413 | 415 | $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; |
414 | 416 | |
415 | - }else{ |
|
417 | + } else{ |
|
416 | 418 | $post_htmlvar_value = $request_info[$name]; |
417 | 419 | } |
418 | 420 | |
@@ -452,15 +454,17 @@ discard block |
||
452 | 454 | |
453 | 455 | foreach ($request_info['post_category'] as $taxonomy => $cat) { |
454 | 456 | |
455 | - if ($dummy) |
|
456 | - $post_category = $cat; |
|
457 | - else { |
|
457 | + if ($dummy) { |
|
458 | + $post_category = $cat; |
|
459 | + } else { |
|
458 | 460 | |
459 | - if (!is_array($cat) && strstr($cat, ',')) |
|
460 | - $cat = explode(',', $cat); |
|
461 | + if (!is_array($cat) && strstr($cat, ',')) { |
|
462 | + $cat = explode(',', $cat); |
|
463 | + } |
|
461 | 464 | |
462 | - if (!empty($cat) && is_array($cat)) |
|
463 | - $post_category = array_map('intval', $cat); |
|
465 | + if (!empty($cat) && is_array($cat)) { |
|
466 | + $post_category = array_map('intval', $cat); |
|
467 | + } |
|
464 | 468 | } |
465 | 469 | |
466 | 470 | wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
@@ -478,11 +482,13 @@ discard block |
||
478 | 482 | if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) { |
479 | 483 | $post_tags = explode(",", $request_info['post_tags']); |
480 | 484 | } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) { |
481 | - if ($dummy) |
|
482 | - $post_tags = $request_info['post_tags']; |
|
485 | + if ($dummy) { |
|
486 | + $post_tags = $request_info['post_tags']; |
|
487 | + } |
|
483 | 488 | } else { |
484 | - if ($dummy) |
|
485 | - $post_tags = array($request_info['post_title']); |
|
489 | + if ($dummy) { |
|
490 | + $post_tags = array($request_info['post_title']); |
|
491 | + } |
|
486 | 492 | } |
487 | 493 | |
488 | 494 | if (is_array($post_tags)) { |
@@ -569,15 +575,17 @@ discard block |
||
569 | 575 | |
570 | 576 | global $wpdb, $plugin_prefix, $post, $post_info; |
571 | 577 | |
572 | - if ($post_id == '' && !empty($post)) |
|
573 | - $post_id = $post->ID; |
|
578 | + if ($post_id == '' && !empty($post)) { |
|
579 | + $post_id = $post->ID; |
|
580 | + } |
|
574 | 581 | |
575 | 582 | $post_type = get_post_type($post_id); |
576 | 583 | |
577 | 584 | $all_postypes = geodir_get_posttypes(); |
578 | 585 | |
579 | - if (!in_array($post_type, $all_postypes)) |
|
580 | - return false; |
|
586 | + if (!in_array($post_type, $all_postypes)) { |
|
587 | + return false; |
|
588 | + } |
|
581 | 589 | |
582 | 590 | $table = $plugin_prefix . $post_type . '_detail'; |
583 | 591 | |
@@ -737,8 +745,9 @@ discard block |
||
737 | 745 | do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id); |
738 | 746 | |
739 | 747 | return true; |
740 | - } else |
|
741 | - return false; |
|
748 | + } else { |
|
749 | + return false; |
|
750 | + } |
|
742 | 751 | |
743 | 752 | } |
744 | 753 | } |
@@ -792,8 +801,9 @@ discard block |
||
792 | 801 | } |
793 | 802 | |
794 | 803 | |
795 | - } else |
|
796 | - return false; |
|
804 | + } else { |
|
805 | + return false; |
|
806 | + } |
|
797 | 807 | } |
798 | 808 | } |
799 | 809 | |
@@ -824,8 +834,9 @@ discard block |
||
824 | 834 | $post_meta_set_query = ''; |
825 | 835 | |
826 | 836 | foreach ($postmeta as $mkey) { |
827 | - if ($mval != '') |
|
828 | - $post_meta_set_query .= $mkey . " = '', "; |
|
837 | + if ($mval != '') { |
|
838 | + $post_meta_set_query .= $mkey . " = '', "; |
|
839 | + } |
|
829 | 840 | } |
830 | 841 | |
831 | 842 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
@@ -859,8 +870,9 @@ discard block |
||
859 | 870 | return true; |
860 | 871 | } |
861 | 872 | |
862 | - } else |
|
863 | - return false; |
|
873 | + } else { |
|
874 | + return false; |
|
875 | + } |
|
864 | 876 | } |
865 | 877 | } |
866 | 878 | |
@@ -890,8 +902,9 @@ discard block |
||
890 | 902 | |
891 | 903 | $post_type = get_post_type($post_id); |
892 | 904 | |
893 | - if (!in_array($post_type, $all_postypes)) |
|
894 | - return false; |
|
905 | + if (!in_array($post_type, $all_postypes)) { |
|
906 | + return false; |
|
907 | + } |
|
895 | 908 | |
896 | 909 | $table = $plugin_prefix . $post_type . '_detail'; |
897 | 910 | |
@@ -1046,7 +1059,7 @@ discard block |
||
1046 | 1059 | if (isset($uploaded['error']) && empty($uploaded['error'])) { |
1047 | 1060 | $new_name = basename($uploaded['file']); |
1048 | 1061 | $uploaded_file = $uploaded; |
1049 | - }else{ |
|
1062 | + } else{ |
|
1050 | 1063 | print_r($uploaded);exit; |
1051 | 1064 | } |
1052 | 1065 | $external_img = false; |
@@ -1071,8 +1084,9 @@ discard block |
||
1071 | 1084 | $file_path = $curr_img_dir . '/' . $filename; |
1072 | 1085 | } |
1073 | 1086 | |
1074 | - if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
1075 | - unlink($img_path); |
|
1087 | + if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) { |
|
1088 | + unlink($img_path); |
|
1089 | + } |
|
1076 | 1090 | } |
1077 | 1091 | |
1078 | 1092 | if (!empty($uploaded_file)) { |
@@ -1101,8 +1115,9 @@ discard block |
||
1101 | 1115 | $attachment_set = ''; |
1102 | 1116 | |
1103 | 1117 | foreach ($attachment as $key => $val) { |
1104 | - if ($val != '') |
|
1105 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
1118 | + if ($val != '') { |
|
1119 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
1120 | + } |
|
1106 | 1121 | } |
1107 | 1122 | |
1108 | 1123 | $attachment_set = trim($attachment_set, ", "); |
@@ -1127,8 +1142,9 @@ discard block |
||
1127 | 1142 | ) |
1128 | 1143 | ); |
1129 | 1144 | |
1130 | - if ($menu_order == 1) |
|
1131 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1145 | + if ($menu_order == 1) { |
|
1146 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1147 | + } |
|
1132 | 1148 | |
1133 | 1149 | } |
1134 | 1150 | |
@@ -1169,8 +1185,9 @@ discard block |
||
1169 | 1185 | |
1170 | 1186 | $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files)); |
1171 | 1187 | |
1172 | - if (!empty($invalid_files)) |
|
1173 | - geodir_remove_attachments($invalid_files); |
|
1188 | + if (!empty($invalid_files)) { |
|
1189 | + geodir_remove_attachments($invalid_files); |
|
1190 | + } |
|
1174 | 1191 | } |
1175 | 1192 | |
1176 | 1193 | } |
@@ -1223,16 +1240,19 @@ discard block |
||
1223 | 1240 | function geodir_delete_directory($dirname) |
1224 | 1241 | { |
1225 | 1242 | $dir_handle = ''; |
1226 | - if (is_dir($dirname)) |
|
1227 | - $dir_handle = opendir($dirname); |
|
1228 | - if (!$dir_handle) |
|
1229 | - return false; |
|
1243 | + if (is_dir($dirname)) { |
|
1244 | + $dir_handle = opendir($dirname); |
|
1245 | + } |
|
1246 | + if (!$dir_handle) { |
|
1247 | + return false; |
|
1248 | + } |
|
1230 | 1249 | while ($file = readdir($dir_handle)) { |
1231 | 1250 | if ($file != "." && $file != "..") { |
1232 | - if (!is_dir($dirname . "/" . $file)) |
|
1233 | - unlink($dirname . "/" . $file); |
|
1234 | - else |
|
1235 | - geodir_delete_directory($dirname . '/' . $file); |
|
1251 | + if (!is_dir($dirname . "/" . $file)) { |
|
1252 | + unlink($dirname . "/" . $file); |
|
1253 | + } else { |
|
1254 | + geodir_delete_directory($dirname . '/' . $file); |
|
1255 | + } |
|
1236 | 1256 | } |
1237 | 1257 | } |
1238 | 1258 | closedir($dir_handle); |
@@ -1261,8 +1281,9 @@ discard block |
||
1261 | 1281 | foreach ($postcurr_images as $postimg) { |
1262 | 1282 | $image_name_arr = explode('/', $postimg->src); |
1263 | 1283 | $filename = end($image_name_arr); |
1264 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
1265 | - unlink($uploads_dir . '/' . $filename); |
|
1284 | + if (file_exists($uploads_dir . '/' . $filename)) { |
|
1285 | + unlink($uploads_dir . '/' . $filename); |
|
1286 | + } |
|
1266 | 1287 | } |
1267 | 1288 | |
1268 | 1289 | } // endif |
@@ -1379,9 +1400,9 @@ discard block |
||
1379 | 1400 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
1380 | 1401 | } |
1381 | 1402 | |
1382 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
1383 | - $default_img = $default_catimg['src']; |
|
1384 | - elseif ($no_image) { |
|
1403 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) { |
|
1404 | + $default_img = $default_catimg['src']; |
|
1405 | + } elseif ($no_image) { |
|
1385 | 1406 | $default_img = get_option('geodir_listing_no_img'); |
1386 | 1407 | } |
1387 | 1408 | |
@@ -1413,10 +1434,13 @@ discard block |
||
1413 | 1434 | } |
1414 | 1435 | } |
1415 | 1436 | |
1416 | - if (!empty($img_arr)) |
|
1417 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1418 | - else |
|
1419 | - return false; |
|
1437 | + if (!empty($img_arr)) { |
|
1438 | + return (object)$img_arr; |
|
1439 | + } |
|
1440 | + //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1441 | + else { |
|
1442 | + return false; |
|
1443 | + } |
|
1420 | 1444 | } |
1421 | 1445 | } |
1422 | 1446 | |
@@ -1443,8 +1467,9 @@ discard block |
||
1443 | 1467 | echo $html; |
1444 | 1468 | } elseif (!empty($html)) { |
1445 | 1469 | return $html; |
1446 | - } else |
|
1447 | - return false; |
|
1470 | + } else { |
|
1471 | + return false; |
|
1472 | + } |
|
1448 | 1473 | } |
1449 | 1474 | } |
1450 | 1475 | |
@@ -1472,8 +1497,9 @@ discard block |
||
1472 | 1497 | } |
1473 | 1498 | $not_featured = ''; |
1474 | 1499 | $sub_dir = ''; |
1475 | - if (!$add_featured) |
|
1476 | - $not_featured = " AND is_featured = 0 "; |
|
1500 | + if (!$add_featured) { |
|
1501 | + $not_featured = " AND is_featured = 0 "; |
|
1502 | + } |
|
1477 | 1503 | |
1478 | 1504 | $arrImages = $wpdb->get_results( |
1479 | 1505 | $wpdb->prepare( |
@@ -1494,8 +1520,9 @@ discard block |
||
1494 | 1520 | |
1495 | 1521 | $file_info = pathinfo($attechment->file); |
1496 | 1522 | |
1497 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
1498 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
1523 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
|
1524 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
1525 | + } |
|
1499 | 1526 | |
1500 | 1527 | $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
1501 | 1528 | $uploads_baseurl = $uploads['baseurl']; |
@@ -1547,9 +1574,9 @@ discard block |
||
1547 | 1574 | $default_img = ''; |
1548 | 1575 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
1549 | 1576 | $post_type = get_post_type($post_id); |
1550 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
1551 | - $default_img = $default_catimg['src']; |
|
1552 | - elseif ($no_images) { |
|
1577 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) { |
|
1578 | + $default_img = $default_catimg['src']; |
|
1579 | + } elseif ($no_images) { |
|
1553 | 1580 | $default_img = get_option('geodir_listing_no_img'); |
1554 | 1581 | } |
1555 | 1582 | |
@@ -1590,8 +1617,9 @@ discard block |
||
1590 | 1617 | * @param array $return_arr The array of image objects. |
1591 | 1618 | */ |
1592 | 1619 | return apply_filters('geodir_get_images_arr',$return_arr); |
1593 | - } else |
|
1594 | - return false; |
|
1620 | + } else { |
|
1621 | + return false; |
|
1622 | + } |
|
1595 | 1623 | } |
1596 | 1624 | } |
1597 | 1625 | } |
@@ -1654,8 +1682,9 @@ discard block |
||
1654 | 1682 | $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
1655 | 1683 | } else if ($image->width < ($max_size->h)) { |
1656 | 1684 | $width_per = round((($image->width / $max_size->w) * 100), 2); |
1657 | - } else |
|
1658 | - $width_per = 100; |
|
1685 | + } else { |
|
1686 | + $width_per = 100; |
|
1687 | + } |
|
1659 | 1688 | } |
1660 | 1689 | |
1661 | 1690 | if (is_admin() && !isset($_REQUEST['geodir_ajax'])){ |
@@ -1663,7 +1692,7 @@ discard block |
||
1663 | 1692 | } else { |
1664 | 1693 | if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){ |
1665 | 1694 | $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');" title="'.$image->title.'" aria-label="'.$image->title.'" ></div>'; |
1666 | - }else{ |
|
1695 | + } else{ |
|
1667 | 1696 | $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" title="'.$image->title.'" aria-label="'.$image->title.'"></div>'; |
1668 | 1697 | } |
1669 | 1698 | |
@@ -1675,8 +1704,9 @@ discard block |
||
1675 | 1704 | echo $html; |
1676 | 1705 | } elseif (!empty($html)) { |
1677 | 1706 | return $html; |
1678 | - } else |
|
1679 | - return false; |
|
1707 | + } else { |
|
1708 | + return false; |
|
1709 | + } |
|
1680 | 1710 | } |
1681 | 1711 | } |
1682 | 1712 | |
@@ -1714,8 +1744,9 @@ discard block |
||
1714 | 1744 | $post_obj = get_post($post_id); |
1715 | 1745 | |
1716 | 1746 | $cat_ids = array('0'); |
1717 | - if (is_array($tt_ids)) |
|
1718 | - $cat_ids = $tt_ids; |
|
1747 | + if (is_array($tt_ids)) { |
|
1748 | + $cat_ids = $tt_ids; |
|
1749 | + } |
|
1719 | 1750 | |
1720 | 1751 | |
1721 | 1752 | if (!empty($cat_ids)) { |
@@ -1772,8 +1803,9 @@ discard block |
||
1772 | 1803 | $json .= '}'; |
1773 | 1804 | |
1774 | 1805 | |
1775 | - if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
1776 | - $post_marker_json = $json; |
|
1806 | + if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) { |
|
1807 | + $post_marker_json = $json; |
|
1808 | + } |
|
1777 | 1809 | |
1778 | 1810 | |
1779 | 1811 | if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) { |
@@ -1804,10 +1836,13 @@ discard block |
||
1804 | 1836 | if (!empty($post_term) && is_array($post_term)) { |
1805 | 1837 | $categories = implode(',', $post_term); |
1806 | 1838 | |
1807 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
1839 | + if ($categories != '' && $categories != 0) { |
|
1840 | + $categories = ',' . $categories . ','; |
|
1841 | + } |
|
1808 | 1842 | |
1809 | - if (empty($post_marker_json)) |
|
1810 | - $post_marker_json = isset($json) ? $json : ''; |
|
1843 | + if (empty($post_marker_json)) { |
|
1844 | + $post_marker_json = isset($json) ? $json : ''; |
|
1845 | + } |
|
1811 | 1846 | |
1812 | 1847 | if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
1813 | 1848 | |
@@ -1846,8 +1881,9 @@ discard block |
||
1846 | 1881 | |
1847 | 1882 | } |
1848 | 1883 | |
1849 | - if ($default_category == '') |
|
1850 | - $default_category = $categories[0]; |
|
1884 | + if ($default_category == '') { |
|
1885 | + $default_category = $categories[0]; |
|
1886 | + } |
|
1851 | 1887 | |
1852 | 1888 | geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
1853 | 1889 | |
@@ -1994,7 +2030,7 @@ discard block |
||
1994 | 2030 | } ?>"><img alt="bubble image" style="max-height:50px;" |
1995 | 2031 | src="<?php echo $post_images[0]; ?>"/></a></div> |
1996 | 2032 | <?php |
1997 | - }else{ |
|
2033 | + } else{ |
|
1998 | 2034 | echo '<div class="geodir-bubble_image"></div>'; |
1999 | 2035 | } |
2000 | 2036 | } else { |
@@ -2002,7 +2038,7 @@ discard block |
||
2002 | 2038 | ?> |
2003 | 2039 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
2004 | 2040 | <?php |
2005 | - }else{ |
|
2041 | + } else{ |
|
2006 | 2042 | echo '<div class="geodir-bubble_image"></div>'; |
2007 | 2043 | } |
2008 | 2044 | } |
@@ -2244,8 +2280,9 @@ discard block |
||
2244 | 2280 | |
2245 | 2281 | $all_postypes = geodir_get_posttypes(); |
2246 | 2282 | |
2247 | - if (!in_array($post_type, $all_postypes)) |
|
2248 | - return false; |
|
2283 | + if (!in_array($post_type, $all_postypes)) { |
|
2284 | + return false; |
|
2285 | + } |
|
2249 | 2286 | |
2250 | 2287 | $table = $plugin_prefix . $post_type . '_detail'; |
2251 | 2288 | |
@@ -2532,8 +2569,9 @@ discard block |
||
2532 | 2569 | } |
2533 | 2570 | |
2534 | 2571 | $user_meta_data = ''; |
2535 | - if (isset($current_user->data->ID)) |
|
2536 | - $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
|
2572 | + if (isset($current_user->data->ID)) { |
|
2573 | + $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
|
2574 | + } |
|
2537 | 2575 | |
2538 | 2576 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) { |
2539 | 2577 | ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
@@ -2546,8 +2584,9 @@ discard block |
||
2546 | 2584 | |
2547 | 2585 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') { |
2548 | 2586 | $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
2549 | - } else |
|
2550 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
2587 | + } else { |
|
2588 | + $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
2589 | + } |
|
2551 | 2590 | |
2552 | 2591 | ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
2553 | 2592 | href="javascript:void(0);" |
@@ -2610,14 +2649,16 @@ discard block |
||
2610 | 2649 | WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where; |
2611 | 2650 | |
2612 | 2651 | $cat_post_count = $wpdb->get_var($count_query); |
2613 | - if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
2614 | - $cat_post_count = 0; |
|
2652 | + if (empty($cat_post_count) || is_wp_error($cat_post_count)) { |
|
2653 | + $cat_post_count = 0; |
|
2654 | + } |
|
2615 | 2655 | |
2616 | 2656 | return $cat_post_count; |
2617 | 2657 | |
2618 | - } else |
|
2619 | - |
|
2620 | - return $term->count; |
|
2658 | + } else { |
|
2659 | + |
|
2660 | + return $term->count; |
|
2661 | + } |
|
2621 | 2662 | } |
2622 | 2663 | return false; |
2623 | 2664 | |
@@ -2664,13 +2705,15 @@ discard block |
||
2664 | 2705 | return $length; |
2665 | 2706 | } |
2666 | 2707 | |
2667 | - if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) |
|
2668 | - $length = get_option('geodir_desc_word_limit'); |
|
2669 | - elseif (get_query_var('excerpt_length')) |
|
2670 | - $length = get_query_var('excerpt_length'); |
|
2708 | + if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) { |
|
2709 | + $length = get_option('geodir_desc_word_limit'); |
|
2710 | + } elseif (get_query_var('excerpt_length')) { |
|
2711 | + $length = get_query_var('excerpt_length'); |
|
2712 | + } |
|
2671 | 2713 | |
2672 | - if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) |
|
2673 | - $length = get_option('geodir_author_desc_word_limit'); |
|
2714 | + if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) { |
|
2715 | + $length = get_option('geodir_author_desc_word_limit'); |
|
2716 | + } |
|
2674 | 2717 | |
2675 | 2718 | return $length; |
2676 | 2719 | } |
@@ -2811,10 +2854,11 @@ discard block |
||
2811 | 2854 | function geodir_lisiting_belong_to_user($listing_id, $user_id) |
2812 | 2855 | { |
2813 | 2856 | $listing_author_id = geodir_get_listing_author($listing_id); |
2814 | - if ($listing_author_id == $user_id) |
|
2815 | - return true; |
|
2816 | - else |
|
2817 | - return false; |
|
2857 | + if ($listing_author_id == $user_id) { |
|
2858 | + return true; |
|
2859 | + } else { |
|
2860 | + return false; |
|
2861 | + } |
|
2818 | 2862 | |
2819 | 2863 | } |
2820 | 2864 | |
@@ -2875,10 +2919,11 @@ discard block |
||
2875 | 2919 | $pattern = '/-\d+x\d+\./'; |
2876 | 2920 | preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
2877 | 2921 | |
2878 | - if (empty($matches)) |
|
2879 | - return ''; |
|
2880 | - else |
|
2881 | - return $file; |
|
2922 | + if (empty($matches)) { |
|
2923 | + return ''; |
|
2924 | + } else { |
|
2925 | + return $file; |
|
2926 | + } |
|
2882 | 2927 | |
2883 | 2928 | } |
2884 | 2929 | |
@@ -2963,8 +3008,9 @@ discard block |
||
2963 | 3008 | } else { |
2964 | 3009 | //set_post_thumbnail($post_id,-1); |
2965 | 3010 | |
2966 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
2967 | - wp_delete_attachment($post_thumbnail_id); |
|
3011 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) { |
|
3012 | + wp_delete_attachment($post_thumbnail_id); |
|
3013 | + } |
|
2968 | 3014 | |
2969 | 3015 | } |
2970 | 3016 | } |
@@ -3049,8 +3095,9 @@ discard block |
||
3049 | 3095 | |
3050 | 3096 | global $wpdb; |
3051 | 3097 | |
3052 | - if ($listing_type == '') |
|
3053 | - $listing_type = 'gd_place'; |
|
3098 | + if ($listing_type == '') { |
|
3099 | + $listing_type = 'gd_place'; |
|
3100 | + } |
|
3054 | 3101 | |
3055 | 3102 | $fields_info = array(); |
3056 | 3103 | |
@@ -3073,8 +3120,9 @@ discard block |
||
3073 | 3120 | |
3074 | 3121 | $fields_info[$prefix . 'address'] = $data->field_type; |
3075 | 3122 | |
3076 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
3077 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
3123 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
3124 | + $fields_info[$prefix . 'zip'] = $data->field_type; |
|
3125 | + } |
|
3078 | 3126 | |
3079 | 3127 | } else { |
3080 | 3128 | |
@@ -3184,7 +3232,7 @@ discard block |
||
3184 | 3232 | $facebook_image = $upload_dir['baseurl'].$post->featured_image; |
3185 | 3233 | |
3186 | 3234 | } |
3187 | - }elseif(geodir_is_page('location')){// location page |
|
3235 | + } elseif(geodir_is_page('location')){// location page |
|
3188 | 3236 | if (function_exists('geodir_get_location_seo')) { |
3189 | 3237 | $seo = geodir_get_location_seo(); |
3190 | 3238 | if (isset($seo->seo_image) && $seo->seo_image) { |
@@ -3230,8 +3278,10 @@ discard block |
||
3230 | 3278 | function geodir_delete_map_cache(){ |
3231 | 3279 | $files = glob(realpath(dirname(__FILE__))."/map-functions/map-cache/*.json"); // get all file names |
3232 | 3280 | foreach($files as $file){ // iterate files |
3233 | - if(is_file($file)) |
|
3234 | - unlink($file); // delete file |
|
3281 | + if(is_file($file)) { |
|
3282 | + unlink($file); |
|
3283 | + } |
|
3284 | + // delete file |
|
3235 | 3285 | } |
3236 | 3286 | } |
3237 | 3287 |
@@ -20,492 +20,492 @@ discard block |
||
20 | 20 | function geodir_set_postcat_structure($post_id, $taxonomy, $default_cat = '', $category_str = '') |
21 | 21 | { |
22 | 22 | |
23 | - $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy); |
|
24 | - if (!empty($post_cat_ids)) |
|
25 | - $post_cat_array = explode(",", trim($post_cat_ids, ",")); |
|
26 | - |
|
27 | - if (!isset($default_cat) || empty($default_cat)) { |
|
28 | - $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
|
29 | - }else{ |
|
30 | - if(!is_int($default_cat)){ |
|
31 | - $category = get_term_by('name', $default_cat, $taxonomy); |
|
32 | - if(isset($category->term_id)){ |
|
33 | - $default_cat = $category->term_id; |
|
34 | - } |
|
35 | - } |
|
23 | + $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy); |
|
24 | + if (!empty($post_cat_ids)) |
|
25 | + $post_cat_array = explode(",", trim($post_cat_ids, ",")); |
|
26 | + |
|
27 | + if (!isset($default_cat) || empty($default_cat)) { |
|
28 | + $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
|
29 | + }else{ |
|
30 | + if(!is_int($default_cat)){ |
|
31 | + $category = get_term_by('name', $default_cat, $taxonomy); |
|
32 | + if(isset($category->term_id)){ |
|
33 | + $default_cat = $category->term_id; |
|
34 | + } |
|
35 | + } |
|
36 | 36 | |
37 | - } |
|
37 | + } |
|
38 | 38 | |
39 | 39 | |
40 | - geodir_save_post_meta($post_id, 'default_category', $default_cat); |
|
40 | + geodir_save_post_meta($post_id, 'default_category', $default_cat); |
|
41 | 41 | |
42 | - if (isset($category_str) && empty($category_str)) { |
|
42 | + if (isset($category_str) && empty($category_str)) { |
|
43 | 43 | |
44 | - $post_cat_str = ''; |
|
45 | - $post_categories = array(); |
|
46 | - if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) { |
|
47 | - $post_cat_str = implode(",y:#", $post_cat_array); |
|
48 | - $post_cat_str .= ",y:"; |
|
49 | - $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:')); |
|
50 | - } |
|
51 | - $post_categories[$taxonomy] = $post_cat_str; |
|
52 | - $category_str = $post_categories; |
|
53 | - } |
|
44 | + $post_cat_str = ''; |
|
45 | + $post_categories = array(); |
|
46 | + if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) { |
|
47 | + $post_cat_str = implode(",y:#", $post_cat_array); |
|
48 | + $post_cat_str .= ",y:"; |
|
49 | + $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:')); |
|
50 | + } |
|
51 | + $post_categories[$taxonomy] = $post_cat_str; |
|
52 | + $category_str = $post_categories; |
|
53 | + } |
|
54 | 54 | |
55 | - $change_cat_str = $category_str[$taxonomy]; |
|
55 | + $change_cat_str = $category_str[$taxonomy]; |
|
56 | 56 | |
57 | - $default_pos = strpos($change_cat_str, 'd:'); |
|
57 | + $default_pos = strpos($change_cat_str, 'd:'); |
|
58 | 58 | |
59 | - if ($default_pos === false) { |
|
59 | + if ($default_pos === false) { |
|
60 | 60 | |
61 | - $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
61 | + $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
62 | 62 | |
63 | - } |
|
63 | + } |
|
64 | 64 | |
65 | - $category_str[$taxonomy] = $change_cat_str; |
|
65 | + $category_str[$taxonomy] = $change_cat_str; |
|
66 | 66 | |
67 | - update_post_meta($post_id, 'post_categories', $category_str); |
|
67 | + update_post_meta($post_id, 'post_categories', $category_str); |
|
68 | 68 | |
69 | 69 | } |
70 | 70 | |
71 | 71 | |
72 | 72 | if (!function_exists('geodir_save_listing')) { |
73 | - /** |
|
74 | - * Saves listing in the database using given information. |
|
75 | - * |
|
76 | - * @since 1.0.0 |
|
77 | - * @since 1.5.4 New parameter $wp_error added. |
|
78 | - * @since 1.6.18 Admin use only date field should not lost value if saved by user - FIXED |
|
79 | - * @package GeoDirectory |
|
80 | - * @global object $wpdb WordPress Database object. |
|
81 | - * @global object $post The current post object. |
|
82 | - * @global object $current_user Current user object. |
|
83 | - * @global object $gd_session GeoDirectory Session object. |
|
84 | - * @param array $request_info { |
|
85 | - * Array of request info arguments. |
|
86 | - * |
|
87 | - * @type string $action Ajax action name. |
|
88 | - * @type string $geodir_ajax Ajax type. |
|
89 | - * @type string $ajax_action Ajax action. |
|
90 | - * @type string $listing_type Listing type. |
|
91 | - * @type string $pid Default Post ID. |
|
92 | - * @type string $preview Todo Desc needed. |
|
93 | - * @type string $add_listing_page_id Add listing page ID. |
|
94 | - * @type string $post_title Listing title. |
|
95 | - * @type string $post_desc Listing Description. |
|
96 | - * @type string $post_tags Listing tags. |
|
97 | - * @type array $cat_limit Category limit. |
|
98 | - * @type array $post_category Category IDs. |
|
99 | - * @type array $post_category_str Category string. |
|
100 | - * @type string $post_default_category Default category ID. |
|
101 | - * @type string $post_address Listing address. |
|
102 | - * @type string $geodir_location_add_listing_country_val Add listing country value. |
|
103 | - * @type string $post_country Listing country. |
|
104 | - * @type string $geodir_location_add_listing_region_val Add listing region value. |
|
105 | - * @type string $post_region Listing region. |
|
106 | - * @type string $geodir_location_add_listing_city_val Add listing city value. |
|
107 | - * @type string $post_city Listing city. |
|
108 | - * @type string $post_zip Listing zip. |
|
109 | - * @type string $post_latitude Listing latitude. |
|
110 | - * @type string $post_longitude Listing longitude. |
|
111 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
112 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
113 | - * @type string $geodir_timing Business timing info. |
|
114 | - * @type string $geodir_contact Contact number. |
|
115 | - * @type string $geodir_email Business contact email. |
|
116 | - * @type string $geodir_website Business website. |
|
117 | - * @type string $geodir_twitter Twitter link. |
|
118 | - * @type string $geodir_facebook Facebook link. |
|
119 | - * @type string $geodir_video Video link. |
|
120 | - * @type string $geodir_special_offers Special offers. |
|
121 | - * @type string $post_images Post image urls. |
|
122 | - * @type string $post_imagesimage_limit Post images limit. |
|
123 | - * @type string $post_imagestotImg Todo Desc needed. |
|
124 | - * @type string $geodir_accept_term_condition Has accepted terms and conditions?. |
|
125 | - * @type string $geodir_spamblocker Todo Desc needed. |
|
126 | - * @type string $geodir_filled_by_spam_bot Todo Desc needed. |
|
127 | - * |
|
128 | - * } |
|
129 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
130 | - * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false. |
|
131 | - * @return int|string|WP_Error Created post id or WP_Error on failure. |
|
132 | - */ |
|
133 | - function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false) |
|
134 | - { |
|
135 | - global $wpdb, $current_user, $gd_session; |
|
136 | - |
|
137 | - $last_post_id = ''; |
|
138 | - |
|
139 | - if ($gd_session->get('listing') && !$dummy) { |
|
140 | - $request_info = array(); |
|
141 | - $request_session = $gd_session->get('listing'); |
|
142 | - $request_info = array_merge($_REQUEST, $request_session); |
|
143 | - } else if (!$gd_session->get('listing') && !$dummy) { |
|
144 | - global $post; |
|
73 | + /** |
|
74 | + * Saves listing in the database using given information. |
|
75 | + * |
|
76 | + * @since 1.0.0 |
|
77 | + * @since 1.5.4 New parameter $wp_error added. |
|
78 | + * @since 1.6.18 Admin use only date field should not lost value if saved by user - FIXED |
|
79 | + * @package GeoDirectory |
|
80 | + * @global object $wpdb WordPress Database object. |
|
81 | + * @global object $post The current post object. |
|
82 | + * @global object $current_user Current user object. |
|
83 | + * @global object $gd_session GeoDirectory Session object. |
|
84 | + * @param array $request_info { |
|
85 | + * Array of request info arguments. |
|
86 | + * |
|
87 | + * @type string $action Ajax action name. |
|
88 | + * @type string $geodir_ajax Ajax type. |
|
89 | + * @type string $ajax_action Ajax action. |
|
90 | + * @type string $listing_type Listing type. |
|
91 | + * @type string $pid Default Post ID. |
|
92 | + * @type string $preview Todo Desc needed. |
|
93 | + * @type string $add_listing_page_id Add listing page ID. |
|
94 | + * @type string $post_title Listing title. |
|
95 | + * @type string $post_desc Listing Description. |
|
96 | + * @type string $post_tags Listing tags. |
|
97 | + * @type array $cat_limit Category limit. |
|
98 | + * @type array $post_category Category IDs. |
|
99 | + * @type array $post_category_str Category string. |
|
100 | + * @type string $post_default_category Default category ID. |
|
101 | + * @type string $post_address Listing address. |
|
102 | + * @type string $geodir_location_add_listing_country_val Add listing country value. |
|
103 | + * @type string $post_country Listing country. |
|
104 | + * @type string $geodir_location_add_listing_region_val Add listing region value. |
|
105 | + * @type string $post_region Listing region. |
|
106 | + * @type string $geodir_location_add_listing_city_val Add listing city value. |
|
107 | + * @type string $post_city Listing city. |
|
108 | + * @type string $post_zip Listing zip. |
|
109 | + * @type string $post_latitude Listing latitude. |
|
110 | + * @type string $post_longitude Listing longitude. |
|
111 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
112 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
113 | + * @type string $geodir_timing Business timing info. |
|
114 | + * @type string $geodir_contact Contact number. |
|
115 | + * @type string $geodir_email Business contact email. |
|
116 | + * @type string $geodir_website Business website. |
|
117 | + * @type string $geodir_twitter Twitter link. |
|
118 | + * @type string $geodir_facebook Facebook link. |
|
119 | + * @type string $geodir_video Video link. |
|
120 | + * @type string $geodir_special_offers Special offers. |
|
121 | + * @type string $post_images Post image urls. |
|
122 | + * @type string $post_imagesimage_limit Post images limit. |
|
123 | + * @type string $post_imagestotImg Todo Desc needed. |
|
124 | + * @type string $geodir_accept_term_condition Has accepted terms and conditions?. |
|
125 | + * @type string $geodir_spamblocker Todo Desc needed. |
|
126 | + * @type string $geodir_filled_by_spam_bot Todo Desc needed. |
|
127 | + * |
|
128 | + * } |
|
129 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
130 | + * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false. |
|
131 | + * @return int|string|WP_Error Created post id or WP_Error on failure. |
|
132 | + */ |
|
133 | + function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false) |
|
134 | + { |
|
135 | + global $wpdb, $current_user, $gd_session; |
|
136 | + |
|
137 | + $last_post_id = ''; |
|
138 | + |
|
139 | + if ($gd_session->get('listing') && !$dummy) { |
|
140 | + $request_info = array(); |
|
141 | + $request_session = $gd_session->get('listing'); |
|
142 | + $request_info = array_merge($_REQUEST, $request_session); |
|
143 | + } else if (!$gd_session->get('listing') && !$dummy) { |
|
144 | + global $post; |
|
145 | 145 | |
146 | - $gd_post = $post; |
|
147 | - if (!empty($gd_post) && is_array($gd_post)) { |
|
148 | - $gd_post = (object)$post; |
|
146 | + $gd_post = $post; |
|
147 | + if (!empty($gd_post) && is_array($gd_post)) { |
|
148 | + $gd_post = (object)$post; |
|
149 | 149 | |
150 | - // Fix WPML duplicate. |
|
151 | - if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) { |
|
152 | - return false; |
|
153 | - } |
|
154 | - } |
|
150 | + // Fix WPML duplicate. |
|
151 | + if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) { |
|
152 | + return false; |
|
153 | + } |
|
154 | + } |
|
155 | 155 | |
156 | - $request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
157 | - $request_info['post_title'] = $request_info['post_title']; |
|
158 | - $request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid'])); |
|
159 | - $request_info['post_desc'] = $request_info['content']; |
|
160 | - } else if (!$dummy) { |
|
161 | - return false; |
|
162 | - } |
|
163 | - |
|
164 | - /** |
|
165 | - * Filter the request_info array. |
|
166 | - * |
|
167 | - * You can use this filter to modify request_info array. |
|
168 | - * |
|
169 | - * @since 1.0.0 |
|
170 | - * @package GeoDirectory |
|
171 | - * @param array $request_info See {@see geodir_save_listing()} for accepted args. |
|
172 | - */ |
|
173 | - $request_info = apply_filters('geodir_action_get_request_info', $request_info); |
|
174 | - |
|
175 | - // Check if we need to save post location as new location |
|
176 | - $location_result = geodir_get_default_location(); |
|
177 | - |
|
178 | - if ($location_result->location_id > 0) { |
|
179 | - if (isset($request_info['post_city']) && isset($request_info['post_region'])) { |
|
180 | - $request_info['post_location'] = array( |
|
181 | - 'city' => $request_info['post_city'], |
|
182 | - 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
183 | - 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
184 | - 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
185 | - 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
186 | - ); |
|
187 | - |
|
188 | - $post_location_info = $request_info['post_location']; |
|
189 | - |
|
190 | - if ($location_id = geodir_add_new_location($post_location_info)) { |
|
191 | - $post_location_id = $location_id; |
|
192 | - } |
|
193 | - } else { |
|
194 | - $post_location_id = $location_result->location_id; |
|
195 | - } |
|
196 | - } else { |
|
197 | - $post_location_id = $location_result->location_id; |
|
198 | - } |
|
199 | - |
|
200 | - if ($dummy) { |
|
201 | - $post_status = 'publish'; |
|
202 | - } else { |
|
203 | - $post_status = geodir_new_post_default_status(); |
|
204 | - } |
|
205 | - |
|
206 | - if (isset($request_info['pid']) && $request_info['pid'] != '') { |
|
207 | - $post_status = get_post_status($request_info['pid']); |
|
208 | - } |
|
209 | - |
|
210 | - /* fix change of slug on every title edit */ |
|
211 | - if (!isset($request_info['post_name'])) { |
|
212 | - $request_info['post_name'] = $request_info['post_title']; |
|
213 | - |
|
214 | - if (!empty($request_info['pid'])) { |
|
215 | - $post_info = get_post($request_info['pid']); |
|
216 | - |
|
217 | - if (!empty($post_info) && isset($post_info->post_name)) { |
|
218 | - $request_info['post_name'] = $post_info->post_name; |
|
219 | - } |
|
220 | - } |
|
221 | - } |
|
222 | - |
|
223 | - $post = array( |
|
224 | - 'post_content' => $request_info['post_desc'], |
|
225 | - 'post_status' => $post_status, |
|
226 | - 'post_title' => $request_info['post_title'], |
|
227 | - 'post_name' => $request_info['post_name'], |
|
228 | - 'post_type' => $request_info['listing_type'] |
|
229 | - ); |
|
230 | - |
|
231 | - /** |
|
232 | - * Called before a listing is saved to the database. |
|
233 | - * |
|
234 | - * @since 1.0.0 |
|
235 | - * @param object $post The post object. |
|
236 | - */ |
|
237 | - do_action_ref_array('geodir_before_save_listing', $post); |
|
156 | + $request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
157 | + $request_info['post_title'] = $request_info['post_title']; |
|
158 | + $request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid'])); |
|
159 | + $request_info['post_desc'] = $request_info['content']; |
|
160 | + } else if (!$dummy) { |
|
161 | + return false; |
|
162 | + } |
|
163 | + |
|
164 | + /** |
|
165 | + * Filter the request_info array. |
|
166 | + * |
|
167 | + * You can use this filter to modify request_info array. |
|
168 | + * |
|
169 | + * @since 1.0.0 |
|
170 | + * @package GeoDirectory |
|
171 | + * @param array $request_info See {@see geodir_save_listing()} for accepted args. |
|
172 | + */ |
|
173 | + $request_info = apply_filters('geodir_action_get_request_info', $request_info); |
|
174 | + |
|
175 | + // Check if we need to save post location as new location |
|
176 | + $location_result = geodir_get_default_location(); |
|
177 | + |
|
178 | + if ($location_result->location_id > 0) { |
|
179 | + if (isset($request_info['post_city']) && isset($request_info['post_region'])) { |
|
180 | + $request_info['post_location'] = array( |
|
181 | + 'city' => $request_info['post_city'], |
|
182 | + 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
183 | + 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
184 | + 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
185 | + 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
186 | + ); |
|
187 | + |
|
188 | + $post_location_info = $request_info['post_location']; |
|
189 | + |
|
190 | + if ($location_id = geodir_add_new_location($post_location_info)) { |
|
191 | + $post_location_id = $location_id; |
|
192 | + } |
|
193 | + } else { |
|
194 | + $post_location_id = $location_result->location_id; |
|
195 | + } |
|
196 | + } else { |
|
197 | + $post_location_id = $location_result->location_id; |
|
198 | + } |
|
238 | 199 | |
239 | - $send_post_submit_mail = false; |
|
200 | + if ($dummy) { |
|
201 | + $post_status = 'publish'; |
|
202 | + } else { |
|
203 | + $post_status = geodir_new_post_default_status(); |
|
204 | + } |
|
240 | 205 | |
241 | - // unhook this function so it doesn't loop infinitely |
|
242 | - remove_action('save_post', 'geodir_post_information_save',10,2); |
|
206 | + if (isset($request_info['pid']) && $request_info['pid'] != '') { |
|
207 | + $post_status = get_post_status($request_info['pid']); |
|
208 | + } |
|
243 | 209 | |
244 | - if (isset($request_info['pid']) && $request_info['pid'] != '') { |
|
245 | - $post['ID'] = $request_info['pid']; |
|
210 | + /* fix change of slug on every title edit */ |
|
211 | + if (!isset($request_info['post_name'])) { |
|
212 | + $request_info['post_name'] = $request_info['post_title']; |
|
246 | 213 | |
247 | - $last_post_id = wp_update_post($post, $wp_error); |
|
248 | - } else { |
|
249 | - $last_post_id = wp_insert_post($post, $wp_error); |
|
214 | + if (!empty($request_info['pid'])) { |
|
215 | + $post_info = get_post($request_info['pid']); |
|
250 | 216 | |
251 | - if (!$dummy && $last_post_id) { |
|
252 | - $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email) |
|
253 | - //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID); |
|
254 | - } |
|
255 | - } |
|
217 | + if (!empty($post_info) && isset($post_info->post_name)) { |
|
218 | + $request_info['post_name'] = $post_info->post_name; |
|
219 | + } |
|
220 | + } |
|
221 | + } |
|
222 | + |
|
223 | + $post = array( |
|
224 | + 'post_content' => $request_info['post_desc'], |
|
225 | + 'post_status' => $post_status, |
|
226 | + 'post_title' => $request_info['post_title'], |
|
227 | + 'post_name' => $request_info['post_name'], |
|
228 | + 'post_type' => $request_info['listing_type'] |
|
229 | + ); |
|
230 | + |
|
231 | + /** |
|
232 | + * Called before a listing is saved to the database. |
|
233 | + * |
|
234 | + * @since 1.0.0 |
|
235 | + * @param object $post The post object. |
|
236 | + */ |
|
237 | + do_action_ref_array('geodir_before_save_listing', $post); |
|
238 | + |
|
239 | + $send_post_submit_mail = false; |
|
240 | + |
|
241 | + // unhook this function so it doesn't loop infinitely |
|
242 | + remove_action('save_post', 'geodir_post_information_save',10,2); |
|
243 | + |
|
244 | + if (isset($request_info['pid']) && $request_info['pid'] != '') { |
|
245 | + $post['ID'] = $request_info['pid']; |
|
246 | + |
|
247 | + $last_post_id = wp_update_post($post, $wp_error); |
|
248 | + } else { |
|
249 | + $last_post_id = wp_insert_post($post, $wp_error); |
|
250 | + |
|
251 | + if (!$dummy && $last_post_id) { |
|
252 | + $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email) |
|
253 | + //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID); |
|
254 | + } |
|
255 | + } |
|
256 | 256 | |
257 | - if ($wp_error && is_wp_error($last_post_id)) { |
|
258 | - return $last_post_id; // Return WP_Error on save failure. |
|
259 | - } |
|
257 | + if ($wp_error && is_wp_error($last_post_id)) { |
|
258 | + return $last_post_id; // Return WP_Error on save failure. |
|
259 | + } |
|
260 | 260 | |
261 | - if (!$last_post_id) { |
|
262 | - return false; // Save failure. |
|
263 | - } |
|
261 | + if (!$last_post_id) { |
|
262 | + return false; // Save failure. |
|
263 | + } |
|
264 | 264 | |
265 | - // re-hook this function |
|
266 | - add_action('save_post', 'geodir_post_information_save',10,2); |
|
265 | + // re-hook this function |
|
266 | + add_action('save_post', 'geodir_post_information_save',10,2); |
|
267 | 267 | |
268 | - $post_tags = ''; |
|
269 | - if (!isset($request_info['post_tags'])) { |
|
268 | + $post_tags = ''; |
|
269 | + if (!isset($request_info['post_tags'])) { |
|
270 | 270 | |
271 | - $post_type = $request_info['listing_type']; |
|
272 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names'))); |
|
271 | + $post_type = $request_info['listing_type']; |
|
272 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names'))); |
|
273 | 273 | |
274 | - } |
|
274 | + } |
|
275 | 275 | |
276 | - $gd_post_info = array( |
|
277 | - "post_title" => $request_info['post_title'], |
|
278 | - "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
279 | - "post_status" => $post_status, |
|
280 | - "post_location_id" => $post_location_id, |
|
281 | - "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
282 | - "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
283 | - "submit_time" => time(), |
|
284 | - "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
285 | - ); |
|
276 | + $gd_post_info = array( |
|
277 | + "post_title" => $request_info['post_title'], |
|
278 | + "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
279 | + "post_status" => $post_status, |
|
280 | + "post_location_id" => $post_location_id, |
|
281 | + "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
282 | + "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
283 | + "submit_time" => time(), |
|
284 | + "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
285 | + ); |
|
286 | 286 | |
287 | - $payment_info = array(); |
|
288 | - $package_info = array(); |
|
287 | + $payment_info = array(); |
|
288 | + $package_info = array(); |
|
289 | 289 | |
290 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
290 | + $package_info = (array)geodir_post_package_info($package_info, $post); |
|
291 | 291 | |
292 | - $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
292 | + $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
293 | 293 | |
294 | - if (!empty($package_info) && !$post_package_id) { |
|
295 | - if (isset($package_info['days']) && $package_info['days'] != 0) { |
|
296 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days")); |
|
297 | - } else { |
|
298 | - $payment_info['expire_date'] = 'Never'; |
|
299 | - } |
|
294 | + if (!empty($package_info) && !$post_package_id) { |
|
295 | + if (isset($package_info['days']) && $package_info['days'] != 0) { |
|
296 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days")); |
|
297 | + } else { |
|
298 | + $payment_info['expire_date'] = 'Never'; |
|
299 | + } |
|
300 | 300 | |
301 | - $payment_info['package_id'] = $package_info['pid']; |
|
302 | - $payment_info['alive_days'] = $package_info['days']; |
|
303 | - $payment_info['is_featured'] = $package_info['is_featured']; |
|
301 | + $payment_info['package_id'] = $package_info['pid']; |
|
302 | + $payment_info['alive_days'] = $package_info['days']; |
|
303 | + $payment_info['is_featured'] = $package_info['is_featured']; |
|
304 | 304 | |
305 | - $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
306 | - } |
|
305 | + $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
306 | + } |
|
307 | 307 | |
308 | - $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']); |
|
308 | + $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']); |
|
309 | 309 | |
310 | - foreach ($custom_metaboxes as $key => $val): |
|
310 | + foreach ($custom_metaboxes as $key => $val): |
|
311 | 311 | |
312 | - $name = $val['name']; |
|
313 | - $type = $val['type']; |
|
314 | - $extrafields = $val['extra_fields']; |
|
312 | + $name = $val['name']; |
|
313 | + $type = $val['type']; |
|
314 | + $extrafields = $val['extra_fields']; |
|
315 | 315 | |
316 | - if (trim($type) == 'address') { |
|
317 | - $prefix = $name . '_'; |
|
318 | - $address = $prefix . 'address'; |
|
316 | + if (trim($type) == 'address') { |
|
317 | + $prefix = $name . '_'; |
|
318 | + $address = $prefix . 'address'; |
|
319 | 319 | |
320 | - if (isset($request_info[$address]) && $request_info[$address] != '') { |
|
321 | - $gd_post_info[$address] = wp_slash($request_info[$address]); |
|
322 | - } |
|
320 | + if (isset($request_info[$address]) && $request_info[$address] != '') { |
|
321 | + $gd_post_info[$address] = wp_slash($request_info[$address]); |
|
322 | + } |
|
323 | 323 | |
324 | - if ($extrafields != '') { |
|
325 | - $extrafields = unserialize($extrafields); |
|
324 | + if ($extrafields != '') { |
|
325 | + $extrafields = unserialize($extrafields); |
|
326 | 326 | |
327 | 327 | |
328 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') { |
|
328 | + if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') { |
|
329 | 329 | |
330 | - $location_result = geodir_get_default_location(); |
|
330 | + $location_result = geodir_get_default_location(); |
|
331 | 331 | |
332 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
333 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
334 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
332 | + $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
333 | + $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
334 | + $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
335 | 335 | |
336 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
336 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
337 | 337 | |
338 | - } else { |
|
338 | + } else { |
|
339 | 339 | |
340 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
341 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
342 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
340 | + $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
341 | + $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
342 | + $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
343 | 343 | |
344 | - //----------set post locations when import dummy data------- |
|
345 | - $location_result = geodir_get_default_location(); |
|
344 | + //----------set post locations when import dummy data------- |
|
345 | + $location_result = geodir_get_default_location(); |
|
346 | 346 | |
347 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
348 | - //----------------------------------------------------------------- |
|
347 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
348 | + //----------------------------------------------------------------- |
|
349 | 349 | |
350 | - } |
|
350 | + } |
|
351 | 351 | |
352 | 352 | |
353 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) { |
|
354 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
355 | - } |
|
353 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) { |
|
354 | + $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
355 | + } |
|
356 | 356 | |
357 | 357 | |
358 | - if (isset($extrafields['show_map']) && $extrafields['show_map']) { |
|
358 | + if (isset($extrafields['show_map']) && $extrafields['show_map']) { |
|
359 | 359 | |
360 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') { |
|
361 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
362 | - } |
|
360 | + if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') { |
|
361 | + $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
362 | + } |
|
363 | 363 | |
364 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') { |
|
365 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
366 | - } |
|
364 | + if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') { |
|
365 | + $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
366 | + } |
|
367 | 367 | |
368 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') { |
|
369 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
370 | - } |
|
368 | + if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') { |
|
369 | + $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
370 | + } |
|
371 | 371 | |
372 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') { |
|
373 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
374 | - } |
|
372 | + if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') { |
|
373 | + $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
374 | + } |
|
375 | 375 | |
376 | - } |
|
376 | + } |
|
377 | 377 | |
378 | - // show lat lng |
|
379 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) { |
|
380 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
381 | - } |
|
382 | - } |
|
378 | + // show lat lng |
|
379 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) { |
|
380 | + $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
381 | + } |
|
382 | + } |
|
383 | 383 | |
384 | - } elseif (trim($type) == 'file') { |
|
385 | - if (isset($request_info[$name])) { |
|
386 | - $request_files = array(); |
|
387 | - if ($request_info[$name] != '') |
|
388 | - $request_files = explode(",", $request_info[$name]); |
|
384 | + } elseif (trim($type) == 'file') { |
|
385 | + if (isset($request_info[$name])) { |
|
386 | + $request_files = array(); |
|
387 | + if ($request_info[$name] != '') |
|
388 | + $request_files = explode(",", $request_info[$name]); |
|
389 | 389 | |
390 | - $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
391 | - geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
392 | - } |
|
393 | - } elseif (trim($type) == 'datepicker') { |
|
394 | - if (isset($request_info[$name])) { |
|
395 | - $datetime = ''; |
|
390 | + $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
391 | + geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
392 | + } |
|
393 | + } elseif (trim($type) == 'datepicker') { |
|
394 | + if (isset($request_info[$name])) { |
|
395 | + $datetime = ''; |
|
396 | 396 | |
397 | - if (!empty($request_info[$name])) { |
|
398 | - $date_format = geodir_default_date_format(); |
|
399 | - if (isset($val['extra_fields']) && $val['extra_fields'] != '') { |
|
400 | - $extra_fields = unserialize($val['extra_fields']); |
|
401 | - $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
402 | - } |
|
403 | - |
|
404 | - // check if we need to change the format or not |
|
405 | - $date_format_len = strlen(str_replace(' ', '', $date_format)); |
|
406 | - if($date_format_len>5){// if greater then 5 then it's the old style format. |
|
397 | + if (!empty($request_info[$name])) { |
|
398 | + $date_format = geodir_default_date_format(); |
|
399 | + if (isset($val['extra_fields']) && $val['extra_fields'] != '') { |
|
400 | + $extra_fields = unserialize($val['extra_fields']); |
|
401 | + $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
402 | + } |
|
407 | 403 | |
408 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
409 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
404 | + // check if we need to change the format or not |
|
405 | + $date_format_len = strlen(str_replace(' ', '', $date_format)); |
|
406 | + if($date_format_len>5){// if greater then 5 then it's the old style format. |
|
410 | 407 | |
411 | - $date_format = str_replace($search, $replace, $date_format); |
|
408 | + $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
409 | + $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
412 | 410 | |
413 | - $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; |
|
411 | + $date_format = str_replace($search, $replace, $date_format); |
|
414 | 412 | |
415 | - }else{ |
|
416 | - $post_htmlvar_value = $request_info[$name]; |
|
417 | - } |
|
413 | + $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; |
|
418 | 414 | |
419 | - $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d |
|
420 | - $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated |
|
421 | - } |
|
415 | + }else{ |
|
416 | + $post_htmlvar_value = $request_info[$name]; |
|
417 | + } |
|
422 | 418 | |
423 | - $gd_post_info[$name] = $datetime; |
|
424 | - } |
|
425 | - } else if ($type == 'multiselect') { |
|
426 | - if (isset($request_info[$name])) { |
|
427 | - $gd_post_info[$name] = $request_info[$name]; |
|
428 | - } else { |
|
429 | - if (isset($request_info['gd_field_' . $name])) { |
|
430 | - $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
431 | - } |
|
432 | - } |
|
433 | - } else if (isset($request_info[$name])) { |
|
434 | - $gd_post_info[$name] = $request_info[$name]; |
|
435 | - } |
|
419 | + $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d |
|
420 | + $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated |
|
421 | + } |
|
436 | 422 | |
437 | - endforeach; |
|
423 | + $gd_post_info[$name] = $datetime; |
|
424 | + } |
|
425 | + } else if ($type == 'multiselect') { |
|
426 | + if (isset($request_info[$name])) { |
|
427 | + $gd_post_info[$name] = $request_info[$name]; |
|
428 | + } else { |
|
429 | + if (isset($request_info['gd_field_' . $name])) { |
|
430 | + $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
431 | + } |
|
432 | + } |
|
433 | + } else if (isset($request_info[$name])) { |
|
434 | + $gd_post_info[$name] = $request_info[$name]; |
|
435 | + } |
|
438 | 436 | |
439 | - if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') { |
|
440 | - $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
441 | - } |
|
437 | + endforeach; |
|
442 | 438 | |
443 | - // Save post detail info in detail table |
|
444 | - if (!empty($gd_post_info)) { |
|
445 | - geodir_save_post_info($last_post_id, $gd_post_info); |
|
446 | - } |
|
439 | + if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') { |
|
440 | + $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
441 | + } |
|
447 | 442 | |
443 | + // Save post detail info in detail table |
|
444 | + if (!empty($gd_post_info)) { |
|
445 | + geodir_save_post_info($last_post_id, $gd_post_info); |
|
446 | + } |
|
448 | 447 | |
449 | - // Set categories to the listing |
|
450 | - if (isset($request_info['post_category']) && !empty($request_info['post_category'])) { |
|
451 | - $post_category = array(); |
|
452 | 448 | |
453 | - foreach ($request_info['post_category'] as $taxonomy => $cat) { |
|
449 | + // Set categories to the listing |
|
450 | + if (isset($request_info['post_category']) && !empty($request_info['post_category'])) { |
|
451 | + $post_category = array(); |
|
454 | 452 | |
455 | - if ($dummy) |
|
456 | - $post_category = $cat; |
|
457 | - else { |
|
453 | + foreach ($request_info['post_category'] as $taxonomy => $cat) { |
|
458 | 454 | |
459 | - if (!is_array($cat) && strstr($cat, ',')) |
|
460 | - $cat = explode(',', $cat); |
|
455 | + if ($dummy) |
|
456 | + $post_category = $cat; |
|
457 | + else { |
|
461 | 458 | |
462 | - if (!empty($cat) && is_array($cat)) |
|
463 | - $post_category = array_map('intval', $cat); |
|
464 | - } |
|
459 | + if (!is_array($cat) && strstr($cat, ',')) |
|
460 | + $cat = explode(',', $cat); |
|
465 | 461 | |
466 | - wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
467 | - } |
|
462 | + if (!empty($cat) && is_array($cat)) |
|
463 | + $post_category = array_map('intval', $cat); |
|
464 | + } |
|
468 | 465 | |
469 | - $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
466 | + wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
467 | + } |
|
470 | 468 | |
471 | - $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
472 | - geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
469 | + $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
473 | 470 | |
474 | - } |
|
471 | + $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
472 | + geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
475 | 473 | |
476 | - $post_tags = ''; |
|
477 | - // Set tags to the listing |
|
478 | - if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) { |
|
479 | - $post_tags = explode(",", $request_info['post_tags']); |
|
480 | - } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) { |
|
481 | - if ($dummy) |
|
482 | - $post_tags = $request_info['post_tags']; |
|
483 | - } else { |
|
484 | - if ($dummy) |
|
485 | - $post_tags = array($request_info['post_title']); |
|
486 | - } |
|
474 | + } |
|
487 | 475 | |
488 | - if (is_array($post_tags)) { |
|
489 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
490 | - wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
491 | - } |
|
476 | + $post_tags = ''; |
|
477 | + // Set tags to the listing |
|
478 | + if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) { |
|
479 | + $post_tags = explode(",", $request_info['post_tags']); |
|
480 | + } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) { |
|
481 | + if ($dummy) |
|
482 | + $post_tags = $request_info['post_tags']; |
|
483 | + } else { |
|
484 | + if ($dummy) |
|
485 | + $post_tags = array($request_info['post_title']); |
|
486 | + } |
|
492 | 487 | |
488 | + if (is_array($post_tags)) { |
|
489 | + $taxonomy = $request_info['listing_type'] . '_tags'; |
|
490 | + wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
491 | + } |
|
493 | 492 | |
494 | - // Insert attachment |
|
495 | 493 | |
496 | - if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) { |
|
497 | - if (!$dummy) { |
|
498 | - $tmpimgArr = trim($request_info['post_images'], ","); |
|
499 | - $tmpimgArr = explode(",", $tmpimgArr); |
|
500 | - geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
501 | - } else{ |
|
502 | - geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
503 | - } |
|
494 | + // Insert attachment |
|
495 | + |
|
496 | + if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) { |
|
497 | + if (!$dummy) { |
|
498 | + $tmpimgArr = trim($request_info['post_images'], ","); |
|
499 | + $tmpimgArr = explode(",", $tmpimgArr); |
|
500 | + geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
501 | + } else{ |
|
502 | + geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
503 | + } |
|
504 | 504 | |
505 | 505 | |
506 | - } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') { |
|
506 | + } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') { |
|
507 | 507 | |
508 | - /* Delete Attachments |
|
508 | + /* Delete Attachments |
|
509 | 509 | $postcurr_images = geodir_get_images($last_post_id); |
510 | 510 | |
511 | 511 | $wpdb->query( |
@@ -521,34 +521,34 @@ discard block |
||
521 | 521 | geodir_save_post_info($last_post_id, $gd_post_featured_img); |
522 | 522 | */ |
523 | 523 | |
524 | - } |
|
524 | + } |
|
525 | 525 | |
526 | - geodir_remove_temp_images(); |
|
527 | - geodir_set_wp_featured_image($last_post_id); |
|
526 | + geodir_remove_temp_images(); |
|
527 | + geodir_set_wp_featured_image($last_post_id); |
|
528 | 528 | |
529 | - /** |
|
530 | - * Called after a listing is saved to the database and before any email have been sent. |
|
531 | - * |
|
532 | - * @since 1.0.0 |
|
533 | - * @param int $last_post_id The saved post ID. |
|
534 | - * @param array $request_info The post details in an array. |
|
535 | - * @see 'geodir_after_save_listinginfo' |
|
536 | - */ |
|
537 | - do_action('geodir_after_save_listing', $last_post_id, $request_info); |
|
529 | + /** |
|
530 | + * Called after a listing is saved to the database and before any email have been sent. |
|
531 | + * |
|
532 | + * @since 1.0.0 |
|
533 | + * @param int $last_post_id The saved post ID. |
|
534 | + * @param array $request_info The post details in an array. |
|
535 | + * @see 'geodir_after_save_listinginfo' |
|
536 | + */ |
|
537 | + do_action('geodir_after_save_listing', $last_post_id, $request_info); |
|
538 | 538 | |
539 | - //die; |
|
539 | + //die; |
|
540 | 540 | |
541 | - if ($send_post_submit_mail) { // if new post send out email |
|
542 | - $to_name = geodir_get_client_name($current_user->ID); |
|
543 | - geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID); |
|
544 | - } |
|
545 | - /* |
|
541 | + if ($send_post_submit_mail) { // if new post send out email |
|
542 | + $to_name = geodir_get_client_name($current_user->ID); |
|
543 | + geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID); |
|
544 | + } |
|
545 | + /* |
|
546 | 546 | * Unset the session so we don't loop. |
547 | 547 | */ |
548 | - $gd_session->un_set('listing'); |
|
549 | - return $last_post_id; |
|
548 | + $gd_session->un_set('listing'); |
|
549 | + return $last_post_id; |
|
550 | 550 | |
551 | - } |
|
551 | + } |
|
552 | 552 | |
553 | 553 | } |
554 | 554 | |
@@ -567,611 +567,611 @@ discard block |
||
567 | 567 | function geodir_get_post_info($post_id = '') |
568 | 568 | { |
569 | 569 | |
570 | - global $wpdb, $plugin_prefix, $post, $post_info; |
|
570 | + global $wpdb, $plugin_prefix, $post, $post_info; |
|
571 | 571 | |
572 | - if ($post_id == '' && !empty($post)) |
|
573 | - $post_id = $post->ID; |
|
572 | + if ($post_id == '' && !empty($post)) |
|
573 | + $post_id = $post->ID; |
|
574 | 574 | |
575 | - $post_type = get_post_type($post_id); |
|
575 | + $post_type = get_post_type($post_id); |
|
576 | 576 | |
577 | - $all_postypes = geodir_get_posttypes(); |
|
577 | + $all_postypes = geodir_get_posttypes(); |
|
578 | 578 | |
579 | - if (!in_array($post_type, $all_postypes)) |
|
580 | - return false; |
|
579 | + if (!in_array($post_type, $all_postypes)) |
|
580 | + return false; |
|
581 | 581 | |
582 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
582 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
583 | 583 | |
584 | - /** |
|
585 | - * Apply Filter to change Post info |
|
586 | - * |
|
587 | - * You can use this filter to change Post info. |
|
588 | - * |
|
589 | - * @since 1.0.0 |
|
590 | - * @package GeoDirectory |
|
591 | - */ |
|
592 | - $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd |
|
584 | + /** |
|
585 | + * Apply Filter to change Post info |
|
586 | + * |
|
587 | + * You can use this filter to change Post info. |
|
588 | + * |
|
589 | + * @since 1.0.0 |
|
590 | + * @package GeoDirectory |
|
591 | + */ |
|
592 | + $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd |
|
593 | 593 | WHERE p.ID = pd.post_id |
594 | 594 | AND pd.post_id = %d", $post_id)); |
595 | 595 | |
596 | - $post_detail = $wpdb->get_row($query); |
|
596 | + $post_detail = $wpdb->get_row($query); |
|
597 | 597 | |
598 | - return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
598 | + return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
599 | 599 | |
600 | 600 | } |
601 | 601 | |
602 | 602 | |
603 | 603 | if (!function_exists('geodir_save_post_info')) { |
604 | - /** |
|
605 | - * Saves post detail info in detail table. |
|
606 | - * |
|
607 | - * @since 1.0.0 |
|
608 | - * @package GeoDirectory |
|
609 | - * @global object $wpdb WordPress Database object. |
|
610 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
611 | - * @param int $post_id The post ID. |
|
612 | - * @param array $postinfo_array { |
|
613 | - * Post info that needs to be saved in detail table. |
|
614 | - * |
|
615 | - * @type string $post_title Listing title. |
|
616 | - * @type string $post_tags Listing tags. |
|
617 | - * @type string $post_status Listing post status. |
|
618 | - * @type string $post_location_id Listing location ID. |
|
619 | - * @type string $claimed Todo Desc needed. |
|
620 | - * @type string $businesses Todo Desc needed. |
|
621 | - * @type int $submit_time Submitted time in unix timestamp. |
|
622 | - * @type string $submit_ip Submitted IP. |
|
623 | - * @type string $expire_date Listing expiration date. |
|
624 | - * @type int $package_id Listing package ID. |
|
625 | - * @type int $alive_days Todo Desc needed. |
|
626 | - * @type int $is_featured Is this a featured listing?. |
|
627 | - * @type string $post_address Listing address. |
|
628 | - * @type string $post_city Listing city. |
|
629 | - * @type string $post_region Listing region. |
|
630 | - * @type string $post_country Listing country. |
|
631 | - * @type string $post_locations Listing locations. |
|
632 | - * @type string $post_zip Listing zip. |
|
633 | - * @type string $post_latitude Listing latitude. |
|
634 | - * @type string $post_longitude Listing longitude. |
|
635 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
636 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
637 | - * @type string $geodir_timing Business timing info. |
|
638 | - * @type string $geodir_contact Contact number. |
|
639 | - * @type string $geodir_email Business contact email. |
|
640 | - * @type string $geodir_website Business website. |
|
641 | - * @type string $geodir_twitter Twitter link. |
|
642 | - * @type string $geodir_facebook Facebook link. |
|
643 | - * @type string $geodir_video Video link. |
|
644 | - * @type string $geodir_special_offers Special offers. |
|
645 | - * |
|
646 | - * } |
|
647 | - * @return bool |
|
648 | - */ |
|
649 | - function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
650 | - { |
|
651 | - global $wpdb, $plugin_prefix; |
|
652 | - |
|
653 | - $post_type = get_post_type($post_id); |
|
654 | - |
|
655 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
656 | - |
|
657 | - /** |
|
658 | - * Filter to change Post info |
|
659 | - * |
|
660 | - * You can use this filter to change Post info. |
|
661 | - * |
|
662 | - * @since 1.0.0 |
|
663 | - * @package GeoDirectory |
|
664 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args. |
|
665 | - * @param int $post_id The post ID. |
|
666 | - */ |
|
667 | - $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id); |
|
604 | + /** |
|
605 | + * Saves post detail info in detail table. |
|
606 | + * |
|
607 | + * @since 1.0.0 |
|
608 | + * @package GeoDirectory |
|
609 | + * @global object $wpdb WordPress Database object. |
|
610 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
611 | + * @param int $post_id The post ID. |
|
612 | + * @param array $postinfo_array { |
|
613 | + * Post info that needs to be saved in detail table. |
|
614 | + * |
|
615 | + * @type string $post_title Listing title. |
|
616 | + * @type string $post_tags Listing tags. |
|
617 | + * @type string $post_status Listing post status. |
|
618 | + * @type string $post_location_id Listing location ID. |
|
619 | + * @type string $claimed Todo Desc needed. |
|
620 | + * @type string $businesses Todo Desc needed. |
|
621 | + * @type int $submit_time Submitted time in unix timestamp. |
|
622 | + * @type string $submit_ip Submitted IP. |
|
623 | + * @type string $expire_date Listing expiration date. |
|
624 | + * @type int $package_id Listing package ID. |
|
625 | + * @type int $alive_days Todo Desc needed. |
|
626 | + * @type int $is_featured Is this a featured listing?. |
|
627 | + * @type string $post_address Listing address. |
|
628 | + * @type string $post_city Listing city. |
|
629 | + * @type string $post_region Listing region. |
|
630 | + * @type string $post_country Listing country. |
|
631 | + * @type string $post_locations Listing locations. |
|
632 | + * @type string $post_zip Listing zip. |
|
633 | + * @type string $post_latitude Listing latitude. |
|
634 | + * @type string $post_longitude Listing longitude. |
|
635 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
636 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
637 | + * @type string $geodir_timing Business timing info. |
|
638 | + * @type string $geodir_contact Contact number. |
|
639 | + * @type string $geodir_email Business contact email. |
|
640 | + * @type string $geodir_website Business website. |
|
641 | + * @type string $geodir_twitter Twitter link. |
|
642 | + * @type string $geodir_facebook Facebook link. |
|
643 | + * @type string $geodir_video Video link. |
|
644 | + * @type string $geodir_special_offers Special offers. |
|
645 | + * |
|
646 | + * } |
|
647 | + * @return bool |
|
648 | + */ |
|
649 | + function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
650 | + { |
|
651 | + global $wpdb, $plugin_prefix; |
|
652 | + |
|
653 | + $post_type = get_post_type($post_id); |
|
654 | + |
|
655 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
656 | + |
|
657 | + /** |
|
658 | + * Filter to change Post info |
|
659 | + * |
|
660 | + * You can use this filter to change Post info. |
|
661 | + * |
|
662 | + * @since 1.0.0 |
|
663 | + * @package GeoDirectory |
|
664 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args. |
|
665 | + * @param int $post_id The post ID. |
|
666 | + */ |
|
667 | + $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id); |
|
668 | + |
|
669 | + $query_string_escaped = ''; |
|
670 | + $query_string_array = array(); |
|
671 | + |
|
672 | + if (!empty($postmeta) && $post_id) { |
|
673 | + |
|
674 | + $columns = $wpdb->get_col("show columns from $table"); |
|
675 | + foreach ($postmeta as $mkey => $mval) { |
|
676 | + if(in_array($mkey,$columns)) { |
|
677 | + if (is_array($mval)) { |
|
678 | + $mval = implode(",", $mval); |
|
679 | + } |
|
680 | + $query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above |
|
681 | + $query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare |
|
668 | 682 | |
669 | - $query_string_escaped = ''; |
|
670 | - $query_string_array = array(); |
|
683 | + } |
|
684 | + } |
|
671 | 685 | |
672 | - if (!empty($postmeta) && $post_id) { |
|
686 | + $query_string_escaped = trim($query_string_escaped, ", "); |
|
673 | 687 | |
674 | - $columns = $wpdb->get_col("show columns from $table"); |
|
675 | - foreach ($postmeta as $mkey => $mval) { |
|
676 | - if(in_array($mkey,$columns)) { |
|
677 | - if (is_array($mval)) { |
|
678 | - $mval = implode(",", $mval); |
|
679 | - } |
|
680 | - $query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above |
|
681 | - $query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare |
|
688 | + if (empty($query_string_array) || trim($query_string_escaped) == '') { |
|
689 | + return false; |
|
690 | + } |
|
682 | 691 | |
683 | - } |
|
684 | - } |
|
692 | + $query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array); |
|
685 | 693 | |
686 | - $query_string_escaped = trim($query_string_escaped, ", "); |
|
687 | 694 | |
688 | - if (empty($query_string_array) || trim($query_string_escaped) == '') { |
|
689 | - return false; |
|
690 | - } |
|
695 | + /** |
|
696 | + * Called before saving the listing info. |
|
697 | + * |
|
698 | + * @since 1.0.0 |
|
699 | + * @package GeoDirectory |
|
700 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args. |
|
701 | + * @param int $post_id The post ID. |
|
702 | + */ |
|
703 | + do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id); |
|
691 | 704 | |
692 | - $query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array); |
|
705 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
693 | 706 | |
707 | + $query_string_array[] = $post_id; |
|
708 | + $wpdb->query( |
|
709 | + $wpdb->prepare( |
|
710 | + "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d", |
|
711 | + $query_string_array |
|
712 | + ) |
|
713 | + ); |
|
694 | 714 | |
695 | - /** |
|
696 | - * Called before saving the listing info. |
|
697 | - * |
|
698 | - * @since 1.0.0 |
|
699 | - * @package GeoDirectory |
|
700 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args. |
|
701 | - * @param int $post_id The post ID. |
|
702 | - */ |
|
703 | - do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id); |
|
704 | 715 | |
705 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
716 | + } else { |
|
706 | 717 | |
707 | - $query_string_array[] = $post_id; |
|
708 | - $wpdb->query( |
|
709 | - $wpdb->prepare( |
|
710 | - "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d", |
|
711 | - $query_string_array |
|
712 | - ) |
|
713 | - ); |
|
718 | + array_unshift($query_string_array, $post_id); |
|
719 | + $wpdb->query( |
|
720 | + $wpdb->prepare( |
|
721 | + "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped, |
|
722 | + $query_string_array |
|
723 | + ) |
|
724 | + ); |
|
725 | + |
|
726 | + } |
|
714 | 727 | |
728 | + /** |
|
729 | + * Called after saving the listing info. |
|
730 | + * |
|
731 | + * @since 1.0.0 |
|
732 | + * @package GeoDirectory |
|
733 | + * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
734 | + * @param int $post_id The post ID. |
|
735 | + * @see 'geodir_after_save_listing' |
|
736 | + */ |
|
737 | + do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id); |
|
738 | + |
|
739 | + return true; |
|
740 | + } else |
|
741 | + return false; |
|
715 | 742 | |
716 | - } else { |
|
743 | + } |
|
744 | +} |
|
717 | 745 | |
718 | - array_unshift($query_string_array, $post_id); |
|
719 | - $wpdb->query( |
|
720 | - $wpdb->prepare( |
|
721 | - "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped, |
|
722 | - $query_string_array |
|
723 | - ) |
|
724 | - ); |
|
725 | - |
|
726 | - } |
|
727 | 746 | |
728 | - /** |
|
729 | - * Called after saving the listing info. |
|
730 | - * |
|
731 | - * @since 1.0.0 |
|
732 | - * @package GeoDirectory |
|
733 | - * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
734 | - * @param int $post_id The post ID. |
|
735 | - * @see 'geodir_after_save_listing' |
|
736 | - */ |
|
737 | - do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id); |
|
747 | +if (!function_exists('geodir_save_post_meta')) { |
|
748 | + /** |
|
749 | + * Save or update post custom fields. |
|
750 | + * |
|
751 | + * @since 1.0.0 |
|
752 | + * @package GeoDirectory |
|
753 | + * @global object $wpdb WordPress Database object. |
|
754 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
755 | + * @param int $post_id The post ID. |
|
756 | + * @param string $postmeta Detail table column name. |
|
757 | + * @param string $meta_value Detail table column value. |
|
758 | + * @return void|bool |
|
759 | + */ |
|
760 | + function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
761 | + { |
|
762 | + |
|
763 | + global $wpdb, $plugin_prefix; |
|
764 | + |
|
765 | + $post_type = get_post_type($post_id); |
|
766 | + |
|
767 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
768 | + |
|
769 | + if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) { |
|
770 | + |
|
771 | + if (is_array($meta_value)) { |
|
772 | + $meta_value = implode(",", $meta_value); |
|
773 | + } |
|
738 | 774 | |
739 | - return true; |
|
740 | - } else |
|
741 | - return false; |
|
775 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
742 | 776 | |
743 | - } |
|
744 | -} |
|
777 | + $wpdb->query( |
|
778 | + $wpdb->prepare( |
|
779 | + "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
780 | + array($post_id) |
|
781 | + ) |
|
782 | + ); |
|
745 | 783 | |
784 | + } else { |
|
746 | 785 | |
747 | -if (!function_exists('geodir_save_post_meta')) { |
|
748 | - /** |
|
749 | - * Save or update post custom fields. |
|
750 | - * |
|
751 | - * @since 1.0.0 |
|
752 | - * @package GeoDirectory |
|
753 | - * @global object $wpdb WordPress Database object. |
|
754 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
755 | - * @param int $post_id The post ID. |
|
756 | - * @param string $postmeta Detail table column name. |
|
757 | - * @param string $meta_value Detail table column value. |
|
758 | - * @return void|bool |
|
759 | - */ |
|
760 | - function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
761 | - { |
|
762 | - |
|
763 | - global $wpdb, $plugin_prefix; |
|
764 | - |
|
765 | - $post_type = get_post_type($post_id); |
|
766 | - |
|
767 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
768 | - |
|
769 | - if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) { |
|
770 | - |
|
771 | - if (is_array($meta_value)) { |
|
772 | - $meta_value = implode(",", $meta_value); |
|
773 | - } |
|
774 | - |
|
775 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
776 | - |
|
777 | - $wpdb->query( |
|
778 | - $wpdb->prepare( |
|
779 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
780 | - array($post_id) |
|
781 | - ) |
|
782 | - ); |
|
783 | - |
|
784 | - } else { |
|
785 | - |
|
786 | - $wpdb->query( |
|
787 | - $wpdb->prepare( |
|
788 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
789 | - array($post_id) |
|
790 | - ) |
|
791 | - ); |
|
792 | - } |
|
793 | - |
|
794 | - |
|
795 | - } else |
|
796 | - return false; |
|
797 | - } |
|
786 | + $wpdb->query( |
|
787 | + $wpdb->prepare( |
|
788 | + "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
789 | + array($post_id) |
|
790 | + ) |
|
791 | + ); |
|
792 | + } |
|
793 | + |
|
794 | + |
|
795 | + } else |
|
796 | + return false; |
|
797 | + } |
|
798 | 798 | } |
799 | 799 | |
800 | 800 | if (!function_exists('geodir_delete_post_meta')) { |
801 | - /** |
|
802 | - * Delete post custom fields. |
|
803 | - * |
|
804 | - * @since 1.0.0 |
|
805 | - * @package GeoDirectory |
|
806 | - * @global object $wpdb WordPress Database object. |
|
807 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
808 | - * @param int $post_id The post ID. |
|
809 | - * @param string $postmeta Detail table column name. |
|
810 | - * @todo check if this is depreciated |
|
811 | - * @todo Fix unknown variable mval |
|
812 | - * @return bool |
|
813 | - */ |
|
814 | - function geodir_delete_post_meta($post_id, $postmeta) |
|
815 | - { |
|
816 | - |
|
817 | - global $wpdb, $plugin_prefix; |
|
818 | - |
|
819 | - $post_type = get_post_type($post_id); |
|
820 | - |
|
821 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
822 | - |
|
823 | - if (is_array($postmeta) && !empty($postmeta) && $post_id) { |
|
824 | - $post_meta_set_query = ''; |
|
825 | - |
|
826 | - foreach ($postmeta as $mkey) { |
|
827 | - if ($mval != '') |
|
828 | - $post_meta_set_query .= $mkey . " = '', "; |
|
829 | - } |
|
830 | - |
|
831 | - $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
801 | + /** |
|
802 | + * Delete post custom fields. |
|
803 | + * |
|
804 | + * @since 1.0.0 |
|
805 | + * @package GeoDirectory |
|
806 | + * @global object $wpdb WordPress Database object. |
|
807 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
808 | + * @param int $post_id The post ID. |
|
809 | + * @param string $postmeta Detail table column name. |
|
810 | + * @todo check if this is depreciated |
|
811 | + * @todo Fix unknown variable mval |
|
812 | + * @return bool |
|
813 | + */ |
|
814 | + function geodir_delete_post_meta($post_id, $postmeta) |
|
815 | + { |
|
816 | + |
|
817 | + global $wpdb, $plugin_prefix; |
|
818 | + |
|
819 | + $post_type = get_post_type($post_id); |
|
820 | + |
|
821 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
822 | + |
|
823 | + if (is_array($postmeta) && !empty($postmeta) && $post_id) { |
|
824 | + $post_meta_set_query = ''; |
|
825 | + |
|
826 | + foreach ($postmeta as $mkey) { |
|
827 | + if ($mval != '') |
|
828 | + $post_meta_set_query .= $mkey . " = '', "; |
|
829 | + } |
|
830 | + |
|
831 | + $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
832 | 832 | |
833 | - if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') { |
|
834 | - return false; |
|
835 | - } |
|
836 | - |
|
837 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
838 | - |
|
839 | - $wpdb->query( |
|
840 | - $wpdb->prepare( |
|
841 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
842 | - array($post_id) |
|
843 | - ) |
|
844 | - ); |
|
845 | - |
|
846 | - return true; |
|
847 | - } |
|
848 | - |
|
849 | - } elseif ($postmeta != '' && $post_id) { |
|
850 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
851 | - |
|
852 | - $wpdb->query( |
|
853 | - $wpdb->prepare( |
|
854 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
855 | - array($post_id) |
|
856 | - ) |
|
857 | - ); |
|
858 | - |
|
859 | - return true; |
|
860 | - } |
|
861 | - |
|
862 | - } else |
|
863 | - return false; |
|
864 | - } |
|
833 | + if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') { |
|
834 | + return false; |
|
835 | + } |
|
836 | + |
|
837 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
838 | + |
|
839 | + $wpdb->query( |
|
840 | + $wpdb->prepare( |
|
841 | + "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
842 | + array($post_id) |
|
843 | + ) |
|
844 | + ); |
|
845 | + |
|
846 | + return true; |
|
847 | + } |
|
848 | + |
|
849 | + } elseif ($postmeta != '' && $post_id) { |
|
850 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
851 | + |
|
852 | + $wpdb->query( |
|
853 | + $wpdb->prepare( |
|
854 | + "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
855 | + array($post_id) |
|
856 | + ) |
|
857 | + ); |
|
858 | + |
|
859 | + return true; |
|
860 | + } |
|
861 | + |
|
862 | + } else |
|
863 | + return false; |
|
864 | + } |
|
865 | 865 | } |
866 | 866 | |
867 | 867 | |
868 | 868 | if (!function_exists('geodir_get_post_meta')) { |
869 | - /** |
|
870 | - * Get post custom meta. |
|
871 | - * |
|
872 | - * @since 1.0.0 |
|
873 | - * @since 1.6.20 Hook added to filter value. |
|
874 | - * @package GeoDirectory |
|
875 | - * @global object $wpdb WordPress Database object. |
|
876 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
877 | - * @param int $post_id The post ID. |
|
878 | - * @param string $meta_key The meta key to retrieve. |
|
879 | - * @param bool $single Optional. Whether to return a single value. Default false. |
|
880 | - * @todo single variable not yet implemented. |
|
881 | - * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
882 | - */ |
|
883 | - function geodir_get_post_meta($post_id, $meta_key, $single = false) { |
|
884 | - if (!$post_id) { |
|
885 | - return false; |
|
886 | - } |
|
887 | - global $wpdb, $plugin_prefix; |
|
888 | - |
|
889 | - $all_postypes = geodir_get_posttypes(); |
|
890 | - |
|
891 | - $post_type = get_post_type($post_id); |
|
892 | - |
|
893 | - if (!in_array($post_type, $all_postypes)) |
|
894 | - return false; |
|
895 | - |
|
896 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
897 | - |
|
898 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') { |
|
899 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id))); |
|
869 | + /** |
|
870 | + * Get post custom meta. |
|
871 | + * |
|
872 | + * @since 1.0.0 |
|
873 | + * @since 1.6.20 Hook added to filter value. |
|
874 | + * @package GeoDirectory |
|
875 | + * @global object $wpdb WordPress Database object. |
|
876 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
877 | + * @param int $post_id The post ID. |
|
878 | + * @param string $meta_key The meta key to retrieve. |
|
879 | + * @param bool $single Optional. Whether to return a single value. Default false. |
|
880 | + * @todo single variable not yet implemented. |
|
881 | + * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
882 | + */ |
|
883 | + function geodir_get_post_meta($post_id, $meta_key, $single = false) { |
|
884 | + if (!$post_id) { |
|
885 | + return false; |
|
886 | + } |
|
887 | + global $wpdb, $plugin_prefix; |
|
888 | + |
|
889 | + $all_postypes = geodir_get_posttypes(); |
|
890 | + |
|
891 | + $post_type = get_post_type($post_id); |
|
892 | + |
|
893 | + if (!in_array($post_type, $all_postypes)) |
|
894 | + return false; |
|
895 | + |
|
896 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
897 | + |
|
898 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') { |
|
899 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id))); |
|
900 | 900 | |
901 | - if ($meta_value && $meta_value !== '') { |
|
902 | - $meta_value = maybe_serialize($meta_value); |
|
903 | - } |
|
904 | - } else { |
|
905 | - $meta_value = false; |
|
906 | - } |
|
901 | + if ($meta_value && $meta_value !== '') { |
|
902 | + $meta_value = maybe_serialize($meta_value); |
|
903 | + } |
|
904 | + } else { |
|
905 | + $meta_value = false; |
|
906 | + } |
|
907 | 907 | |
908 | - /** |
|
909 | - * Filter the listing custom meta. |
|
910 | - * |
|
911 | - * @since 1.6.20 |
|
912 | - * |
|
913 | - * @param bool|mixed|null|string $meta_value Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
914 | - * @param int $post_id The post ID. |
|
915 | - * @param string $meta_key The meta key to retrieve. |
|
916 | - * @param bool $single Optional. Whether to return a single value. Default false. |
|
917 | - */ |
|
918 | - return apply_filters( 'geodir_get_post_meta', $meta_value, $post_id, $meta_key, $single ); |
|
919 | - } |
|
908 | + /** |
|
909 | + * Filter the listing custom meta. |
|
910 | + * |
|
911 | + * @since 1.6.20 |
|
912 | + * |
|
913 | + * @param bool|mixed|null|string $meta_value Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
914 | + * @param int $post_id The post ID. |
|
915 | + * @param string $meta_key The meta key to retrieve. |
|
916 | + * @param bool $single Optional. Whether to return a single value. Default false. |
|
917 | + */ |
|
918 | + return apply_filters( 'geodir_get_post_meta', $meta_value, $post_id, $meta_key, $single ); |
|
919 | + } |
|
920 | 920 | } |
921 | 921 | |
922 | 922 | |
923 | 923 | if (!function_exists('geodir_save_post_images')) { |
924 | - /** |
|
925 | - * Save post attachments. |
|
926 | - * |
|
927 | - * @since 1.0.0 |
|
928 | - * @package GeoDirectory |
|
929 | - * @global object $wpdb WordPress Database object. |
|
930 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
931 | - * @global object $current_user Current user object. |
|
932 | - * @param int $post_id The post ID. |
|
933 | - * @param array $post_image Post image urls as an array. |
|
934 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
935 | - */ |
|
936 | - function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
937 | - { |
|
924 | + /** |
|
925 | + * Save post attachments. |
|
926 | + * |
|
927 | + * @since 1.0.0 |
|
928 | + * @package GeoDirectory |
|
929 | + * @global object $wpdb WordPress Database object. |
|
930 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
931 | + * @global object $current_user Current user object. |
|
932 | + * @param int $post_id The post ID. |
|
933 | + * @param array $post_image Post image urls as an array. |
|
934 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
935 | + */ |
|
936 | + function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
937 | + { |
|
938 | 938 | |
939 | 939 | |
940 | - global $wpdb, $plugin_prefix, $current_user; |
|
940 | + global $wpdb, $plugin_prefix, $current_user; |
|
941 | 941 | |
942 | - $post_type = get_post_type($post_id); |
|
942 | + $post_type = get_post_type($post_id); |
|
943 | 943 | |
944 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
944 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
945 | 945 | |
946 | - $post_images = geodir_get_images($post_id); |
|
946 | + $post_images = geodir_get_images($post_id); |
|
947 | 947 | |
948 | - $wpdb->query( |
|
949 | - $wpdb->prepare( |
|
950 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
951 | - array($post_id) |
|
952 | - ) |
|
953 | - ); |
|
948 | + $wpdb->query( |
|
949 | + $wpdb->prepare( |
|
950 | + "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
951 | + array($post_id) |
|
952 | + ) |
|
953 | + ); |
|
954 | 954 | |
955 | - $invalid_files = $post_images; |
|
956 | - $valid_file_ids = array(); |
|
957 | - $valid_files_condition = ''; |
|
958 | - $geodir_uploaddir = ''; |
|
955 | + $invalid_files = $post_images; |
|
956 | + $valid_file_ids = array(); |
|
957 | + $valid_files_condition = ''; |
|
958 | + $geodir_uploaddir = ''; |
|
959 | 959 | |
960 | - $remove_files = array(); |
|
960 | + $remove_files = array(); |
|
961 | 961 | |
962 | - if (!empty($post_image)) { |
|
962 | + if (!empty($post_image)) { |
|
963 | 963 | |
964 | - $uploads = wp_upload_dir(); |
|
965 | - $uploads_dir = $uploads['path']; |
|
964 | + $uploads = wp_upload_dir(); |
|
965 | + $uploads_dir = $uploads['path']; |
|
966 | 966 | |
967 | - $geodir_uploadpath = $uploads['path']; |
|
968 | - $geodir_uploadurl = $uploads['url']; |
|
969 | - $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
967 | + $geodir_uploadpath = $uploads['path']; |
|
968 | + $geodir_uploadurl = $uploads['url']; |
|
969 | + $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
970 | 970 | |
971 | - $invalid_files = array(); |
|
972 | - $postcurr_images = array(); |
|
971 | + $invalid_files = array(); |
|
972 | + $postcurr_images = array(); |
|
973 | 973 | |
974 | - for ($m = 0; $m < count($post_image); $m++) { |
|
975 | - $menu_order = $m + 1; |
|
974 | + for ($m = 0; $m < count($post_image); $m++) { |
|
975 | + $menu_order = $m + 1; |
|
976 | 976 | |
977 | - $file_path = ''; |
|
978 | - /* --------- start ------- */ |
|
977 | + $file_path = ''; |
|
978 | + /* --------- start ------- */ |
|
979 | 979 | |
980 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m])); |
|
980 | + $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m])); |
|
981 | 981 | |
982 | - $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
982 | + $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
983 | 983 | |
984 | 984 | |
985 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) { |
|
985 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) { |
|
986 | 986 | |
987 | - /* --------- end ------- */ |
|
988 | - $curr_img_url = $post_image[$m]; |
|
987 | + /* --------- end ------- */ |
|
988 | + $curr_img_url = $post_image[$m]; |
|
989 | 989 | |
990 | - $image_name_arr = explode('/', $curr_img_url); |
|
990 | + $image_name_arr = explode('/', $curr_img_url); |
|
991 | 991 | |
992 | - $count_image_name_arr = count($image_name_arr) - 2; |
|
992 | + $count_image_name_arr = count($image_name_arr) - 2; |
|
993 | 993 | |
994 | - $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
994 | + $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
995 | 995 | |
996 | - $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
996 | + $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
997 | 997 | |
998 | - $filename = end($image_name_arr); |
|
999 | - if (strpos($filename, '?') !== false) { |
|
1000 | - list($filename) = explode('?', $filename); |
|
1001 | - } |
|
998 | + $filename = end($image_name_arr); |
|
999 | + if (strpos($filename, '?') !== false) { |
|
1000 | + list($filename) = explode('?', $filename); |
|
1001 | + } |
|
1002 | 1002 | |
1003 | - $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
1004 | - $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
1003 | + $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
1004 | + $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
1005 | 1005 | |
1006 | - $img_name_arr = explode('.', $filename); |
|
1006 | + $img_name_arr = explode('.', $filename); |
|
1007 | 1007 | |
1008 | - $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
1009 | - if (!empty($img_name_arr) && count($img_name_arr) > 2) { |
|
1010 | - $new_img_name_arr = $img_name_arr; |
|
1011 | - if (isset($new_img_name_arr[count($img_name_arr) - 1])) { |
|
1012 | - unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
1013 | - $file_title = implode('.', $new_img_name_arr); |
|
1014 | - } |
|
1015 | - } |
|
1016 | - $file_title = sanitize_file_name($file_title); |
|
1017 | - $file_name = sanitize_file_name($filename); |
|
1008 | + $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
1009 | + if (!empty($img_name_arr) && count($img_name_arr) > 2) { |
|
1010 | + $new_img_name_arr = $img_name_arr; |
|
1011 | + if (isset($new_img_name_arr[count($img_name_arr) - 1])) { |
|
1012 | + unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
1013 | + $file_title = implode('.', $new_img_name_arr); |
|
1014 | + } |
|
1015 | + } |
|
1016 | + $file_title = sanitize_file_name($file_title); |
|
1017 | + $file_name = sanitize_file_name($filename); |
|
1018 | 1018 | |
1019 | - $arr_file_type = wp_check_filetype($filename); |
|
1019 | + $arr_file_type = wp_check_filetype($filename); |
|
1020 | 1020 | |
1021 | - $uploaded_file_type = $arr_file_type['type']; |
|
1021 | + $uploaded_file_type = $arr_file_type['type']; |
|
1022 | 1022 | |
1023 | - // Set an array containing a list of acceptable formats |
|
1024 | - $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png'); |
|
1023 | + // Set an array containing a list of acceptable formats |
|
1024 | + $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png'); |
|
1025 | 1025 | |
1026 | - // If the uploaded file is the right format |
|
1027 | - if (in_array($uploaded_file_type, $allowed_file_types)) { |
|
1028 | - if (!function_exists('wp_handle_upload')) { |
|
1029 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
1030 | - } |
|
1026 | + // If the uploaded file is the right format |
|
1027 | + if (in_array($uploaded_file_type, $allowed_file_types)) { |
|
1028 | + if (!function_exists('wp_handle_upload')) { |
|
1029 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
1030 | + } |
|
1031 | 1031 | |
1032 | - if (!is_dir($geodir_uploadpath)) { |
|
1033 | - mkdir($geodir_uploadpath); |
|
1034 | - } |
|
1032 | + if (!is_dir($geodir_uploadpath)) { |
|
1033 | + mkdir($geodir_uploadpath); |
|
1034 | + } |
|
1035 | 1035 | |
1036 | - $external_img = false; |
|
1037 | - if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) { |
|
1038 | - } else { |
|
1039 | - $external_img = true; |
|
1040 | - } |
|
1036 | + $external_img = false; |
|
1037 | + if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) { |
|
1038 | + } else { |
|
1039 | + $external_img = true; |
|
1040 | + } |
|
1041 | 1041 | |
1042 | - if ($dummy || $external_img) { |
|
1043 | - $uploaded_file = array(); |
|
1044 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
1042 | + if ($dummy || $external_img) { |
|
1043 | + $uploaded_file = array(); |
|
1044 | + $uploaded = (array)fetch_remote_file($curr_img_url); |
|
1045 | 1045 | |
1046 | - if (isset($uploaded['error']) && empty($uploaded['error'])) { |
|
1047 | - $new_name = basename($uploaded['file']); |
|
1048 | - $uploaded_file = $uploaded; |
|
1049 | - }else{ |
|
1050 | - print_r($uploaded);exit; |
|
1051 | - } |
|
1052 | - $external_img = false; |
|
1053 | - } else { |
|
1054 | - $new_name = $post_id . '_' . $file_name; |
|
1046 | + if (isset($uploaded['error']) && empty($uploaded['error'])) { |
|
1047 | + $new_name = basename($uploaded['file']); |
|
1048 | + $uploaded_file = $uploaded; |
|
1049 | + }else{ |
|
1050 | + print_r($uploaded);exit; |
|
1051 | + } |
|
1052 | + $external_img = false; |
|
1053 | + } else { |
|
1054 | + $new_name = $post_id . '_' . $file_name; |
|
1055 | 1055 | |
1056 | - if ($curr_img_dir == $sub_dir) { |
|
1057 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
1058 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
1059 | - } else { |
|
1060 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1061 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1062 | - } |
|
1056 | + if ($curr_img_dir == $sub_dir) { |
|
1057 | + $img_path = $geodir_uploadpath . '/' . $filename; |
|
1058 | + $img_url = $geodir_uploadurl . '/' . $filename; |
|
1059 | + } else { |
|
1060 | + $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1061 | + $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1062 | + } |
|
1063 | 1063 | |
1064 | - $uploaded_file = ''; |
|
1064 | + $uploaded_file = ''; |
|
1065 | 1065 | |
1066 | - if (file_exists($img_path)) { |
|
1067 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
1068 | - $file_path = ''; |
|
1069 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) { |
|
1070 | - $uploaded_file = true; |
|
1071 | - $file_path = $curr_img_dir . '/' . $filename; |
|
1072 | - } |
|
1066 | + if (file_exists($img_path)) { |
|
1067 | + $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
1068 | + $file_path = ''; |
|
1069 | + } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) { |
|
1070 | + $uploaded_file = true; |
|
1071 | + $file_path = $curr_img_dir . '/' . $filename; |
|
1072 | + } |
|
1073 | 1073 | |
1074 | - if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
1075 | - unlink($img_path); |
|
1076 | - } |
|
1074 | + if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
1075 | + unlink($img_path); |
|
1076 | + } |
|
1077 | 1077 | |
1078 | - if (!empty($uploaded_file)) { |
|
1079 | - if (!isset($file_path) || !$file_path) { |
|
1080 | - $file_path = $sub_dir . '/' . $new_name; |
|
1081 | - } |
|
1078 | + if (!empty($uploaded_file)) { |
|
1079 | + if (!isset($file_path) || !$file_path) { |
|
1080 | + $file_path = $sub_dir . '/' . $new_name; |
|
1081 | + } |
|
1082 | 1082 | |
1083 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path); |
|
1083 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path); |
|
1084 | 1084 | |
1085 | - if ($menu_order == 1) { |
|
1085 | + if ($menu_order == 1) { |
|
1086 | 1086 | |
1087 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id))); |
|
1087 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id))); |
|
1088 | 1088 | |
1089 | - } |
|
1089 | + } |
|
1090 | 1090 | |
1091 | - // Set up options array to add this file as an attachment |
|
1092 | - $attachment = array(); |
|
1093 | - $attachment['post_id'] = $post_id; |
|
1094 | - $attachment['title'] = $file_title; |
|
1095 | - $attachment['content'] = ''; |
|
1096 | - $attachment['file'] = $file_path; |
|
1097 | - $attachment['mime_type'] = $uploaded_file_type; |
|
1098 | - $attachment['menu_order'] = $menu_order; |
|
1099 | - $attachment['is_featured'] = 0; |
|
1091 | + // Set up options array to add this file as an attachment |
|
1092 | + $attachment = array(); |
|
1093 | + $attachment['post_id'] = $post_id; |
|
1094 | + $attachment['title'] = $file_title; |
|
1095 | + $attachment['content'] = ''; |
|
1096 | + $attachment['file'] = $file_path; |
|
1097 | + $attachment['mime_type'] = $uploaded_file_type; |
|
1098 | + $attachment['menu_order'] = $menu_order; |
|
1099 | + $attachment['is_featured'] = 0; |
|
1100 | 1100 | |
1101 | - $attachment_set = ''; |
|
1101 | + $attachment_set = ''; |
|
1102 | 1102 | |
1103 | - foreach ($attachment as $key => $val) { |
|
1104 | - if ($val != '') |
|
1105 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
1106 | - } |
|
1103 | + foreach ($attachment as $key => $val) { |
|
1104 | + if ($val != '') |
|
1105 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
1106 | + } |
|
1107 | 1107 | |
1108 | - $attachment_set = trim($attachment_set, ", "); |
|
1108 | + $attachment_set = trim($attachment_set, ", "); |
|
1109 | + |
|
1110 | + $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
1109 | 1111 | |
1110 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
1112 | + $valid_file_ids[] = $wpdb->insert_id; |
|
1113 | + } |
|
1111 | 1114 | |
1112 | - $valid_file_ids[] = $wpdb->insert_id; |
|
1113 | - } |
|
1115 | + } |
|
1114 | 1116 | |
1115 | - } |
|
1116 | 1117 | |
1118 | + } else { |
|
1119 | + $valid_file_ids[] = $find_image; |
|
1117 | 1120 | |
1118 | - } else { |
|
1119 | - $valid_file_ids[] = $find_image; |
|
1120 | - |
|
1121 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]); |
|
1121 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]); |
|
1122 | 1122 | |
1123 | - $wpdb->query( |
|
1124 | - $wpdb->prepare( |
|
1125 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
1126 | - array($menu_order, $split_img_path[1], $post_id) |
|
1127 | - ) |
|
1128 | - ); |
|
1123 | + $wpdb->query( |
|
1124 | + $wpdb->prepare( |
|
1125 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
1126 | + array($menu_order, $split_img_path[1], $post_id) |
|
1127 | + ) |
|
1128 | + ); |
|
1129 | 1129 | |
1130 | - if ($menu_order == 1) |
|
1131 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1130 | + if ($menu_order == 1) |
|
1131 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1132 | 1132 | |
1133 | - } |
|
1133 | + } |
|
1134 | 1134 | |
1135 | 1135 | |
1136 | - } |
|
1136 | + } |
|
1137 | 1137 | |
1138 | - if (!empty($valid_file_ids)) { |
|
1138 | + if (!empty($valid_file_ids)) { |
|
1139 | 1139 | |
1140 | - $remove_files = $valid_file_ids; |
|
1140 | + $remove_files = $valid_file_ids; |
|
1141 | 1141 | |
1142 | - $remove_files_length = count($remove_files); |
|
1143 | - $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
1144 | - $format = implode(',', $remove_files_format); |
|
1145 | - $valid_files_condition = " ID NOT IN ($format) AND "; |
|
1142 | + $remove_files_length = count($remove_files); |
|
1143 | + $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
1144 | + $format = implode(',', $remove_files_format); |
|
1145 | + $valid_files_condition = " ID NOT IN ($format) AND "; |
|
1146 | 1146 | |
1147 | - } |
|
1147 | + } |
|
1148 | 1148 | |
1149 | - //Get and remove all old images of post from database to set by new order |
|
1149 | + //Get and remove all old images of post from database to set by new order |
|
1150 | 1150 | |
1151 | - if (!empty($post_images)) { |
|
1151 | + if (!empty($post_images)) { |
|
1152 | 1152 | |
1153 | - foreach ($post_images as $img) { |
|
1153 | + foreach ($post_images as $img) { |
|
1154 | 1154 | |
1155 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) { |
|
1155 | + if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) { |
|
1156 | 1156 | |
1157 | - $invalid_files[] = (object)array('src' => $img->src); |
|
1157 | + $invalid_files[] = (object)array('src' => $img->src); |
|
1158 | 1158 | |
1159 | - } |
|
1159 | + } |
|
1160 | 1160 | |
1161 | - } |
|
1161 | + } |
|
1162 | 1162 | |
1163 | - } |
|
1163 | + } |
|
1164 | 1164 | |
1165 | - $invalid_files = (object)$invalid_files; |
|
1166 | - } |
|
1165 | + $invalid_files = (object)$invalid_files; |
|
1166 | + } |
|
1167 | 1167 | |
1168 | - $remove_files[] = $post_id; |
|
1168 | + $remove_files[] = $post_id; |
|
1169 | 1169 | |
1170 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files)); |
|
1170 | + $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files)); |
|
1171 | 1171 | |
1172 | - if (!empty($invalid_files)) |
|
1173 | - geodir_remove_attachments($invalid_files); |
|
1174 | - } |
|
1172 | + if (!empty($invalid_files)) |
|
1173 | + geodir_remove_attachments($invalid_files); |
|
1174 | + } |
|
1175 | 1175 | |
1176 | 1176 | } |
1177 | 1177 | |
@@ -1185,12 +1185,12 @@ discard block |
||
1185 | 1185 | function geodir_remove_temp_images() |
1186 | 1186 | { |
1187 | 1187 | |
1188 | - global $current_user; |
|
1188 | + global $current_user; |
|
1189 | 1189 | |
1190 | - $uploads = wp_upload_dir(); |
|
1191 | - $uploads_dir = $uploads['path']; |
|
1190 | + $uploads = wp_upload_dir(); |
|
1191 | + $uploads_dir = $uploads['path']; |
|
1192 | 1192 | |
1193 | - /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){ |
|
1193 | + /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){ |
|
1194 | 1194 | |
1195 | 1195 | $dirPath = $uploads_dir.'/temp_'.$current_user->data->ID; |
1196 | 1196 | if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') { |
@@ -1207,8 +1207,8 @@ discard block |
||
1207 | 1207 | rmdir($dirPath); |
1208 | 1208 | } */ |
1209 | 1209 | |
1210 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
1211 | - geodir_delete_directory($dirname); |
|
1210 | + $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
1211 | + geodir_delete_directory($dirname); |
|
1212 | 1212 | } |
1213 | 1213 | |
1214 | 1214 | |
@@ -1222,137 +1222,137 @@ discard block |
||
1222 | 1222 | */ |
1223 | 1223 | function geodir_delete_directory($dirname) |
1224 | 1224 | { |
1225 | - $dir_handle = ''; |
|
1226 | - if (is_dir($dirname)) |
|
1227 | - $dir_handle = opendir($dirname); |
|
1228 | - if (!$dir_handle) |
|
1229 | - return false; |
|
1230 | - while ($file = readdir($dir_handle)) { |
|
1231 | - if ($file != "." && $file != "..") { |
|
1232 | - if (!is_dir($dirname . "/" . $file)) |
|
1233 | - unlink($dirname . "/" . $file); |
|
1234 | - else |
|
1235 | - geodir_delete_directory($dirname . '/' . $file); |
|
1236 | - } |
|
1237 | - } |
|
1238 | - closedir($dir_handle); |
|
1239 | - rmdir($dirname); |
|
1240 | - return true; |
|
1225 | + $dir_handle = ''; |
|
1226 | + if (is_dir($dirname)) |
|
1227 | + $dir_handle = opendir($dirname); |
|
1228 | + if (!$dir_handle) |
|
1229 | + return false; |
|
1230 | + while ($file = readdir($dir_handle)) { |
|
1231 | + if ($file != "." && $file != "..") { |
|
1232 | + if (!is_dir($dirname . "/" . $file)) |
|
1233 | + unlink($dirname . "/" . $file); |
|
1234 | + else |
|
1235 | + geodir_delete_directory($dirname . '/' . $file); |
|
1236 | + } |
|
1237 | + } |
|
1238 | + closedir($dir_handle); |
|
1239 | + rmdir($dirname); |
|
1240 | + return true; |
|
1241 | 1241 | |
1242 | 1242 | } |
1243 | 1243 | |
1244 | 1244 | |
1245 | 1245 | if (!function_exists('geodir_remove_attachments')) { |
1246 | - /** |
|
1247 | - * Remove post attachments. |
|
1248 | - * |
|
1249 | - * @since 1.0.0 |
|
1250 | - * @package GeoDirectory |
|
1251 | - * @param array $postcurr_images Array of image objects. |
|
1252 | - */ |
|
1253 | - function geodir_remove_attachments($postcurr_images = array()) |
|
1254 | - { |
|
1255 | - // Unlink all past images of post |
|
1256 | - if (!empty($postcurr_images)) { |
|
1257 | - |
|
1258 | - $uploads = wp_upload_dir(); |
|
1259 | - $uploads_dir = $uploads['path']; |
|
1260 | - |
|
1261 | - foreach ($postcurr_images as $postimg) { |
|
1262 | - $image_name_arr = explode('/', $postimg->src); |
|
1263 | - $filename = end($image_name_arr); |
|
1264 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
1265 | - unlink($uploads_dir . '/' . $filename); |
|
1266 | - } |
|
1267 | - |
|
1268 | - } // endif |
|
1269 | - // Unlink all past images of post end |
|
1270 | - } |
|
1246 | + /** |
|
1247 | + * Remove post attachments. |
|
1248 | + * |
|
1249 | + * @since 1.0.0 |
|
1250 | + * @package GeoDirectory |
|
1251 | + * @param array $postcurr_images Array of image objects. |
|
1252 | + */ |
|
1253 | + function geodir_remove_attachments($postcurr_images = array()) |
|
1254 | + { |
|
1255 | + // Unlink all past images of post |
|
1256 | + if (!empty($postcurr_images)) { |
|
1257 | + |
|
1258 | + $uploads = wp_upload_dir(); |
|
1259 | + $uploads_dir = $uploads['path']; |
|
1260 | + |
|
1261 | + foreach ($postcurr_images as $postimg) { |
|
1262 | + $image_name_arr = explode('/', $postimg->src); |
|
1263 | + $filename = end($image_name_arr); |
|
1264 | + if (file_exists($uploads_dir . '/' . $filename)) |
|
1265 | + unlink($uploads_dir . '/' . $filename); |
|
1266 | + } |
|
1267 | + |
|
1268 | + } // endif |
|
1269 | + // Unlink all past images of post end |
|
1270 | + } |
|
1271 | 1271 | } |
1272 | 1272 | |
1273 | 1273 | if (!function_exists('geodir_get_featured_image')) { |
1274 | - /** |
|
1275 | - * Gets the post featured image. |
|
1276 | - * |
|
1277 | - * @since 1.0.0 |
|
1278 | - * @package GeoDirectory |
|
1279 | - * @global object $wpdb WordPress Database object. |
|
1280 | - * @global object $post The current post object. |
|
1281 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
1282 | - * @param int|string $post_id The post ID. |
|
1283 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
1284 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
1285 | - * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
1286 | - * @return bool|object Image details as an object. |
|
1287 | - */ |
|
1288 | - function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
1289 | - { |
|
1290 | - |
|
1291 | - /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id, 'medium');//medium/thumbnail |
|
1274 | + /** |
|
1275 | + * Gets the post featured image. |
|
1276 | + * |
|
1277 | + * @since 1.0.0 |
|
1278 | + * @package GeoDirectory |
|
1279 | + * @global object $wpdb WordPress Database object. |
|
1280 | + * @global object $post The current post object. |
|
1281 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
1282 | + * @param int|string $post_id The post ID. |
|
1283 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
1284 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
1285 | + * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
1286 | + * @return bool|object Image details as an object. |
|
1287 | + */ |
|
1288 | + function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
1289 | + { |
|
1290 | + |
|
1291 | + /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id, 'medium');//medium/thumbnail |
|
1292 | 1292 | $img_arr['path'] = ''; |
1293 | 1293 | $img_arr['width'] = ''; |
1294 | 1294 | $img_arr['height'] = ''; |
1295 | 1295 | $img_arr['title'] = ''; |
1296 | 1296 | return (object)$img_arr;*/ |
1297 | - global $wpdb, $plugin_prefix, $post; |
|
1297 | + global $wpdb, $plugin_prefix, $post; |
|
1298 | 1298 | |
1299 | - if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) { |
|
1300 | - $post_type = $post->post_type; |
|
1301 | - } else { |
|
1302 | - $post_type = get_post_type($post_id); |
|
1303 | - } |
|
1299 | + if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) { |
|
1300 | + $post_type = $post->post_type; |
|
1301 | + } else { |
|
1302 | + $post_type = get_post_type($post_id); |
|
1303 | + } |
|
1304 | 1304 | |
1305 | - if (!in_array($post_type, geodir_get_posttypes())) { |
|
1306 | - return false;// if not a GD CPT return; |
|
1307 | - } |
|
1305 | + if (!in_array($post_type, geodir_get_posttypes())) { |
|
1306 | + return false;// if not a GD CPT return; |
|
1307 | + } |
|
1308 | 1308 | |
1309 | 1309 | |
1310 | - $list_img_size = get_option('geodir_listing_img_size','default'); |
|
1310 | + $list_img_size = get_option('geodir_listing_img_size','default'); |
|
1311 | 1311 | |
1312 | - if( $size=='list-thumb' && $list_img_size != 'default' ){ |
|
1313 | - $fimg = get_the_post_thumbnail_url($post_id,$list_img_size); |
|
1314 | - if($fimg){ |
|
1315 | - $uploads = wp_upload_dir(); |
|
1316 | - $uploads_baseurl = $uploads['baseurl']; |
|
1317 | - $file = str_replace($uploads_baseurl,'',$fimg); |
|
1318 | - } |
|
1319 | - } |
|
1312 | + if( $size=='list-thumb' && $list_img_size != 'default' ){ |
|
1313 | + $fimg = get_the_post_thumbnail_url($post_id,$list_img_size); |
|
1314 | + if($fimg){ |
|
1315 | + $uploads = wp_upload_dir(); |
|
1316 | + $uploads_baseurl = $uploads['baseurl']; |
|
1317 | + $file = str_replace($uploads_baseurl,'',$fimg); |
|
1318 | + } |
|
1319 | + } |
|
1320 | 1320 | |
1321 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1321 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
1322 | 1322 | |
1323 | - if (!$file) { |
|
1324 | - if (isset($post->featured_image)) { |
|
1325 | - $file = $post->featured_image; |
|
1326 | - } else { |
|
1327 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id))); |
|
1328 | - } |
|
1329 | - } |
|
1323 | + if (!$file) { |
|
1324 | + if (isset($post->featured_image)) { |
|
1325 | + $file = $post->featured_image; |
|
1326 | + } else { |
|
1327 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id))); |
|
1328 | + } |
|
1329 | + } |
|
1330 | 1330 | |
1331 | - if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) { |
|
1332 | - $img_arr = array(); |
|
1331 | + if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) { |
|
1332 | + $img_arr = array(); |
|
1333 | 1333 | |
1334 | - $file_info = pathinfo($file); |
|
1335 | - $sub_dir = ''; |
|
1336 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
|
1337 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
1338 | - } |
|
1334 | + $file_info = pathinfo($file); |
|
1335 | + $sub_dir = ''; |
|
1336 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
|
1337 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
1338 | + } |
|
1339 | 1339 | |
1340 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
1341 | - $uploads_baseurl = $uploads['baseurl']; |
|
1342 | - $uploads_path = $uploads['path']; |
|
1340 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
1341 | + $uploads_baseurl = $uploads['baseurl']; |
|
1342 | + $uploads_path = $uploads['path']; |
|
1343 | 1343 | |
1344 | - $file_name = $file_info['basename']; |
|
1344 | + $file_name = $file_info['basename']; |
|
1345 | 1345 | |
1346 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
1346 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
1347 | 1347 | |
1348 | - $img_src = $uploads_url . '/' . $file_name; |
|
1348 | + $img_src = $uploads_url . '/' . $file_name; |
|
1349 | 1349 | |
1350 | - // jetpack CDN check |
|
1351 | - if (strpos($file, '.wp.com/') !== false) { |
|
1352 | - $img_src = $file; |
|
1353 | - } |
|
1350 | + // jetpack CDN check |
|
1351 | + if (strpos($file, '.wp.com/') !== false) { |
|
1352 | + $img_src = $file; |
|
1353 | + } |
|
1354 | 1354 | |
1355 | - /* |
|
1355 | + /* |
|
1356 | 1356 | * Allows the filter of image src for such things as CDN change. |
1357 | 1357 | * |
1358 | 1358 | * @since 1.5.7 |
@@ -1361,158 +1361,158 @@ discard block |
||
1361 | 1361 | * @param string $uploads_url The server upload directory url. |
1362 | 1362 | * @param string $uploads_baseurl The uploads dir base url. |
1363 | 1363 | */ |
1364 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$img_src,$file_name,$uploads_url,$uploads_baseurl); |
|
1365 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1366 | - $width = 0; |
|
1367 | - $height = 0; |
|
1368 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
|
1369 | - $imagesize = getimagesize($img_arr['path']); |
|
1370 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1371 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1372 | - } |
|
1373 | - $img_arr['width'] = $width; |
|
1374 | - $img_arr['height'] = $height; |
|
1375 | - $img_arr['title'] = $post->post_title; |
|
1376 | - } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) { |
|
1377 | - foreach ($post_images as $image) { |
|
1378 | - return $image; |
|
1379 | - } |
|
1380 | - } else if ($no_image) { |
|
1381 | - $img_arr = array(); |
|
1382 | - |
|
1383 | - $default_img = ''; |
|
1384 | - if (isset($post->default_category) && $post->default_category) { |
|
1385 | - $default_cat = $post->default_category; |
|
1386 | - } else { |
|
1387 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
1388 | - } |
|
1389 | - |
|
1390 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
1391 | - $default_img = $default_catimg['src']; |
|
1392 | - elseif ($no_image) { |
|
1393 | - $default_img = get_option('geodir_listing_no_img'); |
|
1394 | - } |
|
1395 | - |
|
1396 | - if (!empty($default_img)) { |
|
1397 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
1398 | - $uploads_baseurl = $uploads['baseurl']; |
|
1399 | - $uploads_path = $uploads['path']; |
|
1400 | - |
|
1401 | - $img_arr = array(); |
|
1402 | - |
|
1403 | - $file_info = pathinfo($default_img); |
|
1404 | - |
|
1405 | - $file_name = $file_info['basename']; |
|
1406 | - |
|
1407 | - $img_arr['src'] = $default_img; |
|
1408 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1409 | - |
|
1410 | - $width = 0; |
|
1411 | - $height = 0; |
|
1412 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
|
1413 | - $imagesize = getimagesize($img_arr['path']); |
|
1414 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1415 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1416 | - } |
|
1417 | - $img_arr['width'] = $width; |
|
1418 | - $img_arr['height'] = $height; |
|
1419 | - |
|
1420 | - $img_arr['title'] = $post->post_title; // add the title to the array |
|
1421 | - } |
|
1422 | - } |
|
1423 | - |
|
1424 | - if (!empty($img_arr)) |
|
1425 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1426 | - else |
|
1427 | - return false; |
|
1428 | - } |
|
1364 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$img_src,$file_name,$uploads_url,$uploads_baseurl); |
|
1365 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1366 | + $width = 0; |
|
1367 | + $height = 0; |
|
1368 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
|
1369 | + $imagesize = getimagesize($img_arr['path']); |
|
1370 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1371 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1372 | + } |
|
1373 | + $img_arr['width'] = $width; |
|
1374 | + $img_arr['height'] = $height; |
|
1375 | + $img_arr['title'] = $post->post_title; |
|
1376 | + } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) { |
|
1377 | + foreach ($post_images as $image) { |
|
1378 | + return $image; |
|
1379 | + } |
|
1380 | + } else if ($no_image) { |
|
1381 | + $img_arr = array(); |
|
1382 | + |
|
1383 | + $default_img = ''; |
|
1384 | + if (isset($post->default_category) && $post->default_category) { |
|
1385 | + $default_cat = $post->default_category; |
|
1386 | + } else { |
|
1387 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
1388 | + } |
|
1389 | + |
|
1390 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
1391 | + $default_img = $default_catimg['src']; |
|
1392 | + elseif ($no_image) { |
|
1393 | + $default_img = get_option('geodir_listing_no_img'); |
|
1394 | + } |
|
1395 | + |
|
1396 | + if (!empty($default_img)) { |
|
1397 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
1398 | + $uploads_baseurl = $uploads['baseurl']; |
|
1399 | + $uploads_path = $uploads['path']; |
|
1400 | + |
|
1401 | + $img_arr = array(); |
|
1402 | + |
|
1403 | + $file_info = pathinfo($default_img); |
|
1404 | + |
|
1405 | + $file_name = $file_info['basename']; |
|
1406 | + |
|
1407 | + $img_arr['src'] = $default_img; |
|
1408 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1409 | + |
|
1410 | + $width = 0; |
|
1411 | + $height = 0; |
|
1412 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
|
1413 | + $imagesize = getimagesize($img_arr['path']); |
|
1414 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1415 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1416 | + } |
|
1417 | + $img_arr['width'] = $width; |
|
1418 | + $img_arr['height'] = $height; |
|
1419 | + |
|
1420 | + $img_arr['title'] = $post->post_title; // add the title to the array |
|
1421 | + } |
|
1422 | + } |
|
1423 | + |
|
1424 | + if (!empty($img_arr)) |
|
1425 | + return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1426 | + else |
|
1427 | + return false; |
|
1428 | + } |
|
1429 | 1429 | } |
1430 | 1430 | |
1431 | 1431 | if (!function_exists('geodir_show_featured_image')) { |
1432 | - /** |
|
1433 | - * Gets the post featured image. |
|
1434 | - * |
|
1435 | - * @since 1.0.0 |
|
1436 | - * @package GeoDirectory |
|
1437 | - * @param int|string $post_id The post ID. |
|
1438 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
1439 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
1440 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
1441 | - * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
1442 | - * @return bool|string Returns image html. |
|
1443 | - */ |
|
1444 | - function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
1445 | - { |
|
1446 | - $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
1447 | - |
|
1448 | - $html = geodir_show_image($image, $size, $no_image, false); |
|
1449 | - |
|
1450 | - if (!empty($html) && $echo) { |
|
1451 | - echo $html; |
|
1452 | - } elseif (!empty($html)) { |
|
1453 | - return $html; |
|
1454 | - } else |
|
1455 | - return false; |
|
1456 | - } |
|
1432 | + /** |
|
1433 | + * Gets the post featured image. |
|
1434 | + * |
|
1435 | + * @since 1.0.0 |
|
1436 | + * @package GeoDirectory |
|
1437 | + * @param int|string $post_id The post ID. |
|
1438 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
1439 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
1440 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
1441 | + * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
1442 | + * @return bool|string Returns image html. |
|
1443 | + */ |
|
1444 | + function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
1445 | + { |
|
1446 | + $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
1447 | + |
|
1448 | + $html = geodir_show_image($image, $size, $no_image, false); |
|
1449 | + |
|
1450 | + if (!empty($html) && $echo) { |
|
1451 | + echo $html; |
|
1452 | + } elseif (!empty($html)) { |
|
1453 | + return $html; |
|
1454 | + } else |
|
1455 | + return false; |
|
1456 | + } |
|
1457 | 1457 | } |
1458 | 1458 | |
1459 | 1459 | if (!function_exists('geodir_get_images')) { |
1460 | - /** |
|
1461 | - * Gets the post images. |
|
1462 | - * |
|
1463 | - * @since 1.0.0 |
|
1464 | - * @package GeoDirectory |
|
1465 | - * @global object $wpdb WordPress Database object. |
|
1466 | - * @param int $post_id The post ID. |
|
1467 | - * @param string $img_size Optional. Thumbnail size. |
|
1468 | - * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
1469 | - * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
1470 | - * @param int|string $limit Optional. Number of images. |
|
1471 | - * @return array|bool Returns images as an array. Each item is an object. |
|
1472 | - */ |
|
1473 | - function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
1474 | - { |
|
1475 | - global $wpdb; |
|
1476 | - if ($limit) { |
|
1477 | - $limit_q = " LIMIT $limit "; |
|
1478 | - } else { |
|
1479 | - $limit_q = ''; |
|
1480 | - } |
|
1481 | - $not_featured = ''; |
|
1482 | - $sub_dir = ''; |
|
1483 | - if (!$add_featured) |
|
1484 | - $not_featured = " AND is_featured = 0 "; |
|
1485 | - |
|
1486 | - $arrImages = $wpdb->get_results( |
|
1487 | - $wpdb->prepare( |
|
1488 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
1489 | - array('%image%', $post_id) |
|
1490 | - ) |
|
1491 | - ); |
|
1492 | - |
|
1493 | - $counter = 0; |
|
1494 | - $return_arr = array(); |
|
1495 | - |
|
1496 | - if (!empty($arrImages)) { |
|
1497 | - foreach ($arrImages as $attechment) { |
|
1498 | - |
|
1499 | - $img_arr = array(); |
|
1500 | - $img_arr['id'] = $attechment->ID; |
|
1501 | - $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
1502 | - |
|
1503 | - $file_info = pathinfo($attechment->file); |
|
1504 | - |
|
1505 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
1506 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
1507 | - |
|
1508 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
1509 | - $uploads_baseurl = $uploads['baseurl']; |
|
1510 | - $uploads_path = $uploads['path']; |
|
1511 | - |
|
1512 | - $file_name = $file_info['basename']; |
|
1513 | - |
|
1514 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
1515 | - /* |
|
1460 | + /** |
|
1461 | + * Gets the post images. |
|
1462 | + * |
|
1463 | + * @since 1.0.0 |
|
1464 | + * @package GeoDirectory |
|
1465 | + * @global object $wpdb WordPress Database object. |
|
1466 | + * @param int $post_id The post ID. |
|
1467 | + * @param string $img_size Optional. Thumbnail size. |
|
1468 | + * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
1469 | + * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
1470 | + * @param int|string $limit Optional. Number of images. |
|
1471 | + * @return array|bool Returns images as an array. Each item is an object. |
|
1472 | + */ |
|
1473 | + function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
1474 | + { |
|
1475 | + global $wpdb; |
|
1476 | + if ($limit) { |
|
1477 | + $limit_q = " LIMIT $limit "; |
|
1478 | + } else { |
|
1479 | + $limit_q = ''; |
|
1480 | + } |
|
1481 | + $not_featured = ''; |
|
1482 | + $sub_dir = ''; |
|
1483 | + if (!$add_featured) |
|
1484 | + $not_featured = " AND is_featured = 0 "; |
|
1485 | + |
|
1486 | + $arrImages = $wpdb->get_results( |
|
1487 | + $wpdb->prepare( |
|
1488 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
1489 | + array('%image%', $post_id) |
|
1490 | + ) |
|
1491 | + ); |
|
1492 | + |
|
1493 | + $counter = 0; |
|
1494 | + $return_arr = array(); |
|
1495 | + |
|
1496 | + if (!empty($arrImages)) { |
|
1497 | + foreach ($arrImages as $attechment) { |
|
1498 | + |
|
1499 | + $img_arr = array(); |
|
1500 | + $img_arr['id'] = $attechment->ID; |
|
1501 | + $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
1502 | + |
|
1503 | + $file_info = pathinfo($attechment->file); |
|
1504 | + |
|
1505 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
1506 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
1507 | + |
|
1508 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
1509 | + $uploads_baseurl = $uploads['baseurl']; |
|
1510 | + $uploads_path = $uploads['path']; |
|
1511 | + |
|
1512 | + $file_name = $file_info['basename']; |
|
1513 | + |
|
1514 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
1515 | + /* |
|
1516 | 1516 | * Allows the filter of image src for such things as CDN change. |
1517 | 1517 | * |
1518 | 1518 | * @since 1.5.7 |
@@ -1521,532 +1521,532 @@ discard block |
||
1521 | 1521 | * @param string $uploads_url The server upload directory url. |
1522 | 1522 | * @param string $uploads_baseurl The uploads dir base url. |
1523 | 1523 | */ |
1524 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl); |
|
1525 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1526 | - $width = 0; |
|
1527 | - $height = 0; |
|
1528 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
|
1529 | - $imagesize = getimagesize($img_arr['path']); |
|
1530 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1531 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1532 | - } |
|
1533 | - $img_arr['width'] = $width; |
|
1534 | - $img_arr['height'] = $height; |
|
1535 | - |
|
1536 | - $img_arr['file'] = $file_name; // add the title to the array |
|
1537 | - $img_arr['title'] = $attechment->title; // add the title to the array |
|
1538 | - $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
1539 | - $img_arr['content'] = $attechment->content; // add the description to the array |
|
1540 | - $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
1541 | - |
|
1542 | - $return_arr[] = (object)$img_arr; |
|
1543 | - |
|
1544 | - $counter++; |
|
1545 | - } |
|
1546 | - //return (object)$return_arr; |
|
1547 | - /** |
|
1548 | - * Filter the images array so things can be changed. |
|
1549 | - * |
|
1550 | - * @since 1.6.20 |
|
1551 | - * @param array $return_arr The array of image objects. |
|
1552 | - */ |
|
1553 | - return apply_filters('geodir_get_images_arr',$return_arr); |
|
1554 | - } else if ($no_images) { |
|
1555 | - $default_img = ''; |
|
1556 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
1557 | - $post_type = get_post_type($post_id); |
|
1558 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
1559 | - $default_img = $default_catimg['src']; |
|
1560 | - elseif ($no_images) { |
|
1561 | - $default_img = get_option('geodir_listing_no_img'); |
|
1562 | - } |
|
1563 | - |
|
1564 | - if (!empty($default_img)) { |
|
1565 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
1524 | + $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl); |
|
1525 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1526 | + $width = 0; |
|
1527 | + $height = 0; |
|
1528 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
|
1529 | + $imagesize = getimagesize($img_arr['path']); |
|
1530 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1531 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1532 | + } |
|
1533 | + $img_arr['width'] = $width; |
|
1534 | + $img_arr['height'] = $height; |
|
1535 | + |
|
1536 | + $img_arr['file'] = $file_name; // add the title to the array |
|
1537 | + $img_arr['title'] = $attechment->title; // add the title to the array |
|
1538 | + $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
1539 | + $img_arr['content'] = $attechment->content; // add the description to the array |
|
1540 | + $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
1541 | + |
|
1542 | + $return_arr[] = (object)$img_arr; |
|
1543 | + |
|
1544 | + $counter++; |
|
1545 | + } |
|
1546 | + //return (object)$return_arr; |
|
1547 | + /** |
|
1548 | + * Filter the images array so things can be changed. |
|
1549 | + * |
|
1550 | + * @since 1.6.20 |
|
1551 | + * @param array $return_arr The array of image objects. |
|
1552 | + */ |
|
1553 | + return apply_filters('geodir_get_images_arr',$return_arr); |
|
1554 | + } else if ($no_images) { |
|
1555 | + $default_img = ''; |
|
1556 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
1557 | + $post_type = get_post_type($post_id); |
|
1558 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
1559 | + $default_img = $default_catimg['src']; |
|
1560 | + elseif ($no_images) { |
|
1561 | + $default_img = get_option('geodir_listing_no_img'); |
|
1562 | + } |
|
1563 | + |
|
1564 | + if (!empty($default_img)) { |
|
1565 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
1566 | 1566 | |
1567 | - $image_path = $default_img; |
|
1568 | - if (!path_is_absolute($image_path)) { |
|
1569 | - $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
1570 | - } |
|
1571 | - |
|
1572 | - $file_info = pathinfo($default_img); |
|
1573 | - $file_name = $file_info['basename']; |
|
1574 | - |
|
1575 | - $width = ''; |
|
1576 | - $height = ''; |
|
1577 | - if (is_file($image_path) && file_exists($image_path)) { |
|
1578 | - $imagesize = getimagesize($image_path); |
|
1579 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1580 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1581 | - } |
|
1567 | + $image_path = $default_img; |
|
1568 | + if (!path_is_absolute($image_path)) { |
|
1569 | + $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
1570 | + } |
|
1571 | + |
|
1572 | + $file_info = pathinfo($default_img); |
|
1573 | + $file_name = $file_info['basename']; |
|
1574 | + |
|
1575 | + $width = ''; |
|
1576 | + $height = ''; |
|
1577 | + if (is_file($image_path) && file_exists($image_path)) { |
|
1578 | + $imagesize = getimagesize($image_path); |
|
1579 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1580 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1581 | + } |
|
1582 | 1582 | |
1583 | - $img_arr = array(); |
|
1584 | - $img_arr['src'] = $default_img; |
|
1585 | - $img_arr['path'] = $image_path; |
|
1586 | - $img_arr['width'] = $width; |
|
1587 | - $img_arr['height'] = $height; |
|
1588 | - $img_arr['file'] = $file_name; // add the title to the array |
|
1589 | - $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
1590 | - $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
1591 | - |
|
1592 | - $return_arr[] = (object)$img_arr; |
|
1593 | - |
|
1594 | - /** |
|
1595 | - * Filter the images array so things can be changed. |
|
1596 | - * |
|
1597 | - * @since 1.6.20 |
|
1598 | - * @param array $return_arr The array of image objects. |
|
1599 | - */ |
|
1600 | - return apply_filters('geodir_get_images_arr',$return_arr); |
|
1601 | - } else |
|
1602 | - return false; |
|
1603 | - } |
|
1604 | - } |
|
1583 | + $img_arr = array(); |
|
1584 | + $img_arr['src'] = $default_img; |
|
1585 | + $img_arr['path'] = $image_path; |
|
1586 | + $img_arr['width'] = $width; |
|
1587 | + $img_arr['height'] = $height; |
|
1588 | + $img_arr['file'] = $file_name; // add the title to the array |
|
1589 | + $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
1590 | + $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
1591 | + |
|
1592 | + $return_arr[] = (object)$img_arr; |
|
1593 | + |
|
1594 | + /** |
|
1595 | + * Filter the images array so things can be changed. |
|
1596 | + * |
|
1597 | + * @since 1.6.20 |
|
1598 | + * @param array $return_arr The array of image objects. |
|
1599 | + */ |
|
1600 | + return apply_filters('geodir_get_images_arr',$return_arr); |
|
1601 | + } else |
|
1602 | + return false; |
|
1603 | + } |
|
1604 | + } |
|
1605 | 1605 | } |
1606 | 1606 | |
1607 | 1607 | if (!function_exists('geodir_show_image')) { |
1608 | - /** |
|
1609 | - * Show image using image details. |
|
1610 | - * |
|
1611 | - * @since 1.0.0 |
|
1612 | - * @package GeoDirectory |
|
1613 | - * @param array|object $request Image info either as an array or object. |
|
1614 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
1615 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
1616 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
1617 | - * @return bool|string Returns image html. |
|
1618 | - */ |
|
1619 | - function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
1620 | - { |
|
1621 | - $image = new stdClass(); |
|
1622 | - |
|
1623 | - $html = ''; |
|
1624 | - if (!empty($request)) { |
|
1625 | - if (!is_object($request)){ |
|
1626 | - $request = (object)$request; |
|
1627 | - } |
|
1628 | - |
|
1629 | - if (isset($request->src) && !isset($request->path)) { |
|
1630 | - $request->path = $request->src; |
|
1631 | - } |
|
1632 | - |
|
1633 | - /* |
|
1608 | + /** |
|
1609 | + * Show image using image details. |
|
1610 | + * |
|
1611 | + * @since 1.0.0 |
|
1612 | + * @package GeoDirectory |
|
1613 | + * @param array|object $request Image info either as an array or object. |
|
1614 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
1615 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
1616 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
1617 | + * @return bool|string Returns image html. |
|
1618 | + */ |
|
1619 | + function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
1620 | + { |
|
1621 | + $image = new stdClass(); |
|
1622 | + |
|
1623 | + $html = ''; |
|
1624 | + if (!empty($request)) { |
|
1625 | + if (!is_object($request)){ |
|
1626 | + $request = (object)$request; |
|
1627 | + } |
|
1628 | + |
|
1629 | + if (isset($request->src) && !isset($request->path)) { |
|
1630 | + $request->path = $request->src; |
|
1631 | + } |
|
1632 | + |
|
1633 | + /* |
|
1634 | 1634 | * getimagesize() works faster from path than url so we try and get path if we can. |
1635 | 1635 | */ |
1636 | - $upload_dir = wp_upload_dir(); |
|
1637 | - $img_no_http = str_replace(array("http://", "https://"), "", $request->path); |
|
1638 | - $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']); |
|
1639 | - if (strpos($img_no_http, $upload_no_http) !== false) { |
|
1640 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
1641 | - } |
|
1636 | + $upload_dir = wp_upload_dir(); |
|
1637 | + $img_no_http = str_replace(array("http://", "https://"), "", $request->path); |
|
1638 | + $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']); |
|
1639 | + if (strpos($img_no_http, $upload_no_http) !== false) { |
|
1640 | + $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
1641 | + } |
|
1642 | 1642 | |
1643 | - $width = 0; |
|
1644 | - $height = 0; |
|
1645 | - if (is_file($request->path) && file_exists($request->path)) { |
|
1646 | - $imagesize = getimagesize($request->path); |
|
1647 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1648 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1649 | - } |
|
1650 | - |
|
1651 | - |
|
1652 | - $image->src = $request->src; |
|
1653 | - $image->width = $width; |
|
1654 | - $image->height = $height; |
|
1655 | - $image->title = isset($request->title) ? $request->title : ''; |
|
1656 | - |
|
1657 | - $max_size = (object)geodir_get_imagesize($size); |
|
1658 | - |
|
1659 | - if (!is_wp_error($max_size)) { |
|
1660 | - if ($image->width) { |
|
1661 | - if ($image->height >= $image->width) { |
|
1662 | - $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
1663 | - } else if ($image->width < ($max_size->h)) { |
|
1664 | - $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
1665 | - } else |
|
1666 | - $width_per = 100; |
|
1667 | - } |
|
1668 | - |
|
1669 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){ |
|
1670 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
1671 | - } else { |
|
1672 | - if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){ |
|
1673 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');" title="'.$image->title.'" aria-label="'.$image->title.'" ></div>'; |
|
1674 | - }else{ |
|
1675 | - $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" title="'.$image->title.'" aria-label="'.$image->title.'"></div>'; |
|
1676 | - } |
|
1677 | - |
|
1678 | - } |
|
1679 | - } |
|
1680 | - } |
|
1681 | - |
|
1682 | - if (!empty($html) && $echo) { |
|
1683 | - echo $html; |
|
1684 | - } elseif (!empty($html)) { |
|
1685 | - return $html; |
|
1686 | - } else |
|
1687 | - return false; |
|
1688 | - } |
|
1689 | -} |
|
1643 | + $width = 0; |
|
1644 | + $height = 0; |
|
1645 | + if (is_file($request->path) && file_exists($request->path)) { |
|
1646 | + $imagesize = getimagesize($request->path); |
|
1647 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
1648 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
1649 | + } |
|
1690 | 1650 | |
1691 | -if (!function_exists('geodir_set_post_terms')) { |
|
1692 | - /** |
|
1693 | - * Set post Categories. |
|
1694 | - * |
|
1695 | - * @since 1.0.0 |
|
1696 | - * @package GeoDirectory |
|
1697 | - * @global object $wpdb WordPress Database object. |
|
1698 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
1699 | - * @param int $post_id The post ID. |
|
1700 | - * @param array $terms An array of term objects. |
|
1701 | - * @param array $tt_ids An array of term taxonomy IDs. |
|
1702 | - * @param string $taxonomy Taxonomy slug. |
|
1703 | - */ |
|
1704 | - function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
1705 | - { |
|
1706 | - global $wpdb, $plugin_prefix; |
|
1707 | 1651 | |
1708 | - $post_type = get_post_type($post_id); |
|
1652 | + $image->src = $request->src; |
|
1653 | + $image->width = $width; |
|
1654 | + $image->height = $height; |
|
1655 | + $image->title = isset($request->title) ? $request->title : ''; |
|
1709 | 1656 | |
1710 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1657 | + $max_size = (object)geodir_get_imagesize($size); |
|
1711 | 1658 | |
1712 | - if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) { |
|
1659 | + if (!is_wp_error($max_size)) { |
|
1660 | + if ($image->width) { |
|
1661 | + if ($image->height >= $image->width) { |
|
1662 | + $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
1663 | + } else if ($image->width < ($max_size->h)) { |
|
1664 | + $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
1665 | + } else |
|
1666 | + $width_per = 100; |
|
1667 | + } |
|
1713 | 1668 | |
1714 | - if ($taxonomy == $post_type . '_tags') { |
|
1715 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') { |
|
1716 | - geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
1717 | - } |
|
1718 | - } elseif ($taxonomy == $post_type . 'category') { |
|
1719 | - $srcharr = array('"', '\\'); |
|
1720 | - $replarr = array(""", ''); |
|
1669 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])){ |
|
1670 | + $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
1671 | + } else { |
|
1672 | + if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){ |
|
1673 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');" title="'.$image->title.'" aria-label="'.$image->title.'" ></div>'; |
|
1674 | + }else{ |
|
1675 | + $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" title="'.$image->title.'" aria-label="'.$image->title.'"></div>'; |
|
1676 | + } |
|
1721 | 1677 | |
1722 | - $post_obj = get_post($post_id); |
|
1678 | + } |
|
1679 | + } |
|
1680 | + } |
|
1681 | + |
|
1682 | + if (!empty($html) && $echo) { |
|
1683 | + echo $html; |
|
1684 | + } elseif (!empty($html)) { |
|
1685 | + return $html; |
|
1686 | + } else |
|
1687 | + return false; |
|
1688 | + } |
|
1689 | +} |
|
1723 | 1690 | |
1724 | - $cat_ids = array('0'); |
|
1725 | - if (is_array($tt_ids)) |
|
1726 | - $cat_ids = $tt_ids; |
|
1691 | +if (!function_exists('geodir_set_post_terms')) { |
|
1692 | + /** |
|
1693 | + * Set post Categories. |
|
1694 | + * |
|
1695 | + * @since 1.0.0 |
|
1696 | + * @package GeoDirectory |
|
1697 | + * @global object $wpdb WordPress Database object. |
|
1698 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
1699 | + * @param int $post_id The post ID. |
|
1700 | + * @param array $terms An array of term objects. |
|
1701 | + * @param array $tt_ids An array of term taxonomy IDs. |
|
1702 | + * @param string $taxonomy Taxonomy slug. |
|
1703 | + */ |
|
1704 | + function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
1705 | + { |
|
1706 | + global $wpdb, $plugin_prefix; |
|
1707 | + |
|
1708 | + $post_type = get_post_type($post_id); |
|
1709 | + |
|
1710 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
1711 | + |
|
1712 | + if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) { |
|
1713 | + |
|
1714 | + if ($taxonomy == $post_type . '_tags') { |
|
1715 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') { |
|
1716 | + geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
1717 | + } |
|
1718 | + } elseif ($taxonomy == $post_type . 'category') { |
|
1719 | + $srcharr = array('"', '\\'); |
|
1720 | + $replarr = array(""", ''); |
|
1727 | 1721 | |
1722 | + $post_obj = get_post($post_id); |
|
1728 | 1723 | |
1729 | - if (!empty($cat_ids)) { |
|
1730 | - $cat_ids_array = $cat_ids; |
|
1731 | - $cat_ids_length = count($cat_ids_array); |
|
1732 | - $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
1733 | - $format = implode(',', $cat_ids_format); |
|
1724 | + $cat_ids = array('0'); |
|
1725 | + if (is_array($tt_ids)) |
|
1726 | + $cat_ids = $tt_ids; |
|
1734 | 1727 | |
1735 | - $cat_ids_array_del = $cat_ids_array; |
|
1736 | - $cat_ids_array_del[] = $post_id; |
|
1737 | 1728 | |
1738 | - $wpdb->get_var( |
|
1739 | - $wpdb->prepare( |
|
1740 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
1741 | - $cat_ids_array_del |
|
1742 | - ) |
|
1743 | - ); |
|
1729 | + if (!empty($cat_ids)) { |
|
1730 | + $cat_ids_array = $cat_ids; |
|
1731 | + $cat_ids_length = count($cat_ids_array); |
|
1732 | + $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
1733 | + $format = implode(',', $cat_ids_format); |
|
1744 | 1734 | |
1735 | + $cat_ids_array_del = $cat_ids_array; |
|
1736 | + $cat_ids_array_del[] = $post_id; |
|
1745 | 1737 | |
1746 | - $post_term = $wpdb->get_col( |
|
1747 | - $wpdb->prepare( |
|
1748 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
1749 | - $cat_ids_array |
|
1750 | - ) |
|
1751 | - ); |
|
1738 | + $wpdb->get_var( |
|
1739 | + $wpdb->prepare( |
|
1740 | + "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
1741 | + $cat_ids_array_del |
|
1742 | + ) |
|
1743 | + ); |
|
1752 | 1744 | |
1753 | - } |
|
1754 | 1745 | |
1755 | - $post_marker_json = ''; |
|
1746 | + $post_term = $wpdb->get_col( |
|
1747 | + $wpdb->prepare( |
|
1748 | + "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
1749 | + $cat_ids_array |
|
1750 | + ) |
|
1751 | + ); |
|
1756 | 1752 | |
1757 | - if (!empty($post_term)): |
|
1753 | + } |
|
1758 | 1754 | |
1759 | - foreach ($post_term as $cat_id): |
|
1755 | + $post_marker_json = ''; |
|
1760 | 1756 | |
1761 | - $term_icon_url = geodir_get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
1762 | - $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
1757 | + if (!empty($post_term)): |
|
1763 | 1758 | |
1764 | - $post_title = $post_obj->title; |
|
1765 | - $title = str_replace($srcharr, $replarr, $post_title); |
|
1759 | + foreach ($post_term as $cat_id): |
|
1766 | 1760 | |
1767 | - $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
1768 | - $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
1761 | + $term_icon_url = geodir_get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
1762 | + $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
1769 | 1763 | |
1770 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true))); |
|
1771 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
1764 | + $post_title = $post_obj->title; |
|
1765 | + $title = str_replace($srcharr, $replarr, $post_title); |
|
1772 | 1766 | |
1773 | - $json = '{'; |
|
1774 | - $json .= '"id":"' . $post_id . '",'; |
|
1775 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
1776 | - $json .= '"long_pos": "' . $lng . '",'; |
|
1777 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
1778 | - $json .= '"icon":"' . $term_icon . '",'; |
|
1779 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
1780 | - $json .= '}'; |
|
1767 | + $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
1768 | + $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
1781 | 1769 | |
1770 | + $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true))); |
|
1771 | + $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
1782 | 1772 | |
1783 | - if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
1784 | - $post_marker_json = $json; |
|
1773 | + $json = '{'; |
|
1774 | + $json .= '"id":"' . $post_id . '",'; |
|
1775 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
1776 | + $json .= '"long_pos": "' . $lng . '",'; |
|
1777 | + $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
1778 | + $json .= '"icon":"' . $term_icon . '",'; |
|
1779 | + $json .= '"group":"catgroup' . $cat_id . '"'; |
|
1780 | + $json .= '}'; |
|
1785 | 1781 | |
1786 | 1782 | |
1787 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) { |
|
1783 | + if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
1784 | + $post_marker_json = $json; |
|
1788 | 1785 | |
1789 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET |
|
1786 | + |
|
1787 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) { |
|
1788 | + |
|
1789 | + $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET |
|
1790 | 1790 | post_title = %s, |
1791 | 1791 | json = %s |
1792 | 1792 | WHERE post_id = %d AND cat_id = %d ", |
1793 | - array($post_title, $json, $post_id, $cat_id)); |
|
1793 | + array($post_title, $json, $post_id, $cat_id)); |
|
1794 | 1794 | |
1795 | - } else { |
|
1795 | + } else { |
|
1796 | 1796 | |
1797 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET |
|
1797 | + $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET |
|
1798 | 1798 | post_id = %d, |
1799 | 1799 | post_title = %s, |
1800 | 1800 | cat_id = %d, |
1801 | 1801 | json = %s", |
1802 | - array($post_id, $post_title, $cat_id, $json)); |
|
1802 | + array($post_id, $post_title, $cat_id, $json)); |
|
1803 | 1803 | |
1804 | - } |
|
1804 | + } |
|
1805 | 1805 | |
1806 | - $wpdb->query($json_query); |
|
1806 | + $wpdb->query($json_query); |
|
1807 | 1807 | |
1808 | - endforeach; |
|
1808 | + endforeach; |
|
1809 | 1809 | |
1810 | - endif; |
|
1810 | + endif; |
|
1811 | 1811 | |
1812 | - if (!empty($post_term) && is_array($post_term)) { |
|
1813 | - $categories = implode(',', $post_term); |
|
1812 | + if (!empty($post_term) && is_array($post_term)) { |
|
1813 | + $categories = implode(',', $post_term); |
|
1814 | 1814 | |
1815 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
1815 | + if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
1816 | 1816 | |
1817 | - if (empty($post_marker_json)) |
|
1818 | - $post_marker_json = isset($json) ? $json : ''; |
|
1817 | + if (empty($post_marker_json)) |
|
1818 | + $post_marker_json = isset($json) ? $json : ''; |
|
1819 | 1819 | |
1820 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
1820 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
1821 | 1821 | |
1822 | - $wpdb->query( |
|
1823 | - $wpdb->prepare( |
|
1824 | - "UPDATE " . $table . " SET |
|
1822 | + $wpdb->query( |
|
1823 | + $wpdb->prepare( |
|
1824 | + "UPDATE " . $table . " SET |
|
1825 | 1825 | " . $taxonomy . " = %s, |
1826 | 1826 | marker_json = %s |
1827 | 1827 | where post_id = %d", |
1828 | - array($categories, $post_marker_json, $post_id) |
|
1829 | - ) |
|
1830 | - ); |
|
1828 | + array($categories, $post_marker_json, $post_id) |
|
1829 | + ) |
|
1830 | + ); |
|
1831 | 1831 | |
1832 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') { |
|
1832 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') { |
|
1833 | 1833 | |
1834 | - $categories = trim($categories, ','); |
|
1834 | + $categories = trim($categories, ','); |
|
1835 | 1835 | |
1836 | - if ($categories) { |
|
1836 | + if ($categories) { |
|
1837 | 1837 | |
1838 | - $categories = explode(',', $categories); |
|
1838 | + $categories = explode(',', $categories); |
|
1839 | 1839 | |
1840 | - $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
1840 | + $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
1841 | 1841 | |
1842 | - if (!in_array($default_category, $categories)) { |
|
1842 | + if (!in_array($default_category, $categories)) { |
|
1843 | 1843 | |
1844 | - $wpdb->query( |
|
1845 | - $wpdb->prepare( |
|
1846 | - "UPDATE " . $table . " SET |
|
1844 | + $wpdb->query( |
|
1845 | + $wpdb->prepare( |
|
1846 | + "UPDATE " . $table . " SET |
|
1847 | 1847 | default_category = %s |
1848 | 1848 | where post_id = %d", |
1849 | - array($categories[0], $post_id) |
|
1850 | - ) |
|
1851 | - ); |
|
1849 | + array($categories[0], $post_id) |
|
1850 | + ) |
|
1851 | + ); |
|
1852 | 1852 | |
1853 | - $default_category = $categories[0]; |
|
1853 | + $default_category = $categories[0]; |
|
1854 | 1854 | |
1855 | - } |
|
1855 | + } |
|
1856 | 1856 | |
1857 | - if ($default_category == '') |
|
1858 | - $default_category = $categories[0]; |
|
1857 | + if ($default_category == '') |
|
1858 | + $default_category = $categories[0]; |
|
1859 | 1859 | |
1860 | - geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
1860 | + geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
1861 | 1861 | |
1862 | - } |
|
1862 | + } |
|
1863 | 1863 | |
1864 | - } |
|
1864 | + } |
|
1865 | 1865 | |
1866 | 1866 | |
1867 | - } else { |
|
1867 | + } else { |
|
1868 | 1868 | |
1869 | - $wpdb->query( |
|
1870 | - $wpdb->prepare( |
|
1871 | - "INSERT INTO " . $table . " SET |
|
1869 | + $wpdb->query( |
|
1870 | + $wpdb->prepare( |
|
1871 | + "INSERT INTO " . $table . " SET |
|
1872 | 1872 | post_id = %d, |
1873 | 1873 | " . $taxonomy . " = %s, |
1874 | 1874 | marker_json = %s ", |
1875 | 1875 | |
1876 | - array($post_id, $categories, $post_marker_json) |
|
1877 | - ) |
|
1878 | - ); |
|
1879 | - } |
|
1880 | - } |
|
1881 | - } |
|
1882 | - } |
|
1883 | - } |
|
1876 | + array($post_id, $categories, $post_marker_json) |
|
1877 | + ) |
|
1878 | + ); |
|
1879 | + } |
|
1880 | + } |
|
1881 | + } |
|
1882 | + } |
|
1883 | + } |
|
1884 | 1884 | } |
1885 | 1885 | |
1886 | 1886 | if (!function_exists('geodir_get_infowindow_html')) { |
1887 | - /** |
|
1888 | - * Set post Map Marker info html. |
|
1889 | - * |
|
1890 | - * @since 1.0.0 |
|
1891 | - * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
1892 | - * @since 1.6.16 Changes for disable review stars for certain post type. |
|
1893 | - * @since 1.6.18 Fix: Map marker not showing custom fields in bubble info. |
|
1894 | - * @package GeoDirectory |
|
1895 | - * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
1896 | - * @global object $gd_session GeoDirectory Session object. |
|
1897 | - * @param object $postinfo_obj The post details object. |
|
1898 | - * @param string $post_preview Is this a post preview?. |
|
1899 | - * @global object $post WordPress Post object. |
|
1900 | - * @return mixed|string|void |
|
1901 | - */ |
|
1902 | - function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') { |
|
1903 | - global $preview, $post, $gd_session; |
|
1904 | - $srcharr = array("'", "/", "-", '"', '\\'); |
|
1905 | - $replarr = array("′", "⁄", "–", "“", ''); |
|
1906 | - |
|
1907 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') { |
|
1908 | - $ID = ''; |
|
1909 | - $plink = ''; |
|
1910 | - |
|
1911 | - if (isset($postinfo_obj->pid)) { |
|
1912 | - $ID = $postinfo_obj->pid; |
|
1913 | - $plink = get_permalink($ID); |
|
1914 | - } |
|
1915 | - |
|
1916 | - $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
1917 | - $lat = $postinfo_obj->post_latitude; |
|
1918 | - $lng = $postinfo_obj->post_longitude; |
|
1919 | - } else { |
|
1920 | - $ID = $postinfo_obj->post_id; |
|
1921 | - $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
1922 | - $title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08 |
|
1923 | - $plink = get_permalink($ID); |
|
1924 | - $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
1925 | - $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
1926 | - } |
|
1887 | + /** |
|
1888 | + * Set post Map Marker info html. |
|
1889 | + * |
|
1890 | + * @since 1.0.0 |
|
1891 | + * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
1892 | + * @since 1.6.16 Changes for disable review stars for certain post type. |
|
1893 | + * @since 1.6.18 Fix: Map marker not showing custom fields in bubble info. |
|
1894 | + * @package GeoDirectory |
|
1895 | + * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
1896 | + * @global object $gd_session GeoDirectory Session object. |
|
1897 | + * @param object $postinfo_obj The post details object. |
|
1898 | + * @param string $post_preview Is this a post preview?. |
|
1899 | + * @global object $post WordPress Post object. |
|
1900 | + * @return mixed|string|void |
|
1901 | + */ |
|
1902 | + function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') { |
|
1903 | + global $preview, $post, $gd_session; |
|
1904 | + $srcharr = array("'", "/", "-", '"', '\\'); |
|
1905 | + $replarr = array("′", "⁄", "–", "“", ''); |
|
1906 | + |
|
1907 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') { |
|
1908 | + $ID = ''; |
|
1909 | + $plink = ''; |
|
1910 | + |
|
1911 | + if (isset($postinfo_obj->pid)) { |
|
1912 | + $ID = $postinfo_obj->pid; |
|
1913 | + $plink = get_permalink($ID); |
|
1914 | + } |
|
1915 | + |
|
1916 | + $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
1917 | + $lat = $postinfo_obj->post_latitude; |
|
1918 | + $lng = $postinfo_obj->post_longitude; |
|
1919 | + } else { |
|
1920 | + $ID = $postinfo_obj->post_id; |
|
1921 | + $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
1922 | + $title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08 |
|
1923 | + $plink = get_permalink($ID); |
|
1924 | + $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
1925 | + $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
1926 | + } |
|
1927 | 1927 | |
1928 | - // Some theme overwrites global gd listing $post |
|
1929 | - if (!empty($ID) && (!empty($post->ID) && $post->ID != $ID) || empty($post)) { |
|
1930 | - $post = geodir_get_post_info($ID); |
|
1931 | - } |
|
1928 | + // Some theme overwrites global gd listing $post |
|
1929 | + if (!empty($ID) && (!empty($post->ID) && $post->ID != $ID) || empty($post)) { |
|
1930 | + $post = geodir_get_post_info($ID); |
|
1931 | + } |
|
1932 | 1932 | |
1933 | - $post_type = $ID ? get_post_type($ID) : ''; |
|
1934 | - |
|
1935 | - // filter field as per price package |
|
1936 | - global $geodir_addon_list; |
|
1937 | - if ($post_type && defined('GEODIRPAYMENT_VERSION')) { |
|
1938 | - $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
1939 | - $field_name = 'geodir_contact'; |
|
1940 | - if (!check_field_visibility($package_id, $field_name, $post_type)) { |
|
1941 | - $contact = ''; |
|
1942 | - } |
|
1943 | - |
|
1944 | - $field_name = 'geodir_timing'; |
|
1945 | - if (!check_field_visibility($package_id, $field_name, $post_type)) { |
|
1946 | - $timing = ''; |
|
1947 | - } |
|
1948 | - } |
|
1949 | - |
|
1950 | - if ($lat && $lng) { |
|
1951 | - ob_start(); ?> |
|
1933 | + $post_type = $ID ? get_post_type($ID) : ''; |
|
1934 | + |
|
1935 | + // filter field as per price package |
|
1936 | + global $geodir_addon_list; |
|
1937 | + if ($post_type && defined('GEODIRPAYMENT_VERSION')) { |
|
1938 | + $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
1939 | + $field_name = 'geodir_contact'; |
|
1940 | + if (!check_field_visibility($package_id, $field_name, $post_type)) { |
|
1941 | + $contact = ''; |
|
1942 | + } |
|
1943 | + |
|
1944 | + $field_name = 'geodir_timing'; |
|
1945 | + if (!check_field_visibility($package_id, $field_name, $post_type)) { |
|
1946 | + $timing = ''; |
|
1947 | + } |
|
1948 | + } |
|
1949 | + |
|
1950 | + if ($lat && $lng) { |
|
1951 | + ob_start(); ?> |
|
1952 | 1952 | <div class="gd-bubble" style=""> |
1953 | 1953 | <div class="gd-bubble-inside"> |
1954 | 1954 | <?php |
1955 | - $comment_count = ''; |
|
1956 | - $rating_star = ''; |
|
1957 | - if ($ID != '' && $post_type != '' && !geodir_cpt_has_rating_disabled($post_type)) { |
|
1958 | - $rating_star = ''; |
|
1959 | - $comment_count = geodir_get_review_count_total($ID); |
|
1960 | - |
|
1961 | - if (!$preview) { |
|
1962 | - $post_avgratings = geodir_get_post_rating($ID); |
|
1963 | - |
|
1964 | - $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
1965 | - |
|
1966 | - /** |
|
1967 | - * Filter to change rating stars |
|
1968 | - * |
|
1969 | - * You can use this filter to change Rating stars. |
|
1970 | - * |
|
1971 | - * @since 1.0.0 |
|
1972 | - * @package GeoDirectory |
|
1973 | - * @param string $rating_star Rating stars. |
|
1974 | - * @param float $post_avgratings Average ratings of the post. |
|
1975 | - * @param int $ID The post ID. |
|
1976 | - */ |
|
1977 | - $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID); |
|
1978 | - } |
|
1979 | - } |
|
1980 | - ?> |
|
1955 | + $comment_count = ''; |
|
1956 | + $rating_star = ''; |
|
1957 | + if ($ID != '' && $post_type != '' && !geodir_cpt_has_rating_disabled($post_type)) { |
|
1958 | + $rating_star = ''; |
|
1959 | + $comment_count = geodir_get_review_count_total($ID); |
|
1960 | + |
|
1961 | + if (!$preview) { |
|
1962 | + $post_avgratings = geodir_get_post_rating($ID); |
|
1963 | + |
|
1964 | + $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
1965 | + |
|
1966 | + /** |
|
1967 | + * Filter to change rating stars |
|
1968 | + * |
|
1969 | + * You can use this filter to change Rating stars. |
|
1970 | + * |
|
1971 | + * @since 1.0.0 |
|
1972 | + * @package GeoDirectory |
|
1973 | + * @param string $rating_star Rating stars. |
|
1974 | + * @param float $post_avgratings Average ratings of the post. |
|
1975 | + * @param int $ID The post ID. |
|
1976 | + */ |
|
1977 | + $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID); |
|
1978 | + } |
|
1979 | + } |
|
1980 | + ?> |
|
1981 | 1981 | <div class="geodir-bubble_desc"> |
1982 | 1982 | <h4> |
1983 | 1983 | <a href="<?php if ($plink != '') { |
1984 | - echo $plink; |
|
1985 | - } else { |
|
1986 | - echo 'javascript:void(0);'; |
|
1987 | - } ?>"><?php echo $title; ?></a> |
|
1984 | + echo $plink; |
|
1985 | + } else { |
|
1986 | + echo 'javascript:void(0);'; |
|
1987 | + } ?>"><?php echo $title; ?></a> |
|
1988 | 1988 | </h4> |
1989 | 1989 | <?php |
1990 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') { |
|
1991 | - $post_images = array(); |
|
1992 | - if (!empty($postinfo_obj->post_images)) { |
|
1993 | - $post_images = explode(",", $postinfo_obj->post_images); |
|
1994 | - } |
|
1995 | - |
|
1996 | - if (!empty($post_images)) { |
|
1997 | - ?> |
|
1990 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') { |
|
1991 | + $post_images = array(); |
|
1992 | + if (!empty($postinfo_obj->post_images)) { |
|
1993 | + $post_images = explode(",", $postinfo_obj->post_images); |
|
1994 | + } |
|
1995 | + |
|
1996 | + if (!empty($post_images)) { |
|
1997 | + ?> |
|
1998 | 1998 | <div class="geodir-bubble_image"><a href="<?php if ($plink != '') { |
1999 | - echo $plink; |
|
2000 | - } else { |
|
2001 | - echo 'javascript:void(0);'; |
|
2002 | - } ?>"><img alt="bubble image" style="max-height:50px;" |
|
1999 | + echo $plink; |
|
2000 | + } else { |
|
2001 | + echo 'javascript:void(0);'; |
|
2002 | + } ?>"><img alt="bubble image" style="max-height:50px;" |
|
2003 | 2003 | src="<?php echo $post_images[0]; ?>"/></a></div> |
2004 | 2004 | <?php |
2005 | - }else{ |
|
2006 | - echo '<div class="geodir-bubble_image"></div>'; |
|
2007 | - } |
|
2008 | - } else { |
|
2009 | - if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) { |
|
2010 | - ?> |
|
2005 | + }else{ |
|
2006 | + echo '<div class="geodir-bubble_image"></div>'; |
|
2007 | + } |
|
2008 | + } else { |
|
2009 | + if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) { |
|
2010 | + ?> |
|
2011 | 2011 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
2012 | 2012 | <?php |
2013 | - }else{ |
|
2014 | - echo '<div class="geodir-bubble_image"></div>'; |
|
2015 | - } |
|
2016 | - } |
|
2017 | - ?> |
|
2013 | + }else{ |
|
2014 | + echo '<div class="geodir-bubble_image"></div>'; |
|
2015 | + } |
|
2016 | + } |
|
2017 | + ?> |
|
2018 | 2018 | <div class="geodir-bubble-meta-side"> |
2019 | 2019 | <?php |
2020 | - /** |
|
2021 | - * Fires before the meta info in the map info window. |
|
2022 | - * |
|
2023 | - * This can be used to add more info to the map info window before the normal meta info. |
|
2024 | - * |
|
2025 | - * @since 1.5.4 |
|
2026 | - * @param int $ID The post id. |
|
2027 | - * @param object $postinfo_obj The posts info as an object. |
|
2028 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
2029 | - */ |
|
2030 | - do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview); |
|
2031 | - |
|
2032 | - echo geodir_show_listing_info('mapbubble'); |
|
2033 | - |
|
2034 | - /** |
|
2035 | - * Fires after the meta info in the map info window. |
|
2036 | - * |
|
2037 | - * This can be used to add more info to the map info window after the normal meta info. |
|
2038 | - * |
|
2039 | - * @since 1.4.2 |
|
2040 | - * @param object $postinfo_obj The posts info as an object. |
|
2041 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
2042 | - */ |
|
2043 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview ); |
|
2044 | - ?> |
|
2020 | + /** |
|
2021 | + * Fires before the meta info in the map info window. |
|
2022 | + * |
|
2023 | + * This can be used to add more info to the map info window before the normal meta info. |
|
2024 | + * |
|
2025 | + * @since 1.5.4 |
|
2026 | + * @param int $ID The post id. |
|
2027 | + * @param object $postinfo_obj The posts info as an object. |
|
2028 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
2029 | + */ |
|
2030 | + do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview); |
|
2031 | + |
|
2032 | + echo geodir_show_listing_info('mapbubble'); |
|
2033 | + |
|
2034 | + /** |
|
2035 | + * Fires after the meta info in the map info window. |
|
2036 | + * |
|
2037 | + * This can be used to add more info to the map info window after the normal meta info. |
|
2038 | + * |
|
2039 | + * @since 1.4.2 |
|
2040 | + * @param object $postinfo_obj The posts info as an object. |
|
2041 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
2042 | + */ |
|
2043 | + do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview ); |
|
2044 | + ?> |
|
2045 | 2045 | </div> |
2046 | 2046 | <?php |
2047 | - if ($ID) { |
|
2048 | - $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID); |
|
2049 | - ?> |
|
2047 | + if ($ID) { |
|
2048 | + $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID); |
|
2049 | + ?> |
|
2050 | 2050 | <div class="geodir-bubble-meta-fade"></div> |
2051 | 2051 | <div class="geodir-bubble-meta-bottom"> |
2052 | 2052 | <?php if ($rating_star != '') { ?> |
@@ -2062,22 +2062,22 @@ discard block |
||
2062 | 2062 | </div> |
2063 | 2063 | </div> |
2064 | 2064 | <?php |
2065 | - $html = ob_get_clean(); |
|
2066 | - /** |
|
2067 | - * Filter to change infowindow html |
|
2068 | - * |
|
2069 | - * You can use this filter to change infowindow html. |
|
2070 | - * |
|
2071 | - * @since 1.0.0 |
|
2072 | - * @package GeoDirectory |
|
2073 | - * @param string $html Infowindow html. |
|
2074 | - * @param object $postinfo_obj The Post object. |
|
2075 | - * @param bool|string $post_preview Is this a post preview? |
|
2076 | - */ |
|
2077 | - $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview); |
|
2078 | - return $html; |
|
2079 | - } |
|
2080 | - } |
|
2065 | + $html = ob_get_clean(); |
|
2066 | + /** |
|
2067 | + * Filter to change infowindow html |
|
2068 | + * |
|
2069 | + * You can use this filter to change infowindow html. |
|
2070 | + * |
|
2071 | + * @since 1.0.0 |
|
2072 | + * @package GeoDirectory |
|
2073 | + * @param string $html Infowindow html. |
|
2074 | + * @param object $postinfo_obj The Post object. |
|
2075 | + * @param bool|string $post_preview Is this a post preview? |
|
2076 | + */ |
|
2077 | + $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview); |
|
2078 | + return $html; |
|
2079 | + } |
|
2080 | + } |
|
2081 | 2081 | } |
2082 | 2082 | |
2083 | 2083 | |
@@ -2091,47 +2091,47 @@ discard block |
||
2091 | 2091 | function geodir_new_post_default_status() |
2092 | 2092 | { |
2093 | 2093 | |
2094 | - $status = get_option( 'geodir_new_post_default_status' ); |
|
2094 | + $status = get_option( 'geodir_new_post_default_status' ); |
|
2095 | 2095 | |
2096 | - if ( empty( $status ) ) { |
|
2097 | - $status = 'publish'; |
|
2098 | - } |
|
2096 | + if ( empty( $status ) ) { |
|
2097 | + $status = 'publish'; |
|
2098 | + } |
|
2099 | 2099 | |
2100 | - /** |
|
2101 | - * Filter the new post status. |
|
2102 | - * |
|
2103 | - * @since 1.6.23 |
|
2104 | - */ |
|
2105 | - return apply_filters( 'geodir_new_post_default_status', $status ); |
|
2100 | + /** |
|
2101 | + * Filter the new post status. |
|
2102 | + * |
|
2103 | + * @since 1.6.23 |
|
2104 | + */ |
|
2105 | + return apply_filters( 'geodir_new_post_default_status', $status ); |
|
2106 | 2106 | |
2107 | 2107 | } |
2108 | 2108 | |
2109 | 2109 | if (!function_exists('geodir_change_post_status')) { |
2110 | - /** |
|
2111 | - * Change post status of a post. |
|
2112 | - * |
|
2113 | - * @global object $wpdb WordPress Database object. |
|
2114 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
2115 | - * @param int|string $post_id The post ID. |
|
2116 | - * @param string $status New post status. Ex: draft, publish etc. |
|
2117 | - */ |
|
2118 | - function geodir_change_post_status($post_id = '', $status = '') |
|
2119 | - { |
|
2120 | - global $wpdb, $plugin_prefix; |
|
2121 | - |
|
2122 | - $post_type = get_post_type($post_id); |
|
2123 | - |
|
2124 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2125 | - |
|
2126 | - $wpdb->query( |
|
2127 | - $wpdb->prepare( |
|
2128 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
2129 | - array($status, $post_id) |
|
2130 | - ) |
|
2131 | - ); |
|
2132 | - |
|
2133 | - |
|
2134 | - } |
|
2110 | + /** |
|
2111 | + * Change post status of a post. |
|
2112 | + * |
|
2113 | + * @global object $wpdb WordPress Database object. |
|
2114 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
2115 | + * @param int|string $post_id The post ID. |
|
2116 | + * @param string $status New post status. Ex: draft, publish etc. |
|
2117 | + */ |
|
2118 | + function geodir_change_post_status($post_id = '', $status = '') |
|
2119 | + { |
|
2120 | + global $wpdb, $plugin_prefix; |
|
2121 | + |
|
2122 | + $post_type = get_post_type($post_id); |
|
2123 | + |
|
2124 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
2125 | + |
|
2126 | + $wpdb->query( |
|
2127 | + $wpdb->prepare( |
|
2128 | + "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
2129 | + array($status, $post_id) |
|
2130 | + ) |
|
2131 | + ); |
|
2132 | + |
|
2133 | + |
|
2134 | + } |
|
2135 | 2135 | } |
2136 | 2136 | |
2137 | 2137 | /** |
@@ -2145,13 +2145,13 @@ discard block |
||
2145 | 2145 | */ |
2146 | 2146 | function geodir_set_post_status($pid, $status) |
2147 | 2147 | { |
2148 | - if ($pid) { |
|
2149 | - global $wpdb; |
|
2150 | - $my_post = array(); |
|
2151 | - $my_post['post_status'] = $status; |
|
2152 | - $my_post['ID'] = $pid; |
|
2153 | - $last_postid = wp_update_post($my_post); |
|
2154 | - } |
|
2148 | + if ($pid) { |
|
2149 | + global $wpdb; |
|
2150 | + $my_post = array(); |
|
2151 | + $my_post['post_status'] = $status; |
|
2152 | + $my_post['ID'] = $pid; |
|
2153 | + $last_postid = wp_update_post($my_post); |
|
2154 | + } |
|
2155 | 2155 | } |
2156 | 2156 | |
2157 | 2157 | |
@@ -2167,407 +2167,407 @@ discard block |
||
2167 | 2167 | */ |
2168 | 2168 | function geodir_update_poststatus($new_status, $old_status, $post) |
2169 | 2169 | { |
2170 | - global $wpdb; |
|
2170 | + global $wpdb; |
|
2171 | 2171 | |
2172 | - $geodir_posttypes = geodir_get_posttypes(); |
|
2172 | + $geodir_posttypes = geodir_get_posttypes(); |
|
2173 | 2173 | |
2174 | - if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) { |
|
2174 | + if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) { |
|
2175 | 2175 | |
2176 | - geodir_change_post_status($post->ID, $new_status); |
|
2177 | - } |
|
2176 | + geodir_change_post_status($post->ID, $new_status); |
|
2177 | + } |
|
2178 | 2178 | } |
2179 | 2179 | |
2180 | 2180 | |
2181 | 2181 | if (!function_exists('geodir_update_listing_info')) { |
2182 | - /** |
|
2183 | - * Update post info. |
|
2184 | - * |
|
2185 | - * @since 1.0.0 |
|
2186 | - * @package GeoDirectory |
|
2187 | - * @global object $wpdb WordPress Database object. |
|
2188 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
2189 | - * @param int $updatingpost The updating post ID. |
|
2190 | - * @param int $temppost The temporary post ID. |
|
2191 | - * @todo fix post_id variable |
|
2192 | - */ |
|
2193 | - function geodir_update_listing_info($updatingpost, $temppost) |
|
2194 | - { |
|
2195 | - |
|
2196 | - global $wpdb, $plugin_prefix; |
|
2197 | - |
|
2198 | - $post_type = get_post_type($post_id); |
|
2199 | - |
|
2200 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2201 | - |
|
2202 | - $wpdb->query( |
|
2203 | - $wpdb->prepare( |
|
2204 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2205 | - array($updatingpost, $temppost) |
|
2206 | - ) |
|
2207 | - ); |
|
2208 | - |
|
2209 | - $wpdb->query( |
|
2210 | - $wpdb->prepare( |
|
2211 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2212 | - array($updatingpost, $temppost) |
|
2213 | - ) |
|
2214 | - ); |
|
2215 | - |
|
2216 | - /* Update Attachments*/ |
|
2217 | - |
|
2218 | - $wpdb->query( |
|
2219 | - $wpdb->prepare( |
|
2220 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2221 | - array($updatingpost, $temppost) |
|
2222 | - ) |
|
2223 | - ); |
|
2224 | - |
|
2225 | - } |
|
2182 | + /** |
|
2183 | + * Update post info. |
|
2184 | + * |
|
2185 | + * @since 1.0.0 |
|
2186 | + * @package GeoDirectory |
|
2187 | + * @global object $wpdb WordPress Database object. |
|
2188 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
2189 | + * @param int $updatingpost The updating post ID. |
|
2190 | + * @param int $temppost The temporary post ID. |
|
2191 | + * @todo fix post_id variable |
|
2192 | + */ |
|
2193 | + function geodir_update_listing_info($updatingpost, $temppost) |
|
2194 | + { |
|
2195 | + |
|
2196 | + global $wpdb, $plugin_prefix; |
|
2197 | + |
|
2198 | + $post_type = get_post_type($post_id); |
|
2199 | + |
|
2200 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
2201 | + |
|
2202 | + $wpdb->query( |
|
2203 | + $wpdb->prepare( |
|
2204 | + "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2205 | + array($updatingpost, $temppost) |
|
2206 | + ) |
|
2207 | + ); |
|
2208 | + |
|
2209 | + $wpdb->query( |
|
2210 | + $wpdb->prepare( |
|
2211 | + "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2212 | + array($updatingpost, $temppost) |
|
2213 | + ) |
|
2214 | + ); |
|
2215 | + |
|
2216 | + /* Update Attachments*/ |
|
2217 | + |
|
2218 | + $wpdb->query( |
|
2219 | + $wpdb->prepare( |
|
2220 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2221 | + array($updatingpost, $temppost) |
|
2222 | + ) |
|
2223 | + ); |
|
2224 | + |
|
2225 | + } |
|
2226 | 2226 | } |
2227 | 2227 | |
2228 | 2228 | |
2229 | 2229 | if (!function_exists('geodir_delete_listing_info')) { |
2230 | - /** |
|
2231 | - * Delete Listing info from details table for the given post id. |
|
2232 | - * |
|
2233 | - * @since 1.0.0 |
|
2234 | - * @package GeoDirectory |
|
2235 | - * @global object $wpdb WordPress Database object. |
|
2236 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
2237 | - * @param int $deleted_postid The post ID. |
|
2238 | - * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
2239 | - * @return bool|void |
|
2240 | - */ |
|
2241 | - function geodir_delete_listing_info($deleted_postid, $force = false) |
|
2242 | - { |
|
2243 | - global $wpdb, $plugin_prefix; |
|
2244 | - |
|
2245 | - // check for multisite deletions |
|
2246 | - if (strpos($plugin_prefix, $wpdb->prefix) !== false) { |
|
2247 | - } else { |
|
2248 | - return; |
|
2249 | - } |
|
2250 | - |
|
2251 | - $post_type = get_post_type($deleted_postid); |
|
2252 | - |
|
2253 | - $all_postypes = geodir_get_posttypes(); |
|
2254 | - |
|
2255 | - if (!in_array($post_type, $all_postypes)) |
|
2256 | - return false; |
|
2257 | - |
|
2258 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2259 | - |
|
2260 | - /* Delete custom post meta*/ |
|
2261 | - $wpdb->query( |
|
2262 | - $wpdb->prepare( |
|
2263 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
2264 | - array($deleted_postid) |
|
2265 | - ) |
|
2266 | - ); |
|
2267 | - |
|
2268 | - /* Delete post map icons*/ |
|
2269 | - $wpdb->query( |
|
2270 | - $wpdb->prepare( |
|
2271 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
2272 | - array($deleted_postid) |
|
2273 | - ) |
|
2274 | - ); |
|
2275 | - |
|
2276 | - /* Delete Attachments*/ |
|
2277 | - $feat_id = get_post_thumbnail_id( $deleted_postid );// make sure to remove the smaller images |
|
2278 | - if($feat_id){ |
|
2279 | - wp_delete_attachment( $feat_id, true); |
|
2280 | - } |
|
2281 | - |
|
2282 | - $postcurr_images = geodir_get_images($deleted_postid); |
|
2283 | - |
|
2284 | - $wpdb->query( |
|
2285 | - $wpdb->prepare( |
|
2286 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
2287 | - array($deleted_postid) |
|
2288 | - ) |
|
2289 | - ); |
|
2290 | - geodir_remove_attachments($postcurr_images); |
|
2291 | - |
|
2292 | - } |
|
2230 | + /** |
|
2231 | + * Delete Listing info from details table for the given post id. |
|
2232 | + * |
|
2233 | + * @since 1.0.0 |
|
2234 | + * @package GeoDirectory |
|
2235 | + * @global object $wpdb WordPress Database object. |
|
2236 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
2237 | + * @param int $deleted_postid The post ID. |
|
2238 | + * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
2239 | + * @return bool|void |
|
2240 | + */ |
|
2241 | + function geodir_delete_listing_info($deleted_postid, $force = false) |
|
2242 | + { |
|
2243 | + global $wpdb, $plugin_prefix; |
|
2244 | + |
|
2245 | + // check for multisite deletions |
|
2246 | + if (strpos($plugin_prefix, $wpdb->prefix) !== false) { |
|
2247 | + } else { |
|
2248 | + return; |
|
2249 | + } |
|
2250 | + |
|
2251 | + $post_type = get_post_type($deleted_postid); |
|
2252 | + |
|
2253 | + $all_postypes = geodir_get_posttypes(); |
|
2254 | + |
|
2255 | + if (!in_array($post_type, $all_postypes)) |
|
2256 | + return false; |
|
2257 | + |
|
2258 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
2259 | + |
|
2260 | + /* Delete custom post meta*/ |
|
2261 | + $wpdb->query( |
|
2262 | + $wpdb->prepare( |
|
2263 | + "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
2264 | + array($deleted_postid) |
|
2265 | + ) |
|
2266 | + ); |
|
2267 | + |
|
2268 | + /* Delete post map icons*/ |
|
2269 | + $wpdb->query( |
|
2270 | + $wpdb->prepare( |
|
2271 | + "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
2272 | + array($deleted_postid) |
|
2273 | + ) |
|
2274 | + ); |
|
2275 | + |
|
2276 | + /* Delete Attachments*/ |
|
2277 | + $feat_id = get_post_thumbnail_id( $deleted_postid );// make sure to remove the smaller images |
|
2278 | + if($feat_id){ |
|
2279 | + wp_delete_attachment( $feat_id, true); |
|
2280 | + } |
|
2281 | + |
|
2282 | + $postcurr_images = geodir_get_images($deleted_postid); |
|
2283 | + |
|
2284 | + $wpdb->query( |
|
2285 | + $wpdb->prepare( |
|
2286 | + "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
2287 | + array($deleted_postid) |
|
2288 | + ) |
|
2289 | + ); |
|
2290 | + geodir_remove_attachments($postcurr_images); |
|
2291 | + |
|
2292 | + } |
|
2293 | 2293 | } |
2294 | 2294 | |
2295 | 2295 | |
2296 | 2296 | if (!function_exists('geodir_add_to_favorite')) { |
2297 | - /** |
|
2298 | - * This function would add listing to favorite listing. |
|
2299 | - * |
|
2300 | - * @since 1.0.0 |
|
2301 | - * @package GeoDirectory |
|
2302 | - * @global object $current_user Current user object. |
|
2303 | - * @param int $post_id The post ID. |
|
2304 | - */ |
|
2305 | - function geodir_add_to_favorite($post_id) |
|
2306 | - { |
|
2307 | - |
|
2308 | - global $current_user; |
|
2309 | - |
|
2310 | - /** |
|
2311 | - * Filter to modify "Unfavorite" text |
|
2312 | - * |
|
2313 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
2314 | - * |
|
2315 | - * @since 1.0.0 |
|
2316 | - * @package GeoDirectory |
|
2317 | - */ |
|
2318 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT); |
|
2319 | - |
|
2320 | - /** |
|
2321 | - * Filter to modify "Remove from Favorites" text |
|
2322 | - * |
|
2323 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
2324 | - * |
|
2325 | - * @since 1.0.0 |
|
2326 | - * @package GeoDirectory |
|
2327 | - */ |
|
2328 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT); |
|
2329 | - |
|
2330 | - /** |
|
2331 | - * Filter to modify "fa fa-heart" icon |
|
2332 | - * |
|
2333 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
2334 | - * |
|
2335 | - * @since 1.0.0 |
|
2336 | - * @package GeoDirectory |
|
2337 | - */ |
|
2338 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart'); |
|
2339 | - |
|
2340 | - $site_id = ''; |
|
2341 | - if ( is_multisite() ) { |
|
2342 | - $blog_id = get_current_blog_id(); |
|
2343 | - if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2344 | - } |
|
2345 | - |
|
2346 | - $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
|
2347 | - $user_meta_data = !empty($user_meta_data) && is_array($user_meta_data) ? $user_meta_data : array(); |
|
2348 | - |
|
2349 | - if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) { |
|
2350 | - $user_meta_data[] = $post_id; |
|
2351 | - } |
|
2352 | - |
|
2353 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post'.$site_id, $user_meta_data); |
|
2354 | - |
|
2355 | - /** |
|
2356 | - * Called before adding the post from favourites. |
|
2357 | - * |
|
2358 | - * @since 1.0.0 |
|
2359 | - * @package GeoDirectory |
|
2360 | - * @param int $post_id The post ID. |
|
2361 | - */ |
|
2362 | - do_action('geodir_before_add_from_favorite', $post_id); |
|
2363 | - |
|
2364 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
2365 | - |
|
2366 | - /** |
|
2367 | - * Called after adding the post from favourites. |
|
2368 | - * |
|
2369 | - * @since 1.0.0 |
|
2370 | - * @package GeoDirectory |
|
2371 | - * @param int $post_id The post ID. |
|
2372 | - */ |
|
2373 | - do_action('geodir_after_add_from_favorite', $post_id); |
|
2297 | + /** |
|
2298 | + * This function would add listing to favorite listing. |
|
2299 | + * |
|
2300 | + * @since 1.0.0 |
|
2301 | + * @package GeoDirectory |
|
2302 | + * @global object $current_user Current user object. |
|
2303 | + * @param int $post_id The post ID. |
|
2304 | + */ |
|
2305 | + function geodir_add_to_favorite($post_id) |
|
2306 | + { |
|
2307 | + |
|
2308 | + global $current_user; |
|
2309 | + |
|
2310 | + /** |
|
2311 | + * Filter to modify "Unfavorite" text |
|
2312 | + * |
|
2313 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
2314 | + * |
|
2315 | + * @since 1.0.0 |
|
2316 | + * @package GeoDirectory |
|
2317 | + */ |
|
2318 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT); |
|
2319 | + |
|
2320 | + /** |
|
2321 | + * Filter to modify "Remove from Favorites" text |
|
2322 | + * |
|
2323 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
2324 | + * |
|
2325 | + * @since 1.0.0 |
|
2326 | + * @package GeoDirectory |
|
2327 | + */ |
|
2328 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT); |
|
2329 | + |
|
2330 | + /** |
|
2331 | + * Filter to modify "fa fa-heart" icon |
|
2332 | + * |
|
2333 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
2334 | + * |
|
2335 | + * @since 1.0.0 |
|
2336 | + * @package GeoDirectory |
|
2337 | + */ |
|
2338 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart'); |
|
2339 | + |
|
2340 | + $site_id = ''; |
|
2341 | + if ( is_multisite() ) { |
|
2342 | + $blog_id = get_current_blog_id(); |
|
2343 | + if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2344 | + } |
|
2345 | + |
|
2346 | + $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
|
2347 | + $user_meta_data = !empty($user_meta_data) && is_array($user_meta_data) ? $user_meta_data : array(); |
|
2348 | + |
|
2349 | + if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) { |
|
2350 | + $user_meta_data[] = $post_id; |
|
2351 | + } |
|
2352 | + |
|
2353 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post'.$site_id, $user_meta_data); |
|
2354 | + |
|
2355 | + /** |
|
2356 | + * Called before adding the post from favourites. |
|
2357 | + * |
|
2358 | + * @since 1.0.0 |
|
2359 | + * @package GeoDirectory |
|
2360 | + * @param int $post_id The post ID. |
|
2361 | + */ |
|
2362 | + do_action('geodir_before_add_from_favorite', $post_id); |
|
2363 | + |
|
2364 | + echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
2365 | + |
|
2366 | + /** |
|
2367 | + * Called after adding the post from favourites. |
|
2368 | + * |
|
2369 | + * @since 1.0.0 |
|
2370 | + * @package GeoDirectory |
|
2371 | + * @param int $post_id The post ID. |
|
2372 | + */ |
|
2373 | + do_action('geodir_after_add_from_favorite', $post_id); |
|
2374 | 2374 | |
2375 | - } |
|
2375 | + } |
|
2376 | 2376 | } |
2377 | 2377 | |
2378 | 2378 | if (!function_exists('geodir_remove_from_favorite')) { |
2379 | - /** |
|
2380 | - * This function would remove the favourited property earlier. |
|
2381 | - * |
|
2382 | - * @since 1.0.0 |
|
2383 | - * @package GeoDirectory |
|
2384 | - * @global object $current_user Current user object. |
|
2385 | - * @param int $post_id The post ID. |
|
2386 | - */ |
|
2387 | - function geodir_remove_from_favorite($post_id) |
|
2388 | - { |
|
2389 | - global $current_user; |
|
2390 | - |
|
2391 | - /** |
|
2392 | - * Filter to modify "Add to Favorites" text |
|
2393 | - * |
|
2394 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
2395 | - * |
|
2396 | - * @since 1.0.0 |
|
2397 | - * @package GeoDirectory |
|
2398 | - */ |
|
2399 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT); |
|
2400 | - |
|
2401 | - /** |
|
2402 | - * Filter to modify "Favourite" text |
|
2403 | - * |
|
2404 | - * You can use this filter to rename "Favourite" text to something else. |
|
2405 | - * |
|
2406 | - * @since 1.0.0 |
|
2407 | - * @package GeoDirectory |
|
2408 | - */ |
|
2409 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT); |
|
2410 | - |
|
2411 | - /** |
|
2412 | - * Filter to modify "fa fa-heart" icon |
|
2413 | - * |
|
2414 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
2415 | - * |
|
2416 | - * @since 1.0.0 |
|
2417 | - * @package GeoDirectory |
|
2418 | - */ |
|
2419 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart'); |
|
2420 | - |
|
2421 | - $site_id = ''; |
|
2422 | - if ( is_multisite() ) { |
|
2423 | - $blog_id = get_current_blog_id(); |
|
2424 | - if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2425 | - } |
|
2426 | - |
|
2427 | - $user_meta_data = array(); |
|
2428 | - $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
|
2429 | - |
|
2430 | - if (!empty($user_meta_data)) { |
|
2431 | - |
|
2432 | - if (($key = array_search($post_id, $user_meta_data)) !== false) { |
|
2433 | - unset($user_meta_data[$key]); |
|
2434 | - } |
|
2379 | + /** |
|
2380 | + * This function would remove the favourited property earlier. |
|
2381 | + * |
|
2382 | + * @since 1.0.0 |
|
2383 | + * @package GeoDirectory |
|
2384 | + * @global object $current_user Current user object. |
|
2385 | + * @param int $post_id The post ID. |
|
2386 | + */ |
|
2387 | + function geodir_remove_from_favorite($post_id) |
|
2388 | + { |
|
2389 | + global $current_user; |
|
2390 | + |
|
2391 | + /** |
|
2392 | + * Filter to modify "Add to Favorites" text |
|
2393 | + * |
|
2394 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
2395 | + * |
|
2396 | + * @since 1.0.0 |
|
2397 | + * @package GeoDirectory |
|
2398 | + */ |
|
2399 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT); |
|
2400 | + |
|
2401 | + /** |
|
2402 | + * Filter to modify "Favourite" text |
|
2403 | + * |
|
2404 | + * You can use this filter to rename "Favourite" text to something else. |
|
2405 | + * |
|
2406 | + * @since 1.0.0 |
|
2407 | + * @package GeoDirectory |
|
2408 | + */ |
|
2409 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT); |
|
2410 | + |
|
2411 | + /** |
|
2412 | + * Filter to modify "fa fa-heart" icon |
|
2413 | + * |
|
2414 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
2415 | + * |
|
2416 | + * @since 1.0.0 |
|
2417 | + * @package GeoDirectory |
|
2418 | + */ |
|
2419 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart'); |
|
2420 | + |
|
2421 | + $site_id = ''; |
|
2422 | + if ( is_multisite() ) { |
|
2423 | + $blog_id = get_current_blog_id(); |
|
2424 | + if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2425 | + } |
|
2426 | + |
|
2427 | + $user_meta_data = array(); |
|
2428 | + $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
|
2429 | + |
|
2430 | + if (!empty($user_meta_data)) { |
|
2431 | + |
|
2432 | + if (($key = array_search($post_id, $user_meta_data)) !== false) { |
|
2433 | + unset($user_meta_data[$key]); |
|
2434 | + } |
|
2435 | 2435 | |
2436 | - } |
|
2436 | + } |
|
2437 | 2437 | |
2438 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post'.$site_id, $user_meta_data); |
|
2438 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post'.$site_id, $user_meta_data); |
|
2439 | 2439 | |
2440 | - /** |
|
2441 | - * Called before removing the post from favourites. |
|
2442 | - * |
|
2443 | - * @since 1.0.0 |
|
2444 | - * @package GeoDirectory |
|
2445 | - * @param int $post_id The post ID. |
|
2446 | - */ |
|
2447 | - do_action('geodir_before_remove_from_favorite', $post_id); |
|
2440 | + /** |
|
2441 | + * Called before removing the post from favourites. |
|
2442 | + * |
|
2443 | + * @since 1.0.0 |
|
2444 | + * @package GeoDirectory |
|
2445 | + * @param int $post_id The post ID. |
|
2446 | + */ |
|
2447 | + do_action('geodir_before_remove_from_favorite', $post_id); |
|
2448 | 2448 | |
2449 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
2449 | + echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
2450 | 2450 | |
2451 | - /** |
|
2452 | - * Called after removing the post from favourites. |
|
2453 | - * |
|
2454 | - * @since 1.0.0 |
|
2455 | - * @package GeoDirectory |
|
2456 | - * @param int $post_id The post ID. |
|
2457 | - */ |
|
2458 | - do_action('geodir_after_remove_from_favorite', $post_id); |
|
2451 | + /** |
|
2452 | + * Called after removing the post from favourites. |
|
2453 | + * |
|
2454 | + * @since 1.0.0 |
|
2455 | + * @package GeoDirectory |
|
2456 | + * @param int $post_id The post ID. |
|
2457 | + */ |
|
2458 | + do_action('geodir_after_remove_from_favorite', $post_id); |
|
2459 | 2459 | |
2460 | - } |
|
2460 | + } |
|
2461 | 2461 | } |
2462 | 2462 | |
2463 | 2463 | if (!function_exists('geodir_favourite_html')) { |
2464 | - /** |
|
2465 | - * This function would display the html content for add to favorite or remove from favorite. |
|
2466 | - * |
|
2467 | - * @since 1.0.0 |
|
2468 | - * @package GeoDirectory |
|
2469 | - * @global object $current_user Current user object. |
|
2470 | - * @global object $post The current post object. |
|
2471 | - * @param int $user_id The user ID. |
|
2472 | - * @param int $post_id The post ID. |
|
2473 | - */ |
|
2474 | - function geodir_favourite_html($user_id, $post_id) |
|
2475 | - { |
|
2476 | - |
|
2477 | - global $current_user, $post; |
|
2478 | - |
|
2479 | - /** |
|
2480 | - * Filter to modify "Add to Favorites" text |
|
2481 | - * |
|
2482 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
2483 | - * |
|
2484 | - * @since 1.0.0 |
|
2485 | - * @package GeoDirectory |
|
2486 | - */ |
|
2487 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT); |
|
2488 | - |
|
2489 | - /** |
|
2490 | - * Filter to modify "Favourite" text |
|
2491 | - * |
|
2492 | - * You can use this filter to rename "Favourite" text to something else. |
|
2493 | - * |
|
2494 | - * @since 1.0.0 |
|
2495 | - * @package GeoDirectory |
|
2496 | - */ |
|
2497 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT); |
|
2498 | - |
|
2499 | - /** |
|
2500 | - * Filter to modify "Unfavorite" text |
|
2501 | - * |
|
2502 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
2503 | - * |
|
2504 | - * @since 1.0.0 |
|
2505 | - * @package GeoDirectory |
|
2506 | - */ |
|
2507 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT); |
|
2508 | - |
|
2509 | - /** |
|
2510 | - * Filter to modify "Remove from Favorites" text |
|
2511 | - * |
|
2512 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
2513 | - * |
|
2514 | - * @since 1.0.0 |
|
2515 | - * @package GeoDirectory |
|
2516 | - */ |
|
2517 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT); |
|
2518 | - |
|
2519 | - /** |
|
2520 | - * Filter to modify "fa fa-heart" icon |
|
2521 | - * |
|
2522 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
2523 | - * |
|
2524 | - * @since 1.0.0 |
|
2525 | - * @package GeoDirectory |
|
2526 | - */ |
|
2527 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart'); |
|
2528 | - |
|
2529 | - /** |
|
2530 | - * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
2531 | - * |
|
2532 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
2533 | - * |
|
2534 | - * @since 1.0.0 |
|
2535 | - * @package GeoDirectory |
|
2536 | - */ |
|
2537 | - $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart'); |
|
2538 | - |
|
2539 | - |
|
2540 | - $site_id = ''; |
|
2541 | - if ( is_multisite() ) { |
|
2542 | - $blog_id = get_current_blog_id(); |
|
2543 | - if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2544 | - } |
|
2545 | - |
|
2546 | - $user_meta_data = ''; |
|
2547 | - if (isset($current_user->data->ID)) |
|
2548 | - $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
|
2549 | - |
|
2550 | - if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) { |
|
2551 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
2464 | + /** |
|
2465 | + * This function would display the html content for add to favorite or remove from favorite. |
|
2466 | + * |
|
2467 | + * @since 1.0.0 |
|
2468 | + * @package GeoDirectory |
|
2469 | + * @global object $current_user Current user object. |
|
2470 | + * @global object $post The current post object. |
|
2471 | + * @param int $user_id The user ID. |
|
2472 | + * @param int $post_id The post ID. |
|
2473 | + */ |
|
2474 | + function geodir_favourite_html($user_id, $post_id) |
|
2475 | + { |
|
2476 | + |
|
2477 | + global $current_user, $post; |
|
2478 | + |
|
2479 | + /** |
|
2480 | + * Filter to modify "Add to Favorites" text |
|
2481 | + * |
|
2482 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
2483 | + * |
|
2484 | + * @since 1.0.0 |
|
2485 | + * @package GeoDirectory |
|
2486 | + */ |
|
2487 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT); |
|
2488 | + |
|
2489 | + /** |
|
2490 | + * Filter to modify "Favourite" text |
|
2491 | + * |
|
2492 | + * You can use this filter to rename "Favourite" text to something else. |
|
2493 | + * |
|
2494 | + * @since 1.0.0 |
|
2495 | + * @package GeoDirectory |
|
2496 | + */ |
|
2497 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT); |
|
2498 | + |
|
2499 | + /** |
|
2500 | + * Filter to modify "Unfavorite" text |
|
2501 | + * |
|
2502 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
2503 | + * |
|
2504 | + * @since 1.0.0 |
|
2505 | + * @package GeoDirectory |
|
2506 | + */ |
|
2507 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT); |
|
2508 | + |
|
2509 | + /** |
|
2510 | + * Filter to modify "Remove from Favorites" text |
|
2511 | + * |
|
2512 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
2513 | + * |
|
2514 | + * @since 1.0.0 |
|
2515 | + * @package GeoDirectory |
|
2516 | + */ |
|
2517 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT); |
|
2518 | + |
|
2519 | + /** |
|
2520 | + * Filter to modify "fa fa-heart" icon |
|
2521 | + * |
|
2522 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
2523 | + * |
|
2524 | + * @since 1.0.0 |
|
2525 | + * @package GeoDirectory |
|
2526 | + */ |
|
2527 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart'); |
|
2528 | + |
|
2529 | + /** |
|
2530 | + * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
2531 | + * |
|
2532 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
2533 | + * |
|
2534 | + * @since 1.0.0 |
|
2535 | + * @package GeoDirectory |
|
2536 | + */ |
|
2537 | + $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart'); |
|
2538 | + |
|
2539 | + |
|
2540 | + $site_id = ''; |
|
2541 | + if ( is_multisite() ) { |
|
2542 | + $blog_id = get_current_blog_id(); |
|
2543 | + if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2544 | + } |
|
2545 | + |
|
2546 | + $user_meta_data = ''; |
|
2547 | + if (isset($current_user->data->ID)) |
|
2548 | + $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
|
2549 | + |
|
2550 | + if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) { |
|
2551 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
2552 | 2552 | class="geodir-removetofav-icon" href="javascript:void(0);" |
2553 | 2553 | onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
2554 | 2554 | title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
2555 | 2555 | </a> </span><?php |
2556 | 2556 | |
2557 | - } else { |
|
2557 | + } else { |
|
2558 | 2558 | |
2559 | - if (!isset($current_user->data->ID) || $current_user->data->ID == '') { |
|
2560 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
2561 | - } else |
|
2562 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
2559 | + if (!isset($current_user->data->ID) || $current_user->data->ID == '') { |
|
2560 | + $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
2561 | + } else |
|
2562 | + $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
2563 | 2563 | |
2564 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
2564 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
2565 | 2565 | href="javascript:void(0);" |
2566 | 2566 | onclick="<?php echo $script_text;?>" |
2567 | 2567 | title="<?php echo $add_favourite_text;?>"><i |
2568 | 2568 | class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
2569 | 2569 | <?php } |
2570 | - } |
|
2570 | + } |
|
2571 | 2571 | } |
2572 | 2572 | |
2573 | 2573 | |
@@ -2584,54 +2584,54 @@ discard block |
||
2584 | 2584 | function geodir_get_cat_postcount($term = array()) |
2585 | 2585 | { |
2586 | 2586 | |
2587 | - if (!empty($term)) { |
|
2587 | + if (!empty($term)) { |
|
2588 | 2588 | |
2589 | - global $wpdb, $plugin_prefix; |
|
2589 | + global $wpdb, $plugin_prefix; |
|
2590 | 2590 | |
2591 | - $where = ''; |
|
2592 | - $join = ''; |
|
2593 | - if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') { |
|
2594 | - $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
2591 | + $where = ''; |
|
2592 | + $join = ''; |
|
2593 | + if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') { |
|
2594 | + $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
2595 | 2595 | |
2596 | - $post_type = $taxonomy_obj->object_type[0]; |
|
2596 | + $post_type = $taxonomy_obj->object_type[0]; |
|
2597 | 2597 | |
2598 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2598 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
2599 | 2599 | |
2600 | - /** |
|
2601 | - * Filter to modify the 'join' query |
|
2602 | - * |
|
2603 | - * @since 1.0.0 |
|
2604 | - * @package GeoDirectory |
|
2605 | - * @param object|array $term category / term object that need to be processed. |
|
2606 | - * @param string $join The join query. |
|
2607 | - */ |
|
2608 | - $join = apply_filters('geodir_cat_post_count_join', $join, $term); |
|
2600 | + /** |
|
2601 | + * Filter to modify the 'join' query |
|
2602 | + * |
|
2603 | + * @since 1.0.0 |
|
2604 | + * @package GeoDirectory |
|
2605 | + * @param object|array $term category / term object that need to be processed. |
|
2606 | + * @param string $join The join query. |
|
2607 | + */ |
|
2608 | + $join = apply_filters('geodir_cat_post_count_join', $join, $term); |
|
2609 | 2609 | |
2610 | - /** |
|
2611 | - * Filter to modify the 'where' query |
|
2612 | - * |
|
2613 | - * @since 1.0.0 |
|
2614 | - * @package GeoDirectory |
|
2615 | - * @param object|array $term category / term object that need to be processed. |
|
2616 | - * @param string $where The where query. |
|
2617 | - */ |
|
2618 | - $where = apply_filters('geodir_cat_post_count_where', $where, $term); |
|
2610 | + /** |
|
2611 | + * Filter to modify the 'where' query |
|
2612 | + * |
|
2613 | + * @since 1.0.0 |
|
2614 | + * @package GeoDirectory |
|
2615 | + * @param object|array $term category / term object that need to be processed. |
|
2616 | + * @param string $where The where query. |
|
2617 | + */ |
|
2618 | + $where = apply_filters('geodir_cat_post_count_where', $where, $term); |
|
2619 | 2619 | |
2620 | - $count_query = "SELECT count(post_id) FROM |
|
2620 | + $count_query = "SELECT count(post_id) FROM |
|
2621 | 2621 | " . $table . " as pd " . $join . " |
2622 | 2622 | WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where; |
2623 | 2623 | |
2624 | - $cat_post_count = $wpdb->get_var($count_query); |
|
2625 | - if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
2626 | - $cat_post_count = 0; |
|
2624 | + $cat_post_count = $wpdb->get_var($count_query); |
|
2625 | + if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
2626 | + $cat_post_count = 0; |
|
2627 | 2627 | |
2628 | - return $cat_post_count; |
|
2628 | + return $cat_post_count; |
|
2629 | 2629 | |
2630 | - } else |
|
2630 | + } else |
|
2631 | 2631 | |
2632 | - return $term->count; |
|
2633 | - } |
|
2634 | - return false; |
|
2632 | + return $term->count; |
|
2633 | + } |
|
2634 | + return false; |
|
2635 | 2635 | |
2636 | 2636 | } |
2637 | 2637 | |
@@ -2644,17 +2644,17 @@ discard block |
||
2644 | 2644 | */ |
2645 | 2645 | function geodir_allow_post_type_frontend() |
2646 | 2646 | { |
2647 | - $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend'); |
|
2647 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend'); |
|
2648 | 2648 | |
2649 | - if (!is_admin() && isset($_REQUEST['listing_type']) |
|
2650 | - && !empty($geodir_allow_posttype_frontend) |
|
2651 | - && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
2652 | - ) { |
|
2649 | + if (!is_admin() && isset($_REQUEST['listing_type']) |
|
2650 | + && !empty($geodir_allow_posttype_frontend) |
|
2651 | + && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
2652 | + ) { |
|
2653 | 2653 | |
2654 | - wp_redirect(home_url()); |
|
2655 | - exit; |
|
2654 | + wp_redirect(home_url()); |
|
2655 | + exit; |
|
2656 | 2656 | |
2657 | - } |
|
2657 | + } |
|
2658 | 2658 | |
2659 | 2659 | } |
2660 | 2660 | |
@@ -2671,20 +2671,20 @@ discard block |
||
2671 | 2671 | */ |
2672 | 2672 | function geodir_excerpt_length($length) |
2673 | 2673 | { |
2674 | - global $wp_query, $geodir_is_widget_listing; |
|
2674 | + global $wp_query, $geodir_is_widget_listing; |
|
2675 | 2675 | if ($geodir_is_widget_listing) { |
2676 | 2676 | return $length; |
2677 | 2677 | } |
2678 | 2678 | |
2679 | - if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) |
|
2680 | - $length = get_option('geodir_desc_word_limit'); |
|
2681 | - elseif (get_query_var('excerpt_length')) |
|
2682 | - $length = get_query_var('excerpt_length'); |
|
2679 | + if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) |
|
2680 | + $length = get_option('geodir_desc_word_limit'); |
|
2681 | + elseif (get_query_var('excerpt_length')) |
|
2682 | + $length = get_query_var('excerpt_length'); |
|
2683 | 2683 | |
2684 | - if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) |
|
2685 | - $length = get_option('geodir_author_desc_word_limit'); |
|
2684 | + if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) |
|
2685 | + $length = get_option('geodir_author_desc_word_limit'); |
|
2686 | 2686 | |
2687 | - return $length; |
|
2687 | + return $length; |
|
2688 | 2688 | } |
2689 | 2689 | |
2690 | 2690 | /** |
@@ -2699,21 +2699,21 @@ discard block |
||
2699 | 2699 | */ |
2700 | 2700 | function geodir_excerpt_more($more) |
2701 | 2701 | { |
2702 | - global $post; |
|
2703 | - $all_postypes = geodir_get_posttypes(); |
|
2704 | - if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) { |
|
2705 | - $out = ' <a class="excerpt-read-more" href="' . get_permalink($post->ID) . '" title="' . get_the_title($post->ID) . '">'; |
|
2706 | - /** |
|
2707 | - * Filter excerpt read more text. |
|
2708 | - * |
|
2709 | - * @since 1.0.0 |
|
2710 | - */ |
|
2711 | - $out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) ); |
|
2712 | - $out .= '</a>'; |
|
2713 | - return $out; |
|
2714 | - } |
|
2702 | + global $post; |
|
2703 | + $all_postypes = geodir_get_posttypes(); |
|
2704 | + if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) { |
|
2705 | + $out = ' <a class="excerpt-read-more" href="' . get_permalink($post->ID) . '" title="' . get_the_title($post->ID) . '">'; |
|
2706 | + /** |
|
2707 | + * Filter excerpt read more text. |
|
2708 | + * |
|
2709 | + * @since 1.0.0 |
|
2710 | + */ |
|
2711 | + $out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) ); |
|
2712 | + $out .= '</a>'; |
|
2713 | + return $out; |
|
2714 | + } |
|
2715 | 2715 | |
2716 | - return $more; |
|
2716 | + return $more; |
|
2717 | 2717 | } |
2718 | 2718 | |
2719 | 2719 | |
@@ -2730,63 +2730,63 @@ discard block |
||
2730 | 2730 | */ |
2731 | 2731 | function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy) |
2732 | 2732 | { |
2733 | - global $plugin_prefix, $wpdb; |
|
2733 | + global $plugin_prefix, $wpdb; |
|
2734 | 2734 | |
2735 | - $gd_taxonomies = geodir_get_taxonomies(); |
|
2735 | + $gd_taxonomies = geodir_get_taxonomies(); |
|
2736 | 2736 | |
2737 | - if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) { |
|
2737 | + if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) { |
|
2738 | 2738 | |
2739 | - $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
2740 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
2739 | + $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
2740 | + $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
2741 | 2741 | |
2742 | - $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
2743 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
2742 | + $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
2743 | + $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
2744 | 2744 | |
2745 | - $posts = $wpdb->get_results( |
|
2746 | - $wpdb->prepare( |
|
2747 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
2748 | - array($term_id, $taxonomy) |
|
2749 | - ) |
|
2750 | - ); |
|
2745 | + $posts = $wpdb->get_results( |
|
2746 | + $wpdb->prepare( |
|
2747 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
2748 | + array($term_id, $taxonomy) |
|
2749 | + ) |
|
2750 | + ); |
|
2751 | 2751 | |
2752 | - if (!empty($posts)): |
|
2753 | - foreach ($posts as $post_obj) { |
|
2752 | + if (!empty($posts)): |
|
2753 | + foreach ($posts as $post_obj) { |
|
2754 | 2754 | |
2755 | - $lat = $post_obj->post_latitude; |
|
2756 | - $lng = $post_obj->post_longitude; |
|
2755 | + $lat = $post_obj->post_latitude; |
|
2756 | + $lng = $post_obj->post_longitude; |
|
2757 | 2757 | |
2758 | - $json = '{'; |
|
2759 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
2760 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
2761 | - $json .= '"long_pos": "' . $lng . '",'; |
|
2762 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
2763 | - $json .= '"icon":"' . $term_icon . '",'; |
|
2764 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
2765 | - $json .= '}'; |
|
2758 | + $json = '{'; |
|
2759 | + $json .= '"id":"' . $post_obj->post_id . '",'; |
|
2760 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
2761 | + $json .= '"long_pos": "' . $lng . '",'; |
|
2762 | + $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
2763 | + $json .= '"icon":"' . $term_icon . '",'; |
|
2764 | + $json .= '"group":"catgroup' . $term_id . '"'; |
|
2765 | + $json .= '}'; |
|
2766 | 2766 | |
2767 | - if ($post_obj->default_category == $term_id) { |
|
2767 | + if ($post_obj->default_category == $term_id) { |
|
2768 | 2768 | |
2769 | - $wpdb->query( |
|
2770 | - $wpdb->prepare( |
|
2771 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
2772 | - array($json, $post_obj->post_id) |
|
2773 | - ) |
|
2774 | - ); |
|
2775 | - } |
|
2769 | + $wpdb->query( |
|
2770 | + $wpdb->prepare( |
|
2771 | + "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
2772 | + array($json, $post_obj->post_id) |
|
2773 | + ) |
|
2774 | + ); |
|
2775 | + } |
|
2776 | 2776 | |
2777 | - $wpdb->query( |
|
2778 | - $wpdb->prepare( |
|
2779 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
2780 | - array($json, $post_obj->post_id, $term_id) |
|
2781 | - ) |
|
2782 | - ); |
|
2777 | + $wpdb->query( |
|
2778 | + $wpdb->prepare( |
|
2779 | + "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
2780 | + array($json, $post_obj->post_id, $term_id) |
|
2781 | + ) |
|
2782 | + ); |
|
2783 | 2783 | |
2784 | - } |
|
2784 | + } |
|
2785 | 2785 | |
2786 | 2786 | |
2787 | - endif; |
|
2787 | + endif; |
|
2788 | 2788 | |
2789 | - } |
|
2789 | + } |
|
2790 | 2790 | |
2791 | 2791 | } |
2792 | 2792 | |
@@ -2800,14 +2800,14 @@ discard block |
||
2800 | 2800 | */ |
2801 | 2801 | function geodir_get_listing_author($listing_id = '') |
2802 | 2802 | { |
2803 | - if ($listing_id == '') { |
|
2804 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
2805 | - $listing_id = $_REQUEST['pid']; |
|
2806 | - } |
|
2807 | - } |
|
2808 | - $listing = get_post(strip_tags($listing_id)); |
|
2809 | - $listing_author_id = $listing->post_author; |
|
2810 | - return $listing_author_id; |
|
2803 | + if ($listing_id == '') { |
|
2804 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
2805 | + $listing_id = $_REQUEST['pid']; |
|
2806 | + } |
|
2807 | + } |
|
2808 | + $listing = get_post(strip_tags($listing_id)); |
|
2809 | + $listing_author_id = $listing->post_author; |
|
2810 | + return $listing_author_id; |
|
2811 | 2811 | } |
2812 | 2812 | |
2813 | 2813 | |
@@ -2822,11 +2822,11 @@ discard block |
||
2822 | 2822 | */ |
2823 | 2823 | function geodir_lisiting_belong_to_user($listing_id, $user_id) |
2824 | 2824 | { |
2825 | - $listing_author_id = geodir_get_listing_author($listing_id); |
|
2826 | - if ($listing_author_id == $user_id) |
|
2827 | - return true; |
|
2828 | - else |
|
2829 | - return false; |
|
2825 | + $listing_author_id = geodir_get_listing_author($listing_id); |
|
2826 | + if ($listing_author_id == $user_id) |
|
2827 | + return true; |
|
2828 | + else |
|
2829 | + return false; |
|
2830 | 2830 | |
2831 | 2831 | } |
2832 | 2832 | |
@@ -2842,29 +2842,29 @@ discard block |
||
2842 | 2842 | */ |
2843 | 2843 | function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true) |
2844 | 2844 | { |
2845 | - global $current_user; |
|
2846 | - if ($exclude_admin) { |
|
2847 | - foreach ($current_user->caps as $key => $caps) { |
|
2848 | - if (geodir_strtolower($key) == 'administrator') { |
|
2849 | - return true; |
|
2850 | - break; |
|
2851 | - } |
|
2852 | - } |
|
2853 | - } |
|
2854 | - |
|
2855 | - $result = geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
2856 | - |
|
2857 | - /** |
|
2858 | - * Filter if the listing belongs to a user. |
|
2859 | - * |
|
2860 | - * @since 1.6.23 |
|
2861 | - * @param bool $result The result, true:false |
|
2862 | - * @param int $listing_id The post ID. |
|
2863 | - * @param int $current_user->ID The current user ID. |
|
2864 | - * @param bool $exclude_admin Do you want to exclude admin from the check?. Default true. |
|
2865 | - * return bool |
|
2866 | - */ |
|
2867 | - return apply_filters('geodir_listing_belong_to_current_user',$result,$listing_id,$current_user->ID,$exclude_admin); |
|
2845 | + global $current_user; |
|
2846 | + if ($exclude_admin) { |
|
2847 | + foreach ($current_user->caps as $key => $caps) { |
|
2848 | + if (geodir_strtolower($key) == 'administrator') { |
|
2849 | + return true; |
|
2850 | + break; |
|
2851 | + } |
|
2852 | + } |
|
2853 | + } |
|
2854 | + |
|
2855 | + $result = geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
2856 | + |
|
2857 | + /** |
|
2858 | + * Filter if the listing belongs to a user. |
|
2859 | + * |
|
2860 | + * @since 1.6.23 |
|
2861 | + * @param bool $result The result, true:false |
|
2862 | + * @param int $listing_id The post ID. |
|
2863 | + * @param int $current_user->ID The current user ID. |
|
2864 | + * @param bool $exclude_admin Do you want to exclude admin from the check?. Default true. |
|
2865 | + * return bool |
|
2866 | + */ |
|
2867 | + return apply_filters('geodir_listing_belong_to_current_user',$result,$listing_id,$current_user->ID,$exclude_admin); |
|
2868 | 2868 | } |
2869 | 2869 | |
2870 | 2870 | |
@@ -2880,17 +2880,17 @@ discard block |
||
2880 | 2880 | function geodir_only_supportable_attachments_remove($file) |
2881 | 2881 | { |
2882 | 2882 | |
2883 | - global $wpdb; |
|
2883 | + global $wpdb; |
|
2884 | 2884 | |
2885 | - $matches = array(); |
|
2885 | + $matches = array(); |
|
2886 | 2886 | |
2887 | - $pattern = '/-\d+x\d+\./'; |
|
2888 | - preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
2887 | + $pattern = '/-\d+x\d+\./'; |
|
2888 | + preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
2889 | 2889 | |
2890 | - if (empty($matches)) |
|
2891 | - return ''; |
|
2892 | - else |
|
2893 | - return $file; |
|
2890 | + if (empty($matches)) |
|
2891 | + return ''; |
|
2892 | + else |
|
2893 | + return $file; |
|
2894 | 2894 | |
2895 | 2895 | } |
2896 | 2896 | |
@@ -2907,78 +2907,78 @@ discard block |
||
2907 | 2907 | function geodir_set_wp_featured_image($post_id) |
2908 | 2908 | { |
2909 | 2909 | |
2910 | - global $wpdb, $plugin_prefix; |
|
2911 | - $uploads = wp_upload_dir(); |
|
2910 | + global $wpdb, $plugin_prefix; |
|
2911 | + $uploads = wp_upload_dir(); |
|
2912 | 2912 | // print_r($uploads ) ; |
2913 | - $post_first_image = $wpdb->get_results( |
|
2914 | - $wpdb->prepare( |
|
2915 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
2916 | - ) |
|
2917 | - ); |
|
2913 | + $post_first_image = $wpdb->get_results( |
|
2914 | + $wpdb->prepare( |
|
2915 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
2916 | + ) |
|
2917 | + ); |
|
2918 | 2918 | |
2919 | - $old_attachment_name = ''; |
|
2920 | - $post_thumbnail_id = ''; |
|
2921 | - if (has_post_thumbnail($post_id)) { |
|
2919 | + $old_attachment_name = ''; |
|
2920 | + $post_thumbnail_id = ''; |
|
2921 | + if (has_post_thumbnail($post_id)) { |
|
2922 | 2922 | |
2923 | - if (has_post_thumbnail($post_id)) { |
|
2923 | + if (has_post_thumbnail($post_id)) { |
|
2924 | 2924 | |
2925 | - $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
2925 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
2926 | 2926 | |
2927 | - $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
2927 | + $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
2928 | 2928 | |
2929 | - } |
|
2930 | - } |
|
2931 | - |
|
2932 | - if (!empty($post_first_image)) { |
|
2929 | + } |
|
2930 | + } |
|
2933 | 2931 | |
2934 | - $post_type = get_post_type($post_id); |
|
2932 | + if (!empty($post_first_image)) { |
|
2935 | 2933 | |
2936 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
2934 | + $post_type = get_post_type($post_id); |
|
2937 | 2935 | |
2938 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id); |
|
2936 | + $table_name = $plugin_prefix . $post_type . '_detail'; |
|
2939 | 2937 | |
2940 | - $new_attachment_name = basename($post_first_image[0]->file); |
|
2938 | + $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id); |
|
2941 | 2939 | |
2942 | - if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) { |
|
2940 | + $new_attachment_name = basename($post_first_image[0]->file); |
|
2943 | 2941 | |
2944 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) { |
|
2942 | + if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) { |
|
2945 | 2943 | |
2946 | - add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove'); |
|
2944 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) { |
|
2947 | 2945 | |
2948 | - wp_delete_attachment($post_thumbnail_id); |
|
2946 | + add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove'); |
|
2949 | 2947 | |
2950 | - } |
|
2951 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
2948 | + wp_delete_attachment($post_thumbnail_id); |
|
2952 | 2949 | |
2953 | - $attachment = array( |
|
2954 | - 'post_mime_type' => $post_first_image[0]->mime_type, |
|
2955 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
2956 | - 'post_parent' => $post_id, |
|
2957 | - 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title), |
|
2958 | - 'post_content' => '' |
|
2959 | - ); |
|
2950 | + } |
|
2951 | + $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
2952 | + |
|
2953 | + $attachment = array( |
|
2954 | + 'post_mime_type' => $post_first_image[0]->mime_type, |
|
2955 | + 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
2956 | + 'post_parent' => $post_id, |
|
2957 | + 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title), |
|
2958 | + 'post_content' => '' |
|
2959 | + ); |
|
2960 | 2960 | |
2961 | 2961 | |
2962 | - $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
2962 | + $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
2963 | 2963 | |
2964 | - if (!is_wp_error($id)) { |
|
2964 | + if (!is_wp_error($id)) { |
|
2965 | 2965 | |
2966 | - set_post_thumbnail($post_id, $id); |
|
2966 | + set_post_thumbnail($post_id, $id); |
|
2967 | 2967 | |
2968 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
2969 | - wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
2968 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
2969 | + wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
2970 | 2970 | |
2971 | - } |
|
2971 | + } |
|
2972 | 2972 | |
2973 | - } |
|
2973 | + } |
|
2974 | 2974 | |
2975 | - } else { |
|
2976 | - //set_post_thumbnail($post_id,-1); |
|
2975 | + } else { |
|
2976 | + //set_post_thumbnail($post_id,-1); |
|
2977 | 2977 | |
2978 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
2979 | - wp_delete_attachment($post_thumbnail_id); |
|
2978 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
2979 | + wp_delete_attachment($post_thumbnail_id); |
|
2980 | 2980 | |
2981 | - } |
|
2981 | + } |
|
2982 | 2982 | } |
2983 | 2983 | |
2984 | 2984 | |
@@ -2993,53 +2993,53 @@ discard block |
||
2993 | 2993 | */ |
2994 | 2994 | function gd_copy_original_translation() |
2995 | 2995 | { |
2996 | - if (geodir_is_wpml()) { |
|
2997 | - global $wpdb, $table_prefix, $plugin_prefix; |
|
2998 | - $post_id = absint($_POST['post_id']); |
|
2999 | - $upload_dir = wp_upload_dir(); |
|
3000 | - $post_type = get_post_type($_POST['post_id']); |
|
3001 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
3002 | - |
|
3003 | - $post_arr = $wpdb->get_results($wpdb->prepare( |
|
3004 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
3005 | - array($post_id) |
|
3006 | - ) |
|
3007 | - , ARRAY_A); |
|
3008 | - |
|
3009 | - $arrImages = $wpdb->get_results( |
|
3010 | - $wpdb->prepare( |
|
3011 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
3012 | - array('%image%', $post_id) |
|
3013 | - ) |
|
3014 | - ); |
|
3015 | - if ($arrImages) { |
|
3016 | - $image_arr = array(); |
|
3017 | - foreach ($arrImages as $img) { |
|
3018 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
3019 | - } |
|
3020 | - $comma_separated = implode(",", $image_arr); |
|
3021 | - $post_arr[0]['post_images'] = $comma_separated; |
|
3022 | - } |
|
3023 | - |
|
3024 | - |
|
3025 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
3026 | - $cat_arr = array_filter(explode(",", $cats)); |
|
3027 | - $trans_cat = array(); |
|
3028 | - foreach ($cat_arr as $cat) { |
|
3029 | - $trans_cat[] = geodir_wpml_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
3030 | - } |
|
3031 | - |
|
3032 | - |
|
3033 | - $post_arr[0]['categories'] = array_filter($trans_cat); |
|
2996 | + if (geodir_is_wpml()) { |
|
2997 | + global $wpdb, $table_prefix, $plugin_prefix; |
|
2998 | + $post_id = absint($_POST['post_id']); |
|
2999 | + $upload_dir = wp_upload_dir(); |
|
3000 | + $post_type = get_post_type($_POST['post_id']); |
|
3001 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
3002 | + |
|
3003 | + $post_arr = $wpdb->get_results($wpdb->prepare( |
|
3004 | + "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
3005 | + array($post_id) |
|
3006 | + ) |
|
3007 | + , ARRAY_A); |
|
3008 | + |
|
3009 | + $arrImages = $wpdb->get_results( |
|
3010 | + $wpdb->prepare( |
|
3011 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
3012 | + array('%image%', $post_id) |
|
3013 | + ) |
|
3014 | + ); |
|
3015 | + if ($arrImages) { |
|
3016 | + $image_arr = array(); |
|
3017 | + foreach ($arrImages as $img) { |
|
3018 | + $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
3019 | + } |
|
3020 | + $comma_separated = implode(",", $image_arr); |
|
3021 | + $post_arr[0]['post_images'] = $comma_separated; |
|
3022 | + } |
|
3023 | + |
|
3024 | + |
|
3025 | + $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
3026 | + $cat_arr = array_filter(explode(",", $cats)); |
|
3027 | + $trans_cat = array(); |
|
3028 | + foreach ($cat_arr as $cat) { |
|
3029 | + $trans_cat[] = geodir_wpml_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
3030 | + } |
|
3031 | + |
|
3032 | + |
|
3033 | + $post_arr[0]['categories'] = array_filter($trans_cat); |
|
3034 | 3034 | //print_r($image_arr); |
3035 | - //print_r($arrImages); |
|
3036 | - //echo $_REQUEST['lang']; |
|
3035 | + //print_r($arrImages); |
|
3036 | + //echo $_REQUEST['lang']; |
|
3037 | 3037 | //print_r($post_arr); |
3038 | 3038 | //print_r($trans_cat); |
3039 | - echo json_encode($post_arr[0]); |
|
3039 | + echo json_encode($post_arr[0]); |
|
3040 | 3040 | |
3041 | - } |
|
3042 | - die(); |
|
3041 | + } |
|
3042 | + die(); |
|
3043 | 3043 | } |
3044 | 3044 | |
3045 | 3045 | |
@@ -3059,54 +3059,54 @@ discard block |
||
3059 | 3059 | function geodir_get_custom_fields_type($listing_type = '') |
3060 | 3060 | { |
3061 | 3061 | |
3062 | - global $wpdb; |
|
3062 | + global $wpdb; |
|
3063 | 3063 | |
3064 | - if ($listing_type == '') |
|
3065 | - $listing_type = 'gd_place'; |
|
3064 | + if ($listing_type == '') |
|
3065 | + $listing_type = 'gd_place'; |
|
3066 | 3066 | |
3067 | - $fields_info = array(); |
|
3067 | + $fields_info = array(); |
|
3068 | 3068 | |
3069 | - $get_data = $wpdb->get_results( |
|
3070 | - $wpdb->prepare( |
|
3071 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
3072 | - array($listing_type) |
|
3073 | - ) |
|
3074 | - ); |
|
3069 | + $get_data = $wpdb->get_results( |
|
3070 | + $wpdb->prepare( |
|
3071 | + "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
3072 | + array($listing_type) |
|
3073 | + ) |
|
3074 | + ); |
|
3075 | 3075 | |
3076 | - if (!empty($get_data)) { |
|
3076 | + if (!empty($get_data)) { |
|
3077 | 3077 | |
3078 | - foreach ($get_data as $data) { |
|
3078 | + foreach ($get_data as $data) { |
|
3079 | 3079 | |
3080 | - if ($data->field_type == 'address') { |
|
3080 | + if ($data->field_type == 'address') { |
|
3081 | 3081 | |
3082 | - $extra_fields = unserialize($data->extra_fields); |
|
3082 | + $extra_fields = unserialize($data->extra_fields); |
|
3083 | 3083 | |
3084 | - $prefix = $data->htmlvar_name . '_'; |
|
3084 | + $prefix = $data->htmlvar_name . '_'; |
|
3085 | 3085 | |
3086 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
3086 | + $fields_info[$prefix . 'address'] = $data->field_type; |
|
3087 | 3087 | |
3088 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
3089 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
3088 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
3089 | + $fields_info[$prefix . 'zip'] = $data->field_type; |
|
3090 | 3090 | |
3091 | - } else { |
|
3091 | + } else { |
|
3092 | 3092 | |
3093 | - $fields_info[$data->htmlvar_name] = $data->field_type; |
|
3093 | + $fields_info[$data->htmlvar_name] = $data->field_type; |
|
3094 | 3094 | |
3095 | - } |
|
3095 | + } |
|
3096 | 3096 | |
3097 | - } |
|
3097 | + } |
|
3098 | 3098 | |
3099 | - } |
|
3099 | + } |
|
3100 | 3100 | |
3101 | - /** |
|
3102 | - * Filter to modify custom fields info using listing post type. |
|
3103 | - * |
|
3104 | - * @since 1.0.0 |
|
3105 | - * @package GeoDirectory |
|
3106 | - * @return array $fields_info Custom fields info. |
|
3107 | - * @param string $listing_type The listing post type. |
|
3108 | - */ |
|
3109 | - return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type); |
|
3101 | + /** |
|
3102 | + * Filter to modify custom fields info using listing post type. |
|
3103 | + * |
|
3104 | + * @since 1.0.0 |
|
3105 | + * @package GeoDirectory |
|
3106 | + * @return array $fields_info Custom fields info. |
|
3107 | + * @param string $listing_type The listing post type. |
|
3108 | + */ |
|
3109 | + return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type); |
|
3110 | 3110 | } |
3111 | 3111 | |
3112 | 3112 | |
@@ -3121,58 +3121,58 @@ discard block |
||
3121 | 3121 | */ |
3122 | 3122 | function geodir_function_post_updated($post_ID, $post_after, $post_before) |
3123 | 3123 | { |
3124 | - $post_type = get_post_type($post_ID); |
|
3124 | + $post_type = get_post_type($post_ID); |
|
3125 | 3125 | |
3126 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) { |
|
3127 | - // send notification to client when post moves from draft to publish |
|
3128 | - if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft' || $post_before->post_status == 'pending')) { |
|
3129 | - $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
3130 | - $post_author_data = get_userdata($post_author_id); |
|
3126 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) { |
|
3127 | + // send notification to client when post moves from draft to publish |
|
3128 | + if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft' || $post_before->post_status == 'pending')) { |
|
3129 | + $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
3130 | + $post_author_data = get_userdata($post_author_id); |
|
3131 | 3131 | |
3132 | - $to_name = geodir_get_client_name($post_author_id); |
|
3132 | + $to_name = geodir_get_client_name($post_author_id); |
|
3133 | 3133 | |
3134 | - $from_email = geodir_get_site_email_id(); |
|
3135 | - $from_name = get_site_emailName(); |
|
3136 | - $to_email = $post_author_data->user_email; |
|
3134 | + $from_email = geodir_get_site_email_id(); |
|
3135 | + $from_name = get_site_emailName(); |
|
3136 | + $to_email = $post_author_data->user_email; |
|
3137 | 3137 | |
3138 | - if (!is_email($to_email) && !empty($post_author_data->user_email)) { |
|
3139 | - $to_email = $post_author_data->user_email; |
|
3140 | - } |
|
3138 | + if (!is_email($to_email) && !empty($post_author_data->user_email)) { |
|
3139 | + $to_email = $post_author_data->user_email; |
|
3140 | + } |
|
3141 | 3141 | |
3142 | - $message_type = 'listing_published'; |
|
3142 | + $message_type = 'listing_published'; |
|
3143 | 3143 | |
3144 | - if (get_option('geodir_post_published_email_subject') == '') { |
|
3145 | - update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory')); |
|
3146 | - } |
|
3144 | + if (get_option('geodir_post_published_email_subject') == '') { |
|
3145 | + update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory')); |
|
3146 | + } |
|
3147 | 3147 | |
3148 | - if (get_option('geodir_post_published_email_content') == '') { |
|
3149 | - update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory')); |
|
3150 | - } |
|
3148 | + if (get_option('geodir_post_published_email_content') == '') { |
|
3149 | + update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory')); |
|
3150 | + } |
|
3151 | 3151 | |
3152 | - /** |
|
3153 | - * Called before sending the email when listing gets published. |
|
3154 | - * |
|
3155 | - * @since 1.0.0 |
|
3156 | - * @package GeoDirectory |
|
3157 | - * @param object $post_after The post object after update. |
|
3158 | - * @param object $post_before The post object before update. |
|
3159 | - */ |
|
3160 | - do_action('geodir_before_listing_published_email', $post_after, $post_before); |
|
3161 | - if (is_email($to_email)) { |
|
3162 | - geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
3163 | - } |
|
3152 | + /** |
|
3153 | + * Called before sending the email when listing gets published. |
|
3154 | + * |
|
3155 | + * @since 1.0.0 |
|
3156 | + * @package GeoDirectory |
|
3157 | + * @param object $post_after The post object after update. |
|
3158 | + * @param object $post_before The post object before update. |
|
3159 | + */ |
|
3160 | + do_action('geodir_before_listing_published_email', $post_after, $post_before); |
|
3161 | + if (is_email($to_email)) { |
|
3162 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
3163 | + } |
|
3164 | 3164 | |
3165 | - /** |
|
3166 | - * Called after sending the email when listing gets published. |
|
3167 | - * |
|
3168 | - * @since 1.0.0 |
|
3169 | - * @package GeoDirectory |
|
3170 | - * @param object $post_after The post object after update. |
|
3171 | - * @param object $post_before The post object before update. |
|
3172 | - */ |
|
3173 | - do_action('geodir_after_listing_published_email', $post_after, $post_before); |
|
3174 | - } |
|
3175 | - } |
|
3165 | + /** |
|
3166 | + * Called after sending the email when listing gets published. |
|
3167 | + * |
|
3168 | + * @since 1.0.0 |
|
3169 | + * @package GeoDirectory |
|
3170 | + * @param object $post_after The post object after update. |
|
3171 | + * @param object $post_before The post object before update. |
|
3172 | + */ |
|
3173 | + do_action('geodir_after_listing_published_email', $post_after, $post_before); |
|
3174 | + } |
|
3175 | + } |
|
3176 | 3176 | } |
3177 | 3177 | |
3178 | 3178 | add_action('wp_head', 'geodir_fb_like_thumbnail'); |
@@ -3187,46 +3187,46 @@ discard block |
||
3187 | 3187 | */ |
3188 | 3188 | function geodir_fb_like_thumbnail(){ |
3189 | 3189 | |
3190 | - $facebook_image = ''; |
|
3191 | - |
|
3192 | - if(is_single()){// single post |
|
3193 | - global $post; |
|
3194 | - if(isset($post->featured_image) && $post->featured_image){ |
|
3195 | - $upload_dir = wp_upload_dir(); |
|
3196 | - $facebook_image = $upload_dir['baseurl'].$post->featured_image; |
|
3197 | - |
|
3198 | - } |
|
3199 | - }elseif(geodir_is_page('location')){// location page |
|
3200 | - if (function_exists('geodir_get_location_seo')) { |
|
3201 | - $seo = geodir_get_location_seo(); |
|
3202 | - if (isset($seo->seo_image) && $seo->seo_image) { |
|
3203 | - $image = wp_get_attachment_image_src($seo->seo_image, 'full'); |
|
3204 | - $facebook_image = isset($image[0]) ? $image[0] : ''; |
|
3205 | - } |
|
3206 | - } |
|
3190 | + $facebook_image = ''; |
|
3191 | + |
|
3192 | + if(is_single()){// single post |
|
3193 | + global $post; |
|
3194 | + if(isset($post->featured_image) && $post->featured_image){ |
|
3195 | + $upload_dir = wp_upload_dir(); |
|
3196 | + $facebook_image = $upload_dir['baseurl'].$post->featured_image; |
|
3197 | + |
|
3198 | + } |
|
3199 | + }elseif(geodir_is_page('location')){// location page |
|
3200 | + if (function_exists('geodir_get_location_seo')) { |
|
3201 | + $seo = geodir_get_location_seo(); |
|
3202 | + if (isset($seo->seo_image) && $seo->seo_image) { |
|
3203 | + $image = wp_get_attachment_image_src($seo->seo_image, 'full'); |
|
3204 | + $facebook_image = isset($image[0]) ? $image[0] : ''; |
|
3205 | + } |
|
3206 | + } |
|
3207 | 3207 | |
3208 | - if(!$facebook_image){ |
|
3209 | - global $post; |
|
3208 | + if(!$facebook_image){ |
|
3209 | + global $post; |
|
3210 | 3210 | |
3211 | - if (has_post_thumbnail( $post->ID ) ){ |
|
3212 | - $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); |
|
3213 | - $facebook_image = isset($image[0]) ? $image[0] : ''; |
|
3214 | - } |
|
3215 | - } |
|
3216 | - } |
|
3211 | + if (has_post_thumbnail( $post->ID ) ){ |
|
3212 | + $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); |
|
3213 | + $facebook_image = isset($image[0]) ? $image[0] : ''; |
|
3214 | + } |
|
3215 | + } |
|
3216 | + } |
|
3217 | 3217 | |
3218 | 3218 | |
3219 | - /** |
|
3220 | - * Filter the facebook share image. |
|
3221 | - * |
|
3222 | - * @since 1.6.22 |
|
3223 | - * @param string $facebook_image The image URL or blank. |
|
3224 | - */ |
|
3225 | - $facebook_image = apply_filters('geodir_fb_share_image',$facebook_image); |
|
3219 | + /** |
|
3220 | + * Filter the facebook share image. |
|
3221 | + * |
|
3222 | + * @since 1.6.22 |
|
3223 | + * @param string $facebook_image The image URL or blank. |
|
3224 | + */ |
|
3225 | + $facebook_image = apply_filters('geodir_fb_share_image',$facebook_image); |
|
3226 | 3226 | |
3227 | - if($facebook_image){ |
|
3228 | - echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$facebook_image\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
3229 | - } |
|
3227 | + if($facebook_image){ |
|
3228 | + echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$facebook_image\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
3229 | + } |
|
3230 | 3230 | |
3231 | 3231 | |
3232 | 3232 | } |
@@ -3240,11 +3240,11 @@ discard block |
||
3240 | 3240 | * @since 1.6.22 |
3241 | 3241 | */ |
3242 | 3242 | function geodir_delete_map_cache(){ |
3243 | - $files = glob(realpath(dirname(__FILE__))."/map-functions/map-cache/*.json"); // get all file names |
|
3244 | - foreach($files as $file){ // iterate files |
|
3245 | - if(is_file($file)) |
|
3246 | - unlink($file); // delete file |
|
3247 | - } |
|
3243 | + $files = glob(realpath(dirname(__FILE__))."/map-functions/map-cache/*.json"); // get all file names |
|
3244 | + foreach($files as $file){ // iterate files |
|
3245 | + if(is_file($file)) |
|
3246 | + unlink($file); // delete file |
|
3247 | + } |
|
3248 | 3248 | } |
3249 | 3249 | |
3250 | 3250 | |
@@ -3257,23 +3257,23 @@ discard block |
||
3257 | 3257 | */ |
3258 | 3258 | function geodir_clear_map_cache_on_save($post_id, $post) { |
3259 | 3259 | |
3260 | - if(!get_option('geodir_enable_map_cache')){ |
|
3261 | - return; |
|
3262 | - } |
|
3260 | + if(!get_option('geodir_enable_map_cache')){ |
|
3261 | + return; |
|
3262 | + } |
|
3263 | 3263 | |
3264 | - if ( isset( $post->post_type ) && ( $post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post' ) ) { |
|
3265 | - return; |
|
3266 | - } |
|
3264 | + if ( isset( $post->post_type ) && ( $post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post' ) ) { |
|
3265 | + return; |
|
3266 | + } |
|
3267 | 3267 | |
3268 | - $geodir_posttypes = geodir_get_posttypes(); |
|
3268 | + $geodir_posttypes = geodir_get_posttypes(); |
|
3269 | 3269 | |
3270 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
3271 | - return; |
|
3272 | - } |
|
3270 | + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
3271 | + return; |
|
3272 | + } |
|
3273 | 3273 | |
3274 | - if ( ! wp_is_post_revision( $post_id ) && isset( $post->post_type ) && in_array( $post->post_type, $geodir_posttypes ) ) { |
|
3275 | - geodir_delete_map_cache(); |
|
3276 | - } |
|
3274 | + if ( ! wp_is_post_revision( $post_id ) && isset( $post->post_type ) && in_array( $post->post_type, $geodir_posttypes ) ) { |
|
3275 | + geodir_delete_map_cache(); |
|
3276 | + } |
|
3277 | 3277 | |
3278 | 3278 | } |
3279 | 3279 | |
@@ -3288,19 +3288,19 @@ discard block |
||
3288 | 3288 | * @return array Filtered post data. |
3289 | 3289 | */ |
3290 | 3290 | function geodir_fix_pending_listing_post_name( $data, $postarr ) { |
3291 | - // Dont' update post name for autosaves |
|
3292 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
3293 | - return $data; |
|
3294 | - } |
|
3291 | + // Dont' update post name for autosaves |
|
3292 | + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
3293 | + return $data; |
|
3294 | + } |
|
3295 | 3295 | |
3296 | - if ( !empty( $data['post_name'] ) || empty( $data['post_status'] ) || empty( $data['post_type'] ) || empty( $data['post_title'] ) ) { |
|
3297 | - return $data; |
|
3298 | - } |
|
3296 | + if ( !empty( $data['post_name'] ) || empty( $data['post_status'] ) || empty( $data['post_type'] ) || empty( $data['post_title'] ) ) { |
|
3297 | + return $data; |
|
3298 | + } |
|
3299 | 3299 | |
3300 | - if ( ( 'draft' == $data['post_status'] || 'pending' == $data['post_status'] ) && in_array( $data['post_type'], geodir_get_posttypes() ) ) { |
|
3301 | - $data['post_name'] = wp_unique_post_slug( sanitize_title( $data['post_title'] ), ( !empty( $postarr['ID'] ) ? $postarr['ID'] : 0 ), '', $data['post_type'], $data['post_parent'] ); |
|
3302 | - } |
|
3300 | + if ( ( 'draft' == $data['post_status'] || 'pending' == $data['post_status'] ) && in_array( $data['post_type'], geodir_get_posttypes() ) ) { |
|
3301 | + $data['post_name'] = wp_unique_post_slug( sanitize_title( $data['post_title'] ), ( !empty( $postarr['ID'] ) ? $postarr['ID'] : 0 ), '', $data['post_type'], $data['post_parent'] ); |
|
3302 | + } |
|
3303 | 3303 | |
3304 | - return $data; |
|
3304 | + return $data; |
|
3305 | 3305 | } |
3306 | 3306 | add_filter( 'wp_insert_post_data', 'geodir_fix_pending_listing_post_name', 10, 2 ); |
3307 | 3307 | \ No newline at end of file |
@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | |
27 | 27 | if (!isset($default_cat) || empty($default_cat)) { |
28 | 28 | $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
29 | - }else{ |
|
30 | - if(!is_int($default_cat)){ |
|
29 | + } else { |
|
30 | + if (!is_int($default_cat)) { |
|
31 | 31 | $category = get_term_by('name', $default_cat, $taxonomy); |
32 | - if(isset($category->term_id)){ |
|
33 | - $default_cat = $category->term_id; |
|
32 | + if (isset($category->term_id)) { |
|
33 | + $default_cat = $category->term_id; |
|
34 | 34 | } |
35 | 35 | } |
36 | 36 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | if ($default_pos === false) { |
60 | 60 | |
61 | - $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
61 | + $change_cat_str = str_replace($default_cat.',y:', $default_cat.',y,d:', $change_cat_str); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | $gd_post = $post; |
147 | 147 | if (!empty($gd_post) && is_array($gd_post)) { |
148 | - $gd_post = (object)$post; |
|
148 | + $gd_post = (object) $post; |
|
149 | 149 | |
150 | 150 | // Fix WPML duplicate. |
151 | 151 | if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) { |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | $send_post_submit_mail = false; |
240 | 240 | |
241 | 241 | // unhook this function so it doesn't loop infinitely |
242 | - remove_action('save_post', 'geodir_post_information_save',10,2); |
|
242 | + remove_action('save_post', 'geodir_post_information_save', 10, 2); |
|
243 | 243 | |
244 | 244 | if (isset($request_info['pid']) && $request_info['pid'] != '') { |
245 | 245 | $post['ID'] = $request_info['pid']; |
@@ -263,13 +263,13 @@ discard block |
||
263 | 263 | } |
264 | 264 | |
265 | 265 | // re-hook this function |
266 | - add_action('save_post', 'geodir_post_information_save',10,2); |
|
266 | + add_action('save_post', 'geodir_post_information_save', 10, 2); |
|
267 | 267 | |
268 | 268 | $post_tags = ''; |
269 | 269 | if (!isset($request_info['post_tags'])) { |
270 | 270 | |
271 | 271 | $post_type = $request_info['listing_type']; |
272 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names'))); |
|
272 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names'))); |
|
273 | 273 | |
274 | 274 | } |
275 | 275 | |
@@ -287,13 +287,13 @@ discard block |
||
287 | 287 | $payment_info = array(); |
288 | 288 | $package_info = array(); |
289 | 289 | |
290 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
290 | + $package_info = (array) geodir_post_package_info($package_info, $post); |
|
291 | 291 | |
292 | 292 | $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
293 | 293 | |
294 | 294 | if (!empty($package_info) && !$post_package_id) { |
295 | 295 | if (isset($package_info['days']) && $package_info['days'] != 0) { |
296 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days")); |
|
296 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days")); |
|
297 | 297 | } else { |
298 | 298 | $payment_info['expire_date'] = 'Never'; |
299 | 299 | } |
@@ -314,8 +314,8 @@ discard block |
||
314 | 314 | $extrafields = $val['extra_fields']; |
315 | 315 | |
316 | 316 | if (trim($type) == 'address') { |
317 | - $prefix = $name . '_'; |
|
318 | - $address = $prefix . 'address'; |
|
317 | + $prefix = $name.'_'; |
|
318 | + $address = $prefix.'address'; |
|
319 | 319 | |
320 | 320 | if (isset($request_info[$address]) && $request_info[$address] != '') { |
321 | 321 | $gd_post_info[$address] = wp_slash($request_info[$address]); |
@@ -325,59 +325,59 @@ discard block |
||
325 | 325 | $extrafields = unserialize($extrafields); |
326 | 326 | |
327 | 327 | |
328 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') { |
|
328 | + if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') { |
|
329 | 329 | |
330 | 330 | $location_result = geodir_get_default_location(); |
331 | 331 | |
332 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
333 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
334 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
332 | + $gd_post_info[$prefix.'city'] = $location_result->city; |
|
333 | + $gd_post_info[$prefix.'region'] = $location_result->region; |
|
334 | + $gd_post_info[$prefix.'country'] = $location_result->country; |
|
335 | 335 | |
336 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
336 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
337 | 337 | |
338 | 338 | } else { |
339 | 339 | |
340 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
341 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
342 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
340 | + $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city']; |
|
341 | + $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region']; |
|
342 | + $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country']; |
|
343 | 343 | |
344 | 344 | //----------set post locations when import dummy data------- |
345 | 345 | $location_result = geodir_get_default_location(); |
346 | 346 | |
347 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
347 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
348 | 348 | //----------------------------------------------------------------- |
349 | 349 | |
350 | 350 | } |
351 | 351 | |
352 | 352 | |
353 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) { |
|
354 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
353 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) { |
|
354 | + $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip']; |
|
355 | 355 | } |
356 | 356 | |
357 | 357 | |
358 | 358 | if (isset($extrafields['show_map']) && $extrafields['show_map']) { |
359 | 359 | |
360 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') { |
|
361 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
360 | + if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') { |
|
361 | + $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude']; |
|
362 | 362 | } |
363 | 363 | |
364 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') { |
|
365 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
364 | + if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') { |
|
365 | + $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude']; |
|
366 | 366 | } |
367 | 367 | |
368 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') { |
|
369 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
368 | + if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') { |
|
369 | + $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview']; |
|
370 | 370 | } |
371 | 371 | |
372 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') { |
|
373 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
372 | + if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') { |
|
373 | + $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom']; |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | } |
377 | 377 | |
378 | 378 | // show lat lng |
379 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) { |
|
380 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
379 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) { |
|
380 | + $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng']; |
|
381 | 381 | } |
382 | 382 | } |
383 | 383 | |
@@ -403,16 +403,16 @@ discard block |
||
403 | 403 | |
404 | 404 | // check if we need to change the format or not |
405 | 405 | $date_format_len = strlen(str_replace(' ', '', $date_format)); |
406 | - if($date_format_len>5){// if greater then 5 then it's the old style format. |
|
406 | + if ($date_format_len > 5) {// if greater then 5 then it's the old style format. |
|
407 | 407 | |
408 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
409 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
408 | + $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format |
|
409 | + $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format |
|
410 | 410 | |
411 | 411 | $date_format = str_replace($search, $replace, $date_format); |
412 | 412 | |
413 | 413 | $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; |
414 | 414 | |
415 | - }else{ |
|
415 | + } else { |
|
416 | 416 | $post_htmlvar_value = $request_info[$name]; |
417 | 417 | } |
418 | 418 | |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | if (isset($request_info[$name])) { |
427 | 427 | $gd_post_info[$name] = $request_info[$name]; |
428 | 428 | } else { |
429 | - if (isset($request_info['gd_field_' . $name])) { |
|
429 | + if (isset($request_info['gd_field_'.$name])) { |
|
430 | 430 | $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
431 | 431 | } |
432 | 432 | } |
@@ -486,7 +486,7 @@ discard block |
||
486 | 486 | } |
487 | 487 | |
488 | 488 | if (is_array($post_tags)) { |
489 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
489 | + $taxonomy = $request_info['listing_type'].'_tags'; |
|
490 | 490 | wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
491 | 491 | } |
492 | 492 | |
@@ -498,7 +498,7 @@ discard block |
||
498 | 498 | $tmpimgArr = trim($request_info['post_images'], ","); |
499 | 499 | $tmpimgArr = explode(",", $tmpimgArr); |
500 | 500 | geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
501 | - } else{ |
|
501 | + } else { |
|
502 | 502 | geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
503 | 503 | } |
504 | 504 | |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | if (!in_array($post_type, $all_postypes)) |
580 | 580 | return false; |
581 | 581 | |
582 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
582 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
583 | 583 | |
584 | 584 | /** |
585 | 585 | * Apply Filter to change Post info |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | * @since 1.0.0 |
590 | 590 | * @package GeoDirectory |
591 | 591 | */ |
592 | - $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd |
|
592 | + $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd |
|
593 | 593 | WHERE p.ID = pd.post_id |
594 | 594 | AND pd.post_id = %d", $post_id)); |
595 | 595 | |
@@ -652,7 +652,7 @@ discard block |
||
652 | 652 | |
653 | 653 | $post_type = get_post_type($post_id); |
654 | 654 | |
655 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
655 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
656 | 656 | |
657 | 657 | /** |
658 | 658 | * Filter to change Post info |
@@ -673,7 +673,7 @@ discard block |
||
673 | 673 | |
674 | 674 | $columns = $wpdb->get_col("show columns from $table"); |
675 | 675 | foreach ($postmeta as $mkey => $mval) { |
676 | - if(in_array($mkey,$columns)) { |
|
676 | + if (in_array($mkey, $columns)) { |
|
677 | 677 | if (is_array($mval)) { |
678 | 678 | $mval = implode(",", $mval); |
679 | 679 | } |
@@ -702,12 +702,12 @@ discard block |
||
702 | 702 | */ |
703 | 703 | do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id); |
704 | 704 | |
705 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
705 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
706 | 706 | |
707 | 707 | $query_string_array[] = $post_id; |
708 | 708 | $wpdb->query( |
709 | 709 | $wpdb->prepare( |
710 | - "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d", |
|
710 | + "UPDATE ".$table." SET ".$query_string_escaped." where post_id =%d", |
|
711 | 711 | $query_string_array |
712 | 712 | ) |
713 | 713 | ); |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | array_unshift($query_string_array, $post_id); |
719 | 719 | $wpdb->query( |
720 | 720 | $wpdb->prepare( |
721 | - "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped, |
|
721 | + "INSERT INTO ".$table." SET post_id = %d,".$query_string_escaped, |
|
722 | 722 | $query_string_array |
723 | 723 | ) |
724 | 724 | ); |
@@ -764,7 +764,7 @@ discard block |
||
764 | 764 | |
765 | 765 | $post_type = get_post_type($post_id); |
766 | 766 | |
767 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
767 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
768 | 768 | |
769 | 769 | if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) { |
770 | 770 | |
@@ -772,11 +772,11 @@ discard block |
||
772 | 772 | $meta_value = implode(",", $meta_value); |
773 | 773 | } |
774 | 774 | |
775 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
775 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
776 | 776 | |
777 | 777 | $wpdb->query( |
778 | 778 | $wpdb->prepare( |
779 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
779 | + "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d", |
|
780 | 780 | array($post_id) |
781 | 781 | ) |
782 | 782 | ); |
@@ -785,7 +785,7 @@ discard block |
||
785 | 785 | |
786 | 786 | $wpdb->query( |
787 | 787 | $wpdb->prepare( |
788 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
788 | + "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'", |
|
789 | 789 | array($post_id) |
790 | 790 | ) |
791 | 791 | ); |
@@ -818,14 +818,14 @@ discard block |
||
818 | 818 | |
819 | 819 | $post_type = get_post_type($post_id); |
820 | 820 | |
821 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
821 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
822 | 822 | |
823 | 823 | if (is_array($postmeta) && !empty($postmeta) && $post_id) { |
824 | 824 | $post_meta_set_query = ''; |
825 | 825 | |
826 | 826 | foreach ($postmeta as $mkey) { |
827 | 827 | if ($mval != '') |
828 | - $post_meta_set_query .= $mkey . " = '', "; |
|
828 | + $post_meta_set_query .= $mkey." = '', "; |
|
829 | 829 | } |
830 | 830 | |
831 | 831 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
@@ -834,11 +834,11 @@ discard block |
||
834 | 834 | return false; |
835 | 835 | } |
836 | 836 | |
837 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
837 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') { |
|
838 | 838 | |
839 | 839 | $wpdb->query( |
840 | 840 | $wpdb->prepare( |
841 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
841 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d", |
|
842 | 842 | array($post_id) |
843 | 843 | ) |
844 | 844 | ); |
@@ -847,11 +847,11 @@ discard block |
||
847 | 847 | } |
848 | 848 | |
849 | 849 | } elseif ($postmeta != '' && $post_id) { |
850 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
850 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') { |
|
851 | 851 | |
852 | 852 | $wpdb->query( |
853 | 853 | $wpdb->prepare( |
854 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
854 | + "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d", |
|
855 | 855 | array($post_id) |
856 | 856 | ) |
857 | 857 | ); |
@@ -893,10 +893,10 @@ discard block |
||
893 | 893 | if (!in_array($post_type, $all_postypes)) |
894 | 894 | return false; |
895 | 895 | |
896 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
896 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
897 | 897 | |
898 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') { |
|
899 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id))); |
|
898 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') { |
|
899 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id))); |
|
900 | 900 | |
901 | 901 | if ($meta_value && $meta_value !== '') { |
902 | 902 | $meta_value = maybe_serialize($meta_value); |
@@ -915,7 +915,7 @@ discard block |
||
915 | 915 | * @param string $meta_key The meta key to retrieve. |
916 | 916 | * @param bool $single Optional. Whether to return a single value. Default false. |
917 | 917 | */ |
918 | - return apply_filters( 'geodir_get_post_meta', $meta_value, $post_id, $meta_key, $single ); |
|
918 | + return apply_filters('geodir_get_post_meta', $meta_value, $post_id, $meta_key, $single); |
|
919 | 919 | } |
920 | 920 | } |
921 | 921 | |
@@ -941,13 +941,13 @@ discard block |
||
941 | 941 | |
942 | 942 | $post_type = get_post_type($post_id); |
943 | 943 | |
944 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
944 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
945 | 945 | |
946 | 946 | $post_images = geodir_get_images($post_id); |
947 | 947 | |
948 | 948 | $wpdb->query( |
949 | 949 | $wpdb->prepare( |
950 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
950 | + "UPDATE ".$table." SET featured_image = '' where post_id =%d", |
|
951 | 951 | array($post_id) |
952 | 952 | ) |
953 | 953 | ); |
@@ -977,12 +977,12 @@ discard block |
||
977 | 977 | $file_path = ''; |
978 | 978 | /* --------- start ------- */ |
979 | 979 | |
980 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m])); |
|
980 | + $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m])); |
|
981 | 981 | |
982 | 982 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
983 | 983 | |
984 | 984 | |
985 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) { |
|
985 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM ".GEODIR_ATTACHMENT_TABLE." WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) { |
|
986 | 986 | |
987 | 987 | /* --------- end ------- */ |
988 | 988 | $curr_img_url = $post_image[$m]; |
@@ -1026,7 +1026,7 @@ discard block |
||
1026 | 1026 | // If the uploaded file is the right format |
1027 | 1027 | if (in_array($uploaded_file_type, $allowed_file_types)) { |
1028 | 1028 | if (!function_exists('wp_handle_upload')) { |
1029 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
1029 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
1030 | 1030 | } |
1031 | 1031 | |
1032 | 1032 | if (!is_dir($geodir_uploadpath)) { |
@@ -1034,41 +1034,41 @@ discard block |
||
1034 | 1034 | } |
1035 | 1035 | |
1036 | 1036 | $external_img = false; |
1037 | - if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) { |
|
1037 | + if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) { |
|
1038 | 1038 | } else { |
1039 | 1039 | $external_img = true; |
1040 | 1040 | } |
1041 | 1041 | |
1042 | 1042 | if ($dummy || $external_img) { |
1043 | 1043 | $uploaded_file = array(); |
1044 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
1044 | + $uploaded = (array) fetch_remote_file($curr_img_url); |
|
1045 | 1045 | |
1046 | 1046 | if (isset($uploaded['error']) && empty($uploaded['error'])) { |
1047 | 1047 | $new_name = basename($uploaded['file']); |
1048 | 1048 | $uploaded_file = $uploaded; |
1049 | - }else{ |
|
1050 | - print_r($uploaded);exit; |
|
1049 | + } else { |
|
1050 | + print_r($uploaded); exit; |
|
1051 | 1051 | } |
1052 | 1052 | $external_img = false; |
1053 | 1053 | } else { |
1054 | - $new_name = $post_id . '_' . $file_name; |
|
1054 | + $new_name = $post_id.'_'.$file_name; |
|
1055 | 1055 | |
1056 | 1056 | if ($curr_img_dir == $sub_dir) { |
1057 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
1058 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
1057 | + $img_path = $geodir_uploadpath.'/'.$filename; |
|
1058 | + $img_url = $geodir_uploadurl.'/'.$filename; |
|
1059 | 1059 | } else { |
1060 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1061 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1060 | + $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1061 | + $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1062 | 1062 | } |
1063 | 1063 | |
1064 | 1064 | $uploaded_file = ''; |
1065 | 1065 | |
1066 | 1066 | if (file_exists($img_path)) { |
1067 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
1067 | + $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name); |
|
1068 | 1068 | $file_path = ''; |
1069 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) { |
|
1069 | + } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) { |
|
1070 | 1070 | $uploaded_file = true; |
1071 | - $file_path = $curr_img_dir . '/' . $filename; |
|
1071 | + $file_path = $curr_img_dir.'/'.$filename; |
|
1072 | 1072 | } |
1073 | 1073 | |
1074 | 1074 | if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
@@ -1077,14 +1077,14 @@ discard block |
||
1077 | 1077 | |
1078 | 1078 | if (!empty($uploaded_file)) { |
1079 | 1079 | if (!isset($file_path) || !$file_path) { |
1080 | - $file_path = $sub_dir . '/' . $new_name; |
|
1080 | + $file_path = $sub_dir.'/'.$new_name; |
|
1081 | 1081 | } |
1082 | 1082 | |
1083 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path); |
|
1083 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path); |
|
1084 | 1084 | |
1085 | 1085 | if ($menu_order == 1) { |
1086 | 1086 | |
1087 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id))); |
|
1087 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id))); |
|
1088 | 1088 | |
1089 | 1089 | } |
1090 | 1090 | |
@@ -1102,12 +1102,12 @@ discard block |
||
1102 | 1102 | |
1103 | 1103 | foreach ($attachment as $key => $val) { |
1104 | 1104 | if ($val != '') |
1105 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
1105 | + $attachment_set .= $key." = '".$val."', "; |
|
1106 | 1106 | } |
1107 | 1107 | |
1108 | 1108 | $attachment_set = trim($attachment_set, ", "); |
1109 | 1109 | |
1110 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
1110 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set); |
|
1111 | 1111 | |
1112 | 1112 | $valid_file_ids[] = $wpdb->insert_id; |
1113 | 1113 | } |
@@ -1118,17 +1118,17 @@ discard block |
||
1118 | 1118 | } else { |
1119 | 1119 | $valid_file_ids[] = $find_image; |
1120 | 1120 | |
1121 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]); |
|
1121 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]); |
|
1122 | 1122 | |
1123 | 1123 | $wpdb->query( |
1124 | 1124 | $wpdb->prepare( |
1125 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
1125 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d", |
|
1126 | 1126 | array($menu_order, $split_img_path[1], $post_id) |
1127 | 1127 | ) |
1128 | 1128 | ); |
1129 | 1129 | |
1130 | 1130 | if ($menu_order == 1) |
1131 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1131 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1132 | 1132 | |
1133 | 1133 | } |
1134 | 1134 | |
@@ -1152,9 +1152,9 @@ discard block |
||
1152 | 1152 | |
1153 | 1153 | foreach ($post_images as $img) { |
1154 | 1154 | |
1155 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) { |
|
1155 | + if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) { |
|
1156 | 1156 | |
1157 | - $invalid_files[] = (object)array('src' => $img->src); |
|
1157 | + $invalid_files[] = (object) array('src' => $img->src); |
|
1158 | 1158 | |
1159 | 1159 | } |
1160 | 1160 | |
@@ -1162,12 +1162,12 @@ discard block |
||
1162 | 1162 | |
1163 | 1163 | } |
1164 | 1164 | |
1165 | - $invalid_files = (object)$invalid_files; |
|
1165 | + $invalid_files = (object) $invalid_files; |
|
1166 | 1166 | } |
1167 | 1167 | |
1168 | 1168 | $remove_files[] = $post_id; |
1169 | 1169 | |
1170 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files)); |
|
1170 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files)); |
|
1171 | 1171 | |
1172 | 1172 | if (!empty($invalid_files)) |
1173 | 1173 | geodir_remove_attachments($invalid_files); |
@@ -1207,7 +1207,7 @@ discard block |
||
1207 | 1207 | rmdir($dirPath); |
1208 | 1208 | } */ |
1209 | 1209 | |
1210 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
1210 | + $dirname = $uploads_dir.'/temp_'.$current_user->ID; |
|
1211 | 1211 | geodir_delete_directory($dirname); |
1212 | 1212 | } |
1213 | 1213 | |
@@ -1229,10 +1229,10 @@ discard block |
||
1229 | 1229 | return false; |
1230 | 1230 | while ($file = readdir($dir_handle)) { |
1231 | 1231 | if ($file != "." && $file != "..") { |
1232 | - if (!is_dir($dirname . "/" . $file)) |
|
1233 | - unlink($dirname . "/" . $file); |
|
1232 | + if (!is_dir($dirname."/".$file)) |
|
1233 | + unlink($dirname."/".$file); |
|
1234 | 1234 | else |
1235 | - geodir_delete_directory($dirname . '/' . $file); |
|
1235 | + geodir_delete_directory($dirname.'/'.$file); |
|
1236 | 1236 | } |
1237 | 1237 | } |
1238 | 1238 | closedir($dir_handle); |
@@ -1261,8 +1261,8 @@ discard block |
||
1261 | 1261 | foreach ($postcurr_images as $postimg) { |
1262 | 1262 | $image_name_arr = explode('/', $postimg->src); |
1263 | 1263 | $filename = end($image_name_arr); |
1264 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
1265 | - unlink($uploads_dir . '/' . $filename); |
|
1264 | + if (file_exists($uploads_dir.'/'.$filename)) |
|
1265 | + unlink($uploads_dir.'/'.$filename); |
|
1266 | 1266 | } |
1267 | 1267 | |
1268 | 1268 | } // endif |
@@ -1303,28 +1303,28 @@ discard block |
||
1303 | 1303 | } |
1304 | 1304 | |
1305 | 1305 | if (!in_array($post_type, geodir_get_posttypes())) { |
1306 | - return false;// if not a GD CPT return; |
|
1306 | + return false; // if not a GD CPT return; |
|
1307 | 1307 | } |
1308 | 1308 | |
1309 | 1309 | |
1310 | - $list_img_size = get_option('geodir_listing_img_size','default'); |
|
1310 | + $list_img_size = get_option('geodir_listing_img_size', 'default'); |
|
1311 | 1311 | |
1312 | - if( $size=='list-thumb' && $list_img_size != 'default' ){ |
|
1313 | - $fimg = get_the_post_thumbnail_url($post_id,$list_img_size); |
|
1314 | - if($fimg){ |
|
1312 | + if ($size == 'list-thumb' && $list_img_size != 'default') { |
|
1313 | + $fimg = get_the_post_thumbnail_url($post_id, $list_img_size); |
|
1314 | + if ($fimg) { |
|
1315 | 1315 | $uploads = wp_upload_dir(); |
1316 | 1316 | $uploads_baseurl = $uploads['baseurl']; |
1317 | - $file = str_replace($uploads_baseurl,'',$fimg); |
|
1317 | + $file = str_replace($uploads_baseurl, '', $fimg); |
|
1318 | 1318 | } |
1319 | 1319 | } |
1320 | 1320 | |
1321 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1321 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1322 | 1322 | |
1323 | 1323 | if (!$file) { |
1324 | 1324 | if (isset($post->featured_image)) { |
1325 | 1325 | $file = $post->featured_image; |
1326 | 1326 | } else { |
1327 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id))); |
|
1327 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id))); |
|
1328 | 1328 | } |
1329 | 1329 | } |
1330 | 1330 | |
@@ -1343,9 +1343,9 @@ discard block |
||
1343 | 1343 | |
1344 | 1344 | $file_name = $file_info['basename']; |
1345 | 1345 | |
1346 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
1346 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
1347 | 1347 | |
1348 | - $img_src = $uploads_url . '/' . $file_name; |
|
1348 | + $img_src = $uploads_url.'/'.$file_name; |
|
1349 | 1349 | |
1350 | 1350 | // jetpack CDN check |
1351 | 1351 | if (strpos($file, '.wp.com/') !== false) { |
@@ -1361,8 +1361,8 @@ discard block |
||
1361 | 1361 | * @param string $uploads_url The server upload directory url. |
1362 | 1362 | * @param string $uploads_baseurl The uploads dir base url. |
1363 | 1363 | */ |
1364 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$img_src,$file_name,$uploads_url,$uploads_baseurl); |
|
1365 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1364 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $img_src, $file_name, $uploads_url, $uploads_baseurl); |
|
1365 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1366 | 1366 | $width = 0; |
1367 | 1367 | $height = 0; |
1368 | 1368 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
@@ -1405,7 +1405,7 @@ discard block |
||
1405 | 1405 | $file_name = $file_info['basename']; |
1406 | 1406 | |
1407 | 1407 | $img_arr['src'] = $default_img; |
1408 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1408 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1409 | 1409 | |
1410 | 1410 | $width = 0; |
1411 | 1411 | $height = 0; |
@@ -1422,7 +1422,7 @@ discard block |
||
1422 | 1422 | } |
1423 | 1423 | |
1424 | 1424 | if (!empty($img_arr)) |
1425 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1425 | + return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1426 | 1426 | else |
1427 | 1427 | return false; |
1428 | 1428 | } |
@@ -1485,7 +1485,7 @@ discard block |
||
1485 | 1485 | |
1486 | 1486 | $arrImages = $wpdb->get_results( |
1487 | 1487 | $wpdb->prepare( |
1488 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
1488 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d".$not_featured." ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
1489 | 1489 | array('%image%', $post_id) |
1490 | 1490 | ) |
1491 | 1491 | ); |
@@ -1511,7 +1511,7 @@ discard block |
||
1511 | 1511 | |
1512 | 1512 | $file_name = $file_info['basename']; |
1513 | 1513 | |
1514 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
1514 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
1515 | 1515 | /* |
1516 | 1516 | * Allows the filter of image src for such things as CDN change. |
1517 | 1517 | * |
@@ -1521,8 +1521,8 @@ discard block |
||
1521 | 1521 | * @param string $uploads_url The server upload directory url. |
1522 | 1522 | * @param string $uploads_baseurl The uploads dir base url. |
1523 | 1523 | */ |
1524 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl); |
|
1525 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1524 | + $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl); |
|
1525 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1526 | 1526 | $width = 0; |
1527 | 1527 | $height = 0; |
1528 | 1528 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
@@ -1539,7 +1539,7 @@ discard block |
||
1539 | 1539 | $img_arr['content'] = $attechment->content; // add the description to the array |
1540 | 1540 | $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
1541 | 1541 | |
1542 | - $return_arr[] = (object)$img_arr; |
|
1542 | + $return_arr[] = (object) $img_arr; |
|
1543 | 1543 | |
1544 | 1544 | $counter++; |
1545 | 1545 | } |
@@ -1550,7 +1550,7 @@ discard block |
||
1550 | 1550 | * @since 1.6.20 |
1551 | 1551 | * @param array $return_arr The array of image objects. |
1552 | 1552 | */ |
1553 | - return apply_filters('geodir_get_images_arr',$return_arr); |
|
1553 | + return apply_filters('geodir_get_images_arr', $return_arr); |
|
1554 | 1554 | } else if ($no_images) { |
1555 | 1555 | $default_img = ''; |
1556 | 1556 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
@@ -1589,7 +1589,7 @@ discard block |
||
1589 | 1589 | $img_arr['title'] = $file_info['filename']; // add the title to the array |
1590 | 1590 | $img_arr['content'] = $file_info['filename']; // add the description to the array |
1591 | 1591 | |
1592 | - $return_arr[] = (object)$img_arr; |
|
1592 | + $return_arr[] = (object) $img_arr; |
|
1593 | 1593 | |
1594 | 1594 | /** |
1595 | 1595 | * Filter the images array so things can be changed. |
@@ -1597,7 +1597,7 @@ discard block |
||
1597 | 1597 | * @since 1.6.20 |
1598 | 1598 | * @param array $return_arr The array of image objects. |
1599 | 1599 | */ |
1600 | - return apply_filters('geodir_get_images_arr',$return_arr); |
|
1600 | + return apply_filters('geodir_get_images_arr', $return_arr); |
|
1601 | 1601 | } else |
1602 | 1602 | return false; |
1603 | 1603 | } |
@@ -1622,8 +1622,8 @@ discard block |
||
1622 | 1622 | |
1623 | 1623 | $html = ''; |
1624 | 1624 | if (!empty($request)) { |
1625 | - if (!is_object($request)){ |
|
1626 | - $request = (object)$request; |
|
1625 | + if (!is_object($request)) { |
|
1626 | + $request = (object) $request; |
|
1627 | 1627 | } |
1628 | 1628 | |
1629 | 1629 | if (isset($request->src) && !isset($request->path)) { |
@@ -1637,7 +1637,7 @@ discard block |
||
1637 | 1637 | $img_no_http = str_replace(array("http://", "https://"), "", $request->path); |
1638 | 1638 | $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']); |
1639 | 1639 | if (strpos($img_no_http, $upload_no_http) !== false) { |
1640 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
1640 | + $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path); |
|
1641 | 1641 | } |
1642 | 1642 | |
1643 | 1643 | $width = 0; |
@@ -1654,7 +1654,7 @@ discard block |
||
1654 | 1654 | $image->height = $height; |
1655 | 1655 | $image->title = isset($request->title) ? $request->title : ''; |
1656 | 1656 | |
1657 | - $max_size = (object)geodir_get_imagesize($size); |
|
1657 | + $max_size = (object) geodir_get_imagesize($size); |
|
1658 | 1658 | |
1659 | 1659 | if (!is_wp_error($max_size)) { |
1660 | 1660 | if ($image->width) { |
@@ -1666,13 +1666,13 @@ discard block |
||
1666 | 1666 | $width_per = 100; |
1667 | 1667 | } |
1668 | 1668 | |
1669 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){ |
|
1670 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
1669 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])) { |
|
1670 | + $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'" /></div>'; |
|
1671 | 1671 | } else { |
1672 | - if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){ |
|
1673 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');" title="'.$image->title.'" aria-label="'.$image->title.'" ></div>'; |
|
1674 | - }else{ |
|
1675 | - $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" title="'.$image->title.'" aria-label="'.$image->title.'"></div>'; |
|
1672 | + if ($size == 'widget-thumb' || !get_option('geodir_lazy_load', 1)) { |
|
1673 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');" title="'.$image->title.'" aria-label="'.$image->title.'" ></div>'; |
|
1674 | + } else { |
|
1675 | + $html = '<div data-src="'.str_replace(' ', '%20', $image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" title="'.$image->title.'" aria-label="'.$image->title.'"></div>'; |
|
1676 | 1676 | } |
1677 | 1677 | |
1678 | 1678 | } |
@@ -1707,15 +1707,15 @@ discard block |
||
1707 | 1707 | |
1708 | 1708 | $post_type = get_post_type($post_id); |
1709 | 1709 | |
1710 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1710 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1711 | 1711 | |
1712 | 1712 | if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) { |
1713 | 1713 | |
1714 | - if ($taxonomy == $post_type . '_tags') { |
|
1714 | + if ($taxonomy == $post_type.'_tags') { |
|
1715 | 1715 | if (isset($_POST['action']) && $_POST['action'] == 'inline-save') { |
1716 | 1716 | geodir_save_post_meta($post_id, 'post_tags', $terms); |
1717 | 1717 | } |
1718 | - } elseif ($taxonomy == $post_type . 'category') { |
|
1718 | + } elseif ($taxonomy == $post_type.'category') { |
|
1719 | 1719 | $srcharr = array('"', '\\'); |
1720 | 1720 | $replarr = array(""", ''); |
1721 | 1721 | |
@@ -1737,7 +1737,7 @@ discard block |
||
1737 | 1737 | |
1738 | 1738 | $wpdb->get_var( |
1739 | 1739 | $wpdb->prepare( |
1740 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
1740 | + "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
1741 | 1741 | $cat_ids_array_del |
1742 | 1742 | ) |
1743 | 1743 | ); |
@@ -1745,7 +1745,7 @@ discard block |
||
1745 | 1745 | |
1746 | 1746 | $post_term = $wpdb->get_col( |
1747 | 1747 | $wpdb->prepare( |
1748 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
1748 | + "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
1749 | 1749 | $cat_ids_array |
1750 | 1750 | ) |
1751 | 1751 | ); |
@@ -1767,16 +1767,16 @@ discard block |
||
1767 | 1767 | $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
1768 | 1768 | $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
1769 | 1769 | |
1770 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true))); |
|
1771 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
1770 | + $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true))); |
|
1771 | + $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true); |
|
1772 | 1772 | |
1773 | 1773 | $json = '{'; |
1774 | - $json .= '"id":"' . $post_id . '",'; |
|
1775 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
1776 | - $json .= '"long_pos": "' . $lng . '",'; |
|
1777 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
1778 | - $json .= '"icon":"' . $term_icon . '",'; |
|
1779 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
1774 | + $json .= '"id":"'.$post_id.'",'; |
|
1775 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
1776 | + $json .= '"long_pos": "'.$lng.'",'; |
|
1777 | + $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",'; |
|
1778 | + $json .= '"icon":"'.$term_icon.'",'; |
|
1779 | + $json .= '"group":"catgroup'.$cat_id.'"'; |
|
1780 | 1780 | $json .= '}'; |
1781 | 1781 | |
1782 | 1782 | |
@@ -1784,9 +1784,9 @@ discard block |
||
1784 | 1784 | $post_marker_json = $json; |
1785 | 1785 | |
1786 | 1786 | |
1787 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) { |
|
1787 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".GEODIR_ICON_TABLE." WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) { |
|
1788 | 1788 | |
1789 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET |
|
1789 | + $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET |
|
1790 | 1790 | post_title = %s, |
1791 | 1791 | json = %s |
1792 | 1792 | WHERE post_id = %d AND cat_id = %d ", |
@@ -1794,7 +1794,7 @@ discard block |
||
1794 | 1794 | |
1795 | 1795 | } else { |
1796 | 1796 | |
1797 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET |
|
1797 | + $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET |
|
1798 | 1798 | post_id = %d, |
1799 | 1799 | post_title = %s, |
1800 | 1800 | cat_id = %d, |
@@ -1812,17 +1812,17 @@ discard block |
||
1812 | 1812 | if (!empty($post_term) && is_array($post_term)) { |
1813 | 1813 | $categories = implode(',', $post_term); |
1814 | 1814 | |
1815 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
1815 | + if ($categories != '' && $categories != 0) $categories = ','.$categories.','; |
|
1816 | 1816 | |
1817 | 1817 | if (empty($post_marker_json)) |
1818 | 1818 | $post_marker_json = isset($json) ? $json : ''; |
1819 | 1819 | |
1820 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
1820 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
1821 | 1821 | |
1822 | 1822 | $wpdb->query( |
1823 | 1823 | $wpdb->prepare( |
1824 | - "UPDATE " . $table . " SET |
|
1825 | - " . $taxonomy . " = %s, |
|
1824 | + "UPDATE ".$table." SET |
|
1825 | + " . $taxonomy." = %s, |
|
1826 | 1826 | marker_json = %s |
1827 | 1827 | where post_id = %d", |
1828 | 1828 | array($categories, $post_marker_json, $post_id) |
@@ -1843,7 +1843,7 @@ discard block |
||
1843 | 1843 | |
1844 | 1844 | $wpdb->query( |
1845 | 1845 | $wpdb->prepare( |
1846 | - "UPDATE " . $table . " SET |
|
1846 | + "UPDATE ".$table." SET |
|
1847 | 1847 | default_category = %s |
1848 | 1848 | where post_id = %d", |
1849 | 1849 | array($categories[0], $post_id) |
@@ -1868,9 +1868,9 @@ discard block |
||
1868 | 1868 | |
1869 | 1869 | $wpdb->query( |
1870 | 1870 | $wpdb->prepare( |
1871 | - "INSERT INTO " . $table . " SET |
|
1871 | + "INSERT INTO ".$table." SET |
|
1872 | 1872 | post_id = %d, |
1873 | - " . $taxonomy . " = %s, |
|
1873 | + " . $taxonomy." = %s, |
|
1874 | 1874 | marker_json = %s ", |
1875 | 1875 | |
1876 | 1876 | array($post_id, $categories, $post_marker_json) |
@@ -2002,7 +2002,7 @@ discard block |
||
2002 | 2002 | } ?>"><img alt="bubble image" style="max-height:50px;" |
2003 | 2003 | src="<?php echo $post_images[0]; ?>"/></a></div> |
2004 | 2004 | <?php |
2005 | - }else{ |
|
2005 | + } else { |
|
2006 | 2006 | echo '<div class="geodir-bubble_image"></div>'; |
2007 | 2007 | } |
2008 | 2008 | } else { |
@@ -2010,7 +2010,7 @@ discard block |
||
2010 | 2010 | ?> |
2011 | 2011 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
2012 | 2012 | <?php |
2013 | - }else{ |
|
2013 | + } else { |
|
2014 | 2014 | echo '<div class="geodir-bubble_image"></div>'; |
2015 | 2015 | } |
2016 | 2016 | } |
@@ -2040,7 +2040,7 @@ discard block |
||
2040 | 2040 | * @param object $postinfo_obj The posts info as an object. |
2041 | 2041 | * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
2042 | 2042 | */ |
2043 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview ); |
|
2043 | + do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview); |
|
2044 | 2044 | ?> |
2045 | 2045 | </div> |
2046 | 2046 | <?php |
@@ -2050,9 +2050,9 @@ discard block |
||
2050 | 2050 | <div class="geodir-bubble-meta-fade"></div> |
2051 | 2051 | <div class="geodir-bubble-meta-bottom"> |
2052 | 2052 | <?php if ($rating_star != '') { ?> |
2053 | - <span class="geodir-bubble-rating"><?php echo $rating_star;?></span> |
|
2053 | + <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span> |
|
2054 | 2054 | <?php } ?> |
2055 | - <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span> |
|
2055 | + <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span> |
|
2056 | 2056 | <span class="geodir-bubble-reviews"> |
2057 | 2057 | <a href="<?php echo get_comments_link($ID); ?>" class="geodir-pcomments"><i class="fa fa-comments"></i> <?php echo get_comments_number($ID); ?></a> |
2058 | 2058 | </span> |
@@ -2091,9 +2091,9 @@ discard block |
||
2091 | 2091 | function geodir_new_post_default_status() |
2092 | 2092 | { |
2093 | 2093 | |
2094 | - $status = get_option( 'geodir_new_post_default_status' ); |
|
2094 | + $status = get_option('geodir_new_post_default_status'); |
|
2095 | 2095 | |
2096 | - if ( empty( $status ) ) { |
|
2096 | + if (empty($status)) { |
|
2097 | 2097 | $status = 'publish'; |
2098 | 2098 | } |
2099 | 2099 | |
@@ -2102,7 +2102,7 @@ discard block |
||
2102 | 2102 | * |
2103 | 2103 | * @since 1.6.23 |
2104 | 2104 | */ |
2105 | - return apply_filters( 'geodir_new_post_default_status', $status ); |
|
2105 | + return apply_filters('geodir_new_post_default_status', $status); |
|
2106 | 2106 | |
2107 | 2107 | } |
2108 | 2108 | |
@@ -2121,11 +2121,11 @@ discard block |
||
2121 | 2121 | |
2122 | 2122 | $post_type = get_post_type($post_id); |
2123 | 2123 | |
2124 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2124 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2125 | 2125 | |
2126 | 2126 | $wpdb->query( |
2127 | 2127 | $wpdb->prepare( |
2128 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
2128 | + "UPDATE ".$table." SET post_status=%s WHERE post_id=%d", |
|
2129 | 2129 | array($status, $post_id) |
2130 | 2130 | ) |
2131 | 2131 | ); |
@@ -2197,18 +2197,18 @@ discard block |
||
2197 | 2197 | |
2198 | 2198 | $post_type = get_post_type($post_id); |
2199 | 2199 | |
2200 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2200 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2201 | 2201 | |
2202 | 2202 | $wpdb->query( |
2203 | 2203 | $wpdb->prepare( |
2204 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2204 | + "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d", |
|
2205 | 2205 | array($updatingpost, $temppost) |
2206 | 2206 | ) |
2207 | 2207 | ); |
2208 | 2208 | |
2209 | 2209 | $wpdb->query( |
2210 | 2210 | $wpdb->prepare( |
2211 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2211 | + "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
2212 | 2212 | array($updatingpost, $temppost) |
2213 | 2213 | ) |
2214 | 2214 | ); |
@@ -2217,7 +2217,7 @@ discard block |
||
2217 | 2217 | |
2218 | 2218 | $wpdb->query( |
2219 | 2219 | $wpdb->prepare( |
2220 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2220 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
2221 | 2221 | array($updatingpost, $temppost) |
2222 | 2222 | ) |
2223 | 2223 | ); |
@@ -2255,12 +2255,12 @@ discard block |
||
2255 | 2255 | if (!in_array($post_type, $all_postypes)) |
2256 | 2256 | return false; |
2257 | 2257 | |
2258 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2258 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2259 | 2259 | |
2260 | 2260 | /* Delete custom post meta*/ |
2261 | 2261 | $wpdb->query( |
2262 | 2262 | $wpdb->prepare( |
2263 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
2263 | + "DELETE FROM ".$table." WHERE `post_id` = %d", |
|
2264 | 2264 | array($deleted_postid) |
2265 | 2265 | ) |
2266 | 2266 | ); |
@@ -2268,22 +2268,22 @@ discard block |
||
2268 | 2268 | /* Delete post map icons*/ |
2269 | 2269 | $wpdb->query( |
2270 | 2270 | $wpdb->prepare( |
2271 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
2271 | + "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d", |
|
2272 | 2272 | array($deleted_postid) |
2273 | 2273 | ) |
2274 | 2274 | ); |
2275 | 2275 | |
2276 | 2276 | /* Delete Attachments*/ |
2277 | - $feat_id = get_post_thumbnail_id( $deleted_postid );// make sure to remove the smaller images |
|
2278 | - if($feat_id){ |
|
2279 | - wp_delete_attachment( $feat_id, true); |
|
2277 | + $feat_id = get_post_thumbnail_id($deleted_postid); // make sure to remove the smaller images |
|
2278 | + if ($feat_id) { |
|
2279 | + wp_delete_attachment($feat_id, true); |
|
2280 | 2280 | } |
2281 | 2281 | |
2282 | 2282 | $postcurr_images = geodir_get_images($deleted_postid); |
2283 | 2283 | |
2284 | 2284 | $wpdb->query( |
2285 | 2285 | $wpdb->prepare( |
2286 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
2286 | + "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d", |
|
2287 | 2287 | array($deleted_postid) |
2288 | 2288 | ) |
2289 | 2289 | ); |
@@ -2338,9 +2338,9 @@ discard block |
||
2338 | 2338 | $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart'); |
2339 | 2339 | |
2340 | 2340 | $site_id = ''; |
2341 | - if ( is_multisite() ) { |
|
2341 | + if (is_multisite()) { |
|
2342 | 2342 | $blog_id = get_current_blog_id(); |
2343 | - if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2343 | + if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; } |
|
2344 | 2344 | } |
2345 | 2345 | |
2346 | 2346 | $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
@@ -2361,7 +2361,7 @@ discard block |
||
2361 | 2361 | */ |
2362 | 2362 | do_action('geodir_before_add_from_favorite', $post_id); |
2363 | 2363 | |
2364 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
2364 | + echo '<a href="javascript:void(0);" title="'.$remove_favourite_text.'" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'remove\');"><i class="'.$favourite_icon.'"></i> '.$unfavourite_text.'</a>'; |
|
2365 | 2365 | |
2366 | 2366 | /** |
2367 | 2367 | * Called after adding the post from favourites. |
@@ -2419,9 +2419,9 @@ discard block |
||
2419 | 2419 | $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart'); |
2420 | 2420 | |
2421 | 2421 | $site_id = ''; |
2422 | - if ( is_multisite() ) { |
|
2422 | + if (is_multisite()) { |
|
2423 | 2423 | $blog_id = get_current_blog_id(); |
2424 | - if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2424 | + if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; } |
|
2425 | 2425 | } |
2426 | 2426 | |
2427 | 2427 | $user_meta_data = array(); |
@@ -2446,7 +2446,7 @@ discard block |
||
2446 | 2446 | */ |
2447 | 2447 | do_action('geodir_before_remove_from_favorite', $post_id); |
2448 | 2448 | |
2449 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
2449 | + echo '<a href="javascript:void(0);" title="'.$add_favourite_text.'" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'add\');"><i class="'.$favourite_icon.'"></i> '.$favourite_text.'</a>'; |
|
2450 | 2450 | |
2451 | 2451 | /** |
2452 | 2452 | * Called after removing the post from favourites. |
@@ -2538,9 +2538,9 @@ discard block |
||
2538 | 2538 | |
2539 | 2539 | |
2540 | 2540 | $site_id = ''; |
2541 | - if ( is_multisite() ) { |
|
2541 | + if (is_multisite()) { |
|
2542 | 2542 | $blog_id = get_current_blog_id(); |
2543 | - if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;} |
|
2543 | + if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; } |
|
2544 | 2544 | } |
2545 | 2545 | |
2546 | 2546 | $user_meta_data = ''; |
@@ -2548,24 +2548,24 @@ discard block |
||
2548 | 2548 | $user_meta_data = geodir_get_user_favourites($current_user->data->ID); |
2549 | 2549 | |
2550 | 2550 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) { |
2551 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
2551 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>" ><a |
|
2552 | 2552 | class="geodir-removetofav-icon" href="javascript:void(0);" |
2553 | - onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
|
2554 | - title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
|
2553 | + onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');" |
|
2554 | + title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?> |
|
2555 | 2555 | </a> </span><?php |
2556 | 2556 | |
2557 | 2557 | } else { |
2558 | 2558 | |
2559 | 2559 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') { |
2560 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
2560 | + $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\''; |
|
2561 | 2561 | } else |
2562 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
2562 | + $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')'; |
|
2563 | 2563 | |
2564 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
2564 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon" |
|
2565 | 2565 | href="javascript:void(0);" |
2566 | - onclick="<?php echo $script_text;?>" |
|
2567 | - title="<?php echo $add_favourite_text;?>"><i |
|
2568 | - class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
|
2566 | + onclick="<?php echo $script_text; ?>" |
|
2567 | + title="<?php echo $add_favourite_text; ?>"><i |
|
2568 | + class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span> |
|
2569 | 2569 | <?php } |
2570 | 2570 | } |
2571 | 2571 | } |
@@ -2595,7 +2595,7 @@ discard block |
||
2595 | 2595 | |
2596 | 2596 | $post_type = $taxonomy_obj->object_type[0]; |
2597 | 2597 | |
2598 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2598 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2599 | 2599 | |
2600 | 2600 | /** |
2601 | 2601 | * Filter to modify the 'join' query |
@@ -2618,8 +2618,8 @@ discard block |
||
2618 | 2618 | $where = apply_filters('geodir_cat_post_count_where', $where, $term); |
2619 | 2619 | |
2620 | 2620 | $count_query = "SELECT count(post_id) FROM |
2621 | - " . $table . " as pd " . $join . " |
|
2622 | - WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where; |
|
2621 | + " . $table." as pd ".$join." |
|
2622 | + WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where; |
|
2623 | 2623 | |
2624 | 2624 | $cat_post_count = $wpdb->get_var($count_query); |
2625 | 2625 | if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
@@ -2702,13 +2702,13 @@ discard block |
||
2702 | 2702 | global $post; |
2703 | 2703 | $all_postypes = geodir_get_posttypes(); |
2704 | 2704 | if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) { |
2705 | - $out = ' <a class="excerpt-read-more" href="' . get_permalink($post->ID) . '" title="' . get_the_title($post->ID) . '">'; |
|
2705 | + $out = ' <a class="excerpt-read-more" href="'.get_permalink($post->ID).'" title="'.get_the_title($post->ID).'">'; |
|
2706 | 2706 | /** |
2707 | 2707 | * Filter excerpt read more text. |
2708 | 2708 | * |
2709 | 2709 | * @since 1.0.0 |
2710 | 2710 | */ |
2711 | - $out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) ); |
|
2711 | + $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory')); |
|
2712 | 2712 | $out .= '</a>'; |
2713 | 2713 | return $out; |
2714 | 2714 | } |
@@ -2737,14 +2737,14 @@ discard block |
||
2737 | 2737 | if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) { |
2738 | 2738 | |
2739 | 2739 | $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
2740 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
2740 | + $table = $plugin_prefix.$geodir_post_type.'_detail'; |
|
2741 | 2741 | |
2742 | 2742 | $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
2743 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
2743 | + $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png'; |
|
2744 | 2744 | |
2745 | 2745 | $posts = $wpdb->get_results( |
2746 | 2746 | $wpdb->prepare( |
2747 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
2747 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
2748 | 2748 | array($term_id, $taxonomy) |
2749 | 2749 | ) |
2750 | 2750 | ); |
@@ -2756,19 +2756,19 @@ discard block |
||
2756 | 2756 | $lng = $post_obj->post_longitude; |
2757 | 2757 | |
2758 | 2758 | $json = '{'; |
2759 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
2760 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
2761 | - $json .= '"long_pos": "' . $lng . '",'; |
|
2762 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
2763 | - $json .= '"icon":"' . $term_icon . '",'; |
|
2764 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
2759 | + $json .= '"id":"'.$post_obj->post_id.'",'; |
|
2760 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
2761 | + $json .= '"long_pos": "'.$lng.'",'; |
|
2762 | + $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",'; |
|
2763 | + $json .= '"icon":"'.$term_icon.'",'; |
|
2764 | + $json .= '"group":"catgroup'.$term_id.'"'; |
|
2765 | 2765 | $json .= '}'; |
2766 | 2766 | |
2767 | 2767 | if ($post_obj->default_category == $term_id) { |
2768 | 2768 | |
2769 | 2769 | $wpdb->query( |
2770 | 2770 | $wpdb->prepare( |
2771 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
2771 | + "UPDATE ".$table." SET marker_json = %s where post_id = %d", |
|
2772 | 2772 | array($json, $post_obj->post_id) |
2773 | 2773 | ) |
2774 | 2774 | ); |
@@ -2776,7 +2776,7 @@ discard block |
||
2776 | 2776 | |
2777 | 2777 | $wpdb->query( |
2778 | 2778 | $wpdb->prepare( |
2779 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
2779 | + "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
2780 | 2780 | array($json, $post_obj->post_id, $term_id) |
2781 | 2781 | ) |
2782 | 2782 | ); |
@@ -2864,7 +2864,7 @@ discard block |
||
2864 | 2864 | * @param bool $exclude_admin Do you want to exclude admin from the check?. Default true. |
2865 | 2865 | * return bool |
2866 | 2866 | */ |
2867 | - return apply_filters('geodir_listing_belong_to_current_user',$result,$listing_id,$current_user->ID,$exclude_admin); |
|
2867 | + return apply_filters('geodir_listing_belong_to_current_user', $result, $listing_id, $current_user->ID, $exclude_admin); |
|
2868 | 2868 | } |
2869 | 2869 | |
2870 | 2870 | |
@@ -2912,7 +2912,7 @@ discard block |
||
2912 | 2912 | // print_r($uploads ) ; |
2913 | 2913 | $post_first_image = $wpdb->get_results( |
2914 | 2914 | $wpdb->prepare( |
2915 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
2915 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
2916 | 2916 | ) |
2917 | 2917 | ); |
2918 | 2918 | |
@@ -2933,9 +2933,9 @@ discard block |
||
2933 | 2933 | |
2934 | 2934 | $post_type = get_post_type($post_id); |
2935 | 2935 | |
2936 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
2936 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
2937 | 2937 | |
2938 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id); |
|
2938 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id); |
|
2939 | 2939 | |
2940 | 2940 | $new_attachment_name = basename($post_first_image[0]->file); |
2941 | 2941 | |
@@ -2948,11 +2948,11 @@ discard block |
||
2948 | 2948 | wp_delete_attachment($post_thumbnail_id); |
2949 | 2949 | |
2950 | 2950 | } |
2951 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
2951 | + $filename = $uploads['basedir'].$post_first_image[0]->file; |
|
2952 | 2952 | |
2953 | 2953 | $attachment = array( |
2954 | 2954 | 'post_mime_type' => $post_first_image[0]->mime_type, |
2955 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
2955 | + 'guid' => $uploads['baseurl'].$post_first_image[0]->file, |
|
2956 | 2956 | 'post_parent' => $post_id, |
2957 | 2957 | 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title), |
2958 | 2958 | 'post_content' => '' |
@@ -2965,7 +2965,7 @@ discard block |
||
2965 | 2965 | |
2966 | 2966 | set_post_thumbnail($post_id, $id); |
2967 | 2967 | |
2968 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
2968 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
2969 | 2969 | wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
2970 | 2970 | |
2971 | 2971 | } |
@@ -2998,35 +2998,35 @@ discard block |
||
2998 | 2998 | $post_id = absint($_POST['post_id']); |
2999 | 2999 | $upload_dir = wp_upload_dir(); |
3000 | 3000 | $post_type = get_post_type($_POST['post_id']); |
3001 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
3001 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
3002 | 3002 | |
3003 | 3003 | $post_arr = $wpdb->get_results($wpdb->prepare( |
3004 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
3004 | + "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
3005 | 3005 | array($post_id) |
3006 | 3006 | ) |
3007 | 3007 | , ARRAY_A); |
3008 | 3008 | |
3009 | 3009 | $arrImages = $wpdb->get_results( |
3010 | 3010 | $wpdb->prepare( |
3011 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
3011 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
3012 | 3012 | array('%image%', $post_id) |
3013 | 3013 | ) |
3014 | 3014 | ); |
3015 | 3015 | if ($arrImages) { |
3016 | 3016 | $image_arr = array(); |
3017 | 3017 | foreach ($arrImages as $img) { |
3018 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
3018 | + $image_arr[] = $upload_dir['baseurl'].$img->file; |
|
3019 | 3019 | } |
3020 | 3020 | $comma_separated = implode(",", $image_arr); |
3021 | 3021 | $post_arr[0]['post_images'] = $comma_separated; |
3022 | 3022 | } |
3023 | 3023 | |
3024 | 3024 | |
3025 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
3025 | + $cats = $post_arr[0][$post_arr[0]['post_type'].'category']; |
|
3026 | 3026 | $cat_arr = array_filter(explode(",", $cats)); |
3027 | 3027 | $trans_cat = array(); |
3028 | 3028 | foreach ($cat_arr as $cat) { |
3029 | - $trans_cat[] = geodir_wpml_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
3029 | + $trans_cat[] = geodir_wpml_object_id($cat, $post_arr[0]['post_type'].'category', false); |
|
3030 | 3030 | } |
3031 | 3031 | |
3032 | 3032 | |
@@ -3068,7 +3068,7 @@ discard block |
||
3068 | 3068 | |
3069 | 3069 | $get_data = $wpdb->get_results( |
3070 | 3070 | $wpdb->prepare( |
3071 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
3071 | + "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'", |
|
3072 | 3072 | array($listing_type) |
3073 | 3073 | ) |
3074 | 3074 | ); |
@@ -3081,12 +3081,12 @@ discard block |
||
3081 | 3081 | |
3082 | 3082 | $extra_fields = unserialize($data->extra_fields); |
3083 | 3083 | |
3084 | - $prefix = $data->htmlvar_name . '_'; |
|
3084 | + $prefix = $data->htmlvar_name.'_'; |
|
3085 | 3085 | |
3086 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
3086 | + $fields_info[$prefix.'address'] = $data->field_type; |
|
3087 | 3087 | |
3088 | 3088 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
3089 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
3089 | + $fields_info[$prefix.'zip'] = $data->field_type; |
|
3090 | 3090 | |
3091 | 3091 | } else { |
3092 | 3092 | |
@@ -3185,18 +3185,18 @@ discard block |
||
3185 | 3185 | * @since 1.6.22 Added image from location page. |
3186 | 3186 | * @package GeoDirectory |
3187 | 3187 | */ |
3188 | -function geodir_fb_like_thumbnail(){ |
|
3188 | +function geodir_fb_like_thumbnail() { |
|
3189 | 3189 | |
3190 | 3190 | $facebook_image = ''; |
3191 | 3191 | |
3192 | - if(is_single()){// single post |
|
3192 | + if (is_single()) {// single post |
|
3193 | 3193 | global $post; |
3194 | - if(isset($post->featured_image) && $post->featured_image){ |
|
3194 | + if (isset($post->featured_image) && $post->featured_image) { |
|
3195 | 3195 | $upload_dir = wp_upload_dir(); |
3196 | 3196 | $facebook_image = $upload_dir['baseurl'].$post->featured_image; |
3197 | 3197 | |
3198 | 3198 | } |
3199 | - }elseif(geodir_is_page('location')){// location page |
|
3199 | + }elseif (geodir_is_page('location')) {// location page |
|
3200 | 3200 | if (function_exists('geodir_get_location_seo')) { |
3201 | 3201 | $seo = geodir_get_location_seo(); |
3202 | 3202 | if (isset($seo->seo_image) && $seo->seo_image) { |
@@ -3205,11 +3205,11 @@ discard block |
||
3205 | 3205 | } |
3206 | 3206 | } |
3207 | 3207 | |
3208 | - if(!$facebook_image){ |
|
3208 | + if (!$facebook_image) { |
|
3209 | 3209 | global $post; |
3210 | 3210 | |
3211 | - if (has_post_thumbnail( $post->ID ) ){ |
|
3212 | - $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); |
|
3211 | + if (has_post_thumbnail($post->ID)) { |
|
3212 | + $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); |
|
3213 | 3213 | $facebook_image = isset($image[0]) ? $image[0] : ''; |
3214 | 3214 | } |
3215 | 3215 | } |
@@ -3222,16 +3222,16 @@ discard block |
||
3222 | 3222 | * @since 1.6.22 |
3223 | 3223 | * @param string $facebook_image The image URL or blank. |
3224 | 3224 | */ |
3225 | - $facebook_image = apply_filters('geodir_fb_share_image',$facebook_image); |
|
3225 | + $facebook_image = apply_filters('geodir_fb_share_image', $facebook_image); |
|
3226 | 3226 | |
3227 | - if($facebook_image){ |
|
3227 | + if ($facebook_image) { |
|
3228 | 3228 | echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$facebook_image\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
3229 | 3229 | } |
3230 | 3230 | |
3231 | 3231 | |
3232 | 3232 | } |
3233 | 3233 | |
3234 | -add_action( 'save_post', 'geodir_clear_map_cache_on_save', 10,2 ); |
|
3234 | +add_action('save_post', 'geodir_clear_map_cache_on_save', 10, 2); |
|
3235 | 3235 | |
3236 | 3236 | |
3237 | 3237 | /** |
@@ -3239,10 +3239,10 @@ discard block |
||
3239 | 3239 | * |
3240 | 3240 | * @since 1.6.22 |
3241 | 3241 | */ |
3242 | -function geodir_delete_map_cache(){ |
|
3242 | +function geodir_delete_map_cache() { |
|
3243 | 3243 | $files = glob(realpath(dirname(__FILE__))."/map-functions/map-cache/*.json"); // get all file names |
3244 | - foreach($files as $file){ // iterate files |
|
3245 | - if(is_file($file)) |
|
3244 | + foreach ($files as $file) { // iterate files |
|
3245 | + if (is_file($file)) |
|
3246 | 3246 | unlink($file); // delete file |
3247 | 3247 | } |
3248 | 3248 | } |
@@ -3257,21 +3257,21 @@ discard block |
||
3257 | 3257 | */ |
3258 | 3258 | function geodir_clear_map_cache_on_save($post_id, $post) { |
3259 | 3259 | |
3260 | - if(!get_option('geodir_enable_map_cache')){ |
|
3260 | + if (!get_option('geodir_enable_map_cache')) { |
|
3261 | 3261 | return; |
3262 | 3262 | } |
3263 | 3263 | |
3264 | - if ( isset( $post->post_type ) && ( $post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post' ) ) { |
|
3264 | + if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) { |
|
3265 | 3265 | return; |
3266 | 3266 | } |
3267 | 3267 | |
3268 | 3268 | $geodir_posttypes = geodir_get_posttypes(); |
3269 | 3269 | |
3270 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
3270 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { |
|
3271 | 3271 | return; |
3272 | 3272 | } |
3273 | 3273 | |
3274 | - if ( ! wp_is_post_revision( $post_id ) && isset( $post->post_type ) && in_array( $post->post_type, $geodir_posttypes ) ) { |
|
3274 | + if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) { |
|
3275 | 3275 | geodir_delete_map_cache(); |
3276 | 3276 | } |
3277 | 3277 | |
@@ -3287,20 +3287,20 @@ discard block |
||
3287 | 3287 | * @param array $postarr An array of sanitized, but otherwise unmodified post data. |
3288 | 3288 | * @return array Filtered post data. |
3289 | 3289 | */ |
3290 | -function geodir_fix_pending_listing_post_name( $data, $postarr ) { |
|
3290 | +function geodir_fix_pending_listing_post_name($data, $postarr) { |
|
3291 | 3291 | // Dont' update post name for autosaves |
3292 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
3292 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { |
|
3293 | 3293 | return $data; |
3294 | 3294 | } |
3295 | 3295 | |
3296 | - if ( !empty( $data['post_name'] ) || empty( $data['post_status'] ) || empty( $data['post_type'] ) || empty( $data['post_title'] ) ) { |
|
3296 | + if (!empty($data['post_name']) || empty($data['post_status']) || empty($data['post_type']) || empty($data['post_title'])) { |
|
3297 | 3297 | return $data; |
3298 | 3298 | } |
3299 | 3299 | |
3300 | - if ( ( 'draft' == $data['post_status'] || 'pending' == $data['post_status'] ) && in_array( $data['post_type'], geodir_get_posttypes() ) ) { |
|
3301 | - $data['post_name'] = wp_unique_post_slug( sanitize_title( $data['post_title'] ), ( !empty( $postarr['ID'] ) ? $postarr['ID'] : 0 ), '', $data['post_type'], $data['post_parent'] ); |
|
3300 | + if (('draft' == $data['post_status'] || 'pending' == $data['post_status']) && in_array($data['post_type'], geodir_get_posttypes())) { |
|
3301 | + $data['post_name'] = wp_unique_post_slug(sanitize_title($data['post_title']), (!empty($postarr['ID']) ? $postarr['ID'] : 0), '', $data['post_type'], $data['post_parent']); |
|
3302 | 3302 | } |
3303 | 3303 | |
3304 | 3304 | return $data; |
3305 | 3305 | } |
3306 | -add_filter( 'wp_insert_post_data', 'geodir_fix_pending_listing_post_name', 10, 2 ); |
|
3307 | 3306 | \ No newline at end of file |
3307 | +add_filter('wp_insert_post_data', 'geodir_fix_pending_listing_post_name', 10, 2); |
|
3308 | 3308 | \ No newline at end of file |
@@ -23,8 +23,12 @@ |
||
23 | 23 | |
24 | 24 | $collate = ''; |
25 | 25 | if ($wpdb->has_cap('collation')) { |
26 | - if (!empty($wpdb->charset)) $collate = "DEFAULT CHARACTER SET $wpdb->charset"; |
|
27 | - if (!empty($wpdb->collate)) $collate .= " COLLATE $wpdb->collate"; |
|
26 | + if (!empty($wpdb->charset)) { |
|
27 | + $collate = "DEFAULT CHARACTER SET $wpdb->charset"; |
|
28 | + } |
|
29 | + if (!empty($wpdb->collate)) { |
|
30 | + $collate .= " COLLATE $wpdb->collate"; |
|
31 | + } |
|
28 | 32 | } |
29 | 33 | |
30 | 34 | /** |
@@ -32,35 +32,35 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @since 1.0.0 |
34 | 34 | */ |
35 | - require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); |
|
35 | + require_once(ABSPATH.'wp-admin/includes/upgrade.php'); |
|
36 | 36 | |
37 | 37 | |
38 | 38 | // rename tables if we need to |
39 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_countries'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_countries'") == 0) { |
|
40 | - $wpdb->query("RENAME TABLE geodir_countries TO " . $wpdb->prefix . "geodir_countries"); |
|
39 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_countries'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_countries'") == 0) { |
|
40 | + $wpdb->query("RENAME TABLE geodir_countries TO ".$wpdb->prefix."geodir_countries"); |
|
41 | 41 | } |
42 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_fields'") == 0) { |
|
43 | - $wpdb->query("RENAME TABLE geodir_custom_fields TO " . $wpdb->prefix . "geodir_custom_fields"); |
|
42 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_custom_fields'") == 0) { |
|
43 | + $wpdb->query("RENAME TABLE geodir_custom_fields TO ".$wpdb->prefix."geodir_custom_fields"); |
|
44 | 44 | } |
45 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_icon'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_icon'") == 0) { |
|
46 | - $wpdb->query("RENAME TABLE geodir_post_icon TO " . $wpdb->prefix . "geodir_post_icon"); |
|
45 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_icon'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_post_icon'") == 0) { |
|
46 | + $wpdb->query("RENAME TABLE geodir_post_icon TO ".$wpdb->prefix."geodir_post_icon"); |
|
47 | 47 | } |
48 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_attachments'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_attachments'") == 0) { |
|
49 | - $wpdb->query("RENAME TABLE geodir_attachments TO " . $wpdb->prefix . "geodir_attachments"); |
|
48 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_attachments'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_attachments'") == 0) { |
|
49 | + $wpdb->query("RENAME TABLE geodir_attachments TO ".$wpdb->prefix."geodir_attachments"); |
|
50 | 50 | } |
51 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_review'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_review'") == 0) { |
|
52 | - $wpdb->query("RENAME TABLE geodir_post_review TO " . $wpdb->prefix . "geodir_post_review"); |
|
51 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_review'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_post_review'") == 0) { |
|
52 | + $wpdb->query("RENAME TABLE geodir_post_review TO ".$wpdb->prefix."geodir_post_review"); |
|
53 | 53 | } |
54 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_sort_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_sort_fields'") == 0) { |
|
55 | - $wpdb->query("RENAME TABLE geodir_custom_sort_fields TO " . $wpdb->prefix . "geodir_custom_sort_fields"); |
|
54 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_sort_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_custom_sort_fields'") == 0) { |
|
55 | + $wpdb->query("RENAME TABLE geodir_custom_sort_fields TO ".$wpdb->prefix."geodir_custom_sort_fields"); |
|
56 | 56 | } |
57 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_gd_place_detail'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_gd_place_detail'") == 0) { |
|
58 | - $wpdb->query("RENAME TABLE geodir_gd_place_detail TO " . $wpdb->prefix . "geodir_gd_place_detail"); |
|
57 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_gd_place_detail'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_gd_place_detail'") == 0) { |
|
58 | + $wpdb->query("RENAME TABLE geodir_gd_place_detail TO ".$wpdb->prefix."geodir_gd_place_detail"); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
62 | 62 | // Table for storing Countries |
63 | - $GEODIR_COUNTRIES_TABLE = "CREATE TABLE " . GEODIR_COUNTRIES_TABLE . " ( |
|
63 | + $GEODIR_COUNTRIES_TABLE = "CREATE TABLE ".GEODIR_COUNTRIES_TABLE." ( |
|
64 | 64 | CountryId smallint AUTO_INCREMENT NOT NULL , |
65 | 65 | Country varchar (50) NOT NULL , |
66 | 66 | FIPS104 varchar (2) NOT NULL , |
@@ -89,11 +89,11 @@ discard block |
||
89 | 89 | dbDelta($GEODIR_COUNTRIES_TABLE); |
90 | 90 | |
91 | 91 | |
92 | - $country_table_empty = $wpdb->get_var("SELECT COUNT(CountryId) FROM " . GEODIR_COUNTRIES_TABLE . ""); |
|
92 | + $country_table_empty = $wpdb->get_var("SELECT COUNT(CountryId) FROM ".GEODIR_COUNTRIES_TABLE.""); |
|
93 | 93 | |
94 | 94 | if ($country_table_empty == 0) { |
95 | 95 | |
96 | - $countries_insert = "INSERT INTO " . GEODIR_COUNTRIES_TABLE . " (`CountryId`, `Country`, `FIPS104`, `ISO2`, `ISO3`, `ISON`, `Internet`, `Capital`, `MapReference`, `NationalitySingular`, `NationalityPlural`, `Currency`, `CurrencyCode`, `Population`, `Title`, `COMMENT`) VALUES |
|
96 | + $countries_insert = "INSERT INTO ".GEODIR_COUNTRIES_TABLE." (`CountryId`, `Country`, `FIPS104`, `ISO2`, `ISO3`, `ISON`, `Internet`, `Capital`, `MapReference`, `NationalitySingular`, `NationalityPlural`, `Currency`, `CurrencyCode`, `Population`, `Title`, `COMMENT`) VALUES |
|
97 | 97 | (1, 'Afghanistan', 'AF', 'AF', 'AFG', '4', 'AF', 'Kabul ', 'Asia ', 'Afghan', 'Afghans', 'Afghani ', 'AFA', 26813057, 'Afghanistan', ''), |
98 | 98 | (2, 'Albania', 'AL', 'AL', 'ALB', '8', 'AL', 'Tirana ', 'Europe ', 'Albanian', 'Albanians', 'Lek ', 'ALL', 3510484, 'Albania', ''), |
99 | 99 | (3, 'Algeria', 'AG', 'DZ', 'DZA', '12', 'DZ', 'Algiers ', 'Africa ', 'Algerian', 'Algerians', 'Algerian Dinar ', 'DZD', 31736053, 'Algeria', ''), |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | |
383 | 383 | // Table for storing location attribute - these are user defined |
384 | 384 | |
385 | - $icon_table = "CREATE TABLE " . GEODIR_ICON_TABLE . " ( |
|
385 | + $icon_table = "CREATE TABLE ".GEODIR_ICON_TABLE." ( |
|
386 | 386 | id int NOT NULL AUTO_INCREMENT, |
387 | 387 | post_id int( 10 ) NOT NULL, |
388 | 388 | post_title varchar(254) NOT NULL, |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | |
404 | 404 | // Table for storing post custom fields - these are user defined |
405 | 405 | |
406 | - $post_custom_fields = "CREATE TABLE " . GEODIR_CUSTOM_FIELDS_TABLE . " ( |
|
406 | + $post_custom_fields = "CREATE TABLE ".GEODIR_CUSTOM_FIELDS_TABLE." ( |
|
407 | 407 | id int(11) NOT NULL AUTO_INCREMENT, |
408 | 408 | post_type varchar(100) NULL, |
409 | 409 | data_type varchar(100) NULL DEFAULT NULL, |
@@ -448,7 +448,7 @@ discard block |
||
448 | 448 | dbDelta($post_custom_fields); |
449 | 449 | |
450 | 450 | // Table for storing place attribute - these are user defined |
451 | - $post_detail = "CREATE TABLE " . $plugin_prefix . "gd_place_detail ( |
|
451 | + $post_detail = "CREATE TABLE ".$plugin_prefix."gd_place_detail ( |
|
452 | 452 | post_id int(11) NOT NULL, |
453 | 453 | post_title text NULL DEFAULT NULL, |
454 | 454 | post_status varchar(20) NULL DEFAULT NULL, |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | |
490 | 490 | // Table for storing place images - these are user defined |
491 | 491 | |
492 | - $attechment_table = "CREATE TABLE " . GEODIR_ATTACHMENT_TABLE . " ( |
|
492 | + $attechment_table = "CREATE TABLE ".GEODIR_ATTACHMENT_TABLE." ( |
|
493 | 493 | ID int(11) NOT NULL AUTO_INCREMENT, |
494 | 494 | post_id int(11) NOT NULL, |
495 | 495 | user_id int(11) DEFAULT NULL, |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | dbDelta($attechment_table); |
517 | 517 | |
518 | 518 | |
519 | - $custom_sort_fields_table = "CREATE TABLE " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " ( |
|
519 | + $custom_sort_fields_table = "CREATE TABLE ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." ( |
|
520 | 520 | id int(11) NOT NULL AUTO_INCREMENT, |
521 | 521 | post_type varchar(255) NOT NULL, |
522 | 522 | data_type varchar(255) NOT NULL, |
@@ -545,7 +545,7 @@ discard block |
||
545 | 545 | dbDelta($custom_sort_fields_table); |
546 | 546 | |
547 | 547 | |
548 | - $review_table = "CREATE TABLE " . GEODIR_REVIEW_TABLE . " ( |
|
548 | + $review_table = "CREATE TABLE ".GEODIR_REVIEW_TABLE." ( |
|
549 | 549 | id int(11) NOT NULL AUTO_INCREMENT, |
550 | 550 | post_id int(11) DEFAULT NULL, |
551 | 551 | post_title varchar( 255 ) NULL DEFAULT NULL, |
@@ -6,33 +6,33 @@ discard block |
||
6 | 6 | * @package GeoDirectory |
7 | 7 | */ |
8 | 8 | if (!function_exists('geodir_create_tables')) { |
9 | - /** |
|
10 | - * Creates custom db tables for storing GeoDirectory plugin data. |
|
11 | - * |
|
12 | - * @since 1.0.0 |
|
13 | - * @package GeoDirectory |
|
14 | - * @global object $wpdb WordPress Database object. |
|
15 | - * @global string $plugin_prefix GeoDirectory plugin table prefix. |
|
16 | - */ |
|
17 | - function geodir_create_tables() |
|
18 | - { |
|
19 | - |
|
20 | - global $wpdb, $plugin_prefix; |
|
21 | - |
|
22 | - $wpdb->hide_errors(); |
|
23 | - |
|
24 | - /* |
|
9 | + /** |
|
10 | + * Creates custom db tables for storing GeoDirectory plugin data. |
|
11 | + * |
|
12 | + * @since 1.0.0 |
|
13 | + * @package GeoDirectory |
|
14 | + * @global object $wpdb WordPress Database object. |
|
15 | + * @global string $plugin_prefix GeoDirectory plugin table prefix. |
|
16 | + */ |
|
17 | + function geodir_create_tables() |
|
18 | + { |
|
19 | + |
|
20 | + global $wpdb, $plugin_prefix; |
|
21 | + |
|
22 | + $wpdb->hide_errors(); |
|
23 | + |
|
24 | + /* |
|
25 | 25 | * Indexes have a maximum size of 767 bytes. Historically, we haven't need to be concerned about that. |
26 | 26 | * As of 4.2, however, we moved to utf8mb4, which uses 4 bytes per character. This means that an index which |
27 | 27 | * used to have room for floor(767/3) = 255 characters, now only has room for floor(767/4) = 191 characters. |
28 | 28 | */ |
29 | - $max_index_length = 191; |
|
29 | + $max_index_length = 191; |
|
30 | 30 | |
31 | - $collate = ''; |
|
32 | - if ($wpdb->has_cap('collation')) { |
|
33 | - if (!empty($wpdb->charset)) $collate = "DEFAULT CHARACTER SET $wpdb->charset"; |
|
34 | - if (!empty($wpdb->collate)) $collate .= " COLLATE $wpdb->collate"; |
|
35 | - } |
|
31 | + $collate = ''; |
|
32 | + if ($wpdb->has_cap('collation')) { |
|
33 | + if (!empty($wpdb->charset)) $collate = "DEFAULT CHARACTER SET $wpdb->charset"; |
|
34 | + if (!empty($wpdb->collate)) $collate .= " COLLATE $wpdb->collate"; |
|
35 | + } |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * Include any functions needed for upgrades. |
@@ -43,31 +43,31 @@ discard block |
||
43 | 43 | |
44 | 44 | |
45 | 45 | // rename tables if we need to |
46 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_countries'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_countries'") == 0) { |
|
47 | - $wpdb->query("RENAME TABLE geodir_countries TO " . $wpdb->prefix . "geodir_countries"); |
|
48 | - } |
|
49 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_fields'") == 0) { |
|
50 | - $wpdb->query("RENAME TABLE geodir_custom_fields TO " . $wpdb->prefix . "geodir_custom_fields"); |
|
51 | - } |
|
52 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_icon'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_icon'") == 0) { |
|
53 | - $wpdb->query("RENAME TABLE geodir_post_icon TO " . $wpdb->prefix . "geodir_post_icon"); |
|
54 | - } |
|
55 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_attachments'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_attachments'") == 0) { |
|
56 | - $wpdb->query("RENAME TABLE geodir_attachments TO " . $wpdb->prefix . "geodir_attachments"); |
|
57 | - } |
|
58 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_review'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_review'") == 0) { |
|
59 | - $wpdb->query("RENAME TABLE geodir_post_review TO " . $wpdb->prefix . "geodir_post_review"); |
|
60 | - } |
|
61 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_sort_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_sort_fields'") == 0) { |
|
62 | - $wpdb->query("RENAME TABLE geodir_custom_sort_fields TO " . $wpdb->prefix . "geodir_custom_sort_fields"); |
|
63 | - } |
|
64 | - if ($wpdb->query("SHOW TABLES LIKE 'geodir_gd_place_detail'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_gd_place_detail'") == 0) { |
|
65 | - $wpdb->query("RENAME TABLE geodir_gd_place_detail TO " . $wpdb->prefix . "geodir_gd_place_detail"); |
|
66 | - } |
|
67 | - |
|
68 | - |
|
69 | - // Table for storing Countries |
|
70 | - $GEODIR_COUNTRIES_TABLE = "CREATE TABLE " . GEODIR_COUNTRIES_TABLE . " ( |
|
46 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_countries'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_countries'") == 0) { |
|
47 | + $wpdb->query("RENAME TABLE geodir_countries TO " . $wpdb->prefix . "geodir_countries"); |
|
48 | + } |
|
49 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_fields'") == 0) { |
|
50 | + $wpdb->query("RENAME TABLE geodir_custom_fields TO " . $wpdb->prefix . "geodir_custom_fields"); |
|
51 | + } |
|
52 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_icon'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_icon'") == 0) { |
|
53 | + $wpdb->query("RENAME TABLE geodir_post_icon TO " . $wpdb->prefix . "geodir_post_icon"); |
|
54 | + } |
|
55 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_attachments'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_attachments'") == 0) { |
|
56 | + $wpdb->query("RENAME TABLE geodir_attachments TO " . $wpdb->prefix . "geodir_attachments"); |
|
57 | + } |
|
58 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_review'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_review'") == 0) { |
|
59 | + $wpdb->query("RENAME TABLE geodir_post_review TO " . $wpdb->prefix . "geodir_post_review"); |
|
60 | + } |
|
61 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_sort_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_sort_fields'") == 0) { |
|
62 | + $wpdb->query("RENAME TABLE geodir_custom_sort_fields TO " . $wpdb->prefix . "geodir_custom_sort_fields"); |
|
63 | + } |
|
64 | + if ($wpdb->query("SHOW TABLES LIKE 'geodir_gd_place_detail'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_gd_place_detail'") == 0) { |
|
65 | + $wpdb->query("RENAME TABLE geodir_gd_place_detail TO " . $wpdb->prefix . "geodir_gd_place_detail"); |
|
66 | + } |
|
67 | + |
|
68 | + |
|
69 | + // Table for storing Countries |
|
70 | + $GEODIR_COUNTRIES_TABLE = "CREATE TABLE " . GEODIR_COUNTRIES_TABLE . " ( |
|
71 | 71 | CountryId smallint AUTO_INCREMENT NOT NULL , |
72 | 72 | Country varchar (50) NOT NULL , |
73 | 73 | FIPS104 varchar (2) NOT NULL , |
@@ -86,21 +86,21 @@ discard block |
||
86 | 86 | Comment varchar (255) NULL , |
87 | 87 | PRIMARY KEY (CountryId)) $collate "; |
88 | 88 | |
89 | - /** |
|
90 | - * Filter the SQL query that creates/updates the country DB table structure. |
|
91 | - * |
|
92 | - * @since 1.0.0 |
|
93 | - * @param string $sql The SQL insert query string. |
|
94 | - */ |
|
95 | - $GEODIR_COUNTRIES_TABLE = apply_filters('geodir_before_country_table_create', $GEODIR_COUNTRIES_TABLE); |
|
96 | - dbDelta($GEODIR_COUNTRIES_TABLE); |
|
89 | + /** |
|
90 | + * Filter the SQL query that creates/updates the country DB table structure. |
|
91 | + * |
|
92 | + * @since 1.0.0 |
|
93 | + * @param string $sql The SQL insert query string. |
|
94 | + */ |
|
95 | + $GEODIR_COUNTRIES_TABLE = apply_filters('geodir_before_country_table_create', $GEODIR_COUNTRIES_TABLE); |
|
96 | + dbDelta($GEODIR_COUNTRIES_TABLE); |
|
97 | 97 | |
98 | 98 | |
99 | - $country_table_empty = $wpdb->get_var("SELECT COUNT(CountryId) FROM " . GEODIR_COUNTRIES_TABLE . ""); |
|
99 | + $country_table_empty = $wpdb->get_var("SELECT COUNT(CountryId) FROM " . GEODIR_COUNTRIES_TABLE . ""); |
|
100 | 100 | |
101 | - if ($country_table_empty == 0) { |
|
101 | + if ($country_table_empty == 0) { |
|
102 | 102 | |
103 | - $countries_insert = "INSERT INTO " . GEODIR_COUNTRIES_TABLE . " (`CountryId`, `Country`, `FIPS104`, `ISO2`, `ISO3`, `ISON`, `Internet`, `Capital`, `MapReference`, `NationalitySingular`, `NationalityPlural`, `Currency`, `CurrencyCode`, `Population`, `Title`, `COMMENT`) VALUES |
|
103 | + $countries_insert = "INSERT INTO " . GEODIR_COUNTRIES_TABLE . " (`CountryId`, `Country`, `FIPS104`, `ISO2`, `ISO3`, `ISON`, `Internet`, `Capital`, `MapReference`, `NationalitySingular`, `NationalityPlural`, `Currency`, `CurrencyCode`, `Population`, `Title`, `COMMENT`) VALUES |
|
104 | 104 | (1, 'Afghanistan', 'AF', 'AF', 'AFG', '4', 'AF', 'Kabul ', 'Asia ', 'Afghan', 'Afghans', 'Afghani ', 'AFA', 26813057, 'Afghanistan', ''), |
105 | 105 | (2, 'Albania', 'AL', 'AL', 'ALB', '8', 'AL', 'Tirana ', 'Europe ', 'Albanian', 'Albanians', 'Lek ', 'ALL', 3510484, 'Albania', ''), |
106 | 106 | (3, 'Algeria', 'AG', 'DZ', 'DZA', '12', 'DZ', 'Algiers ', 'Africa ', 'Algerian', 'Algerians', 'Algerian Dinar ', 'DZD', 31736053, 'Algeria', ''), |
@@ -376,21 +376,21 @@ discard block |
||
376 | 376 | (281, 'South Sudan', '--', 'SS', '-- ', '--', 'SS', '', '', '', '', 'South Sudanese pound', 'SSP', 12340000, 'South Sudan', ''), |
377 | 377 | (282, 'Isle of Man', '--', 'IM', '-- ', '--', 'IM', '', '', '', '', 'Manx pound', 'IMP', 84497, 'Isle of Man', '')"; |
378 | 378 | |
379 | - /** |
|
380 | - * Filter the SQL query that inserts the country DB table data. |
|
381 | - * |
|
382 | - * @since 1.0.0 |
|
383 | - * @param string $sql The SQL insert query string. |
|
384 | - */ |
|
385 | - $countries_insert = apply_filters('geodir_before_country_data_insert', $countries_insert); |
|
386 | - $wpdb->query($countries_insert); |
|
379 | + /** |
|
380 | + * Filter the SQL query that inserts the country DB table data. |
|
381 | + * |
|
382 | + * @since 1.0.0 |
|
383 | + * @param string $sql The SQL insert query string. |
|
384 | + */ |
|
385 | + $countries_insert = apply_filters('geodir_before_country_data_insert', $countries_insert); |
|
386 | + $wpdb->query($countries_insert); |
|
387 | 387 | |
388 | - } |
|
388 | + } |
|
389 | 389 | |
390 | 390 | |
391 | - // Table for storing location attribute - these are user defined |
|
391 | + // Table for storing location attribute - these are user defined |
|
392 | 392 | |
393 | - $icon_table = "CREATE TABLE " . GEODIR_ICON_TABLE . " ( |
|
393 | + $icon_table = "CREATE TABLE " . GEODIR_ICON_TABLE . " ( |
|
394 | 394 | id int NOT NULL AUTO_INCREMENT, |
395 | 395 | post_id int( 10 ) NOT NULL, |
396 | 396 | post_title varchar(254) NOT NULL, |
@@ -399,19 +399,19 @@ discard block |
||
399 | 399 | PRIMARY KEY (id) |
400 | 400 | ) $collate "; |
401 | 401 | |
402 | - /** |
|
403 | - * Filter the SQL query that creates/updates the post_icon DB table structure. |
|
404 | - * |
|
405 | - * @since 1.0.0 |
|
406 | - * @param string $sql The SQL insert query string. |
|
407 | - */ |
|
408 | - $icon_table = apply_filters('geodir_before_icon_table_create', $icon_table); |
|
402 | + /** |
|
403 | + * Filter the SQL query that creates/updates the post_icon DB table structure. |
|
404 | + * |
|
405 | + * @since 1.0.0 |
|
406 | + * @param string $sql The SQL insert query string. |
|
407 | + */ |
|
408 | + $icon_table = apply_filters('geodir_before_icon_table_create', $icon_table); |
|
409 | 409 | |
410 | - dbDelta($icon_table); |
|
410 | + dbDelta($icon_table); |
|
411 | 411 | |
412 | - // Table for storing post custom fields - these are user defined |
|
412 | + // Table for storing post custom fields - these are user defined |
|
413 | 413 | |
414 | - $post_custom_fields = "CREATE TABLE " . GEODIR_CUSTOM_FIELDS_TABLE . " ( |
|
414 | + $post_custom_fields = "CREATE TABLE " . GEODIR_CUSTOM_FIELDS_TABLE . " ( |
|
415 | 415 | id int(11) NOT NULL AUTO_INCREMENT, |
416 | 416 | post_type varchar(100) NULL, |
417 | 417 | data_type varchar(100) NULL DEFAULT NULL, |
@@ -447,18 +447,18 @@ discard block |
||
447 | 447 | PRIMARY KEY (id) |
448 | 448 | ) $collate"; |
449 | 449 | |
450 | - /** |
|
451 | - * Filter the SQL query that creates/updates the custom_fields DB table structure. |
|
452 | - * |
|
453 | - * @since 1.0.0 |
|
454 | - * @param string $sql The SQL insert query string. |
|
455 | - */ |
|
456 | - $post_custom_fields = apply_filters('geodir_before_custom_field_table_create', $post_custom_fields); |
|
450 | + /** |
|
451 | + * Filter the SQL query that creates/updates the custom_fields DB table structure. |
|
452 | + * |
|
453 | + * @since 1.0.0 |
|
454 | + * @param string $sql The SQL insert query string. |
|
455 | + */ |
|
456 | + $post_custom_fields = apply_filters('geodir_before_custom_field_table_create', $post_custom_fields); |
|
457 | 457 | |
458 | - dbDelta($post_custom_fields); |
|
458 | + dbDelta($post_custom_fields); |
|
459 | 459 | |
460 | - // Table for storing place attribute - these are user defined |
|
461 | - $post_detail = "CREATE TABLE " . $plugin_prefix . "gd_place_detail ( |
|
460 | + // Table for storing place attribute - these are user defined |
|
461 | + $post_detail = "CREATE TABLE " . $plugin_prefix . "gd_place_detail ( |
|
462 | 462 | post_id int(11) NOT NULL, |
463 | 463 | post_title text NULL DEFAULT NULL, |
464 | 464 | post_status varchar(20) NULL DEFAULT NULL, |
@@ -487,22 +487,22 @@ discard block |
||
487 | 487 | KEY is_featured (is_featured) |
488 | 488 | ) $collate "; |
489 | 489 | |
490 | - /** |
|
491 | - * Filter the SQL query that creates/updates the post_detail DB table structure. |
|
492 | - * |
|
493 | - * @since 1.0.0 |
|
494 | - * @param string $sql The SQL insert query string. |
|
495 | - */ |
|
496 | - $post_detail = apply_filters('geodir_before_post_detail_table_create', $post_detail); |
|
490 | + /** |
|
491 | + * Filter the SQL query that creates/updates the post_detail DB table structure. |
|
492 | + * |
|
493 | + * @since 1.0.0 |
|
494 | + * @param string $sql The SQL insert query string. |
|
495 | + */ |
|
496 | + $post_detail = apply_filters('geodir_before_post_detail_table_create', $post_detail); |
|
497 | 497 | |
498 | - dbDelta($post_detail); |
|
498 | + dbDelta($post_detail); |
|
499 | 499 | |
500 | - // alter post_title |
|
501 | - //$wpdb->query("ALTER TABLE ".$wpdb->prefix."geodir_gd_place_detail MODIFY `post_title` text NULL"); |
|
500 | + // alter post_title |
|
501 | + //$wpdb->query("ALTER TABLE ".$wpdb->prefix."geodir_gd_place_detail MODIFY `post_title` text NULL"); |
|
502 | 502 | |
503 | - // Table for storing place images - these are user defined |
|
503 | + // Table for storing place images - these are user defined |
|
504 | 504 | |
505 | - $attechment_table = "CREATE TABLE " . GEODIR_ATTACHMENT_TABLE . " ( |
|
505 | + $attechment_table = "CREATE TABLE " . GEODIR_ATTACHMENT_TABLE . " ( |
|
506 | 506 | ID int(11) NOT NULL AUTO_INCREMENT, |
507 | 507 | post_id int(11) NOT NULL, |
508 | 508 | user_id int(11) DEFAULT NULL, |
@@ -518,18 +518,18 @@ discard block |
||
518 | 518 | PRIMARY KEY (ID) |
519 | 519 | ) $collate "; |
520 | 520 | |
521 | - /** |
|
522 | - * Filter the SQL query that creates/updates the attachments DB table structure. |
|
523 | - * |
|
524 | - * @since 1.0.0 |
|
525 | - * @param string $sql The SQL insert query string. |
|
526 | - */ |
|
527 | - $attechment_table = apply_filters('geodir_before_attachment_table_create', $attechment_table); |
|
521 | + /** |
|
522 | + * Filter the SQL query that creates/updates the attachments DB table structure. |
|
523 | + * |
|
524 | + * @since 1.0.0 |
|
525 | + * @param string $sql The SQL insert query string. |
|
526 | + */ |
|
527 | + $attechment_table = apply_filters('geodir_before_attachment_table_create', $attechment_table); |
|
528 | 528 | |
529 | - dbDelta($attechment_table); |
|
529 | + dbDelta($attechment_table); |
|
530 | 530 | |
531 | 531 | |
532 | - $custom_sort_fields_table = "CREATE TABLE " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " ( |
|
532 | + $custom_sort_fields_table = "CREATE TABLE " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " ( |
|
533 | 533 | id int(11) NOT NULL AUTO_INCREMENT, |
534 | 534 | post_type varchar(255) NOT NULL, |
535 | 535 | data_type varchar(255) NOT NULL, |
@@ -547,18 +547,18 @@ discard block |
||
547 | 547 | PRIMARY KEY (id) |
548 | 548 | ) $collate "; |
549 | 549 | |
550 | - /** |
|
551 | - * Filter the SQL query that creates/updates the custom_sort_fields DB table structure. |
|
552 | - * |
|
553 | - * @since 1.0.0 |
|
554 | - * @param string $sql The SQL insert query string. |
|
555 | - */ |
|
556 | - $custom_sort_fields_table = apply_filters('geodir_before_sort_fields_table_create', $custom_sort_fields_table); |
|
550 | + /** |
|
551 | + * Filter the SQL query that creates/updates the custom_sort_fields DB table structure. |
|
552 | + * |
|
553 | + * @since 1.0.0 |
|
554 | + * @param string $sql The SQL insert query string. |
|
555 | + */ |
|
556 | + $custom_sort_fields_table = apply_filters('geodir_before_sort_fields_table_create', $custom_sort_fields_table); |
|
557 | 557 | |
558 | - dbDelta($custom_sort_fields_table); |
|
558 | + dbDelta($custom_sort_fields_table); |
|
559 | 559 | |
560 | 560 | |
561 | - $review_table = "CREATE TABLE " . GEODIR_REVIEW_TABLE . " ( |
|
561 | + $review_table = "CREATE TABLE " . GEODIR_REVIEW_TABLE . " ( |
|
562 | 562 | id int(11) NOT NULL AUTO_INCREMENT, |
563 | 563 | post_id int(11) DEFAULT NULL, |
564 | 564 | post_title varchar( 255 ) NULL DEFAULT NULL, |
@@ -582,51 +582,51 @@ discard block |
||
582 | 582 | PRIMARY KEY (id) |
583 | 583 | ) $collate "; |
584 | 584 | |
585 | - /** |
|
586 | - * Filter the SQL query that creates the review DB table structure. |
|
587 | - * |
|
588 | - * @since 1.0.0 |
|
589 | - * @param string $sql The SQL insert query string. |
|
590 | - */ |
|
591 | - $review_table = apply_filters('geodir_before_review_table_create', $review_table); |
|
592 | - dbDelta($review_table); |
|
585 | + /** |
|
586 | + * Filter the SQL query that creates the review DB table structure. |
|
587 | + * |
|
588 | + * @since 1.0.0 |
|
589 | + * @param string $sql The SQL insert query string. |
|
590 | + */ |
|
591 | + $review_table = apply_filters('geodir_before_review_table_create', $review_table); |
|
592 | + dbDelta($review_table); |
|
593 | 593 | |
594 | 594 | |
595 | 595 | |
596 | - // Alter terms table |
|
597 | - $term_icon_column = $wpdb->get_var("SHOW COLUMNS FROM $wpdb->terms where field='term_icon'"); |
|
598 | - if (!$term_icon_column) { |
|
599 | - $wpdb->query("ALTER TABLE $wpdb->terms ADD `term_icon` TEXT NULL DEFAULT NULL"); |
|
600 | - } |
|
596 | + // Alter terms table |
|
597 | + $term_icon_column = $wpdb->get_var("SHOW COLUMNS FROM $wpdb->terms where field='term_icon'"); |
|
598 | + if (!$term_icon_column) { |
|
599 | + $wpdb->query("ALTER TABLE $wpdb->terms ADD `term_icon` TEXT NULL DEFAULT NULL"); |
|
600 | + } |
|
601 | 601 | |
602 | - //require_once(geodir_plugin_path() . '/upgrade.php'); |
|
602 | + //require_once(geodir_plugin_path() . '/upgrade.php'); |
|
603 | 603 | |
604 | 604 | |
605 | - } |
|
605 | + } |
|
606 | 606 | } // END MAIN FUNCTION geodir_tables_install |
607 | 607 | |
608 | 608 | if (!function_exists('geodir_create_default_fields')) { |
609 | - /** |
|
610 | - * Inserts default custom fields table data into database. |
|
611 | - * |
|
612 | - * @since 1.0.0 |
|
613 | - * @package GeoDirectory |
|
614 | - */ |
|
615 | - function geodir_create_default_fields() |
|
616 | - { |
|
617 | - |
|
618 | - $fields = geodir_default_custom_fields('gd_place'); |
|
619 | - |
|
620 | - /** |
|
621 | - * Filter the array of default custom fields DB table data. |
|
622 | - * |
|
623 | - * @since 1.0.0 |
|
624 | - * @param string $fields The default custom fields as an array. |
|
625 | - */ |
|
626 | - $fields = apply_filters('geodir_before_default_custom_fields_saved', $fields); |
|
627 | - foreach ($fields as $field_index => $field) { |
|
628 | - geodir_custom_field_save($field); |
|
609 | + /** |
|
610 | + * Inserts default custom fields table data into database. |
|
611 | + * |
|
612 | + * @since 1.0.0 |
|
613 | + * @package GeoDirectory |
|
614 | + */ |
|
615 | + function geodir_create_default_fields() |
|
616 | + { |
|
617 | + |
|
618 | + $fields = geodir_default_custom_fields('gd_place'); |
|
619 | + |
|
620 | + /** |
|
621 | + * Filter the array of default custom fields DB table data. |
|
622 | + * |
|
623 | + * @since 1.0.0 |
|
624 | + * @param string $fields The default custom fields as an array. |
|
625 | + */ |
|
626 | + $fields = apply_filters('geodir_before_default_custom_fields_saved', $fields); |
|
627 | + foreach ($fields as $field_index => $field) { |
|
628 | + geodir_custom_field_save($field); |
|
629 | 629 | |
630 | - } |
|
631 | - } |
|
630 | + } |
|
631 | + } |
|
632 | 632 | } |
633 | 633 | \ No newline at end of file |
@@ -16,184 +16,184 @@ |
||
16 | 16 | */ |
17 | 17 | $geodir_settings['permalink_settings'] = apply_filters('geodir_permalink_settings', array( |
18 | 18 | |
19 | - /* Listing Permalink Settings start */ |
|
20 | - array('name' => __('Permalink', 'geodirectory'), 'type' => 'no_tabs', 'desc' => 'Settings to set permalink', 'id' => 'geodir_permalink_settings '), |
|
21 | - |
|
22 | - |
|
23 | - array('name' => __('Listing Detail Permalink Settings', 'geodirectory'), |
|
24 | - 'type' => 'sectionstart', |
|
25 | - 'desc' => '', |
|
26 | - 'id' => 'geodir_permalink'), |
|
27 | - |
|
28 | - array( |
|
29 | - 'name' => __('Add location in urls', 'geodirectory'), |
|
30 | - 'desc' => __('Add location slug in listing urls', 'geodirectory'), |
|
31 | - 'id' => 'geodir_add_location_url', |
|
32 | - 'type' => 'checkbox', |
|
33 | - 'std' => '1', |
|
34 | - 'checkboxgroup' => 'start' |
|
35 | - ), |
|
36 | - |
|
37 | - array( |
|
38 | - 'name' => __('Add full location in listing urls', 'geodirectory'), |
|
39 | - 'desc' => __('Add full location info with country, region and city slug in listing urls', 'geodirectory'), |
|
40 | - 'id' => 'geodir_show_location_url', |
|
41 | - 'type' => 'radio', |
|
42 | - 'value' => 'all', |
|
43 | - 'std' => 'all', |
|
44 | - 'radiogroup' => '' |
|
45 | - ), |
|
46 | - |
|
47 | - array( |
|
48 | - 'name' => __('Add country and city slug in listing urls', 'geodirectory'), |
|
49 | - 'desc' => __('Add country and city slug in listing urls (/country/city/)', 'geodirectory'), |
|
50 | - 'id' => 'geodir_show_location_url', |
|
51 | - 'type' => 'radio', |
|
52 | - 'std' => 'all', |
|
53 | - 'value' => 'country_city', |
|
54 | - 'radiogroup' => '' |
|
55 | - ), |
|
56 | - array( |
|
57 | - 'name' => __('Add region and city slug in listing urls', 'geodirectory'), |
|
58 | - 'desc' => __('Add region and city slug in listing urls (/region/city/)', 'geodirectory'), |
|
59 | - 'id' => 'geodir_show_location_url', |
|
60 | - 'type' => 'radio', |
|
61 | - 'std' => 'all', |
|
62 | - 'value' => 'region_city', |
|
63 | - 'radiogroup' => '' |
|
64 | - ), |
|
65 | - array( |
|
66 | - 'name' => __('Add only city in listing urls', 'geodirectory'), |
|
67 | - 'desc' => __('Add city slug in listing urls', 'geodirectory'), |
|
68 | - 'id' => 'geodir_show_location_url', |
|
69 | - 'type' => 'radio', |
|
70 | - 'std' => 'all', |
|
71 | - 'value' => 'city', |
|
72 | - 'radiogroup' => 'end' |
|
73 | - ), |
|
74 | - |
|
75 | - |
|
76 | - |
|
77 | - array( |
|
78 | - 'name' => __('Add category in listing urls', 'geodirectory'), |
|
79 | - 'desc' => __('Add requested category slugs in listing urls', 'geodirectory'), |
|
80 | - 'id' => 'geodir_add_categories_url', |
|
81 | - 'type' => 'checkbox', |
|
82 | - 'std' => '1', |
|
83 | - ), |
|
84 | - |
|
85 | - array( |
|
86 | - 'name' => __('Listing url prefix', 'geodirectory'), |
|
87 | - 'desc' => __('Listing prefix to show in url', 'geodirectory'), |
|
88 | - 'id' => 'geodir_listing_prefix', |
|
89 | - 'type' => 'text', |
|
90 | - 'css' => 'min-width:300px;', |
|
91 | - 'std' => 'places' |
|
92 | - ), |
|
93 | - |
|
94 | - array( |
|
95 | - 'name' => __('Location url prefix', 'geodirectory'), |
|
96 | - 'desc' => __('Depreciated, now uses the location page slug', 'geodirectory'), |
|
97 | - 'id' => 'geodir_location_prefix', |
|
98 | - 'type' => 'text', |
|
99 | - 'css' => 'min-width:300px;', |
|
100 | - 'std' => 'location' // Default value to show home top section |
|
101 | - ), |
|
102 | - |
|
103 | - array( |
|
104 | - 'name' => __('Location and category url separator', 'geodirectory'), |
|
105 | - 'desc' => __('Separator to show between location and category url slugs in listing urls', 'geodirectory'), |
|
106 | - 'id' => 'geodir_listingurl_separator', |
|
107 | - 'type' => 'text', |
|
108 | - 'css' => 'min-width:300px;', |
|
109 | - 'std' => 'C' // Default value to show home top section |
|
110 | - ), |
|
111 | - |
|
112 | - array( |
|
113 | - 'name' => __('Listing detail url separator', 'geodirectory'), |
|
114 | - 'desc' => __('Separator to show before listing slug in listing detail urls', 'geodirectory'), |
|
115 | - 'id' => 'geodir_detailurl_separator', |
|
116 | - 'type' => 'text', |
|
117 | - 'css' => 'min-width:300px;', |
|
118 | - 'std' => 'info' // Default value to show home top section |
|
119 | - ), |
|
120 | - |
|
121 | - |
|
122 | - array('type' => 'sectionend', 'id' => 'geodir_permalink'), |
|
123 | - |
|
124 | - array('name' => __('GeoDirectory Pages', 'geodirectory'), |
|
125 | - 'type' => 'sectionstart', |
|
126 | - 'desc' => '', |
|
127 | - 'id' => 'geodir_pages'), |
|
128 | - |
|
129 | - array( |
|
130 | - 'name' => __('GD Home page', 'geodirectory'), |
|
131 | - 'desc' => __('Select the page to use for the GD homepage (you must also set this page in Settings>Reading>Front page for it to work)', 'geodirectory'), |
|
132 | - 'id' => 'geodir_home_page', |
|
133 | - 'type' => 'single_select_page', |
|
134 | - 'class' => 'chosen_select' |
|
135 | - ), |
|
136 | - |
|
137 | - array( |
|
138 | - 'name' => __('Add listing page', 'geodirectory'), |
|
139 | - 'desc' => __('Select the page to use for adding listings', 'geodirectory'), |
|
140 | - 'id' => 'geodir_add_listing_page', |
|
141 | - 'type' => 'single_select_page', |
|
142 | - 'class' => 'chosen_select' |
|
143 | - ), |
|
144 | - |
|
145 | - array( |
|
146 | - 'name' => __('Listing preview page', 'geodirectory'), |
|
147 | - 'desc' => __('Select the page to use for listing preview', 'geodirectory'), |
|
148 | - 'id' => 'geodir_preview_page', |
|
149 | - 'type' => 'single_select_page', |
|
150 | - 'class' => 'chosen_select' |
|
151 | - ), |
|
152 | - |
|
153 | - array( |
|
154 | - 'name' => __('Listing success page', 'geodirectory'), |
|
155 | - 'desc' => __('Select the page to use for listing success', 'geodirectory'), |
|
156 | - 'id' => 'geodir_success_page', |
|
157 | - 'type' => 'single_select_page', |
|
158 | - 'class' => 'chosen_select' |
|
159 | - ), |
|
160 | - |
|
161 | - array( |
|
162 | - 'name' => __('Location page', 'geodirectory'), |
|
163 | - 'desc' => __('Select the page to use for locations', 'geodirectory'), |
|
164 | - 'id' => 'geodir_location_page', |
|
165 | - 'type' => 'single_select_page', |
|
166 | - 'class' => 'chosen_select' |
|
167 | - ), |
|
168 | - |
|
169 | - array( |
|
170 | - 'name' => __('Terms and Conditions page', 'geodirectory'), |
|
171 | - 'desc' => __('Select the page to use for Terms and Conditions (if enabled)', 'geodirectory'), |
|
172 | - 'id' => 'geodir_term_condition_page', |
|
173 | - 'type' => 'single_select_page', |
|
174 | - 'class' => 'chosen_select' |
|
175 | - ), |
|
176 | - |
|
177 | - array( |
|
178 | - 'name' => __('Info page', 'geodirectory'), |
|
179 | - 'desc' => __('Select the page to use for Gd general Info', 'geodirectory'), |
|
180 | - 'id' => 'geodir_info_page', |
|
181 | - 'type' => 'single_select_page', |
|
182 | - 'class' => 'chosen_select' |
|
183 | - ), |
|
184 | - |
|
185 | - array( |
|
186 | - 'name' => __('Login page', 'geodirectory'), |
|
187 | - 'desc' => __('Select the page to use for Login / Register', 'geodirectory'), |
|
188 | - 'id' => 'geodir_login_page', |
|
189 | - 'type' => 'single_select_page', |
|
190 | - 'class' => 'chosen_select' |
|
191 | - ), |
|
192 | - |
|
193 | - |
|
194 | - array('type' => 'sectionend', 'id' => 'geodir_pages'), |
|
195 | - |
|
196 | - /* Listing Detail Permalink Settings End */ |
|
19 | + /* Listing Permalink Settings start */ |
|
20 | + array('name' => __('Permalink', 'geodirectory'), 'type' => 'no_tabs', 'desc' => 'Settings to set permalink', 'id' => 'geodir_permalink_settings '), |
|
21 | + |
|
22 | + |
|
23 | + array('name' => __('Listing Detail Permalink Settings', 'geodirectory'), |
|
24 | + 'type' => 'sectionstart', |
|
25 | + 'desc' => '', |
|
26 | + 'id' => 'geodir_permalink'), |
|
27 | + |
|
28 | + array( |
|
29 | + 'name' => __('Add location in urls', 'geodirectory'), |
|
30 | + 'desc' => __('Add location slug in listing urls', 'geodirectory'), |
|
31 | + 'id' => 'geodir_add_location_url', |
|
32 | + 'type' => 'checkbox', |
|
33 | + 'std' => '1', |
|
34 | + 'checkboxgroup' => 'start' |
|
35 | + ), |
|
36 | + |
|
37 | + array( |
|
38 | + 'name' => __('Add full location in listing urls', 'geodirectory'), |
|
39 | + 'desc' => __('Add full location info with country, region and city slug in listing urls', 'geodirectory'), |
|
40 | + 'id' => 'geodir_show_location_url', |
|
41 | + 'type' => 'radio', |
|
42 | + 'value' => 'all', |
|
43 | + 'std' => 'all', |
|
44 | + 'radiogroup' => '' |
|
45 | + ), |
|
46 | + |
|
47 | + array( |
|
48 | + 'name' => __('Add country and city slug in listing urls', 'geodirectory'), |
|
49 | + 'desc' => __('Add country and city slug in listing urls (/country/city/)', 'geodirectory'), |
|
50 | + 'id' => 'geodir_show_location_url', |
|
51 | + 'type' => 'radio', |
|
52 | + 'std' => 'all', |
|
53 | + 'value' => 'country_city', |
|
54 | + 'radiogroup' => '' |
|
55 | + ), |
|
56 | + array( |
|
57 | + 'name' => __('Add region and city slug in listing urls', 'geodirectory'), |
|
58 | + 'desc' => __('Add region and city slug in listing urls (/region/city/)', 'geodirectory'), |
|
59 | + 'id' => 'geodir_show_location_url', |
|
60 | + 'type' => 'radio', |
|
61 | + 'std' => 'all', |
|
62 | + 'value' => 'region_city', |
|
63 | + 'radiogroup' => '' |
|
64 | + ), |
|
65 | + array( |
|
66 | + 'name' => __('Add only city in listing urls', 'geodirectory'), |
|
67 | + 'desc' => __('Add city slug in listing urls', 'geodirectory'), |
|
68 | + 'id' => 'geodir_show_location_url', |
|
69 | + 'type' => 'radio', |
|
70 | + 'std' => 'all', |
|
71 | + 'value' => 'city', |
|
72 | + 'radiogroup' => 'end' |
|
73 | + ), |
|
74 | + |
|
75 | + |
|
76 | + |
|
77 | + array( |
|
78 | + 'name' => __('Add category in listing urls', 'geodirectory'), |
|
79 | + 'desc' => __('Add requested category slugs in listing urls', 'geodirectory'), |
|
80 | + 'id' => 'geodir_add_categories_url', |
|
81 | + 'type' => 'checkbox', |
|
82 | + 'std' => '1', |
|
83 | + ), |
|
84 | + |
|
85 | + array( |
|
86 | + 'name' => __('Listing url prefix', 'geodirectory'), |
|
87 | + 'desc' => __('Listing prefix to show in url', 'geodirectory'), |
|
88 | + 'id' => 'geodir_listing_prefix', |
|
89 | + 'type' => 'text', |
|
90 | + 'css' => 'min-width:300px;', |
|
91 | + 'std' => 'places' |
|
92 | + ), |
|
93 | + |
|
94 | + array( |
|
95 | + 'name' => __('Location url prefix', 'geodirectory'), |
|
96 | + 'desc' => __('Depreciated, now uses the location page slug', 'geodirectory'), |
|
97 | + 'id' => 'geodir_location_prefix', |
|
98 | + 'type' => 'text', |
|
99 | + 'css' => 'min-width:300px;', |
|
100 | + 'std' => 'location' // Default value to show home top section |
|
101 | + ), |
|
102 | + |
|
103 | + array( |
|
104 | + 'name' => __('Location and category url separator', 'geodirectory'), |
|
105 | + 'desc' => __('Separator to show between location and category url slugs in listing urls', 'geodirectory'), |
|
106 | + 'id' => 'geodir_listingurl_separator', |
|
107 | + 'type' => 'text', |
|
108 | + 'css' => 'min-width:300px;', |
|
109 | + 'std' => 'C' // Default value to show home top section |
|
110 | + ), |
|
111 | + |
|
112 | + array( |
|
113 | + 'name' => __('Listing detail url separator', 'geodirectory'), |
|
114 | + 'desc' => __('Separator to show before listing slug in listing detail urls', 'geodirectory'), |
|
115 | + 'id' => 'geodir_detailurl_separator', |
|
116 | + 'type' => 'text', |
|
117 | + 'css' => 'min-width:300px;', |
|
118 | + 'std' => 'info' // Default value to show home top section |
|
119 | + ), |
|
120 | + |
|
121 | + |
|
122 | + array('type' => 'sectionend', 'id' => 'geodir_permalink'), |
|
123 | + |
|
124 | + array('name' => __('GeoDirectory Pages', 'geodirectory'), |
|
125 | + 'type' => 'sectionstart', |
|
126 | + 'desc' => '', |
|
127 | + 'id' => 'geodir_pages'), |
|
128 | + |
|
129 | + array( |
|
130 | + 'name' => __('GD Home page', 'geodirectory'), |
|
131 | + 'desc' => __('Select the page to use for the GD homepage (you must also set this page in Settings>Reading>Front page for it to work)', 'geodirectory'), |
|
132 | + 'id' => 'geodir_home_page', |
|
133 | + 'type' => 'single_select_page', |
|
134 | + 'class' => 'chosen_select' |
|
135 | + ), |
|
136 | + |
|
137 | + array( |
|
138 | + 'name' => __('Add listing page', 'geodirectory'), |
|
139 | + 'desc' => __('Select the page to use for adding listings', 'geodirectory'), |
|
140 | + 'id' => 'geodir_add_listing_page', |
|
141 | + 'type' => 'single_select_page', |
|
142 | + 'class' => 'chosen_select' |
|
143 | + ), |
|
144 | + |
|
145 | + array( |
|
146 | + 'name' => __('Listing preview page', 'geodirectory'), |
|
147 | + 'desc' => __('Select the page to use for listing preview', 'geodirectory'), |
|
148 | + 'id' => 'geodir_preview_page', |
|
149 | + 'type' => 'single_select_page', |
|
150 | + 'class' => 'chosen_select' |
|
151 | + ), |
|
152 | + |
|
153 | + array( |
|
154 | + 'name' => __('Listing success page', 'geodirectory'), |
|
155 | + 'desc' => __('Select the page to use for listing success', 'geodirectory'), |
|
156 | + 'id' => 'geodir_success_page', |
|
157 | + 'type' => 'single_select_page', |
|
158 | + 'class' => 'chosen_select' |
|
159 | + ), |
|
160 | + |
|
161 | + array( |
|
162 | + 'name' => __('Location page', 'geodirectory'), |
|
163 | + 'desc' => __('Select the page to use for locations', 'geodirectory'), |
|
164 | + 'id' => 'geodir_location_page', |
|
165 | + 'type' => 'single_select_page', |
|
166 | + 'class' => 'chosen_select' |
|
167 | + ), |
|
168 | + |
|
169 | + array( |
|
170 | + 'name' => __('Terms and Conditions page', 'geodirectory'), |
|
171 | + 'desc' => __('Select the page to use for Terms and Conditions (if enabled)', 'geodirectory'), |
|
172 | + 'id' => 'geodir_term_condition_page', |
|
173 | + 'type' => 'single_select_page', |
|
174 | + 'class' => 'chosen_select' |
|
175 | + ), |
|
176 | + |
|
177 | + array( |
|
178 | + 'name' => __('Info page', 'geodirectory'), |
|
179 | + 'desc' => __('Select the page to use for Gd general Info', 'geodirectory'), |
|
180 | + 'id' => 'geodir_info_page', |
|
181 | + 'type' => 'single_select_page', |
|
182 | + 'class' => 'chosen_select' |
|
183 | + ), |
|
184 | + |
|
185 | + array( |
|
186 | + 'name' => __('Login page', 'geodirectory'), |
|
187 | + 'desc' => __('Select the page to use for Login / Register', 'geodirectory'), |
|
188 | + 'id' => 'geodir_login_page', |
|
189 | + 'type' => 'single_select_page', |
|
190 | + 'class' => 'chosen_select' |
|
191 | + ), |
|
192 | + |
|
193 | + |
|
194 | + array('type' => 'sectionend', 'id' => 'geodir_pages'), |
|
195 | + |
|
196 | + /* Listing Detail Permalink Settings End */ |
|
197 | 197 | |
198 | 198 | |
199 | 199 | )); // End Design settings |
@@ -126,8 +126,10 @@ |
||
126 | 126 | $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>"; |
127 | 127 | if (preg_match_all("/$regexp/siU", $crums, $matches)) { |
128 | 128 | return $matches[0]; |
129 | - } else return ''; |
|
130 | -} |
|
129 | + } else { |
|
130 | + return ''; |
|
131 | + } |
|
132 | + } |
|
131 | 133 | |
132 | 134 | |
133 | 135 | /** |
@@ -16,36 +16,36 @@ discard block |
||
16 | 16 | */ |
17 | 17 | function multi_news_action_calls() |
18 | 18 | { |
19 | - // REMOVE BREADCRUMB |
|
20 | - remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20); |
|
21 | - remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20); |
|
22 | - remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20); |
|
23 | - remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20); |
|
24 | - remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20); |
|
25 | - remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20); |
|
26 | - |
|
27 | - //ADD BREADCRUMS |
|
28 | - add_action('geodir_detail_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
29 | - add_action('geodir_listings_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
30 | - add_action('geodir_author_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
31 | - add_action('geodir_search_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
32 | - //add_action('geodir_home_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
33 | - add_action('geodir_location_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
34 | - |
|
35 | - |
|
36 | - // fix breadcrums |
|
37 | - add_filter('breadcrumbs_plus_items', 'gd_breadcrumbs_plus_items', 1); |
|
38 | - |
|
39 | - // REMOVE PAGE TITLES |
|
40 | - remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10); |
|
41 | - // remove_action( 'geodir_add_listing_page_title', 'geodir_action_add_listing_page_title',10); |
|
42 | - remove_action('geodir_details_main_content', 'geodir_action_page_title', 20); |
|
43 | - remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10); |
|
44 | - remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10); |
|
45 | - |
|
46 | - |
|
47 | - add_action('geodir_wrapper_content_open', 'gd_mn_extra_wrap', 30, 1); |
|
48 | - add_action('geodir_wrapper_content_close', 'gd_mn_extra_wrap_end', 3, 1); |
|
19 | + // REMOVE BREADCRUMB |
|
20 | + remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20); |
|
21 | + remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20); |
|
22 | + remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20); |
|
23 | + remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20); |
|
24 | + remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20); |
|
25 | + remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20); |
|
26 | + |
|
27 | + //ADD BREADCRUMS |
|
28 | + add_action('geodir_detail_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
29 | + add_action('geodir_listings_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
30 | + add_action('geodir_author_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
31 | + add_action('geodir_search_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
32 | + //add_action('geodir_home_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
33 | + add_action('geodir_location_before_main_content', 'gd_mn_replace_breadcrums', 20); |
|
34 | + |
|
35 | + |
|
36 | + // fix breadcrums |
|
37 | + add_filter('breadcrumbs_plus_items', 'gd_breadcrumbs_plus_items', 1); |
|
38 | + |
|
39 | + // REMOVE PAGE TITLES |
|
40 | + remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10); |
|
41 | + // remove_action( 'geodir_add_listing_page_title', 'geodir_action_add_listing_page_title',10); |
|
42 | + remove_action('geodir_details_main_content', 'geodir_action_page_title', 20); |
|
43 | + remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10); |
|
44 | + remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10); |
|
45 | + |
|
46 | + |
|
47 | + add_action('geodir_wrapper_content_open', 'gd_mn_extra_wrap', 30, 1); |
|
48 | + add_action('geodir_wrapper_content_close', 'gd_mn_extra_wrap_end', 3, 1); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | /** |
@@ -57,11 +57,11 @@ discard block |
||
57 | 57 | */ |
58 | 58 | function gd_mn_extra_wrap($page) |
59 | 59 | { |
60 | - if ($page == 'add-listing-page') { |
|
61 | - echo '<div class="site-content page-wrap">'; |
|
62 | - } elseif ($page == 'signup-page') { |
|
63 | - echo '</div><div class="section full-width-section" style="float: left;width:100%;">'; |
|
64 | - } |
|
60 | + if ($page == 'add-listing-page') { |
|
61 | + echo '<div class="site-content page-wrap">'; |
|
62 | + } elseif ($page == 'signup-page') { |
|
63 | + echo '</div><div class="section full-width-section" style="float: left;width:100%;">'; |
|
64 | + } |
|
65 | 65 | |
66 | 66 | } |
67 | 67 | |
@@ -75,9 +75,9 @@ discard block |
||
75 | 75 | */ |
76 | 76 | function gd_mn_extra_wrap_end($page) |
77 | 77 | { |
78 | - if ($page == 'add-listing-page') { |
|
79 | - echo '</div>'; |
|
80 | - } |
|
78 | + if ($page == 'add-listing-page') { |
|
79 | + echo '</div>'; |
|
80 | + } |
|
81 | 81 | |
82 | 82 | } |
83 | 83 | |
@@ -91,13 +91,13 @@ discard block |
||
91 | 91 | function gd_mn_replace_breadcrums() |
92 | 92 | { |
93 | 93 | |
94 | - if (mom_option('breadcrumb') != 0) { ?> |
|
94 | + if (mom_option('breadcrumb') != 0) { ?> |
|
95 | 95 | <?php if (mom_option('cats_bread')) { |
96 | - $cclass = ''; |
|
97 | - if (mom_option('cat_slider') == false) { |
|
98 | - $cclass = 'post-crumbs '; |
|
99 | - } |
|
100 | - ?> |
|
96 | + $cclass = ''; |
|
97 | + if (mom_option('cat_slider') == false) { |
|
98 | + $cclass = 'post-crumbs '; |
|
99 | + } |
|
100 | + ?> |
|
101 | 101 | <div class="<?php echo $cclass; ?>entry-crumbs" xmlns:v="http://rdf.data-vocabulary.org/#"> |
102 | 102 | |
103 | 103 | <?php mom_breadcrumb(); ?> |
@@ -119,14 +119,14 @@ discard block |
||
119 | 119 | */ |
120 | 120 | function gd_get_breadcrum_links() |
121 | 121 | { |
122 | - ob_start(); |
|
123 | - geodir_breadcrumb(); |
|
124 | - $crums = ob_get_contents(); |
|
125 | - ob_get_clean(); |
|
126 | - $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>"; |
|
127 | - if (preg_match_all("/$regexp/siU", $crums, $matches)) { |
|
128 | - return $matches[0]; |
|
129 | - } else return ''; |
|
122 | + ob_start(); |
|
123 | + geodir_breadcrumb(); |
|
124 | + $crums = ob_get_contents(); |
|
125 | + ob_get_clean(); |
|
126 | + $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>"; |
|
127 | + if (preg_match_all("/$regexp/siU", $crums, $matches)) { |
|
128 | + return $matches[0]; |
|
129 | + } else return ''; |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | |
@@ -140,30 +140,30 @@ discard block |
||
140 | 140 | */ |
141 | 141 | function gd_breadcrumbs_plus_items($items) |
142 | 142 | { //print_r($items);exit; |
143 | - $bits = array(); |
|
144 | - $pieces = gd_get_breadcrum_links(); |
|
145 | - //unset($pieces[0]); |
|
146 | - $bits = $pieces; |
|
143 | + $bits = array(); |
|
144 | + $pieces = gd_get_breadcrum_links(); |
|
145 | + //unset($pieces[0]); |
|
146 | + $bits = $pieces; |
|
147 | 147 | |
148 | - $title = $items['last']; |
|
149 | - if (is_page_geodir_home() || geodir_is_page('location')) { |
|
148 | + $title = $items['last']; |
|
149 | + if (is_page_geodir_home() || geodir_is_page('location')) { |
|
150 | 150 | |
151 | - } elseif (geodir_is_page('listing')) { |
|
151 | + } elseif (geodir_is_page('listing')) { |
|
152 | 152 | |
153 | - } elseif (geodir_is_page('detail')) { |
|
154 | - ob_start(); |
|
155 | - geodir_action_page_title(); |
|
156 | - $title = ob_get_contents(); |
|
157 | - ob_end_clean(); |
|
158 | - } elseif (geodir_is_page('search')) { |
|
159 | - } elseif (geodir_is_page('author')) { |
|
160 | - } |
|
153 | + } elseif (geodir_is_page('detail')) { |
|
154 | + ob_start(); |
|
155 | + geodir_action_page_title(); |
|
156 | + $title = ob_get_contents(); |
|
157 | + ob_end_clean(); |
|
158 | + } elseif (geodir_is_page('search')) { |
|
159 | + } elseif (geodir_is_page('author')) { |
|
160 | + } |
|
161 | 161 | |
162 | - $title = strip_tags($title); |
|
163 | - $items = gd_breadcrumbs_plus_items_add($items, $bits, $title); |
|
162 | + $title = strip_tags($title); |
|
163 | + $items = gd_breadcrumbs_plus_items_add($items, $bits, $title); |
|
164 | 164 | |
165 | 165 | |
166 | - return $items; |
|
166 | + return $items; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | |
@@ -179,28 +179,28 @@ discard block |
||
179 | 179 | */ |
180 | 180 | function gd_breadcrumbs_plus_items_add($items, $bits, $last) |
181 | 181 | { |
182 | - //$pieces = explode("</div>", $items[0]); |
|
183 | - if (is_array($bits)) { |
|
184 | - $items = array(); |
|
185 | - $pieces = ''; |
|
186 | - foreach ($bits as $bit) { |
|
187 | - $pieces .= $bit; |
|
188 | - } |
|
189 | - $items[0] = '<div class="vbreadcrumb" typeof="v:Breadcrumb">' . $pieces . "</div>"; |
|
190 | - if (isset($last) && $last) { |
|
191 | - $items['last'] = $last; |
|
192 | - } |
|
193 | - } |
|
194 | - |
|
195 | - //print_r($items); |
|
196 | - return $items; |
|
182 | + //$pieces = explode("</div>", $items[0]); |
|
183 | + if (is_array($bits)) { |
|
184 | + $items = array(); |
|
185 | + $pieces = ''; |
|
186 | + foreach ($bits as $bit) { |
|
187 | + $pieces .= $bit; |
|
188 | + } |
|
189 | + $items[0] = '<div class="vbreadcrumb" typeof="v:Breadcrumb">' . $pieces . "</div>"; |
|
190 | + if (isset($last) && $last) { |
|
191 | + $items['last'] = $last; |
|
192 | + } |
|
193 | + } |
|
194 | + |
|
195 | + //print_r($items); |
|
196 | + return $items; |
|
197 | 197 | |
198 | 198 | } |
199 | 199 | |
200 | 200 | add_filter('geodir_menu_after_sub_ul','gd_multinews_mobile_menu_caret',10,1); |
201 | 201 | add_filter('geodir_location_switcher_menu_after_sub_ul','gd_multinews_mobile_menu_caret',10,1); |
202 | 202 | function gd_multinews_mobile_menu_caret($html){ |
203 | - $html .= '<i class="responsive-caret"></i>'; |
|
204 | - return $html; |
|
203 | + $html .= '<i class="responsive-caret"></i>'; |
|
204 | + return $html; |
|
205 | 205 | |
206 | 206 | } |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | foreach ($bits as $bit) { |
187 | 187 | $pieces .= $bit; |
188 | 188 | } |
189 | - $items[0] = '<div class="vbreadcrumb" typeof="v:Breadcrumb">' . $pieces . "</div>"; |
|
189 | + $items[0] = '<div class="vbreadcrumb" typeof="v:Breadcrumb">'.$pieces."</div>"; |
|
190 | 190 | if (isset($last) && $last) { |
191 | 191 | $items['last'] = $last; |
192 | 192 | } |
@@ -197,9 +197,9 @@ discard block |
||
197 | 197 | |
198 | 198 | } |
199 | 199 | |
200 | -add_filter('geodir_menu_after_sub_ul','gd_multinews_mobile_menu_caret',10,1); |
|
201 | -add_filter('geodir_location_switcher_menu_after_sub_ul','gd_multinews_mobile_menu_caret',10,1); |
|
202 | -function gd_multinews_mobile_menu_caret($html){ |
|
200 | +add_filter('geodir_menu_after_sub_ul', 'gd_multinews_mobile_menu_caret', 10, 1); |
|
201 | +add_filter('geodir_location_switcher_menu_after_sub_ul', 'gd_multinews_mobile_menu_caret', 10, 1); |
|
202 | +function gd_multinews_mobile_menu_caret($html) { |
|
203 | 203 | $html .= '<i class="responsive-caret"></i>'; |
204 | 204 | return $html; |
205 | 205 |
@@ -15,29 +15,29 @@ discard block |
||
15 | 15 | <?php |
16 | 16 | |
17 | 17 | |
18 | - global $wpdb; |
|
18 | + global $wpdb; |
|
19 | 19 | |
20 | - $post_id = $_REQUEST['pid']; |
|
21 | - $post_info = get_post($post_id); |
|
20 | + $post_id = $_REQUEST['pid']; |
|
21 | + $post_info = get_post($post_id); |
|
22 | 22 | |
23 | - $posted_date = $post_info->post_date; |
|
24 | - $productlink = get_permalink($post_id); |
|
25 | - $siteName = get_bloginfo('name'); |
|
26 | - $siteurl = home_url(); |
|
27 | - $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>'; |
|
23 | + $posted_date = $post_info->post_date; |
|
24 | + $productlink = get_permalink($post_id); |
|
25 | + $siteName = get_bloginfo('name'); |
|
26 | + $siteurl = home_url(); |
|
27 | + $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>'; |
|
28 | 28 | |
29 | - $loginurl = geodir_login_url(); |
|
30 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
29 | + $loginurl = geodir_login_url(); |
|
30 | + $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
31 | 31 | |
32 | - $post_author = $post_info->post_author; |
|
32 | + $post_author = $post_info->post_author; |
|
33 | 33 | |
34 | - $user_info = get_userdata($post_author); |
|
35 | - $username = $user_info->user_login; |
|
36 | - $user_email = $user_info->user_email; |
|
34 | + $user_info = get_userdata($post_author); |
|
35 | + $username = $user_info->user_login; |
|
36 | + $user_email = $user_info->user_email; |
|
37 | 37 | |
38 | - $message = wpautop(__(stripslashes_deep(get_option('geodir_post_added_success_msg_content')),'geodirectory')); |
|
38 | + $message = wpautop(__(stripslashes_deep(get_option('geodir_post_added_success_msg_content')),'geodirectory')); |
|
39 | 39 | |
40 | - /* |
|
40 | + /* |
|
41 | 41 | * Filter the success page message before variable replacements. |
42 | 42 | * |
43 | 43 | * @since 1.5.7 |
@@ -45,13 +45,13 @@ discard block |
||
45 | 45 | * @param object $post_info Post object. |
46 | 46 | * @param object $user_info User object. |
47 | 47 | */ |
48 | - $message = apply_filters('geodir_success_page_msg_before_var_replace', $message,$post_info, $user_info); |
|
48 | + $message = apply_filters('geodir_success_page_msg_before_var_replace', $message,$post_info, $user_info); |
|
49 | 49 | |
50 | - $search_array = array('[#submited_information_link#]', '[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#user_email#]', '[#username#]', '[#login_url#]', '[#posted_date#]'); |
|
51 | - $replace_array = array($productlink, $productlink, $siteurl_link, $post_id, $siteName, $user_email, $username, $loginurl_link, $posted_date); |
|
52 | - $message = str_replace($search_array, $replace_array, $message); |
|
50 | + $search_array = array('[#submited_information_link#]', '[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#user_email#]', '[#username#]', '[#login_url#]', '[#posted_date#]'); |
|
51 | + $replace_array = array($productlink, $productlink, $siteurl_link, $post_id, $siteName, $user_email, $username, $loginurl_link, $posted_date); |
|
52 | + $message = str_replace($search_array, $replace_array, $message); |
|
53 | 53 | |
54 | - /* |
|
54 | + /* |
|
55 | 55 | * Filter the success page message after variable replacements. |
56 | 56 | * |
57 | 57 | * @since 1.5.7 |
@@ -59,15 +59,15 @@ discard block |
||
59 | 59 | * @param object $post_info Post object. |
60 | 60 | * @param object $user_info User object. |
61 | 61 | */ |
62 | - $message = apply_filters('geodir_success_page_msg_after_var_replace', $message,$post_info, $user_info); |
|
62 | + $message = apply_filters('geodir_success_page_msg_after_var_replace', $message,$post_info, $user_info); |
|
63 | 63 | |
64 | 64 | |
65 | 65 | |
66 | - ?> |
|
66 | + ?> |
|
67 | 67 | |
68 | 68 | <?php |
69 | 69 | |
70 | - /* |
|
70 | + /* |
|
71 | 71 | * Action called before the success page message wrapper. |
72 | 72 | * |
73 | 73 | * @since 1.5.7 |
@@ -75,11 +75,11 @@ discard block |
||
75 | 75 | * @param object $post_info Post object. |
76 | 76 | * @param object $user_info User object. |
77 | 77 | */ |
78 | - do_action('geodir_before_success_page_msg_wrapper', $message,$post_info, $user_info); |
|
79 | - echo '<h5 class="geodir_information">'; |
|
80 | - echo $message; |
|
81 | - echo '</h5>'; |
|
82 | - /* |
|
78 | + do_action('geodir_before_success_page_msg_wrapper', $message,$post_info, $user_info); |
|
79 | + echo '<h5 class="geodir_information">'; |
|
80 | + echo $message; |
|
81 | + echo '</h5>'; |
|
82 | + /* |
|
83 | 83 | * Action called after the success page message wrapper. |
84 | 84 | * |
85 | 85 | * @since 1.5.7 |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | * @param object $post_info Post object. |
88 | 88 | * @param object $user_info User object. |
89 | 89 | */ |
90 | - do_action('geodir_after_success_page_msg_wrapper', $message,$post_info, $user_info); |
|
90 | + do_action('geodir_after_success_page_msg_wrapper', $message,$post_info, $user_info); |
|
91 | 91 | |
92 | - ?> |
|
92 | + ?> |
|
93 | 93 | |
94 | 94 | </div> |
95 | 95 | \ No newline at end of file |
@@ -24,10 +24,10 @@ discard block |
||
24 | 24 | $productlink = get_permalink($post_id); |
25 | 25 | $siteName = get_bloginfo('name'); |
26 | 26 | $siteurl = home_url(); |
27 | - $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>'; |
|
27 | + $siteurl_link = '<a href="'.$siteurl.'">'.$siteurl.'</a>'; |
|
28 | 28 | |
29 | 29 | $loginurl = geodir_login_url(); |
30 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
30 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
31 | 31 | |
32 | 32 | $post_author = $post_info->post_author; |
33 | 33 | |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $username = $user_info->user_login; |
36 | 36 | $user_email = $user_info->user_email; |
37 | 37 | |
38 | - $message = wpautop(__(stripslashes_deep(get_option('geodir_post_added_success_msg_content')),'geodirectory')); |
|
38 | + $message = wpautop(__(stripslashes_deep(get_option('geodir_post_added_success_msg_content')), 'geodirectory')); |
|
39 | 39 | |
40 | 40 | /* |
41 | 41 | * Filter the success page message before variable replacements. |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * @param object $post_info Post object. |
46 | 46 | * @param object $user_info User object. |
47 | 47 | */ |
48 | - $message = apply_filters('geodir_success_page_msg_before_var_replace', $message,$post_info, $user_info); |
|
48 | + $message = apply_filters('geodir_success_page_msg_before_var_replace', $message, $post_info, $user_info); |
|
49 | 49 | |
50 | 50 | $search_array = array('[#submited_information_link#]', '[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#user_email#]', '[#username#]', '[#login_url#]', '[#posted_date#]'); |
51 | 51 | $replace_array = array($productlink, $productlink, $siteurl_link, $post_id, $siteName, $user_email, $username, $loginurl_link, $posted_date); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * @param object $post_info Post object. |
60 | 60 | * @param object $user_info User object. |
61 | 61 | */ |
62 | - $message = apply_filters('geodir_success_page_msg_after_var_replace', $message,$post_info, $user_info); |
|
62 | + $message = apply_filters('geodir_success_page_msg_after_var_replace', $message, $post_info, $user_info); |
|
63 | 63 | |
64 | 64 | |
65 | 65 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * @param object $post_info Post object. |
76 | 76 | * @param object $user_info User object. |
77 | 77 | */ |
78 | - do_action('geodir_before_success_page_msg_wrapper', $message,$post_info, $user_info); |
|
78 | + do_action('geodir_before_success_page_msg_wrapper', $message, $post_info, $user_info); |
|
79 | 79 | echo '<h5 class="geodir_information">'; |
80 | 80 | echo $message; |
81 | 81 | echo '</h5>'; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @param object $post_info Post object. |
88 | 88 | * @param object $user_info User object. |
89 | 89 | */ |
90 | - do_action('geodir_after_success_page_msg_wrapper', $message,$post_info, $user_info); |
|
90 | + do_action('geodir_after_success_page_msg_wrapper', $message, $post_info, $user_info); |
|
91 | 91 | |
92 | 92 | ?> |
93 | 93 |