@@ -21,84 +21,84 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | function geodir_cf_checkbox($html,$location,$cf,$p=''){ |
| 23 | 23 | |
| 24 | - // check we have the post value |
|
| 25 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 26 | - else{ global $post;} |
|
| 27 | - |
|
| 28 | - if(!is_array($cf) && $cf!=''){ |
|
| 29 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 30 | - if(!$cf){return NULL;} |
|
| 31 | - } |
|
| 32 | - |
|
| 33 | - $html_var = $cf['htmlvar_name']; |
|
| 34 | - |
|
| 35 | - // Check if there is a location specific filter. |
|
| 36 | - if(has_filter("geodir_custom_field_output_checkbox_loc_{$location}")){ |
|
| 37 | - /** |
|
| 38 | - * Filter the checkbox html by location. |
|
| 39 | - * |
|
| 40 | - * @param string $html The html to filter. |
|
| 41 | - * @param array $cf The custom field array. |
|
| 42 | - * @since 1.6.6 |
|
| 43 | - */ |
|
| 44 | - $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}",$html,$cf); |
|
| 45 | - } |
|
| 46 | - |
|
| 47 | - // Check if there is a custom field specific filter. |
|
| 48 | - if(has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")){ |
|
| 49 | - /** |
|
| 50 | - * Filter the checkbox html by individual custom field. |
|
| 51 | - * |
|
| 52 | - * @param string $html The html to filter. |
|
| 53 | - * @param string $location The location to output the html. |
|
| 54 | - * @param array $cf The custom field array. |
|
| 55 | - * @since 1.6.6 |
|
| 56 | - */ |
|
| 57 | - $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}",$html,$location,$cf); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - // Check if there is a custom field key specific filter. |
|
| 61 | - if(has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")){ |
|
| 62 | - /** |
|
| 63 | - * Filter the checkbox html by field type key. |
|
| 64 | - * |
|
| 65 | - * @param string $html The html to filter. |
|
| 66 | - * @param string $location The location to output the html. |
|
| 67 | - * @param array $cf The custom field array. |
|
| 68 | - * @since 1.6.6 |
|
| 69 | - */ |
|
| 70 | - $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 71 | - } |
|
| 72 | - |
|
| 73 | - // If not html then we run the standard output. |
|
| 74 | - if(empty($html)){ |
|
| 75 | - |
|
| 76 | - if ( (int) $post->{$html_var} == 1 ): |
|
| 77 | - |
|
| 78 | - if ( $post->{$html_var} == '1' ): |
|
| 79 | - $html_val = __( 'Yes', 'geodirectory' ); |
|
| 80 | - else: |
|
| 81 | - $html_val = __( 'No', 'geodirectory' ); |
|
| 82 | - endif; |
|
| 83 | - |
|
| 84 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 85 | - if (strpos($field_icon, 'http') !== false) { |
|
| 86 | - $field_icon_af = ''; |
|
| 87 | - } elseif ($field_icon == '') { |
|
| 88 | - $field_icon_af = ''; |
|
| 89 | - } else { |
|
| 90 | - $field_icon_af = $field_icon; |
|
| 91 | - $field_icon = ''; |
|
| 92 | - } |
|
| 93 | - |
|
| 94 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af; |
|
| 95 | - $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ''; |
|
| 96 | - $html .= '</span>' . $html_val . '</div>'; |
|
| 97 | - endif; |
|
| 98 | - |
|
| 99 | - } |
|
| 100 | - |
|
| 101 | - return $html; |
|
| 24 | + // check we have the post value |
|
| 25 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 26 | + else{ global $post;} |
|
| 27 | + |
|
| 28 | + if(!is_array($cf) && $cf!=''){ |
|
| 29 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 30 | + if(!$cf){return NULL;} |
|
| 31 | + } |
|
| 32 | + |
|
| 33 | + $html_var = $cf['htmlvar_name']; |
|
| 34 | + |
|
| 35 | + // Check if there is a location specific filter. |
|
| 36 | + if(has_filter("geodir_custom_field_output_checkbox_loc_{$location}")){ |
|
| 37 | + /** |
|
| 38 | + * Filter the checkbox html by location. |
|
| 39 | + * |
|
| 40 | + * @param string $html The html to filter. |
|
| 41 | + * @param array $cf The custom field array. |
|
| 42 | + * @since 1.6.6 |
|
| 43 | + */ |
|
| 44 | + $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}",$html,$cf); |
|
| 45 | + } |
|
| 46 | + |
|
| 47 | + // Check if there is a custom field specific filter. |
|
| 48 | + if(has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")){ |
|
| 49 | + /** |
|
| 50 | + * Filter the checkbox html by individual custom field. |
|
| 51 | + * |
|
| 52 | + * @param string $html The html to filter. |
|
| 53 | + * @param string $location The location to output the html. |
|
| 54 | + * @param array $cf The custom field array. |
|
| 55 | + * @since 1.6.6 |
|
| 56 | + */ |
|
| 57 | + $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}",$html,$location,$cf); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + // Check if there is a custom field key specific filter. |
|
| 61 | + if(has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")){ |
|
| 62 | + /** |
|
| 63 | + * Filter the checkbox html by field type key. |
|
| 64 | + * |
|
| 65 | + * @param string $html The html to filter. |
|
| 66 | + * @param string $location The location to output the html. |
|
| 67 | + * @param array $cf The custom field array. |
|
| 68 | + * @since 1.6.6 |
|
| 69 | + */ |
|
| 70 | + $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 71 | + } |
|
| 72 | + |
|
| 73 | + // If not html then we run the standard output. |
|
| 74 | + if(empty($html)){ |
|
| 75 | + |
|
| 76 | + if ( (int) $post->{$html_var} == 1 ): |
|
| 77 | + |
|
| 78 | + if ( $post->{$html_var} == '1' ): |
|
| 79 | + $html_val = __( 'Yes', 'geodirectory' ); |
|
| 80 | + else: |
|
| 81 | + $html_val = __( 'No', 'geodirectory' ); |
|
| 82 | + endif; |
|
| 83 | + |
|
| 84 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 85 | + if (strpos($field_icon, 'http') !== false) { |
|
| 86 | + $field_icon_af = ''; |
|
| 87 | + } elseif ($field_icon == '') { |
|
| 88 | + $field_icon_af = ''; |
|
| 89 | + } else { |
|
| 90 | + $field_icon_af = $field_icon; |
|
| 91 | + $field_icon = ''; |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af; |
|
| 95 | + $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ''; |
|
| 96 | + $html .= '</span>' . $html_val . '</div>'; |
|
| 97 | + endif; |
|
| 98 | + |
|
| 99 | + } |
|
| 100 | + |
|
| 101 | + return $html; |
|
| 102 | 102 | } |
| 103 | 103 | add_filter('geodir_custom_field_output_checkbox','geodir_cf_checkbox',10,3); |
| 104 | 104 | |
@@ -115,71 +115,71 @@ discard block |
||
| 115 | 115 | */ |
| 116 | 116 | function geodir_cf_fieldset($html,$location,$cf,$p=''){ |
| 117 | 117 | |
| 118 | - // check we have the post value |
|
| 119 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 120 | - else{ global $post;} |
|
| 121 | - |
|
| 122 | - if(!is_array($cf) && $cf!=''){ |
|
| 123 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 124 | - if(!$cf){return NULL;} |
|
| 125 | - } |
|
| 126 | - |
|
| 127 | - $html_var = $cf['htmlvar_name']; |
|
| 128 | - |
|
| 129 | - // Check if there is a location specific filter. |
|
| 130 | - if(has_filter("geodir_custom_field_output_fieldset_loc_{$location}")){ |
|
| 131 | - /** |
|
| 132 | - * Filter the fieldset html by location. |
|
| 133 | - * |
|
| 134 | - * @param string $html The html to filter. |
|
| 135 | - * @param array $cf The custom field array. |
|
| 136 | - * @since 1.6.6 |
|
| 137 | - */ |
|
| 138 | - $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}",$html,$cf); |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - // Check if there is a custom field specific filter. |
|
| 142 | - if(has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")){ |
|
| 143 | - /** |
|
| 144 | - * Filter the fieldset html by individual custom field. |
|
| 145 | - * |
|
| 146 | - * @param string $html The html to filter. |
|
| 147 | - * @param string $location The location to output the html. |
|
| 148 | - * @param array $cf The custom field array. |
|
| 149 | - * @since 1.6.6 |
|
| 150 | - */ |
|
| 151 | - $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}",$html,$location,$cf); |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - // Check if there is a custom field key specific filter. |
|
| 155 | - if(has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")){ |
|
| 156 | - /** |
|
| 157 | - * Filter the fieldset html by field type key. |
|
| 158 | - * |
|
| 159 | - * @param string $html The html to filter. |
|
| 160 | - * @param string $location The location to output the html. |
|
| 161 | - * @param array $cf The custom field array. |
|
| 162 | - * @since 1.6.6 |
|
| 163 | - */ |
|
| 164 | - $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - // If not html then we run the standard output. |
|
| 168 | - if(empty($html)){ |
|
| 169 | - |
|
| 170 | - global $field_set_start; |
|
| 171 | - $fieldset_class = 'fieldset-'.sanitize_title_with_dashes($cf['site_title']); |
|
| 172 | - |
|
| 173 | - if ($field_set_start == 1) { |
|
| 174 | - $html = ''; |
|
| 175 | - } else { |
|
| 176 | - $html = '<h2 class="'.$fieldset_class.'">'. __($cf['site_title'], 'geodirectory') . '</h2>'; |
|
| 177 | - //$field_set_start = 1; |
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - return $html; |
|
| 118 | + // check we have the post value |
|
| 119 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 120 | + else{ global $post;} |
|
| 121 | + |
|
| 122 | + if(!is_array($cf) && $cf!=''){ |
|
| 123 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 124 | + if(!$cf){return NULL;} |
|
| 125 | + } |
|
| 126 | + |
|
| 127 | + $html_var = $cf['htmlvar_name']; |
|
| 128 | + |
|
| 129 | + // Check if there is a location specific filter. |
|
| 130 | + if(has_filter("geodir_custom_field_output_fieldset_loc_{$location}")){ |
|
| 131 | + /** |
|
| 132 | + * Filter the fieldset html by location. |
|
| 133 | + * |
|
| 134 | + * @param string $html The html to filter. |
|
| 135 | + * @param array $cf The custom field array. |
|
| 136 | + * @since 1.6.6 |
|
| 137 | + */ |
|
| 138 | + $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}",$html,$cf); |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + // Check if there is a custom field specific filter. |
|
| 142 | + if(has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")){ |
|
| 143 | + /** |
|
| 144 | + * Filter the fieldset html by individual custom field. |
|
| 145 | + * |
|
| 146 | + * @param string $html The html to filter. |
|
| 147 | + * @param string $location The location to output the html. |
|
| 148 | + * @param array $cf The custom field array. |
|
| 149 | + * @since 1.6.6 |
|
| 150 | + */ |
|
| 151 | + $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}",$html,$location,$cf); |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + // Check if there is a custom field key specific filter. |
|
| 155 | + if(has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")){ |
|
| 156 | + /** |
|
| 157 | + * Filter the fieldset html by field type key. |
|
| 158 | + * |
|
| 159 | + * @param string $html The html to filter. |
|
| 160 | + * @param string $location The location to output the html. |
|
| 161 | + * @param array $cf The custom field array. |
|
| 162 | + * @since 1.6.6 |
|
| 163 | + */ |
|
| 164 | + $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + // If not html then we run the standard output. |
|
| 168 | + if(empty($html)){ |
|
| 169 | + |
|
| 170 | + global $field_set_start; |
|
| 171 | + $fieldset_class = 'fieldset-'.sanitize_title_with_dashes($cf['site_title']); |
|
| 172 | + |
|
| 173 | + if ($field_set_start == 1) { |
|
| 174 | + $html = ''; |
|
| 175 | + } else { |
|
| 176 | + $html = '<h2 class="'.$fieldset_class.'">'. __($cf['site_title'], 'geodirectory') . '</h2>'; |
|
| 177 | + //$field_set_start = 1; |
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + return $html; |
|
| 183 | 183 | } |
| 184 | 184 | add_filter('geodir_custom_field_output_fieldset','geodir_cf_fieldset',10,3); |
| 185 | 185 | |
@@ -196,106 +196,106 @@ discard block |
||
| 196 | 196 | */ |
| 197 | 197 | function geodir_cf_url($html,$location,$cf,$p=''){ |
| 198 | 198 | |
| 199 | - // check we have the post value |
|
| 200 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 201 | - else{ global $post;} |
|
| 202 | - |
|
| 203 | - if(!is_array($cf) && $cf!=''){ |
|
| 204 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 205 | - if(!$cf){return NULL;} |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - $html_var = $cf['htmlvar_name']; |
|
| 209 | - |
|
| 210 | - // Check if there is a location specific filter. |
|
| 211 | - if(has_filter("geodir_custom_field_output_url_loc_{$location}")){ |
|
| 212 | - /** |
|
| 213 | - * Filter the url html by location. |
|
| 214 | - * |
|
| 215 | - * @param string $html The html to filter. |
|
| 216 | - * @param array $cf The custom field array. |
|
| 217 | - * @since 1.6.6 |
|
| 218 | - */ |
|
| 219 | - $html = apply_filters("geodir_custom_field_output_url_loc_{$location}",$html,$cf); |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - // Check if there is a custom field specific filter. |
|
| 223 | - if(has_filter("geodir_custom_field_output_url_var_{$html_var}")){ |
|
| 224 | - /** |
|
| 225 | - * Filter the url html by individual custom field. |
|
| 226 | - * |
|
| 227 | - * @param string $html The html to filter. |
|
| 228 | - * @param string $location The location to output the html. |
|
| 229 | - * @param array $cf The custom field array. |
|
| 230 | - * @since 1.6.6 |
|
| 231 | - */ |
|
| 232 | - $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}",$html,$location,$cf); |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - // Check if there is a custom field key specific filter. |
|
| 236 | - if(has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")){ |
|
| 237 | - /** |
|
| 238 | - * Filter the url html by field type key. |
|
| 239 | - * |
|
| 240 | - * @param string $html The html to filter. |
|
| 241 | - * @param string $location The location to output the html. |
|
| 242 | - * @param array $cf The custom field array. |
|
| 243 | - * @since 1.6.6 |
|
| 244 | - */ |
|
| 245 | - $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - // If not html then we run the standard output. |
|
| 249 | - if(empty($html)){ |
|
| 250 | - |
|
| 251 | - if ($post->{$cf['htmlvar_name']}): |
|
| 252 | - |
|
| 253 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 254 | - if (strpos($field_icon, 'http') !== false) { |
|
| 255 | - $field_icon_af = ''; |
|
| 256 | - } elseif ($field_icon == '') { |
|
| 257 | - |
|
| 258 | - if ($cf['name'] == 'geodir_facebook') { |
|
| 259 | - $field_icon_af = '<i class="fa fa-facebook-square"></i>'; |
|
| 260 | - } elseif ($cf['name'] == 'geodir_twitter') { |
|
| 261 | - $field_icon_af = '<i class="fa fa-twitter-square"></i>'; |
|
| 262 | - } else { |
|
| 263 | - $field_icon_af = '<i class="fa fa-link"></i>'; |
|
| 264 | - } |
|
| 265 | - |
|
| 266 | - } else { |
|
| 267 | - $field_icon_af = $field_icon; |
|
| 268 | - $field_icon = ''; |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - $a_url = geodir_parse_custom_field_url($post->{$cf['htmlvar_name']}); |
|
| 272 | - |
|
| 273 | - |
|
| 274 | - $website = !empty($a_url['url']) ? $a_url['url'] : ''; |
|
| 275 | - $title = !empty($a_url['label']) ? $a_url['label'] : $cf['site_title']; |
|
| 276 | - if(!empty($cf['default_value'])){$title = $cf['default_value'];} |
|
| 277 | - $title = $title != '' ? __(stripslashes($title), 'geodirectory') : ''; |
|
| 278 | - |
|
| 279 | - |
|
| 280 | - |
|
| 281 | - // all search engines that use the nofollow value exclude links that use it from their ranking calculation |
|
| 282 | - $rel = strpos($website, get_site_url()) !== false ? '' : 'rel="nofollow"'; |
|
| 283 | - /** |
|
| 284 | - * Filter custom field website name. |
|
| 285 | - * |
|
| 286 | - * @since 1.0.0 |
|
| 287 | - * |
|
| 288 | - * @param string $title Website Title. |
|
| 289 | - * @param string $website Website URL. |
|
| 290 | - * @param int $post->ID Post ID. |
|
| 291 | - */ |
|
| 292 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . '<a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' . apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>'; |
|
| 293 | - |
|
| 294 | - endif; |
|
| 295 | - |
|
| 296 | - } |
|
| 297 | - |
|
| 298 | - return $html; |
|
| 199 | + // check we have the post value |
|
| 200 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 201 | + else{ global $post;} |
|
| 202 | + |
|
| 203 | + if(!is_array($cf) && $cf!=''){ |
|
| 204 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 205 | + if(!$cf){return NULL;} |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + $html_var = $cf['htmlvar_name']; |
|
| 209 | + |
|
| 210 | + // Check if there is a location specific filter. |
|
| 211 | + if(has_filter("geodir_custom_field_output_url_loc_{$location}")){ |
|
| 212 | + /** |
|
| 213 | + * Filter the url html by location. |
|
| 214 | + * |
|
| 215 | + * @param string $html The html to filter. |
|
| 216 | + * @param array $cf The custom field array. |
|
| 217 | + * @since 1.6.6 |
|
| 218 | + */ |
|
| 219 | + $html = apply_filters("geodir_custom_field_output_url_loc_{$location}",$html,$cf); |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + // Check if there is a custom field specific filter. |
|
| 223 | + if(has_filter("geodir_custom_field_output_url_var_{$html_var}")){ |
|
| 224 | + /** |
|
| 225 | + * Filter the url html by individual custom field. |
|
| 226 | + * |
|
| 227 | + * @param string $html The html to filter. |
|
| 228 | + * @param string $location The location to output the html. |
|
| 229 | + * @param array $cf The custom field array. |
|
| 230 | + * @since 1.6.6 |
|
| 231 | + */ |
|
| 232 | + $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}",$html,$location,$cf); |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + // Check if there is a custom field key specific filter. |
|
| 236 | + if(has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")){ |
|
| 237 | + /** |
|
| 238 | + * Filter the url html by field type key. |
|
| 239 | + * |
|
| 240 | + * @param string $html The html to filter. |
|
| 241 | + * @param string $location The location to output the html. |
|
| 242 | + * @param array $cf The custom field array. |
|
| 243 | + * @since 1.6.6 |
|
| 244 | + */ |
|
| 245 | + $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + // If not html then we run the standard output. |
|
| 249 | + if(empty($html)){ |
|
| 250 | + |
|
| 251 | + if ($post->{$cf['htmlvar_name']}): |
|
| 252 | + |
|
| 253 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 254 | + if (strpos($field_icon, 'http') !== false) { |
|
| 255 | + $field_icon_af = ''; |
|
| 256 | + } elseif ($field_icon == '') { |
|
| 257 | + |
|
| 258 | + if ($cf['name'] == 'geodir_facebook') { |
|
| 259 | + $field_icon_af = '<i class="fa fa-facebook-square"></i>'; |
|
| 260 | + } elseif ($cf['name'] == 'geodir_twitter') { |
|
| 261 | + $field_icon_af = '<i class="fa fa-twitter-square"></i>'; |
|
| 262 | + } else { |
|
| 263 | + $field_icon_af = '<i class="fa fa-link"></i>'; |
|
| 264 | + } |
|
| 265 | + |
|
| 266 | + } else { |
|
| 267 | + $field_icon_af = $field_icon; |
|
| 268 | + $field_icon = ''; |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + $a_url = geodir_parse_custom_field_url($post->{$cf['htmlvar_name']}); |
|
| 272 | + |
|
| 273 | + |
|
| 274 | + $website = !empty($a_url['url']) ? $a_url['url'] : ''; |
|
| 275 | + $title = !empty($a_url['label']) ? $a_url['label'] : $cf['site_title']; |
|
| 276 | + if(!empty($cf['default_value'])){$title = $cf['default_value'];} |
|
| 277 | + $title = $title != '' ? __(stripslashes($title), 'geodirectory') : ''; |
|
| 278 | + |
|
| 279 | + |
|
| 280 | + |
|
| 281 | + // all search engines that use the nofollow value exclude links that use it from their ranking calculation |
|
| 282 | + $rel = strpos($website, get_site_url()) !== false ? '' : 'rel="nofollow"'; |
|
| 283 | + /** |
|
| 284 | + * Filter custom field website name. |
|
| 285 | + * |
|
| 286 | + * @since 1.0.0 |
|
| 287 | + * |
|
| 288 | + * @param string $title Website Title. |
|
| 289 | + * @param string $website Website URL. |
|
| 290 | + * @param int $post->ID Post ID. |
|
| 291 | + */ |
|
| 292 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . '<a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' . apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>'; |
|
| 293 | + |
|
| 294 | + endif; |
|
| 295 | + |
|
| 296 | + } |
|
| 297 | + |
|
| 298 | + return $html; |
|
| 299 | 299 | } |
| 300 | 300 | add_filter('geodir_custom_field_output_url','geodir_cf_url',10,3); |
| 301 | 301 | |
@@ -312,80 +312,80 @@ discard block |
||
| 312 | 312 | */ |
| 313 | 313 | function geodir_cf_phone($html,$location,$cf,$p=''){ |
| 314 | 314 | |
| 315 | - // check we have the post value |
|
| 316 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 317 | - else{ global $post;} |
|
| 318 | - |
|
| 319 | - if(!is_array($cf) && $cf!=''){ |
|
| 320 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 321 | - if(!$cf){return NULL;} |
|
| 322 | - } |
|
| 323 | - |
|
| 324 | - $html_var = $cf['htmlvar_name']; |
|
| 325 | - |
|
| 326 | - // Check if there is a location specific filter. |
|
| 327 | - if(has_filter("geodir_custom_field_output_phone_loc_{$location}")){ |
|
| 328 | - /** |
|
| 329 | - * Filter the phone html by location. |
|
| 330 | - * |
|
| 331 | - * @param string $html The html to filter. |
|
| 332 | - * @param array $cf The custom field array. |
|
| 333 | - * @since 1.6.6 |
|
| 334 | - */ |
|
| 335 | - $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}",$html,$cf); |
|
| 336 | - } |
|
| 337 | - |
|
| 338 | - // Check if there is a custom field specific filter. |
|
| 339 | - if(has_filter("geodir_custom_field_output_phone_var_{$html_var}")){ |
|
| 340 | - /** |
|
| 341 | - * Filter the phone html by individual custom field. |
|
| 342 | - * |
|
| 343 | - * @param string $html The html to filter. |
|
| 344 | - * @param string $location The location to output the html. |
|
| 345 | - * @param array $cf The custom field array. |
|
| 346 | - * @since 1.6.6 |
|
| 347 | - */ |
|
| 348 | - $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}",$html,$location,$cf); |
|
| 349 | - } |
|
| 350 | - |
|
| 351 | - // Check if there is a custom field key specific filter. |
|
| 352 | - if(has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")){ |
|
| 353 | - /** |
|
| 354 | - * Filter the phone html by field type key. |
|
| 355 | - * |
|
| 356 | - * @param string $html The html to filter. |
|
| 357 | - * @param string $location The location to output the html. |
|
| 358 | - * @param array $cf The custom field array. |
|
| 359 | - * @since 1.6.6 |
|
| 360 | - */ |
|
| 361 | - $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 362 | - } |
|
| 363 | - |
|
| 364 | - // If not html then we run the standard output. |
|
| 365 | - if(empty($html)){ |
|
| 366 | - |
|
| 367 | - if ($post->{$cf['htmlvar_name']}): |
|
| 368 | - |
|
| 369 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 370 | - if (strpos($field_icon, 'http') !== false) { |
|
| 371 | - $field_icon_af = ''; |
|
| 372 | - } elseif ($field_icon == '') { |
|
| 373 | - $field_icon_af = '<i class="fa fa-phone"></i>'; |
|
| 374 | - } else { |
|
| 375 | - $field_icon_af = $field_icon; |
|
| 376 | - $field_icon = ''; |
|
| 377 | - } |
|
| 378 | - |
|
| 379 | - |
|
| 380 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af . |
|
| 381 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ' '; |
|
| 382 | - $html .= '</span><a href="tel:' . preg_replace('/[^0-9+]/', '', $post->{$cf['htmlvar_name']}) . '">' . $post->{$cf['htmlvar_name']} . '</a></div>'; |
|
| 383 | - |
|
| 384 | - endif; |
|
| 385 | - |
|
| 386 | - } |
|
| 387 | - |
|
| 388 | - return $html; |
|
| 315 | + // check we have the post value |
|
| 316 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 317 | + else{ global $post;} |
|
| 318 | + |
|
| 319 | + if(!is_array($cf) && $cf!=''){ |
|
| 320 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 321 | + if(!$cf){return NULL;} |
|
| 322 | + } |
|
| 323 | + |
|
| 324 | + $html_var = $cf['htmlvar_name']; |
|
| 325 | + |
|
| 326 | + // Check if there is a location specific filter. |
|
| 327 | + if(has_filter("geodir_custom_field_output_phone_loc_{$location}")){ |
|
| 328 | + /** |
|
| 329 | + * Filter the phone html by location. |
|
| 330 | + * |
|
| 331 | + * @param string $html The html to filter. |
|
| 332 | + * @param array $cf The custom field array. |
|
| 333 | + * @since 1.6.6 |
|
| 334 | + */ |
|
| 335 | + $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}",$html,$cf); |
|
| 336 | + } |
|
| 337 | + |
|
| 338 | + // Check if there is a custom field specific filter. |
|
| 339 | + if(has_filter("geodir_custom_field_output_phone_var_{$html_var}")){ |
|
| 340 | + /** |
|
| 341 | + * Filter the phone html by individual custom field. |
|
| 342 | + * |
|
| 343 | + * @param string $html The html to filter. |
|
| 344 | + * @param string $location The location to output the html. |
|
| 345 | + * @param array $cf The custom field array. |
|
| 346 | + * @since 1.6.6 |
|
| 347 | + */ |
|
| 348 | + $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}",$html,$location,$cf); |
|
| 349 | + } |
|
| 350 | + |
|
| 351 | + // Check if there is a custom field key specific filter. |
|
| 352 | + if(has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")){ |
|
| 353 | + /** |
|
| 354 | + * Filter the phone html by field type key. |
|
| 355 | + * |
|
| 356 | + * @param string $html The html to filter. |
|
| 357 | + * @param string $location The location to output the html. |
|
| 358 | + * @param array $cf The custom field array. |
|
| 359 | + * @since 1.6.6 |
|
| 360 | + */ |
|
| 361 | + $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 362 | + } |
|
| 363 | + |
|
| 364 | + // If not html then we run the standard output. |
|
| 365 | + if(empty($html)){ |
|
| 366 | + |
|
| 367 | + if ($post->{$cf['htmlvar_name']}): |
|
| 368 | + |
|
| 369 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 370 | + if (strpos($field_icon, 'http') !== false) { |
|
| 371 | + $field_icon_af = ''; |
|
| 372 | + } elseif ($field_icon == '') { |
|
| 373 | + $field_icon_af = '<i class="fa fa-phone"></i>'; |
|
| 374 | + } else { |
|
| 375 | + $field_icon_af = $field_icon; |
|
| 376 | + $field_icon = ''; |
|
| 377 | + } |
|
| 378 | + |
|
| 379 | + |
|
| 380 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af . |
|
| 381 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ' '; |
|
| 382 | + $html .= '</span><a href="tel:' . preg_replace('/[^0-9+]/', '', $post->{$cf['htmlvar_name']}) . '">' . $post->{$cf['htmlvar_name']} . '</a></div>'; |
|
| 383 | + |
|
| 384 | + endif; |
|
| 385 | + |
|
| 386 | + } |
|
| 387 | + |
|
| 388 | + return $html; |
|
| 389 | 389 | } |
| 390 | 390 | add_filter('geodir_custom_field_output_phone','geodir_cf_phone',10,3); |
| 391 | 391 | |
@@ -402,85 +402,85 @@ discard block |
||
| 402 | 402 | */ |
| 403 | 403 | function geodir_cf_time($html,$location,$cf,$p=''){ |
| 404 | 404 | |
| 405 | - // check we have the post value |
|
| 406 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 407 | - else{ global $post;} |
|
| 408 | - |
|
| 409 | - if(!is_array($cf) && $cf!=''){ |
|
| 410 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 411 | - if(!$cf){return NULL;} |
|
| 412 | - } |
|
| 413 | - |
|
| 414 | - $html_var = $cf['htmlvar_name']; |
|
| 415 | - |
|
| 416 | - // Check if there is a location specific filter. |
|
| 417 | - if(has_filter("geodir_custom_field_output_time_loc_{$location}")){ |
|
| 418 | - /** |
|
| 419 | - * Filter the time html by location. |
|
| 420 | - * |
|
| 421 | - * @param string $html The html to filter. |
|
| 422 | - * @param array $cf The custom field array. |
|
| 423 | - * @since 1.6.6 |
|
| 424 | - */ |
|
| 425 | - $html = apply_filters("geodir_custom_field_output_time_loc_{$location}",$html,$cf); |
|
| 426 | - } |
|
| 427 | - |
|
| 428 | - // Check if there is a custom field specific filter. |
|
| 429 | - if(has_filter("geodir_custom_field_output_time_var_{$html_var}")){ |
|
| 430 | - /** |
|
| 431 | - * Filter the time html by individual custom field. |
|
| 432 | - * |
|
| 433 | - * @param string $html The html to filter. |
|
| 434 | - * @param string $location The location to output the html. |
|
| 435 | - * @param array $cf The custom field array. |
|
| 436 | - * @since 1.6.6 |
|
| 437 | - */ |
|
| 438 | - $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}",$html,$location,$cf); |
|
| 439 | - } |
|
| 440 | - |
|
| 441 | - // Check if there is a custom field key specific filter. |
|
| 442 | - if(has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")){ |
|
| 443 | - /** |
|
| 444 | - * Filter the time html by field type key. |
|
| 445 | - * |
|
| 446 | - * @param string $html The html to filter. |
|
| 447 | - * @param string $location The location to output the html. |
|
| 448 | - * @param array $cf The custom field array. |
|
| 449 | - * @since 1.6.6 |
|
| 450 | - */ |
|
| 451 | - $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 452 | - } |
|
| 453 | - |
|
| 454 | - // If not html then we run the standard output. |
|
| 455 | - if(empty($html)){ |
|
| 456 | - |
|
| 457 | - if ($post->{$cf['htmlvar_name']}): |
|
| 458 | - |
|
| 459 | - $value = ''; |
|
| 460 | - if ($post->{$cf['htmlvar_name']} != '') |
|
| 461 | - //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']})); |
|
| 462 | - $value = date(get_option('time_format'), strtotime($post->{$cf['htmlvar_name']})); |
|
| 463 | - |
|
| 464 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 465 | - if (strpos($field_icon, 'http') !== false) { |
|
| 466 | - $field_icon_af = ''; |
|
| 467 | - } elseif ($field_icon == '') { |
|
| 468 | - $field_icon_af = '<i class="fa fa-clock-o"></i>'; |
|
| 469 | - } else { |
|
| 470 | - $field_icon_af = $field_icon; |
|
| 471 | - $field_icon = ''; |
|
| 472 | - } |
|
| 473 | - |
|
| 474 | - |
|
| 475 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af; |
|
| 476 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ' '; |
|
| 477 | - $html .= '</span>' . $value . '</div>'; |
|
| 478 | - |
|
| 479 | - endif; |
|
| 480 | - |
|
| 481 | - } |
|
| 482 | - |
|
| 483 | - return $html; |
|
| 405 | + // check we have the post value |
|
| 406 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 407 | + else{ global $post;} |
|
| 408 | + |
|
| 409 | + if(!is_array($cf) && $cf!=''){ |
|
| 410 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 411 | + if(!$cf){return NULL;} |
|
| 412 | + } |
|
| 413 | + |
|
| 414 | + $html_var = $cf['htmlvar_name']; |
|
| 415 | + |
|
| 416 | + // Check if there is a location specific filter. |
|
| 417 | + if(has_filter("geodir_custom_field_output_time_loc_{$location}")){ |
|
| 418 | + /** |
|
| 419 | + * Filter the time html by location. |
|
| 420 | + * |
|
| 421 | + * @param string $html The html to filter. |
|
| 422 | + * @param array $cf The custom field array. |
|
| 423 | + * @since 1.6.6 |
|
| 424 | + */ |
|
| 425 | + $html = apply_filters("geodir_custom_field_output_time_loc_{$location}",$html,$cf); |
|
| 426 | + } |
|
| 427 | + |
|
| 428 | + // Check if there is a custom field specific filter. |
|
| 429 | + if(has_filter("geodir_custom_field_output_time_var_{$html_var}")){ |
|
| 430 | + /** |
|
| 431 | + * Filter the time html by individual custom field. |
|
| 432 | + * |
|
| 433 | + * @param string $html The html to filter. |
|
| 434 | + * @param string $location The location to output the html. |
|
| 435 | + * @param array $cf The custom field array. |
|
| 436 | + * @since 1.6.6 |
|
| 437 | + */ |
|
| 438 | + $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}",$html,$location,$cf); |
|
| 439 | + } |
|
| 440 | + |
|
| 441 | + // Check if there is a custom field key specific filter. |
|
| 442 | + if(has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")){ |
|
| 443 | + /** |
|
| 444 | + * Filter the time html by field type key. |
|
| 445 | + * |
|
| 446 | + * @param string $html The html to filter. |
|
| 447 | + * @param string $location The location to output the html. |
|
| 448 | + * @param array $cf The custom field array. |
|
| 449 | + * @since 1.6.6 |
|
| 450 | + */ |
|
| 451 | + $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 452 | + } |
|
| 453 | + |
|
| 454 | + // If not html then we run the standard output. |
|
| 455 | + if(empty($html)){ |
|
| 456 | + |
|
| 457 | + if ($post->{$cf['htmlvar_name']}): |
|
| 458 | + |
|
| 459 | + $value = ''; |
|
| 460 | + if ($post->{$cf['htmlvar_name']} != '') |
|
| 461 | + //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']})); |
|
| 462 | + $value = date(get_option('time_format'), strtotime($post->{$cf['htmlvar_name']})); |
|
| 463 | + |
|
| 464 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 465 | + if (strpos($field_icon, 'http') !== false) { |
|
| 466 | + $field_icon_af = ''; |
|
| 467 | + } elseif ($field_icon == '') { |
|
| 468 | + $field_icon_af = '<i class="fa fa-clock-o"></i>'; |
|
| 469 | + } else { |
|
| 470 | + $field_icon_af = $field_icon; |
|
| 471 | + $field_icon = ''; |
|
| 472 | + } |
|
| 473 | + |
|
| 474 | + |
|
| 475 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af; |
|
| 476 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ' '; |
|
| 477 | + $html .= '</span>' . $value . '</div>'; |
|
| 478 | + |
|
| 479 | + endif; |
|
| 480 | + |
|
| 481 | + } |
|
| 482 | + |
|
| 483 | + return $html; |
|
| 484 | 484 | } |
| 485 | 485 | add_filter('geodir_custom_field_output_time','geodir_cf_time',10,3); |
| 486 | 486 | |
@@ -496,111 +496,111 @@ discard block |
||
| 496 | 496 | * @return string The html to output for the custom field. |
| 497 | 497 | */ |
| 498 | 498 | function geodir_cf_datepicker($html,$location,$cf,$p=''){ |
| 499 | - global $preview; |
|
| 500 | - // check we have the post value |
|
| 501 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 502 | - else{ global $post;} |
|
| 503 | - |
|
| 504 | - if(!is_array($cf) && $cf!=''){ |
|
| 505 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 506 | - if(!$cf){return NULL;} |
|
| 507 | - } |
|
| 508 | - |
|
| 509 | - $html_var = $cf['htmlvar_name']; |
|
| 510 | - |
|
| 511 | - // Check if there is a location specific filter. |
|
| 512 | - if(has_filter("geodir_custom_field_output_datepicker_loc_{$location}")){ |
|
| 513 | - /** |
|
| 514 | - * Filter the datepicker html by location. |
|
| 515 | - * |
|
| 516 | - * @param string $html The html to filter. |
|
| 517 | - * @param array $cf The custom field array. |
|
| 518 | - * @since 1.6.6 |
|
| 519 | - */ |
|
| 520 | - $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}",$html,$cf); |
|
| 521 | - } |
|
| 522 | - |
|
| 523 | - // Check if there is a custom field specific filter. |
|
| 524 | - if(has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")){ |
|
| 525 | - /** |
|
| 526 | - * Filter the datepicker html by individual custom field. |
|
| 527 | - * |
|
| 528 | - * @param string $html The html to filter. |
|
| 529 | - * @param string $location The location to output the html. |
|
| 530 | - * @param array $cf The custom field array. |
|
| 531 | - * @since 1.6.6 |
|
| 532 | - */ |
|
| 533 | - $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}",$html,$location,$cf); |
|
| 534 | - } |
|
| 535 | - |
|
| 536 | - // Check if there is a custom field key specific filter. |
|
| 537 | - if(has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")){ |
|
| 538 | - /** |
|
| 539 | - * Filter the datepicker html by field type key. |
|
| 540 | - * |
|
| 541 | - * @param string $html The html to filter. |
|
| 542 | - * @param string $location The location to output the html. |
|
| 543 | - * @param array $cf The custom field array. |
|
| 544 | - * @since 1.6.6 |
|
| 545 | - */ |
|
| 546 | - $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 547 | - } |
|
| 548 | - |
|
| 549 | - // If not html then we run the standard output. |
|
| 550 | - if(empty($html)){ |
|
| 551 | - |
|
| 552 | - if ($post->{$cf['htmlvar_name']}): |
|
| 553 | - |
|
| 554 | - $date_format = geodir_default_date_format(); |
|
| 555 | - if ($cf['extra_fields'] != '') { |
|
| 556 | - $date_format = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 557 | - $date_format = $date_format['date_format']; |
|
| 558 | - } |
|
| 559 | - // check if we need to change the format or not |
|
| 560 | - $date_format_len = strlen(str_replace(' ', '', $date_format)); |
|
| 561 | - if($date_format_len>5){// if greater then 4 then it's the old style format. |
|
| 562 | - |
|
| 563 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
| 564 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
| 565 | - |
|
| 566 | - $date_format = str_replace($search, $replace, $date_format); |
|
| 567 | - |
|
| 568 | - $post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y' ) ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format |
|
| 569 | - }else{ |
|
| 570 | - $post_htmlvar_value = $post->{$cf['htmlvar_name']}; |
|
| 571 | - } |
|
| 572 | - |
|
| 573 | - if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") { |
|
| 574 | - $date_format_from = $preview ? $date_format : 'Y-m-d'; |
|
| 575 | - $value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d |
|
| 576 | - //$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value; |
|
| 577 | - //$value = date_i18n($date_format, strtotime($post_htmlvar_value)); |
|
| 578 | - }else{ |
|
| 579 | - return ''; |
|
| 580 | - } |
|
| 581 | - |
|
| 582 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 583 | - |
|
| 584 | - if (strpos($field_icon, 'http') !== false) { |
|
| 585 | - $field_icon_af = ''; |
|
| 586 | - } elseif ($field_icon == '') { |
|
| 587 | - $field_icon_af = '<i class="fa fa-calendar"></i>'; |
|
| 588 | - } else { |
|
| 589 | - $field_icon_af = $field_icon; |
|
| 590 | - $field_icon = ''; |
|
| 591 | - } |
|
| 592 | - |
|
| 593 | - |
|
| 594 | - |
|
| 595 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af; |
|
| 596 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 597 | - $html .= '</span>' . $value . '</div>'; |
|
| 598 | - |
|
| 599 | - endif; |
|
| 600 | - |
|
| 601 | - } |
|
| 602 | - |
|
| 603 | - return $html; |
|
| 499 | + global $preview; |
|
| 500 | + // check we have the post value |
|
| 501 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 502 | + else{ global $post;} |
|
| 503 | + |
|
| 504 | + if(!is_array($cf) && $cf!=''){ |
|
| 505 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 506 | + if(!$cf){return NULL;} |
|
| 507 | + } |
|
| 508 | + |
|
| 509 | + $html_var = $cf['htmlvar_name']; |
|
| 510 | + |
|
| 511 | + // Check if there is a location specific filter. |
|
| 512 | + if(has_filter("geodir_custom_field_output_datepicker_loc_{$location}")){ |
|
| 513 | + /** |
|
| 514 | + * Filter the datepicker html by location. |
|
| 515 | + * |
|
| 516 | + * @param string $html The html to filter. |
|
| 517 | + * @param array $cf The custom field array. |
|
| 518 | + * @since 1.6.6 |
|
| 519 | + */ |
|
| 520 | + $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}",$html,$cf); |
|
| 521 | + } |
|
| 522 | + |
|
| 523 | + // Check if there is a custom field specific filter. |
|
| 524 | + if(has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")){ |
|
| 525 | + /** |
|
| 526 | + * Filter the datepicker html by individual custom field. |
|
| 527 | + * |
|
| 528 | + * @param string $html The html to filter. |
|
| 529 | + * @param string $location The location to output the html. |
|
| 530 | + * @param array $cf The custom field array. |
|
| 531 | + * @since 1.6.6 |
|
| 532 | + */ |
|
| 533 | + $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}",$html,$location,$cf); |
|
| 534 | + } |
|
| 535 | + |
|
| 536 | + // Check if there is a custom field key specific filter. |
|
| 537 | + if(has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")){ |
|
| 538 | + /** |
|
| 539 | + * Filter the datepicker html by field type key. |
|
| 540 | + * |
|
| 541 | + * @param string $html The html to filter. |
|
| 542 | + * @param string $location The location to output the html. |
|
| 543 | + * @param array $cf The custom field array. |
|
| 544 | + * @since 1.6.6 |
|
| 545 | + */ |
|
| 546 | + $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 547 | + } |
|
| 548 | + |
|
| 549 | + // If not html then we run the standard output. |
|
| 550 | + if(empty($html)){ |
|
| 551 | + |
|
| 552 | + if ($post->{$cf['htmlvar_name']}): |
|
| 553 | + |
|
| 554 | + $date_format = geodir_default_date_format(); |
|
| 555 | + if ($cf['extra_fields'] != '') { |
|
| 556 | + $date_format = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 557 | + $date_format = $date_format['date_format']; |
|
| 558 | + } |
|
| 559 | + // check if we need to change the format or not |
|
| 560 | + $date_format_len = strlen(str_replace(' ', '', $date_format)); |
|
| 561 | + if($date_format_len>5){// if greater then 4 then it's the old style format. |
|
| 562 | + |
|
| 563 | + $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
| 564 | + $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
| 565 | + |
|
| 566 | + $date_format = str_replace($search, $replace, $date_format); |
|
| 567 | + |
|
| 568 | + $post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y' ) ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format |
|
| 569 | + }else{ |
|
| 570 | + $post_htmlvar_value = $post->{$cf['htmlvar_name']}; |
|
| 571 | + } |
|
| 572 | + |
|
| 573 | + if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") { |
|
| 574 | + $date_format_from = $preview ? $date_format : 'Y-m-d'; |
|
| 575 | + $value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d |
|
| 576 | + //$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value; |
|
| 577 | + //$value = date_i18n($date_format, strtotime($post_htmlvar_value)); |
|
| 578 | + }else{ |
|
| 579 | + return ''; |
|
| 580 | + } |
|
| 581 | + |
|
| 582 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 583 | + |
|
| 584 | + if (strpos($field_icon, 'http') !== false) { |
|
| 585 | + $field_icon_af = ''; |
|
| 586 | + } elseif ($field_icon == '') { |
|
| 587 | + $field_icon_af = '<i class="fa fa-calendar"></i>'; |
|
| 588 | + } else { |
|
| 589 | + $field_icon_af = $field_icon; |
|
| 590 | + $field_icon = ''; |
|
| 591 | + } |
|
| 592 | + |
|
| 593 | + |
|
| 594 | + |
|
| 595 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af; |
|
| 596 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 597 | + $html .= '</span>' . $value . '</div>'; |
|
| 598 | + |
|
| 599 | + endif; |
|
| 600 | + |
|
| 601 | + } |
|
| 602 | + |
|
| 603 | + return $html; |
|
| 604 | 604 | } |
| 605 | 605 | add_filter('geodir_custom_field_output_datepicker','geodir_cf_datepicker',10,3); |
| 606 | 606 | |
@@ -617,97 +617,97 @@ discard block |
||
| 617 | 617 | */ |
| 618 | 618 | function geodir_cf_text($html,$location,$cf,$p=''){ |
| 619 | 619 | |
| 620 | - // check we have the post value |
|
| 621 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 622 | - else{ global $post;} |
|
| 623 | - |
|
| 624 | - if(!is_array($cf) && $cf!=''){ |
|
| 625 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 626 | - if(!$cf){return NULL;} |
|
| 627 | - } |
|
| 628 | - |
|
| 629 | - $html_var = $cf['htmlvar_name']; |
|
| 630 | - |
|
| 631 | - // Check if there is a location specific filter. |
|
| 632 | - if(has_filter("geodir_custom_field_output_text_loc_{$location}")){ |
|
| 633 | - /** |
|
| 634 | - * Filter the text html by location. |
|
| 635 | - * |
|
| 636 | - * @param string $html The html to filter. |
|
| 637 | - * @param array $cf The custom field array. |
|
| 638 | - * @since 1.6.6 |
|
| 639 | - */ |
|
| 640 | - $html = apply_filters("geodir_custom_field_output_text_loc_{$location}",$html,$cf); |
|
| 641 | - } |
|
| 642 | - |
|
| 643 | - // Check if there is a custom field specific filter. |
|
| 644 | - if(has_filter("geodir_custom_field_output_text_var_{$html_var}")){ |
|
| 645 | - /** |
|
| 646 | - * Filter the text html by individual custom field. |
|
| 647 | - * |
|
| 648 | - * @param string $html The html to filter. |
|
| 649 | - * @param string $location The location to output the html. |
|
| 650 | - * @param array $cf The custom field array. |
|
| 651 | - * @since 1.6.6 |
|
| 652 | - */ |
|
| 653 | - $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}",$html,$location,$cf); |
|
| 654 | - } |
|
| 655 | - |
|
| 656 | - // Check if there is a custom field key specific filter. |
|
| 657 | - if(has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")){ |
|
| 658 | - /** |
|
| 659 | - * Filter the text html by field type key. |
|
| 660 | - * |
|
| 661 | - * @param string $html The html to filter. |
|
| 662 | - * @param string $location The location to output the html. |
|
| 663 | - * @param array $cf The custom field array. |
|
| 664 | - * @since 1.6.6 |
|
| 665 | - */ |
|
| 666 | - $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 667 | - } |
|
| 620 | + // check we have the post value |
|
| 621 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 622 | + else{ global $post;} |
|
| 623 | + |
|
| 624 | + if(!is_array($cf) && $cf!=''){ |
|
| 625 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 626 | + if(!$cf){return NULL;} |
|
| 627 | + } |
|
| 628 | + |
|
| 629 | + $html_var = $cf['htmlvar_name']; |
|
| 630 | + |
|
| 631 | + // Check if there is a location specific filter. |
|
| 632 | + if(has_filter("geodir_custom_field_output_text_loc_{$location}")){ |
|
| 633 | + /** |
|
| 634 | + * Filter the text html by location. |
|
| 635 | + * |
|
| 636 | + * @param string $html The html to filter. |
|
| 637 | + * @param array $cf The custom field array. |
|
| 638 | + * @since 1.6.6 |
|
| 639 | + */ |
|
| 640 | + $html = apply_filters("geodir_custom_field_output_text_loc_{$location}",$html,$cf); |
|
| 641 | + } |
|
| 642 | + |
|
| 643 | + // Check if there is a custom field specific filter. |
|
| 644 | + if(has_filter("geodir_custom_field_output_text_var_{$html_var}")){ |
|
| 645 | + /** |
|
| 646 | + * Filter the text html by individual custom field. |
|
| 647 | + * |
|
| 648 | + * @param string $html The html to filter. |
|
| 649 | + * @param string $location The location to output the html. |
|
| 650 | + * @param array $cf The custom field array. |
|
| 651 | + * @since 1.6.6 |
|
| 652 | + */ |
|
| 653 | + $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}",$html,$location,$cf); |
|
| 654 | + } |
|
| 655 | + |
|
| 656 | + // Check if there is a custom field key specific filter. |
|
| 657 | + if(has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")){ |
|
| 658 | + /** |
|
| 659 | + * Filter the text html by field type key. |
|
| 660 | + * |
|
| 661 | + * @param string $html The html to filter. |
|
| 662 | + * @param string $location The location to output the html. |
|
| 663 | + * @param array $cf The custom field array. |
|
| 664 | + * @since 1.6.6 |
|
| 665 | + */ |
|
| 666 | + $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 667 | + } |
|
| 668 | 668 | |
| 669 | 669 | |
| 670 | 670 | |
| 671 | - // If not html then we run the standard output. |
|
| 672 | - if(empty($html)){ |
|
| 671 | + // If not html then we run the standard output. |
|
| 672 | + if(empty($html)){ |
|
| 673 | 673 | |
| 674 | - if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != '' ): |
|
| 674 | + if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != '' ): |
|
| 675 | 675 | |
| 676 | - $class = ($cf['htmlvar_name'] == 'geodir_timing') ? "geodir-i-time" : "geodir-i-text"; |
|
| 676 | + $class = ($cf['htmlvar_name'] == 'geodir_timing') ? "geodir-i-time" : "geodir-i-text"; |
|
| 677 | 677 | |
| 678 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 679 | - if (strpos($field_icon, 'http') !== false) { |
|
| 680 | - $field_icon_af = ''; |
|
| 681 | - } elseif ($field_icon == '') { |
|
| 682 | - $field_icon_af = ($cf['htmlvar_name'] == 'geodir_timing') ? '<i class="fa fa-clock-o"></i>' : ""; |
|
| 683 | - } else { |
|
| 684 | - $field_icon_af = $field_icon; |
|
| 685 | - $field_icon = ''; |
|
| 686 | - } |
|
| 678 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 679 | + if (strpos($field_icon, 'http') !== false) { |
|
| 680 | + $field_icon_af = ''; |
|
| 681 | + } elseif ($field_icon == '') { |
|
| 682 | + $field_icon_af = ($cf['htmlvar_name'] == 'geodir_timing') ? '<i class="fa fa-clock-o"></i>' : ""; |
|
| 683 | + } else { |
|
| 684 | + $field_icon_af = $field_icon; |
|
| 685 | + $field_icon = ''; |
|
| 686 | + } |
|
| 687 | 687 | |
| 688 | 688 | |
| 689 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="'.$class.'" style="' . $field_icon . '">' . $field_icon_af; |
|
| 690 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 691 | - $html .= '</span>'; |
|
| 689 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="'.$class.'" style="' . $field_icon . '">' . $field_icon_af; |
|
| 690 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 691 | + $html .= '</span>'; |
|
| 692 | 692 | |
| 693 | - $value = $post->{$cf['htmlvar_name']}; |
|
| 694 | - if(isset($cf['data_type']) && ($cf['data_type']=='INT' || $cf['data_type']=='FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']){ |
|
| 695 | - $extra_fields = stripslashes_deep(maybe_unserialize($cf['extra_fields'])); |
|
| 696 | - if(isset($extra_fields['is_price']) && $extra_fields['is_price']){ |
|
| 697 | - if(!ceil($value) > 0){return '';}// dont output blank prices |
|
| 698 | - $value = geodir_currency_format_number($value,$cf); |
|
| 699 | - } |
|
| 700 | - } |
|
| 693 | + $value = $post->{$cf['htmlvar_name']}; |
|
| 694 | + if(isset($cf['data_type']) && ($cf['data_type']=='INT' || $cf['data_type']=='FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']){ |
|
| 695 | + $extra_fields = stripslashes_deep(maybe_unserialize($cf['extra_fields'])); |
|
| 696 | + if(isset($extra_fields['is_price']) && $extra_fields['is_price']){ |
|
| 697 | + if(!ceil($value) > 0){return '';}// dont output blank prices |
|
| 698 | + $value = geodir_currency_format_number($value,$cf); |
|
| 699 | + } |
|
| 700 | + } |
|
| 701 | 701 | |
| 702 | 702 | |
| 703 | - $html .= $value; |
|
| 704 | - $html .= '</div>'; |
|
| 703 | + $html .= $value; |
|
| 704 | + $html .= '</div>'; |
|
| 705 | 705 | |
| 706 | - endif; |
|
| 706 | + endif; |
|
| 707 | 707 | |
| 708 | - } |
|
| 708 | + } |
|
| 709 | 709 | |
| 710 | - return $html; |
|
| 710 | + return $html; |
|
| 711 | 711 | } |
| 712 | 712 | add_filter('geodir_custom_field_output_text','geodir_cf_text',10,3); |
| 713 | 713 | |
@@ -724,98 +724,98 @@ discard block |
||
| 724 | 724 | */ |
| 725 | 725 | function geodir_cf_radio($html,$location,$cf,$p=''){ |
| 726 | 726 | |
| 727 | - // check we have the post value |
|
| 728 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 729 | - else{ global $post;} |
|
| 730 | - |
|
| 731 | - if(!is_array($cf) && $cf!=''){ |
|
| 732 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 733 | - if(!$cf){return NULL;} |
|
| 734 | - } |
|
| 735 | - |
|
| 736 | - $html_var = $cf['htmlvar_name']; |
|
| 737 | - |
|
| 738 | - // Check if there is a location specific filter. |
|
| 739 | - if(has_filter("geodir_custom_field_output_radio_loc_{$location}")){ |
|
| 740 | - /** |
|
| 741 | - * Filter the radio html by location. |
|
| 742 | - * |
|
| 743 | - * @param string $html The html to filter. |
|
| 744 | - * @param array $cf The custom field array. |
|
| 745 | - * @since 1.6.6 |
|
| 746 | - */ |
|
| 747 | - $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}",$html,$cf); |
|
| 748 | - } |
|
| 749 | - |
|
| 750 | - // Check if there is a custom field specific filter. |
|
| 751 | - if(has_filter("geodir_custom_field_output_radio_var_{$html_var}")){ |
|
| 752 | - /** |
|
| 753 | - * Filter the radio html by individual custom field. |
|
| 754 | - * |
|
| 755 | - * @param string $html The html to filter. |
|
| 756 | - * @param string $location The location to output the html. |
|
| 757 | - * @param array $cf The custom field array. |
|
| 758 | - * @since 1.6.6 |
|
| 759 | - */ |
|
| 760 | - $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}",$html,$location,$cf); |
|
| 761 | - } |
|
| 762 | - |
|
| 763 | - // Check if there is a custom field key specific filter. |
|
| 764 | - if(has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")){ |
|
| 765 | - /** |
|
| 766 | - * Filter the radio html by field type key. |
|
| 767 | - * |
|
| 768 | - * @param string $html The html to filter. |
|
| 769 | - * @param string $location The location to output the html. |
|
| 770 | - * @param array $cf The custom field array. |
|
| 771 | - * @since 1.6.6 |
|
| 772 | - */ |
|
| 773 | - $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 774 | - } |
|
| 775 | - |
|
| 776 | - // If not html then we run the standard output. |
|
| 777 | - if(empty($html)){ |
|
| 778 | - |
|
| 779 | - $html_val = isset($post->{$cf['htmlvar_name']}) ? __($post->{$cf['htmlvar_name']}, 'geodirectory') : ''; |
|
| 780 | - if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''): |
|
| 781 | - |
|
| 782 | - if ($post->{$cf['htmlvar_name']} == 'f' || $post->{$cf['htmlvar_name']} == '0') { |
|
| 783 | - $html_val = __('No', 'geodirectory'); |
|
| 784 | - } else if ($post->{$cf['htmlvar_name']} == 't' || $post->{$cf['htmlvar_name']} == '1') { |
|
| 785 | - $html_val = __('Yes', 'geodirectory'); |
|
| 786 | - } else { |
|
| 787 | - if (!empty($cf['option_values'])) { |
|
| 788 | - $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 789 | - |
|
| 790 | - if (!empty($cf_option_values)) { |
|
| 791 | - foreach ($cf_option_values as $cf_option_value) { |
|
| 792 | - if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 793 | - $html_val = $cf_option_value['label']; |
|
| 794 | - } |
|
| 795 | - } |
|
| 796 | - } |
|
| 797 | - } |
|
| 798 | - } |
|
| 799 | - |
|
| 800 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 801 | - if (strpos($field_icon, 'http') !== false) { |
|
| 802 | - $field_icon_af = ''; |
|
| 803 | - } elseif ($field_icon == '') { |
|
| 804 | - $field_icon_af = ''; |
|
| 805 | - } else { |
|
| 806 | - $field_icon_af = $field_icon; |
|
| 807 | - $field_icon = ''; |
|
| 808 | - } |
|
| 809 | - |
|
| 810 | - |
|
| 811 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af; |
|
| 812 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 813 | - $html .= '</span>' . $html_val . '</div>'; |
|
| 814 | - endif; |
|
| 815 | - |
|
| 816 | - } |
|
| 817 | - |
|
| 818 | - return $html; |
|
| 727 | + // check we have the post value |
|
| 728 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 729 | + else{ global $post;} |
|
| 730 | + |
|
| 731 | + if(!is_array($cf) && $cf!=''){ |
|
| 732 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 733 | + if(!$cf){return NULL;} |
|
| 734 | + } |
|
| 735 | + |
|
| 736 | + $html_var = $cf['htmlvar_name']; |
|
| 737 | + |
|
| 738 | + // Check if there is a location specific filter. |
|
| 739 | + if(has_filter("geodir_custom_field_output_radio_loc_{$location}")){ |
|
| 740 | + /** |
|
| 741 | + * Filter the radio html by location. |
|
| 742 | + * |
|
| 743 | + * @param string $html The html to filter. |
|
| 744 | + * @param array $cf The custom field array. |
|
| 745 | + * @since 1.6.6 |
|
| 746 | + */ |
|
| 747 | + $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}",$html,$cf); |
|
| 748 | + } |
|
| 749 | + |
|
| 750 | + // Check if there is a custom field specific filter. |
|
| 751 | + if(has_filter("geodir_custom_field_output_radio_var_{$html_var}")){ |
|
| 752 | + /** |
|
| 753 | + * Filter the radio html by individual custom field. |
|
| 754 | + * |
|
| 755 | + * @param string $html The html to filter. |
|
| 756 | + * @param string $location The location to output the html. |
|
| 757 | + * @param array $cf The custom field array. |
|
| 758 | + * @since 1.6.6 |
|
| 759 | + */ |
|
| 760 | + $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}",$html,$location,$cf); |
|
| 761 | + } |
|
| 762 | + |
|
| 763 | + // Check if there is a custom field key specific filter. |
|
| 764 | + if(has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")){ |
|
| 765 | + /** |
|
| 766 | + * Filter the radio html by field type key. |
|
| 767 | + * |
|
| 768 | + * @param string $html The html to filter. |
|
| 769 | + * @param string $location The location to output the html. |
|
| 770 | + * @param array $cf The custom field array. |
|
| 771 | + * @since 1.6.6 |
|
| 772 | + */ |
|
| 773 | + $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 774 | + } |
|
| 775 | + |
|
| 776 | + // If not html then we run the standard output. |
|
| 777 | + if(empty($html)){ |
|
| 778 | + |
|
| 779 | + $html_val = isset($post->{$cf['htmlvar_name']}) ? __($post->{$cf['htmlvar_name']}, 'geodirectory') : ''; |
|
| 780 | + if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''): |
|
| 781 | + |
|
| 782 | + if ($post->{$cf['htmlvar_name']} == 'f' || $post->{$cf['htmlvar_name']} == '0') { |
|
| 783 | + $html_val = __('No', 'geodirectory'); |
|
| 784 | + } else if ($post->{$cf['htmlvar_name']} == 't' || $post->{$cf['htmlvar_name']} == '1') { |
|
| 785 | + $html_val = __('Yes', 'geodirectory'); |
|
| 786 | + } else { |
|
| 787 | + if (!empty($cf['option_values'])) { |
|
| 788 | + $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 789 | + |
|
| 790 | + if (!empty($cf_option_values)) { |
|
| 791 | + foreach ($cf_option_values as $cf_option_value) { |
|
| 792 | + if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 793 | + $html_val = $cf_option_value['label']; |
|
| 794 | + } |
|
| 795 | + } |
|
| 796 | + } |
|
| 797 | + } |
|
| 798 | + } |
|
| 799 | + |
|
| 800 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 801 | + if (strpos($field_icon, 'http') !== false) { |
|
| 802 | + $field_icon_af = ''; |
|
| 803 | + } elseif ($field_icon == '') { |
|
| 804 | + $field_icon_af = ''; |
|
| 805 | + } else { |
|
| 806 | + $field_icon_af = $field_icon; |
|
| 807 | + $field_icon = ''; |
|
| 808 | + } |
|
| 809 | + |
|
| 810 | + |
|
| 811 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af; |
|
| 812 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 813 | + $html .= '</span>' . $html_val . '</div>'; |
|
| 814 | + endif; |
|
| 815 | + |
|
| 816 | + } |
|
| 817 | + |
|
| 818 | + return $html; |
|
| 819 | 819 | } |
| 820 | 820 | add_filter('geodir_custom_field_output_radio','geodir_cf_radio',10,3); |
| 821 | 821 | |
@@ -832,92 +832,92 @@ discard block |
||
| 832 | 832 | */ |
| 833 | 833 | function geodir_cf_select($html,$location,$cf,$p=''){ |
| 834 | 834 | |
| 835 | - // check we have the post value |
|
| 836 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 837 | - else{ global $post;} |
|
| 838 | - |
|
| 839 | - if(!is_array($cf) && $cf!=''){ |
|
| 840 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 841 | - if(!$cf){return NULL;} |
|
| 842 | - } |
|
| 843 | - |
|
| 844 | - $html_var = $cf['htmlvar_name']; |
|
| 845 | - |
|
| 846 | - // Check if there is a location specific filter. |
|
| 847 | - if(has_filter("geodir_custom_field_output_select_loc_{$location}")){ |
|
| 848 | - /** |
|
| 849 | - * Filter the select html by location. |
|
| 850 | - * |
|
| 851 | - * @param string $html The html to filter. |
|
| 852 | - * @param array $cf The custom field array. |
|
| 853 | - * @since 1.6.6 |
|
| 854 | - */ |
|
| 855 | - $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf); |
|
| 856 | - } |
|
| 857 | - |
|
| 858 | - // Check if there is a custom field specific filter. |
|
| 859 | - if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){ |
|
| 860 | - /** |
|
| 861 | - * Filter the select html by individual custom field. |
|
| 862 | - * |
|
| 863 | - * @param string $html The html to filter. |
|
| 864 | - * @param string $location The location to output the html. |
|
| 865 | - * @param array $cf The custom field array. |
|
| 866 | - * @since 1.6.6 |
|
| 867 | - */ |
|
| 868 | - $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf); |
|
| 869 | - } |
|
| 870 | - |
|
| 871 | - // Check if there is a custom field key specific filter. |
|
| 872 | - if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){ |
|
| 873 | - /** |
|
| 874 | - * Filter the select html by field type key. |
|
| 875 | - * |
|
| 876 | - * @param string $html The html to filter. |
|
| 877 | - * @param string $location The location to output the html. |
|
| 878 | - * @param array $cf The custom field array. |
|
| 879 | - * @since 1.6.6 |
|
| 880 | - */ |
|
| 881 | - $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 882 | - } |
|
| 883 | - |
|
| 884 | - // If not html then we run the standard output. |
|
| 885 | - if(empty($html)){ |
|
| 886 | - |
|
| 887 | - if ($post->{$cf['htmlvar_name']}): |
|
| 888 | - $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 889 | - |
|
| 890 | - if (!empty($cf['option_values'])) { |
|
| 891 | - $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 892 | - |
|
| 893 | - if (!empty($cf_option_values)) { |
|
| 894 | - foreach ($cf_option_values as $cf_option_value) { |
|
| 895 | - if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 896 | - //$field_value = $cf_option_value['label']; // no longer needed here. |
|
| 897 | - } |
|
| 898 | - } |
|
| 899 | - } |
|
| 900 | - } |
|
| 901 | - |
|
| 902 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 903 | - if (strpos($field_icon, 'http') !== false) { |
|
| 904 | - $field_icon_af = ''; |
|
| 905 | - } elseif ($field_icon == '') { |
|
| 906 | - $field_icon_af = ''; |
|
| 907 | - } else { |
|
| 908 | - $field_icon_af = $field_icon; |
|
| 909 | - $field_icon = ''; |
|
| 910 | - } |
|
| 911 | - |
|
| 912 | - |
|
| 913 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 914 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 915 | - $html .= '</span>' . $field_value . '</div>'; |
|
| 916 | - endif; |
|
| 917 | - |
|
| 918 | - } |
|
| 919 | - |
|
| 920 | - return $html; |
|
| 835 | + // check we have the post value |
|
| 836 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 837 | + else{ global $post;} |
|
| 838 | + |
|
| 839 | + if(!is_array($cf) && $cf!=''){ |
|
| 840 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 841 | + if(!$cf){return NULL;} |
|
| 842 | + } |
|
| 843 | + |
|
| 844 | + $html_var = $cf['htmlvar_name']; |
|
| 845 | + |
|
| 846 | + // Check if there is a location specific filter. |
|
| 847 | + if(has_filter("geodir_custom_field_output_select_loc_{$location}")){ |
|
| 848 | + /** |
|
| 849 | + * Filter the select html by location. |
|
| 850 | + * |
|
| 851 | + * @param string $html The html to filter. |
|
| 852 | + * @param array $cf The custom field array. |
|
| 853 | + * @since 1.6.6 |
|
| 854 | + */ |
|
| 855 | + $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf); |
|
| 856 | + } |
|
| 857 | + |
|
| 858 | + // Check if there is a custom field specific filter. |
|
| 859 | + if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){ |
|
| 860 | + /** |
|
| 861 | + * Filter the select html by individual custom field. |
|
| 862 | + * |
|
| 863 | + * @param string $html The html to filter. |
|
| 864 | + * @param string $location The location to output the html. |
|
| 865 | + * @param array $cf The custom field array. |
|
| 866 | + * @since 1.6.6 |
|
| 867 | + */ |
|
| 868 | + $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf); |
|
| 869 | + } |
|
| 870 | + |
|
| 871 | + // Check if there is a custom field key specific filter. |
|
| 872 | + if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){ |
|
| 873 | + /** |
|
| 874 | + * Filter the select html by field type key. |
|
| 875 | + * |
|
| 876 | + * @param string $html The html to filter. |
|
| 877 | + * @param string $location The location to output the html. |
|
| 878 | + * @param array $cf The custom field array. |
|
| 879 | + * @since 1.6.6 |
|
| 880 | + */ |
|
| 881 | + $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 882 | + } |
|
| 883 | + |
|
| 884 | + // If not html then we run the standard output. |
|
| 885 | + if(empty($html)){ |
|
| 886 | + |
|
| 887 | + if ($post->{$cf['htmlvar_name']}): |
|
| 888 | + $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 889 | + |
|
| 890 | + if (!empty($cf['option_values'])) { |
|
| 891 | + $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 892 | + |
|
| 893 | + if (!empty($cf_option_values)) { |
|
| 894 | + foreach ($cf_option_values as $cf_option_value) { |
|
| 895 | + if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 896 | + //$field_value = $cf_option_value['label']; // no longer needed here. |
|
| 897 | + } |
|
| 898 | + } |
|
| 899 | + } |
|
| 900 | + } |
|
| 901 | + |
|
| 902 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 903 | + if (strpos($field_icon, 'http') !== false) { |
|
| 904 | + $field_icon_af = ''; |
|
| 905 | + } elseif ($field_icon == '') { |
|
| 906 | + $field_icon_af = ''; |
|
| 907 | + } else { |
|
| 908 | + $field_icon_af = $field_icon; |
|
| 909 | + $field_icon = ''; |
|
| 910 | + } |
|
| 911 | + |
|
| 912 | + |
|
| 913 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 914 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 915 | + $html .= '</span>' . $field_value . '</div>'; |
|
| 916 | + endif; |
|
| 917 | + |
|
| 918 | + } |
|
| 919 | + |
|
| 920 | + return $html; |
|
| 921 | 921 | } |
| 922 | 922 | add_filter('geodir_custom_field_output_select','geodir_cf_select',10,3); |
| 923 | 923 | |
@@ -934,117 +934,117 @@ discard block |
||
| 934 | 934 | */ |
| 935 | 935 | function geodir_cf_multiselect($html,$location,$cf,$p=''){ |
| 936 | 936 | |
| 937 | - // check we have the post value |
|
| 938 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 939 | - else{ global $post;} |
|
| 940 | - |
|
| 941 | - if(!is_array($cf) && $cf!=''){ |
|
| 942 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 943 | - if(!$cf){return NULL;} |
|
| 944 | - } |
|
| 945 | - |
|
| 946 | - $html_var = $cf['htmlvar_name']; |
|
| 947 | - |
|
| 948 | - // Check if there is a location specific filter. |
|
| 949 | - if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){ |
|
| 950 | - /** |
|
| 951 | - * Filter the multiselect html by location. |
|
| 952 | - * |
|
| 953 | - * @param string $html The html to filter. |
|
| 954 | - * @param array $cf The custom field array. |
|
| 955 | - * @since 1.6.6 |
|
| 956 | - */ |
|
| 957 | - $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf); |
|
| 958 | - } |
|
| 959 | - |
|
| 960 | - // Check if there is a custom field specific filter. |
|
| 961 | - if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){ |
|
| 962 | - /** |
|
| 963 | - * Filter the multiselect html by individual custom field. |
|
| 964 | - * |
|
| 965 | - * @param string $html The html to filter. |
|
| 966 | - * @param string $location The location to output the html. |
|
| 967 | - * @param array $cf The custom field array. |
|
| 968 | - * @since 1.6.6 |
|
| 969 | - */ |
|
| 970 | - $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf); |
|
| 971 | - } |
|
| 972 | - |
|
| 973 | - // Check if there is a custom field key specific filter. |
|
| 974 | - if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){ |
|
| 975 | - /** |
|
| 976 | - * Filter the multiselect html by field type key. |
|
| 977 | - * |
|
| 978 | - * @param string $html The html to filter. |
|
| 979 | - * @param string $location The location to output the html. |
|
| 980 | - * @param array $cf The custom field array. |
|
| 981 | - * @since 1.6.6 |
|
| 982 | - */ |
|
| 983 | - $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 984 | - } |
|
| 985 | - |
|
| 986 | - // If not html then we run the standard output. |
|
| 987 | - if(empty($html)){ |
|
| 988 | - |
|
| 989 | - |
|
| 990 | - if (!empty($post->{$cf['htmlvar_name']})): |
|
| 991 | - |
|
| 992 | - if (is_array($post->{$cf['htmlvar_name']})) { |
|
| 993 | - $post->{$cf['htmlvar_name']} = implode(', ', $post->{$cf['htmlvar_name']}); |
|
| 994 | - } |
|
| 995 | - |
|
| 996 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 997 | - if (strpos($field_icon, 'http') !== false) { |
|
| 998 | - $field_icon_af = ''; |
|
| 999 | - } elseif ($field_icon == '') { |
|
| 1000 | - $field_icon_af = ''; |
|
| 1001 | - } else { |
|
| 1002 | - $field_icon_af = $field_icon; |
|
| 1003 | - $field_icon = ''; |
|
| 1004 | - } |
|
| 1005 | - |
|
| 1006 | - $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ",")); |
|
| 1007 | - |
|
| 1008 | - if(is_array($field_values)){ |
|
| 1009 | - $field_values = array_map('trim', $field_values); |
|
| 1010 | - } |
|
| 1011 | - |
|
| 1012 | - $option_values = array(); |
|
| 1013 | - if (!empty($cf['option_values'])) { |
|
| 1014 | - $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 1015 | - |
|
| 1016 | - if (!empty($cf_option_values)) { |
|
| 1017 | - foreach ($cf_option_values as $cf_option_value) { |
|
| 1018 | - if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) { |
|
| 1019 | - $option_values[] = $cf_option_value['label']; |
|
| 1020 | - } |
|
| 1021 | - } |
|
| 1022 | - } |
|
| 1023 | - } |
|
| 1024 | - |
|
| 1025 | - |
|
| 1026 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1027 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1028 | - $html .= '</span>'; |
|
| 1029 | - |
|
| 1030 | - if (count($option_values) > 1) { |
|
| 1031 | - $html .= '<ul>'; |
|
| 1032 | - |
|
| 1033 | - foreach ($option_values as $val) { |
|
| 1034 | - $html .= '<li>' . $val . '</li>'; |
|
| 1035 | - } |
|
| 1036 | - |
|
| 1037 | - $html .= '</ul>'; |
|
| 1038 | - } else { |
|
| 1039 | - $html .= __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 1040 | - } |
|
| 1041 | - |
|
| 1042 | - $html .= '</div>'; |
|
| 1043 | - endif; |
|
| 1044 | - |
|
| 1045 | - } |
|
| 1046 | - |
|
| 1047 | - return $html; |
|
| 937 | + // check we have the post value |
|
| 938 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 939 | + else{ global $post;} |
|
| 940 | + |
|
| 941 | + if(!is_array($cf) && $cf!=''){ |
|
| 942 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 943 | + if(!$cf){return NULL;} |
|
| 944 | + } |
|
| 945 | + |
|
| 946 | + $html_var = $cf['htmlvar_name']; |
|
| 947 | + |
|
| 948 | + // Check if there is a location specific filter. |
|
| 949 | + if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){ |
|
| 950 | + /** |
|
| 951 | + * Filter the multiselect html by location. |
|
| 952 | + * |
|
| 953 | + * @param string $html The html to filter. |
|
| 954 | + * @param array $cf The custom field array. |
|
| 955 | + * @since 1.6.6 |
|
| 956 | + */ |
|
| 957 | + $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf); |
|
| 958 | + } |
|
| 959 | + |
|
| 960 | + // Check if there is a custom field specific filter. |
|
| 961 | + if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){ |
|
| 962 | + /** |
|
| 963 | + * Filter the multiselect html by individual custom field. |
|
| 964 | + * |
|
| 965 | + * @param string $html The html to filter. |
|
| 966 | + * @param string $location The location to output the html. |
|
| 967 | + * @param array $cf The custom field array. |
|
| 968 | + * @since 1.6.6 |
|
| 969 | + */ |
|
| 970 | + $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf); |
|
| 971 | + } |
|
| 972 | + |
|
| 973 | + // Check if there is a custom field key specific filter. |
|
| 974 | + if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){ |
|
| 975 | + /** |
|
| 976 | + * Filter the multiselect html by field type key. |
|
| 977 | + * |
|
| 978 | + * @param string $html The html to filter. |
|
| 979 | + * @param string $location The location to output the html. |
|
| 980 | + * @param array $cf The custom field array. |
|
| 981 | + * @since 1.6.6 |
|
| 982 | + */ |
|
| 983 | + $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 984 | + } |
|
| 985 | + |
|
| 986 | + // If not html then we run the standard output. |
|
| 987 | + if(empty($html)){ |
|
| 988 | + |
|
| 989 | + |
|
| 990 | + if (!empty($post->{$cf['htmlvar_name']})): |
|
| 991 | + |
|
| 992 | + if (is_array($post->{$cf['htmlvar_name']})) { |
|
| 993 | + $post->{$cf['htmlvar_name']} = implode(', ', $post->{$cf['htmlvar_name']}); |
|
| 994 | + } |
|
| 995 | + |
|
| 996 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 997 | + if (strpos($field_icon, 'http') !== false) { |
|
| 998 | + $field_icon_af = ''; |
|
| 999 | + } elseif ($field_icon == '') { |
|
| 1000 | + $field_icon_af = ''; |
|
| 1001 | + } else { |
|
| 1002 | + $field_icon_af = $field_icon; |
|
| 1003 | + $field_icon = ''; |
|
| 1004 | + } |
|
| 1005 | + |
|
| 1006 | + $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ",")); |
|
| 1007 | + |
|
| 1008 | + if(is_array($field_values)){ |
|
| 1009 | + $field_values = array_map('trim', $field_values); |
|
| 1010 | + } |
|
| 1011 | + |
|
| 1012 | + $option_values = array(); |
|
| 1013 | + if (!empty($cf['option_values'])) { |
|
| 1014 | + $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 1015 | + |
|
| 1016 | + if (!empty($cf_option_values)) { |
|
| 1017 | + foreach ($cf_option_values as $cf_option_value) { |
|
| 1018 | + if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) { |
|
| 1019 | + $option_values[] = $cf_option_value['label']; |
|
| 1020 | + } |
|
| 1021 | + } |
|
| 1022 | + } |
|
| 1023 | + } |
|
| 1024 | + |
|
| 1025 | + |
|
| 1026 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1027 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1028 | + $html .= '</span>'; |
|
| 1029 | + |
|
| 1030 | + if (count($option_values) > 1) { |
|
| 1031 | + $html .= '<ul>'; |
|
| 1032 | + |
|
| 1033 | + foreach ($option_values as $val) { |
|
| 1034 | + $html .= '<li>' . $val . '</li>'; |
|
| 1035 | + } |
|
| 1036 | + |
|
| 1037 | + $html .= '</ul>'; |
|
| 1038 | + } else { |
|
| 1039 | + $html .= __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 1040 | + } |
|
| 1041 | + |
|
| 1042 | + $html .= '</div>'; |
|
| 1043 | + endif; |
|
| 1044 | + |
|
| 1045 | + } |
|
| 1046 | + |
|
| 1047 | + return $html; |
|
| 1048 | 1048 | } |
| 1049 | 1049 | add_filter('geodir_custom_field_output_multiselect','geodir_cf_multiselect',10,3); |
| 1050 | 1050 | |
@@ -1061,153 +1061,153 @@ discard block |
||
| 1061 | 1061 | */ |
| 1062 | 1062 | function geodir_cf_email($html,$location,$cf,$p=''){ |
| 1063 | 1063 | |
| 1064 | - // check we have the post value |
|
| 1065 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1066 | - else{ global $post;} |
|
| 1067 | - |
|
| 1068 | - if(!is_array($cf) && $cf!=''){ |
|
| 1069 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1070 | - if(!$cf){return NULL;} |
|
| 1071 | - } |
|
| 1072 | - |
|
| 1073 | - $html_var = $cf['htmlvar_name']; |
|
| 1074 | - |
|
| 1075 | - // Check if there is a location specific filter. |
|
| 1076 | - if(has_filter("geodir_custom_field_output_email_loc_{$location}")){ |
|
| 1077 | - /** |
|
| 1078 | - * Filter the email html by location. |
|
| 1079 | - * |
|
| 1080 | - * @param string $html The html to filter. |
|
| 1081 | - * @param array $cf The custom field array. |
|
| 1082 | - * @since 1.6.6 |
|
| 1083 | - */ |
|
| 1084 | - $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf); |
|
| 1085 | - } |
|
| 1086 | - |
|
| 1087 | - // Check if there is a custom field specific filter. |
|
| 1088 | - if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){ |
|
| 1089 | - /** |
|
| 1090 | - * Filter the email html by individual custom field. |
|
| 1091 | - * |
|
| 1092 | - * @param string $html The html to filter. |
|
| 1093 | - * @param string $location The location to output the html. |
|
| 1094 | - * @param array $cf The custom field array. |
|
| 1095 | - * @since 1.6.6 |
|
| 1096 | - */ |
|
| 1097 | - $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf); |
|
| 1098 | - } |
|
| 1099 | - |
|
| 1100 | - // Check if there is a custom field key specific filter. |
|
| 1101 | - if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){ |
|
| 1102 | - /** |
|
| 1103 | - * Filter the email html by field type key. |
|
| 1104 | - * |
|
| 1105 | - * @param string $html The html to filter. |
|
| 1106 | - * @param string $location The location to output the html. |
|
| 1107 | - * @param array $cf The custom field array. |
|
| 1108 | - * @since 1.6.6 |
|
| 1109 | - */ |
|
| 1110 | - $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1111 | - } |
|
| 1112 | - |
|
| 1113 | - // If not html then we run the standard output. |
|
| 1114 | - if(empty($html)){ |
|
| 1115 | - |
|
| 1116 | - global $preview; |
|
| 1117 | - if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) { |
|
| 1118 | - return ''; // Remove Send Enquiry | Send To Friend from listings page |
|
| 1119 | - } |
|
| 1120 | - |
|
| 1121 | - $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1122 | - |
|
| 1123 | - if ($cf['htmlvar_name'] == 'geodir_email' && ((isset($package_info['sendtofriend']) && $package_info['sendtofriend']) || $post->{$cf['htmlvar_name']})) { |
|
| 1124 | - global $send_to_friend; |
|
| 1125 | - $send_to_friend = true; |
|
| 1126 | - $b_send_inquiry = ''; |
|
| 1127 | - $b_sendtofriend = ''; |
|
| 1128 | - |
|
| 1129 | - $html = ''; |
|
| 1130 | - if (!$preview) { |
|
| 1131 | - $b_send_inquiry = 'b_send_inquiry'; |
|
| 1132 | - $b_sendtofriend = 'b_sendtofriend'; |
|
| 1133 | - $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1134 | - } |
|
| 1135 | - |
|
| 1136 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1137 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1138 | - $field_icon_af = ''; |
|
| 1139 | - } elseif ($field_icon == '') { |
|
| 1140 | - $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1141 | - } else { |
|
| 1142 | - $field_icon_af = $field_icon; |
|
| 1143 | - $field_icon = ''; |
|
| 1144 | - } |
|
| 1145 | - |
|
| 1146 | - $html .= '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1147 | - $seperator = ''; |
|
| 1148 | - if ($post->{$cf['htmlvar_name']}) { |
|
| 1149 | - $html .= '<a href="javascript:void(0);" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>'; |
|
| 1150 | - $seperator = ' | '; |
|
| 1151 | - } |
|
| 1152 | - |
|
| 1153 | - if (isset($package_info['sendtofriend']) && $package_info['sendtofriend']) { |
|
| 1154 | - $html .= $seperator . '<a href="javascript:void(0);" class="' . $b_sendtofriend . '">' . SEND_TO_FRIEND . '</a>'; |
|
| 1155 | - } |
|
| 1156 | - |
|
| 1157 | - $html .= '</span></div>'; |
|
| 1158 | - |
|
| 1159 | - |
|
| 1160 | - if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') { |
|
| 1161 | - $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>'; |
|
| 1162 | - } elseif (isset($_REQUEST['sendtofrnd']) && $_REQUEST['sendtofrnd'] == 'success') { |
|
| 1163 | - $html .= '<p class="sucess_msg">' . SEND_FRIEND_SUCCESS . '</p>'; |
|
| 1164 | - } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') { |
|
| 1165 | - $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>'; |
|
| 1166 | - } |
|
| 1167 | - |
|
| 1168 | - /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/ |
|
| 1169 | - |
|
| 1170 | - } else { |
|
| 1171 | - |
|
| 1172 | - if ($post->{$cf['htmlvar_name']}) { |
|
| 1173 | - |
|
| 1174 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1175 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1176 | - $field_icon_af = ''; |
|
| 1177 | - } elseif ($field_icon == '') { |
|
| 1178 | - $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1179 | - } else { |
|
| 1180 | - $field_icon_af = $field_icon; |
|
| 1181 | - $field_icon = ''; |
|
| 1182 | - } |
|
| 1183 | - |
|
| 1184 | - |
|
| 1185 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1186 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1187 | - $html .= '</span><span class="geodir-email-address-output">'; |
|
| 1188 | - $email = $post->{$cf['htmlvar_name']} ; |
|
| 1189 | - if($e_split = explode('@',$email)){ |
|
| 1190 | - /** |
|
| 1191 | - * Filter email custom field name output. |
|
| 1192 | - * |
|
| 1193 | - * @since 1.5.3 |
|
| 1194 | - * |
|
| 1195 | - * @param string $email The email string being output. |
|
| 1196 | - * @param array $cf Custom field variables array. |
|
| 1197 | - */ |
|
| 1198 | - $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
|
| 1199 | - $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1200 | - }else{ |
|
| 1201 | - $html .= $email; |
|
| 1202 | - } |
|
| 1203 | - $html .= '</span></div>'; |
|
| 1204 | - } |
|
| 1205 | - |
|
| 1206 | - } |
|
| 1207 | - |
|
| 1208 | - } |
|
| 1209 | - |
|
| 1210 | - return $html; |
|
| 1064 | + // check we have the post value |
|
| 1065 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1066 | + else{ global $post;} |
|
| 1067 | + |
|
| 1068 | + if(!is_array($cf) && $cf!=''){ |
|
| 1069 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1070 | + if(!$cf){return NULL;} |
|
| 1071 | + } |
|
| 1072 | + |
|
| 1073 | + $html_var = $cf['htmlvar_name']; |
|
| 1074 | + |
|
| 1075 | + // Check if there is a location specific filter. |
|
| 1076 | + if(has_filter("geodir_custom_field_output_email_loc_{$location}")){ |
|
| 1077 | + /** |
|
| 1078 | + * Filter the email html by location. |
|
| 1079 | + * |
|
| 1080 | + * @param string $html The html to filter. |
|
| 1081 | + * @param array $cf The custom field array. |
|
| 1082 | + * @since 1.6.6 |
|
| 1083 | + */ |
|
| 1084 | + $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf); |
|
| 1085 | + } |
|
| 1086 | + |
|
| 1087 | + // Check if there is a custom field specific filter. |
|
| 1088 | + if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){ |
|
| 1089 | + /** |
|
| 1090 | + * Filter the email html by individual custom field. |
|
| 1091 | + * |
|
| 1092 | + * @param string $html The html to filter. |
|
| 1093 | + * @param string $location The location to output the html. |
|
| 1094 | + * @param array $cf The custom field array. |
|
| 1095 | + * @since 1.6.6 |
|
| 1096 | + */ |
|
| 1097 | + $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf); |
|
| 1098 | + } |
|
| 1099 | + |
|
| 1100 | + // Check if there is a custom field key specific filter. |
|
| 1101 | + if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){ |
|
| 1102 | + /** |
|
| 1103 | + * Filter the email html by field type key. |
|
| 1104 | + * |
|
| 1105 | + * @param string $html The html to filter. |
|
| 1106 | + * @param string $location The location to output the html. |
|
| 1107 | + * @param array $cf The custom field array. |
|
| 1108 | + * @since 1.6.6 |
|
| 1109 | + */ |
|
| 1110 | + $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1111 | + } |
|
| 1112 | + |
|
| 1113 | + // If not html then we run the standard output. |
|
| 1114 | + if(empty($html)){ |
|
| 1115 | + |
|
| 1116 | + global $preview; |
|
| 1117 | + if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) { |
|
| 1118 | + return ''; // Remove Send Enquiry | Send To Friend from listings page |
|
| 1119 | + } |
|
| 1120 | + |
|
| 1121 | + $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1122 | + |
|
| 1123 | + if ($cf['htmlvar_name'] == 'geodir_email' && ((isset($package_info['sendtofriend']) && $package_info['sendtofriend']) || $post->{$cf['htmlvar_name']})) { |
|
| 1124 | + global $send_to_friend; |
|
| 1125 | + $send_to_friend = true; |
|
| 1126 | + $b_send_inquiry = ''; |
|
| 1127 | + $b_sendtofriend = ''; |
|
| 1128 | + |
|
| 1129 | + $html = ''; |
|
| 1130 | + if (!$preview) { |
|
| 1131 | + $b_send_inquiry = 'b_send_inquiry'; |
|
| 1132 | + $b_sendtofriend = 'b_sendtofriend'; |
|
| 1133 | + $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1134 | + } |
|
| 1135 | + |
|
| 1136 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1137 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1138 | + $field_icon_af = ''; |
|
| 1139 | + } elseif ($field_icon == '') { |
|
| 1140 | + $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1141 | + } else { |
|
| 1142 | + $field_icon_af = $field_icon; |
|
| 1143 | + $field_icon = ''; |
|
| 1144 | + } |
|
| 1145 | + |
|
| 1146 | + $html .= '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1147 | + $seperator = ''; |
|
| 1148 | + if ($post->{$cf['htmlvar_name']}) { |
|
| 1149 | + $html .= '<a href="javascript:void(0);" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>'; |
|
| 1150 | + $seperator = ' | '; |
|
| 1151 | + } |
|
| 1152 | + |
|
| 1153 | + if (isset($package_info['sendtofriend']) && $package_info['sendtofriend']) { |
|
| 1154 | + $html .= $seperator . '<a href="javascript:void(0);" class="' . $b_sendtofriend . '">' . SEND_TO_FRIEND . '</a>'; |
|
| 1155 | + } |
|
| 1156 | + |
|
| 1157 | + $html .= '</span></div>'; |
|
| 1158 | + |
|
| 1159 | + |
|
| 1160 | + if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') { |
|
| 1161 | + $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>'; |
|
| 1162 | + } elseif (isset($_REQUEST['sendtofrnd']) && $_REQUEST['sendtofrnd'] == 'success') { |
|
| 1163 | + $html .= '<p class="sucess_msg">' . SEND_FRIEND_SUCCESS . '</p>'; |
|
| 1164 | + } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') { |
|
| 1165 | + $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>'; |
|
| 1166 | + } |
|
| 1167 | + |
|
| 1168 | + /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/ |
|
| 1169 | + |
|
| 1170 | + } else { |
|
| 1171 | + |
|
| 1172 | + if ($post->{$cf['htmlvar_name']}) { |
|
| 1173 | + |
|
| 1174 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1175 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1176 | + $field_icon_af = ''; |
|
| 1177 | + } elseif ($field_icon == '') { |
|
| 1178 | + $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1179 | + } else { |
|
| 1180 | + $field_icon_af = $field_icon; |
|
| 1181 | + $field_icon = ''; |
|
| 1182 | + } |
|
| 1183 | + |
|
| 1184 | + |
|
| 1185 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1186 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1187 | + $html .= '</span><span class="geodir-email-address-output">'; |
|
| 1188 | + $email = $post->{$cf['htmlvar_name']} ; |
|
| 1189 | + if($e_split = explode('@',$email)){ |
|
| 1190 | + /** |
|
| 1191 | + * Filter email custom field name output. |
|
| 1192 | + * |
|
| 1193 | + * @since 1.5.3 |
|
| 1194 | + * |
|
| 1195 | + * @param string $email The email string being output. |
|
| 1196 | + * @param array $cf Custom field variables array. |
|
| 1197 | + */ |
|
| 1198 | + $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
|
| 1199 | + $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1200 | + }else{ |
|
| 1201 | + $html .= $email; |
|
| 1202 | + } |
|
| 1203 | + $html .= '</span></div>'; |
|
| 1204 | + } |
|
| 1205 | + |
|
| 1206 | + } |
|
| 1207 | + |
|
| 1208 | + } |
|
| 1209 | + |
|
| 1210 | + return $html; |
|
| 1211 | 1211 | } |
| 1212 | 1212 | add_filter('geodir_custom_field_output_email','geodir_cf_email',10,3); |
| 1213 | 1213 | |
@@ -1224,130 +1224,130 @@ discard block |
||
| 1224 | 1224 | */ |
| 1225 | 1225 | function geodir_cf_file($html,$location,$cf,$p=''){ |
| 1226 | 1226 | |
| 1227 | - // check we have the post value |
|
| 1228 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1229 | - else{ global $post;} |
|
| 1230 | - |
|
| 1231 | - if(!is_array($cf) && $cf!=''){ |
|
| 1232 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1233 | - if(!$cf){return NULL;} |
|
| 1234 | - } |
|
| 1235 | - |
|
| 1236 | - $html_var = $cf['htmlvar_name']; |
|
| 1237 | - |
|
| 1238 | - // Check if there is a location specific filter. |
|
| 1239 | - if(has_filter("geodir_custom_field_output_file_loc_{$location}")){ |
|
| 1240 | - /** |
|
| 1241 | - * Filter the file html by location. |
|
| 1242 | - * |
|
| 1243 | - * @param string $html The html to filter. |
|
| 1244 | - * @param array $cf The custom field array. |
|
| 1245 | - * @since 1.6.6 |
|
| 1246 | - */ |
|
| 1247 | - $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf); |
|
| 1248 | - } |
|
| 1249 | - |
|
| 1250 | - // Check if there is a custom field specific filter. |
|
| 1251 | - if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){ |
|
| 1252 | - /** |
|
| 1253 | - * Filter the file html by individual custom field. |
|
| 1254 | - * |
|
| 1255 | - * @param string $html The html to filter. |
|
| 1256 | - * @param string $location The location to output the html. |
|
| 1257 | - * @param array $cf The custom field array. |
|
| 1258 | - * @since 1.6.6 |
|
| 1259 | - */ |
|
| 1260 | - $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf); |
|
| 1261 | - } |
|
| 1262 | - |
|
| 1263 | - // Check if there is a custom field key specific filter. |
|
| 1264 | - if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){ |
|
| 1265 | - /** |
|
| 1266 | - * Filter the file html by field type key. |
|
| 1267 | - * |
|
| 1268 | - * @param string $html The html to filter. |
|
| 1269 | - * @param string $location The location to output the html. |
|
| 1270 | - * @param array $cf The custom field array. |
|
| 1271 | - * @since 1.6.6 |
|
| 1272 | - */ |
|
| 1273 | - $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1274 | - } |
|
| 1275 | - |
|
| 1276 | - // If not html then we run the standard output. |
|
| 1277 | - if(empty($html)){ |
|
| 1278 | - |
|
| 1279 | - if (!empty($post->{$cf['htmlvar_name']})): |
|
| 1280 | - |
|
| 1281 | - $files = explode(",", $post->{$cf['htmlvar_name']}); |
|
| 1282 | - if (!empty($files)): |
|
| 1283 | - |
|
| 1284 | - $extra_fields = !empty($cf['extra_fields']) ? stripslashes_deep(maybe_unserialize($cf['extra_fields'])) : NULL; |
|
| 1285 | - $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : ''; |
|
| 1286 | - |
|
| 1287 | - $file_paths = ''; |
|
| 1288 | - foreach ($files as $file) { |
|
| 1289 | - if (!empty($file)) { |
|
| 1290 | - |
|
| 1291 | - // $filetype = wp_check_filetype($file); |
|
| 1292 | - |
|
| 1293 | - $image_name_arr = explode('/', $file); |
|
| 1294 | - $curr_img_dir = $image_name_arr[count($image_name_arr) - 2]; |
|
| 1295 | - $filename = end($image_name_arr); |
|
| 1296 | - $img_name_arr = explode('.', $filename); |
|
| 1297 | - |
|
| 1298 | - $arr_file_type = wp_check_filetype($filename); |
|
| 1299 | - if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) { |
|
| 1300 | - continue; |
|
| 1301 | - } |
|
| 1302 | - |
|
| 1303 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 1304 | - $uploaded_file_ext = $arr_file_type['ext']; |
|
| 1305 | - |
|
| 1306 | - if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) { |
|
| 1307 | - continue; // Invalid file type. |
|
| 1308 | - } |
|
| 1309 | - |
|
| 1310 | - //$allowed_file_types = array('application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain'); |
|
| 1311 | - $image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon'); |
|
| 1312 | - |
|
| 1313 | - // If the uploaded file is image |
|
| 1314 | - if (in_array($uploaded_file_type, $image_file_types)) { |
|
| 1315 | - $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">'; |
|
| 1316 | - $file_paths .= '<a href="'.$file.'">'; |
|
| 1317 | - $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false); |
|
| 1318 | - $file_paths .= '</a>'; |
|
| 1319 | - //$file_paths .= '<img src="'.$file.'" />'; |
|
| 1320 | - $file_paths .= '</div>'; |
|
| 1321 | - } else { |
|
| 1322 | - $ext_path = '_' . $html_var . '_'; |
|
| 1323 | - $filename = explode($ext_path, $filename); |
|
| 1324 | - $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>'; |
|
| 1325 | - } |
|
| 1326 | - } |
|
| 1327 | - } |
|
| 1328 | - |
|
| 1329 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1330 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1331 | - $field_icon_af = ''; |
|
| 1332 | - } elseif ($field_icon == '') { |
|
| 1333 | - $field_icon_af = ''; |
|
| 1334 | - } else { |
|
| 1335 | - $field_icon_af = $field_icon; |
|
| 1336 | - $field_icon = ''; |
|
| 1337 | - } |
|
| 1338 | - |
|
| 1339 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' geodir-custom-file-box ' . $cf['htmlvar_name'] . '"><div class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1340 | - $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">'; |
|
| 1341 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1342 | - $html .= '</span>'; |
|
| 1343 | - $html .= $file_paths . '</div></div>'; |
|
| 1344 | - |
|
| 1345 | - endif; |
|
| 1346 | - endif; |
|
| 1347 | - |
|
| 1348 | - } |
|
| 1349 | - |
|
| 1350 | - return $html; |
|
| 1227 | + // check we have the post value |
|
| 1228 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1229 | + else{ global $post;} |
|
| 1230 | + |
|
| 1231 | + if(!is_array($cf) && $cf!=''){ |
|
| 1232 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1233 | + if(!$cf){return NULL;} |
|
| 1234 | + } |
|
| 1235 | + |
|
| 1236 | + $html_var = $cf['htmlvar_name']; |
|
| 1237 | + |
|
| 1238 | + // Check if there is a location specific filter. |
|
| 1239 | + if(has_filter("geodir_custom_field_output_file_loc_{$location}")){ |
|
| 1240 | + /** |
|
| 1241 | + * Filter the file html by location. |
|
| 1242 | + * |
|
| 1243 | + * @param string $html The html to filter. |
|
| 1244 | + * @param array $cf The custom field array. |
|
| 1245 | + * @since 1.6.6 |
|
| 1246 | + */ |
|
| 1247 | + $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf); |
|
| 1248 | + } |
|
| 1249 | + |
|
| 1250 | + // Check if there is a custom field specific filter. |
|
| 1251 | + if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){ |
|
| 1252 | + /** |
|
| 1253 | + * Filter the file html by individual custom field. |
|
| 1254 | + * |
|
| 1255 | + * @param string $html The html to filter. |
|
| 1256 | + * @param string $location The location to output the html. |
|
| 1257 | + * @param array $cf The custom field array. |
|
| 1258 | + * @since 1.6.6 |
|
| 1259 | + */ |
|
| 1260 | + $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf); |
|
| 1261 | + } |
|
| 1262 | + |
|
| 1263 | + // Check if there is a custom field key specific filter. |
|
| 1264 | + if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){ |
|
| 1265 | + /** |
|
| 1266 | + * Filter the file html by field type key. |
|
| 1267 | + * |
|
| 1268 | + * @param string $html The html to filter. |
|
| 1269 | + * @param string $location The location to output the html. |
|
| 1270 | + * @param array $cf The custom field array. |
|
| 1271 | + * @since 1.6.6 |
|
| 1272 | + */ |
|
| 1273 | + $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1274 | + } |
|
| 1275 | + |
|
| 1276 | + // If not html then we run the standard output. |
|
| 1277 | + if(empty($html)){ |
|
| 1278 | + |
|
| 1279 | + if (!empty($post->{$cf['htmlvar_name']})): |
|
| 1280 | + |
|
| 1281 | + $files = explode(",", $post->{$cf['htmlvar_name']}); |
|
| 1282 | + if (!empty($files)): |
|
| 1283 | + |
|
| 1284 | + $extra_fields = !empty($cf['extra_fields']) ? stripslashes_deep(maybe_unserialize($cf['extra_fields'])) : NULL; |
|
| 1285 | + $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : ''; |
|
| 1286 | + |
|
| 1287 | + $file_paths = ''; |
|
| 1288 | + foreach ($files as $file) { |
|
| 1289 | + if (!empty($file)) { |
|
| 1290 | + |
|
| 1291 | + // $filetype = wp_check_filetype($file); |
|
| 1292 | + |
|
| 1293 | + $image_name_arr = explode('/', $file); |
|
| 1294 | + $curr_img_dir = $image_name_arr[count($image_name_arr) - 2]; |
|
| 1295 | + $filename = end($image_name_arr); |
|
| 1296 | + $img_name_arr = explode('.', $filename); |
|
| 1297 | + |
|
| 1298 | + $arr_file_type = wp_check_filetype($filename); |
|
| 1299 | + if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) { |
|
| 1300 | + continue; |
|
| 1301 | + } |
|
| 1302 | + |
|
| 1303 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 1304 | + $uploaded_file_ext = $arr_file_type['ext']; |
|
| 1305 | + |
|
| 1306 | + if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) { |
|
| 1307 | + continue; // Invalid file type. |
|
| 1308 | + } |
|
| 1309 | + |
|
| 1310 | + //$allowed_file_types = array('application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain'); |
|
| 1311 | + $image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon'); |
|
| 1312 | + |
|
| 1313 | + // If the uploaded file is image |
|
| 1314 | + if (in_array($uploaded_file_type, $image_file_types)) { |
|
| 1315 | + $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">'; |
|
| 1316 | + $file_paths .= '<a href="'.$file.'">'; |
|
| 1317 | + $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false); |
|
| 1318 | + $file_paths .= '</a>'; |
|
| 1319 | + //$file_paths .= '<img src="'.$file.'" />'; |
|
| 1320 | + $file_paths .= '</div>'; |
|
| 1321 | + } else { |
|
| 1322 | + $ext_path = '_' . $html_var . '_'; |
|
| 1323 | + $filename = explode($ext_path, $filename); |
|
| 1324 | + $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>'; |
|
| 1325 | + } |
|
| 1326 | + } |
|
| 1327 | + } |
|
| 1328 | + |
|
| 1329 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1330 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1331 | + $field_icon_af = ''; |
|
| 1332 | + } elseif ($field_icon == '') { |
|
| 1333 | + $field_icon_af = ''; |
|
| 1334 | + } else { |
|
| 1335 | + $field_icon_af = $field_icon; |
|
| 1336 | + $field_icon = ''; |
|
| 1337 | + } |
|
| 1338 | + |
|
| 1339 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' geodir-custom-file-box ' . $cf['htmlvar_name'] . '"><div class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1340 | + $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">'; |
|
| 1341 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1342 | + $html .= '</span>'; |
|
| 1343 | + $html .= $file_paths . '</div></div>'; |
|
| 1344 | + |
|
| 1345 | + endif; |
|
| 1346 | + endif; |
|
| 1347 | + |
|
| 1348 | + } |
|
| 1349 | + |
|
| 1350 | + return $html; |
|
| 1351 | 1351 | } |
| 1352 | 1352 | add_filter('geodir_custom_field_output_file','geodir_cf_file',10,3); |
| 1353 | 1353 | |
@@ -1365,80 +1365,80 @@ discard block |
||
| 1365 | 1365 | */ |
| 1366 | 1366 | function geodir_cf_textarea($html,$location,$cf,$p=''){ |
| 1367 | 1367 | |
| 1368 | - // check we have the post value |
|
| 1369 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1370 | - else{ global $post;} |
|
| 1371 | - |
|
| 1372 | - if(!is_array($cf) && $cf!=''){ |
|
| 1373 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1374 | - if(!$cf){return NULL;} |
|
| 1375 | - } |
|
| 1376 | - |
|
| 1377 | - $html_var = $cf['htmlvar_name']; |
|
| 1378 | - |
|
| 1379 | - // Check if there is a location specific filter. |
|
| 1380 | - if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){ |
|
| 1381 | - /** |
|
| 1382 | - * Filter the textarea html by location. |
|
| 1383 | - * |
|
| 1384 | - * @param string $html The html to filter. |
|
| 1385 | - * @param array $cf The custom field array. |
|
| 1386 | - * @since 1.6.6 |
|
| 1387 | - */ |
|
| 1388 | - $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf); |
|
| 1389 | - } |
|
| 1390 | - |
|
| 1391 | - // Check if there is a custom field specific filter. |
|
| 1392 | - if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){ |
|
| 1393 | - /** |
|
| 1394 | - * Filter the textarea html by individual custom field. |
|
| 1395 | - * |
|
| 1396 | - * @param string $html The html to filter. |
|
| 1397 | - * @param string $location The location to output the html. |
|
| 1398 | - * @param array $cf The custom field array. |
|
| 1399 | - * @since 1.6.6 |
|
| 1400 | - */ |
|
| 1401 | - $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf); |
|
| 1402 | - } |
|
| 1403 | - |
|
| 1404 | - // Check if there is a custom field key specific filter. |
|
| 1405 | - if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){ |
|
| 1406 | - /** |
|
| 1407 | - * Filter the textarea html by field type key. |
|
| 1408 | - * |
|
| 1409 | - * @param string $html The html to filter. |
|
| 1410 | - * @param string $location The location to output the html. |
|
| 1411 | - * @param array $cf The custom field array. |
|
| 1412 | - * @since 1.6.6 |
|
| 1413 | - */ |
|
| 1414 | - $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1415 | - } |
|
| 1416 | - |
|
| 1417 | - // If not html then we run the standard output. |
|
| 1418 | - if(empty($html)){ |
|
| 1419 | - |
|
| 1420 | - if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1421 | - |
|
| 1422 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1423 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1424 | - $field_icon_af = ''; |
|
| 1425 | - } elseif ($field_icon == '') { |
|
| 1426 | - $field_icon_af = ''; |
|
| 1427 | - } else { |
|
| 1428 | - $field_icon_af = $field_icon; |
|
| 1429 | - $field_icon = ''; |
|
| 1430 | - } |
|
| 1431 | - |
|
| 1432 | - |
|
| 1433 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1434 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1435 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1436 | - |
|
| 1437 | - } |
|
| 1438 | - |
|
| 1439 | - } |
|
| 1440 | - |
|
| 1441 | - return $html; |
|
| 1368 | + // check we have the post value |
|
| 1369 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1370 | + else{ global $post;} |
|
| 1371 | + |
|
| 1372 | + if(!is_array($cf) && $cf!=''){ |
|
| 1373 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1374 | + if(!$cf){return NULL;} |
|
| 1375 | + } |
|
| 1376 | + |
|
| 1377 | + $html_var = $cf['htmlvar_name']; |
|
| 1378 | + |
|
| 1379 | + // Check if there is a location specific filter. |
|
| 1380 | + if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){ |
|
| 1381 | + /** |
|
| 1382 | + * Filter the textarea html by location. |
|
| 1383 | + * |
|
| 1384 | + * @param string $html The html to filter. |
|
| 1385 | + * @param array $cf The custom field array. |
|
| 1386 | + * @since 1.6.6 |
|
| 1387 | + */ |
|
| 1388 | + $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf); |
|
| 1389 | + } |
|
| 1390 | + |
|
| 1391 | + // Check if there is a custom field specific filter. |
|
| 1392 | + if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){ |
|
| 1393 | + /** |
|
| 1394 | + * Filter the textarea html by individual custom field. |
|
| 1395 | + * |
|
| 1396 | + * @param string $html The html to filter. |
|
| 1397 | + * @param string $location The location to output the html. |
|
| 1398 | + * @param array $cf The custom field array. |
|
| 1399 | + * @since 1.6.6 |
|
| 1400 | + */ |
|
| 1401 | + $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf); |
|
| 1402 | + } |
|
| 1403 | + |
|
| 1404 | + // Check if there is a custom field key specific filter. |
|
| 1405 | + if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){ |
|
| 1406 | + /** |
|
| 1407 | + * Filter the textarea html by field type key. |
|
| 1408 | + * |
|
| 1409 | + * @param string $html The html to filter. |
|
| 1410 | + * @param string $location The location to output the html. |
|
| 1411 | + * @param array $cf The custom field array. |
|
| 1412 | + * @since 1.6.6 |
|
| 1413 | + */ |
|
| 1414 | + $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1415 | + } |
|
| 1416 | + |
|
| 1417 | + // If not html then we run the standard output. |
|
| 1418 | + if(empty($html)){ |
|
| 1419 | + |
|
| 1420 | + if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1421 | + |
|
| 1422 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1423 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1424 | + $field_icon_af = ''; |
|
| 1425 | + } elseif ($field_icon == '') { |
|
| 1426 | + $field_icon_af = ''; |
|
| 1427 | + } else { |
|
| 1428 | + $field_icon_af = $field_icon; |
|
| 1429 | + $field_icon = ''; |
|
| 1430 | + } |
|
| 1431 | + |
|
| 1432 | + |
|
| 1433 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1434 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1435 | + $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1436 | + |
|
| 1437 | + } |
|
| 1438 | + |
|
| 1439 | + } |
|
| 1440 | + |
|
| 1441 | + return $html; |
|
| 1442 | 1442 | } |
| 1443 | 1443 | add_filter('geodir_custom_field_output_textarea','geodir_cf_textarea',10,3); |
| 1444 | 1444 | |
@@ -1456,79 +1456,79 @@ discard block |
||
| 1456 | 1456 | */ |
| 1457 | 1457 | function geodir_cf_html($html,$location,$cf,$p=''){ |
| 1458 | 1458 | |
| 1459 | - // check we have the post value |
|
| 1460 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1461 | - else{ global $post;} |
|
| 1462 | - |
|
| 1463 | - if(!is_array($cf) && $cf!=''){ |
|
| 1464 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1465 | - if(!$cf){return NULL;} |
|
| 1466 | - } |
|
| 1467 | - |
|
| 1468 | - $html_var = $cf['htmlvar_name']; |
|
| 1469 | - |
|
| 1470 | - // Check if there is a location specific filter. |
|
| 1471 | - if(has_filter("geodir_custom_field_output_html_loc_{$location}")){ |
|
| 1472 | - /** |
|
| 1473 | - * Filter the html html by location. |
|
| 1474 | - * |
|
| 1475 | - * @param string $html The html to filter. |
|
| 1476 | - * @param array $cf The custom field array. |
|
| 1477 | - * @since 1.6.6 |
|
| 1478 | - */ |
|
| 1479 | - $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf); |
|
| 1480 | - } |
|
| 1481 | - |
|
| 1482 | - // Check if there is a custom field specific filter. |
|
| 1483 | - if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){ |
|
| 1484 | - /** |
|
| 1485 | - * Filter the html html by individual custom field. |
|
| 1486 | - * |
|
| 1487 | - * @param string $html The html to filter. |
|
| 1488 | - * @param string $location The location to output the html. |
|
| 1489 | - * @param array $cf The custom field array. |
|
| 1490 | - * @since 1.6.6 |
|
| 1491 | - */ |
|
| 1492 | - $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf); |
|
| 1493 | - } |
|
| 1494 | - |
|
| 1495 | - // Check if there is a custom field key specific filter. |
|
| 1496 | - if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){ |
|
| 1497 | - /** |
|
| 1498 | - * Filter the html html by field type key. |
|
| 1499 | - * |
|
| 1500 | - * @param string $html The html to filter. |
|
| 1501 | - * @param string $location The location to output the html. |
|
| 1502 | - * @param array $cf The custom field array. |
|
| 1503 | - * @since 1.6.6 |
|
| 1504 | - */ |
|
| 1505 | - $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1506 | - } |
|
| 1507 | - |
|
| 1508 | - // If not html then we run the standard output. |
|
| 1509 | - if(empty($html)){ |
|
| 1510 | - |
|
| 1511 | - if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1512 | - |
|
| 1513 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1514 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1515 | - $field_icon_af = ''; |
|
| 1516 | - } elseif ($field_icon == '') { |
|
| 1517 | - $field_icon_af = ''; |
|
| 1518 | - } else { |
|
| 1519 | - $field_icon_af = $field_icon; |
|
| 1520 | - $field_icon = ''; |
|
| 1521 | - } |
|
| 1522 | - |
|
| 1523 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1524 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1525 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1526 | - |
|
| 1527 | - } |
|
| 1528 | - |
|
| 1529 | - } |
|
| 1530 | - |
|
| 1531 | - return $html; |
|
| 1459 | + // check we have the post value |
|
| 1460 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1461 | + else{ global $post;} |
|
| 1462 | + |
|
| 1463 | + if(!is_array($cf) && $cf!=''){ |
|
| 1464 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1465 | + if(!$cf){return NULL;} |
|
| 1466 | + } |
|
| 1467 | + |
|
| 1468 | + $html_var = $cf['htmlvar_name']; |
|
| 1469 | + |
|
| 1470 | + // Check if there is a location specific filter. |
|
| 1471 | + if(has_filter("geodir_custom_field_output_html_loc_{$location}")){ |
|
| 1472 | + /** |
|
| 1473 | + * Filter the html html by location. |
|
| 1474 | + * |
|
| 1475 | + * @param string $html The html to filter. |
|
| 1476 | + * @param array $cf The custom field array. |
|
| 1477 | + * @since 1.6.6 |
|
| 1478 | + */ |
|
| 1479 | + $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf); |
|
| 1480 | + } |
|
| 1481 | + |
|
| 1482 | + // Check if there is a custom field specific filter. |
|
| 1483 | + if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){ |
|
| 1484 | + /** |
|
| 1485 | + * Filter the html html by individual custom field. |
|
| 1486 | + * |
|
| 1487 | + * @param string $html The html to filter. |
|
| 1488 | + * @param string $location The location to output the html. |
|
| 1489 | + * @param array $cf The custom field array. |
|
| 1490 | + * @since 1.6.6 |
|
| 1491 | + */ |
|
| 1492 | + $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf); |
|
| 1493 | + } |
|
| 1494 | + |
|
| 1495 | + // Check if there is a custom field key specific filter. |
|
| 1496 | + if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){ |
|
| 1497 | + /** |
|
| 1498 | + * Filter the html html by field type key. |
|
| 1499 | + * |
|
| 1500 | + * @param string $html The html to filter. |
|
| 1501 | + * @param string $location The location to output the html. |
|
| 1502 | + * @param array $cf The custom field array. |
|
| 1503 | + * @since 1.6.6 |
|
| 1504 | + */ |
|
| 1505 | + $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1506 | + } |
|
| 1507 | + |
|
| 1508 | + // If not html then we run the standard output. |
|
| 1509 | + if(empty($html)){ |
|
| 1510 | + |
|
| 1511 | + if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1512 | + |
|
| 1513 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1514 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1515 | + $field_icon_af = ''; |
|
| 1516 | + } elseif ($field_icon == '') { |
|
| 1517 | + $field_icon_af = ''; |
|
| 1518 | + } else { |
|
| 1519 | + $field_icon_af = $field_icon; |
|
| 1520 | + $field_icon = ''; |
|
| 1521 | + } |
|
| 1522 | + |
|
| 1523 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1524 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1525 | + $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1526 | + |
|
| 1527 | + } |
|
| 1528 | + |
|
| 1529 | + } |
|
| 1530 | + |
|
| 1531 | + return $html; |
|
| 1532 | 1532 | } |
| 1533 | 1533 | add_filter('geodir_custom_field_output_html','geodir_cf_html',10,3); |
| 1534 | 1534 | |
@@ -1546,113 +1546,113 @@ discard block |
||
| 1546 | 1546 | */ |
| 1547 | 1547 | function geodir_cf_taxonomy($html,$location,$cf,$p=''){ |
| 1548 | 1548 | |
| 1549 | - // check we have the post value |
|
| 1550 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1551 | - else{ global $post;} |
|
| 1552 | - |
|
| 1553 | - if(!is_array($cf) && $cf!=''){ |
|
| 1554 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1555 | - if(!$cf){return NULL;} |
|
| 1556 | - } |
|
| 1557 | - |
|
| 1558 | - $html_var = $cf['htmlvar_name']; |
|
| 1559 | - |
|
| 1560 | - // Check if there is a location specific filter. |
|
| 1561 | - if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){ |
|
| 1562 | - /** |
|
| 1563 | - * Filter the taxonomy html by location. |
|
| 1564 | - * |
|
| 1565 | - * @param string $html The html to filter. |
|
| 1566 | - * @param array $cf The custom field array. |
|
| 1567 | - * @since 1.6.6 |
|
| 1568 | - */ |
|
| 1569 | - $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf); |
|
| 1570 | - } |
|
| 1571 | - |
|
| 1572 | - // Check if there is a custom field specific filter. |
|
| 1573 | - if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){ |
|
| 1574 | - /** |
|
| 1575 | - * Filter the taxonomy html by individual custom field. |
|
| 1576 | - * |
|
| 1577 | - * @param string $html The html to filter. |
|
| 1578 | - * @param string $location The location to output the html. |
|
| 1579 | - * @param array $cf The custom field array. |
|
| 1580 | - * @since 1.6.6 |
|
| 1581 | - */ |
|
| 1582 | - $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf); |
|
| 1583 | - } |
|
| 1584 | - |
|
| 1585 | - // Check if there is a custom field key specific filter. |
|
| 1586 | - if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){ |
|
| 1587 | - /** |
|
| 1588 | - * Filter the taxonomy html by field type key. |
|
| 1589 | - * |
|
| 1590 | - * @param string $html The html to filter. |
|
| 1591 | - * @param string $location The location to output the html. |
|
| 1592 | - * @param array $cf The custom field array. |
|
| 1593 | - * @since 1.6.6 |
|
| 1594 | - */ |
|
| 1595 | - $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1596 | - } |
|
| 1597 | - |
|
| 1598 | - // If not html then we run the standard output. |
|
| 1599 | - if(empty($html)){ |
|
| 1600 | - |
|
| 1601 | - if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) { |
|
| 1602 | - $post_taxonomy = $post->post_type . 'category'; |
|
| 1603 | - $field_value = $post->{$html_var}; |
|
| 1604 | - $links = array(); |
|
| 1605 | - $terms = array(); |
|
| 1606 | - $termsOrdered = array(); |
|
| 1607 | - if (!is_array($field_value)) { |
|
| 1608 | - $field_value = explode(",", trim($field_value, ",")); |
|
| 1609 | - } |
|
| 1610 | - |
|
| 1611 | - $field_value = array_unique($field_value); |
|
| 1612 | - |
|
| 1613 | - if (!empty($field_value)) { |
|
| 1614 | - foreach ($field_value as $term) { |
|
| 1615 | - $term = trim($term); |
|
| 1616 | - |
|
| 1617 | - if ($term != '') { |
|
| 1618 | - $term = get_term_by('id', $term, $html_var); |
|
| 1619 | - if (is_object($term)) { |
|
| 1620 | - $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>"; |
|
| 1621 | - $terms[] = $term; |
|
| 1622 | - } |
|
| 1623 | - } |
|
| 1624 | - } |
|
| 1625 | - if (!empty($links)) { |
|
| 1626 | - // order alphabetically |
|
| 1627 | - asort($links); |
|
| 1628 | - foreach (array_keys($links) as $key) { |
|
| 1629 | - $termsOrdered[$key] = $terms[$key]; |
|
| 1630 | - } |
|
| 1631 | - $terms = $termsOrdered; |
|
| 1632 | - } |
|
| 1633 | - } |
|
| 1634 | - $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : ''; |
|
| 1635 | - |
|
| 1636 | - if ($html_value != '') { |
|
| 1637 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1638 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1639 | - $field_icon_af = ''; |
|
| 1640 | - } else if ($field_icon == '') { |
|
| 1641 | - $field_icon_af = ''; |
|
| 1642 | - } else { |
|
| 1643 | - $field_icon_af = $field_icon; |
|
| 1644 | - $field_icon = ''; |
|
| 1645 | - } |
|
| 1646 | - |
|
| 1647 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1648 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1649 | - $html .= '</span> ' . $html_value . '</div>'; |
|
| 1650 | - } |
|
| 1651 | - } |
|
| 1652 | - |
|
| 1653 | - } |
|
| 1654 | - |
|
| 1655 | - return $html; |
|
| 1549 | + // check we have the post value |
|
| 1550 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1551 | + else{ global $post;} |
|
| 1552 | + |
|
| 1553 | + if(!is_array($cf) && $cf!=''){ |
|
| 1554 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1555 | + if(!$cf){return NULL;} |
|
| 1556 | + } |
|
| 1557 | + |
|
| 1558 | + $html_var = $cf['htmlvar_name']; |
|
| 1559 | + |
|
| 1560 | + // Check if there is a location specific filter. |
|
| 1561 | + if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){ |
|
| 1562 | + /** |
|
| 1563 | + * Filter the taxonomy html by location. |
|
| 1564 | + * |
|
| 1565 | + * @param string $html The html to filter. |
|
| 1566 | + * @param array $cf The custom field array. |
|
| 1567 | + * @since 1.6.6 |
|
| 1568 | + */ |
|
| 1569 | + $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf); |
|
| 1570 | + } |
|
| 1571 | + |
|
| 1572 | + // Check if there is a custom field specific filter. |
|
| 1573 | + if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){ |
|
| 1574 | + /** |
|
| 1575 | + * Filter the taxonomy html by individual custom field. |
|
| 1576 | + * |
|
| 1577 | + * @param string $html The html to filter. |
|
| 1578 | + * @param string $location The location to output the html. |
|
| 1579 | + * @param array $cf The custom field array. |
|
| 1580 | + * @since 1.6.6 |
|
| 1581 | + */ |
|
| 1582 | + $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf); |
|
| 1583 | + } |
|
| 1584 | + |
|
| 1585 | + // Check if there is a custom field key specific filter. |
|
| 1586 | + if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){ |
|
| 1587 | + /** |
|
| 1588 | + * Filter the taxonomy html by field type key. |
|
| 1589 | + * |
|
| 1590 | + * @param string $html The html to filter. |
|
| 1591 | + * @param string $location The location to output the html. |
|
| 1592 | + * @param array $cf The custom field array. |
|
| 1593 | + * @since 1.6.6 |
|
| 1594 | + */ |
|
| 1595 | + $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1596 | + } |
|
| 1597 | + |
|
| 1598 | + // If not html then we run the standard output. |
|
| 1599 | + if(empty($html)){ |
|
| 1600 | + |
|
| 1601 | + if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) { |
|
| 1602 | + $post_taxonomy = $post->post_type . 'category'; |
|
| 1603 | + $field_value = $post->{$html_var}; |
|
| 1604 | + $links = array(); |
|
| 1605 | + $terms = array(); |
|
| 1606 | + $termsOrdered = array(); |
|
| 1607 | + if (!is_array($field_value)) { |
|
| 1608 | + $field_value = explode(",", trim($field_value, ",")); |
|
| 1609 | + } |
|
| 1610 | + |
|
| 1611 | + $field_value = array_unique($field_value); |
|
| 1612 | + |
|
| 1613 | + if (!empty($field_value)) { |
|
| 1614 | + foreach ($field_value as $term) { |
|
| 1615 | + $term = trim($term); |
|
| 1616 | + |
|
| 1617 | + if ($term != '') { |
|
| 1618 | + $term = get_term_by('id', $term, $html_var); |
|
| 1619 | + if (is_object($term)) { |
|
| 1620 | + $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>"; |
|
| 1621 | + $terms[] = $term; |
|
| 1622 | + } |
|
| 1623 | + } |
|
| 1624 | + } |
|
| 1625 | + if (!empty($links)) { |
|
| 1626 | + // order alphabetically |
|
| 1627 | + asort($links); |
|
| 1628 | + foreach (array_keys($links) as $key) { |
|
| 1629 | + $termsOrdered[$key] = $terms[$key]; |
|
| 1630 | + } |
|
| 1631 | + $terms = $termsOrdered; |
|
| 1632 | + } |
|
| 1633 | + } |
|
| 1634 | + $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : ''; |
|
| 1635 | + |
|
| 1636 | + if ($html_value != '') { |
|
| 1637 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1638 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1639 | + $field_icon_af = ''; |
|
| 1640 | + } else if ($field_icon == '') { |
|
| 1641 | + $field_icon_af = ''; |
|
| 1642 | + } else { |
|
| 1643 | + $field_icon_af = $field_icon; |
|
| 1644 | + $field_icon = ''; |
|
| 1645 | + } |
|
| 1646 | + |
|
| 1647 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1648 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1649 | + $html .= '</span> ' . $html_value . '</div>'; |
|
| 1650 | + } |
|
| 1651 | + } |
|
| 1652 | + |
|
| 1653 | + } |
|
| 1654 | + |
|
| 1655 | + return $html; |
|
| 1656 | 1656 | } |
| 1657 | 1657 | add_filter('geodir_custom_field_output_taxonomy','geodir_cf_taxonomy',10,3); |
| 1658 | 1658 | |
@@ -1669,161 +1669,161 @@ discard block |
||
| 1669 | 1669 | */ |
| 1670 | 1670 | function geodir_cf_address($html,$location,$cf,$p=''){ |
| 1671 | 1671 | |
| 1672 | - // check we have the post value |
|
| 1673 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1674 | - else{ global $post;} |
|
| 1675 | - |
|
| 1676 | - if(!is_array($cf) && $cf!=''){ |
|
| 1677 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1678 | - if(!$cf){return NULL;} |
|
| 1679 | - } |
|
| 1680 | - |
|
| 1681 | - $html_var = $cf['htmlvar_name']; |
|
| 1682 | - |
|
| 1683 | - // Check if there is a location specific filter. |
|
| 1684 | - if(has_filter("geodir_custom_field_output_address_loc_{$location}")){ |
|
| 1685 | - /** |
|
| 1686 | - * Filter the address html by location. |
|
| 1687 | - * |
|
| 1688 | - * @param string $html The html to filter. |
|
| 1689 | - * @param array $cf The custom field array. |
|
| 1690 | - * @since 1.6.6 |
|
| 1691 | - */ |
|
| 1692 | - $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf); |
|
| 1693 | - } |
|
| 1694 | - |
|
| 1695 | - // Check if there is a custom field specific filter. |
|
| 1696 | - if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){ |
|
| 1697 | - /** |
|
| 1698 | - * Filter the address html by individual custom field. |
|
| 1699 | - * |
|
| 1700 | - * @param string $html The html to filter. |
|
| 1701 | - * @param string $location The location to output the html. |
|
| 1702 | - * @param array $cf The custom field array. |
|
| 1703 | - * @since 1.6.6 |
|
| 1704 | - */ |
|
| 1705 | - $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf); |
|
| 1706 | - } |
|
| 1707 | - |
|
| 1708 | - // Check if there is a custom field key specific filter. |
|
| 1709 | - if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){ |
|
| 1710 | - /** |
|
| 1711 | - * Filter the address html by field type key. |
|
| 1712 | - * |
|
| 1713 | - * @param string $html The html to filter. |
|
| 1714 | - * @param string $location The location to output the html. |
|
| 1715 | - * @param array $cf The custom field array. |
|
| 1716 | - * @since 1.6.6 |
|
| 1717 | - */ |
|
| 1718 | - $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1719 | - } |
|
| 1720 | - |
|
| 1721 | - // If not html then we run the standard output. |
|
| 1722 | - if(empty($html)){ |
|
| 1723 | - |
|
| 1724 | - global $preview; |
|
| 1725 | - $html_var = $cf['htmlvar_name'] . '_address'; |
|
| 1726 | - |
|
| 1727 | - if ($cf['extra_fields']) { |
|
| 1728 | - |
|
| 1729 | - $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 1730 | - |
|
| 1731 | - $addition_fields = ''; |
|
| 1732 | - |
|
| 1733 | - if (!empty($extra_fields)) { |
|
| 1734 | - |
|
| 1735 | - $show_city_in_address = false; |
|
| 1736 | - if (isset($extra_fields['show_city']) && $extra_fields['show_city']) { |
|
| 1737 | - $show_city_in_address = true; |
|
| 1738 | - } |
|
| 1739 | - /** |
|
| 1740 | - * Filter "show city in address" value. |
|
| 1741 | - * |
|
| 1742 | - * @since 1.0.0 |
|
| 1743 | - */ |
|
| 1744 | - $show_city_in_address = apply_filters('geodir_show_city_in_address', $show_city_in_address); |
|
| 1745 | - |
|
| 1746 | - |
|
| 1747 | - $show_region_in_address = false; |
|
| 1748 | - if (isset($extra_fields['show_region']) && $extra_fields['show_region']) { |
|
| 1749 | - $show_region_in_address = true; |
|
| 1750 | - } |
|
| 1751 | - /** |
|
| 1752 | - * Filter "show region in address" value. |
|
| 1753 | - * |
|
| 1754 | - * @since 1.6.6 |
|
| 1755 | - */ |
|
| 1756 | - $show_region_in_address = apply_filters('geodir_show_region_in_address', $show_region_in_address); |
|
| 1757 | - |
|
| 1758 | - $show_country_in_address = false; |
|
| 1759 | - if (isset($extra_fields['show_country']) && $extra_fields['show_country']) { |
|
| 1760 | - $show_country_in_address = true; |
|
| 1761 | - } |
|
| 1762 | - /** |
|
| 1763 | - * Filter "show country in address" value. |
|
| 1764 | - * |
|
| 1765 | - * @since 1.6.6 |
|
| 1766 | - */ |
|
| 1767 | - $show_country_in_address = apply_filters('geodir_show_country_in_address', $show_country_in_address); |
|
| 1768 | - |
|
| 1769 | - $show_zip_in_address = false; |
|
| 1770 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
| 1771 | - $show_zip_in_address = true; |
|
| 1772 | - } |
|
| 1773 | - /** |
|
| 1774 | - * Filter "show zip in address" value. |
|
| 1775 | - * |
|
| 1776 | - * @since 1.6.6 |
|
| 1777 | - */ |
|
| 1778 | - $show_zip_in_address = apply_filters('geodir_show_zip_in_address', $show_zip_in_address); |
|
| 1779 | - |
|
| 1780 | - |
|
| 1781 | - } |
|
| 1782 | - |
|
| 1783 | - } |
|
| 1784 | - |
|
| 1785 | - |
|
| 1786 | - if ($post->{$html_var}) { |
|
| 1787 | - |
|
| 1788 | - $field_icon = geodir_field_icon_proccess( $cf ); |
|
| 1789 | - if ( strpos( $field_icon, 'http' ) !== false ) { |
|
| 1790 | - $field_icon_af = ''; |
|
| 1791 | - } elseif ( $field_icon == '' ) { |
|
| 1792 | - $field_icon_af = '<i class="fa fa-home"></i>'; |
|
| 1793 | - } else { |
|
| 1794 | - $field_icon_af = $field_icon; |
|
| 1795 | - $field_icon = ''; |
|
| 1796 | - } |
|
| 1672 | + // check we have the post value |
|
| 1673 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1674 | + else{ global $post;} |
|
| 1675 | + |
|
| 1676 | + if(!is_array($cf) && $cf!=''){ |
|
| 1677 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1678 | + if(!$cf){return NULL;} |
|
| 1679 | + } |
|
| 1680 | + |
|
| 1681 | + $html_var = $cf['htmlvar_name']; |
|
| 1682 | + |
|
| 1683 | + // Check if there is a location specific filter. |
|
| 1684 | + if(has_filter("geodir_custom_field_output_address_loc_{$location}")){ |
|
| 1685 | + /** |
|
| 1686 | + * Filter the address html by location. |
|
| 1687 | + * |
|
| 1688 | + * @param string $html The html to filter. |
|
| 1689 | + * @param array $cf The custom field array. |
|
| 1690 | + * @since 1.6.6 |
|
| 1691 | + */ |
|
| 1692 | + $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf); |
|
| 1693 | + } |
|
| 1694 | + |
|
| 1695 | + // Check if there is a custom field specific filter. |
|
| 1696 | + if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){ |
|
| 1697 | + /** |
|
| 1698 | + * Filter the address html by individual custom field. |
|
| 1699 | + * |
|
| 1700 | + * @param string $html The html to filter. |
|
| 1701 | + * @param string $location The location to output the html. |
|
| 1702 | + * @param array $cf The custom field array. |
|
| 1703 | + * @since 1.6.6 |
|
| 1704 | + */ |
|
| 1705 | + $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf); |
|
| 1706 | + } |
|
| 1707 | + |
|
| 1708 | + // Check if there is a custom field key specific filter. |
|
| 1709 | + if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){ |
|
| 1710 | + /** |
|
| 1711 | + * Filter the address html by field type key. |
|
| 1712 | + * |
|
| 1713 | + * @param string $html The html to filter. |
|
| 1714 | + * @param string $location The location to output the html. |
|
| 1715 | + * @param array $cf The custom field array. |
|
| 1716 | + * @since 1.6.6 |
|
| 1717 | + */ |
|
| 1718 | + $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1719 | + } |
|
| 1720 | + |
|
| 1721 | + // If not html then we run the standard output. |
|
| 1722 | + if(empty($html)){ |
|
| 1723 | + |
|
| 1724 | + global $preview; |
|
| 1725 | + $html_var = $cf['htmlvar_name'] . '_address'; |
|
| 1726 | + |
|
| 1727 | + if ($cf['extra_fields']) { |
|
| 1728 | + |
|
| 1729 | + $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 1730 | + |
|
| 1731 | + $addition_fields = ''; |
|
| 1732 | + |
|
| 1733 | + if (!empty($extra_fields)) { |
|
| 1734 | + |
|
| 1735 | + $show_city_in_address = false; |
|
| 1736 | + if (isset($extra_fields['show_city']) && $extra_fields['show_city']) { |
|
| 1737 | + $show_city_in_address = true; |
|
| 1738 | + } |
|
| 1739 | + /** |
|
| 1740 | + * Filter "show city in address" value. |
|
| 1741 | + * |
|
| 1742 | + * @since 1.0.0 |
|
| 1743 | + */ |
|
| 1744 | + $show_city_in_address = apply_filters('geodir_show_city_in_address', $show_city_in_address); |
|
| 1745 | + |
|
| 1746 | + |
|
| 1747 | + $show_region_in_address = false; |
|
| 1748 | + if (isset($extra_fields['show_region']) && $extra_fields['show_region']) { |
|
| 1749 | + $show_region_in_address = true; |
|
| 1750 | + } |
|
| 1751 | + /** |
|
| 1752 | + * Filter "show region in address" value. |
|
| 1753 | + * |
|
| 1754 | + * @since 1.6.6 |
|
| 1755 | + */ |
|
| 1756 | + $show_region_in_address = apply_filters('geodir_show_region_in_address', $show_region_in_address); |
|
| 1757 | + |
|
| 1758 | + $show_country_in_address = false; |
|
| 1759 | + if (isset($extra_fields['show_country']) && $extra_fields['show_country']) { |
|
| 1760 | + $show_country_in_address = true; |
|
| 1761 | + } |
|
| 1762 | + /** |
|
| 1763 | + * Filter "show country in address" value. |
|
| 1764 | + * |
|
| 1765 | + * @since 1.6.6 |
|
| 1766 | + */ |
|
| 1767 | + $show_country_in_address = apply_filters('geodir_show_country_in_address', $show_country_in_address); |
|
| 1768 | + |
|
| 1769 | + $show_zip_in_address = false; |
|
| 1770 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
| 1771 | + $show_zip_in_address = true; |
|
| 1772 | + } |
|
| 1773 | + /** |
|
| 1774 | + * Filter "show zip in address" value. |
|
| 1775 | + * |
|
| 1776 | + * @since 1.6.6 |
|
| 1777 | + */ |
|
| 1778 | + $show_zip_in_address = apply_filters('geodir_show_zip_in_address', $show_zip_in_address); |
|
| 1779 | + |
|
| 1780 | + |
|
| 1781 | + } |
|
| 1782 | + |
|
| 1783 | + } |
|
| 1784 | + |
|
| 1785 | + |
|
| 1786 | + if ($post->{$html_var}) { |
|
| 1787 | + |
|
| 1788 | + $field_icon = geodir_field_icon_proccess( $cf ); |
|
| 1789 | + if ( strpos( $field_icon, 'http' ) !== false ) { |
|
| 1790 | + $field_icon_af = ''; |
|
| 1791 | + } elseif ( $field_icon == '' ) { |
|
| 1792 | + $field_icon_af = '<i class="fa fa-home"></i>'; |
|
| 1793 | + } else { |
|
| 1794 | + $field_icon_af = $field_icon; |
|
| 1795 | + $field_icon = ''; |
|
| 1796 | + } |
|
| 1797 | 1797 | |
| 1798 | 1798 | |
| 1799 | 1799 | |
| 1800 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1801 | - $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1802 | - $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ' '; |
|
| 1803 | - $html .= '</span>'; |
|
| 1800 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1801 | + $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1802 | + $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ' '; |
|
| 1803 | + $html .= '</span>'; |
|
| 1804 | 1804 | |
| 1805 | - if ( isset($post->post_address) ) { |
|
| 1806 | - $html .= '<span itemprop="streetAddress">' . $post->post_address . '</span><br>'; |
|
| 1807 | - } |
|
| 1808 | - if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) { |
|
| 1809 | - $html .= '<span itemprop="addressLocality">' . $post->post_city . '</span><br>'; |
|
| 1810 | - } |
|
| 1811 | - if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) { |
|
| 1812 | - $html .= '<span itemprop="addressRegion">' . $post->post_region . '</span><br>'; |
|
| 1813 | - } |
|
| 1814 | - if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) { |
|
| 1815 | - $html .= '<span itemprop="postalCode">' . $post->post_zip . '</span><br>'; |
|
| 1816 | - } |
|
| 1817 | - if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) { |
|
| 1818 | - $html .= '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span><br>'; |
|
| 1819 | - } |
|
| 1820 | - $html .= '</div>'; |
|
| 1805 | + if ( isset($post->post_address) ) { |
|
| 1806 | + $html .= '<span itemprop="streetAddress">' . $post->post_address . '</span><br>'; |
|
| 1807 | + } |
|
| 1808 | + if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) { |
|
| 1809 | + $html .= '<span itemprop="addressLocality">' . $post->post_city . '</span><br>'; |
|
| 1810 | + } |
|
| 1811 | + if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) { |
|
| 1812 | + $html .= '<span itemprop="addressRegion">' . $post->post_region . '</span><br>'; |
|
| 1813 | + } |
|
| 1814 | + if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) { |
|
| 1815 | + $html .= '<span itemprop="postalCode">' . $post->post_zip . '</span><br>'; |
|
| 1816 | + } |
|
| 1817 | + if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) { |
|
| 1818 | + $html .= '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span><br>'; |
|
| 1819 | + } |
|
| 1820 | + $html .= '</div>'; |
|
| 1821 | 1821 | |
| 1822 | - } |
|
| 1822 | + } |
|
| 1823 | 1823 | |
| 1824 | - } |
|
| 1824 | + } |
|
| 1825 | 1825 | |
| 1826 | 1826 | |
| 1827 | - return $html; |
|
| 1827 | + return $html; |
|
| 1828 | 1828 | } |
| 1829 | 1829 | add_filter('geodir_custom_field_output_address','geodir_cf_address',10,3); |
| 1830 | 1830 | \ No newline at end of file |
@@ -13,26 +13,26 @@ discard block |
||
| 13 | 13 | global $wp_query, $current_term, $query; |
| 14 | 14 | |
| 15 | 15 | if (function_exists('geodir_location_geo_home_link')) {
|
| 16 | - remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
|
| 16 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | if (defined('ICL_LANGUAGE_CODE') && defined('DOING_AJAX') && DOING_AJAX){
|
| 20 | - $search_url = icl_get_home_url(); |
|
| 20 | + $search_url = icl_get_home_url(); |
|
| 21 | 21 | } else {
|
| 22 | - $search_url = get_home_url(); |
|
| 22 | + $search_url = get_home_url(); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | $search_url = trailingslashit($search_url); |
| 26 | 26 | |
| 27 | 27 | if (function_exists('geodir_location_geo_home_link')) {
|
| 28 | - add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
|
|
| 28 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
|
|
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
| 32 | 32 | $form_class = 'geodir-listing-search'; |
| 33 | 33 | |
| 34 | 34 | if($new_style){
|
| 35 | - $form_class .= ' gd-search-bar-style'; |
|
| 35 | + $form_class .= ' gd-search-bar-style'; |
|
| 36 | 36 | } |
| 37 | 37 | ?> |
| 38 | 38 | <form class="<?php |
@@ -49,56 +49,56 @@ discard block |
||
| 49 | 49 | <div class="geodir-loc-bar"> |
| 50 | 50 | |
| 51 | 51 | <?php |
| 52 | - /** |
|
| 53 | - * Called inside the search form but before any of the fields. |
|
| 54 | - * |
|
| 55 | - * @since 1.0.0 |
|
| 56 | - */ |
|
| 57 | - do_action('geodir_before_search_form') ?>
|
|
| 52 | + /** |
|
| 53 | + * Called inside the search form but before any of the fields. |
|
| 54 | + * |
|
| 55 | + * @since 1.0.0 |
|
| 56 | + */ |
|
| 57 | + do_action('geodir_before_search_form') ?>
|
|
| 58 | 58 | |
| 59 | 59 | <div class="clearfix geodir-loc-bar-in"> |
| 60 | 60 | <div class="geodir-search"> |
| 61 | 61 | |
| 62 | 62 | <?php |
| 63 | 63 | |
| 64 | - /** |
|
| 65 | - * Adds the input fields to the search form. |
|
| 66 | - * |
|
| 67 | - * @since 1.6.9 |
|
| 68 | - */ |
|
| 69 | - do_action('geodir_search_form_inputs');
|
|
| 64 | + /** |
|
| 65 | + * Adds the input fields to the search form. |
|
| 66 | + * |
|
| 67 | + * @since 1.6.9 |
|
| 68 | + */ |
|
| 69 | + do_action('geodir_search_form_inputs');
|
|
| 70 | 70 | |
| 71 | 71 | |
| 72 | 72 | |
| 73 | - /** |
|
| 74 | - * Called on the GD search form just before the search button. |
|
| 75 | - * |
|
| 76 | - * @since 1.0.0 |
|
| 77 | - */ |
|
| 78 | - do_action('geodir_before_search_button');
|
|
| 73 | + /** |
|
| 74 | + * Called on the GD search form just before the search button. |
|
| 75 | + * |
|
| 76 | + * @since 1.0.0 |
|
| 77 | + */ |
|
| 78 | + do_action('geodir_before_search_button');
|
|
| 79 | 79 | |
| 80 | 80 | |
| 81 | - /** |
|
| 82 | - * Called on the GD search form just after the search button. |
|
| 83 | - * |
|
| 84 | - * @since 1.0.0 |
|
| 85 | - */ |
|
| 86 | - do_action('geodir_after_search_button');
|
|
| 81 | + /** |
|
| 82 | + * Called on the GD search form just after the search button. |
|
| 83 | + * |
|
| 84 | + * @since 1.0.0 |
|
| 85 | + */ |
|
| 86 | + do_action('geodir_after_search_button');
|
|
| 87 | 87 | |
| 88 | 88 | |
| 89 | - ?> |
|
| 89 | + ?> |
|
| 90 | 90 | </div> |
| 91 | 91 | |
| 92 | 92 | |
| 93 | 93 | </div> |
| 94 | 94 | |
| 95 | 95 | <?php |
| 96 | - /** |
|
| 97 | - * Called inside the search form but after all the input fields. |
|
| 98 | - * |
|
| 99 | - * @since 1.0.0 |
|
| 100 | - */ |
|
| 101 | - do_action('geodir_after_search_form') ?>
|
|
| 96 | + /** |
|
| 97 | + * Called inside the search form but after all the input fields. |
|
| 98 | + * |
|
| 99 | + * @since 1.0.0 |
|
| 100 | + */ |
|
| 101 | + do_action('geodir_after_search_form') ?>
|
|
| 102 | 102 | |
| 103 | 103 | |
| 104 | 104 | </div> |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | -if (defined('ICL_LANGUAGE_CODE') && defined('DOING_AJAX') && DOING_AJAX){
|
|
| 19 | +if (defined('ICL_LANGUAGE_CODE') && defined('DOING_AJAX') && DOING_AJAX) {
|
|
| 20 | 20 | $search_url = icl_get_home_url(); |
| 21 | 21 | } else {
|
| 22 | 22 | $search_url = get_home_url(); |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
| 32 | 32 | $form_class = 'geodir-listing-search'; |
| 33 | 33 | |
| 34 | -if($new_style){
|
|
| 34 | +if ($new_style) {
|
|
| 35 | 35 | $form_class .= ' gd-search-bar-style'; |
| 36 | 36 | } |
| 37 | 37 | ?> |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | * @param object|string $post The post object. |
| 162 | 162 | * @param string $post_type The post type. |
| 163 | 163 | * |
| 164 | - * @return object Returns filtered package info as an object. |
|
| 164 | + * @return string Returns filtered package info as an object. |
|
| 165 | 165 | */ |
| 166 | 166 | function geodir_post_package_info( $package_info, $post = '', $post_type = '' ) {
|
| 167 | 167 | $package_info['pid'] = 0; |
@@ -2489,7 +2489,7 @@ discard block |
||
| 2489 | 2489 | * |
| 2490 | 2490 | * @since 1.5.0 |
| 2491 | 2491 | * |
| 2492 | - * @return True if WPML is active else False. |
|
| 2492 | + * @return boolean if WPML is active else False. |
|
| 2493 | 2493 | */ |
| 2494 | 2494 | function geodir_is_wpml() {
|
| 2495 | 2495 | if (function_exists('icl_object_id')) {
|
@@ -2561,7 +2561,6 @@ discard block |
||
| 2561 | 2561 | * @since 1.6.16 Sync reviews if sync comments allowed. |
| 2562 | 2562 | * |
| 2563 | 2563 | * @param int $post_id The Post ID. |
| 2564 | - * @param string $lang Language code for translating post. |
|
| 2565 | 2564 | * @param array $request_info The post details in an array. |
| 2566 | 2565 | */ |
| 2567 | 2566 | function geodir_wpml_duplicate_listing($post_id, $request_info) {
|
@@ -2645,7 +2644,7 @@ discard block |
||
| 2645 | 2644 | * @param int $master_post_id Original Post ID. |
| 2646 | 2645 | * @param int $tr_post_id Translation Post ID. |
| 2647 | 2646 | * @param string $lang Language code for translating post. |
| 2648 | - * @return bool True for success, False for fail. |
|
| 2647 | + * @return boolean|null True for success, False for fail. |
|
| 2649 | 2648 | */ |
| 2650 | 2649 | function geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang) {
|
| 2651 | 2650 | global $sitepress, $wpdb; |
@@ -2888,8 +2887,6 @@ discard block |
||
| 2888 | 2887 | * |
| 2889 | 2888 | * @since 1.6.16 |
| 2890 | 2889 | * |
| 2891 | - * @param string $post_type WP post type or WP texonomy. Ex: gd_place. |
|
| 2892 | - * @param bool $taxonomy Whether $post_type is taxonomy or not. |
|
| 2893 | 2890 | * @return bool True if review star disabled, otherwise false. |
| 2894 | 2891 | */ |
| 2895 | 2892 | function geodir_rating_disabled_post_types() {
|
@@ -2362,10 +2362,10 @@ discard block |
||
| 2362 | 2362 | ?> |
| 2363 | 2363 | <input class="search_text" name="s" |
| 2364 | 2364 | value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) {
|
| 2365 | - echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) ); |
|
| 2366 | - } else {
|
|
| 2367 | - echo $default_search_for_text; |
|
| 2368 | - } ?>" type="text" |
|
| 2365 | + echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) ); |
|
| 2366 | + } else {
|
|
| 2367 | + echo $default_search_for_text; |
|
| 2368 | + } ?>" type="text" |
|
| 2369 | 2369 | onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}"
|
| 2370 | 2370 | onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}"
|
| 2371 | 2371 | onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);"> |
@@ -2492,11 +2492,11 @@ discard block |
||
| 2492 | 2492 | * @return True if WPML is active else False. |
| 2493 | 2493 | */ |
| 2494 | 2494 | function geodir_is_wpml() {
|
| 2495 | - if (function_exists('icl_object_id')) {
|
|
| 2496 | - return true; |
|
| 2497 | - } |
|
| 2495 | + if (function_exists('icl_object_id')) {
|
|
| 2496 | + return true; |
|
| 2497 | + } |
|
| 2498 | 2498 | |
| 2499 | - return false; |
|
| 2499 | + return false; |
|
| 2500 | 2500 | } |
| 2501 | 2501 | |
| 2502 | 2502 | /** |
@@ -2511,9 +2511,9 @@ discard block |
||
| 2511 | 2511 | * @return Language code. |
| 2512 | 2512 | */ |
| 2513 | 2513 | function geodir_get_language_for_element($element_id, $element_type) {
|
| 2514 | - global $sitepress; |
|
| 2514 | + global $sitepress; |
|
| 2515 | 2515 | |
| 2516 | - return $sitepress->get_language_for_element($element_id, $element_type); |
|
| 2516 | + return $sitepress->get_language_for_element($element_id, $element_type); |
|
| 2517 | 2517 | } |
| 2518 | 2518 | |
| 2519 | 2519 | /** |
@@ -2530,28 +2530,28 @@ discard block |
||
| 2530 | 2530 | * Added to fix duplicate transaltion for front end. |
| 2531 | 2531 | */ |
| 2532 | 2532 | function geodir_icl_make_duplicate($master_post_id, $lang, $postarr, $tr_post_id, $after_save = false) {
|
| 2533 | - global $sitepress; |
|
| 2533 | + global $sitepress; |
|
| 2534 | 2534 | |
| 2535 | - $post_type = get_post_type($master_post_id); |
|
| 2536 | - $icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false; |
|
| 2535 | + $post_type = get_post_type($master_post_id); |
|
| 2536 | + $icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false; |
|
| 2537 | 2537 | |
| 2538 | - if (in_array($post_type, geodir_get_posttypes())) {
|
|
| 2539 | - if ($icl_ajx_action || $after_save) {
|
|
| 2540 | - // Duplicate post details |
|
| 2541 | - geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang); |
|
| 2538 | + if (in_array($post_type, geodir_get_posttypes())) {
|
|
| 2539 | + if ($icl_ajx_action || $after_save) {
|
|
| 2540 | + // Duplicate post details |
|
| 2541 | + geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang); |
|
| 2542 | 2542 | |
| 2543 | - // Duplicate taxonomies |
|
| 2544 | - geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang); |
|
| 2543 | + // Duplicate taxonomies |
|
| 2544 | + geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang); |
|
| 2545 | 2545 | |
| 2546 | - // Duplicate post images |
|
| 2547 | - geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang); |
|
| 2548 | - } |
|
| 2546 | + // Duplicate post images |
|
| 2547 | + geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang); |
|
| 2548 | + } |
|
| 2549 | 2549 | |
| 2550 | - // Sync post reviews |
|
| 2551 | - if ($sitepress->get_setting('sync_comments_on_duplicates')) {
|
|
| 2552 | - geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang); |
|
| 2553 | - } |
|
| 2554 | - } |
|
| 2550 | + // Sync post reviews |
|
| 2551 | + if ($sitepress->get_setting('sync_comments_on_duplicates')) {
|
|
| 2552 | + geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang); |
|
| 2553 | + } |
|
| 2554 | + } |
|
| 2555 | 2555 | } |
| 2556 | 2556 | add_filter( 'icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4 ); |
| 2557 | 2557 | |
@@ -2565,15 +2565,15 @@ discard block |
||
| 2565 | 2565 | * @param array $request_info The post details in an array. |
| 2566 | 2566 | */ |
| 2567 | 2567 | function geodir_wpml_duplicate_listing($post_id, $request_info) {
|
| 2568 | - global $sitepress; |
|
| 2568 | + global $sitepress; |
|
| 2569 | 2569 | |
| 2570 | - $icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false; |
|
| 2570 | + $icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false; |
|
| 2571 | 2571 | |
| 2572 | - if (!$icl_ajx_action && in_array(get_post_type($post_id), geodir_get_posttypes()) && $post_duplicates = $sitepress->get_duplicates($post_id)) {
|
|
| 2573 | - foreach ($post_duplicates as $lang => $dup_post_id) {
|
|
| 2574 | - geodir_icl_make_duplicate($post_id, $lang, $request_info, $dup_post_id, true); |
|
| 2575 | - } |
|
| 2576 | - } |
|
| 2572 | + if (!$icl_ajx_action && in_array(get_post_type($post_id), geodir_get_posttypes()) && $post_duplicates = $sitepress->get_duplicates($post_id)) {
|
|
| 2573 | + foreach ($post_duplicates as $lang => $dup_post_id) {
|
|
| 2574 | + geodir_icl_make_duplicate($post_id, $lang, $request_info, $dup_post_id, true); |
|
| 2575 | + } |
|
| 2576 | + } |
|
| 2577 | 2577 | } |
| 2578 | 2578 | |
| 2579 | 2579 | /** |
@@ -2589,17 +2589,17 @@ discard block |
||
| 2589 | 2589 | * @return bool True for success, False for fail. |
| 2590 | 2590 | */ |
| 2591 | 2591 | function geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang) {
|
| 2592 | - global $wpdb; |
|
| 2592 | + global $wpdb; |
|
| 2593 | 2593 | |
| 2594 | - $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
|
|
| 2594 | + $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
|
|
| 2595 | 2595 | |
| 2596 | - if (!empty($reviews)) {
|
|
| 2597 | - foreach ($reviews as $review) {
|
|
| 2598 | - geodir_wpml_duplicate_post_review($review['comment_id'], $master_post_id, $tr_post_id, $lang); |
|
| 2599 | - } |
|
| 2600 | - } |
|
| 2596 | + if (!empty($reviews)) {
|
|
| 2597 | + foreach ($reviews as $review) {
|
|
| 2598 | + geodir_wpml_duplicate_post_review($review['comment_id'], $master_post_id, $tr_post_id, $lang); |
|
| 2599 | + } |
|
| 2600 | + } |
|
| 2601 | 2601 | |
| 2602 | - return false; |
|
| 2602 | + return false; |
|
| 2603 | 2603 | } |
| 2604 | 2604 | |
| 2605 | 2605 | /** |
@@ -2616,22 +2616,22 @@ discard block |
||
| 2616 | 2616 | * @return bool True for success, False for fail. |
| 2617 | 2617 | */ |
| 2618 | 2618 | function geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang) {
|
| 2619 | - global $wpdb, $plugin_prefix; |
|
| 2619 | + global $wpdb, $plugin_prefix; |
|
| 2620 | 2620 | |
| 2621 | - $post_type = get_post_type($master_post_id); |
|
| 2622 | - $post_table = $plugin_prefix . $post_type . '_detail'; |
|
| 2621 | + $post_type = get_post_type($master_post_id); |
|
| 2622 | + $post_table = $plugin_prefix . $post_type . '_detail'; |
|
| 2623 | 2623 | |
| 2624 | - $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
|
|
| 2625 | - $data = (array)$wpdb->get_row($query); |
|
| 2624 | + $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
|
|
| 2625 | + $data = (array)$wpdb->get_row($query); |
|
| 2626 | 2626 | |
| 2627 | - if ( !empty( $data ) ) {
|
|
| 2628 | - $data['post_id'] = $tr_post_id; |
|
| 2629 | - unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']); |
|
| 2630 | - $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
|
|
| 2631 | - return true; |
|
| 2632 | - } |
|
| 2627 | + if ( !empty( $data ) ) {
|
|
| 2628 | + $data['post_id'] = $tr_post_id; |
|
| 2629 | + unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']); |
|
| 2630 | + $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
|
|
| 2631 | + return true; |
|
| 2632 | + } |
|
| 2633 | 2633 | |
| 2634 | - return false; |
|
| 2634 | + return false; |
|
| 2635 | 2635 | } |
| 2636 | 2636 | |
| 2637 | 2637 | /** |
@@ -2648,40 +2648,40 @@ discard block |
||
| 2648 | 2648 | * @return bool True for success, False for fail. |
| 2649 | 2649 | */ |
| 2650 | 2650 | function geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang) {
|
| 2651 | - global $sitepress, $wpdb; |
|
| 2652 | - $post_type = get_post_type($master_post_id); |
|
| 2651 | + global $sitepress, $wpdb; |
|
| 2652 | + $post_type = get_post_type($master_post_id); |
|
| 2653 | 2653 | |
| 2654 | - remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
|
|
| 2654 | + remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
|
|
| 2655 | 2655 | |
| 2656 | - $taxonomies = get_object_taxonomies($post_type); |
|
| 2657 | - foreach ($taxonomies as $taxonomy) {
|
|
| 2658 | - $terms = get_the_terms($master_post_id, $taxonomy); |
|
| 2659 | - $terms_array = array(); |
|
| 2656 | + $taxonomies = get_object_taxonomies($post_type); |
|
| 2657 | + foreach ($taxonomies as $taxonomy) {
|
|
| 2658 | + $terms = get_the_terms($master_post_id, $taxonomy); |
|
| 2659 | + $terms_array = array(); |
|
| 2660 | 2660 | |
| 2661 | - if ($terms) {
|
|
| 2662 | - foreach ($terms as $term) {
|
|
| 2663 | - $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang); |
|
| 2661 | + if ($terms) {
|
|
| 2662 | + foreach ($terms as $term) {
|
|
| 2663 | + $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang); |
|
| 2664 | 2664 | |
| 2665 | - if (!is_null($tr_id)){
|
|
| 2666 | - // not using get_term - unfiltered get_term |
|
| 2667 | - $translated_term = $wpdb->get_row($wpdb->prepare("
|
|
| 2665 | + if (!is_null($tr_id)){
|
|
| 2666 | + // not using get_term - unfiltered get_term |
|
| 2667 | + $translated_term = $wpdb->get_row($wpdb->prepare("
|
|
| 2668 | 2668 | SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy));
|
| 2669 | 2669 | |
| 2670 | - $terms_array[] = $translated_term->term_id; |
|
| 2671 | - } |
|
| 2672 | - } |
|
| 2670 | + $terms_array[] = $translated_term->term_id; |
|
| 2671 | + } |
|
| 2672 | + } |
|
| 2673 | 2673 | |
| 2674 | - if (!is_taxonomy_hierarchical($taxonomy)){
|
|
| 2675 | - $terms_array = array_unique( array_map( 'intval', $terms_array ) ); |
|
| 2676 | - } |
|
| 2674 | + if (!is_taxonomy_hierarchical($taxonomy)){
|
|
| 2675 | + $terms_array = array_unique( array_map( 'intval', $terms_array ) ); |
|
| 2676 | + } |
|
| 2677 | 2677 | |
| 2678 | - wp_set_post_terms($tr_post_id, $terms_array, $taxonomy); |
|
| 2678 | + wp_set_post_terms($tr_post_id, $terms_array, $taxonomy); |
|
| 2679 | 2679 | |
| 2680 | - if ($taxonomy == $post_type . 'category') {
|
|
| 2681 | - geodir_set_postcat_structure($tr_post_id, $post_type . 'category'); |
|
| 2682 | - } |
|
| 2683 | - } |
|
| 2684 | - } |
|
| 2680 | + if ($taxonomy == $post_type . 'category') {
|
|
| 2681 | + geodir_set_postcat_structure($tr_post_id, $post_type . 'category'); |
|
| 2682 | + } |
|
| 2683 | + } |
|
| 2684 | + } |
|
| 2685 | 2685 | } |
| 2686 | 2686 | |
| 2687 | 2687 | /** |
@@ -2697,29 +2697,29 @@ discard block |
||
| 2697 | 2697 | * @return bool True for success, False for fail. |
| 2698 | 2698 | */ |
| 2699 | 2699 | function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
|
| 2700 | - global $wpdb; |
|
| 2700 | + global $wpdb; |
|
| 2701 | 2701 | |
| 2702 | - $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
|
|
| 2703 | - $wpdb->query($query); |
|
| 2702 | + $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
|
|
| 2703 | + $wpdb->query($query); |
|
| 2704 | 2704 | |
| 2705 | - $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
|
|
| 2706 | - $post_images = $wpdb->get_results($query); |
|
| 2705 | + $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
|
|
| 2706 | + $post_images = $wpdb->get_results($query); |
|
| 2707 | 2707 | |
| 2708 | - if ( !empty( $post_images ) ) {
|
|
| 2709 | - foreach ( $post_images as $post_image) {
|
|
| 2710 | - $image_data = (array)$post_image; |
|
| 2711 | - unset($image_data['ID']); |
|
| 2712 | - $image_data['post_id'] = $tr_post_id; |
|
| 2708 | + if ( !empty( $post_images ) ) {
|
|
| 2709 | + foreach ( $post_images as $post_image) {
|
|
| 2710 | + $image_data = (array)$post_image; |
|
| 2711 | + unset($image_data['ID']); |
|
| 2712 | + $image_data['post_id'] = $tr_post_id; |
|
| 2713 | 2713 | |
| 2714 | - $wpdb->insert(GEODIR_ATTACHMENT_TABLE, $image_data); |
|
| 2714 | + $wpdb->insert(GEODIR_ATTACHMENT_TABLE, $image_data); |
|
| 2715 | 2715 | |
| 2716 | - geodir_set_wp_featured_image($tr_post_id); |
|
| 2717 | - } |
|
| 2716 | + geodir_set_wp_featured_image($tr_post_id); |
|
| 2717 | + } |
|
| 2718 | 2718 | |
| 2719 | - return true; |
|
| 2720 | - } |
|
| 2719 | + return true; |
|
| 2720 | + } |
|
| 2721 | 2721 | |
| 2722 | - return false; |
|
| 2722 | + return false; |
|
| 2723 | 2723 | } |
| 2724 | 2724 | |
| 2725 | 2725 | |
@@ -2738,73 +2738,73 @@ discard block |
||
| 2738 | 2738 | * @return bool True for success, False for fail. |
| 2739 | 2739 | */ |
| 2740 | 2740 | function geodir_wpml_duplicate_post_review($master_comment_id, $master_post_id, $tr_post_id, $lang) {
|
| 2741 | - global $wpdb, $plugin_prefix, $sitepress; |
|
| 2742 | - |
|
| 2743 | - $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
|
|
| 2744 | - |
|
| 2745 | - if (empty($review)) {
|
|
| 2746 | - return false; |
|
| 2747 | - } |
|
| 2748 | - if ($review['post_id'] != $master_post_id) {
|
|
| 2749 | - $wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
|
|
| 2750 | - geodir_update_postrating($master_post_id, $post_type); |
|
| 2751 | - } |
|
| 2752 | - |
|
| 2753 | - $tr_comment_id = geodir_wpml_duplicate_comment_exists($tr_post_id, $master_comment_id); |
|
| 2754 | - |
|
| 2755 | - if (empty($tr_comment_id)) {
|
|
| 2756 | - return false; |
|
| 2757 | - } |
|
| 2758 | - |
|
| 2759 | - $post_type = get_post_type($master_post_id); |
|
| 2760 | - $post_table = $plugin_prefix . $post_type . '_detail'; |
|
| 2761 | - |
|
| 2762 | - $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
|
|
| 2763 | - if (empty($translated_post)) {
|
|
| 2764 | - return false; |
|
| 2765 | - } |
|
| 2766 | - |
|
| 2767 | - $review['comment_id'] = $tr_comment_id; |
|
| 2768 | - $review['post_id'] = $tr_post_id; |
|
| 2769 | - $review['post_title'] = $translated_post['post_title']; |
|
| 2770 | - $review['post_city'] = $translated_post['post_city']; |
|
| 2771 | - $review['post_region'] = $translated_post['post_region']; |
|
| 2772 | - $review['post_country'] = $translated_post['post_country']; |
|
| 2773 | - $review['post_latitude'] = $translated_post['post_latitude']; |
|
| 2774 | - $review['post_longitude'] = $translated_post['post_longitude']; |
|
| 2775 | - |
|
| 2776 | - if (isset($review['id'])) {
|
|
| 2777 | - unset($review['id']); |
|
| 2778 | - } |
|
| 2779 | - |
|
| 2780 | - $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
|
|
| 2781 | - |
|
| 2782 | - if ($tr_review_id) { // update review
|
|
| 2783 | - $wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
|
|
| 2784 | - } else { // insert review
|
|
| 2785 | - $wpdb->insert(GEODIR_REVIEW_TABLE, $review); |
|
| 2786 | - $tr_review_id = $wpdb->insert_id; |
|
| 2787 | - } |
|
| 2788 | - |
|
| 2789 | - if ($tr_post_id) {
|
|
| 2790 | - geodir_update_postrating($tr_post_id, $post_type); |
|
| 2741 | + global $wpdb, $plugin_prefix, $sitepress; |
|
| 2742 | + |
|
| 2743 | + $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
|
|
| 2744 | + |
|
| 2745 | + if (empty($review)) {
|
|
| 2746 | + return false; |
|
| 2747 | + } |
|
| 2748 | + if ($review['post_id'] != $master_post_id) {
|
|
| 2749 | + $wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
|
|
| 2750 | + geodir_update_postrating($master_post_id, $post_type); |
|
| 2751 | + } |
|
| 2752 | + |
|
| 2753 | + $tr_comment_id = geodir_wpml_duplicate_comment_exists($tr_post_id, $master_comment_id); |
|
| 2754 | + |
|
| 2755 | + if (empty($tr_comment_id)) {
|
|
| 2756 | + return false; |
|
| 2757 | + } |
|
| 2758 | + |
|
| 2759 | + $post_type = get_post_type($master_post_id); |
|
| 2760 | + $post_table = $plugin_prefix . $post_type . '_detail'; |
|
| 2761 | + |
|
| 2762 | + $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
|
|
| 2763 | + if (empty($translated_post)) {
|
|
| 2764 | + return false; |
|
| 2765 | + } |
|
| 2766 | + |
|
| 2767 | + $review['comment_id'] = $tr_comment_id; |
|
| 2768 | + $review['post_id'] = $tr_post_id; |
|
| 2769 | + $review['post_title'] = $translated_post['post_title']; |
|
| 2770 | + $review['post_city'] = $translated_post['post_city']; |
|
| 2771 | + $review['post_region'] = $translated_post['post_region']; |
|
| 2772 | + $review['post_country'] = $translated_post['post_country']; |
|
| 2773 | + $review['post_latitude'] = $translated_post['post_latitude']; |
|
| 2774 | + $review['post_longitude'] = $translated_post['post_longitude']; |
|
| 2775 | + |
|
| 2776 | + if (isset($review['id'])) {
|
|
| 2777 | + unset($review['id']); |
|
| 2778 | + } |
|
| 2779 | + |
|
| 2780 | + $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
|
|
| 2781 | + |
|
| 2782 | + if ($tr_review_id) { // update review
|
|
| 2783 | + $wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
|
|
| 2784 | + } else { // insert review
|
|
| 2785 | + $wpdb->insert(GEODIR_REVIEW_TABLE, $review); |
|
| 2786 | + $tr_review_id = $wpdb->insert_id; |
|
| 2787 | + } |
|
| 2788 | + |
|
| 2789 | + if ($tr_post_id) {
|
|
| 2790 | + geodir_update_postrating($tr_post_id, $post_type); |
|
| 2791 | 2791 | |
| 2792 | - if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
|
|
| 2793 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
|
|
| 2794 | - $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
|
|
| 2795 | - |
|
| 2796 | - if (!empty($likes)) {
|
|
| 2797 | - foreach ($likes as $like) {
|
|
| 2798 | - unset($like['like_id']); |
|
| 2799 | - $like['comment_id'] = $tr_comment_id; |
|
| 2792 | + if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
|
|
| 2793 | + $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
|
|
| 2794 | + $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
|
|
| 2795 | + |
|
| 2796 | + if (!empty($likes)) {
|
|
| 2797 | + foreach ($likes as $like) {
|
|
| 2798 | + unset($like['like_id']); |
|
| 2799 | + $like['comment_id'] = $tr_comment_id; |
|
| 2800 | 2800 | |
| 2801 | - $wpdb->insert(GEODIR_COMMENTS_REVIEWS_TABLE, $like); |
|
| 2802 | - } |
|
| 2803 | - } |
|
| 2804 | - } |
|
| 2805 | - } |
|
| 2801 | + $wpdb->insert(GEODIR_COMMENTS_REVIEWS_TABLE, $like); |
|
| 2802 | + } |
|
| 2803 | + } |
|
| 2804 | + } |
|
| 2805 | + } |
|
| 2806 | 2806 | |
| 2807 | - return $tr_review_id; |
|
| 2807 | + return $tr_review_id; |
|
| 2808 | 2808 | } |
| 2809 | 2809 | |
| 2810 | 2810 | /** |
@@ -2819,36 +2819,36 @@ discard block |
||
| 2819 | 2819 | * @param int $comment_id The Comment ID. |
| 2820 | 2820 | */ |
| 2821 | 2821 | function gepdir_wpml_sync_comment($comment_id) {
|
| 2822 | - global $wpdb, $sitepress, $gd_wpml_posttypes; |
|
| 2823 | - |
|
| 2824 | - if (empty($gd_post_types)) {
|
|
| 2825 | - $gd_wpml_posttypes = geodir_get_posttypes(); |
|
| 2826 | - } |
|
| 2827 | - |
|
| 2828 | - $comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$wpdb->comments} WHERE comment_ID=%d", $comment_id), ARRAY_A);
|
|
| 2829 | - if (empty($comment)) {
|
|
| 2830 | - return; |
|
| 2831 | - } |
|
| 2832 | - |
|
| 2833 | - $post_id = $comment['comment_post_ID']; |
|
| 2834 | - $post_type = $post_id ? get_post_type($post_id) : NULL; |
|
| 2835 | - |
|
| 2836 | - if (!($post_type && in_array($post_type, $gd_wpml_posttypes))) {
|
|
| 2837 | - return; |
|
| 2838 | - } |
|
| 2839 | - |
|
| 2840 | - $post_duplicates = $sitepress->get_duplicates($post_id); |
|
| 2841 | - if (empty($post_duplicates)) {
|
|
| 2842 | - return; |
|
| 2843 | - } |
|
| 2844 | - |
|
| 2845 | - foreach ($post_duplicates as $lang => $dup_post_id) {
|
|
| 2846 | - if (empty($comment['comment_parent'])) {
|
|
| 2847 | - geodir_wpml_duplicate_post_review($comment_id, $post_id, $dup_post_id, $lang); |
|
| 2848 | - } |
|
| 2849 | - } |
|
| 2822 | + global $wpdb, $sitepress, $gd_wpml_posttypes; |
|
| 2823 | + |
|
| 2824 | + if (empty($gd_post_types)) {
|
|
| 2825 | + $gd_wpml_posttypes = geodir_get_posttypes(); |
|
| 2826 | + } |
|
| 2827 | + |
|
| 2828 | + $comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$wpdb->comments} WHERE comment_ID=%d", $comment_id), ARRAY_A);
|
|
| 2829 | + if (empty($comment)) {
|
|
| 2830 | + return; |
|
| 2831 | + } |
|
| 2832 | + |
|
| 2833 | + $post_id = $comment['comment_post_ID']; |
|
| 2834 | + $post_type = $post_id ? get_post_type($post_id) : NULL; |
|
| 2835 | + |
|
| 2836 | + if (!($post_type && in_array($post_type, $gd_wpml_posttypes))) {
|
|
| 2837 | + return; |
|
| 2838 | + } |
|
| 2839 | + |
|
| 2840 | + $post_duplicates = $sitepress->get_duplicates($post_id); |
|
| 2841 | + if (empty($post_duplicates)) {
|
|
| 2842 | + return; |
|
| 2843 | + } |
|
| 2844 | + |
|
| 2845 | + foreach ($post_duplicates as $lang => $dup_post_id) {
|
|
| 2846 | + if (empty($comment['comment_parent'])) {
|
|
| 2847 | + geodir_wpml_duplicate_post_review($comment_id, $post_id, $dup_post_id, $lang); |
|
| 2848 | + } |
|
| 2849 | + } |
|
| 2850 | 2850 | |
| 2851 | - return true; |
|
| 2851 | + return true; |
|
| 2852 | 2852 | } |
| 2853 | 2853 | |
| 2854 | 2854 | /** |
@@ -2863,11 +2863,11 @@ discard block |
||
| 2863 | 2863 | * @return int The duplicate comment ID. |
| 2864 | 2864 | */ |
| 2865 | 2865 | function geodir_wpml_duplicate_comment_exists($dup_post_id, $original_cid) {
|
| 2866 | - global $wpdb; |
|
| 2866 | + global $wpdb; |
|
| 2867 | 2867 | |
| 2868 | - $duplicate = $wpdb->get_var( |
|
| 2869 | - $wpdb->prepare( |
|
| 2870 | - " SELECT comm.comment_ID |
|
| 2868 | + $duplicate = $wpdb->get_var( |
|
| 2869 | + $wpdb->prepare( |
|
| 2870 | + " SELECT comm.comment_ID |
|
| 2871 | 2871 | FROM {$wpdb->comments} comm
|
| 2872 | 2872 | JOIN {$wpdb->commentmeta} cm
|
| 2873 | 2873 | ON comm.comment_ID = cm.comment_id |
@@ -2875,12 +2875,12 @@ discard block |
||
| 2875 | 2875 | AND cm.meta_key = '_icl_duplicate_of' |
| 2876 | 2876 | AND cm.meta_value = %d |
| 2877 | 2877 | LIMIT 1", |
| 2878 | - $dup_post_id, |
|
| 2879 | - $original_cid |
|
| 2880 | - ) |
|
| 2881 | - ); |
|
| 2878 | + $dup_post_id, |
|
| 2879 | + $original_cid |
|
| 2880 | + ) |
|
| 2881 | + ); |
|
| 2882 | 2882 | |
| 2883 | - return $duplicate; |
|
| 2883 | + return $duplicate; |
|
| 2884 | 2884 | } |
| 2885 | 2885 | |
| 2886 | 2886 | /** |
@@ -52,31 +52,31 @@ discard block |
||
| 52 | 52 | jQuery(listSel).children('li').switchClass('gridview_onehalf gridview_onethird gridview_onefourth', 'gridview_onefifth', 600);
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - jQuery.post("<?php echo geodir_get_ajax_url();?>&gd_listing_view=" + val, function (data) {
|
|
| 55 | + jQuery.post("<?php echo geodir_get_ajax_url(); ?>&gd_listing_view=" + val, function (data) {
|
|
| 56 | 56 | //alert(data ); |
| 57 | 57 | }); |
| 58 | 58 | } |
| 59 | 59 | </script> |
| 60 | 60 | <div class="geodir-list-view-select"> |
| 61 | 61 | <select name="gd_list_view" id="gd_list_view" onchange="geodir_list_view_select(this);"> |
| 62 | - <?php $listing_view = (int) $gd_session->get( 'gd_listing_view' ); ?> |
|
| 63 | - <option value=""><?php _e( 'View:', 'geodirectory' ); ?></option> |
|
| 62 | + <?php $listing_view = (int) $gd_session->get('gd_listing_view'); ?>
|
|
| 63 | + <option value=""><?php _e('View:', 'geodirectory'); ?></option>
|
|
| 64 | 64 | <option |
| 65 | - value="1" <?php selected( 1, $listing_view ); ?>><?php _e( 'View: List', 'geodirectory' ); ?></option> |
|
| 65 | + value="1" <?php selected(1, $listing_view); ?>><?php _e('View: List', 'geodirectory'); ?></option>
|
|
| 66 | 66 | <option |
| 67 | - value="2" <?php selected( 2, $listing_view ); ?>><?php _e( 'View: Grid 2', 'geodirectory' ); ?></option> |
|
| 67 | + value="2" <?php selected(2, $listing_view); ?>><?php _e('View: Grid 2', 'geodirectory'); ?></option>
|
|
| 68 | 68 | <option |
| 69 | - value="3" <?php selected( 3, $listing_view ); ?>><?php _e( 'View: Grid 3', 'geodirectory' ); ?></option> |
|
| 69 | + value="3" <?php selected(3, $listing_view); ?>><?php _e('View: Grid 3', 'geodirectory'); ?></option>
|
|
| 70 | 70 | <option |
| 71 | - value="4" <?php selected( 4, $listing_view ); ?>><?php _e( 'View: Grid 4', 'geodirectory' ); ?></option> |
|
| 71 | + value="4" <?php selected(4, $listing_view); ?>><?php _e('View: Grid 4', 'geodirectory'); ?></option>
|
|
| 72 | 72 | <option |
| 73 | - value="5" <?php selected( 5, $listing_view ); ?>><?php _e( 'View: Grid 5', 'geodirectory' ); ?></option> |
|
| 73 | + value="5" <?php selected(5, $listing_view); ?>><?php _e('View: Grid 5', 'geodirectory'); ?></option>
|
|
| 74 | 74 | </select> |
| 75 | 75 | </div> |
| 76 | 76 | <?php |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | -add_action( 'geodir_before_listing', 'geodir_list_view_select', 100 ); |
|
| 79 | +add_action('geodir_before_listing', 'geodir_list_view_select', 100);
|
|
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | 82 | * Limit the listing excerpt. |
@@ -91,9 +91,9 @@ discard block |
||
| 91 | 91 | * @global object $post The current post object. |
| 92 | 92 | * @return string The modified excerpt. |
| 93 | 93 | */ |
| 94 | -function geodir_max_excerpt( $charlength ) {
|
|
| 94 | +function geodir_max_excerpt($charlength) {
|
|
| 95 | 95 | global $post; |
| 96 | - if ( $charlength == '0' ) {
|
|
| 96 | + if ($charlength == '0') {
|
|
| 97 | 97 | return; |
| 98 | 98 | } |
| 99 | 99 | $out = ''; |
@@ -101,46 +101,46 @@ discard block |
||
| 101 | 101 | $temp_post = $post; |
| 102 | 102 | $excerpt = get_the_excerpt(); |
| 103 | 103 | |
| 104 | - $charlength ++; |
|
| 105 | - $excerpt_more = function_exists( 'geodirf_excerpt_more' ) ? geodirf_excerpt_more( '' ) : geodir_excerpt_more( '' ); |
|
| 106 | - if ( mb_strlen( $excerpt ) > $charlength ) {
|
|
| 107 | - if ( mb_strlen( $excerpt_more ) > 0 && mb_strpos( $excerpt, $excerpt_more ) !== false ) {
|
|
| 108 | - $excut = - ( mb_strlen( $excerpt_more ) ); |
|
| 109 | - $subex = mb_substr( $excerpt, 0, $excut ); |
|
| 110 | - if ( $charlength > 0 && mb_strlen( $subex ) > $charlength ) {
|
|
| 111 | - $subex = mb_substr( $subex, 0, $charlength ); |
|
| 104 | + $charlength++; |
|
| 105 | + $excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
|
|
| 106 | + if (mb_strlen($excerpt) > $charlength) {
|
|
| 107 | + if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
|
|
| 108 | + $excut = - (mb_strlen($excerpt_more)); |
|
| 109 | + $subex = mb_substr($excerpt, 0, $excut); |
|
| 110 | + if ($charlength > 0 && mb_strlen($subex) > $charlength) {
|
|
| 111 | + $subex = mb_substr($subex, 0, $charlength); |
|
| 112 | 112 | } |
| 113 | 113 | $out .= $subex; |
| 114 | 114 | } else {
|
| 115 | - $subex = mb_substr( $excerpt, 0, $charlength - 5 ); |
|
| 116 | - $exwords = explode( ' ', $subex ); |
|
| 117 | - $excut = - ( mb_strlen( $exwords[ count( $exwords ) - 1 ] ) ); |
|
| 118 | - if ( $excut < 0 ) {
|
|
| 119 | - $out .= mb_substr( $subex, 0, $excut ); |
|
| 115 | + $subex = mb_substr($excerpt, 0, $charlength - 5); |
|
| 116 | + $exwords = explode(' ', $subex);
|
|
| 117 | + $excut = - (mb_strlen($exwords[count($exwords) - 1])); |
|
| 118 | + if ($excut < 0) {
|
|
| 119 | + $out .= mb_substr($subex, 0, $excut); |
|
| 120 | 120 | } else {
|
| 121 | 121 | $out .= $subex; |
| 122 | 122 | } |
| 123 | 123 | } |
| 124 | - $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
| 124 | + $out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">'; |
|
| 125 | 125 | /** |
| 126 | 126 | * Filter excerpt read more text. |
| 127 | 127 | * |
| 128 | 128 | * @since 1.0.0 |
| 129 | 129 | */ |
| 130 | - $out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) ); |
|
| 130 | + $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
|
|
| 131 | 131 | $out .= '</a>'; |
| 132 | 132 | |
| 133 | 133 | } else {
|
| 134 | - if ( mb_strlen( $excerpt_more ) > 0 && mb_strpos( $excerpt, $excerpt_more ) !== false ) {
|
|
| 135 | - $excut = - ( mb_strlen( $excerpt_more ) ); |
|
| 136 | - $out .= mb_substr( $excerpt, 0, $excut ); |
|
| 137 | - $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
| 134 | + if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
|
|
| 135 | + $excut = - (mb_strlen($excerpt_more)); |
|
| 136 | + $out .= mb_substr($excerpt, 0, $excut); |
|
| 137 | + $out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">'; |
|
| 138 | 138 | /** |
| 139 | 139 | * Filter excerpt read more text. |
| 140 | 140 | * |
| 141 | 141 | * @since 1.0.0 |
| 142 | 142 | */ |
| 143 | - $out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) ); |
|
| 143 | + $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
|
|
| 144 | 144 | $out .= '</a>'; |
| 145 | 145 | } else {
|
| 146 | 146 | $out .= $excerpt; |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | * |
| 164 | 164 | * @return object Returns filtered package info as an object. |
| 165 | 165 | */ |
| 166 | -function geodir_post_package_info( $package_info, $post = '', $post_type = '' ) {
|
|
| 166 | +function geodir_post_package_info($package_info, $post = '', $post_type = '') {
|
|
| 167 | 167 | $package_info['pid'] = 0; |
| 168 | 168 | $package_info['days'] = 0; |
| 169 | 169 | $package_info['amount'] = 0; |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | * @param object|string $post The post object. |
| 193 | 193 | * @param string $post_type The post type. |
| 194 | 194 | */ |
| 195 | - return (object) apply_filters( 'geodir_post_package_info', $package_info, $post, $post_type ); |
|
| 195 | + return (object) apply_filters('geodir_post_package_info', $package_info, $post, $post_type);
|
|
| 196 | 196 | |
| 197 | 197 | } |
| 198 | 198 | |
@@ -220,11 +220,11 @@ discard block |
||
| 220 | 220 | * |
| 221 | 221 | * } |
| 222 | 222 | */ |
| 223 | -function geodir_send_inquiry( $request ) {
|
|
| 223 | +function geodir_send_inquiry($request) {
|
|
| 224 | 224 | global $wpdb; |
| 225 | 225 | |
| 226 | 226 | // strip slashes from text |
| 227 | - $request = ! empty( $request ) ? stripslashes_deep( $request ) : $request; |
|
| 227 | + $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
| 228 | 228 | |
| 229 | 229 | $yourname = $request['inq_name']; |
| 230 | 230 | $youremail = $request['inq_email']; |
@@ -235,26 +235,26 @@ discard block |
||
| 235 | 235 | $author_id = ''; |
| 236 | 236 | $post_title = ''; |
| 237 | 237 | |
| 238 | - if ( $request['pid'] ) {
|
|
| 238 | + if ($request['pid']) {
|
|
| 239 | 239 | |
| 240 | 240 | $productinfosql = $wpdb->prepare( |
| 241 | 241 | "select ID,post_author,post_title from $wpdb->posts where ID =%d", |
| 242 | - array( $request['pid'] ) |
|
| 242 | + array($request['pid']) |
|
| 243 | 243 | ); |
| 244 | - $productinfo = $wpdb->get_row( $productinfosql ); |
|
| 244 | + $productinfo = $wpdb->get_row($productinfosql); |
|
| 245 | 245 | |
| 246 | 246 | $author_id = $productinfo->post_author; |
| 247 | 247 | $post_title = $productinfo->post_title; |
| 248 | 248 | } |
| 249 | 249 | |
| 250 | - $post_title = '<a href="' . get_permalink( $pid ) . '">' . $post_title . '</a>'; |
|
| 250 | + $post_title = '<a href="'.get_permalink($pid).'">'.$post_title.'</a>'; |
|
| 251 | 251 | |
| 252 | - $user_info = get_userdata( $author_id ); |
|
| 253 | - $to_email = geodir_get_post_meta( $pid, 'geodir_email', true ); |
|
| 254 | - $to_name = geodir_get_client_name( $author_id ); |
|
| 252 | + $user_info = get_userdata($author_id); |
|
| 253 | + $to_email = geodir_get_post_meta($pid, 'geodir_email', true); |
|
| 254 | + $to_name = geodir_get_client_name($author_id); |
|
| 255 | 255 | |
| 256 | - if ( $to_email == '' ) {
|
|
| 257 | - $to_email = get_option( 'admin_email' ); |
|
| 256 | + if ($to_email == '') {
|
|
| 257 | + $to_email = get_option('admin_email');
|
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | /** |
@@ -275,10 +275,10 @@ discard block |
||
| 275 | 275 | * } |
| 276 | 276 | * @param string $type The form type, default: `Enquiry`. |
| 277 | 277 | */ |
| 278 | - do_action( 'geodir_after_send_enquiry', $request, 'Enquiry' ); |
|
| 278 | + do_action('geodir_after_send_enquiry', $request, 'Enquiry');
|
|
| 279 | 279 | |
| 280 | 280 | $client_message = $frnd_comments; |
| 281 | - $client_message .= '<br>' . __( 'From :', 'geodirectory' ) . ' ' . $yourname . '<br>' . __( 'Phone :', 'geodirectory' ) . ' ' . $inq_phone . '<br>' . __( 'Email :', 'geodirectory' ) . ' ' . $youremail . '<br><br>' . __( 'Sent from', 'geodirectory' ) . ' - <b><a href="' . trailingslashit( home_url() ) . '">' . get_option( 'blogname' ) . '</a></b>.'; |
|
| 281 | + $client_message .= '<br>'.__('From :', 'geodirectory').' '.$yourname.'<br>'.__('Phone :', 'geodirectory').' '.$inq_phone.'<br>'.__('Email :', 'geodirectory').' '.$youremail.'<br><br>'.__('Sent from', 'geodirectory').' - <b><a href="'.trailingslashit(home_url()).'">'.get_option('blogname').'</a></b>.';
|
|
| 282 | 282 | /** |
| 283 | 283 | * Filter client message text. |
| 284 | 284 | * |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | * |
| 287 | 287 | * @param string $client_message Client message text. |
| 288 | 288 | */ |
| 289 | - $client_message = apply_filters( 'geodir_inquiry_email_msg', $client_message ); |
|
| 289 | + $client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
|
|
| 290 | 290 | |
| 291 | 291 | /** |
| 292 | 292 | * Called before the send enquiry email is sent. |
@@ -305,12 +305,12 @@ discard block |
||
| 305 | 305 | * |
| 306 | 306 | * } |
| 307 | 307 | */ |
| 308 | - do_action( 'geodir_before_send_enquiry_email', $request ); |
|
| 309 | - if ( $to_email ) {
|
|
| 308 | + do_action('geodir_before_send_enquiry_email', $request);
|
|
| 309 | + if ($to_email) {
|
|
| 310 | 310 | // strip slashes message |
| 311 | - $client_message = stripslashes_deep( $client_message ); |
|
| 311 | + $client_message = stripslashes_deep($client_message); |
|
| 312 | 312 | |
| 313 | - geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid'] );//To client email |
|
| 313 | + geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']); //To client email |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | /** |
@@ -330,12 +330,12 @@ discard block |
||
| 330 | 330 | * |
| 331 | 331 | * } |
| 332 | 332 | */ |
| 333 | - do_action( 'geodir_after_send_enquiry_email', $request ); |
|
| 334 | - $url = get_permalink( $pid ); |
|
| 335 | - if ( strstr( $url, '?' ) ) {
|
|
| 336 | - $url = $url . "&send_inquiry=success"; |
|
| 333 | + do_action('geodir_after_send_enquiry_email', $request);
|
|
| 334 | + $url = get_permalink($pid); |
|
| 335 | + if (strstr($url, '?')) {
|
|
| 336 | + $url = $url."&send_inquiry=success"; |
|
| 337 | 337 | } else {
|
| 338 | - $url = $url . "?send_inquiry=success"; |
|
| 338 | + $url = $url."?send_inquiry=success"; |
|
| 339 | 339 | } |
| 340 | 340 | /** |
| 341 | 341 | * Filter redirect url after the send enquiry email is sent. |
@@ -344,8 +344,8 @@ discard block |
||
| 344 | 344 | * |
| 345 | 345 | * @param string $url Redirect url. |
| 346 | 346 | */ |
| 347 | - $url = apply_filters( 'geodir_send_enquiry_after_submit_redirect', $url ); |
|
| 348 | - wp_redirect( $url ); |
|
| 347 | + $url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
|
|
| 348 | + wp_redirect($url); |
|
| 349 | 349 | gd_die(); |
| 350 | 350 | |
| 351 | 351 | } |
@@ -374,11 +374,11 @@ discard block |
||
| 374 | 374 | * } |
| 375 | 375 | * @global object $wpdb WordPress Database object. |
| 376 | 376 | */ |
| 377 | -function geodir_send_friend( $request ) {
|
|
| 377 | +function geodir_send_friend($request) {
|
|
| 378 | 378 | global $wpdb; |
| 379 | 379 | |
| 380 | 380 | // strip slashes from text |
| 381 | - $request = ! empty( $request ) ? stripslashes_deep( $request ) : $request; |
|
| 381 | + $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
| 382 | 382 | |
| 383 | 383 | $yourname = $request['yourname']; |
| 384 | 384 | $youremail = $request['youremail']; |
@@ -387,13 +387,13 @@ discard block |
||
| 387 | 387 | $pid = $request['pid']; |
| 388 | 388 | $to_email = $request['to_email']; |
| 389 | 389 | $to_name = $request['to_name']; |
| 390 | - if ( $request['pid'] ) {
|
|
| 390 | + if ($request['pid']) {
|
|
| 391 | 391 | $productinfosql = $wpdb->prepare( |
| 392 | 392 | "select ID,post_title from $wpdb->posts where ID =%d", |
| 393 | - array( $request['pid'] ) |
|
| 393 | + array($request['pid']) |
|
| 394 | 394 | ); |
| 395 | - $productinfo = $wpdb->get_results( $productinfosql ); |
|
| 396 | - foreach ( $productinfo as $productinfoObj ) {
|
|
| 395 | + $productinfo = $wpdb->get_results($productinfosql); |
|
| 396 | + foreach ($productinfo as $productinfoObj) {
|
|
| 397 | 397 | $post_title = $productinfoObj->post_title; |
| 398 | 398 | } |
| 399 | 399 | } |
@@ -417,8 +417,8 @@ discard block |
||
| 417 | 417 | * |
| 418 | 418 | * } |
| 419 | 419 | */ |
| 420 | - do_action( 'geodir_before_send_to_friend_email', $request ); |
|
| 421 | - geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid'] );//To client email |
|
| 420 | + do_action('geodir_before_send_to_friend_email', $request);
|
|
| 421 | + geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']); //To client email |
|
| 422 | 422 | |
| 423 | 423 | /** |
| 424 | 424 | * Called after the send to friend email is sent. |
@@ -439,13 +439,13 @@ discard block |
||
| 439 | 439 | * |
| 440 | 440 | * } |
| 441 | 441 | */ |
| 442 | - do_action( 'geodir_after_send_to_friend_email', $request ); |
|
| 442 | + do_action('geodir_after_send_to_friend_email', $request);
|
|
| 443 | 443 | |
| 444 | - $url = get_permalink( $pid ); |
|
| 445 | - if ( strstr( $url, '?' ) ) {
|
|
| 446 | - $url = $url . "&sendtofrnd=success"; |
|
| 444 | + $url = get_permalink($pid); |
|
| 445 | + if (strstr($url, '?')) {
|
|
| 446 | + $url = $url."&sendtofrnd=success"; |
|
| 447 | 447 | } else {
|
| 448 | - $url = $url . "?sendtofrnd=success"; |
|
| 448 | + $url = $url."?sendtofrnd=success"; |
|
| 449 | 449 | } |
| 450 | 450 | /** |
| 451 | 451 | * Filter redirect url after the send to friend email is sent. |
@@ -454,8 +454,8 @@ discard block |
||
| 454 | 454 | * |
| 455 | 455 | * @param string $url Redirect url. |
| 456 | 456 | */ |
| 457 | - $url = apply_filters( 'geodir_send_to_friend_after_submit_redirect', $url ); |
|
| 458 | - wp_redirect( $url ); |
|
| 457 | + $url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
|
|
| 458 | + wp_redirect($url); |
|
| 459 | 459 | gd_die(); |
| 460 | 460 | } |
| 461 | 461 | |
@@ -469,8 +469,8 @@ discard block |
||
| 469 | 469 | * |
| 470 | 470 | * @param string $hash_key |
| 471 | 471 | */ |
| 472 | -function geodir_before_tab_content( $hash_key ) {
|
|
| 473 | - switch ( $hash_key ) {
|
|
| 472 | +function geodir_before_tab_content($hash_key) {
|
|
| 473 | + switch ($hash_key) {
|
|
| 474 | 474 | case 'post_info' : |
| 475 | 475 | echo '<div class="geodir-company_info field-group">'; |
| 476 | 476 | break; |
@@ -480,7 +480,7 @@ discard block |
||
| 480 | 480 | * |
| 481 | 481 | * @since 1.0.0 |
| 482 | 482 | */ |
| 483 | - echo ' <div id="' . apply_filters( 'geodir_post_gallery_id', 'geodir-post-gallery' ) . '" class="clearfix" >'; |
|
| 483 | + echo ' <div id="'.apply_filters('geodir_post_gallery_id', 'geodir-post-gallery').'" class="clearfix" >';
|
|
| 484 | 484 | break; |
| 485 | 485 | case 'reviews' : |
| 486 | 486 | echo '<div id="reviews-wrap" class="clearfix"> '; |
@@ -504,8 +504,8 @@ discard block |
||
| 504 | 504 | * |
| 505 | 505 | * @param string $hash_key |
| 506 | 506 | */ |
| 507 | -function geodir_after_tab_content( $hash_key ) {
|
|
| 508 | - switch ( $hash_key ) {
|
|
| 507 | +function geodir_after_tab_content($hash_key) {
|
|
| 508 | + switch ($hash_key) {
|
|
| 509 | 509 | case 'post_info' : |
| 510 | 510 | echo '</div>'; |
| 511 | 511 | break; |
@@ -536,25 +536,25 @@ discard block |
||
| 536 | 536 | * @global object $wpdb WordPress Database object. |
| 537 | 537 | * @return bool|null|string Returns default sort results, when the post type is valid. Otherwise returns false. |
| 538 | 538 | */ |
| 539 | -function geodir_get_posts_default_sort( $post_type ) {
|
|
| 539 | +function geodir_get_posts_default_sort($post_type) {
|
|
| 540 | 540 | |
| 541 | 541 | global $wpdb; |
| 542 | 542 | |
| 543 | - if ( $post_type != '' ) {
|
|
| 543 | + if ($post_type != '') {
|
|
| 544 | 544 | |
| 545 | 545 | $all_postypes = geodir_get_posttypes(); |
| 546 | 546 | |
| 547 | - if ( ! in_array( $post_type, $all_postypes ) ) {
|
|
| 547 | + if (!in_array($post_type, $all_postypes)) {
|
|
| 548 | 548 | return false; |
| 549 | 549 | } |
| 550 | 550 | |
| 551 | - $sort_field_info = $wpdb->get_var( $wpdb->prepare( "select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type= %s and is_active=%d and is_default=%d", array( |
|
| 551 | + $sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where post_type= %s and is_active=%d and is_default=%d", array(
|
|
| 552 | 552 | $post_type, |
| 553 | 553 | 1, |
| 554 | 554 | 1 |
| 555 | - ) ) ); |
|
| 555 | + ))); |
|
| 556 | 556 | |
| 557 | - if ( ! empty( $sort_field_info ) ) {
|
|
| 557 | + if (!empty($sort_field_info)) {
|
|
| 558 | 558 | return $sort_field_info; |
| 559 | 559 | } |
| 560 | 560 | |
@@ -574,20 +574,20 @@ discard block |
||
| 574 | 574 | * @global object $wpdb WordPress Database object. |
| 575 | 575 | * @return bool|mixed|void Returns sort results, when the post type is valid. Otherwise returns false. |
| 576 | 576 | */ |
| 577 | -function geodir_get_sort_options( $post_type ) {
|
|
| 577 | +function geodir_get_sort_options($post_type) {
|
|
| 578 | 578 | global $wpdb; |
| 579 | 579 | |
| 580 | - if ( $post_type != '' ) {
|
|
| 580 | + if ($post_type != '') {
|
|
| 581 | 581 | $all_postypes = geodir_get_posttypes(); |
| 582 | 582 | |
| 583 | - if ( ! in_array( $post_type, $all_postypes ) ) {
|
|
| 583 | + if (!in_array($post_type, $all_postypes)) {
|
|
| 584 | 584 | return false; |
| 585 | 585 | } |
| 586 | 586 | |
| 587 | - $sort_field_info = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array( |
|
| 587 | + $sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array(
|
|
| 588 | 588 | $post_type, |
| 589 | 589 | 1 |
| 590 | - ) ) ); |
|
| 590 | + ))); |
|
| 591 | 591 | |
| 592 | 592 | /** |
| 593 | 593 | * Filter post sort options. |
@@ -597,7 +597,7 @@ discard block |
||
| 597 | 597 | * @param array $sort_field_info Unfiltered sort field array. |
| 598 | 598 | * @param string $post_type Post type. |
| 599 | 599 | */ |
| 600 | - return apply_filters( 'geodir_get_sort_options', $sort_field_info, $post_type ); |
|
| 600 | + return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
|
|
| 601 | 601 | } |
| 602 | 602 | |
| 603 | 603 | } |
@@ -618,63 +618,63 @@ discard block |
||
| 618 | 618 | * |
| 619 | 619 | * @since 1.4.4 |
| 620 | 620 | */ |
| 621 | - if ( is_search() ) {
|
|
| 621 | + if (is_search()) {
|
|
| 622 | 622 | return; |
| 623 | 623 | } |
| 624 | 624 | |
| 625 | 625 | $sort_by = ''; |
| 626 | 626 | |
| 627 | - if ( isset( $_REQUEST['sort_by'] ) ) {
|
|
| 627 | + if (isset($_REQUEST['sort_by'])) {
|
|
| 628 | 628 | $sort_by = $_REQUEST['sort_by']; |
| 629 | 629 | } |
| 630 | 630 | |
| 631 | 631 | $gd_post_type = geodir_get_current_posttype(); |
| 632 | 632 | |
| 633 | - $sort_options = geodir_get_sort_options( $gd_post_type ); |
|
| 633 | + $sort_options = geodir_get_sort_options($gd_post_type); |
|
| 634 | 634 | |
| 635 | 635 | |
| 636 | 636 | $sort_field_options = ''; |
| 637 | 637 | |
| 638 | - if ( ! empty( $sort_options ) ) {
|
|
| 639 | - foreach ( $sort_options as $sort ) {
|
|
| 640 | - $sort = stripslashes_deep( $sort ); // strip slashes |
|
| 638 | + if (!empty($sort_options)) {
|
|
| 639 | + foreach ($sort_options as $sort) {
|
|
| 640 | + $sort = stripslashes_deep($sort); // strip slashes |
|
| 641 | 641 | |
| 642 | - $label = __( $sort->site_title, 'geodirectory' ); |
|
| 642 | + $label = __($sort->site_title, 'geodirectory'); |
|
| 643 | 643 | |
| 644 | - if ( $sort->field_type == 'random' ) {
|
|
| 644 | + if ($sort->field_type == 'random') {
|
|
| 645 | 645 | $key = $sort->field_type; |
| 646 | - ( $sort_by == $key || ( $sort->is_default == '1' && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 647 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
| 646 | + ($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 647 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
|
|
| 648 | 648 | } |
| 649 | 649 | |
| 650 | - if ( $sort->htmlvar_name == 'comment_count' ) {
|
|
| 650 | + if ($sort->htmlvar_name == 'comment_count') {
|
|
| 651 | 651 | $sort->htmlvar_name = 'rating_count'; |
| 652 | 652 | } |
| 653 | 653 | |
| 654 | - if ( $sort->sort_asc ) {
|
|
| 655 | - $key = $sort->htmlvar_name . '_asc'; |
|
| 654 | + if ($sort->sort_asc) {
|
|
| 655 | + $key = $sort->htmlvar_name.'_asc'; |
|
| 656 | 656 | $label = $sort->site_title; |
| 657 | - if ( $sort->asc_title ) {
|
|
| 657 | + if ($sort->asc_title) {
|
|
| 658 | 658 | $label = $sort->asc_title; |
| 659 | 659 | } |
| 660 | - ( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 661 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
| 660 | + ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 661 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
|
|
| 662 | 662 | } |
| 663 | 663 | |
| 664 | - if ( $sort->sort_desc ) {
|
|
| 665 | - $key = $sort->htmlvar_name . '_desc'; |
|
| 664 | + if ($sort->sort_desc) {
|
|
| 665 | + $key = $sort->htmlvar_name.'_desc'; |
|
| 666 | 666 | $label = $sort->site_title; |
| 667 | - if ( $sort->desc_title ) {
|
|
| 667 | + if ($sort->desc_title) {
|
|
| 668 | 668 | $label = $sort->desc_title; |
| 669 | 669 | } |
| 670 | - ( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 671 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>'; |
|
| 670 | + ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 671 | + $sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
|
|
| 672 | 672 | } |
| 673 | 673 | |
| 674 | 674 | } |
| 675 | 675 | } |
| 676 | 676 | |
| 677 | - if ( $sort_field_options != '' ) {
|
|
| 677 | + if ($sort_field_options != '') {
|
|
| 678 | 678 | |
| 679 | 679 | ?> |
| 680 | 680 | |
@@ -683,9 +683,9 @@ discard block |
||
| 683 | 683 | <select name="sort_by" id="sort_by" onchange="javascript:window.location=this.value;"> |
| 684 | 684 | |
| 685 | 685 | <option |
| 686 | - value="<?php echo esc_url( add_query_arg( 'sort_by', '' ) ); ?>" <?php if ( $sort_by == '' ) {
|
|
| 686 | + value="<?php echo esc_url(add_query_arg('sort_by', '')); ?>" <?php if ($sort_by == '') {
|
|
| 687 | 687 | echo 'selected="selected"'; |
| 688 | - } ?>><?php _e( 'Sort By', 'geodirectory' ); ?></option><?php |
|
| 688 | + } ?>><?php _e('Sort By', 'geodirectory'); ?></option><?php
|
|
| 689 | 689 | |
| 690 | 690 | echo $sort_field_options; ?> |
| 691 | 691 | |
@@ -713,9 +713,9 @@ discard block |
||
| 713 | 713 | * |
| 714 | 714 | * @return string Returns the section title. |
| 715 | 715 | */ |
| 716 | -function geodir_advance_customfields_heading( $title, $field_type ) {
|
|
| 716 | +function geodir_advance_customfields_heading($title, $field_type) {
|
|
| 717 | 717 | |
| 718 | - if ( in_array( $field_type, array( 'multiselect', 'textarea', 'taxonomy' ) ) ) {
|
|
| 718 | + if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
|
|
| 719 | 719 | $title = ''; |
| 720 | 720 | } |
| 721 | 721 | |
@@ -737,19 +737,19 @@ discard block |
||
| 737 | 737 | * @global object $gd_session GeoDirectory Session object. |
| 738 | 738 | * @return string Returns related posts html. |
| 739 | 739 | */ |
| 740 | -function geodir_related_posts_display( $request ) {
|
|
| 741 | - if ( ! empty( $request ) ) {
|
|
| 742 | - $before_title = ( isset( $request['before_title'] ) && ! empty( $request['before_title'] ) ) ? $request['before_title'] : ''; |
|
| 743 | - $after_title = ( isset( $request['after_title'] ) && ! empty( $request['after_title'] ) ) ? $request['after_title'] : ''; |
|
| 744 | - |
|
| 745 | - $title = ( isset( $request['title'] ) && ! empty( $request['title'] ) ) ? $request['title'] : __( 'Related Listings', 'geodirectory' ); |
|
| 746 | - $post_number = ( isset( $request['post_number'] ) && ! empty( $request['post_number'] ) ) ? $request['post_number'] : '5'; |
|
| 747 | - $relate_to = ( isset( $request['relate_to'] ) && ! empty( $request['relate_to'] ) ) ? $request['relate_to'] : 'category'; |
|
| 748 | - $layout = ( isset( $request['layout'] ) && ! empty( $request['layout'] ) ) ? $request['layout'] : 'gridview_onehalf'; |
|
| 749 | - $add_location_filter = ( isset( $request['add_location_filter'] ) && ! empty( $request['add_location_filter'] ) ) ? $request['add_location_filter'] : '0'; |
|
| 750 | - $listing_width = ( isset( $request['listing_width'] ) && ! empty( $request['listing_width'] ) ) ? $request['listing_width'] : ''; |
|
| 751 | - $list_sort = ( isset( $request['list_sort'] ) && ! empty( $request['list_sort'] ) ) ? $request['list_sort'] : 'latest'; |
|
| 752 | - $character_count = ( isset( $request['character_count'] ) && ! empty( $request['character_count'] ) ) ? $request['character_count'] : ''; |
|
| 740 | +function geodir_related_posts_display($request) {
|
|
| 741 | + if (!empty($request)) {
|
|
| 742 | + $before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : ''; |
|
| 743 | + $after_title = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : ''; |
|
| 744 | + |
|
| 745 | + $title = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
|
|
| 746 | + $post_number = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5'; |
|
| 747 | + $relate_to = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category'; |
|
| 748 | + $layout = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf'; |
|
| 749 | + $add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0'; |
|
| 750 | + $listing_width = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : ''; |
|
| 751 | + $list_sort = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest'; |
|
| 752 | + $character_count = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : ''; |
|
| 753 | 753 | |
| 754 | 754 | global $wpdb, $post, $gd_session, $related_nearest, $related_parent_lat, $related_parent_lon; |
| 755 | 755 | $related_parent_lat = !empty($post->post_latitude) ? $post->post_latitude : ''; |
@@ -757,10 +757,10 @@ discard block |
||
| 757 | 757 | $arr_detail_page_tabs = geodir_detail_page_tabs_list(); |
| 758 | 758 | |
| 759 | 759 | $related_listing_array = array(); |
| 760 | - if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
|
|
| 761 | - $related_listing_array = get_option( 'geodir_add_related_listing_posttypes' ); |
|
| 760 | + if (get_option('geodir_add_related_listing_posttypes')) {
|
|
| 761 | + $related_listing_array = get_option('geodir_add_related_listing_posttypes');
|
|
| 762 | 762 | } |
| 763 | - if ( isset($post->post_type) && in_array( $post->post_type, $related_listing_array ) ) {
|
|
| 763 | + if (isset($post->post_type) && in_array($post->post_type, $related_listing_array)) {
|
|
| 764 | 764 | $arr_detail_page_tabs['related_listing']['is_display'] = true; |
| 765 | 765 | } |
| 766 | 766 | |
@@ -772,90 +772,90 @@ discard block |
||
| 772 | 772 | $tax_field = 'id'; |
| 773 | 773 | $category = array(); |
| 774 | 774 | |
| 775 | - if ( isset( $_REQUEST['backandedit'] ) ) {
|
|
| 776 | - $post = (object) $gd_session->get( 'listing' ); |
|
| 775 | + if (isset($_REQUEST['backandedit'])) {
|
|
| 776 | + $post = (object) $gd_session->get('listing');
|
|
| 777 | 777 | $post_type = $post->listing_type; |
| 778 | - if ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
|
|
| 778 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 779 | 779 | $post_id = $_REQUEST['pid']; |
| 780 | 780 | } |
| 781 | - } elseif ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
|
|
| 782 | - $post = geodir_get_post_info( $_REQUEST['pid'] ); |
|
| 781 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 782 | + $post = geodir_get_post_info($_REQUEST['pid']); |
|
| 783 | 783 | $post_type = $post->post_type; |
| 784 | 784 | $post_id = $_REQUEST['pid']; |
| 785 | - } elseif ( isset( $post->post_type ) && $post->post_type != '' ) {
|
|
| 785 | + } elseif (isset($post->post_type) && $post->post_type != '') {
|
|
| 786 | 786 | $post_type = $post->post_type; |
| 787 | 787 | $post_id = $post->ID; |
| 788 | 788 | } |
| 789 | 789 | |
| 790 | - if ( $relate_to == 'category' ) {
|
|
| 790 | + if ($relate_to == 'category') {
|
|
| 791 | 791 | |
| 792 | - $category_taxonomy = $post_type . $relate_to; |
|
| 793 | - if ( isset( $post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '' ) {
|
|
| 794 | - $category = explode( ',', trim( $post->{$category_taxonomy}, ',' ) );
|
|
| 792 | + $category_taxonomy = $post_type.$relate_to; |
|
| 793 | + if (isset($post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '') {
|
|
| 794 | + $category = explode(',', trim($post->{$category_taxonomy}, ','));
|
|
| 795 | 795 | } |
| 796 | 796 | |
| 797 | - } elseif ( $relate_to == 'tags' ) {
|
|
| 797 | + } elseif ($relate_to == 'tags') {
|
|
| 798 | 798 | |
| 799 | - $category_taxonomy = $post_type . '_' . $relate_to; |
|
| 800 | - if ( $post->post_tags != '' ) {
|
|
| 801 | - $category = explode( ',', trim( $post->post_tags, ',' ) ); |
|
| 799 | + $category_taxonomy = $post_type.'_'.$relate_to; |
|
| 800 | + if ($post->post_tags != '') {
|
|
| 801 | + $category = explode(',', trim($post->post_tags, ','));
|
|
| 802 | 802 | } |
| 803 | 803 | $tax_field = 'name'; |
| 804 | 804 | } |
| 805 | 805 | |
| 806 | 806 | /* --- return false in invalid request --- */ |
| 807 | - if ( empty( $category ) ) {
|
|
| 807 | + if (empty($category)) {
|
|
| 808 | 808 | return false; |
| 809 | 809 | } |
| 810 | 810 | |
| 811 | 811 | $all_postypes = geodir_get_posttypes(); |
| 812 | 812 | |
| 813 | - if ( ! in_array( $post_type, $all_postypes ) ) {
|
|
| 813 | + if (!in_array($post_type, $all_postypes)) {
|
|
| 814 | 814 | return false; |
| 815 | 815 | } |
| 816 | 816 | |
| 817 | 817 | /* --- return false in invalid request --- */ |
| 818 | 818 | |
| 819 | 819 | $location_url = ''; |
| 820 | - if ( $add_location_filter != '0' ) {
|
|
| 820 | + if ($add_location_filter != '0') {
|
|
| 821 | 821 | $location_url = array(); |
| 822 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
| 822 | + $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 823 | 823 | |
| 824 | - $gd_city = get_query_var( 'gd_city' ); |
|
| 824 | + $gd_city = get_query_var('gd_city');
|
|
| 825 | 825 | |
| 826 | - if ( $gd_city ) {
|
|
| 827 | - $gd_country = get_query_var( 'gd_country' ); |
|
| 828 | - $gd_region = get_query_var( 'gd_region' ); |
|
| 826 | + if ($gd_city) {
|
|
| 827 | + $gd_country = get_query_var('gd_country');
|
|
| 828 | + $gd_region = get_query_var('gd_region');
|
|
| 829 | 829 | } else {
|
| 830 | 830 | $location = geodir_get_default_location(); |
| 831 | 831 | |
| 832 | - $gd_country = isset( $location->country_slug ) ? $location->country_slug : ''; |
|
| 833 | - $gd_region = isset( $location->region_slug ) ? $location->region_slug : ''; |
|
| 834 | - $gd_city = isset( $location->city_slug ) ? $location->city_slug : ''; |
|
| 832 | + $gd_country = isset($location->country_slug) ? $location->country_slug : ''; |
|
| 833 | + $gd_region = isset($location->region_slug) ? $location->region_slug : ''; |
|
| 834 | + $gd_city = isset($location->city_slug) ? $location->city_slug : ''; |
|
| 835 | 835 | } |
| 836 | 836 | |
| 837 | - if ( $geodir_show_location_url == 'all' ) {
|
|
| 837 | + if ($geodir_show_location_url == 'all') {
|
|
| 838 | 838 | $location_url[] = $gd_country; |
| 839 | 839 | $location_url[] = $gd_region; |
| 840 | - } else if ( $geodir_show_location_url == 'country_city' ) {
|
|
| 840 | + } else if ($geodir_show_location_url == 'country_city') {
|
|
| 841 | 841 | $location_url[] = $gd_country; |
| 842 | - } else if ( $geodir_show_location_url == 'region_city' ) {
|
|
| 842 | + } else if ($geodir_show_location_url == 'region_city') {
|
|
| 843 | 843 | $location_url[] = $gd_region; |
| 844 | 844 | } |
| 845 | 845 | |
| 846 | 846 | $location_url[] = $gd_city; |
| 847 | 847 | |
| 848 | - $location_url = implode( '/', $location_url ); |
|
| 848 | + $location_url = implode('/', $location_url);
|
|
| 849 | 849 | } |
| 850 | 850 | |
| 851 | 851 | |
| 852 | - if ( ! empty( $category ) ) {
|
|
| 852 | + if (!empty($category)) {
|
|
| 853 | 853 | global $geodir_add_location_url; |
| 854 | 854 | $geodir_add_location_url = '0'; |
| 855 | - if ( $add_location_filter != '0' ) {
|
|
| 855 | + if ($add_location_filter != '0') {
|
|
| 856 | 856 | $geodir_add_location_url = '1'; |
| 857 | 857 | } |
| 858 | - $viewall_url = get_term_link( (int) $category[0], $post_type . $category_taxonomy ); |
|
| 858 | + $viewall_url = get_term_link((int) $category[0], $post_type.$category_taxonomy); |
|
| 859 | 859 | $geodir_add_location_url = null; |
| 860 | 860 | } |
| 861 | 861 | ob_start(); |
@@ -865,24 +865,24 @@ discard block |
||
| 865 | 865 | <div class="geodir_locations geodir_location_listing"> |
| 866 | 866 | |
| 867 | 867 | <?php |
| 868 | - if ( isset( $request['is_widget'] ) && $request['is_widget'] == '1' ) {
|
|
| 868 | + if (isset($request['is_widget']) && $request['is_widget'] == '1') {
|
|
| 869 | 869 | /** geodir_before_title filter Documented in geodirectory_widgets.php */ |
| 870 | - $before_title = isset( $before_title ) ? $before_title : apply_filters( 'geodir_before_title', '<h3 class="widget-title">' ); |
|
| 870 | + $before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
|
|
| 871 | 871 | /** geodir_after_title filter Documented in geodirectory_widgets.php */ |
| 872 | - $after_title = isset( $after_title ) ? $after_title : apply_filters( 'geodir_after_title', '</h3>' ); |
|
| 872 | + $after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
|
|
| 873 | 873 | ?> |
| 874 | 874 | <div class="location_list_heading clearfix"> |
| 875 | - <?php echo $before_title . $title . $after_title; ?> |
|
| 875 | + <?php echo $before_title.$title.$after_title; ?> |
|
| 876 | 876 | </div> |
| 877 | 877 | <?php |
| 878 | 878 | } |
| 879 | 879 | $query_args = array( |
| 880 | 880 | 'posts_per_page' => $post_number, |
| 881 | 881 | 'is_geodir_loop' => true, |
| 882 | - 'gd_location' => ( $add_location_filter ) ? true : false, |
|
| 882 | + 'gd_location' => ($add_location_filter) ? true : false, |
|
| 883 | 883 | 'post_type' => $post_type, |
| 884 | 884 | 'order_by' => $list_sort, |
| 885 | - 'post__not_in' => array( $post_id ), |
|
| 885 | + 'post__not_in' => array($post_id), |
|
| 886 | 886 | 'excerpt_length' => $character_count, |
| 887 | 887 | 'related_listings' => $is_display |
| 888 | 888 | ); |
@@ -893,7 +893,7 @@ discard block |
||
| 893 | 893 | 'terms' => $category |
| 894 | 894 | ); |
| 895 | 895 | |
| 896 | - $query_args['tax_query'] = array( $tax_query ); |
|
| 896 | + $query_args['tax_query'] = array($tax_query); |
|
| 897 | 897 | |
| 898 | 898 | global $gridview_columns, $post; |
| 899 | 899 | |
@@ -905,21 +905,21 @@ discard block |
||
| 905 | 905 | * @param array $query_args The query array. |
| 906 | 906 | * @param array $request Related posts request array. |
| 907 | 907 | */ |
| 908 | - $query_args = apply_filters( 'geodir_related_posts_widget_query_args', $query_args, $request ); |
|
| 908 | + $query_args = apply_filters('geodir_related_posts_widget_query_args', $query_args, $request);
|
|
| 909 | 909 | |
| 910 | - query_posts( $query_args ); |
|
| 910 | + query_posts($query_args); |
|
| 911 | 911 | |
| 912 | - if ( strstr( $layout, 'gridview' ) ) {
|
|
| 913 | - $listing_view_exp = explode( '_', $layout ); |
|
| 912 | + if (strstr($layout, 'gridview')) {
|
|
| 913 | + $listing_view_exp = explode('_', $layout);
|
|
| 914 | 914 | $gridview_columns = $layout; |
| 915 | 915 | $layout = $listing_view_exp[0]; |
| 916 | - } else if ( $layout == 'list' ) {
|
|
| 916 | + } else if ($layout == 'list') {
|
|
| 917 | 917 | $gridview_columns = ''; |
| 918 | 918 | } |
| 919 | 919 | $related_posts = true; |
| 920 | 920 | |
| 921 | 921 | $related_nearest = false; |
| 922 | - if ( $list_sort == 'nearest' ) {
|
|
| 922 | + if ($list_sort == 'nearest') {
|
|
| 923 | 923 | $related_nearest = true; |
| 924 | 924 | } |
| 925 | 925 | |
@@ -929,14 +929,14 @@ discard block |
||
| 929 | 929 | * |
| 930 | 930 | * @since 1.0.0 |
| 931 | 931 | */ |
| 932 | - $template = apply_filters( "geodir_template_part-related-listing-listview", geodir_locate_template( 'listing-listview' ) ); |
|
| 932 | + $template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
|
|
| 933 | 933 | |
| 934 | 934 | /** |
| 935 | 935 | * Includes related listing listview template. |
| 936 | 936 | * |
| 937 | 937 | * @since 1.0.0 |
| 938 | 938 | */ |
| 939 | - include( $template ); |
|
| 939 | + include($template); |
|
| 940 | 940 | |
| 941 | 941 | wp_reset_query(); |
| 942 | 942 | $post = $origi_post; |
@@ -964,12 +964,12 @@ discard block |
||
| 964 | 964 | function geodir_category_count_script() {
|
| 965 | 965 | global $geodir_post_category_str; |
| 966 | 966 | |
| 967 | - if ( ! empty( $geodir_post_category_str ) ) {
|
|
| 968 | - $geodir_post_category_str = serialize( $geodir_post_category_str ); |
|
| 967 | + if (!empty($geodir_post_category_str)) {
|
|
| 968 | + $geodir_post_category_str = serialize($geodir_post_category_str); |
|
| 969 | 969 | } |
| 970 | 970 | |
| 971 | - $all_var['post_category_array'] = html_entity_decode( (string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8' ); |
|
| 972 | - $script = "var post_category_array = " . json_encode( $all_var ) . ';'; |
|
| 971 | + $all_var['post_category_array'] = html_entity_decode((string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8'); |
|
| 972 | + $script = "var post_category_array = ".json_encode($all_var).';'; |
|
| 973 | 973 | echo '<script>'; |
| 974 | 974 | echo $script; |
| 975 | 975 | echo '</script>'; |
@@ -984,8 +984,8 @@ discard block |
||
| 984 | 984 | * @return string Returns the default language. |
| 985 | 985 | */ |
| 986 | 986 | function geodir_get_map_default_language() {
|
| 987 | - $geodir_default_map_language = get_option( 'geodir_default_map_language' ); |
|
| 988 | - if ( empty( $geodir_default_map_language ) ) {
|
|
| 987 | + $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 988 | + if (empty($geodir_default_map_language)) {
|
|
| 989 | 989 | $geodir_default_map_language = 'en'; |
| 990 | 990 | } |
| 991 | 991 | |
@@ -996,7 +996,7 @@ discard block |
||
| 996 | 996 | * |
| 997 | 997 | * @param string $geodir_default_map_language Default map language. |
| 998 | 998 | */ |
| 999 | - return apply_filters( 'geodir_default_map_language', $geodir_default_map_language ); |
|
| 999 | + return apply_filters('geodir_default_map_language', $geodir_default_map_language);
|
|
| 1000 | 1000 | } |
| 1001 | 1001 | |
| 1002 | 1002 | /** |
@@ -1007,7 +1007,7 @@ discard block |
||
| 1007 | 1007 | * @return string Returns the api key. |
| 1008 | 1008 | */ |
| 1009 | 1009 | function geodir_get_map_api_key() {
|
| 1010 | - $key = get_option( 'geodir_google_api_key' ); |
|
| 1010 | + $key = get_option('geodir_google_api_key');
|
|
| 1011 | 1011 | |
| 1012 | 1012 | /** |
| 1013 | 1013 | * Filter Google maps api key. |
@@ -1016,7 +1016,7 @@ discard block |
||
| 1016 | 1016 | * |
| 1017 | 1017 | * @param string $key Google maps api key. |
| 1018 | 1018 | */ |
| 1019 | - return apply_filters( 'geodir_google_api_key', $key ); |
|
| 1019 | + return apply_filters('geodir_google_api_key', $key);
|
|
| 1020 | 1020 | } |
| 1021 | 1021 | |
| 1022 | 1022 | |
@@ -1035,20 +1035,20 @@ discard block |
||
| 1035 | 1035 | global $wp, $post, $wp_query, $wpdb, $geodir_addon_list; |
| 1036 | 1036 | |
| 1037 | 1037 | $is_geodir_page = geodir_is_geodir_page(); |
| 1038 | - if ( ! $is_geodir_page ) {
|
|
| 1038 | + if (!$is_geodir_page) {
|
|
| 1039 | 1039 | return; |
| 1040 | 1040 | }// if non GD page, bail |
| 1041 | 1041 | |
| 1042 | 1042 | $use_gd_meta = true; |
| 1043 | - if ( class_exists( 'WPSEO_Frontend' ) || class_exists( 'All_in_One_SEO_Pack' ) ) {
|
|
| 1043 | + if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
|
| 1044 | 1044 | $use_gd_meta = false; |
| 1045 | 1045 | |
| 1046 | - if ( geodir_is_page( 'search' ) ) {
|
|
| 1046 | + if (geodir_is_page('search')) {
|
|
| 1047 | 1047 | $use_gd_meta = true; |
| 1048 | 1048 | } |
| 1049 | 1049 | } |
| 1050 | 1050 | |
| 1051 | - if ( ! $use_gd_meta ) {
|
|
| 1051 | + if (!$use_gd_meta) {
|
|
| 1052 | 1052 | return; |
| 1053 | 1053 | }// bail if Yoast Wordpress SEO or All_in_One_SEO_Pack active. |
| 1054 | 1054 | |
@@ -1056,170 +1056,170 @@ discard block |
||
| 1056 | 1056 | |
| 1057 | 1057 | $all_postypes = geodir_get_posttypes(); |
| 1058 | 1058 | |
| 1059 | - $geodir_taxonomies = geodir_get_taxonomies( '', true ); |
|
| 1059 | + $geodir_taxonomies = geodir_get_taxonomies('', true);
|
|
| 1060 | 1060 | |
| 1061 | 1061 | $meta_desc = ''; |
| 1062 | 1062 | $meta_key = ''; |
| 1063 | - if ( isset( $current_term->ID ) && $current_term->ID == geodir_location_page_id() ) {
|
|
| 1063 | + if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
|
|
| 1064 | 1064 | /** |
| 1065 | 1065 | * Filter SEO meta location description. |
| 1066 | 1066 | * |
| 1067 | 1067 | * @since 1.0.0 |
| 1068 | 1068 | */ |
| 1069 | - $meta_desc = apply_filters( 'geodir_seo_meta_location_description', '' ); |
|
| 1069 | + $meta_desc = apply_filters('geodir_seo_meta_location_description', '');
|
|
| 1070 | 1070 | $meta_desc .= ''; |
| 1071 | 1071 | } |
| 1072 | - if ( have_posts() && is_single() OR is_page() ) {
|
|
| 1073 | - while ( have_posts() ) {
|
|
| 1072 | + if (have_posts() && is_single() OR is_page()) {
|
|
| 1073 | + while (have_posts()) {
|
|
| 1074 | 1074 | the_post(); |
| 1075 | 1075 | |
| 1076 | - if ( has_excerpt() ) {
|
|
| 1077 | - $out_excerpt = strip_tags( strip_shortcodes( get_the_excerpt() ) ); |
|
| 1078 | - if ( empty( $out_excerpt ) ) {
|
|
| 1079 | - $out_excerpt = strip_tags( do_shortcode( get_the_excerpt() ) ); |
|
| 1076 | + if (has_excerpt()) {
|
|
| 1077 | + $out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt())); |
|
| 1078 | + if (empty($out_excerpt)) {
|
|
| 1079 | + $out_excerpt = strip_tags(do_shortcode(get_the_excerpt())); |
|
| 1080 | 1080 | } |
| 1081 | - $out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $out_excerpt ); |
|
| 1081 | + $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
|
|
| 1082 | 1082 | } else {
|
| 1083 | - $out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $post->post_content ); |
|
| 1084 | - $out_excerpt = strip_tags( strip_shortcodes( $out_excerpt ) ); |
|
| 1085 | - if ( empty( $out_excerpt ) ) {
|
|
| 1086 | - $out_excerpt = strip_tags( do_shortcode( $out_excerpt ) ); // parse short code from content |
|
| 1083 | + $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
|
|
| 1084 | + $out_excerpt = strip_tags(strip_shortcodes($out_excerpt)); |
|
| 1085 | + if (empty($out_excerpt)) {
|
|
| 1086 | + $out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content |
|
| 1087 | 1087 | } |
| 1088 | - $out_excerpt = trim( wp_trim_words( $out_excerpt, 35, '' ), '.!?,;:-' ); |
|
| 1088 | + $out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-'); |
|
| 1089 | 1089 | } |
| 1090 | 1090 | |
| 1091 | 1091 | $meta_desc .= $out_excerpt; |
| 1092 | 1092 | } |
| 1093 | - } elseif ( ( is_category() || is_tag() ) && isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
|
|
| 1094 | - if ( is_category() ) {
|
|
| 1095 | - $meta_desc .= __( "Posts related to Category:", 'geodirectory' ) . " " . ucfirst( single_cat_title( "", false ) ); |
|
| 1096 | - } elseif ( is_tag() ) {
|
|
| 1097 | - $meta_desc .= __( "Posts related to Tag:", 'geodirectory' ) . " " . ucfirst( single_tag_title( "", false ) ); |
|
| 1093 | + } elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
|
|
| 1094 | + if (is_category()) {
|
|
| 1095 | + $meta_desc .= __("Posts related to Category:", 'geodirectory')." ".ucfirst(single_cat_title("", false));
|
|
| 1096 | + } elseif (is_tag()) {
|
|
| 1097 | + $meta_desc .= __("Posts related to Tag:", 'geodirectory')." ".ucfirst(single_tag_title("", false));
|
|
| 1098 | 1098 | } |
| 1099 | - } elseif ( isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
|
|
| 1100 | - $meta_desc .= isset( $current_term->description ) ? $current_term->description : ''; |
|
| 1099 | + } elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
|
|
| 1100 | + $meta_desc .= isset($current_term->description) ? $current_term->description : ''; |
|
| 1101 | 1101 | } |
| 1102 | 1102 | |
| 1103 | 1103 | |
| 1104 | 1104 | $geodir_post_type = geodir_get_current_posttype(); |
| 1105 | - $geodir_post_type_info = get_post_type_object( $geodir_post_type ); |
|
| 1106 | - $geodir_is_page_listing = geodir_is_page( 'listing' ) ? true : false; |
|
| 1107 | - |
|
| 1108 | - $category_taxonomy = geodir_get_taxonomies( $geodir_post_type ); |
|
| 1109 | - $tag_taxonomy = geodir_get_taxonomies( $geodir_post_type, true ); |
|
| 1110 | - |
|
| 1111 | - $geodir_is_category = isset( $category_taxonomy[0] ) && get_query_var( $category_taxonomy[0] ) ? get_query_var( $category_taxonomy[0] ) : false; |
|
| 1112 | - $geodir_is_tag = isset( $tag_taxonomy[0] ) && get_query_var( $tag_taxonomy[0] ) ? true : false; |
|
| 1113 | - |
|
| 1114 | - $geodir_is_search = geodir_is_page( 'search' ) ? true : false; |
|
| 1115 | - $geodir_is_location = geodir_is_page( 'location' ) ? true : false; |
|
| 1116 | - $geodir_location_manager = isset( $geodir_addon_list['geodir_location_manager'] ) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false; |
|
| 1117 | - $godir_location_terms = geodir_get_current_location_terms( 'query_vars' ); |
|
| 1118 | - $gd_city = $geodir_location_manager && isset( $godir_location_terms['gd_city'] ) ? $godir_location_terms['gd_city'] : null; |
|
| 1119 | - $gd_region = $geodir_location_manager && isset( $godir_location_terms['gd_region'] ) ? $godir_location_terms['gd_region'] : null; |
|
| 1120 | - $gd_country = $geodir_location_manager && isset( $godir_location_terms['gd_country'] ) ? $godir_location_terms['gd_country'] : null; |
|
| 1121 | - $replace_location = __( 'Everywhere', 'geodirectory' ); |
|
| 1105 | + $geodir_post_type_info = get_post_type_object($geodir_post_type); |
|
| 1106 | + $geodir_is_page_listing = geodir_is_page('listing') ? true : false;
|
|
| 1107 | + |
|
| 1108 | + $category_taxonomy = geodir_get_taxonomies($geodir_post_type); |
|
| 1109 | + $tag_taxonomy = geodir_get_taxonomies($geodir_post_type, true); |
|
| 1110 | + |
|
| 1111 | + $geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false; |
|
| 1112 | + $geodir_is_tag = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false; |
|
| 1113 | + |
|
| 1114 | + $geodir_is_search = geodir_is_page('search') ? true : false;
|
|
| 1115 | + $geodir_is_location = geodir_is_page('location') ? true : false;
|
|
| 1116 | + $geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false; |
|
| 1117 | + $godir_location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1118 | + $gd_city = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : null; |
|
| 1119 | + $gd_region = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : null; |
|
| 1120 | + $gd_country = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : null; |
|
| 1121 | + $replace_location = __('Everywhere', 'geodirectory');
|
|
| 1122 | 1122 | $location_id = null; |
| 1123 | - if ( $geodir_location_manager ) {
|
|
| 1124 | - $sql = $wpdb->prepare( "SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array( $gd_city ) ); |
|
| 1125 | - $location_id = (int) $wpdb->get_var( $sql ); |
|
| 1123 | + if ($geodir_location_manager) {
|
|
| 1124 | + $sql = $wpdb->prepare("SELECT location_id FROM ".POST_LOCATION_TABLE." WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
|
|
| 1125 | + $location_id = (int) $wpdb->get_var($sql); |
|
| 1126 | 1126 | $location_type = geodir_what_is_current_location(); |
| 1127 | - if ( $location_type == 'city' ) {
|
|
| 1128 | - $replace_location = geodir_get_current_location( array( 'what' => 'city', 'echo' => false ) ); |
|
| 1129 | - } elseif ( $location_type == 'region' ) {
|
|
| 1130 | - $replace_location = geodir_get_current_location( array( 'what' => 'region', 'echo' => false ) ); |
|
| 1131 | - } elseif ( $location_type == 'country' ) {
|
|
| 1132 | - $replace_location = geodir_get_current_location( array( 'what' => 'country', 'echo' => false ) ); |
|
| 1133 | - $replace_location = __( $replace_location, 'geodirectory' ); |
|
| 1127 | + if ($location_type == 'city') {
|
|
| 1128 | + $replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
|
|
| 1129 | + } elseif ($location_type == 'region') {
|
|
| 1130 | + $replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
|
|
| 1131 | + } elseif ($location_type == 'country') {
|
|
| 1132 | + $replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
|
|
| 1133 | + $replace_location = __($replace_location, 'geodirectory'); |
|
| 1134 | 1134 | } |
| 1135 | - $country = get_query_var( 'gd_country' ); |
|
| 1136 | - $region = get_query_var( 'gd_region' ); |
|
| 1137 | - $city = get_query_var( 'gd_city' ); |
|
| 1135 | + $country = get_query_var('gd_country');
|
|
| 1136 | + $region = get_query_var('gd_region');
|
|
| 1137 | + $city = get_query_var('gd_city');
|
|
| 1138 | 1138 | $current_location = ''; |
| 1139 | - if ( $country != '' ) {
|
|
| 1140 | - $current_location = get_actual_location_name( 'country', $country, true ); |
|
| 1139 | + if ($country != '') {
|
|
| 1140 | + $current_location = get_actual_location_name('country', $country, true);
|
|
| 1141 | 1141 | } |
| 1142 | - if ( $region != '' ) {
|
|
| 1143 | - $current_location = get_actual_location_name( 'region', $region ); |
|
| 1142 | + if ($region != '') {
|
|
| 1143 | + $current_location = get_actual_location_name('region', $region);
|
|
| 1144 | 1144 | } |
| 1145 | - if ( $city != '' ) {
|
|
| 1146 | - $current_location = get_actual_location_name( 'city', $city ); |
|
| 1145 | + if ($city != '') {
|
|
| 1146 | + $current_location = get_actual_location_name('city', $city);
|
|
| 1147 | 1147 | } |
| 1148 | 1148 | $replace_location = $current_location != '' ? $current_location : $replace_location; |
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | 1151 | $geodir_meta_keys = ''; |
| 1152 | 1152 | $geodir_meta_desc = ''; |
| 1153 | - if ( $is_geodir_page && ! empty( $geodir_post_type_info ) ) {
|
|
| 1154 | - if ( $geodir_is_page_listing || $geodir_is_search || geodir_is_page( 'add-listing' ) ) {
|
|
| 1155 | - $geodir_meta_keys = isset( $geodir_post_type_info->seo['meta_keyword'] ) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys; |
|
| 1153 | + if ($is_geodir_page && !empty($geodir_post_type_info)) {
|
|
| 1154 | + if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
|
|
| 1155 | + $geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys; |
|
| 1156 | 1156 | |
| 1157 | - $geodir_meta_desc = isset( $geodir_post_type_info->description ) ? $geodir_post_type_info->description : $geodir_meta_desc; |
|
| 1158 | - $geodir_meta_desc = isset( $geodir_post_type_info->seo['meta_description'] ) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc; |
|
| 1157 | + $geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc; |
|
| 1158 | + $geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc; |
|
| 1159 | 1159 | |
| 1160 | - if ( $geodir_is_category ) {
|
|
| 1161 | - $category = $geodir_is_category ? get_term_by( 'slug', $geodir_is_category, $category_taxonomy[0] ) : null; |
|
| 1162 | - if ( isset( $category->term_id ) && ! empty( $category->term_id ) ) {
|
|
| 1160 | + if ($geodir_is_category) {
|
|
| 1161 | + $category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : null;
|
|
| 1162 | + if (isset($category->term_id) && !empty($category->term_id)) {
|
|
| 1163 | 1163 | $category_id = $category->term_id; |
| 1164 | - $category_desc = trim( $category->description ) != '' ? trim( $category->description ) : get_tax_meta( $category_id, 'ct_cat_top_desc', false, $geodir_post_type ); |
|
| 1165 | - if ( $location_id ) {
|
|
| 1166 | - $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id; |
|
| 1167 | - $cat_loc_option = get_option( $option_name ); |
|
| 1168 | - |
|
| 1169 | - $gd_cat_loc_default = ! empty( $cat_loc_option ) && isset( $cat_loc_option['gd_cat_loc_default'] ) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false; |
|
| 1170 | - if ( ! $gd_cat_loc_default ) {
|
|
| 1171 | - $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id; |
|
| 1172 | - $option = get_option( $option_name ); |
|
| 1173 | - $category_desc = isset( $option['gd_cat_loc_desc'] ) && trim( $option['gd_cat_loc_desc'] ) != '' ? trim( $option['gd_cat_loc_desc'] ) : $category_desc; |
|
| 1164 | + $category_desc = trim($category->description) != '' ? trim($category->description) : get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type); |
|
| 1165 | + if ($location_id) {
|
|
| 1166 | + $option_name = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id; |
|
| 1167 | + $cat_loc_option = get_option($option_name); |
|
| 1168 | + |
|
| 1169 | + $gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false; |
|
| 1170 | + if (!$gd_cat_loc_default) {
|
|
| 1171 | + $option_name = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id.'_'.$location_id; |
|
| 1172 | + $option = get_option($option_name); |
|
| 1173 | + $category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc; |
|
| 1174 | 1174 | } |
| 1175 | 1175 | } |
| 1176 | - $geodir_meta_desc = __( "Posts related to Category:", 'geodirectory' ) . " " . ucfirst( single_cat_title( "", false ) ) . '. ' . $category_desc; |
|
| 1176 | + $geodir_meta_desc = __("Posts related to Category:", 'geodirectory')." ".ucfirst(single_cat_title("", false)).'. '.$category_desc;
|
|
| 1177 | 1177 | } |
| 1178 | - } else if ( $geodir_is_tag ) {
|
|
| 1179 | - $geodir_meta_desc = __( "Posts related to Tag:", 'geodirectory' ) . " " . ucfirst( single_tag_title( "", false ) ) . '. ' . $geodir_meta_desc; |
|
| 1178 | + } else if ($geodir_is_tag) {
|
|
| 1179 | + $geodir_meta_desc = __("Posts related to Tag:", 'geodirectory')." ".ucfirst(single_tag_title("", false)).'. '.$geodir_meta_desc;
|
|
| 1180 | 1180 | } |
| 1181 | 1181 | } |
| 1182 | 1182 | } |
| 1183 | 1183 | |
| 1184 | 1184 | |
| 1185 | 1185 | $gd_page = ''; |
| 1186 | - if ( geodir_is_page( 'home' ) ) {
|
|
| 1186 | + if (geodir_is_page('home')) {
|
|
| 1187 | 1187 | $gd_page = 'home'; |
| 1188 | - $meta_desc = ( get_option( 'geodir_meta_desc_homepage' ) ) ? get_option( 'geodir_meta_desc_homepage' ) : $meta_desc; |
|
| 1189 | - } elseif ( geodir_is_page( 'detail' ) ) {
|
|
| 1188 | + $meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
|
|
| 1189 | + } elseif (geodir_is_page('detail')) {
|
|
| 1190 | 1190 | $gd_page = 'detail'; |
| 1191 | - $meta_desc = ( get_option( 'geodir_meta_desc_detail' ) ) ? get_option( 'geodir_meta_desc_detail' ) : $meta_desc; |
|
| 1192 | - } elseif ( geodir_is_page( 'pt' ) ) {
|
|
| 1191 | + $meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
|
|
| 1192 | + } elseif (geodir_is_page('pt')) {
|
|
| 1193 | 1193 | $gd_page = 'pt'; |
| 1194 | - $meta_desc = ( get_option( 'geodir_meta_desc_pt' ) ) ? get_option( 'geodir_meta_desc_pt' ) : $meta_desc; |
|
| 1195 | - } elseif ( geodir_is_page( 'listing' ) ) {
|
|
| 1194 | + $meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
|
|
| 1195 | + } elseif (geodir_is_page('listing')) {
|
|
| 1196 | 1196 | $gd_page = 'listing'; |
| 1197 | - $meta_desc = ( get_option( 'geodir_meta_desc_listing' ) ) ? get_option( 'geodir_meta_desc_listing' ) : $meta_desc; |
|
| 1198 | - } elseif ( geodir_is_page( 'location' ) ) {
|
|
| 1197 | + $meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
|
|
| 1198 | + } elseif (geodir_is_page('location')) {
|
|
| 1199 | 1199 | $gd_page = 'location'; |
| 1200 | - $meta_desc = ( get_option( 'geodir_meta_desc_location' ) ) ? get_option( 'geodir_meta_desc_location' ) : $meta_desc; |
|
| 1201 | - $meta_desc = apply_filters( 'geodir_seo_meta_location_description', $meta_desc ); |
|
| 1200 | + $meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
|
|
| 1201 | + $meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
|
|
| 1202 | 1202 | |
| 1203 | - } elseif ( geodir_is_page( 'search' ) ) {
|
|
| 1203 | + } elseif (geodir_is_page('search')) {
|
|
| 1204 | 1204 | $gd_page = 'search'; |
| 1205 | - $meta_desc = ( get_option( 'geodir_meta_desc_search' ) ) ? get_option( 'geodir_meta_desc_search' ) : $meta_desc; |
|
| 1206 | - } elseif ( geodir_is_page( 'add-listing' ) ) {
|
|
| 1205 | + $meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
|
|
| 1206 | + } elseif (geodir_is_page('add-listing')) {
|
|
| 1207 | 1207 | $gd_page = 'add-listing'; |
| 1208 | - $meta_desc = ( get_option( 'geodir_meta_desc_add-listing' ) ) ? get_option( 'geodir_meta_desc_add-listing' ) : $meta_desc; |
|
| 1209 | - } elseif ( geodir_is_page( 'author' ) ) {
|
|
| 1208 | + $meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
|
|
| 1209 | + } elseif (geodir_is_page('author')) {
|
|
| 1210 | 1210 | $gd_page = 'author'; |
| 1211 | - $meta_desc = ( get_option( 'geodir_meta_desc_author' ) ) ? get_option( 'geodir_meta_desc_author' ) : $meta_desc; |
|
| 1212 | - } elseif ( geodir_is_page( 'login' ) ) {
|
|
| 1211 | + $meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
|
|
| 1212 | + } elseif (geodir_is_page('login')) {
|
|
| 1213 | 1213 | $gd_page = 'login'; |
| 1214 | - $meta_desc = ( get_option( 'geodir_meta_desc_login' ) ) ? get_option( 'geodir_meta_desc_login' ) : $meta_desc; |
|
| 1215 | - } elseif ( geodir_is_page( 'listing-success' ) ) {
|
|
| 1214 | + $meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
|
|
| 1215 | + } elseif (geodir_is_page('listing-success')) {
|
|
| 1216 | 1216 | $gd_page = 'listing-success'; |
| 1217 | - $meta_desc = ( get_option( 'geodir_meta_desc_listing-success' ) ) ? get_option( 'geodir_meta_desc_listing-success' ) : $meta_desc; |
|
| 1217 | + $meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
|
|
| 1218 | 1218 | } |
| 1219 | 1219 | |
| 1220 | 1220 | |
| 1221 | - if ( $meta_desc ) {
|
|
| 1222 | - $meta_desc = stripslashes_deep( $meta_desc ); |
|
| 1221 | + if ($meta_desc) {
|
|
| 1222 | + $meta_desc = stripslashes_deep($meta_desc); |
|
| 1223 | 1223 | /** |
| 1224 | 1224 | * Filter page description to replace variables. |
| 1225 | 1225 | * |
@@ -1228,7 +1228,7 @@ discard block |
||
| 1228 | 1228 | * @param string $title The page description including variables. |
| 1229 | 1229 | * @param string $gd_page The GeoDirectory page type if any. |
| 1230 | 1230 | */ |
| 1231 | - $meta_desc = apply_filters( 'geodir_seo_meta_description_pre', __( $meta_desc, 'geodirectory' ), $gd_page, '' ); |
|
| 1231 | + $meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'), $gd_page, '');
|
|
| 1232 | 1232 | |
| 1233 | 1233 | /** |
| 1234 | 1234 | * Filter SEO meta description. |
@@ -1237,49 +1237,49 @@ discard block |
||
| 1237 | 1237 | * |
| 1238 | 1238 | * @param string $meta_desc Meta description content. |
| 1239 | 1239 | */ |
| 1240 | - echo apply_filters( 'geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc ); |
|
| 1240 | + echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="'.$meta_desc.'" />', $meta_desc);
|
|
| 1241 | 1241 | } |
| 1242 | 1242 | |
| 1243 | 1243 | // meta keywords |
| 1244 | - if ( isset( $post->post_type ) && in_array( $post->post_type, $all_postypes ) ) {
|
|
| 1245 | - $place_tags = wp_get_post_terms( $post->ID, $post->post_type . '_tags', array( "fields" => "names" ) ); |
|
| 1246 | - $place_cats = wp_get_post_terms( $post->ID, $post->post_type . 'category', array( "fields" => "names" ) ); |
|
| 1244 | + if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
|
|
| 1245 | + $place_tags = wp_get_post_terms($post->ID, $post->post_type.'_tags', array("fields" => "names"));
|
|
| 1246 | + $place_cats = wp_get_post_terms($post->ID, $post->post_type.'category', array("fields" => "names"));
|
|
| 1247 | 1247 | |
| 1248 | - $meta_key .= implode( ", ", array_merge( (array) $place_cats, (array) $place_tags ) ); |
|
| 1248 | + $meta_key .= implode(", ", array_merge((array) $place_cats, (array) $place_tags));
|
|
| 1249 | 1249 | } else {
|
| 1250 | 1250 | $posttags = get_the_tags(); |
| 1251 | - if ( $posttags ) {
|
|
| 1252 | - foreach ( $posttags as $tag ) {
|
|
| 1253 | - $meta_key .= $tag->name . ' '; |
|
| 1251 | + if ($posttags) {
|
|
| 1252 | + foreach ($posttags as $tag) {
|
|
| 1253 | + $meta_key .= $tag->name.' '; |
|
| 1254 | 1254 | } |
| 1255 | 1255 | } else {
|
| 1256 | - $tags = get_tags( array( 'orderby' => 'count', 'order' => 'DESC' ) ); |
|
| 1256 | + $tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
|
|
| 1257 | 1257 | $xt = 1; |
| 1258 | 1258 | |
| 1259 | - foreach ( $tags as $tag ) {
|
|
| 1260 | - if ( $xt <= 20 ) {
|
|
| 1261 | - $meta_key .= $tag->name . ", "; |
|
| 1259 | + foreach ($tags as $tag) {
|
|
| 1260 | + if ($xt <= 20) {
|
|
| 1261 | + $meta_key .= $tag->name.", "; |
|
| 1262 | 1262 | } |
| 1263 | 1263 | |
| 1264 | - $xt ++; |
|
| 1264 | + $xt++; |
|
| 1265 | 1265 | } |
| 1266 | 1266 | } |
| 1267 | 1267 | } |
| 1268 | 1268 | |
| 1269 | - $meta_key = $meta_key != '' ? rtrim( trim( $meta_key ), "," ) : $meta_key; |
|
| 1270 | - $geodir_meta_keys = $geodir_meta_keys != '' ? ( $meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys ) : $meta_key; |
|
| 1271 | - if ( $geodir_meta_keys != '' ) {
|
|
| 1272 | - $geodir_meta_keys = strip_tags( $geodir_meta_keys ); |
|
| 1273 | - $geodir_meta_keys = esc_html( $geodir_meta_keys ); |
|
| 1274 | - $geodir_meta_keys = geodir_strtolower( $geodir_meta_keys ); |
|
| 1275 | - $geodir_meta_keys = wp_html_excerpt( $geodir_meta_keys, 1000, '' ); |
|
| 1276 | - $geodir_meta_keys = str_replace( '%location%', $replace_location, $geodir_meta_keys ); |
|
| 1269 | + $meta_key = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key; |
|
| 1270 | + $geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key.', '.$geodir_meta_keys : $geodir_meta_keys) : $meta_key; |
|
| 1271 | + if ($geodir_meta_keys != '') {
|
|
| 1272 | + $geodir_meta_keys = strip_tags($geodir_meta_keys); |
|
| 1273 | + $geodir_meta_keys = esc_html($geodir_meta_keys); |
|
| 1274 | + $geodir_meta_keys = geodir_strtolower($geodir_meta_keys); |
|
| 1275 | + $geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, ''); |
|
| 1276 | + $geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
|
|
| 1277 | 1277 | |
| 1278 | - $meta_key = rtrim( trim( $geodir_meta_keys ), "," ); |
|
| 1278 | + $meta_key = rtrim(trim($geodir_meta_keys), ","); |
|
| 1279 | 1279 | } |
| 1280 | 1280 | |
| 1281 | - if ( $meta_key ) {
|
|
| 1282 | - $meta_key = stripslashes_deep( $meta_key ); |
|
| 1281 | + if ($meta_key) {
|
|
| 1282 | + $meta_key = stripslashes_deep($meta_key); |
|
| 1283 | 1283 | /** |
| 1284 | 1284 | * Filter SEO meta keywords. |
| 1285 | 1285 | * |
@@ -1287,7 +1287,7 @@ discard block |
||
| 1287 | 1287 | * |
| 1288 | 1288 | * @param string $meta_desc Meta keywords. |
| 1289 | 1289 | */ |
| 1290 | - echo apply_filters( 'geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key ); |
|
| 1290 | + echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="'.$meta_key.'" />', $meta_key);
|
|
| 1291 | 1291 | } |
| 1292 | 1292 | |
| 1293 | 1293 | } |
@@ -1307,8 +1307,8 @@ discard block |
||
| 1307 | 1307 | |
| 1308 | 1308 | $geodir_detail_page_tabs_array = geodir_detail_page_tabs_array(); |
| 1309 | 1309 | |
| 1310 | - foreach ( $geodir_detail_page_tabs_array as $key => $tabs_obj ) {
|
|
| 1311 | - $geodir_detail_page_tabs_key_value_array[ $key ] = $tabs_obj['heading_text']; |
|
| 1310 | + foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
|
|
| 1311 | + $geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text']; |
|
| 1312 | 1312 | } |
| 1313 | 1313 | |
| 1314 | 1314 | return $geodir_detail_page_tabs_key_value_array; |
@@ -1330,57 +1330,57 @@ discard block |
||
| 1330 | 1330 | * @since 1.0.0 |
| 1331 | 1331 | */ |
| 1332 | 1332 | $arr_tabs['post_profile'] = array( |
| 1333 | - 'heading_text' => __( 'Profile', 'geodirectory' ), |
|
| 1333 | + 'heading_text' => __('Profile', 'geodirectory'),
|
|
| 1334 | 1334 | 'is_active_tab' => true, |
| 1335 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_profile' ), |
|
| 1335 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
|
|
| 1336 | 1336 | 'tab_content' => '' |
| 1337 | 1337 | ); |
| 1338 | - $arr_tabs['post_info'] = array( |
|
| 1339 | - 'heading_text' => __( 'More Info', 'geodirectory' ), |
|
| 1338 | + $arr_tabs['post_info'] = array( |
|
| 1339 | + 'heading_text' => __('More Info', 'geodirectory'),
|
|
| 1340 | 1340 | 'is_active_tab' => false, |
| 1341 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_info' ), |
|
| 1341 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
|
|
| 1342 | 1342 | 'tab_content' => '' |
| 1343 | 1343 | ); |
| 1344 | 1344 | |
| 1345 | 1345 | $arr_tabs['post_images'] = array( |
| 1346 | - 'heading_text' => __( 'Photo', 'geodirectory' ), |
|
| 1346 | + 'heading_text' => __('Photo', 'geodirectory'),
|
|
| 1347 | 1347 | 'is_active_tab' => false, |
| 1348 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_images' ), |
|
| 1348 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
|
|
| 1349 | 1349 | 'tab_content' => '' |
| 1350 | 1350 | ); |
| 1351 | 1351 | |
| 1352 | 1352 | $arr_tabs['post_video'] = array( |
| 1353 | - 'heading_text' => __( 'Video', 'geodirectory' ), |
|
| 1353 | + 'heading_text' => __('Video', 'geodirectory'),
|
|
| 1354 | 1354 | 'is_active_tab' => false, |
| 1355 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_video' ), |
|
| 1355 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
|
|
| 1356 | 1356 | 'tab_content' => '' |
| 1357 | 1357 | ); |
| 1358 | 1358 | |
| 1359 | 1359 | $arr_tabs['special_offers'] = array( |
| 1360 | - 'heading_text' => __( 'Special Offers', 'geodirectory' ), |
|
| 1360 | + 'heading_text' => __('Special Offers', 'geodirectory'),
|
|
| 1361 | 1361 | 'is_active_tab' => false, |
| 1362 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'special_offers' ), |
|
| 1362 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
|
|
| 1363 | 1363 | 'tab_content' => '' |
| 1364 | 1364 | ); |
| 1365 | 1365 | |
| 1366 | 1366 | $arr_tabs['post_map'] = array( |
| 1367 | - 'heading_text' => __( 'Map', 'geodirectory' ), |
|
| 1367 | + 'heading_text' => __('Map', 'geodirectory'),
|
|
| 1368 | 1368 | 'is_active_tab' => false, |
| 1369 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_map' ), |
|
| 1369 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
|
|
| 1370 | 1370 | 'tab_content' => '' |
| 1371 | 1371 | ); |
| 1372 | 1372 | |
| 1373 | 1373 | $arr_tabs['reviews'] = array( |
| 1374 | - 'heading_text' => __( 'Reviews', 'geodirectory' ), |
|
| 1374 | + 'heading_text' => __('Reviews', 'geodirectory'),
|
|
| 1375 | 1375 | 'is_active_tab' => false, |
| 1376 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'reviews' ), |
|
| 1376 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
|
|
| 1377 | 1377 | 'tab_content' => 'review display' |
| 1378 | 1378 | ); |
| 1379 | 1379 | |
| 1380 | 1380 | $arr_tabs['related_listing'] = array( |
| 1381 | - 'heading_text' => __( 'Related Listing', 'geodirectory' ), |
|
| 1381 | + 'heading_text' => __('Related Listing', 'geodirectory'),
|
|
| 1382 | 1382 | 'is_active_tab' => false, |
| 1383 | - 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'related_listing' ), |
|
| 1383 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
|
|
| 1384 | 1384 | 'tab_content' => '' |
| 1385 | 1385 | ); |
| 1386 | 1386 | |
@@ -1389,7 +1389,7 @@ discard block |
||
| 1389 | 1389 | * |
| 1390 | 1390 | * @since 1.0.0 |
| 1391 | 1391 | */ |
| 1392 | - return apply_filters( 'geodir_detail_page_tab_list_extend', $arr_tabs ); |
|
| 1392 | + return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
|
|
| 1393 | 1393 | |
| 1394 | 1394 | |
| 1395 | 1395 | } |
@@ -1403,13 +1403,13 @@ discard block |
||
| 1403 | 1403 | * @return mixed|array Tabs array. |
| 1404 | 1404 | */ |
| 1405 | 1405 | function geodir_detail_page_tabs_list() {
|
| 1406 | - $tabs_excluded = get_option( 'geodir_detail_page_tabs_excluded' ); |
|
| 1406 | + $tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
|
|
| 1407 | 1407 | $tabs_array = geodir_detail_page_tabs_array(); |
| 1408 | 1408 | |
| 1409 | - if ( ! empty( $tabs_excluded ) ) {
|
|
| 1410 | - foreach ( $tabs_excluded as $tab ) {
|
|
| 1411 | - if ( array_key_exists( $tab, $tabs_array ) ) {
|
|
| 1412 | - unset( $tabs_array[ $tab ] ); |
|
| 1409 | + if (!empty($tabs_excluded)) {
|
|
| 1410 | + foreach ($tabs_excluded as $tab) {
|
|
| 1411 | + if (array_key_exists($tab, $tabs_array)) {
|
|
| 1412 | + unset($tabs_array[$tab]); |
|
| 1413 | 1413 | } |
| 1414 | 1414 | } |
| 1415 | 1415 | } |
@@ -1433,58 +1433,58 @@ discard block |
||
| 1433 | 1433 | function geodir_show_detail_page_tabs() {
|
| 1434 | 1434 | global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields, $preview; |
| 1435 | 1435 | |
| 1436 | - $post_id = ! empty( $post ) && isset( $post->ID ) ? (int) $post->ID : 0; |
|
| 1437 | - $request_post_id = ! empty( $_REQUEST['p'] ) ? (int) $_REQUEST['p'] : 0; |
|
| 1438 | - $is_backend_preview = ( is_single() && ! empty( $_REQUEST['post_type'] ) && ! empty( $_REQUEST['preview'] ) && ! empty( $_REQUEST['p'] ) ) && is_super_admin() ? true : false; // skip if preview from backend |
|
| 1436 | + $post_id = !empty($post) && isset($post->ID) ? (int) $post->ID : 0; |
|
| 1437 | + $request_post_id = !empty($_REQUEST['p']) ? (int) $_REQUEST['p'] : 0; |
|
| 1438 | + $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend |
|
| 1439 | 1439 | |
| 1440 | - if ( $is_backend_preview && ! $post_id > 0 && $request_post_id > 0 ) {
|
|
| 1441 | - $post = geodir_get_post_info( $request_post_id ); |
|
| 1442 | - setup_postdata( $post ); |
|
| 1440 | + if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
|
|
| 1441 | + $post = geodir_get_post_info($request_post_id); |
|
| 1442 | + setup_postdata($post); |
|
| 1443 | 1443 | } |
| 1444 | 1444 | |
| 1445 | - $geodir_post_detail_fields = geodir_show_listing_info( 'moreinfo' ); |
|
| 1445 | + $geodir_post_detail_fields = geodir_show_listing_info('moreinfo');
|
|
| 1446 | 1446 | |
| 1447 | 1447 | |
| 1448 | - if ( geodir_is_page( 'detail' ) ) {
|
|
| 1449 | - $video = geodir_get_video( $post->ID ); |
|
| 1450 | - $special_offers = geodir_get_special_offers( $post->ID ); |
|
| 1448 | + if (geodir_is_page('detail')) {
|
|
| 1449 | + $video = geodir_get_video($post->ID); |
|
| 1450 | + $special_offers = geodir_get_special_offers($post->ID); |
|
| 1451 | 1451 | $related_listing_array = array(); |
| 1452 | - if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
|
|
| 1453 | - $related_listing_array = get_option( 'geodir_add_related_listing_posttypes' ); |
|
| 1452 | + if (get_option('geodir_add_related_listing_posttypes')) {
|
|
| 1453 | + $related_listing_array = get_option('geodir_add_related_listing_posttypes');
|
|
| 1454 | 1454 | } |
| 1455 | 1455 | |
| 1456 | 1456 | |
| 1457 | - $excluded_tabs = get_option( 'geodir_detail_page_tabs_excluded' ); |
|
| 1458 | - if ( ! $excluded_tabs ) {
|
|
| 1457 | + $excluded_tabs = get_option('geodir_detail_page_tabs_excluded');
|
|
| 1458 | + if (!$excluded_tabs) {
|
|
| 1459 | 1459 | $excluded_tabs = array(); |
| 1460 | 1460 | } |
| 1461 | 1461 | |
| 1462 | 1462 | $related_listing = ''; |
| 1463 | - if ( in_array( $post->post_type, $related_listing_array ) && ! in_array( 'related_listing', $excluded_tabs ) ) {
|
|
| 1463 | + if (in_array($post->post_type, $related_listing_array) && !in_array('related_listing', $excluded_tabs)) {
|
|
| 1464 | 1464 | $request = array( |
| 1465 | - 'post_number' => get_option( 'geodir_related_post_count' ), |
|
| 1466 | - 'relate_to' => get_option( 'geodir_related_post_relate_to' ), |
|
| 1467 | - 'layout' => get_option( 'geodir_related_post_listing_view' ), |
|
| 1468 | - 'add_location_filter' => get_option( 'geodir_related_post_location_filter' ), |
|
| 1469 | - 'list_sort' => get_option( 'geodir_related_post_sortby' ), |
|
| 1470 | - 'character_count' => get_option( 'geodir_related_post_excerpt' ) |
|
| 1465 | + 'post_number' => get_option('geodir_related_post_count'),
|
|
| 1466 | + 'relate_to' => get_option('geodir_related_post_relate_to'),
|
|
| 1467 | + 'layout' => get_option('geodir_related_post_listing_view'),
|
|
| 1468 | + 'add_location_filter' => get_option('geodir_related_post_location_filter'),
|
|
| 1469 | + 'list_sort' => get_option('geodir_related_post_sortby'),
|
|
| 1470 | + 'character_count' => get_option('geodir_related_post_excerpt')
|
|
| 1471 | 1471 | ); |
| 1472 | 1472 | |
| 1473 | - if ( $post->post_type == 'gd_event' && defined( 'GDEVENTS_VERSION' ) ) {
|
|
| 1474 | - $related_listing = geodir_get_detail_page_related_events( $request ); |
|
| 1473 | + if ($post->post_type == 'gd_event' && defined('GDEVENTS_VERSION')) {
|
|
| 1474 | + $related_listing = geodir_get_detail_page_related_events($request); |
|
| 1475 | 1475 | } else {
|
| 1476 | - $related_listing = geodir_related_posts_display( $request ); |
|
| 1476 | + $related_listing = geodir_related_posts_display($request); |
|
| 1477 | 1477 | } |
| 1478 | 1478 | |
| 1479 | 1479 | } |
| 1480 | 1480 | |
| 1481 | - $post_images = geodir_get_images( $post->ID, 'thumbnail' ); |
|
| 1481 | + $post_images = geodir_get_images($post->ID, 'thumbnail'); |
|
| 1482 | 1482 | $thumb_image = ''; |
| 1483 | - if ( ! empty( $post_images ) ) {
|
|
| 1484 | - foreach ( $post_images as $image ) {
|
|
| 1485 | - $caption = ( ! empty( $image->caption ) ) ? $image->caption : ''; |
|
| 1486 | - $thumb_image .= '<a href="' . $image->src . '" title="' . $caption . '">'; |
|
| 1487 | - $thumb_image .= geodir_show_image( $image, 'thumbnail', true, false ); |
|
| 1483 | + if (!empty($post_images)) {
|
|
| 1484 | + foreach ($post_images as $image) {
|
|
| 1485 | + $caption = (!empty($image->caption)) ? $image->caption : ''; |
|
| 1486 | + $thumb_image .= '<a href="'.$image->src.'" title="'.$caption.'">'; |
|
| 1487 | + $thumb_image .= geodir_show_image($image, 'thumbnail', true, false); |
|
| 1488 | 1488 | $thumb_image .= '</a>'; |
| 1489 | 1489 | } |
| 1490 | 1490 | } |
@@ -1493,11 +1493,11 @@ discard block |
||
| 1493 | 1493 | $map_args['map_canvas_name'] = 'detail_page_map_canvas'; |
| 1494 | 1494 | $map_args['width'] = '600'; |
| 1495 | 1495 | $map_args['height'] = '300'; |
| 1496 | - if ( $post->post_mapzoom ) {
|
|
| 1497 | - $map_args['zoom'] = '' . $post->post_mapzoom . ''; |
|
| 1496 | + if ($post->post_mapzoom) {
|
|
| 1497 | + $map_args['zoom'] = ''.$post->post_mapzoom.''; |
|
| 1498 | 1498 | } |
| 1499 | 1499 | $map_args['autozoom'] = false; |
| 1500 | - $map_args['scrollwheel'] = ( get_option( 'geodir_add_listing_mouse_scroll' ) ) ? 0 : 1; |
|
| 1500 | + $map_args['scrollwheel'] = (get_option('geodir_add_listing_mouse_scroll')) ? 0 : 1;
|
|
| 1501 | 1501 | $map_args['child_collapse'] = '0'; |
| 1502 | 1502 | $map_args['enable_cat_filters'] = false; |
| 1503 | 1503 | $map_args['enable_text_search'] = false; |
@@ -1506,43 +1506,43 @@ discard block |
||
| 1506 | 1506 | $map_args['enable_jason_on_load'] = true; |
| 1507 | 1507 | $map_args['enable_map_direction'] = true; |
| 1508 | 1508 | $map_args['map_class_name'] = 'geodir-map-detail-page'; |
| 1509 | - $map_args['maptype'] = ( ! empty( $post->post_mapview ) ) ? $post->post_mapview : 'ROADMAP'; |
|
| 1510 | - } else if ( geodir_is_page( 'preview' ) ) {
|
|
| 1511 | - $video = isset( $post->geodir_video ) ? $post->geodir_video : ''; |
|
| 1512 | - $special_offers = isset( $post->geodir_special_offers ) ? $post->geodir_special_offers : ''; |
|
| 1509 | + $map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP'; |
|
| 1510 | + } else if (geodir_is_page('preview')) {
|
|
| 1511 | + $video = isset($post->geodir_video) ? $post->geodir_video : ''; |
|
| 1512 | + $special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : ''; |
|
| 1513 | 1513 | |
| 1514 | - if ( isset( $post->post_images ) ) {
|
|
| 1515 | - $post->post_images = trim( $post->post_images, "," ); |
|
| 1514 | + if (isset($post->post_images)) {
|
|
| 1515 | + $post->post_images = trim($post->post_images, ","); |
|
| 1516 | 1516 | } |
| 1517 | 1517 | |
| 1518 | - if ( isset( $post->post_images ) && ! empty( $post->post_images ) ) {
|
|
| 1519 | - $post_images = explode( ",", $post->post_images ); |
|
| 1518 | + if (isset($post->post_images) && !empty($post->post_images)) {
|
|
| 1519 | + $post_images = explode(",", $post->post_images);
|
|
| 1520 | 1520 | } |
| 1521 | 1521 | |
| 1522 | 1522 | $thumb_image = ''; |
| 1523 | - if ( ! empty( $post_images ) ) {
|
|
| 1524 | - foreach ( $post_images as $image ) {
|
|
| 1525 | - if ( $image != '' ) {
|
|
| 1526 | - $thumb_image .= '<a href="' . $image . '">'; |
|
| 1527 | - $thumb_image .= geodir_show_image( array( 'src' => $image ), 'thumbnail', true, false ); |
|
| 1523 | + if (!empty($post_images)) {
|
|
| 1524 | + foreach ($post_images as $image) {
|
|
| 1525 | + if ($image != '') {
|
|
| 1526 | + $thumb_image .= '<a href="'.$image.'">'; |
|
| 1527 | + $thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
|
|
| 1528 | 1528 | $thumb_image .= '</a>'; |
| 1529 | 1529 | } |
| 1530 | 1530 | } |
| 1531 | 1531 | } |
| 1532 | 1532 | |
| 1533 | 1533 | global $map_jason; |
| 1534 | - $marker_json = $post->marker_json != '' ? json_decode( $post->marker_json, true ) : array(); |
|
| 1535 | - $marker_icon = ( ! empty( $marker_json ) && ! empty( $marker_json['i'] ) ) ? $marker_json['i'] : ''; |
|
| 1536 | - $icon_size = geodir_get_marker_size( $marker_icon ); |
|
| 1534 | + $marker_json = $post->marker_json != '' ? json_decode($post->marker_json, true) : array(); |
|
| 1535 | + $marker_icon = (!empty($marker_json) && !empty($marker_json['i'])) ? $marker_json['i'] : ''; |
|
| 1536 | + $icon_size = geodir_get_marker_size($marker_icon); |
|
| 1537 | 1537 | $marker_json['w'] = $icon_size['w']; |
| 1538 | 1538 | $marker_json['h'] = $icon_size['h']; |
| 1539 | - $map_jason[] = json_encode( $marker_json ); |
|
| 1539 | + $map_jason[] = json_encode($marker_json); |
|
| 1540 | 1540 | |
| 1541 | - $address_latitude = isset( $post->post_latitude ) ? $post->post_latitude : ''; |
|
| 1542 | - $address_longitude = isset( $post->post_longitude ) ? $post->post_longitude : ''; |
|
| 1543 | - $mapview = isset( $post->post_mapview ) ? $post->post_mapview : ''; |
|
| 1544 | - $mapzoom = isset( $post->post_mapzoom ) ? $post->post_mapzoom : ''; |
|
| 1545 | - if ( ! $mapzoom ) {
|
|
| 1541 | + $address_latitude = isset($post->post_latitude) ? $post->post_latitude : ''; |
|
| 1542 | + $address_longitude = isset($post->post_longitude) ? $post->post_longitude : ''; |
|
| 1543 | + $mapview = isset($post->post_mapview) ? $post->post_mapview : ''; |
|
| 1544 | + $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : ''; |
|
| 1545 | + if (!$mapzoom) {
|
|
| 1546 | 1546 | $mapzoom = 12; |
| 1547 | 1547 | } |
| 1548 | 1548 | |
@@ -1565,37 +1565,37 @@ discard block |
||
| 1565 | 1565 | $map_args['map_class_name'] = 'geodir-map-preview-page'; |
| 1566 | 1566 | } |
| 1567 | 1567 | |
| 1568 | - $arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user |
|
| 1568 | + $arr_detail_page_tabs = geodir_detail_page_tabs_list(); // get this sooner so we can get the active tab for the user |
|
| 1569 | 1569 | |
| 1570 | 1570 | $active_tab = ''; |
| 1571 | 1571 | $active_tab_name = ''; |
| 1572 | 1572 | $default_tab = ''; |
| 1573 | 1573 | $default_tab_name = ''; |
| 1574 | - foreach ( $arr_detail_page_tabs as $tab_index => $tabs ) {
|
|
| 1575 | - if ( isset( $tabs['is_active_tab'] ) && $tabs['is_active_tab'] && ! empty( $tabs['is_display'] ) && isset( $tabs['heading_text'] ) && $tabs['heading_text'] ) {
|
|
| 1574 | + foreach ($arr_detail_page_tabs as $tab_index => $tabs) {
|
|
| 1575 | + if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
|
|
| 1576 | 1576 | $active_tab = $tab_index; |
| 1577 | - $active_tab_name = __( $tabs['heading_text'], 'geodirectory' ); |
|
| 1577 | + $active_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
| 1578 | 1578 | } |
| 1579 | 1579 | |
| 1580 | - if ( $default_tab === '' && ! empty( $tabs['is_display'] ) && ! empty( $tabs['heading_text'] ) ) {
|
|
| 1580 | + if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
|
|
| 1581 | 1581 | $default_tab = $tab_index; |
| 1582 | - $default_tab_name = __( $tabs['heading_text'], 'geodirectory' ); |
|
| 1582 | + $default_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
| 1583 | 1583 | } |
| 1584 | 1584 | } |
| 1585 | 1585 | |
| 1586 | - if ( $active_tab === '' && $default_tab !== '' ) { // Make first tab acs a active tab if not any tab is active.
|
|
| 1587 | - if ( isset( $arr_detail_page_tabs[ $active_tab ] ) && isset( $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] ) ) {
|
|
| 1588 | - $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] = false; |
|
| 1586 | + if ($active_tab === '' && $default_tab !== '') { // Make first tab acs a active tab if not any tab is active.
|
|
| 1587 | + if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
|
|
| 1588 | + $arr_detail_page_tabs[$active_tab]['is_active_tab'] = false; |
|
| 1589 | 1589 | } |
| 1590 | 1590 | |
| 1591 | - $arr_detail_page_tabs[ $default_tab ]['is_active_tab'] = true; |
|
| 1591 | + $arr_detail_page_tabs[$default_tab]['is_active_tab'] = true; |
|
| 1592 | 1592 | $active_tab = $default_tab; |
| 1593 | 1593 | $active_tab_name = $default_tab_name; |
| 1594 | 1594 | } |
| 1595 | - $tab_list = ( get_option( 'geodir_disable_tabs', false ) ) ? true : false; |
|
| 1595 | + $tab_list = (get_option('geodir_disable_tabs', false)) ? true : false;
|
|
| 1596 | 1596 | ?> |
| 1597 | 1597 | <div class="geodir-tabs" id="gd-tabs" style="position:relative;"> |
| 1598 | - <?php if ( ! $tab_list ){ ?>
|
|
| 1598 | + <?php if (!$tab_list) { ?>
|
|
| 1599 | 1599 | <div id="geodir-tab-mobile-menu"> |
| 1600 | 1600 | <i class="fa fa-bars"></i> |
| 1601 | 1601 | <span class="geodir-mobile-active-tab"><?php echo $active_tab_name; ?></span> |
@@ -1610,26 +1610,26 @@ discard block |
||
| 1610 | 1610 | * @since 1.0.0 |
| 1611 | 1611 | * @see 'geodir_after_tab_list' |
| 1612 | 1612 | */ |
| 1613 | - do_action( 'geodir_before_tab_list' ); ?> |
|
| 1613 | + do_action('geodir_before_tab_list'); ?>
|
|
| 1614 | 1614 | <?php |
| 1615 | 1615 | |
| 1616 | - foreach ( $arr_detail_page_tabs as $tab_index => $detail_page_tab ) {
|
|
| 1617 | - if ( $detail_page_tab['is_display'] ) {
|
|
| 1616 | + foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
|
|
| 1617 | + if ($detail_page_tab['is_display']) {
|
|
| 1618 | 1618 | |
| 1619 | - if ( ! $tab_list ) {
|
|
| 1619 | + if (!$tab_list) {
|
|
| 1620 | 1620 | ?> |
| 1621 | 1621 | <dt></dt> <!-- added to comply with validation --> |
| 1622 | - <dd <?php if ( $detail_page_tab['is_active_tab'] ){ ?>class="geodir-tab-active"<?php } ?> ><a
|
|
| 1622 | + <dd <?php if ($detail_page_tab['is_active_tab']) { ?>class="geodir-tab-active"<?php } ?> ><a
|
|
| 1623 | 1623 | data-tab="#<?php echo $tab_index; ?>" |
| 1624 | - data-status="enable"><?php _e( $detail_page_tab['heading_text'], 'geodirectory' ); ?></a> |
|
| 1624 | + data-status="enable"><?php _e($detail_page_tab['heading_text'], 'geodirectory'); ?></a> |
|
| 1625 | 1625 | </dd> |
| 1626 | 1626 | <?php |
| 1627 | 1627 | } |
| 1628 | 1628 | ob_start() // start tab content buffering |
| 1629 | 1629 | ?> |
| 1630 | 1630 | <li id="<?php echo $tab_index; ?>Tab"> |
| 1631 | - <?php if ( $tab_list ) {
|
|
| 1632 | - $tab_title = '<span class="gd-tab-list-title" ><a href="#' . $tab_index . '">' . __( $detail_page_tab['heading_text'], 'geodirectory' ) . '</a></span><hr />'; |
|
| 1631 | + <?php if ($tab_list) {
|
|
| 1632 | + $tab_title = '<span class="gd-tab-list-title" ><a href="#'.$tab_index.'">'.__($detail_page_tab['heading_text'], 'geodirectory').'</a></span><hr />'; |
|
| 1633 | 1633 | /** |
| 1634 | 1634 | * Filter the tab list title html. |
| 1635 | 1635 | * |
@@ -1639,7 +1639,7 @@ discard block |
||
| 1639 | 1639 | * @param string $tab_index The tab index type. |
| 1640 | 1640 | * @param array $detail_page_tab The array of values including title text. |
| 1641 | 1641 | */ |
| 1642 | - echo apply_filters( 'geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab ); |
|
| 1642 | + echo apply_filters('geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab);
|
|
| 1643 | 1643 | } ?> |
| 1644 | 1644 | <div id="<?php echo $tab_index; ?>" class="hash-offset"></div> |
| 1645 | 1645 | <?php |
@@ -1650,7 +1650,7 @@ discard block |
||
| 1650 | 1650 | * |
| 1651 | 1651 | * @param string $tab_index The tab name ID. |
| 1652 | 1652 | */ |
| 1653 | - do_action( 'geodir_before_tab_content', $tab_index ); |
|
| 1653 | + do_action('geodir_before_tab_content', $tab_index);
|
|
| 1654 | 1654 | |
| 1655 | 1655 | /** |
| 1656 | 1656 | * Called before the details tab content is output per tab. |
@@ -1660,21 +1660,21 @@ discard block |
||
| 1660 | 1660 | * @since 1.0.0 |
| 1661 | 1661 | * @todo do we need this if we have the hook above? 'geodir_before_tab_content' |
| 1662 | 1662 | */ |
| 1663 | - do_action( 'geodir_before_' . $tab_index . '_tab_content' ); |
|
| 1663 | + do_action('geodir_before_'.$tab_index.'_tab_content');
|
|
| 1664 | 1664 | /// write a code to generate content of each tab |
| 1665 | - switch ( $tab_index ) {
|
|
| 1665 | + switch ($tab_index) {
|
|
| 1666 | 1666 | case 'post_profile': |
| 1667 | 1667 | /** |
| 1668 | 1668 | * Called before the listing description content on the details page tab. |
| 1669 | 1669 | * |
| 1670 | 1670 | * @since 1.0.0 |
| 1671 | 1671 | */ |
| 1672 | - do_action( 'geodir_before_description_on_listing_detail' ); |
|
| 1673 | - if ( geodir_is_page( 'detail' ) ) {
|
|
| 1672 | + do_action('geodir_before_description_on_listing_detail');
|
|
| 1673 | + if (geodir_is_page('detail')) {
|
|
| 1674 | 1674 | the_content(); |
| 1675 | 1675 | } else {
|
| 1676 | 1676 | /** This action is documented in geodirectory_template_actions.php */ |
| 1677 | - echo apply_filters( 'the_content', stripslashes( $post->post_desc ) ); |
|
| 1677 | + echo apply_filters('the_content', stripslashes($post->post_desc));
|
|
| 1678 | 1678 | } |
| 1679 | 1679 | |
| 1680 | 1680 | /** |
@@ -1682,7 +1682,7 @@ discard block |
||
| 1682 | 1682 | * |
| 1683 | 1683 | * @since 1.0.0 |
| 1684 | 1684 | */ |
| 1685 | - do_action( 'geodir_after_description_on_listing_detail' ); |
|
| 1685 | + do_action('geodir_after_description_on_listing_detail');
|
|
| 1686 | 1686 | break; |
| 1687 | 1687 | case 'post_info': |
| 1688 | 1688 | echo $geodir_post_detail_fields; |
@@ -1692,32 +1692,32 @@ discard block |
||
| 1692 | 1692 | break; |
| 1693 | 1693 | case 'post_video': |
| 1694 | 1694 | // some browsers hide $_POST data if used for embeds so we repalce with a placeholder |
| 1695 | - if ( $preview ) {
|
|
| 1696 | - if ( $video ) {
|
|
| 1697 | - echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />" . __( 'Video Preview Placeholder', 'geodirectory' ) . "</p></span>"; |
|
| 1695 | + if ($preview) {
|
|
| 1696 | + if ($video) {
|
|
| 1697 | + echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />".__('Video Preview Placeholder', 'geodirectory')."</p></span>";
|
|
| 1698 | 1698 | } |
| 1699 | 1699 | } else {
|
| 1700 | 1700 | |
| 1701 | 1701 | // stop payment manager filtering content length |
| 1702 | - $filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' ); |
|
| 1703 | - if ( false !== $filter_priority ) {
|
|
| 1704 | - remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority ); |
|
| 1702 | + $filter_priority = has_filter('the_content', 'geodir_payments_the_content');
|
|
| 1703 | + if (false !== $filter_priority) {
|
|
| 1704 | + remove_filter('the_content', 'geodir_payments_the_content', $filter_priority);
|
|
| 1705 | 1705 | } |
| 1706 | 1706 | |
| 1707 | 1707 | /** This action is documented in geodirectory_template_actions.php */ |
| 1708 | - echo apply_filters( 'the_content', stripslashes( $video ) );// we apply the_content filter so oembed works also; |
|
| 1708 | + echo apply_filters('the_content', stripslashes($video)); // we apply the_content filter so oembed works also;
|
|
| 1709 | 1709 | |
| 1710 | - if ( false !== $filter_priority ) {
|
|
| 1711 | - add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority ); |
|
| 1710 | + if (false !== $filter_priority) {
|
|
| 1711 | + add_filter('the_content', 'geodir_payments_the_content', $filter_priority);
|
|
| 1712 | 1712 | } |
| 1713 | 1713 | } |
| 1714 | 1714 | break; |
| 1715 | 1715 | case 'special_offers': |
| 1716 | - echo apply_filters( 'gd_special_offers_content', wpautop( stripslashes( $special_offers ) ) ); |
|
| 1716 | + echo apply_filters('gd_special_offers_content', wpautop(stripslashes($special_offers)));
|
|
| 1717 | 1717 | |
| 1718 | 1718 | break; |
| 1719 | 1719 | case 'post_map': |
| 1720 | - geodir_draw_map( $map_args ); |
|
| 1720 | + geodir_draw_map($map_args); |
|
| 1721 | 1721 | break; |
| 1722 | 1722 | case 'reviews': |
| 1723 | 1723 | comments_template(); |
@@ -1726,7 +1726,7 @@ discard block |
||
| 1726 | 1726 | echo $related_listing; |
| 1727 | 1727 | break; |
| 1728 | 1728 | default: {
|
| 1729 | - if ( ( isset( $post->{$tab_index} ) || ( ! isset( $post->{$tab_index} ) && ( strpos( $tab_index, 'gd_tab_' ) !== false || $tab_index == 'link_business' ) ) ) && ! empty( $detail_page_tab['tab_content'] ) ) {
|
|
| 1729 | + if ((isset($post->{$tab_index} ) || (!isset($post->{$tab_index} ) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) {
|
|
| 1730 | 1730 | echo $detail_page_tab['tab_content']; |
| 1731 | 1731 | } |
| 1732 | 1732 | } |
@@ -1738,7 +1738,7 @@ discard block |
||
| 1738 | 1738 | * |
| 1739 | 1739 | * @since 1.0.0 |
| 1740 | 1740 | */ |
| 1741 | - do_action( 'geodir_after_tab_content', $tab_index ); |
|
| 1741 | + do_action('geodir_after_tab_content', $tab_index);
|
|
| 1742 | 1742 | |
| 1743 | 1743 | /** |
| 1744 | 1744 | * Called after the details tab content is output per tab. |
@@ -1748,7 +1748,7 @@ discard block |
||
| 1748 | 1748 | * @since 1.0.0 |
| 1749 | 1749 | * @todo do we need this if we have the hook above? 'geodir_after_tab_content' |
| 1750 | 1750 | */ |
| 1751 | - do_action( 'geodir_after_' . $tab_index . '_tab_content' ); |
|
| 1751 | + do_action('geodir_after_'.$tab_index.'_tab_content');
|
|
| 1752 | 1752 | ?> </li> |
| 1753 | 1753 | <?php |
| 1754 | 1754 | /** |
@@ -1756,7 +1756,7 @@ discard block |
||
| 1756 | 1756 | * |
| 1757 | 1757 | * @since 1.0.0 |
| 1758 | 1758 | */ |
| 1759 | - $arr_detail_page_tabs[ $tab_index ]['tab_content'] = apply_filters( "geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean() ); |
|
| 1759 | + $arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_".$detail_page_tab['tab_content']."_tab_content", ob_get_clean());
|
|
| 1760 | 1760 | } // end of if for is_display |
| 1761 | 1761 | }// end of foreach |
| 1762 | 1762 | |
@@ -1766,14 +1766,14 @@ discard block |
||
| 1766 | 1766 | * @since 1.0.0 |
| 1767 | 1767 | * @see 'geodir_before_tab_list' |
| 1768 | 1768 | */ |
| 1769 | - do_action( 'geodir_after_tab_list' ); |
|
| 1769 | + do_action('geodir_after_tab_list');
|
|
| 1770 | 1770 | ?> |
| 1771 | - <?php if ( ! $tab_list ){ ?></dl><?php } ?>
|
|
| 1772 | - <ul class="geodir-tabs-content entry-content <?php if ( $tab_list ) { ?>geodir-tabs-list<?php } ?>"
|
|
| 1771 | + <?php if (!$tab_list) { ?></dl><?php } ?>
|
|
| 1772 | + <ul class="geodir-tabs-content entry-content <?php if ($tab_list) { ?>geodir-tabs-list<?php } ?>"
|
|
| 1773 | 1773 | style="position:relative;"> |
| 1774 | 1774 | <?php |
| 1775 | - foreach ( $arr_detail_page_tabs as $detail_page_tab ) {
|
|
| 1776 | - if ( $detail_page_tab['is_display'] && ! empty( $detail_page_tab['tab_content'] ) ) {
|
|
| 1775 | + foreach ($arr_detail_page_tabs as $detail_page_tab) {
|
|
| 1776 | + if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
|
|
| 1777 | 1777 | echo $detail_page_tab['tab_content']; |
| 1778 | 1778 | }// end of if |
| 1779 | 1779 | }// end of foreach |
@@ -1783,11 +1783,11 @@ discard block |
||
| 1783 | 1783 | * |
| 1784 | 1784 | * @since 1.0.0 |
| 1785 | 1785 | */ |
| 1786 | - do_action( 'geodir_add_tab_content' ); ?> |
|
| 1786 | + do_action('geodir_add_tab_content'); ?>
|
|
| 1787 | 1787 | </ul> |
| 1788 | 1788 | <!--gd-tabs-content ul end--> |
| 1789 | 1789 | </div> |
| 1790 | - <?php if ( ! $tab_list ) { ?>
|
|
| 1790 | + <?php if (!$tab_list) { ?>
|
|
| 1791 | 1791 | <script> |
| 1792 | 1792 | if (window.location.hash && window.location.hash.indexOf('&') === -1 && jQuery(window.location.hash + 'Tab').length) {
|
| 1793 | 1793 | hashVal = window.location.hash; |
@@ -1819,31 +1819,31 @@ discard block |
||
| 1819 | 1819 | * |
| 1820 | 1820 | * @return mixed Image file. |
| 1821 | 1821 | */ |
| 1822 | -function geodir_exif( $file ) {
|
|
| 1823 | - if ( empty( $file ) || ! is_array( $file ) ) {
|
|
| 1822 | +function geodir_exif($file) {
|
|
| 1823 | + if (empty($file) || !is_array($file)) {
|
|
| 1824 | 1824 | return $file; |
| 1825 | 1825 | } |
| 1826 | 1826 | |
| 1827 | - $file_path = ! empty( $file['tmp_name'] ) ? sanitize_text_field( $file['tmp_name'] ) : ''; |
|
| 1828 | - if ( ! ( $file_path && file_exists( $file_path ) ) ) {
|
|
| 1827 | + $file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : ''; |
|
| 1828 | + if (!($file_path && file_exists($file_path))) {
|
|
| 1829 | 1829 | return $file; |
| 1830 | 1830 | } |
| 1831 | 1831 | $file['file'] = $file_path; |
| 1832 | 1832 | |
| 1833 | - if ( ! file_is_valid_image( $file_path ) ) {
|
|
| 1833 | + if (!file_is_valid_image($file_path)) {
|
|
| 1834 | 1834 | return $file; // Bail if file is not an image. |
| 1835 | 1835 | } |
| 1836 | 1836 | |
| 1837 | - if ( ! function_exists( 'wp_get_image_editor' ) ) {
|
|
| 1837 | + if (!function_exists('wp_get_image_editor')) {
|
|
| 1838 | 1838 | return $file; |
| 1839 | 1839 | } |
| 1840 | 1840 | |
| 1841 | 1841 | $mime_type = $file['type']; |
| 1842 | 1842 | $exif = array(); |
| 1843 | - if ( $mime_type == 'image/jpeg' && function_exists( 'exif_read_data' ) ) {
|
|
| 1843 | + if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
|
|
| 1844 | 1844 | try {
|
| 1845 | - $exif = exif_read_data( $file_path ); |
|
| 1846 | - } catch ( Exception $e ) {
|
|
| 1845 | + $exif = exif_read_data($file_path); |
|
| 1846 | + } catch (Exception $e) {
|
|
| 1847 | 1847 | $exif = array(); |
| 1848 | 1848 | } |
| 1849 | 1849 | } |
@@ -1852,13 +1852,13 @@ discard block |
||
| 1852 | 1852 | $flip = false; |
| 1853 | 1853 | $modify = false; |
| 1854 | 1854 | $orientation = 0; |
| 1855 | - if ( ! empty( $exif ) && isset( $exif['Orientation'] ) ) {
|
|
| 1856 | - switch ( (int) $exif['Orientation'] ) {
|
|
| 1855 | + if (!empty($exif) && isset($exif['Orientation'])) {
|
|
| 1856 | + switch ((int) $exif['Orientation']) {
|
|
| 1857 | 1857 | case 1: |
| 1858 | 1858 | // do nothing |
| 1859 | 1859 | break; |
| 1860 | 1860 | case 2: |
| 1861 | - $flip = array( false, true ); |
|
| 1861 | + $flip = array(false, true); |
|
| 1862 | 1862 | $modify = true; |
| 1863 | 1863 | break; |
| 1864 | 1864 | case 3: |
@@ -1867,13 +1867,13 @@ discard block |
||
| 1867 | 1867 | $modify = true; |
| 1868 | 1868 | break; |
| 1869 | 1869 | case 4: |
| 1870 | - $flip = array( true, false ); |
|
| 1870 | + $flip = array(true, false); |
|
| 1871 | 1871 | $modify = true; |
| 1872 | 1872 | break; |
| 1873 | 1873 | case 5: |
| 1874 | 1874 | $orientation = - 90; |
| 1875 | 1875 | $rotate = true; |
| 1876 | - $flip = array( false, true ); |
|
| 1876 | + $flip = array(false, true); |
|
| 1877 | 1877 | $modify = true; |
| 1878 | 1878 | break; |
| 1879 | 1879 | case 6: |
@@ -1884,7 +1884,7 @@ discard block |
||
| 1884 | 1884 | case 7: |
| 1885 | 1885 | $orientation = - 270; |
| 1886 | 1886 | $rotate = true; |
| 1887 | - $flip = array( false, true ); |
|
| 1887 | + $flip = array(false, true); |
|
| 1888 | 1888 | $modify = true; |
| 1889 | 1889 | break; |
| 1890 | 1890 | case 8: |
@@ -1910,31 +1910,31 @@ discard block |
||
| 1910 | 1910 | * @param int|null $quality Image Compression quality between 1-100% scale. Default null. |
| 1911 | 1911 | * @param string $quality Image mime type. |
| 1912 | 1912 | */ |
| 1913 | - $quality = apply_filters( 'geodir_image_upload_set_quality', $quality, $mime_type ); |
|
| 1914 | - if ( $quality !== null ) {
|
|
| 1913 | + $quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
|
|
| 1914 | + if ($quality !== null) {
|
|
| 1915 | 1915 | $modify = true; |
| 1916 | 1916 | } |
| 1917 | 1917 | |
| 1918 | - if ( ! $modify ) {
|
|
| 1918 | + if (!$modify) {
|
|
| 1919 | 1919 | return $file; // no change |
| 1920 | 1920 | } |
| 1921 | 1921 | |
| 1922 | - $image = wp_get_image_editor( $file_path ); |
|
| 1923 | - if ( ! is_wp_error( $image ) ) {
|
|
| 1924 | - if ( $rotate ) {
|
|
| 1925 | - $image->rotate( $orientation ); |
|
| 1922 | + $image = wp_get_image_editor($file_path); |
|
| 1923 | + if (!is_wp_error($image)) {
|
|
| 1924 | + if ($rotate) {
|
|
| 1925 | + $image->rotate($orientation); |
|
| 1926 | 1926 | } |
| 1927 | 1927 | |
| 1928 | - if ( ! empty( $flip ) ) {
|
|
| 1929 | - $image->flip( $flip[0], $flip[1] ); |
|
| 1928 | + if (!empty($flip)) {
|
|
| 1929 | + $image->flip($flip[0], $flip[1]); |
|
| 1930 | 1930 | } |
| 1931 | 1931 | |
| 1932 | - if ( $quality !== null ) {
|
|
| 1933 | - $image->set_quality( (int) $quality ); |
|
| 1932 | + if ($quality !== null) {
|
|
| 1933 | + $image->set_quality((int) $quality); |
|
| 1934 | 1934 | } |
| 1935 | 1935 | |
| 1936 | - $result = $image->save( $file_path ); |
|
| 1937 | - if ( ! is_wp_error( $result ) ) {
|
|
| 1936 | + $result = $image->save($file_path); |
|
| 1937 | + if (!is_wp_error($result)) {
|
|
| 1938 | 1938 | $file['file'] = $result['path']; |
| 1939 | 1939 | $file['tmp_name'] = $result['path']; |
| 1940 | 1940 | } |
@@ -1961,7 +1961,7 @@ discard block |
||
| 1961 | 1961 | * |
| 1962 | 1962 | * @return string Returns the recent reviews html. |
| 1963 | 1963 | */ |
| 1964 | -function geodir_get_recent_reviews( $g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false ) {
|
|
| 1964 | +function geodir_get_recent_reviews($g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false) {
|
|
| 1965 | 1965 | global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session; |
| 1966 | 1966 | $tablecomments = $wpdb->comments; |
| 1967 | 1967 | $tableposts = $wpdb->posts; |
@@ -1971,28 +1971,28 @@ discard block |
||
| 1971 | 1971 | $region_filter = ''; |
| 1972 | 1972 | $country_filter = ''; |
| 1973 | 1973 | |
| 1974 | - if ( $gd_session->get( 'gd_multi_location' ) ) {
|
|
| 1975 | - if ( $gd_ses_country = $gd_session->get( 'gd_country' ) ) {
|
|
| 1976 | - $country_filter = $wpdb->prepare( " AND r.post_country=%s ", str_replace( "-", " ", $gd_ses_country ) ); |
|
| 1974 | + if ($gd_session->get('gd_multi_location')) {
|
|
| 1975 | + if ($gd_ses_country = $gd_session->get('gd_country')) {
|
|
| 1976 | + $country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
|
|
| 1977 | 1977 | } |
| 1978 | 1978 | |
| 1979 | - if ( $gd_ses_region = $gd_session->get( 'gd_region' ) ) {
|
|
| 1980 | - $region_filter = $wpdb->prepare( " AND r.post_region=%s ", str_replace( "-", " ", $gd_ses_region ) ); |
|
| 1979 | + if ($gd_ses_region = $gd_session->get('gd_region')) {
|
|
| 1980 | + $region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
|
|
| 1981 | 1981 | } |
| 1982 | 1982 | |
| 1983 | - if ( $gd_ses_city = $gd_session->get( 'gd_city' ) ) {
|
|
| 1984 | - $city_filter = $wpdb->prepare( " AND r.post_city=%s ", str_replace( "-", " ", $gd_ses_city ) ); |
|
| 1983 | + if ($gd_ses_city = $gd_session->get('gd_city')) {
|
|
| 1984 | + $city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
|
|
| 1985 | 1985 | } |
| 1986 | 1986 | } |
| 1987 | 1987 | |
| 1988 | 1988 | $review_table = GEODIR_REVIEW_TABLE; |
| 1989 | 1989 | $request = "SELECT r.id as ID, r.post_type, r.comment_id as comment_ID, r.post_date as comment_date,r.overall_rating, r.user_id, r.post_id FROM $review_table as r WHERE r.post_status = 1 AND r.status =1 AND r.overall_rating>=1 $country_filter $region_filter $city_filter ORDER BY r.post_date DESC, r.id DESC LIMIT $no_comments"; |
| 1990 | 1990 | |
| 1991 | - $comments = $wpdb->get_results( $request ); |
|
| 1991 | + $comments = $wpdb->get_results($request); |
|
| 1992 | 1992 | |
| 1993 | - foreach ( $comments as $comment ) {
|
|
| 1993 | + foreach ($comments as $comment) {
|
|
| 1994 | 1994 | // Set the extra comment info needed. |
| 1995 | - $comment_extra = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID" ); |
|
| 1995 | + $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
|
|
| 1996 | 1996 | //echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID"; |
| 1997 | 1997 | $comment->comment_content = $comment_extra->comment_content; |
| 1998 | 1998 | $comment->comment_author = $comment_extra->comment_author; |
@@ -2000,75 +2000,75 @@ discard block |
||
| 2000 | 2000 | |
| 2001 | 2001 | $comment_id = ''; |
| 2002 | 2002 | $comment_id = $comment->comment_ID; |
| 2003 | - $comment_content = strip_tags( $comment->comment_content ); |
|
| 2003 | + $comment_content = strip_tags($comment->comment_content); |
|
| 2004 | 2004 | |
| 2005 | - $comment_content = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content ); |
|
| 2005 | + $comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
|
|
| 2006 | 2006 | |
| 2007 | - $permalink = get_permalink( $comment->ID ) . "#comment-" . $comment->comment_ID; |
|
| 2007 | + $permalink = get_permalink($comment->ID)."#comment-".$comment->comment_ID; |
|
| 2008 | 2008 | $comment_author_email = $comment->comment_author_email; |
| 2009 | 2009 | $comment_post_ID = $comment->post_id; |
| 2010 | 2010 | |
| 2011 | 2011 | $na = true; |
| 2012 | - if ( function_exists( 'icl_object_id' ) && icl_object_id( $comment_post_ID, $comment->post_type, true ) ) {
|
|
| 2013 | - $comment_post_ID2 = icl_object_id( $comment_post_ID, $comment->post_type, false ); |
|
| 2014 | - if ( $comment_post_ID == $comment_post_ID2 ) {
|
|
| 2012 | + if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
|
|
| 2013 | + $comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false); |
|
| 2014 | + if ($comment_post_ID == $comment_post_ID2) {
|
|
| 2015 | 2015 | } else {
|
| 2016 | 2016 | $na = false; |
| 2017 | 2017 | } |
| 2018 | 2018 | } |
| 2019 | 2019 | |
| 2020 | - $post_title = get_the_title( $comment_post_ID ); |
|
| 2021 | - $permalink = get_permalink( $comment_post_ID ); |
|
| 2022 | - $comment_permalink = $permalink . "#comment-" . $comment->comment_ID; |
|
| 2023 | - $read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __( 'Read more', 'geodirectory' ) . '</a>'; |
|
| 2020 | + $post_title = get_the_title($comment_post_ID); |
|
| 2021 | + $permalink = get_permalink($comment_post_ID); |
|
| 2022 | + $comment_permalink = $permalink."#comment-".$comment->comment_ID; |
|
| 2023 | + $read_more = '<a class="comment_excerpt" href="'.$comment_permalink.'">'.__('Read more', 'geodirectory').'</a>';
|
|
| 2024 | 2024 | |
| 2025 | - $comment_content_length = strlen( $comment_content ); |
|
| 2026 | - if ( $comment_content_length > $comment_lenth ) {
|
|
| 2027 | - $comment_excerpt = mb_substr( $comment_content, 0, $comment_lenth ) . '... ' . $read_more; |
|
| 2025 | + $comment_content_length = strlen($comment_content); |
|
| 2026 | + if ($comment_content_length > $comment_lenth) {
|
|
| 2027 | + $comment_excerpt = mb_substr($comment_content, 0, $comment_lenth).'... '.$read_more; |
|
| 2028 | 2028 | } else {
|
| 2029 | 2029 | $comment_excerpt = $comment_content; |
| 2030 | 2030 | } |
| 2031 | 2031 | |
| 2032 | - if ( $comment->user_id ) {
|
|
| 2033 | - $user_profile_url = get_author_posts_url( $comment->user_id ); |
|
| 2032 | + if ($comment->user_id) {
|
|
| 2033 | + $user_profile_url = get_author_posts_url($comment->user_id); |
|
| 2034 | 2034 | } else {
|
| 2035 | 2035 | $user_profile_url = ''; |
| 2036 | 2036 | } |
| 2037 | 2037 | |
| 2038 | - if ( $comment_id && $na ) {
|
|
| 2038 | + if ($comment_id && $na) {
|
|
| 2039 | 2039 | $comments_echo .= '<li class="clearfix">'; |
| 2040 | - $comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">"; |
|
| 2041 | - if ( function_exists( 'get_avatar' ) ) {
|
|
| 2042 | - if ( ! isset( $comment->comment_type ) ) {
|
|
| 2043 | - if ( $user_profile_url ) {
|
|
| 2044 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 2040 | + $comments_echo .= "<span class=\"li".$comment_id." geodir_reviewer_image\">"; |
|
| 2041 | + if (function_exists('get_avatar')) {
|
|
| 2042 | + if (!isset($comment->comment_type)) {
|
|
| 2043 | + if ($user_profile_url) {
|
|
| 2044 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
| 2045 | 2045 | } |
| 2046 | - $comments_echo .= get_avatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
| 2047 | - if ( $user_profile_url ) {
|
|
| 2046 | + $comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
| 2047 | + if ($user_profile_url) {
|
|
| 2048 | 2048 | $comments_echo .= '</a>'; |
| 2049 | 2049 | } |
| 2050 | - } elseif ( ( isset( $comment->comment_type ) && $comment->comment_type == 'trackback' ) || ( isset( $comment->comment_type ) && $comment->comment_type == 'pingback' ) ) {
|
|
| 2051 | - if ( $user_profile_url ) {
|
|
| 2052 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 2050 | + } elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
|
|
| 2051 | + if ($user_profile_url) {
|
|
| 2052 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
| 2053 | 2053 | } |
| 2054 | - $comments_echo .= get_avatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
| 2054 | + $comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
| 2055 | 2055 | } |
| 2056 | - } elseif ( function_exists( 'gravatar' ) ) {
|
|
| 2057 | - if ( $user_profile_url ) {
|
|
| 2058 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 2056 | + } elseif (function_exists('gravatar')) {
|
|
| 2057 | + if ($user_profile_url) {
|
|
| 2058 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
| 2059 | 2059 | } |
| 2060 | 2060 | $comments_echo .= "<img src=\""; |
| 2061 | - if ( '' == $comment->comment_type ) {
|
|
| 2062 | - $comments_echo .= gravatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
| 2063 | - if ( $user_profile_url ) {
|
|
| 2061 | + if ('' == $comment->comment_type) {
|
|
| 2062 | + $comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
| 2063 | + if ($user_profile_url) {
|
|
| 2064 | 2064 | $comments_echo .= '</a>'; |
| 2065 | 2065 | } |
| 2066 | - } elseif ( ( 'trackback' == $comment->comment_type ) || ( 'pingback' == $comment->comment_type ) ) {
|
|
| 2067 | - if ( $user_profile_url ) {
|
|
| 2068 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 2066 | + } elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
|
|
| 2067 | + if ($user_profile_url) {
|
|
| 2068 | + $comments_echo .= '<a href="'.$user_profile_url.'">'; |
|
| 2069 | 2069 | } |
| 2070 | - $comments_echo .= gravatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' ); |
|
| 2071 | - if ( $user_profile_url ) {
|
|
| 2070 | + $comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png'); |
|
| 2071 | + if ($user_profile_url) {
|
|
| 2072 | 2072 | $comments_echo .= '</a>'; |
| 2073 | 2073 | } |
| 2074 | 2074 | } |
@@ -2078,17 +2078,17 @@ discard block |
||
| 2078 | 2078 | $comments_echo .= "</span>\n"; |
| 2079 | 2079 | |
| 2080 | 2080 | $comments_echo .= '<span class="geodir_reviewer_content">'; |
| 2081 | - if ( $comment->user_id ) {
|
|
| 2082 | - $comments_echo .= '<a href="' . get_author_posts_url( $comment->user_id ) . '">'; |
|
| 2081 | + if ($comment->user_id) {
|
|
| 2082 | + $comments_echo .= '<a href="'.get_author_posts_url($comment->user_id).'">'; |
|
| 2083 | 2083 | } |
| 2084 | - $comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> '; |
|
| 2085 | - if ( $comment->user_id ) {
|
|
| 2084 | + $comments_echo .= '<span class="geodir_reviewer_author">'.$comment->comment_author.'</span> '; |
|
| 2085 | + if ($comment->user_id) {
|
|
| 2086 | 2086 | $comments_echo .= '</a>'; |
| 2087 | 2087 | } |
| 2088 | - $comments_echo .= '<span class="geodir_reviewer_reviewed">' . __( 'reviewed', 'geodirectory' ) . '</span> '; |
|
| 2089 | - $comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>'; |
|
| 2090 | - $comments_echo .= geodir_get_rating_stars( $comment->overall_rating, $comment_post_ID ); |
|
| 2091 | - $comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . ''; |
|
| 2088 | + $comments_echo .= '<span class="geodir_reviewer_reviewed">'.__('reviewed', 'geodirectory').'</span> ';
|
|
| 2089 | + $comments_echo .= '<a href="'.$permalink.'" class="geodir_reviewer_title">'.$post_title.'</a>'; |
|
| 2090 | + $comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID); |
|
| 2091 | + $comments_echo .= '<p class="geodir_reviewer_text">'.$comment_excerpt.''; |
|
| 2092 | 2092 | //echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
|
| 2093 | 2093 | $comments_echo .= '</p>'; |
| 2094 | 2094 | |
@@ -2108,25 +2108,25 @@ discard block |
||
| 2108 | 2108 | * @return array Returns post categories as an array. |
| 2109 | 2109 | */ |
| 2110 | 2110 | function geodir_home_map_cats_key_value_array() {
|
| 2111 | - $post_types = geodir_get_posttypes( 'object' ); |
|
| 2111 | + $post_types = geodir_get_posttypes('object');
|
|
| 2112 | 2112 | |
| 2113 | 2113 | $return = array(); |
| 2114 | - if ( ! empty( $post_types ) ) {
|
|
| 2115 | - foreach ( $post_types as $key => $post_type ) {
|
|
| 2116 | - $cpt_name = __( $post_type->labels->singular_name, 'geodirectory' ); |
|
| 2117 | - $post_type_name = sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ); |
|
| 2118 | - $taxonomies = geodir_get_taxonomies( $key ); |
|
| 2119 | - $cat_taxonomy = ! empty( $taxonomies[0] ) ? $taxonomies[0] : null; |
|
| 2120 | - $cat_terms = $cat_taxonomy ? get_terms( $cat_taxonomy ) : null; |
|
| 2121 | - |
|
| 2122 | - if ( ! empty( $cat_terms ) ) {
|
|
| 2123 | - $return[ 'optgroup_start-' . $key ] = $post_type_name; |
|
| 2124 | - |
|
| 2125 | - foreach ( $cat_terms as $cat_term ) {
|
|
| 2126 | - $return[ $key . '_' . $cat_term->term_id ] = $cat_term->name; |
|
| 2114 | + if (!empty($post_types)) {
|
|
| 2115 | + foreach ($post_types as $key => $post_type) {
|
|
| 2116 | + $cpt_name = __($post_type->labels->singular_name, 'geodirectory'); |
|
| 2117 | + $post_type_name = sprintf(__('%s Categories', 'geodirectory'), $cpt_name);
|
|
| 2118 | + $taxonomies = geodir_get_taxonomies($key); |
|
| 2119 | + $cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : null; |
|
| 2120 | + $cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : null; |
|
| 2121 | + |
|
| 2122 | + if (!empty($cat_terms)) {
|
|
| 2123 | + $return['optgroup_start-'.$key] = $post_type_name; |
|
| 2124 | + |
|
| 2125 | + foreach ($cat_terms as $cat_term) {
|
|
| 2126 | + $return[$key.'_'.$cat_term->term_id] = $cat_term->name; |
|
| 2127 | 2127 | } |
| 2128 | 2128 | |
| 2129 | - $return[ 'optgroup_end-' . $key ] = $post_type_name; |
|
| 2129 | + $return['optgroup_end-'.$key] = $post_type_name; |
|
| 2130 | 2130 | } |
| 2131 | 2131 | } |
| 2132 | 2132 | } |
@@ -2142,14 +2142,14 @@ discard block |
||
| 2142 | 2142 | * @package GeoDirectory |
| 2143 | 2143 | */ |
| 2144 | 2144 | function geodir_twitter_tweet_button() {
|
| 2145 | - if ( isset( $_GET['gde'] ) ) {
|
|
| 2146 | - $link = '?url=' . urlencode( geodir_curPageURL() ); |
|
| 2145 | + if (isset($_GET['gde'])) {
|
|
| 2146 | + $link = '?url='.urlencode(geodir_curPageURL()); |
|
| 2147 | 2147 | } else {
|
| 2148 | 2148 | $link = ''; |
| 2149 | 2149 | } |
| 2150 | 2150 | ?> |
| 2151 | 2151 | <a href="http://twitter.com/share<?php echo $link; ?>" |
| 2152 | - class="twitter-share-button"><?php _e( 'Tweet', 'geodirectory' ); ?></a> |
|
| 2152 | + class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a>
|
|
| 2153 | 2153 | <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script> |
| 2154 | 2154 | <?php |
| 2155 | 2155 | } |
@@ -2166,10 +2166,10 @@ discard block |
||
| 2166 | 2166 | function geodir_fb_like_button() {
|
| 2167 | 2167 | global $post; |
| 2168 | 2168 | ?> |
| 2169 | - <iframe <?php if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false ) ) {
|
|
| 2169 | + <iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) {
|
|
| 2170 | 2170 | echo 'allowtransparency="true"'; |
| 2171 | 2171 | } ?> class="facebook" |
| 2172 | - src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode( get_permalink( $post->ID ) ); ?>&layout=button_count&show_faces=false&width=100&action=like&colorscheme=light" |
|
| 2172 | + src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&layout=button_count&show_faces=false&width=100&action=like&colorscheme=light" |
|
| 2173 | 2173 | style="border:none; overflow:hidden; width:100px; height:20px"></iframe> |
| 2174 | 2174 | <?php |
| 2175 | 2175 | } |
@@ -2200,7 +2200,7 @@ discard block |
||
| 2200 | 2200 | |
| 2201 | 2201 | |
| 2202 | 2202 | function geodir_listing_bounce_map_pin_on_hover() {
|
| 2203 | - if ( get_option( 'geodir_listing_hover_bounce_map_pin', true ) ) {
|
|
| 2203 | + if (get_option('geodir_listing_hover_bounce_map_pin', true)) {
|
|
| 2204 | 2204 | ?> |
| 2205 | 2205 | <script> |
| 2206 | 2206 | jQuery(function ($) {
|
@@ -2223,44 +2223,44 @@ discard block |
||
| 2223 | 2223 | } |
| 2224 | 2224 | } |
| 2225 | 2225 | |
| 2226 | -add_action( 'geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10 ); |
|
| 2226 | +add_action('geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10);
|
|
| 2227 | 2227 | |
| 2228 | -add_action( 'geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1 ); |
|
| 2229 | -function geodir_output_favourite_html_listings( $post_id ) {
|
|
| 2230 | - geodir_favourite_html( '', $post_id ); |
|
| 2228 | +add_action('geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1);
|
|
| 2229 | +function geodir_output_favourite_html_listings($post_id) {
|
|
| 2230 | + geodir_favourite_html('', $post_id);
|
|
| 2231 | 2231 | } |
| 2232 | 2232 | |
| 2233 | -add_action( 'geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2 ); |
|
| 2234 | -function geodir_output_pinpoint_html_listings( $post_id, $post ) {
|
|
| 2233 | +add_action('geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2);
|
|
| 2234 | +function geodir_output_pinpoint_html_listings($post_id, $post) {
|
|
| 2235 | 2235 | global $wp_query; |
| 2236 | 2236 | |
| 2237 | 2237 | $show_pin_point = $wp_query->is_main_query(); |
| 2238 | 2238 | |
| 2239 | - if ( ! empty( $show_pin_point ) && is_active_widget( false, "", "geodir_map_v3_listing_map" ) ) {
|
|
| 2240 | - $term_icon_url = get_tax_meta( $post->default_category, 'ct_cat_icon', false, $post->post_type ); |
|
| 2241 | - $marker_icon = isset( $term_icon_url['src'] ) ? $term_icon_url['src'] : get_option( 'geodir_default_marker_icon' ); |
|
| 2239 | + if (!empty($show_pin_point) && is_active_widget(false, "", "geodir_map_v3_listing_map")) {
|
|
| 2240 | + $term_icon_url = get_tax_meta($post->default_category, 'ct_cat_icon', false, $post->post_type); |
|
| 2241 | + $marker_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : get_option('geodir_default_marker_icon');
|
|
| 2242 | 2242 | ?> |
| 2243 | 2243 | <span class="geodir-pinpoint" |
| 2244 | - style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters( 'geodir_listing_listview_pinpoint_inner_content', '', 'listing' ); ?></span>
|
|
| 2244 | + style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters('geodir_listing_listview_pinpoint_inner_content', '', 'listing'); ?></span>
|
|
| 2245 | 2245 | <a class="geodir-pinpoint-link" href="javascript:void(0)" |
| 2246 | 2246 | onclick="openMarker('listing_map_canvas' ,'<?php echo $post->ID; ?>')"
|
| 2247 | 2247 | onmouseover="animate_marker('listing_map_canvas' ,'<?php echo $post->ID; ?>')"
|
| 2248 | - onmouseout="stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')"><?php _e( 'Pinpoint', 'geodirectory' ); ?></a>
|
|
| 2248 | + onmouseout="stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')"><?php _e('Pinpoint', 'geodirectory'); ?></a>
|
|
| 2249 | 2249 | <?php |
| 2250 | 2250 | } |
| 2251 | 2251 | } |
| 2252 | 2252 | |
| 2253 | 2253 | function geodir_search_form_submit_button() {
|
| 2254 | 2254 | |
| 2255 | - $new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true; |
|
| 2255 | + $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
|
| 2256 | 2256 | |
| 2257 | - if ( $new_style ) {
|
|
| 2257 | + if ($new_style) {
|
|
| 2258 | 2258 | $default_search_button_label = '<i class="fa fa-search" aria-hidden="true"></i>'; |
| 2259 | - }else{
|
|
| 2259 | + } else {
|
|
| 2260 | 2260 | $default_search_button_label = 'Search'; |
| 2261 | 2261 | } |
| 2262 | - if ( get_option( 'geodir_search_button_label' ) && get_option( 'geodir_search_button_label' ) != 'Search' ) {
|
|
| 2263 | - $default_search_button_label = __( get_option( 'geodir_search_button_label' ), 'geodirectory' ); |
|
| 2262 | + if (get_option('geodir_search_button_label') && get_option('geodir_search_button_label') != 'Search') {
|
|
| 2263 | + $default_search_button_label = __(get_option('geodir_search_button_label'), 'geodirectory');
|
|
| 2264 | 2264 | } |
| 2265 | 2265 | |
| 2266 | 2266 | /** |
@@ -2272,78 +2272,78 @@ discard block |
||
| 2272 | 2272 | * |
| 2273 | 2273 | * @param string $default_search_button_label The current search button text. |
| 2274 | 2274 | */ |
| 2275 | - $default_search_button_label = apply_filters( 'geodir_search_default_search_button_text', $default_search_button_label ); |
|
| 2275 | + $default_search_button_label = apply_filters('geodir_search_default_search_button_text', $default_search_button_label);
|
|
| 2276 | 2276 | |
| 2277 | 2277 | $fa_class = ''; |
| 2278 | - if ( strpos( $default_search_button_label, '&#' ) !== false ) {
|
|
| 2278 | + if (strpos($default_search_button_label, '&#') !== false) {
|
|
| 2279 | 2279 | $fa_class = 'fa'; |
| 2280 | 2280 | } |
| 2281 | 2281 | |
| 2282 | 2282 | |
| 2283 | - if ( $new_style ) {
|
|
| 2283 | + if ($new_style) {
|
|
| 2284 | 2284 | ?> |
| 2285 | - <button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e( $default_search_button_label ,'geodirectory'); ?></button> |
|
| 2286 | -<?php }else{?>
|
|
| 2287 | - <input type="button" value="<?php esc_attr_e( $default_search_button_label ); ?>" |
|
| 2285 | + <button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e($default_search_button_label, 'geodirectory'); ?></button> |
|
| 2286 | +<?php } else {?>
|
|
| 2287 | + <input type="button" value="<?php esc_attr_e($default_search_button_label); ?>" |
|
| 2288 | 2288 | class="geodir_submit_search <?php echo $fa_class; ?>"/> |
| 2289 | 2289 | <?php } |
| 2290 | 2290 | } |
| 2291 | 2291 | |
| 2292 | -add_action( 'geodir_before_search_button', 'geodir_search_form_submit_button', 5000 ); |
|
| 2292 | +add_action('geodir_before_search_button', 'geodir_search_form_submit_button', 5000);
|
|
| 2293 | 2293 | |
| 2294 | 2294 | function geodir_search_form_post_type_input() {
|
| 2295 | 2295 | global $geodir_search_post_type; |
| 2296 | - $post_types = apply_filters( 'geodir_search_form_post_types', geodir_get_posttypes( 'object' ) ); |
|
| 2296 | + $post_types = apply_filters('geodir_search_form_post_types', geodir_get_posttypes('object'));
|
|
| 2297 | 2297 | $curr_post_type = $geodir_search_post_type; |
| 2298 | 2298 | |
| 2299 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
|
|
| 2299 | + if (!empty($post_types) && count((array) $post_types) > 1) {
|
|
| 2300 | 2300 | |
| 2301 | - foreach ( $post_types as $post_type => $info ){
|
|
| 2301 | + foreach ($post_types as $post_type => $info) {
|
|
| 2302 | 2302 | global $wpdb; |
| 2303 | - $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
| 2304 | - if ( ! $has_posts ) {
|
|
| 2303 | + $has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
|
|
| 2304 | + if (!$has_posts) {
|
|
| 2305 | 2305 | unset($post_types->{$post_type});
|
| 2306 | 2306 | } |
| 2307 | 2307 | } |
| 2308 | 2308 | |
| 2309 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
|
|
| 2309 | + if (!empty($post_types) && count((array) $post_types) > 1) {
|
|
| 2310 | 2310 | |
| 2311 | - $new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true; |
|
| 2312 | - if ( $new_style ) {
|
|
| 2311 | + $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
|
| 2312 | + if ($new_style) {
|
|
| 2313 | 2313 | echo "<div class='gd-search-input-wrapper gd-search-field-cpt'>"; |
| 2314 | 2314 | } |
| 2315 | 2315 | ?> |
| 2316 | 2316 | <select name="stype" class="search_by_post"> |
| 2317 | - <?php foreach ( $post_types as $post_type => $info ): |
|
| 2317 | + <?php foreach ($post_types as $post_type => $info): |
|
| 2318 | 2318 | global $wpdb; |
| 2319 | 2319 | ?> |
| 2320 | 2320 | |
| 2321 | - <option data-label="<?php echo get_post_type_archive_link( $post_type ); ?>" |
|
| 2322 | - value="<?php echo $post_type; ?>" <?php if ( isset( $_REQUEST['stype'] ) ) {
|
|
| 2323 | - if ( $post_type == $_REQUEST['stype'] ) {
|
|
| 2321 | + <option data-label="<?php echo get_post_type_archive_link($post_type); ?>" |
|
| 2322 | + value="<?php echo $post_type; ?>" <?php if (isset($_REQUEST['stype'])) {
|
|
| 2323 | + if ($post_type == $_REQUEST['stype']) {
|
|
| 2324 | 2324 | echo 'selected="selected"'; |
| 2325 | 2325 | } |
| 2326 | - } elseif ( $curr_post_type == $post_type ) {
|
|
| 2326 | + } elseif ($curr_post_type == $post_type) {
|
|
| 2327 | 2327 | echo 'selected="selected"'; |
| 2328 | - } ?>><?php _e( ucfirst( $info->labels->name ), 'geodirectory' ); ?></option> |
|
| 2328 | + } ?>><?php _e(ucfirst($info->labels->name), 'geodirectory'); ?></option> |
|
| 2329 | 2329 | |
| 2330 | 2330 | <?php endforeach; ?> |
| 2331 | 2331 | </select> |
| 2332 | 2332 | <?php |
| 2333 | - if ( $new_style ) {
|
|
| 2333 | + if ($new_style) {
|
|
| 2334 | 2334 | echo "</div>"; |
| 2335 | 2335 | } |
| 2336 | - }else{
|
|
| 2337 | - if(! empty( $post_types )){
|
|
| 2338 | - $pt_arr = (array)$post_types; |
|
| 2339 | - echo '<input type="hidden" name="stype" value="' . key( $pt_arr ) . '" />'; |
|
| 2340 | - }else{
|
|
| 2336 | + } else {
|
|
| 2337 | + if (!empty($post_types)) {
|
|
| 2338 | + $pt_arr = (array) $post_types; |
|
| 2339 | + echo '<input type="hidden" name="stype" value="'.key($pt_arr).'" />'; |
|
| 2340 | + } else {
|
|
| 2341 | 2341 | echo '<input type="hidden" name="stype" value="gd_place" />'; |
| 2342 | 2342 | } |
| 2343 | 2343 | |
| 2344 | 2344 | } |
| 2345 | 2345 | |
| 2346 | - }elseif ( ! empty( $post_types ) ) {
|
|
| 2346 | + }elseif (!empty($post_types)) {
|
|
| 2347 | 2347 | echo '<input type="hidden" name="stype" value="gd_place" />'; |
| 2348 | 2348 | } |
| 2349 | 2349 | } |
@@ -2351,26 +2351,26 @@ discard block |
||
| 2351 | 2351 | function geodir_search_form_search_input() {
|
| 2352 | 2352 | |
| 2353 | 2353 | $default_search_for_text = SEARCH_FOR_TEXT; |
| 2354 | - if ( get_option( 'geodir_search_field_default_text' ) ) {
|
|
| 2355 | - $default_search_for_text = __( get_option( 'geodir_search_field_default_text' ), 'geodirectory' ); |
|
| 2354 | + if (get_option('geodir_search_field_default_text')) {
|
|
| 2355 | + $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
|
|
| 2356 | 2356 | } |
| 2357 | 2357 | |
| 2358 | 2358 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
| 2359 | - if($new_style){
|
|
| 2359 | + if ($new_style) {
|
|
| 2360 | 2360 | echo "<div class='gd-search-input-wrapper gd-search-field-search'>"; |
| 2361 | 2361 | } |
| 2362 | 2362 | ?> |
| 2363 | 2363 | <input class="search_text" name="s" |
| 2364 | - value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) {
|
|
| 2365 | - echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) ); |
|
| 2364 | + value="<?php if (isset($_REQUEST['s']) && trim($_REQUEST['s']) != '') {
|
|
| 2365 | + echo esc_attr(stripslashes_deep($_REQUEST['s'])); |
|
| 2366 | 2366 | } else {
|
| 2367 | 2367 | echo $default_search_for_text; |
| 2368 | 2368 | } ?>" type="text" |
| 2369 | - onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}"
|
|
| 2370 | - onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}"
|
|
| 2369 | + onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql($default_search_for_text); ?>';}"
|
|
| 2370 | + onfocus="if (this.value == '<?php echo esc_sql($default_search_for_text); ?>') {this.value = '';}"
|
|
| 2371 | 2371 | onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);"> |
| 2372 | 2372 | <?php |
| 2373 | - if($new_style){
|
|
| 2373 | + if ($new_style) {
|
|
| 2374 | 2374 | echo "</div>"; |
| 2375 | 2375 | } |
| 2376 | 2376 | } |
@@ -2378,12 +2378,12 @@ discard block |
||
| 2378 | 2378 | function geodir_search_form_near_input() {
|
| 2379 | 2379 | |
| 2380 | 2380 | $default_near_text = NEAR_TEXT; |
| 2381 | - if ( get_option( 'geodir_near_field_default_text' ) ) {
|
|
| 2382 | - $default_near_text = __( get_option( 'geodir_near_field_default_text' ), 'geodirectory' ); |
|
| 2381 | + if (get_option('geodir_near_field_default_text')) {
|
|
| 2382 | + $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
|
|
| 2383 | 2383 | } |
| 2384 | 2384 | |
| 2385 | - if ( isset( $_REQUEST['snear'] ) && $_REQUEST['snear'] != '' ) {
|
|
| 2386 | - $near = esc_attr( stripslashes_deep( $_REQUEST['snear'] ) ); |
|
| 2385 | + if (isset($_REQUEST['snear']) && $_REQUEST['snear'] != '') {
|
|
| 2386 | + $near = esc_attr(stripslashes_deep($_REQUEST['snear'])); |
|
| 2387 | 2387 | } else {
|
| 2388 | 2388 | $near = $default_near_text; |
| 2389 | 2389 | } |
@@ -2397,7 +2397,7 @@ discard block |
||
| 2397 | 2397 | * @since 1.6.9 |
| 2398 | 2398 | * @param string $curr_post_type The current post type. |
| 2399 | 2399 | */ |
| 2400 | - $near_input_extra = apply_filters('geodir_near_input_extra','',$curr_post_type);
|
|
| 2400 | + $near_input_extra = apply_filters('geodir_near_input_extra', '', $curr_post_type);
|
|
| 2401 | 2401 | |
| 2402 | 2402 | |
| 2403 | 2403 | /** |
@@ -2410,7 +2410,7 @@ discard block |
||
| 2410 | 2410 | * @param string $near The current near value. |
| 2411 | 2411 | * @param string $default_near_text The default near value. |
| 2412 | 2412 | */ |
| 2413 | - $near = apply_filters( 'geodir_search_near_text', $near, $default_near_text ); |
|
| 2413 | + $near = apply_filters('geodir_search_near_text', $near, $default_near_text);
|
|
| 2414 | 2414 | /** |
| 2415 | 2415 | * Filter the default "Near" text value for the search form. |
| 2416 | 2416 | * |
@@ -2421,7 +2421,7 @@ discard block |
||
| 2421 | 2421 | * @param string $near The current near value. |
| 2422 | 2422 | * @param string $default_near_text The default near value. |
| 2423 | 2423 | */ |
| 2424 | - $default_near_text = apply_filters( 'geodir_search_default_near_text', $default_near_text, $near ); |
|
| 2424 | + $default_near_text = apply_filters('geodir_search_default_near_text', $default_near_text, $near);
|
|
| 2425 | 2425 | /** |
| 2426 | 2426 | * Filter the class for the near search input. |
| 2427 | 2427 | * |
@@ -2429,10 +2429,10 @@ discard block |
||
| 2429 | 2429 | * |
| 2430 | 2430 | * @param string $class The class for the HTML near input, default is blank. |
| 2431 | 2431 | */ |
| 2432 | - $near_class = apply_filters( 'geodir_search_near_class', '' ); |
|
| 2432 | + $near_class = apply_filters('geodir_search_near_class', '');
|
|
| 2433 | 2433 | |
| 2434 | 2434 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
|
| 2435 | - if($new_style){
|
|
| 2435 | + if ($new_style) {
|
|
| 2436 | 2436 | echo "<div class='gd-search-input-wrapper gd-search-field-near' $near_input_extra>"; |
| 2437 | 2437 | |
| 2438 | 2438 | do_action('geodir_before_near_input');
|
@@ -2440,30 +2440,30 @@ discard block |
||
| 2440 | 2440 | |
| 2441 | 2441 | ?> |
| 2442 | 2442 | <input name="snear" class="snear <?php echo $near_class; ?>" type="text" value="<?php echo $near; ?>" |
| 2443 | - onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql( $near ); ?>' != '' ? '<?php echo esc_sql( $near ); ?>' : '<?php echo $default_near_text; ?>');}"
|
|
| 2444 | - onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql( $near ); ?>') {this.value = '';}"
|
|
| 2445 | - onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra;?>/> |
|
| 2443 | + onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql($near); ?>' != '' ? '<?php echo esc_sql($near); ?>' : '<?php echo $default_near_text; ?>');}"
|
|
| 2444 | + onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql($near); ?>') {this.value = '';}"
|
|
| 2445 | + onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra; ?>/> |
|
| 2446 | 2446 | <?php |
| 2447 | - if($new_style){
|
|
| 2447 | + if ($new_style) {
|
|
| 2448 | 2448 | do_action('geodir_after_near_input');
|
| 2449 | 2449 | |
| 2450 | 2450 | echo "</div>"; |
| 2451 | 2451 | } |
| 2452 | 2452 | } |
| 2453 | 2453 | |
| 2454 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10 ); |
|
| 2455 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_search_input', 20 ); |
|
| 2456 | -add_action( 'geodir_search_form_inputs', 'geodir_search_form_near_input', 30 ); |
|
| 2454 | +add_action('geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10);
|
|
| 2455 | +add_action('geodir_search_form_inputs', 'geodir_search_form_search_input', 20);
|
|
| 2456 | +add_action('geodir_search_form_inputs', 'geodir_search_form_near_input', 30);
|
|
| 2457 | 2457 | |
| 2458 | -function geodir_get_search_post_type($pt=''){
|
|
| 2458 | +function geodir_get_search_post_type($pt = '') {
|
|
| 2459 | 2459 | global $geodir_search_post_type; |
| 2460 | 2460 | |
| 2461 | - if($pt!=''){return $geodir_search_post_type = $pt;}
|
|
| 2462 | - if(!empty($geodir_search_post_type)){ return $geodir_search_post_type;}
|
|
| 2461 | + if ($pt != '') {return $geodir_search_post_type = $pt; }
|
|
| 2462 | + if (!empty($geodir_search_post_type)) { return $geodir_search_post_type; }
|
|
| 2463 | 2463 | |
| 2464 | 2464 | $geodir_search_post_type = geodir_get_current_posttype(); |
| 2465 | 2465 | |
| 2466 | - if(!$geodir_search_post_type) {
|
|
| 2466 | + if (!$geodir_search_post_type) {
|
|
| 2467 | 2467 | $geodir_search_post_type = geodir_get_default_posttype(); |
| 2468 | 2468 | } |
| 2469 | 2469 | |
@@ -2471,7 +2471,7 @@ discard block |
||
| 2471 | 2471 | return $geodir_search_post_type; |
| 2472 | 2472 | } |
| 2473 | 2473 | |
| 2474 | -function geodir_search_form(){
|
|
| 2474 | +function geodir_search_form() {
|
|
| 2475 | 2475 | |
| 2476 | 2476 | geodir_get_search_post_type(); |
| 2477 | 2477 | |
@@ -2481,8 +2481,8 @@ discard block |
||
| 2481 | 2481 | die(); |
| 2482 | 2482 | } |
| 2483 | 2483 | |
| 2484 | -add_action( 'wp_ajax_geodir_search_form', 'geodir_search_form' ); |
|
| 2485 | -add_action( 'wp_ajax_nopriv_geodir_search_form', 'geodir_search_form' ); |
|
| 2484 | +add_action('wp_ajax_geodir_search_form', 'geodir_search_form');
|
|
| 2485 | +add_action('wp_ajax_nopriv_geodir_search_form', 'geodir_search_form');
|
|
| 2486 | 2486 | |
| 2487 | 2487 | /** |
| 2488 | 2488 | * Check wpml active or not. |
@@ -2553,7 +2553,7 @@ discard block |
||
| 2553 | 2553 | } |
| 2554 | 2554 | } |
| 2555 | 2555 | } |
| 2556 | -add_filter( 'icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4 ); |
|
| 2556 | +add_filter('icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4);
|
|
| 2557 | 2557 | |
| 2558 | 2558 | /** |
| 2559 | 2559 | * Duplicate post listing manually after listing saved. |
@@ -2591,7 +2591,7 @@ discard block |
||
| 2591 | 2591 | function geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang) {
|
| 2592 | 2592 | global $wpdb; |
| 2593 | 2593 | |
| 2594 | - $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
|
|
| 2594 | + $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM ".GEODIR_REVIEW_TABLE." WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
|
|
| 2595 | 2595 | |
| 2596 | 2596 | if (!empty($reviews)) {
|
| 2597 | 2597 | foreach ($reviews as $review) {
|
@@ -2619,14 +2619,14 @@ discard block |
||
| 2619 | 2619 | global $wpdb, $plugin_prefix; |
| 2620 | 2620 | |
| 2621 | 2621 | $post_type = get_post_type($master_post_id); |
| 2622 | - $post_table = $plugin_prefix . $post_type . '_detail'; |
|
| 2622 | + $post_table = $plugin_prefix.$post_type.'_detail'; |
|
| 2623 | 2623 | |
| 2624 | - $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
|
|
| 2625 | - $data = (array)$wpdb->get_row($query); |
|
| 2624 | + $query = $wpdb->prepare("SELECT * FROM ".$post_table." WHERE post_id = %d", array($master_post_id));
|
|
| 2625 | + $data = (array) $wpdb->get_row($query); |
|
| 2626 | 2626 | |
| 2627 | - if ( !empty( $data ) ) {
|
|
| 2627 | + if (!empty($data)) {
|
|
| 2628 | 2628 | $data['post_id'] = $tr_post_id; |
| 2629 | - unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']); |
|
| 2629 | + unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type.'category']); |
|
| 2630 | 2630 | $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
|
| 2631 | 2631 | return true; |
| 2632 | 2632 | } |
@@ -2651,7 +2651,7 @@ discard block |
||
| 2651 | 2651 | global $sitepress, $wpdb; |
| 2652 | 2652 | $post_type = get_post_type($master_post_id); |
| 2653 | 2653 | |
| 2654 | - remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
|
|
| 2654 | + remove_filter('get_term', array($sitepress, 'get_term_adjust_id')); // AVOID filtering to current language
|
|
| 2655 | 2655 | |
| 2656 | 2656 | $taxonomies = get_object_taxonomies($post_type); |
| 2657 | 2657 | foreach ($taxonomies as $taxonomy) {
|
@@ -2660,9 +2660,9 @@ discard block |
||
| 2660 | 2660 | |
| 2661 | 2661 | if ($terms) {
|
| 2662 | 2662 | foreach ($terms as $term) {
|
| 2663 | - $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang); |
|
| 2663 | + $tr_id = apply_filters('translate_object_id', $term->term_id, $taxonomy, false, $lang);
|
|
| 2664 | 2664 | |
| 2665 | - if (!is_null($tr_id)){
|
|
| 2665 | + if (!is_null($tr_id)) {
|
|
| 2666 | 2666 | // not using get_term - unfiltered get_term |
| 2667 | 2667 | $translated_term = $wpdb->get_row($wpdb->prepare("
|
| 2668 | 2668 | SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy));
|
@@ -2671,14 +2671,14 @@ discard block |
||
| 2671 | 2671 | } |
| 2672 | 2672 | } |
| 2673 | 2673 | |
| 2674 | - if (!is_taxonomy_hierarchical($taxonomy)){
|
|
| 2675 | - $terms_array = array_unique( array_map( 'intval', $terms_array ) ); |
|
| 2674 | + if (!is_taxonomy_hierarchical($taxonomy)) {
|
|
| 2675 | + $terms_array = array_unique(array_map('intval', $terms_array));
|
|
| 2676 | 2676 | } |
| 2677 | 2677 | |
| 2678 | 2678 | wp_set_post_terms($tr_post_id, $terms_array, $taxonomy); |
| 2679 | 2679 | |
| 2680 | - if ($taxonomy == $post_type . 'category') {
|
|
| 2681 | - geodir_set_postcat_structure($tr_post_id, $post_type . 'category'); |
|
| 2680 | + if ($taxonomy == $post_type.'category') {
|
|
| 2681 | + geodir_set_postcat_structure($tr_post_id, $post_type.'category'); |
|
| 2682 | 2682 | } |
| 2683 | 2683 | } |
| 2684 | 2684 | } |
@@ -2699,15 +2699,15 @@ discard block |
||
| 2699 | 2699 | function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
|
| 2700 | 2700 | global $wpdb; |
| 2701 | 2701 | |
| 2702 | - $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
|
|
| 2702 | + $query = $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
|
|
| 2703 | 2703 | $wpdb->query($query); |
| 2704 | 2704 | |
| 2705 | - $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
|
|
| 2705 | + $query = $wpdb->prepare("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
|
|
| 2706 | 2706 | $post_images = $wpdb->get_results($query); |
| 2707 | 2707 | |
| 2708 | - if ( !empty( $post_images ) ) {
|
|
| 2709 | - foreach ( $post_images as $post_image) {
|
|
| 2710 | - $image_data = (array)$post_image; |
|
| 2708 | + if (!empty($post_images)) {
|
|
| 2709 | + foreach ($post_images as $post_image) {
|
|
| 2710 | + $image_data = (array) $post_image; |
|
| 2711 | 2711 | unset($image_data['ID']); |
| 2712 | 2712 | $image_data['post_id'] = $tr_post_id; |
| 2713 | 2713 | |
@@ -2740,13 +2740,13 @@ discard block |
||
| 2740 | 2740 | function geodir_wpml_duplicate_post_review($master_comment_id, $master_post_id, $tr_post_id, $lang) {
|
| 2741 | 2741 | global $wpdb, $plugin_prefix, $sitepress; |
| 2742 | 2742 | |
| 2743 | - $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
|
|
| 2743 | + $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
|
|
| 2744 | 2744 | |
| 2745 | 2745 | if (empty($review)) {
|
| 2746 | 2746 | return false; |
| 2747 | 2747 | } |
| 2748 | 2748 | if ($review['post_id'] != $master_post_id) {
|
| 2749 | - $wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
|
|
| 2749 | + $wpdb->query($wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
|
|
| 2750 | 2750 | geodir_update_postrating($master_post_id, $post_type); |
| 2751 | 2751 | } |
| 2752 | 2752 | |
@@ -2757,9 +2757,9 @@ discard block |
||
| 2757 | 2757 | } |
| 2758 | 2758 | |
| 2759 | 2759 | $post_type = get_post_type($master_post_id); |
| 2760 | - $post_table = $plugin_prefix . $post_type . '_detail'; |
|
| 2760 | + $post_table = $plugin_prefix.$post_type.'_detail'; |
|
| 2761 | 2761 | |
| 2762 | - $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
|
|
| 2762 | + $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM ".$post_table." WHERE post_id = %d", $tr_post_id), ARRAY_A);
|
|
| 2763 | 2763 | if (empty($translated_post)) {
|
| 2764 | 2764 | return false; |
| 2765 | 2765 | } |
@@ -2777,7 +2777,7 @@ discard block |
||
| 2777 | 2777 | unset($review['id']); |
| 2778 | 2778 | } |
| 2779 | 2779 | |
| 2780 | - $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
|
|
| 2780 | + $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
|
|
| 2781 | 2781 | |
| 2782 | 2782 | if ($tr_review_id) { // update review
|
| 2783 | 2783 | $wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
|
@@ -2790,8 +2790,8 @@ discard block |
||
| 2790 | 2790 | geodir_update_postrating($tr_post_id, $post_type); |
| 2791 | 2791 | |
| 2792 | 2792 | if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
|
| 2793 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
|
|
| 2794 | - $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
|
|
| 2793 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_COMMENTS_REVIEWS_TABLE." WHERE comment_id = %d", array($tr_comment_id)));
|
|
| 2794 | + $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_COMMENTS_REVIEWS_TABLE." WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
|
|
| 2795 | 2795 | |
| 2796 | 2796 | if (!empty($likes)) {
|
| 2797 | 2797 | foreach ($likes as $like) {
|
@@ -2893,7 +2893,7 @@ discard block |
||
| 2893 | 2893 | * @return bool True if review star disabled, otherwise false. |
| 2894 | 2894 | */ |
| 2895 | 2895 | function geodir_rating_disabled_post_types() {
|
| 2896 | - $post_types = get_option( 'geodir_disable_rating_cpt' ); |
|
| 2896 | + $post_types = get_option('geodir_disable_rating_cpt');
|
|
| 2897 | 2897 | |
| 2898 | 2898 | /** |
| 2899 | 2899 | * Filter the post types array which have rating disabled. |
@@ -2902,7 +2902,7 @@ discard block |
||
| 2902 | 2902 | * |
| 2903 | 2903 | * @param array $post_types Array of post types which have rating starts disabled. |
| 2904 | 2904 | */ |
| 2905 | - return apply_filters( 'geodir_rating_disabled_post_types', $post_types ); |
|
| 2905 | + return apply_filters('geodir_rating_disabled_post_types', $post_types);
|
|
| 2906 | 2906 | } |
| 2907 | 2907 | |
| 2908 | 2908 | /** |
@@ -2914,30 +2914,30 @@ discard block |
||
| 2914 | 2914 | * @param bool $taxonomy Whether $post_type is taxonomy or not. |
| 2915 | 2915 | * @return bool True if review star disabled, otherwise false. |
| 2916 | 2916 | */ |
| 2917 | -function geodir_cpt_has_rating_disabled( $post_type = '', $taxonomy = false ) {
|
|
| 2917 | +function geodir_cpt_has_rating_disabled($post_type = '', $taxonomy = false) {
|
|
| 2918 | 2918 | $post_types = geodir_rating_disabled_post_types(); |
| 2919 | 2919 | |
| 2920 | - if ( empty( $post_types ) ) {
|
|
| 2920 | + if (empty($post_types)) {
|
|
| 2921 | 2921 | return false; |
| 2922 | 2922 | } |
| 2923 | 2923 | |
| 2924 | - if ( is_int( $post_type ) ) {
|
|
| 2925 | - $post_type = get_post_type( $post_type ); |
|
| 2924 | + if (is_int($post_type)) {
|
|
| 2925 | + $post_type = get_post_type($post_type); |
|
| 2926 | 2926 | } |
| 2927 | 2927 | |
| 2928 | - if ( $taxonomy && !empty( $post_types ) ) {
|
|
| 2928 | + if ($taxonomy && !empty($post_types)) {
|
|
| 2929 | 2929 | $posttypes = array(); |
| 2930 | 2930 | |
| 2931 | - foreach ( $post_types as $posttype ) {
|
|
| 2932 | - $posttypes[] = $posttype . 'category'; |
|
| 2933 | - $posttypes[] = $posttype . '_tags'; |
|
| 2931 | + foreach ($post_types as $posttype) {
|
|
| 2932 | + $posttypes[] = $posttype.'category'; |
|
| 2933 | + $posttypes[] = $posttype.'_tags'; |
|
| 2934 | 2934 | } |
| 2935 | 2935 | |
| 2936 | 2936 | $post_types = $posttypes; |
| 2937 | 2937 | } |
| 2938 | 2938 | |
| 2939 | 2939 | $return = false; |
| 2940 | - if ( $post_type != '' && !empty( $post_types ) && in_array( $post_type, $post_types ) ) {
|
|
| 2940 | + if ($post_type != '' && !empty($post_types) && in_array($post_type, $post_types)) {
|
|
| 2941 | 2941 | $return = true; |
| 2942 | 2942 | } |
| 2943 | 2943 | |
@@ -2171,7 +2171,7 @@ discard block |
||
| 2171 | 2171 | * @global object $wpdb WordPress Database object. |
| 2172 | 2172 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 2173 | 2173 | * @param int $attachment_id Attachment ID. |
| 2174 | - * @return bool|void Returns false on failure. |
|
| 2174 | + * @return false|null Returns false on failure. |
|
| 2175 | 2175 | */ |
| 2176 | 2176 | function geodirectory_before_featured_image_delete($attachment_id) |
| 2177 | 2177 | {
|
@@ -2344,6 +2344,7 @@ discard block |
||
| 2344 | 2344 | * @global object $wpdb WordPress Database object. |
| 2345 | 2345 | * @global object $current_user Current user object. |
| 2346 | 2346 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 2347 | + * @param string $user_id |
|
| 2347 | 2348 | * @return array User listing count for each post type. |
| 2348 | 2349 | */ |
| 2349 | 2350 | function geodir_user_post_listing_count($user_id=null) |
@@ -2680,7 +2681,7 @@ discard block |
||
| 2680 | 2681 | * @since 1.6.16 |
| 2681 | 2682 | * @package GeoDirectory |
| 2682 | 2683 | * @param array $classes The class array of the HTML element. |
| 2683 | - * @return array Modified class array. |
|
| 2684 | + * @return string[] Modified class array. |
|
| 2684 | 2685 | */ |
| 2685 | 2686 | function geodir_body_class_active_map($classes = array()) {
|
| 2686 | 2687 | $classes[] = 'gd-map-' . geodir_map_name(); |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | */ |
| 20 | 20 | function geodir_get_ajax_url() |
| 21 | 21 | {
|
| 22 | - return admin_url('admin-ajax.php?action=geodir_ajax_action');
|
|
| 22 | + return admin_url('admin-ajax.php?action=geodir_ajax_action');
|
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | ///////////////////// |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | add_filter('query_vars', 'geodir_add_geodir_page_var');
|
| 88 | 88 | add_action('wp', 'geodir_add_page_id_in_query_var'); // problem fix in wordpress 3.8
|
| 89 | 89 | if (get_option('permalink_structure') != '')
|
| 90 | - add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
|
|
| 90 | + add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
|
|
| 91 | 91 | |
| 92 | 92 | add_filter('parse_query', 'geodir_modified_query');
|
| 93 | 93 | |
@@ -154,14 +154,14 @@ discard block |
||
| 154 | 154 | /* POST AND LOOP ACTIONS */ |
| 155 | 155 | //////////////////////// |
| 156 | 156 | if (!is_admin()) {
|
| 157 | - add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtural page from everywhere
|
|
| 158 | - add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
|
|
| 159 | - /** Exclude Virtual Pages From Pages List **/ |
|
| 160 | - add_action('pre_get_posts', 'set_listing_request', 0);
|
|
| 161 | - add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
|
|
| 162 | - add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
|
|
| 163 | - add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
|
|
| 164 | - add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
|
|
| 157 | + add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtural page from everywhere
|
|
| 158 | + add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
|
|
| 159 | + /** Exclude Virtual Pages From Pages List **/ |
|
| 160 | + add_action('pre_get_posts', 'set_listing_request', 0);
|
|
| 161 | + add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
|
|
| 162 | + add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
|
|
| 163 | + add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
|
|
| 164 | + add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
|
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | |
@@ -222,12 +222,12 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | function geodir_unset_prev_theme_nav_location($newname) |
| 224 | 224 | {
|
| 225 | - $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 226 | - if ($geodir_theme_location) {
|
|
| 227 | - update_option('geodir_theme_location_nav', $geodir_theme_location);
|
|
| 228 | - } else {
|
|
| 229 | - update_option('geodir_theme_location_nav', '');
|
|
| 230 | - } |
|
| 225 | + $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 226 | + if ($geodir_theme_location) {
|
|
| 227 | + update_option('geodir_theme_location_nav', $geodir_theme_location);
|
|
| 228 | + } else {
|
|
| 229 | + update_option('geodir_theme_location_nav', '');
|
|
| 230 | + } |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /// add action for theme switch to blank previous theme navigation location setting |
@@ -248,32 +248,32 @@ discard block |
||
| 248 | 248 | */ |
| 249 | 249 | function geodir_add_post_filters() |
| 250 | 250 | {
|
| 251 | - /** |
|
| 252 | - * Contains all function for filtering listing. |
|
| 253 | - * |
|
| 254 | - * @since 1.0.0 |
|
| 255 | - * @package GeoDirectory |
|
| 256 | - */ |
|
| 257 | - include_once('geodirectory-functions/listing_filters.php');
|
|
| 251 | + /** |
|
| 252 | + * Contains all function for filtering listing. |
|
| 253 | + * |
|
| 254 | + * @since 1.0.0 |
|
| 255 | + * @package GeoDirectory |
|
| 256 | + */ |
|
| 257 | + include_once('geodirectory-functions/listing_filters.php');
|
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | |
| 261 | 261 | if (!function_exists('geodir_init_defaults')) {
|
| 262 | - /** |
|
| 263 | - * Calls the function to register the GeoDirectory default CPT and taxonomies. |
|
| 264 | - * |
|
| 265 | - * @since 1.0.0 |
|
| 266 | - * @package GeoDirectory |
|
| 267 | - */ |
|
| 268 | - function geodir_init_defaults() |
|
| 269 | - {
|
|
| 270 | - if (function_exists('geodir_register_defaults')) {
|
|
| 262 | + /** |
|
| 263 | + * Calls the function to register the GeoDirectory default CPT and taxonomies. |
|
| 264 | + * |
|
| 265 | + * @since 1.0.0 |
|
| 266 | + * @package GeoDirectory |
|
| 267 | + */ |
|
| 268 | + function geodir_init_defaults() |
|
| 269 | + {
|
|
| 270 | + if (function_exists('geodir_register_defaults')) {
|
|
| 271 | 271 | |
| 272 | - geodir_register_defaults(); |
|
| 272 | + geodir_register_defaults(); |
|
| 273 | 273 | |
| 274 | - } |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | - } |
|
| 276 | + } |
|
| 277 | 277 | } |
| 278 | 278 | |
| 279 | 279 | |
@@ -295,26 +295,26 @@ discard block |
||
| 295 | 295 | // CALLED ON 'sidebars_widgets' FILTER |
| 296 | 296 | |
| 297 | 297 | if (!function_exists('geodir_restrict_widget')) {
|
| 298 | - /** |
|
| 299 | - * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page. |
|
| 300 | - * |
|
| 301 | - * @global bool $is_listing Sets the global value to true if on a GD category page. False if not. |
|
| 302 | - * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not. |
|
| 303 | - * @since 1.0.0 |
|
| 304 | - * @package GeoDirectory |
|
| 305 | - */ |
|
| 306 | - function geodir_restrict_widget() |
|
| 307 | - {
|
|
| 308 | - global $is_listing, $is_single_place; |
|
| 298 | + /** |
|
| 299 | + * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page. |
|
| 300 | + * |
|
| 301 | + * @global bool $is_listing Sets the global value to true if on a GD category page. False if not. |
|
| 302 | + * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not. |
|
| 303 | + * @since 1.0.0 |
|
| 304 | + * @package GeoDirectory |
|
| 305 | + */ |
|
| 306 | + function geodir_restrict_widget() |
|
| 307 | + {
|
|
| 308 | + global $is_listing, $is_single_place; |
|
| 309 | 309 | |
| 310 | - // set is listing |
|
| 311 | - (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
|
|
| 310 | + // set is listing |
|
| 311 | + (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
|
|
| 312 | 312 | |
| 313 | - // set is single place |
|
| 314 | - (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
|
|
| 313 | + // set is single place |
|
| 314 | + (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
|
|
| 315 | 315 | |
| 316 | 316 | |
| 317 | - } |
|
| 317 | + } |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | 320 | |
@@ -335,31 +335,31 @@ discard block |
||
| 335 | 335 | */ |
| 336 | 336 | function geodir_detail_page_sidebar_content_sorting() |
| 337 | 337 | {
|
| 338 | - $arr_detail_page_sidebar_content = |
|
| 339 | - /** |
|
| 340 | - * An array of functions to be called to be displayed on the details (post) page sidebar. |
|
| 341 | - * |
|
| 342 | - * This filter can be used to remove sections of the details page sidebar, |
|
| 343 | - * add new sections or rearrange the order of the sections. |
|
| 344 | - * |
|
| 345 | - * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
|
|
| 346 | - * @since 1.0.0 |
|
| 347 | - */ |
|
| 348 | - apply_filters('geodir_detail_page_sidebar_content',
|
|
| 349 | - array('geodir_social_sharing_buttons',
|
|
| 350 | - 'geodir_detail_page_google_analytics', |
|
| 351 | - 'geodir_edit_post_link', |
|
| 352 | - 'geodir_detail_page_review_rating', |
|
| 353 | - 'geodir_detail_page_more_info' |
|
| 354 | - ) // end of array |
|
| 355 | - ); // end of apply filter |
|
| 356 | - if (!empty($arr_detail_page_sidebar_content)) {
|
|
| 357 | - foreach ($arr_detail_page_sidebar_content as $content_function) {
|
|
| 358 | - if (function_exists($content_function)) {
|
|
| 359 | - add_action('geodir_detail_page_sidebar', $content_function);
|
|
| 360 | - } |
|
| 361 | - } |
|
| 362 | - } |
|
| 338 | + $arr_detail_page_sidebar_content = |
|
| 339 | + /** |
|
| 340 | + * An array of functions to be called to be displayed on the details (post) page sidebar. |
|
| 341 | + * |
|
| 342 | + * This filter can be used to remove sections of the details page sidebar, |
|
| 343 | + * add new sections or rearrange the order of the sections. |
|
| 344 | + * |
|
| 345 | + * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
|
|
| 346 | + * @since 1.0.0 |
|
| 347 | + */ |
|
| 348 | + apply_filters('geodir_detail_page_sidebar_content',
|
|
| 349 | + array('geodir_social_sharing_buttons',
|
|
| 350 | + 'geodir_detail_page_google_analytics', |
|
| 351 | + 'geodir_edit_post_link', |
|
| 352 | + 'geodir_detail_page_review_rating', |
|
| 353 | + 'geodir_detail_page_more_info' |
|
| 354 | + ) // end of array |
|
| 355 | + ); // end of apply filter |
|
| 356 | + if (!empty($arr_detail_page_sidebar_content)) {
|
|
| 357 | + foreach ($arr_detail_page_sidebar_content as $content_function) {
|
|
| 358 | + if (function_exists($content_function)) {
|
|
| 359 | + add_action('geodir_detail_page_sidebar', $content_function);
|
|
| 360 | + } |
|
| 361 | + } |
|
| 362 | + } |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1);
|
@@ -374,14 +374,14 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | function geodir_add_to_favourite_link() |
| 376 | 376 | {
|
| 377 | - global $post, $preview; |
|
| 378 | - if (!$preview && geodir_is_page('detail')) {
|
|
| 379 | - ?> |
|
| 377 | + global $post, $preview; |
|
| 378 | + if (!$preview && geodir_is_page('detail')) {
|
|
| 379 | + ?> |
|
| 380 | 380 | <p class="edit_link"> |
| 381 | 381 | <?php geodir_favourite_html($post->post_author, $post->ID); ?> |
| 382 | 382 | </p> |
| 383 | 383 | <?php |
| 384 | - } |
|
| 384 | + } |
|
| 385 | 385 | } |
| 386 | 386 | |
| 387 | 387 | /** |
@@ -395,41 +395,41 @@ discard block |
||
| 395 | 395 | */ |
| 396 | 396 | function geodir_social_sharing_buttons() |
| 397 | 397 | {
|
| 398 | - global $preview; |
|
| 399 | - ob_start(); // Start buffering; |
|
| 400 | - /** |
|
| 401 | - * This action is called before the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 402 | - * |
|
| 403 | - * @since 1.0.0 |
|
| 404 | - */ |
|
| 405 | - do_action('geodir_before_social_sharing_buttons');
|
|
| 406 | - if (!$preview) {
|
|
| 407 | - ?> |
|
| 398 | + global $preview; |
|
| 399 | + ob_start(); // Start buffering; |
|
| 400 | + /** |
|
| 401 | + * This action is called before the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 402 | + * |
|
| 403 | + * @since 1.0.0 |
|
| 404 | + */ |
|
| 405 | + do_action('geodir_before_social_sharing_buttons');
|
|
| 406 | + if (!$preview) {
|
|
| 407 | + ?> |
|
| 408 | 408 | <div class="likethis"> |
| 409 | 409 | <?php geodir_twitter_tweet_button(); ?> |
| 410 | 410 | <?php geodir_fb_like_button(); ?> |
| 411 | 411 | <?php geodir_google_plus_button(); ?> |
| 412 | 412 | </div> |
| 413 | 413 | <?php |
| 414 | - }// end of if, if its a preview or not |
|
| 415 | - |
|
| 416 | - /** |
|
| 417 | - * This action is called after the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 418 | - * |
|
| 419 | - * @since 1.0.0 |
|
| 420 | - */ |
|
| 421 | - do_action('geodir_after_social_sharing_buttons');
|
|
| 422 | - $content_html = ob_get_clean(); |
|
| 423 | - if (trim($content_html) != '') |
|
| 424 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | - if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | - /** |
|
| 427 | - * Filter the geodir_social_sharing_buttons() function content. |
|
| 428 | - * |
|
| 429 | - * @param string $content_html The output html of the geodir_social_sharing_buttons() function. |
|
| 430 | - */ |
|
| 431 | - echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
|
|
| 432 | - } |
|
| 414 | + }// end of if, if its a preview or not |
|
| 415 | + |
|
| 416 | + /** |
|
| 417 | + * This action is called after the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 418 | + * |
|
| 419 | + * @since 1.0.0 |
|
| 420 | + */ |
|
| 421 | + do_action('geodir_after_social_sharing_buttons');
|
|
| 422 | + $content_html = ob_get_clean(); |
|
| 423 | + if (trim($content_html) != '') |
|
| 424 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | + if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | + /** |
|
| 427 | + * Filter the geodir_social_sharing_buttons() function content. |
|
| 428 | + * |
|
| 429 | + * @param string $content_html The output html of the geodir_social_sharing_buttons() function. |
|
| 430 | + */ |
|
| 431 | + echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
|
|
| 432 | + } |
|
| 433 | 433 | |
| 434 | 434 | |
| 435 | 435 | } |
@@ -447,46 +447,46 @@ discard block |
||
| 447 | 447 | */ |
| 448 | 448 | function geodir_edit_post_link() |
| 449 | 449 | {
|
| 450 | - global $post, $preview; |
|
| 451 | - ob_start(); // Start buffering; |
|
| 452 | - /** |
|
| 453 | - * This is called before the edit post link html in the function geodir_edit_post_link() |
|
| 454 | - * |
|
| 455 | - * @since 1.0.0 |
|
| 456 | - */ |
|
| 457 | - do_action('geodir_before_edit_post_link');
|
|
| 458 | - if (!$preview) {
|
|
| 459 | - $is_current_user_owner = geodir_listing_belong_to_current_user(); |
|
| 450 | + global $post, $preview; |
|
| 451 | + ob_start(); // Start buffering; |
|
| 452 | + /** |
|
| 453 | + * This is called before the edit post link html in the function geodir_edit_post_link() |
|
| 454 | + * |
|
| 455 | + * @since 1.0.0 |
|
| 456 | + */ |
|
| 457 | + do_action('geodir_before_edit_post_link');
|
|
| 458 | + if (!$preview) {
|
|
| 459 | + $is_current_user_owner = geodir_listing_belong_to_current_user(); |
|
| 460 | 460 | |
| 461 | - if ($is_current_user_owner) {
|
|
| 462 | - $post_id = $post->ID; |
|
| 461 | + if ($is_current_user_owner) {
|
|
| 462 | + $post_id = $post->ID; |
|
| 463 | 463 | |
| 464 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 465 | - $post_id = (int)$_REQUEST['pid']; |
|
| 466 | - } |
|
| 464 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 465 | + $post_id = (int)$_REQUEST['pid']; |
|
| 466 | + } |
|
| 467 | 467 | |
| 468 | - $postlink = get_permalink(geodir_add_listing_page_id()); |
|
| 469 | - $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
|
| 470 | - echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 471 | - } |
|
| 472 | - }// end of if, if its a preview or not |
|
| 473 | - /** |
|
| 474 | - * This is called after the edit post link html in the function geodir_edit_post_link() |
|
| 475 | - * |
|
| 476 | - * @since 1.0.0 |
|
| 477 | - */ |
|
| 478 | - do_action('geodir_after_edit_post_link');
|
|
| 479 | - $content_html = ob_get_clean(); |
|
| 480 | - if (trim($content_html) != '') |
|
| 481 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | - if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | - /** |
|
| 484 | - * Filter the geodir_edit_post_link() function content. |
|
| 485 | - * |
|
| 486 | - * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 487 | - */ |
|
| 488 | - echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
|
|
| 489 | - } |
|
| 468 | + $postlink = get_permalink(geodir_add_listing_page_id()); |
|
| 469 | + $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
|
| 470 | + echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 471 | + } |
|
| 472 | + }// end of if, if its a preview or not |
|
| 473 | + /** |
|
| 474 | + * This is called after the edit post link html in the function geodir_edit_post_link() |
|
| 475 | + * |
|
| 476 | + * @since 1.0.0 |
|
| 477 | + */ |
|
| 478 | + do_action('geodir_after_edit_post_link');
|
|
| 479 | + $content_html = ob_get_clean(); |
|
| 480 | + if (trim($content_html) != '') |
|
| 481 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | + if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | + /** |
|
| 484 | + * Filter the geodir_edit_post_link() function content. |
|
| 485 | + * |
|
| 486 | + * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 487 | + */ |
|
| 488 | + echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
|
|
| 489 | + } |
|
| 490 | 490 | } |
| 491 | 491 | |
| 492 | 492 | /** |
@@ -500,42 +500,42 @@ discard block |
||
| 500 | 500 | */ |
| 501 | 501 | function geodir_detail_page_google_analytics() |
| 502 | 502 | {
|
| 503 | - global $post,$preview; |
|
| 504 | - if($preview){return '';}
|
|
| 505 | - $package_info = array(); |
|
| 506 | - $package_info = geodir_post_package_info($package_info, $post); |
|
| 503 | + global $post,$preview; |
|
| 504 | + if($preview){return '';}
|
|
| 505 | + $package_info = array(); |
|
| 506 | + $package_info = geodir_post_package_info($package_info, $post); |
|
| 507 | 507 | |
| 508 | - $id = trim(get_option('geodir_ga_account_id'));
|
|
| 508 | + $id = trim(get_option('geodir_ga_account_id'));
|
|
| 509 | 509 | |
| 510 | - if (!$id) {
|
|
| 511 | - return; //if no Google Analytics ID then bail. |
|
| 512 | - } |
|
| 510 | + if (!$id) {
|
|
| 511 | + return; //if no Google Analytics ID then bail. |
|
| 512 | + } |
|
| 513 | 513 | |
| 514 | - ob_start(); // Start buffering; |
|
| 515 | - /** |
|
| 516 | - * This is called before the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 517 | - * |
|
| 518 | - * @since 1.0.0 |
|
| 519 | - */ |
|
| 520 | - do_action('geodir_before_google_analytics');
|
|
| 514 | + ob_start(); // Start buffering; |
|
| 515 | + /** |
|
| 516 | + * This is called before the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 517 | + * |
|
| 518 | + * @since 1.0.0 |
|
| 519 | + */ |
|
| 520 | + do_action('geodir_before_google_analytics');
|
|
| 521 | 521 | |
| 522 | - $refresh_time = get_option('geodir_ga_refresh_time', 5);
|
|
| 523 | - /** |
|
| 524 | - * Filter the time interval to check & refresh new users results. |
|
| 525 | - * |
|
| 526 | - * @since 1.5.9 |
|
| 527 | - * |
|
| 528 | - * @param int $refresh_time Time interval to check & refresh new users results. |
|
| 529 | - */ |
|
| 530 | - $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
|
|
| 531 | - $refresh_time = absint($refresh_time * 1000); |
|
| 522 | + $refresh_time = get_option('geodir_ga_refresh_time', 5);
|
|
| 523 | + /** |
|
| 524 | + * Filter the time interval to check & refresh new users results. |
|
| 525 | + * |
|
| 526 | + * @since 1.5.9 |
|
| 527 | + * |
|
| 528 | + * @param int $refresh_time Time interval to check & refresh new users results. |
|
| 529 | + */ |
|
| 530 | + $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
|
|
| 531 | + $refresh_time = absint($refresh_time * 1000); |
|
| 532 | 532 | |
| 533 | - $hide_refresh = get_option('geodir_ga_auto_refresh');
|
|
| 533 | + $hide_refresh = get_option('geodir_ga_auto_refresh');
|
|
| 534 | 534 | |
| 535 | - $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
|
| 536 | - if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 537 | - $page_url = urlencode($_SERVER['REQUEST_URI']); |
|
| 538 | - ?> |
|
| 535 | + $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
|
| 536 | + if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 537 | + $page_url = urlencode($_SERVER['REQUEST_URI']); |
|
| 538 | + ?> |
|
| 539 | 539 | <script type="text/javascript"> |
| 540 | 540 | var gd_gaTimeOut; |
| 541 | 541 | var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
|
@@ -787,15 +787,15 @@ discard block |
||
| 787 | 787 | var labels = results[1].rows.map(function(row) { return +row[0]; });
|
| 788 | 788 | |
| 789 | 789 | <?php |
| 790 | - // Here we list the shorthand days of the week so it can be used in translation. |
|
| 791 | - __("Mon",'geodirectory');
|
|
| 792 | - __("Tue",'geodirectory');
|
|
| 793 | - __("Wed",'geodirectory');
|
|
| 794 | - __("Thu",'geodirectory');
|
|
| 795 | - __("Fri",'geodirectory');
|
|
| 796 | - __("Sat",'geodirectory');
|
|
| 797 | - __("Sun",'geodirectory');
|
|
| 798 | - ?> |
|
| 790 | + // Here we list the shorthand days of the week so it can be used in translation. |
|
| 791 | + __("Mon",'geodirectory');
|
|
| 792 | + __("Tue",'geodirectory');
|
|
| 793 | + __("Wed",'geodirectory');
|
|
| 794 | + __("Thu",'geodirectory');
|
|
| 795 | + __("Fri",'geodirectory');
|
|
| 796 | + __("Sat",'geodirectory');
|
|
| 797 | + __("Sun",'geodirectory');
|
|
| 798 | + ?> |
|
| 799 | 799 | |
| 800 | 800 | labels = [ |
| 801 | 801 | "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
|
@@ -1044,24 +1044,24 @@ discard block |
||
| 1044 | 1044 | </span> |
| 1045 | 1045 | |
| 1046 | 1046 | <?php |
| 1047 | - } |
|
| 1048 | - /** |
|
| 1049 | - * This is called after the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 1050 | - * |
|
| 1051 | - * @since 1.0.0 |
|
| 1052 | - */ |
|
| 1053 | - do_action('geodir_after_google_analytics');
|
|
| 1054 | - $content_html = ob_get_clean(); |
|
| 1055 | - if (trim($content_html) != '') |
|
| 1056 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | - if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | - /** |
|
| 1059 | - * Filter the geodir_edit_post_link() function content. |
|
| 1060 | - * |
|
| 1061 | - * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 1062 | - */ |
|
| 1063 | - echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
|
|
| 1064 | - } |
|
| 1047 | + } |
|
| 1048 | + /** |
|
| 1049 | + * This is called after the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 1050 | + * |
|
| 1051 | + * @since 1.0.0 |
|
| 1052 | + */ |
|
| 1053 | + do_action('geodir_after_google_analytics');
|
|
| 1054 | + $content_html = ob_get_clean(); |
|
| 1055 | + if (trim($content_html) != '') |
|
| 1056 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | + if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | + /** |
|
| 1059 | + * Filter the geodir_edit_post_link() function content. |
|
| 1060 | + * |
|
| 1061 | + * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 1062 | + */ |
|
| 1063 | + echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
|
|
| 1064 | + } |
|
| 1065 | 1065 | } |
| 1066 | 1066 | |
| 1067 | 1067 | /** |
@@ -1078,94 +1078,94 @@ discard block |
||
| 1078 | 1078 | */ |
| 1079 | 1079 | function geodir_detail_page_review_rating() |
| 1080 | 1080 | {
|
| 1081 | - global $post, $preview, $post_images; |
|
| 1081 | + global $post, $preview, $post_images; |
|
| 1082 | 1082 | |
| 1083 | - if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
|
|
| 1084 | - return; |
|
| 1085 | - } |
|
| 1086 | - ob_start(); // Start buffering; |
|
| 1087 | - /** |
|
| 1088 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1089 | - * |
|
| 1090 | - * This is called outside the check for an actual rating and the check for preview page. |
|
| 1091 | - * |
|
| 1092 | - * @since 1.0.0 |
|
| 1093 | - */ |
|
| 1094 | - do_action('geodir_before_detail_page_review_rating');
|
|
| 1095 | - |
|
| 1096 | - $comment_count = geodir_get_review_count_total($post->ID); |
|
| 1097 | - $post_avgratings = geodir_get_post_rating($post->ID); |
|
| 1098 | - |
|
| 1099 | - if ($post_avgratings != 0 && !$preview) {
|
|
| 1100 | - /** |
|
| 1101 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1102 | - * |
|
| 1103 | - * This is called inside the check for an actual rating and the check for preview page. |
|
| 1104 | - * |
|
| 1105 | - * @since 1.0.0 |
|
| 1106 | - * @param float $post_avgratings Average rating for the surrent post. |
|
| 1107 | - * @param int $post->ID Current post ID. |
|
| 1108 | - */ |
|
| 1109 | - do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1110 | - |
|
| 1111 | - $html = '<p style=" float:left;">'; |
|
| 1112 | - $html .= geodir_get_rating_stars($post_avgratings, $post->ID); |
|
| 1113 | - $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">'; |
|
| 1114 | - $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings; |
|
| 1083 | + if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
|
|
| 1084 | + return; |
|
| 1085 | + } |
|
| 1086 | + ob_start(); // Start buffering; |
|
| 1087 | + /** |
|
| 1088 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1089 | + * |
|
| 1090 | + * This is called outside the check for an actual rating and the check for preview page. |
|
| 1091 | + * |
|
| 1092 | + * @since 1.0.0 |
|
| 1093 | + */ |
|
| 1094 | + do_action('geodir_before_detail_page_review_rating');
|
|
| 1095 | + |
|
| 1096 | + $comment_count = geodir_get_review_count_total($post->ID); |
|
| 1097 | + $post_avgratings = geodir_get_post_rating($post->ID); |
|
| 1098 | + |
|
| 1099 | + if ($post_avgratings != 0 && !$preview) {
|
|
| 1100 | + /** |
|
| 1101 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1102 | + * |
|
| 1103 | + * This is called inside the check for an actual rating and the check for preview page. |
|
| 1104 | + * |
|
| 1105 | + * @since 1.0.0 |
|
| 1106 | + * @param float $post_avgratings Average rating for the surrent post. |
|
| 1107 | + * @param int $post->ID Current post ID. |
|
| 1108 | + */ |
|
| 1109 | + do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1110 | + |
|
| 1111 | + $html = '<p style=" float:left;">'; |
|
| 1112 | + $html .= geodir_get_rating_stars($post_avgratings, $post->ID); |
|
| 1113 | + $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">'; |
|
| 1114 | + $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings; |
|
| 1115 | 1115 | |
| 1116 | 1116 | $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
|
| 1117 | 1117 | |
| 1118 | 1118 | $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
|
| 1119 | 1119 | |
| 1120 | - $html .= '<span class="item">'; |
|
| 1121 | - $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1120 | + $html .= '<span class="item">'; |
|
| 1121 | + $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1122 | 1122 | |
| 1123 | - if ($post_images) {
|
|
| 1124 | - foreach ($post_images as $img) {
|
|
| 1125 | - $post_img = $img->src; |
|
| 1126 | - break; |
|
| 1127 | - } |
|
| 1128 | - } |
|
| 1129 | - |
|
| 1130 | - if (isset($post_img) && $post_img) {
|
|
| 1131 | - $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1132 | - } |
|
| 1133 | - |
|
| 1134 | - $html .= '</span>'; |
|
| 1135 | - |
|
| 1136 | - echo $html .= '</div>'; |
|
| 1137 | - /** |
|
| 1138 | - * This is called after the rating html in the function geodir_detail_page_review_rating(). |
|
| 1139 | - * |
|
| 1140 | - * This is called inside the check for an actual rating and the check for preview page. |
|
| 1141 | - * |
|
| 1142 | - * @since 1.0.0 |
|
| 1143 | - * @param float $post_avgratings Average rating for the surrent post. |
|
| 1144 | - * @param int $post->ID Current post ID. |
|
| 1145 | - */ |
|
| 1146 | - do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1147 | - } |
|
| 1148 | - /** |
|
| 1149 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1150 | - * |
|
| 1151 | - * This is called outside the check for an actual rating and the check for preview page. |
|
| 1152 | - * |
|
| 1153 | - * @since 1.0.0 |
|
| 1154 | - */ |
|
| 1155 | - do_action('geodir_after_detail_page_review_rating');
|
|
| 1156 | - $content_html = ob_get_clean(); |
|
| 1157 | - if (trim($content_html) != '') {
|
|
| 1158 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1159 | - } |
|
| 1160 | - if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1161 | - /** |
|
| 1162 | - * Filter the geodir_detail_page_review_rating() function content. |
|
| 1163 | - * |
|
| 1164 | - * @since 1.0.0 |
|
| 1165 | - * @param string $content_html The output html of the geodir_detail_page_review_rating() function. |
|
| 1166 | - */ |
|
| 1167 | - echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
|
|
| 1168 | - } |
|
| 1123 | + if ($post_images) {
|
|
| 1124 | + foreach ($post_images as $img) {
|
|
| 1125 | + $post_img = $img->src; |
|
| 1126 | + break; |
|
| 1127 | + } |
|
| 1128 | + } |
|
| 1129 | + |
|
| 1130 | + if (isset($post_img) && $post_img) {
|
|
| 1131 | + $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1132 | + } |
|
| 1133 | + |
|
| 1134 | + $html .= '</span>'; |
|
| 1135 | + |
|
| 1136 | + echo $html .= '</div>'; |
|
| 1137 | + /** |
|
| 1138 | + * This is called after the rating html in the function geodir_detail_page_review_rating(). |
|
| 1139 | + * |
|
| 1140 | + * This is called inside the check for an actual rating and the check for preview page. |
|
| 1141 | + * |
|
| 1142 | + * @since 1.0.0 |
|
| 1143 | + * @param float $post_avgratings Average rating for the surrent post. |
|
| 1144 | + * @param int $post->ID Current post ID. |
|
| 1145 | + */ |
|
| 1146 | + do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1147 | + } |
|
| 1148 | + /** |
|
| 1149 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1150 | + * |
|
| 1151 | + * This is called outside the check for an actual rating and the check for preview page. |
|
| 1152 | + * |
|
| 1153 | + * @since 1.0.0 |
|
| 1154 | + */ |
|
| 1155 | + do_action('geodir_after_detail_page_review_rating');
|
|
| 1156 | + $content_html = ob_get_clean(); |
|
| 1157 | + if (trim($content_html) != '') {
|
|
| 1158 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1159 | + } |
|
| 1160 | + if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1161 | + /** |
|
| 1162 | + * Filter the geodir_detail_page_review_rating() function content. |
|
| 1163 | + * |
|
| 1164 | + * @since 1.0.0 |
|
| 1165 | + * @param string $content_html The output html of the geodir_detail_page_review_rating() function. |
|
| 1166 | + */ |
|
| 1167 | + echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
|
|
| 1168 | + } |
|
| 1169 | 1169 | } |
| 1170 | 1170 | |
| 1171 | 1171 | /** |
@@ -1177,35 +1177,35 @@ discard block |
||
| 1177 | 1177 | */ |
| 1178 | 1178 | function geodir_detail_page_more_info() |
| 1179 | 1179 | {
|
| 1180 | - ob_start(); // Start buffering; |
|
| 1181 | - /** |
|
| 1182 | - * This is called before the info section html. |
|
| 1183 | - * |
|
| 1184 | - * @since 1.0.0 |
|
| 1185 | - */ |
|
| 1186 | - do_action('geodir_before_detail_page_more_info');
|
|
| 1187 | - if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
|
|
| 1188 | - echo $geodir_post_detail_fields; |
|
| 1189 | - } |
|
| 1190 | - /** |
|
| 1191 | - * This is called after the info section html. |
|
| 1192 | - * |
|
| 1193 | - * @since 1.0.0 |
|
| 1194 | - */ |
|
| 1195 | - do_action('geodir_after_detail_page_more_info');
|
|
| 1196 | - |
|
| 1197 | - $content_html = ob_get_clean(); |
|
| 1198 | - if (trim($content_html) != '') |
|
| 1199 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1200 | - if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1201 | - /** |
|
| 1202 | - * Filter the output html for function geodir_detail_page_more_info(). |
|
| 1203 | - * |
|
| 1204 | - * @since 1.0.0 |
|
| 1205 | - * @param string $content_html The output html of the geodir_detail_page_more_info() function. |
|
| 1206 | - */ |
|
| 1207 | - echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
|
|
| 1208 | - } |
|
| 1180 | + ob_start(); // Start buffering; |
|
| 1181 | + /** |
|
| 1182 | + * This is called before the info section html. |
|
| 1183 | + * |
|
| 1184 | + * @since 1.0.0 |
|
| 1185 | + */ |
|
| 1186 | + do_action('geodir_before_detail_page_more_info');
|
|
| 1187 | + if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
|
|
| 1188 | + echo $geodir_post_detail_fields; |
|
| 1189 | + } |
|
| 1190 | + /** |
|
| 1191 | + * This is called after the info section html. |
|
| 1192 | + * |
|
| 1193 | + * @since 1.0.0 |
|
| 1194 | + */ |
|
| 1195 | + do_action('geodir_after_detail_page_more_info');
|
|
| 1196 | + |
|
| 1197 | + $content_html = ob_get_clean(); |
|
| 1198 | + if (trim($content_html) != '') |
|
| 1199 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1200 | + if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1201 | + /** |
|
| 1202 | + * Filter the output html for function geodir_detail_page_more_info(). |
|
| 1203 | + * |
|
| 1204 | + * @since 1.0.0 |
|
| 1205 | + * @param string $content_html The output html of the geodir_detail_page_more_info() function. |
|
| 1206 | + */ |
|
| 1207 | + echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
|
|
| 1208 | + } |
|
| 1209 | 1209 | } |
| 1210 | 1210 | |
| 1211 | 1211 | |
@@ -1219,15 +1219,15 @@ discard block |
||
| 1219 | 1219 | */ |
| 1220 | 1220 | function geodir_localize_all_js_msg() |
| 1221 | 1221 | {// check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls
|
| 1222 | - if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1223 | - $ajax_url = admin_url('admin-ajax.php');
|
|
| 1224 | - } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1225 | - $ajax_url = admin_url('admin-ajax.php');
|
|
| 1226 | - } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1227 | - $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
|
|
| 1228 | - } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1229 | - $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
|
|
| 1230 | - } |
|
| 1222 | + if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1223 | + $ajax_url = admin_url('admin-ajax.php');
|
|
| 1224 | + } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1225 | + $ajax_url = admin_url('admin-ajax.php');
|
|
| 1226 | + } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1227 | + $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
|
|
| 1228 | + } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1229 | + $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
|
|
| 1230 | + } |
|
| 1231 | 1231 | |
| 1232 | 1232 | /** |
| 1233 | 1233 | * Filter the allowed image type extensions for post images. |
@@ -1237,60 +1237,60 @@ discard block |
||
| 1237 | 1237 | */ |
| 1238 | 1238 | $allowed_img_types = apply_filters('geodir_allowed_post_image_exts', array('jpg', 'jpeg', 'jpe', 'gif', 'png'));
|
| 1239 | 1239 | |
| 1240 | - $default_marker_icon = get_option('geodir_default_marker_icon');
|
|
| 1241 | - $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
|
|
| 1242 | - $default_marker_width = $default_marker_size['w']; |
|
| 1243 | - $default_marker_height = $default_marker_size['h']; |
|
| 1240 | + $default_marker_icon = get_option('geodir_default_marker_icon');
|
|
| 1241 | + $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
|
|
| 1242 | + $default_marker_width = $default_marker_size['w']; |
|
| 1243 | + $default_marker_height = $default_marker_size['h']; |
|
| 1244 | 1244 | |
| 1245 | - $arr_alert_msg = array( |
|
| 1246 | - 'geodir_plugin_url' => geodir_plugin_url(), |
|
| 1247 | - 'geodir_admin_ajax_url' => $ajax_url, |
|
| 1248 | - 'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
|
|
| 1249 | - 'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
|
|
| 1250 | - 'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
|
|
| 1251 | - 'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
|
|
| 1252 | - //start not show alert msg |
|
| 1253 | - 'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
|
|
| 1254 | - 'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
|
|
| 1255 | - 'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
|
|
| 1256 | - 'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
|
|
| 1257 | - 'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
|
|
| 1258 | - // end not show alert msg |
|
| 1259 | - 'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
|
|
| 1260 | - 'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
|
|
| 1261 | - //start not show alert msg |
|
| 1262 | - 'rating_error_msg' => __('Error : please retry', 'geodirectory'),
|
|
| 1263 | - 'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
|
|
| 1264 | - 'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
|
|
| 1265 | - 'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
|
|
| 1266 | - 'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
|
|
| 1267 | - 'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
|
|
| 1268 | - 'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
|
|
| 1269 | - 'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
|
|
| 1270 | - 'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
|
|
| 1271 | - 'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
|
|
| 1272 | - 'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
|
|
| 1273 | - 'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
|
|
| 1274 | - 'geodir_default_marker_icon' => $default_marker_icon, |
|
| 1275 | - 'geodir_default_marker_w' => $default_marker_width, |
|
| 1276 | - 'geodir_default_marker_h' => $default_marker_height, |
|
| 1277 | - 'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG, |
|
| 1278 | - 'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG, |
|
| 1279 | - 'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
|
|
| 1280 | - 'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
|
|
| 1281 | - 'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
|
|
| 1282 | - 'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
|
|
| 1283 | - 'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
|
|
| 1284 | - 'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
|
|
| 1285 | - /* on/off dragging for phone devices */ |
|
| 1286 | - 'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
|
|
| 1287 | - 'geodir_is_mobile' => wp_is_mobile() ? true : false, |
|
| 1288 | - 'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
|
|
| 1289 | - 'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
|
|
| 1290 | - 'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
|
|
| 1291 | - 'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
|
|
| 1292 | - 'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
|
|
| 1293 | - 'geodir_action_remove' => __('Remove', 'geodirectory'),
|
|
| 1245 | + $arr_alert_msg = array( |
|
| 1246 | + 'geodir_plugin_url' => geodir_plugin_url(), |
|
| 1247 | + 'geodir_admin_ajax_url' => $ajax_url, |
|
| 1248 | + 'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
|
|
| 1249 | + 'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
|
|
| 1250 | + 'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
|
|
| 1251 | + 'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
|
|
| 1252 | + //start not show alert msg |
|
| 1253 | + 'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
|
|
| 1254 | + 'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
|
|
| 1255 | + 'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
|
|
| 1256 | + 'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
|
|
| 1257 | + 'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
|
|
| 1258 | + // end not show alert msg |
|
| 1259 | + 'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
|
|
| 1260 | + 'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
|
|
| 1261 | + //start not show alert msg |
|
| 1262 | + 'rating_error_msg' => __('Error : please retry', 'geodirectory'),
|
|
| 1263 | + 'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
|
|
| 1264 | + 'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
|
|
| 1265 | + 'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
|
|
| 1266 | + 'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
|
|
| 1267 | + 'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
|
|
| 1268 | + 'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
|
|
| 1269 | + 'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
|
|
| 1270 | + 'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
|
|
| 1271 | + 'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
|
|
| 1272 | + 'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
|
|
| 1273 | + 'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
|
|
| 1274 | + 'geodir_default_marker_icon' => $default_marker_icon, |
|
| 1275 | + 'geodir_default_marker_w' => $default_marker_width, |
|
| 1276 | + 'geodir_default_marker_h' => $default_marker_height, |
|
| 1277 | + 'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG, |
|
| 1278 | + 'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG, |
|
| 1279 | + 'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
|
|
| 1280 | + 'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
|
|
| 1281 | + 'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
|
|
| 1282 | + 'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
|
|
| 1283 | + 'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
|
|
| 1284 | + 'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
|
|
| 1285 | + /* on/off dragging for phone devices */ |
|
| 1286 | + 'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
|
|
| 1287 | + 'geodir_is_mobile' => wp_is_mobile() ? true : false, |
|
| 1288 | + 'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
|
|
| 1289 | + 'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
|
|
| 1290 | + 'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
|
|
| 1291 | + 'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
|
|
| 1292 | + 'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
|
|
| 1293 | + 'geodir_action_remove' => __('Remove', 'geodirectory'),
|
|
| 1294 | 1294 | 'geodir_txt_all_files' => __('Allowed files', 'geodirectory'),
|
| 1295 | 1295 | 'geodir_err_file_type' => __('File type error. Allowed file types: %s', 'geodirectory'),
|
| 1296 | 1296 | 'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
|
@@ -1298,40 +1298,40 @@ discard block |
||
| 1298 | 1298 | 'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
|
| 1299 | 1299 | 'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
| 1300 | 1300 | 'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
|
| 1301 | - 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
|
| 1302 | - 'geodir_map_name' => geodir_map_name(), |
|
| 1303 | - 'osmStart' => __('Start', 'geodirectory'),
|
|
| 1304 | - 'osmVia' => __('Via {viaNumber}', 'geodirectory'),
|
|
| 1305 | - 'osmEnd' => __('Enter Your Location', 'geodirectory'),
|
|
| 1306 | - 'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
|
|
| 1307 | - 'geoMyLocation' => __('My Location', 'geodirectory'),
|
|
| 1308 | - 'geoErrUNKNOWN_ERROR' => addslashes(__('Unable to find your location', 'geodirectory')),
|
|
| 1309 | - 'geoErrPERMISSION_DENINED' => addslashes(__('Permission denied in finding your location', 'geodirectory')),
|
|
| 1310 | - 'geoErrPOSITION_UNAVAILABLE' => addslashes(__('Your location is currently unknown', 'geodirectory')),
|
|
| 1311 | - 'geoErrBREAK' => addslashes(__('Attempt to find location took too long', 'geodirectory')),
|
|
| 1312 | - 'geoErrDEFAULT' => addslashes(__('Location detection not supported in browser', 'geodirectory')),
|
|
| 1313 | - ); |
|
| 1314 | - |
|
| 1315 | - /** |
|
| 1316 | - * Filters the translated JS strings from function geodir_localize_all_js_msg(). |
|
| 1317 | - * |
|
| 1318 | - * With this filter you can add, remove or change translated JS strings. |
|
| 1319 | - * You should add your own translations to this if you are building an addon rather than adding another script block. |
|
| 1320 | - * |
|
| 1321 | - * @since 1.0.0 |
|
| 1322 | - */ |
|
| 1323 | - $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
|
|
| 1324 | - |
|
| 1325 | - foreach ($arr_alert_msg as $key => $value) {
|
|
| 1326 | - if (!is_scalar($value)) |
|
| 1327 | - continue; |
|
| 1328 | - $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1329 | - } |
|
| 1301 | + 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
|
| 1302 | + 'geodir_map_name' => geodir_map_name(), |
|
| 1303 | + 'osmStart' => __('Start', 'geodirectory'),
|
|
| 1304 | + 'osmVia' => __('Via {viaNumber}', 'geodirectory'),
|
|
| 1305 | + 'osmEnd' => __('Enter Your Location', 'geodirectory'),
|
|
| 1306 | + 'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
|
|
| 1307 | + 'geoMyLocation' => __('My Location', 'geodirectory'),
|
|
| 1308 | + 'geoErrUNKNOWN_ERROR' => addslashes(__('Unable to find your location', 'geodirectory')),
|
|
| 1309 | + 'geoErrPERMISSION_DENINED' => addslashes(__('Permission denied in finding your location', 'geodirectory')),
|
|
| 1310 | + 'geoErrPOSITION_UNAVAILABLE' => addslashes(__('Your location is currently unknown', 'geodirectory')),
|
|
| 1311 | + 'geoErrBREAK' => addslashes(__('Attempt to find location took too long', 'geodirectory')),
|
|
| 1312 | + 'geoErrDEFAULT' => addslashes(__('Location detection not supported in browser', 'geodirectory')),
|
|
| 1313 | + ); |
|
| 1314 | + |
|
| 1315 | + /** |
|
| 1316 | + * Filters the translated JS strings from function geodir_localize_all_js_msg(). |
|
| 1317 | + * |
|
| 1318 | + * With this filter you can add, remove or change translated JS strings. |
|
| 1319 | + * You should add your own translations to this if you are building an addon rather than adding another script block. |
|
| 1320 | + * |
|
| 1321 | + * @since 1.0.0 |
|
| 1322 | + */ |
|
| 1323 | + $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
|
|
| 1330 | 1324 | |
| 1331 | - $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1332 | - echo '<script>'; |
|
| 1333 | - echo $script; |
|
| 1334 | - echo '</script>'; |
|
| 1325 | + foreach ($arr_alert_msg as $key => $value) {
|
|
| 1326 | + if (!is_scalar($value)) |
|
| 1327 | + continue; |
|
| 1328 | + $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1329 | + } |
|
| 1330 | + |
|
| 1331 | + $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1332 | + echo '<script>'; |
|
| 1333 | + echo $script; |
|
| 1334 | + echo '</script>'; |
|
| 1335 | 1335 | } |
| 1336 | 1336 | |
| 1337 | 1337 | add_action('admin_bar_menu', 'geodir_admin_bar_site_menu', 31);
|
@@ -1347,11 +1347,11 @@ discard block |
||
| 1347 | 1347 | */ |
| 1348 | 1348 | function geodir_admin_bar_site_menu($wp_admin_bar) |
| 1349 | 1349 | {
|
| 1350 | - if (get_option("geodir_installed")) {
|
|
| 1351 | - if (current_user_can('manage_options')) {
|
|
| 1352 | - $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
|
|
| 1353 | - } |
|
| 1354 | - } |
|
| 1350 | + if (get_option("geodir_installed")) {
|
|
| 1351 | + if (current_user_can('manage_options')) {
|
|
| 1352 | + $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
|
|
| 1353 | + } |
|
| 1354 | + } |
|
| 1355 | 1355 | } |
| 1356 | 1356 | |
| 1357 | 1357 | add_action('geodir_before_listing', 'geodir_display_sort_options'); /*function in custom_functions.php*/
|
@@ -1377,25 +1377,25 @@ discard block |
||
| 1377 | 1377 | */ |
| 1378 | 1378 | function geodir_store_sidebars() |
| 1379 | 1379 | {
|
| 1380 | - global $geodir_sidebars; |
|
| 1381 | - global $sidebars_widgets; |
|
| 1382 | - |
|
| 1383 | - if (!is_array($sidebars_widgets)) |
|
| 1384 | - $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1385 | - $geodir_old_sidebars = array(); |
|
| 1386 | - |
|
| 1387 | - if (is_array($geodir_sidebars)) {
|
|
| 1388 | - foreach ($geodir_sidebars as $val) {
|
|
| 1389 | - if (is_array($sidebars_widgets)) {
|
|
| 1390 | - if (array_key_exists($val, $sidebars_widgets)) |
|
| 1391 | - $geodir_old_sidebars[$val] = $sidebars_widgets[$val]; |
|
| 1392 | - else |
|
| 1393 | - $geodir_old_sidebars[$val] = array(); |
|
| 1394 | - } |
|
| 1395 | - } |
|
| 1396 | - } |
|
| 1397 | - update_option('geodir_sidebars', $geodir_old_sidebars);
|
|
| 1398 | - geodir_option_version_backup('geodir_sidebars');
|
|
| 1380 | + global $geodir_sidebars; |
|
| 1381 | + global $sidebars_widgets; |
|
| 1382 | + |
|
| 1383 | + if (!is_array($sidebars_widgets)) |
|
| 1384 | + $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1385 | + $geodir_old_sidebars = array(); |
|
| 1386 | + |
|
| 1387 | + if (is_array($geodir_sidebars)) {
|
|
| 1388 | + foreach ($geodir_sidebars as $val) {
|
|
| 1389 | + if (is_array($sidebars_widgets)) {
|
|
| 1390 | + if (array_key_exists($val, $sidebars_widgets)) |
|
| 1391 | + $geodir_old_sidebars[$val] = $sidebars_widgets[$val]; |
|
| 1392 | + else |
|
| 1393 | + $geodir_old_sidebars[$val] = array(); |
|
| 1394 | + } |
|
| 1395 | + } |
|
| 1396 | + } |
|
| 1397 | + update_option('geodir_sidebars', $geodir_old_sidebars);
|
|
| 1398 | + geodir_option_version_backup('geodir_sidebars');
|
|
| 1399 | 1399 | |
| 1400 | 1400 | } |
| 1401 | 1401 | |
@@ -1409,28 +1409,28 @@ discard block |
||
| 1409 | 1409 | */ |
| 1410 | 1410 | function geodir_restore_sidebars() |
| 1411 | 1411 | {
|
| 1412 | - global $sidebars_widgets; |
|
| 1413 | - |
|
| 1414 | - if (!is_array($sidebars_widgets)) |
|
| 1415 | - $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1416 | - |
|
| 1417 | - if (is_array($sidebars_widgets)) {
|
|
| 1418 | - $geodir_old_sidebars = get_option('geodir_sidebars');
|
|
| 1419 | - if (is_array($geodir_old_sidebars)) {
|
|
| 1420 | - foreach ($geodir_old_sidebars as $key => $val) {
|
|
| 1421 | - if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1422 | - {
|
|
| 1423 | - $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
|
| 1424 | - } |
|
| 1412 | + global $sidebars_widgets; |
|
| 1425 | 1413 | |
| 1414 | + if (!is_array($sidebars_widgets)) |
|
| 1415 | + $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1426 | 1416 | |
| 1427 | - } |
|
| 1428 | - } |
|
| 1417 | + if (is_array($sidebars_widgets)) {
|
|
| 1418 | + $geodir_old_sidebars = get_option('geodir_sidebars');
|
|
| 1419 | + if (is_array($geodir_old_sidebars)) {
|
|
| 1420 | + foreach ($geodir_old_sidebars as $key => $val) {
|
|
| 1421 | + if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1422 | + {
|
|
| 1423 | + $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
|
| 1424 | + } |
|
| 1429 | 1425 | |
| 1430 | - } |
|
| 1431 | 1426 | |
| 1432 | - update_option('sidebars_widgets', $sidebars_widgets);
|
|
| 1433 | - update_option('geodir_sidebars', '');
|
|
| 1427 | + } |
|
| 1428 | + } |
|
| 1429 | + |
|
| 1430 | + } |
|
| 1431 | + |
|
| 1432 | + update_option('sidebars_widgets', $sidebars_widgets);
|
|
| 1433 | + update_option('geodir_sidebars', '');
|
|
| 1434 | 1434 | } |
| 1435 | 1435 | |
| 1436 | 1436 | add_action('geodir_after_listing_post_gridview', 'geodir_after_listing_post_gridview');
|
@@ -1443,9 +1443,9 @@ discard block |
||
| 1443 | 1443 | */ |
| 1444 | 1444 | function geodir_after_listing_post_gridview() |
| 1445 | 1445 | {
|
| 1446 | - global $gridview_columns; |
|
| 1446 | + global $gridview_columns; |
|
| 1447 | 1447 | |
| 1448 | - $gridview_columns = ''; |
|
| 1448 | + $gridview_columns = ''; |
|
| 1449 | 1449 | |
| 1450 | 1450 | } |
| 1451 | 1451 | |
@@ -1473,11 +1473,11 @@ discard block |
||
| 1473 | 1473 | */ |
| 1474 | 1474 | function so_handle_038($url, $original_url, $_context) |
| 1475 | 1475 | {
|
| 1476 | - if (strstr($url, "maps.google.com/maps/api/js") !== false) {
|
|
| 1477 | - $url = str_replace("&", "&", $url); // or $url = $original_url
|
|
| 1478 | - } |
|
| 1476 | + if (strstr($url, "maps.google.com/maps/api/js") !== false) {
|
|
| 1477 | + $url = str_replace("&", "&", $url); // or $url = $original_url
|
|
| 1478 | + } |
|
| 1479 | 1479 | |
| 1480 | - return $url; |
|
| 1480 | + return $url; |
|
| 1481 | 1481 | } |
| 1482 | 1482 | |
| 1483 | 1483 | |
@@ -1493,34 +1493,34 @@ discard block |
||
| 1493 | 1493 | function geodir_after_main_form_fields() {
|
| 1494 | 1494 | global $gd_session; |
| 1495 | 1495 | |
| 1496 | - if (get_option('geodir_accept_term_condition')) {
|
|
| 1497 | - global $post; |
|
| 1498 | - $term_condition = ''; |
|
| 1499 | - if (isset($_REQUEST['backandedit'])) {
|
|
| 1500 | - $post = (object)$gd_session->get('listing');
|
|
| 1501 | - $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
|
| 1502 | - } |
|
| 1503 | - |
|
| 1504 | - ?> |
|
| 1496 | + if (get_option('geodir_accept_term_condition')) {
|
|
| 1497 | + global $post; |
|
| 1498 | + $term_condition = ''; |
|
| 1499 | + if (isset($_REQUEST['backandedit'])) {
|
|
| 1500 | + $post = (object)$gd_session->get('listing');
|
|
| 1501 | + $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
|
| 1502 | + } |
|
| 1503 | + |
|
| 1504 | + ?> |
|
| 1505 | 1505 | <div id="geodir_accept_term_condition_row" class="required_field geodir_form_row clearfix"> |
| 1506 | 1506 | <label> </label> |
| 1507 | 1507 | |
| 1508 | 1508 | <div class="geodir_taxonomy_field" style="float:left; width:70%;"> |
| 1509 | 1509 | <span style="display:block"> |
| 1510 | 1510 | <input class="main_list_selecter" type="checkbox" <?php if ($term_condition == '1') {
|
| 1511 | - echo 'checked="checked"'; |
|
| 1512 | - } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
|
| 1511 | + echo 'checked="checked"'; |
|
| 1512 | + } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
|
| 1513 | 1513 | class="geodir_textfield" value="1" |
| 1514 | 1514 | style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
| 1515 | 1515 | </span> |
| 1516 | 1516 | </div> |
| 1517 | 1517 | <span class="geodir_message_error"><?php if (isset($required_msg)) {
|
| 1518 | - _e($required_msg, 'geodirectory'); |
|
| 1519 | - } ?></span> |
|
| 1518 | + _e($required_msg, 'geodirectory'); |
|
| 1519 | + } ?></span> |
|
| 1520 | 1520 | </div> |
| 1521 | 1521 | <?php |
| 1522 | 1522 | |
| 1523 | - } |
|
| 1523 | + } |
|
| 1524 | 1524 | } |
| 1525 | 1525 | |
| 1526 | 1526 | |
@@ -1545,42 +1545,42 @@ discard block |
||
| 1545 | 1545 | */ |
| 1546 | 1546 | function geodir_detail_page_tab_is_display($is_display, $tab) |
| 1547 | 1547 | {
|
| 1548 | - global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1548 | + global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1549 | 1549 | |
| 1550 | - if ($tab == 'post_profile') {
|
|
| 1551 | - /** This action is documented in geodirectory_template_actions.php */ |
|
| 1552 | - $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
|
| 1550 | + if ($tab == 'post_profile') {
|
|
| 1551 | + /** This action is documented in geodirectory_template_actions.php */ |
|
| 1552 | + $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
|
| 1553 | 1553 | |
| 1554 | - if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1555 | - $is_display = false; |
|
| 1556 | - } |
|
| 1557 | - } |
|
| 1554 | + if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1555 | + $is_display = false; |
|
| 1556 | + } |
|
| 1557 | + } |
|
| 1558 | 1558 | |
| 1559 | - if ($tab == 'post_info') |
|
| 1560 | - $is_display = (!empty($geodir_post_detail_fields)) ? true : false; |
|
| 1559 | + if ($tab == 'post_info') |
|
| 1560 | + $is_display = (!empty($geodir_post_detail_fields)) ? true : false; |
|
| 1561 | 1561 | |
| 1562 | - if ($tab == 'post_images') |
|
| 1563 | - $is_display = (!empty($post_images)) ? true : false; |
|
| 1562 | + if ($tab == 'post_images') |
|
| 1563 | + $is_display = (!empty($post_images)) ? true : false; |
|
| 1564 | 1564 | |
| 1565 | - if ($tab == 'post_video') |
|
| 1566 | - $is_display = (!empty($video)) ? true : false; |
|
| 1565 | + if ($tab == 'post_video') |
|
| 1566 | + $is_display = (!empty($video)) ? true : false; |
|
| 1567 | 1567 | |
| 1568 | - if ($tab == 'special_offers') |
|
| 1569 | - $is_display = (!empty($special_offers)) ? true : false; |
|
| 1568 | + if ($tab == 'special_offers') |
|
| 1569 | + $is_display = (!empty($special_offers)) ? true : false; |
|
| 1570 | 1570 | |
| 1571 | - if ($tab == 'reviews') |
|
| 1572 | - $is_display = (geodir_is_page('detail')) ? true : false;
|
|
| 1571 | + if ($tab == 'reviews') |
|
| 1572 | + $is_display = (geodir_is_page('detail')) ? true : false;
|
|
| 1573 | 1573 | |
| 1574 | - if ($tab == 'related_listing') {
|
|
| 1575 | - $message = __('No listings found which match your selection.', 'geodirectory');
|
|
| 1574 | + if ($tab == 'related_listing') {
|
|
| 1575 | + $message = __('No listings found which match your selection.', 'geodirectory');
|
|
| 1576 | 1576 | |
| 1577 | - /** This action is documented in geodirectory-functions/template_functions.php */ |
|
| 1578 | - $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
|
|
| 1577 | + /** This action is documented in geodirectory-functions/template_functions.php */ |
|
| 1578 | + $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
|
|
| 1579 | 1579 | |
| 1580 | - $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
|
|
| 1581 | - } |
|
| 1580 | + $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
|
|
| 1581 | + } |
|
| 1582 | 1582 | |
| 1583 | - return $is_display; |
|
| 1583 | + return $is_display; |
|
| 1584 | 1584 | } |
| 1585 | 1585 | |
| 1586 | 1586 | |
@@ -1596,69 +1596,69 @@ discard block |
||
| 1596 | 1596 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 1597 | 1597 | */ |
| 1598 | 1598 | function geodir_changes_in_custom_fields_table() {
|
| 1599 | - global $wpdb, $plugin_prefix; |
|
| 1599 | + global $wpdb, $plugin_prefix; |
|
| 1600 | 1600 | |
| 1601 | 1601 | // Remove unused virtual page |
| 1602 | 1602 | $listings_page_id = (int)get_option('geodir_listing_page');
|
| 1603 | 1603 | if ($listings_page_id) {
|
| 1604 | 1604 | $wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
| 1605 | - delete_option('geodir_listing_page');
|
|
| 1605 | + delete_option('geodir_listing_page');
|
|
| 1606 | 1606 | } |
| 1607 | 1607 | |
| 1608 | - if (!get_option('geodir_changes_in_custom_fields_table')) {
|
|
| 1609 | - $wpdb->query( |
|
| 1610 | - $wpdb->prepare( |
|
| 1611 | - "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1612 | - array('1', '1', 'admin')
|
|
| 1613 | - ) |
|
| 1614 | - ); |
|
| 1608 | + if (!get_option('geodir_changes_in_custom_fields_table')) {
|
|
| 1609 | + $wpdb->query( |
|
| 1610 | + $wpdb->prepare( |
|
| 1611 | + "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1612 | + array('1', '1', 'admin')
|
|
| 1613 | + ) |
|
| 1614 | + ); |
|
| 1615 | 1615 | |
| 1616 | 1616 | |
| 1617 | - /* --- terms meta value set --- */ |
|
| 1617 | + /* --- terms meta value set --- */ |
|
| 1618 | 1618 | |
| 1619 | - update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1619 | + update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1620 | 1620 | |
| 1621 | - $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1621 | + $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1622 | 1622 | |
| 1623 | - if (!empty($options_data)) {
|
|
| 1623 | + if (!empty($options_data)) {
|
|
| 1624 | 1624 | |
| 1625 | - foreach ($options_data as $optobj) {
|
|
| 1625 | + foreach ($options_data as $optobj) {
|
|
| 1626 | 1626 | |
| 1627 | - $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
|
| 1627 | + $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
|
| 1628 | 1628 | |
| 1629 | - $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1629 | + $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1630 | 1630 | |
| 1631 | - if (!empty($taxonomies_data)) {
|
|
| 1631 | + if (!empty($taxonomies_data)) {
|
|
| 1632 | 1632 | |
| 1633 | - foreach ($taxonomies_data as $taxobj) {
|
|
| 1633 | + foreach ($taxonomies_data as $taxobj) {
|
|
| 1634 | 1634 | |
| 1635 | - $taxObject = get_taxonomy($taxobj->taxonomy); |
|
| 1636 | - $post_type = $taxObject->object_type[0]; |
|
| 1635 | + $taxObject = get_taxonomy($taxobj->taxonomy); |
|
| 1636 | + $post_type = $taxObject->object_type[0]; |
|
| 1637 | 1637 | |
| 1638 | - $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1638 | + $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1639 | 1639 | |
| 1640 | - $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1640 | + $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1641 | 1641 | |
| 1642 | - if ($duplicate_data) {
|
|
| 1642 | + if ($duplicate_data) {
|
|
| 1643 | 1643 | |
| 1644 | - $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1644 | + $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1645 | 1645 | |
| 1646 | - } else {
|
|
| 1646 | + } else {
|
|
| 1647 | 1647 | |
| 1648 | - $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1648 | + $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1649 | 1649 | |
| 1650 | - } |
|
| 1650 | + } |
|
| 1651 | 1651 | |
| 1652 | - } |
|
| 1652 | + } |
|
| 1653 | 1653 | |
| 1654 | - } |
|
| 1654 | + } |
|
| 1655 | 1655 | |
| 1656 | - } |
|
| 1657 | - } |
|
| 1656 | + } |
|
| 1657 | + } |
|
| 1658 | 1658 | |
| 1659 | - update_option('geodir_changes_in_custom_fields_table', '1');
|
|
| 1659 | + update_option('geodir_changes_in_custom_fields_table', '1');
|
|
| 1660 | 1660 | |
| 1661 | - } |
|
| 1661 | + } |
|
| 1662 | 1662 | |
| 1663 | 1663 | } |
| 1664 | 1664 | |
@@ -1677,24 +1677,24 @@ discard block |
||
| 1677 | 1677 | function geodir_location_slug_check($slug) |
| 1678 | 1678 | {
|
| 1679 | 1679 | |
| 1680 | - global $wpdb, $table_prefix; |
|
| 1680 | + global $wpdb, $table_prefix; |
|
| 1681 | 1681 | |
| 1682 | - $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1682 | + $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1683 | 1683 | |
| 1684 | - if ($slug_exists) {
|
|
| 1684 | + if ($slug_exists) {
|
|
| 1685 | 1685 | |
| 1686 | - $suffix = 1; |
|
| 1687 | - do {
|
|
| 1688 | - $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1689 | - $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1690 | - $suffix++; |
|
| 1691 | - } while ($location_slug_check && $suffix < 100); |
|
| 1686 | + $suffix = 1; |
|
| 1687 | + do {
|
|
| 1688 | + $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1689 | + $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1690 | + $suffix++; |
|
| 1691 | + } while ($location_slug_check && $suffix < 100); |
|
| 1692 | 1692 | |
| 1693 | - $slug = $alt_location_name; |
|
| 1693 | + $slug = $alt_location_name; |
|
| 1694 | 1694 | |
| 1695 | - } |
|
| 1695 | + } |
|
| 1696 | 1696 | |
| 1697 | - return $slug; |
|
| 1697 | + return $slug; |
|
| 1698 | 1698 | |
| 1699 | 1699 | } |
| 1700 | 1700 | |
@@ -1719,42 +1719,42 @@ discard block |
||
| 1719 | 1719 | function geodir_update_term_slug($term_id, $tt_id, $taxonomy) |
| 1720 | 1720 | {
|
| 1721 | 1721 | |
| 1722 | - global $wpdb, $plugin_prefix, $table_prefix; |
|
| 1722 | + global $wpdb, $plugin_prefix, $table_prefix; |
|
| 1723 | 1723 | |
| 1724 | - $tern_data = get_term_by('id', $term_id, $taxonomy);
|
|
| 1724 | + $tern_data = get_term_by('id', $term_id, $taxonomy);
|
|
| 1725 | 1725 | |
| 1726 | - $slug = $tern_data->slug; |
|
| 1726 | + $slug = $tern_data->slug; |
|
| 1727 | 1727 | |
| 1728 | - /** |
|
| 1729 | - * Filter if a term slug exists. |
|
| 1730 | - * |
|
| 1731 | - * @since 1.0.0 |
|
| 1732 | - * @package GeoDirectory |
|
| 1733 | - * @param bool $bool Default: false. |
|
| 1734 | - * @param string $slug The term slug. |
|
| 1735 | - * @param int $term_id The term ID. |
|
| 1736 | - */ |
|
| 1737 | - $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
|
|
| 1728 | + /** |
|
| 1729 | + * Filter if a term slug exists. |
|
| 1730 | + * |
|
| 1731 | + * @since 1.0.0 |
|
| 1732 | + * @package GeoDirectory |
|
| 1733 | + * @param bool $bool Default: false. |
|
| 1734 | + * @param string $slug The term slug. |
|
| 1735 | + * @param int $term_id The term ID. |
|
| 1736 | + */ |
|
| 1737 | + $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
|
|
| 1738 | 1738 | |
| 1739 | - if ($slug_exists) {
|
|
| 1739 | + if ($slug_exists) {
|
|
| 1740 | 1740 | |
| 1741 | - $suffix = 1; |
|
| 1742 | - do {
|
|
| 1743 | - $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1741 | + $suffix = 1; |
|
| 1742 | + do {
|
|
| 1743 | + $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1744 | 1744 | |
| 1745 | - /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 1746 | - $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
|
| 1745 | + /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 1746 | + $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
|
| 1747 | 1747 | |
| 1748 | - $suffix++; |
|
| 1749 | - } while ($term_slug_check && $suffix < 100); |
|
| 1748 | + $suffix++; |
|
| 1749 | + } while ($term_slug_check && $suffix < 100); |
|
| 1750 | 1750 | |
| 1751 | - $slug = $new_slug; |
|
| 1751 | + $slug = $new_slug; |
|
| 1752 | 1752 | |
| 1753 | - //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
|
| 1753 | + //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
|
| 1754 | 1754 | |
| 1755 | - $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1755 | + $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1756 | 1756 | |
| 1757 | - } |
|
| 1757 | + } |
|
| 1758 | 1758 | |
| 1759 | 1759 | // Update tag in detail table. |
| 1760 | 1760 | $taxonomy_obj = get_taxonomy($taxonomy); |
@@ -1795,21 +1795,21 @@ discard block |
||
| 1795 | 1795 | function geodir_term_slug_is_exists($slug_exists, $slug, $term_id) |
| 1796 | 1796 | {
|
| 1797 | 1797 | |
| 1798 | - global $wpdb, $table_prefix; |
|
| 1798 | + global $wpdb, $table_prefix; |
|
| 1799 | 1799 | |
| 1800 | - $default_location = geodir_get_default_location(); |
|
| 1800 | + $default_location = geodir_get_default_location(); |
|
| 1801 | 1801 | |
| 1802 | - $country_slug = $default_location->country_slug; |
|
| 1803 | - $region_slug = $default_location->region_slug; |
|
| 1804 | - $city_slug = $default_location->city_slug; |
|
| 1802 | + $country_slug = $default_location->country_slug; |
|
| 1803 | + $region_slug = $default_location->region_slug; |
|
| 1804 | + $city_slug = $default_location->city_slug; |
|
| 1805 | 1805 | |
| 1806 | - if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
|
| 1807 | - return $slug_exists = true; |
|
| 1806 | + if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
|
| 1807 | + return $slug_exists = true; |
|
| 1808 | 1808 | |
| 1809 | - if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1810 | - return $slug_exists = true; |
|
| 1809 | + if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1810 | + return $slug_exists = true; |
|
| 1811 | 1811 | |
| 1812 | - return $slug_exists; |
|
| 1812 | + return $slug_exists; |
|
| 1813 | 1813 | } |
| 1814 | 1814 | |
| 1815 | 1815 | |
@@ -1828,75 +1828,75 @@ discard block |
||
| 1828 | 1828 | */ |
| 1829 | 1829 | function geodir_custom_page_title($title = '', $sep = '') |
| 1830 | 1830 | {
|
| 1831 | - global $wp; |
|
| 1832 | - if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
|
| 1833 | - return $title; |
|
| 1834 | - } |
|
| 1831 | + global $wp; |
|
| 1832 | + if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
|
| 1833 | + return $title; |
|
| 1834 | + } |
|
| 1835 | 1835 | |
| 1836 | - if ($sep == '') {
|
|
| 1837 | - /** |
|
| 1838 | - * Filter the page title separator. |
|
| 1839 | - * |
|
| 1840 | - * @since 1.0.0 |
|
| 1841 | - * @package GeoDirectory |
|
| 1842 | - * @param string $sep The separator, default: `|`. |
|
| 1843 | - */ |
|
| 1844 | - $sep = apply_filters('geodir_page_title_separator', '|');
|
|
| 1845 | - } |
|
| 1836 | + if ($sep == '') {
|
|
| 1837 | + /** |
|
| 1838 | + * Filter the page title separator. |
|
| 1839 | + * |
|
| 1840 | + * @since 1.0.0 |
|
| 1841 | + * @package GeoDirectory |
|
| 1842 | + * @param string $sep The separator, default: `|`. |
|
| 1843 | + */ |
|
| 1844 | + $sep = apply_filters('geodir_page_title_separator', '|');
|
|
| 1845 | + } |
|
| 1846 | 1846 | |
| 1847 | 1847 | |
| 1848 | - $gd_page = ''; |
|
| 1849 | - if(geodir_is_page('home')){
|
|
| 1850 | - $gd_page = 'home'; |
|
| 1851 | - $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
|
| 1852 | - } |
|
| 1853 | - elseif(geodir_is_page('detail')){
|
|
| 1854 | - $gd_page = 'detail'; |
|
| 1855 | - $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
|
| 1856 | - } |
|
| 1857 | - elseif(geodir_is_page('pt')){
|
|
| 1858 | - $gd_page = 'pt'; |
|
| 1859 | - $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
|
| 1860 | - } |
|
| 1861 | - elseif(geodir_is_page('listing')){
|
|
| 1862 | - $gd_page = 'listing'; |
|
| 1863 | - $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
|
| 1864 | - } |
|
| 1865 | - elseif(geodir_is_page('location')){
|
|
| 1866 | - $gd_page = 'location'; |
|
| 1867 | - $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
|
| 1868 | - } |
|
| 1869 | - elseif(geodir_is_page('search')){
|
|
| 1870 | - $gd_page = 'search'; |
|
| 1871 | - $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
|
| 1872 | - } |
|
| 1873 | - elseif(geodir_is_page('add-listing')){
|
|
| 1874 | - $gd_page = 'add-listing'; |
|
| 1875 | - $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
|
| 1876 | - } |
|
| 1877 | - elseif(geodir_is_page('author')){
|
|
| 1878 | - $gd_page = 'author'; |
|
| 1879 | - $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
|
| 1880 | - } |
|
| 1881 | - elseif(geodir_is_page('login')){
|
|
| 1882 | - $gd_page = 'login'; |
|
| 1883 | - $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
|
| 1884 | - } |
|
| 1885 | - elseif(geodir_is_page('listing-success')){
|
|
| 1886 | - $gd_page = 'listing-success'; |
|
| 1887 | - $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
|
| 1888 | - } |
|
| 1848 | + $gd_page = ''; |
|
| 1849 | + if(geodir_is_page('home')){
|
|
| 1850 | + $gd_page = 'home'; |
|
| 1851 | + $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
|
| 1852 | + } |
|
| 1853 | + elseif(geodir_is_page('detail')){
|
|
| 1854 | + $gd_page = 'detail'; |
|
| 1855 | + $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
|
| 1856 | + } |
|
| 1857 | + elseif(geodir_is_page('pt')){
|
|
| 1858 | + $gd_page = 'pt'; |
|
| 1859 | + $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
|
| 1860 | + } |
|
| 1861 | + elseif(geodir_is_page('listing')){
|
|
| 1862 | + $gd_page = 'listing'; |
|
| 1863 | + $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
|
| 1864 | + } |
|
| 1865 | + elseif(geodir_is_page('location')){
|
|
| 1866 | + $gd_page = 'location'; |
|
| 1867 | + $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
|
| 1868 | + } |
|
| 1869 | + elseif(geodir_is_page('search')){
|
|
| 1870 | + $gd_page = 'search'; |
|
| 1871 | + $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
|
| 1872 | + } |
|
| 1873 | + elseif(geodir_is_page('add-listing')){
|
|
| 1874 | + $gd_page = 'add-listing'; |
|
| 1875 | + $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
|
| 1876 | + } |
|
| 1877 | + elseif(geodir_is_page('author')){
|
|
| 1878 | + $gd_page = 'author'; |
|
| 1879 | + $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
|
| 1880 | + } |
|
| 1881 | + elseif(geodir_is_page('login')){
|
|
| 1882 | + $gd_page = 'login'; |
|
| 1883 | + $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
|
| 1884 | + } |
|
| 1885 | + elseif(geodir_is_page('listing-success')){
|
|
| 1886 | + $gd_page = 'listing-success'; |
|
| 1887 | + $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
|
| 1888 | + } |
|
| 1889 | 1889 | |
| 1890 | 1890 | |
| 1891 | - /** |
|
| 1892 | - * Filter page meta title to replace variables. |
|
| 1893 | - * |
|
| 1894 | - * @since 1.5.4 |
|
| 1895 | - * @param string $title The page title including variables. |
|
| 1896 | - * @param string $gd_page The GeoDirectory page type if any. |
|
| 1897 | - * @param string $sep The title separator symbol. |
|
| 1898 | - */ |
|
| 1899 | - return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
|
|
| 1891 | + /** |
|
| 1892 | + * Filter page meta title to replace variables. |
|
| 1893 | + * |
|
| 1894 | + * @since 1.5.4 |
|
| 1895 | + * @param string $title The page title including variables. |
|
| 1896 | + * @param string $gd_page The GeoDirectory page type if any. |
|
| 1897 | + * @param string $sep The title separator symbol. |
|
| 1898 | + */ |
|
| 1899 | + return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
|
|
| 1900 | 1900 | |
| 1901 | 1901 | } |
| 1902 | 1902 | |
@@ -1912,36 +1912,36 @@ discard block |
||
| 1912 | 1912 | function geodir_set_post_attachment() |
| 1913 | 1913 | {
|
| 1914 | 1914 | |
| 1915 | - if (!get_option('geodir_set_post_attachments')) {
|
|
| 1915 | + if (!get_option('geodir_set_post_attachments')) {
|
|
| 1916 | 1916 | |
| 1917 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1918 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1917 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1918 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1919 | 1919 | |
| 1920 | - $all_postypes = geodir_get_posttypes(); |
|
| 1920 | + $all_postypes = geodir_get_posttypes(); |
|
| 1921 | 1921 | |
| 1922 | - foreach($all_postypes as $post_type){
|
|
| 1923 | - $args = array( |
|
| 1924 | - 'posts_per_page' => -1, |
|
| 1925 | - 'post_type' => $post_type, |
|
| 1926 | - 'post_status' => 'publish'); |
|
| 1922 | + foreach($all_postypes as $post_type){
|
|
| 1923 | + $args = array( |
|
| 1924 | + 'posts_per_page' => -1, |
|
| 1925 | + 'post_type' => $post_type, |
|
| 1926 | + 'post_status' => 'publish'); |
|
| 1927 | 1927 | |
| 1928 | - $posts_array = get_posts($args); |
|
| 1928 | + $posts_array = get_posts($args); |
|
| 1929 | 1929 | |
| 1930 | - if (!empty($posts_array)) {
|
|
| 1930 | + if (!empty($posts_array)) {
|
|
| 1931 | 1931 | |
| 1932 | - foreach ($posts_array as $post) {
|
|
| 1932 | + foreach ($posts_array as $post) {
|
|
| 1933 | 1933 | |
| 1934 | - geodir_set_wp_featured_image($post->ID); |
|
| 1934 | + geodir_set_wp_featured_image($post->ID); |
|
| 1935 | 1935 | |
| 1936 | - } |
|
| 1936 | + } |
|
| 1937 | 1937 | |
| 1938 | - } |
|
| 1939 | - } |
|
| 1938 | + } |
|
| 1939 | + } |
|
| 1940 | 1940 | |
| 1941 | 1941 | |
| 1942 | - update_option('geodir_set_post_attachments', '1');
|
|
| 1942 | + update_option('geodir_set_post_attachments', '1');
|
|
| 1943 | 1943 | |
| 1944 | - } |
|
| 1944 | + } |
|
| 1945 | 1945 | |
| 1946 | 1946 | } |
| 1947 | 1947 | |
@@ -1958,19 +1958,19 @@ discard block |
||
| 1958 | 1958 | function geodir_remove_url_seperator() |
| 1959 | 1959 | {
|
| 1960 | 1960 | |
| 1961 | - if (!get_option('geodir_remove_url_seperator')) {
|
|
| 1961 | + if (!get_option('geodir_remove_url_seperator')) {
|
|
| 1962 | 1962 | |
| 1963 | - if (get_option('geodir_listingurl_separator'))
|
|
| 1964 | - delete_option('geodir_listingurl_separator');
|
|
| 1963 | + if (get_option('geodir_listingurl_separator'))
|
|
| 1964 | + delete_option('geodir_listingurl_separator');
|
|
| 1965 | 1965 | |
| 1966 | - if (get_option('geodir_detailurl_separator'))
|
|
| 1967 | - delete_option('geodir_detailurl_separator');
|
|
| 1966 | + if (get_option('geodir_detailurl_separator'))
|
|
| 1967 | + delete_option('geodir_detailurl_separator');
|
|
| 1968 | 1968 | |
| 1969 | - flush_rewrite_rules(false); |
|
| 1969 | + flush_rewrite_rules(false); |
|
| 1970 | 1970 | |
| 1971 | - update_option('geodir_remove_url_seperator', '1');
|
|
| 1971 | + update_option('geodir_remove_url_seperator', '1');
|
|
| 1972 | 1972 | |
| 1973 | - } |
|
| 1973 | + } |
|
| 1974 | 1974 | |
| 1975 | 1975 | } |
| 1976 | 1976 | |
@@ -1986,19 +1986,19 @@ discard block |
||
| 1986 | 1986 | */ |
| 1987 | 1987 | function geodir_remove_url_seperator_form_permalink_settings($permalink_arr) |
| 1988 | 1988 | {
|
| 1989 | - foreach ($permalink_arr as $key => $value) {
|
|
| 1989 | + foreach ($permalink_arr as $key => $value) {
|
|
| 1990 | 1990 | |
| 1991 | - if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') |
|
| 1992 | - unset($permalink_arr[$key]); |
|
| 1991 | + if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') |
|
| 1992 | + unset($permalink_arr[$key]); |
|
| 1993 | 1993 | |
| 1994 | - } |
|
| 1994 | + } |
|
| 1995 | 1995 | |
| 1996 | - return $permalink_arr; |
|
| 1996 | + return $permalink_arr; |
|
| 1997 | 1997 | |
| 1998 | 1998 | } |
| 1999 | 1999 | |
| 2000 | 2000 | if (!is_admin()) {
|
| 2001 | - add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
|
|
| 2001 | + add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
|
|
| 2002 | 2002 | } |
| 2003 | 2003 | /** |
| 2004 | 2004 | * Set status from draft to publish. |
@@ -2011,16 +2011,16 @@ discard block |
||
| 2011 | 2011 | */ |
| 2012 | 2012 | function geodir_set_status_draft_to_publish_for_own_post($post) |
| 2013 | 2013 | {
|
| 2014 | - $user_id = get_current_user_id(); |
|
| 2014 | + $user_id = get_current_user_id(); |
|
| 2015 | 2015 | |
| 2016 | - if(!$user_id){return $post;}
|
|
| 2016 | + if(!$user_id){return $post;}
|
|
| 2017 | 2017 | |
| 2018 | - $gd_post_types = geodir_get_posttypes(); |
|
| 2018 | + $gd_post_types = geodir_get_posttypes(); |
|
| 2019 | 2019 | |
| 2020 | - if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
|
|
| 2021 | - $post[0]->post_status = 'publish'; |
|
| 2022 | - } |
|
| 2023 | - return $post; |
|
| 2020 | + if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
|
|
| 2021 | + $post[0]->post_status = 'publish'; |
|
| 2022 | + } |
|
| 2023 | + return $post; |
|
| 2024 | 2024 | } |
| 2025 | 2025 | |
| 2026 | 2026 | |
@@ -2112,33 +2112,33 @@ discard block |
||
| 2112 | 2112 | */ |
| 2113 | 2113 | function geodir_detail_page_tab_headings_change($tabs_arr) |
| 2114 | 2114 | {
|
| 2115 | - global $wpdb; |
|
| 2115 | + global $wpdb; |
|
| 2116 | 2116 | |
| 2117 | - $post_type = geodir_get_current_posttype(); |
|
| 2117 | + $post_type = geodir_get_current_posttype(); |
|
| 2118 | 2118 | |
| 2119 | - $all_postypes = geodir_get_posttypes(); |
|
| 2119 | + $all_postypes = geodir_get_posttypes(); |
|
| 2120 | 2120 | |
| 2121 | - if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
|
|
| 2121 | + if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
|
|
| 2122 | 2122 | |
| 2123 | - if (array_key_exists('post_video', $tabs_arr)) {
|
|
| 2123 | + if (array_key_exists('post_video', $tabs_arr)) {
|
|
| 2124 | 2124 | |
| 2125 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2125 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2126 | 2126 | |
| 2127 | - if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
|
| 2128 | - $tabs_arr['post_video']['heading_text'] = $field_title; |
|
| 2129 | - } |
|
| 2127 | + if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
|
| 2128 | + $tabs_arr['post_video']['heading_text'] = $field_title; |
|
| 2129 | + } |
|
| 2130 | 2130 | |
| 2131 | - if (array_key_exists('special_offers', $tabs_arr)) {
|
|
| 2131 | + if (array_key_exists('special_offers', $tabs_arr)) {
|
|
| 2132 | 2132 | |
| 2133 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2133 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2134 | 2134 | |
| 2135 | - if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
|
| 2136 | - $tabs_arr['special_offers']['heading_text'] = $field_title; |
|
| 2137 | - } |
|
| 2135 | + if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
|
| 2136 | + $tabs_arr['special_offers']['heading_text'] = $field_title; |
|
| 2137 | + } |
|
| 2138 | 2138 | |
| 2139 | - } |
|
| 2139 | + } |
|
| 2140 | 2140 | |
| 2141 | - return $tabs_arr; |
|
| 2141 | + return $tabs_arr; |
|
| 2142 | 2142 | |
| 2143 | 2143 | } |
| 2144 | 2144 | |
@@ -2151,10 +2151,10 @@ discard block |
||
| 2151 | 2151 | */ |
| 2152 | 2152 | function geodir_remove_template_redirect_actions() |
| 2153 | 2153 | {
|
| 2154 | - if (geodir_is_page('login')){
|
|
| 2155 | - remove_all_actions('template_redirect');
|
|
| 2156 | - remove_action('init', 'avia_modify_front', 10);
|
|
| 2157 | - } |
|
| 2154 | + if (geodir_is_page('login')){
|
|
| 2155 | + remove_all_actions('template_redirect');
|
|
| 2156 | + remove_action('init', 'avia_modify_front', 10);
|
|
| 2157 | + } |
|
| 2158 | 2158 | } |
| 2159 | 2159 | |
| 2160 | 2160 | |
@@ -2176,51 +2176,51 @@ discard block |
||
| 2176 | 2176 | function geodirectory_before_featured_image_delete($attachment_id) |
| 2177 | 2177 | {
|
| 2178 | 2178 | |
| 2179 | - global $wpdb, $plugin_prefix; |
|
| 2179 | + global $wpdb, $plugin_prefix; |
|
| 2180 | 2180 | |
| 2181 | - $post_id = get_post_field('post_parent', $attachment_id);
|
|
| 2181 | + $post_id = get_post_field('post_parent', $attachment_id);
|
|
| 2182 | 2182 | |
| 2183 | - $attachment_url = wp_get_attachment_url($attachment_id); |
|
| 2183 | + $attachment_url = wp_get_attachment_url($attachment_id); |
|
| 2184 | 2184 | |
| 2185 | - if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
|
|
| 2185 | + if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
|
|
| 2186 | 2186 | |
| 2187 | - $post_type = get_post_type($post_id); |
|
| 2187 | + $post_type = get_post_type($post_id); |
|
| 2188 | 2188 | |
| 2189 | - $all_postypes = geodir_get_posttypes(); |
|
| 2189 | + $all_postypes = geodir_get_posttypes(); |
|
| 2190 | 2190 | |
| 2191 | - if (!in_array($post_type, $all_postypes) || !is_admin()) |
|
| 2192 | - return false; |
|
| 2191 | + if (!in_array($post_type, $all_postypes) || !is_admin()) |
|
| 2192 | + return false; |
|
| 2193 | 2193 | |
| 2194 | - $uploads = wp_upload_dir(); |
|
| 2194 | + $uploads = wp_upload_dir(); |
|
| 2195 | 2195 | |
| 2196 | - $split_img_path = explode($uploads['baseurl'], $attachment_url); |
|
| 2196 | + $split_img_path = explode($uploads['baseurl'], $attachment_url); |
|
| 2197 | 2197 | |
| 2198 | - $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 2198 | + $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 2199 | 2199 | |
| 2200 | - $wpdb->query( |
|
| 2201 | - $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2202 | - array($post_id, $split_img_file_path) |
|
| 2203 | - ) |
|
| 2204 | - ); |
|
| 2200 | + $wpdb->query( |
|
| 2201 | + $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2202 | + array($post_id, $split_img_file_path) |
|
| 2203 | + ) |
|
| 2204 | + ); |
|
| 2205 | 2205 | |
| 2206 | - $attachment_data = $wpdb->get_row( |
|
| 2207 | - $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2208 | - array($post_id) |
|
| 2209 | - ) |
|
| 2210 | - ); |
|
| 2206 | + $attachment_data = $wpdb->get_row( |
|
| 2207 | + $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2208 | + array($post_id) |
|
| 2209 | + ) |
|
| 2210 | + ); |
|
| 2211 | 2211 | |
| 2212 | - if (!empty($attachment_data)) {
|
|
| 2213 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2214 | - } |
|
| 2212 | + if (!empty($attachment_data)) {
|
|
| 2213 | + $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2214 | + } |
|
| 2215 | 2215 | |
| 2216 | 2216 | |
| 2217 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2217 | + $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2218 | 2218 | |
| 2219 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2219 | + $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2220 | 2220 | |
| 2221 | - geodir_set_wp_featured_image($post_id); |
|
| 2221 | + geodir_set_wp_featured_image($post_id); |
|
| 2222 | 2222 | |
| 2223 | - } |
|
| 2223 | + } |
|
| 2224 | 2224 | |
| 2225 | 2225 | } |
| 2226 | 2226 | |
@@ -2238,79 +2238,79 @@ discard block |
||
| 2238 | 2238 | function geodir_temp_set_post_attachment() |
| 2239 | 2239 | {
|
| 2240 | 2240 | |
| 2241 | - global $wpdb, $plugin_prefix; |
|
| 2241 | + global $wpdb, $plugin_prefix; |
|
| 2242 | 2242 | |
| 2243 | - $all_postypes = geodir_get_posttypes(); |
|
| 2243 | + $all_postypes = geodir_get_posttypes(); |
|
| 2244 | 2244 | |
| 2245 | - foreach ($all_postypes as $posttype) {
|
|
| 2245 | + foreach ($all_postypes as $posttype) {
|
|
| 2246 | 2246 | |
| 2247 | - $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2247 | + $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2248 | 2248 | |
| 2249 | - $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2249 | + $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2250 | 2250 | |
| 2251 | - if (!empty($get_post_data)) {
|
|
| 2251 | + if (!empty($get_post_data)) {
|
|
| 2252 | 2252 | |
| 2253 | - foreach ($get_post_data as $data) {
|
|
| 2253 | + foreach ($get_post_data as $data) {
|
|
| 2254 | 2254 | |
| 2255 | - $post_id = $data->post_id; |
|
| 2255 | + $post_id = $data->post_id; |
|
| 2256 | 2256 | |
| 2257 | - $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2257 | + $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2258 | 2258 | |
| 2259 | - if (!empty($attachment_data)) {
|
|
| 2259 | + if (!empty($attachment_data)) {
|
|
| 2260 | 2260 | |
| 2261 | - foreach ($attachment_data as $attach) {
|
|
| 2261 | + foreach ($attachment_data as $attach) {
|
|
| 2262 | 2262 | |
| 2263 | - $file_info = pathinfo($attach->file); |
|
| 2263 | + $file_info = pathinfo($attach->file); |
|
| 2264 | 2264 | |
| 2265 | - $sub_dir = ''; |
|
| 2266 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 2267 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 2265 | + $sub_dir = ''; |
|
| 2266 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 2267 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 2268 | 2268 | |
| 2269 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 2270 | - $uploads_path = $uploads['basedir']; |
|
| 2269 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 2270 | + $uploads_path = $uploads['basedir']; |
|
| 2271 | 2271 | |
| 2272 | - $file_name = $file_info['basename']; |
|
| 2272 | + $file_name = $file_info['basename']; |
|
| 2273 | 2273 | |
| 2274 | - $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2274 | + $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2275 | 2275 | |
| 2276 | - if (!file_exists($img_arr['path'])) {
|
|
| 2276 | + if (!file_exists($img_arr['path'])) {
|
|
| 2277 | 2277 | |
| 2278 | - $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2278 | + $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2279 | 2279 | |
| 2280 | - } |
|
| 2280 | + } |
|
| 2281 | 2281 | |
| 2282 | - } |
|
| 2282 | + } |
|
| 2283 | 2283 | |
| 2284 | - $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2284 | + $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2285 | 2285 | |
| 2286 | - if (!empty($attachment_data)) {
|
|
| 2286 | + if (!empty($attachment_data)) {
|
|
| 2287 | 2287 | |
| 2288 | - if ($attachment_data->ID) |
|
| 2289 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2288 | + if ($attachment_data->ID) |
|
| 2289 | + $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2290 | 2290 | |
| 2291 | - } else {
|
|
| 2291 | + } else {
|
|
| 2292 | 2292 | |
| 2293 | - if (has_post_thumbnail($post_id)) {
|
|
| 2293 | + if (has_post_thumbnail($post_id)) {
|
|
| 2294 | 2294 | |
| 2295 | - $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2295 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2296 | 2296 | |
| 2297 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2297 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2298 | 2298 | |
| 2299 | - } |
|
| 2299 | + } |
|
| 2300 | 2300 | |
| 2301 | - } |
|
| 2301 | + } |
|
| 2302 | 2302 | |
| 2303 | - $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2303 | + $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2304 | 2304 | |
| 2305 | - geodir_set_wp_featured_image($post_id); |
|
| 2305 | + geodir_set_wp_featured_image($post_id); |
|
| 2306 | 2306 | |
| 2307 | - } |
|
| 2307 | + } |
|
| 2308 | 2308 | |
| 2309 | - } |
|
| 2309 | + } |
|
| 2310 | 2310 | |
| 2311 | - } |
|
| 2311 | + } |
|
| 2312 | 2312 | |
| 2313 | - } |
|
| 2313 | + } |
|
| 2314 | 2314 | |
| 2315 | 2315 | } |
| 2316 | 2316 | |
@@ -2328,9 +2328,9 @@ discard block |
||
| 2328 | 2328 | function geodir_default_rating_star_icon() |
| 2329 | 2329 | {
|
| 2330 | 2330 | |
| 2331 | - if (!get_option('geodir_default_rating_star_icon')) {
|
|
| 2332 | - update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2333 | - } |
|
| 2331 | + if (!get_option('geodir_default_rating_star_icon')) {
|
|
| 2332 | + update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2333 | + } |
|
| 2334 | 2334 | |
| 2335 | 2335 | } |
| 2336 | 2336 | |
@@ -2348,27 +2348,27 @@ discard block |
||
| 2348 | 2348 | */ |
| 2349 | 2349 | function geodir_user_post_listing_count($user_id=null) |
| 2350 | 2350 | {
|
| 2351 | - global $wpdb, $plugin_prefix, $current_user; |
|
| 2352 | - if(!$user_id){
|
|
| 2353 | - $user_id = $current_user->ID; |
|
| 2354 | - } |
|
| 2351 | + global $wpdb, $plugin_prefix, $current_user; |
|
| 2352 | + if(!$user_id){
|
|
| 2353 | + $user_id = $current_user->ID; |
|
| 2354 | + } |
|
| 2355 | 2355 | |
| 2356 | - $user_id = $current_user->ID; |
|
| 2357 | - $all_postypes = geodir_get_posttypes(); |
|
| 2358 | - $all_posts = get_option('geodir_listing_link_user_dashboard');
|
|
| 2356 | + $user_id = $current_user->ID; |
|
| 2357 | + $all_postypes = geodir_get_posttypes(); |
|
| 2358 | + $all_posts = get_option('geodir_listing_link_user_dashboard');
|
|
| 2359 | 2359 | |
| 2360 | - $user_listing = array(); |
|
| 2361 | - if (is_array($all_posts) && !empty($all_posts)) {
|
|
| 2362 | - foreach ($all_posts as $ptype) {
|
|
| 2363 | - $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2360 | + $user_listing = array(); |
|
| 2361 | + if (is_array($all_posts) && !empty($all_posts)) {
|
|
| 2362 | + foreach ($all_posts as $ptype) {
|
|
| 2363 | + $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2364 | 2364 | |
| 2365 | - if ($total_posts > 0) {
|
|
| 2366 | - $user_listing[$ptype] = $total_posts; |
|
| 2367 | - } |
|
| 2368 | - } |
|
| 2369 | - } |
|
| 2365 | + if ($total_posts > 0) {
|
|
| 2366 | + $user_listing[$ptype] = $total_posts; |
|
| 2367 | + } |
|
| 2368 | + } |
|
| 2369 | + } |
|
| 2370 | 2370 | |
| 2371 | - return $user_listing; |
|
| 2371 | + return $user_listing; |
|
| 2372 | 2372 | } |
| 2373 | 2373 | |
| 2374 | 2374 | |
@@ -2388,189 +2388,189 @@ discard block |
||
| 2388 | 2388 | */ |
| 2389 | 2389 | function geodir_detail_page_custom_field_tab($tabs_arr) |
| 2390 | 2390 | {
|
| 2391 | - global $post; |
|
| 2392 | - |
|
| 2393 | - $post_type = geodir_get_current_posttype(); |
|
| 2394 | - $all_postypes = geodir_get_posttypes(); |
|
| 2395 | - |
|
| 2396 | - if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
|
|
| 2397 | - $package_info = array(); |
|
| 2398 | - $package_info = geodir_post_package_info($package_info, $post); |
|
| 2399 | - $post_package_id = !empty($package_info->pid) ? $package_info->pid : ''; |
|
| 2400 | - $fields_location = 'owntab'; |
|
| 2401 | - |
|
| 2402 | - $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
|
| 2403 | - //remove video and special offers if it is already set to show |
|
| 2404 | - if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2405 | - $unset_video = true; |
|
| 2406 | - } |
|
| 2407 | - |
|
| 2408 | - if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2409 | - $unset_special_offers = true; |
|
| 2410 | - } |
|
| 2411 | - if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2412 | - foreach($custom_fields as $key => $custom_field){
|
|
| 2413 | - if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2414 | - unset($custom_fields[$key]); |
|
| 2415 | - } |
|
| 2416 | - if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2417 | - unset($custom_fields[$key]); |
|
| 2418 | - } |
|
| 2419 | - } |
|
| 2420 | - } |
|
| 2421 | - |
|
| 2422 | - |
|
| 2423 | - if (!empty($custom_fields)) {
|
|
| 2424 | - $parse_custom_fields = array(); |
|
| 2425 | - foreach ($custom_fields as $field) {
|
|
| 2426 | - $field = stripslashes_deep($field); // strip slashes |
|
| 2427 | - $type = $field; |
|
| 2428 | - $field_name = $field['htmlvar_name']; |
|
| 2429 | - if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2430 | - $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2431 | - } |
|
| 2391 | + global $post; |
|
| 2432 | 2392 | |
| 2433 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2434 | - if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2435 | - continue; |
|
| 2436 | - } |
|
| 2393 | + $post_type = geodir_get_current_posttype(); |
|
| 2394 | + $all_postypes = geodir_get_posttypes(); |
|
| 2437 | 2395 | |
| 2438 | - $parse_custom_fields[] = $field; |
|
| 2439 | - } |
|
| 2440 | - } |
|
| 2441 | - $custom_fields = $parse_custom_fields; |
|
| 2442 | - } |
|
| 2443 | - //print_r($custom_fields); |
|
| 2444 | - if (!empty($custom_fields)) {
|
|
| 2396 | + if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
|
|
| 2397 | + $package_info = array(); |
|
| 2398 | + $package_info = geodir_post_package_info($package_info, $post); |
|
| 2399 | + $post_package_id = !empty($package_info->pid) ? $package_info->pid : ''; |
|
| 2400 | + $fields_location = 'owntab'; |
|
| 2445 | 2401 | |
| 2446 | - global $field_set_start; |
|
| 2402 | + $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
|
| 2403 | + //remove video and special offers if it is already set to show |
|
| 2404 | + if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2405 | + $unset_video = true; |
|
| 2406 | + } |
|
| 2447 | 2407 | |
| 2448 | - $post = stripslashes_deep($post); // strip slashes |
|
| 2449 | - |
|
| 2450 | - $field_set_start = 0; |
|
| 2451 | - $fieldset_count = 0; |
|
| 2452 | - $fieldset = ''; |
|
| 2453 | - $total_fields = count($custom_fields); |
|
| 2454 | - $count_field = 0; |
|
| 2455 | - $fieldset_arr = array(); |
|
| 2456 | - $i = 0; |
|
| 2457 | - $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL; |
|
| 2458 | - |
|
| 2459 | - foreach ($custom_fields as $field) {
|
|
| 2460 | - $count_field++; |
|
| 2461 | - $field_name = $field['htmlvar_name']; |
|
| 2462 | - if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2463 | - $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2464 | - } |
|
| 2408 | + if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2409 | + $unset_special_offers = true; |
|
| 2410 | + } |
|
| 2411 | + if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2412 | + foreach($custom_fields as $key => $custom_field){
|
|
| 2413 | + if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2414 | + unset($custom_fields[$key]); |
|
| 2415 | + } |
|
| 2416 | + if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2417 | + unset($custom_fields[$key]); |
|
| 2418 | + } |
|
| 2419 | + } |
|
| 2420 | + } |
|
| 2465 | 2421 | |
| 2466 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2467 | - $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title']; |
|
| 2468 | - $site_title = trim($field['site_title']); |
|
| 2469 | - $type = $field; |
|
| 2470 | - $variables_array = array(); |
|
| 2471 | 2422 | |
| 2472 | - if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2473 | - continue; |
|
| 2474 | - } |
|
| 2423 | + if (!empty($custom_fields)) {
|
|
| 2424 | + $parse_custom_fields = array(); |
|
| 2425 | + foreach ($custom_fields as $field) {
|
|
| 2426 | + $field = stripslashes_deep($field); // strip slashes |
|
| 2427 | + $type = $field; |
|
| 2428 | + $field_name = $field['htmlvar_name']; |
|
| 2429 | + if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2430 | + $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2431 | + } |
|
| 2475 | 2432 | |
| 2476 | - if ($type['type'] != 'fieldset') {
|
|
| 2477 | - $i++; |
|
| 2478 | - $variables_array['post_id'] = $post->ID; |
|
| 2479 | - $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
|
| 2480 | - $variables_array['value'] = ''; |
|
| 2481 | - $variables_array['value'] = $post->{$type['htmlvar_name']};
|
|
| 2482 | - }else{
|
|
| 2483 | - $i = 0; |
|
| 2484 | - $fieldset_count++; |
|
| 2485 | - $field_set_start = 1; |
|
| 2486 | - $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2487 | - $fieldset_arr[$fieldset_count]['label'] = $label; |
|
| 2488 | - } |
|
| 2433 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2434 | + if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2435 | + continue; |
|
| 2436 | + } |
|
| 2489 | 2437 | |
| 2438 | + $parse_custom_fields[] = $field; |
|
| 2439 | + } |
|
| 2440 | + } |
|
| 2441 | + $custom_fields = $parse_custom_fields; |
|
| 2442 | + } |
|
| 2443 | + //print_r($custom_fields); |
|
| 2444 | + if (!empty($custom_fields)) {
|
|
| 2490 | 2445 | |
| 2491 | - if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2492 | - $type = stripslashes_deep($type); // strip slashes |
|
| 2493 | - if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2494 | - $html = ''; |
|
| 2495 | - $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
|
| 2496 | - if($html_var=='post'){$html_var='post_address';}
|
|
| 2497 | - $field_icon = geodir_field_icon_proccess($type); |
|
| 2498 | - $filed_type = $type['type']; |
|
| 2499 | - |
|
| 2500 | - /** |
|
| 2501 | - * Filter the output for custom fields. |
|
| 2502 | - * |
|
| 2503 | - * Here we can remove or add new functions depending on the field type. |
|
| 2504 | - * |
|
| 2505 | - * @param string $html The html to be filtered (blank). |
|
| 2506 | - * @param string $fields_location The location the field is to be show. |
|
| 2507 | - * @param array $type The array of field values. |
|
| 2508 | - */ |
|
| 2509 | - $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2510 | - |
|
| 2511 | - |
|
| 2512 | - /** |
|
| 2513 | - * Filter custom field output in tab. |
|
| 2514 | - * |
|
| 2515 | - * @since 1.5.6 |
|
| 2516 | - * |
|
| 2517 | - * @param string $html_var The HTML variable name for the field. |
|
| 2518 | - * @param string $html Custom field unfiltered HTML. |
|
| 2519 | - * @param array $variables_array Custom field variables array. |
|
| 2520 | - */ |
|
| 2521 | - $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
|
|
| 2522 | - |
|
| 2523 | - $fieldset_html = ''; |
|
| 2524 | - if ($field_set_start == 1) {
|
|
| 2525 | - $add_html = false; |
|
| 2526 | - if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
|
|
| 2527 | - if ($fieldset != '') {
|
|
| 2528 | - $add_html = true; |
|
| 2529 | - $label = $fieldset_arr[$fieldset_count - 1]['label']; |
|
| 2530 | - $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name']; |
|
| 2531 | - } |
|
| 2532 | - $fieldset_html = $fieldset; |
|
| 2533 | - $fieldset = ''; |
|
| 2534 | - } else {
|
|
| 2535 | - $fieldset .= $html; |
|
| 2536 | - if ($total_fields == $count_field && $fieldset != '') {
|
|
| 2537 | - $add_html = true; |
|
| 2538 | - $label = $fieldset_arr[$fieldset_count]['label']; |
|
| 2539 | - $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name']; |
|
| 2540 | - $fieldset_html = $fieldset; |
|
| 2541 | - } |
|
| 2542 | - } |
|
| 2446 | + global $field_set_start; |
|
| 2543 | 2447 | |
| 2544 | - if ($add_html) {
|
|
| 2545 | - $tabs_arr[$htmlvar_name] = array( |
|
| 2546 | - 'heading_text' => __($label, 'geodirectory'), |
|
| 2547 | - 'is_active_tab' => false, |
|
| 2548 | - /** |
|
| 2549 | - * Filter if a custom field should be displayed on the details page tab. |
|
| 2550 | - * |
|
| 2551 | - * @since 1.0.0 |
|
| 2552 | - * @param string $htmlvar_name The field HTML var name. |
|
| 2553 | - */ |
|
| 2554 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
|
| 2555 | - 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2556 | - ); |
|
| 2557 | - } |
|
| 2558 | - } else {
|
|
| 2559 | - if ($html != '') {
|
|
| 2560 | - $tabs_arr[$html_var] = array( |
|
| 2561 | - 'heading_text' => __($label, 'geodirectory'), |
|
| 2562 | - 'is_active_tab' => false, |
|
| 2563 | - /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 2564 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
|
|
| 2565 | - 'tab_content' => $html |
|
| 2566 | - ); |
|
| 2567 | - } |
|
| 2568 | - } |
|
| 2569 | - } |
|
| 2570 | - } |
|
| 2571 | - } |
|
| 2572 | - } |
|
| 2573 | - return $tabs_arr; |
|
| 2448 | + $post = stripslashes_deep($post); // strip slashes |
|
| 2449 | + |
|
| 2450 | + $field_set_start = 0; |
|
| 2451 | + $fieldset_count = 0; |
|
| 2452 | + $fieldset = ''; |
|
| 2453 | + $total_fields = count($custom_fields); |
|
| 2454 | + $count_field = 0; |
|
| 2455 | + $fieldset_arr = array(); |
|
| 2456 | + $i = 0; |
|
| 2457 | + $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL; |
|
| 2458 | + |
|
| 2459 | + foreach ($custom_fields as $field) {
|
|
| 2460 | + $count_field++; |
|
| 2461 | + $field_name = $field['htmlvar_name']; |
|
| 2462 | + if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2463 | + $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2464 | + } |
|
| 2465 | + |
|
| 2466 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2467 | + $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title']; |
|
| 2468 | + $site_title = trim($field['site_title']); |
|
| 2469 | + $type = $field; |
|
| 2470 | + $variables_array = array(); |
|
| 2471 | + |
|
| 2472 | + if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2473 | + continue; |
|
| 2474 | + } |
|
| 2475 | + |
|
| 2476 | + if ($type['type'] != 'fieldset') {
|
|
| 2477 | + $i++; |
|
| 2478 | + $variables_array['post_id'] = $post->ID; |
|
| 2479 | + $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
|
| 2480 | + $variables_array['value'] = ''; |
|
| 2481 | + $variables_array['value'] = $post->{$type['htmlvar_name']};
|
|
| 2482 | + }else{
|
|
| 2483 | + $i = 0; |
|
| 2484 | + $fieldset_count++; |
|
| 2485 | + $field_set_start = 1; |
|
| 2486 | + $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2487 | + $fieldset_arr[$fieldset_count]['label'] = $label; |
|
| 2488 | + } |
|
| 2489 | + |
|
| 2490 | + |
|
| 2491 | + if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2492 | + $type = stripslashes_deep($type); // strip slashes |
|
| 2493 | + if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2494 | + $html = ''; |
|
| 2495 | + $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
|
| 2496 | + if($html_var=='post'){$html_var='post_address';}
|
|
| 2497 | + $field_icon = geodir_field_icon_proccess($type); |
|
| 2498 | + $filed_type = $type['type']; |
|
| 2499 | + |
|
| 2500 | + /** |
|
| 2501 | + * Filter the output for custom fields. |
|
| 2502 | + * |
|
| 2503 | + * Here we can remove or add new functions depending on the field type. |
|
| 2504 | + * |
|
| 2505 | + * @param string $html The html to be filtered (blank). |
|
| 2506 | + * @param string $fields_location The location the field is to be show. |
|
| 2507 | + * @param array $type The array of field values. |
|
| 2508 | + */ |
|
| 2509 | + $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2510 | + |
|
| 2511 | + |
|
| 2512 | + /** |
|
| 2513 | + * Filter custom field output in tab. |
|
| 2514 | + * |
|
| 2515 | + * @since 1.5.6 |
|
| 2516 | + * |
|
| 2517 | + * @param string $html_var The HTML variable name for the field. |
|
| 2518 | + * @param string $html Custom field unfiltered HTML. |
|
| 2519 | + * @param array $variables_array Custom field variables array. |
|
| 2520 | + */ |
|
| 2521 | + $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
|
|
| 2522 | + |
|
| 2523 | + $fieldset_html = ''; |
|
| 2524 | + if ($field_set_start == 1) {
|
|
| 2525 | + $add_html = false; |
|
| 2526 | + if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
|
|
| 2527 | + if ($fieldset != '') {
|
|
| 2528 | + $add_html = true; |
|
| 2529 | + $label = $fieldset_arr[$fieldset_count - 1]['label']; |
|
| 2530 | + $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name']; |
|
| 2531 | + } |
|
| 2532 | + $fieldset_html = $fieldset; |
|
| 2533 | + $fieldset = ''; |
|
| 2534 | + } else {
|
|
| 2535 | + $fieldset .= $html; |
|
| 2536 | + if ($total_fields == $count_field && $fieldset != '') {
|
|
| 2537 | + $add_html = true; |
|
| 2538 | + $label = $fieldset_arr[$fieldset_count]['label']; |
|
| 2539 | + $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name']; |
|
| 2540 | + $fieldset_html = $fieldset; |
|
| 2541 | + } |
|
| 2542 | + } |
|
| 2543 | + |
|
| 2544 | + if ($add_html) {
|
|
| 2545 | + $tabs_arr[$htmlvar_name] = array( |
|
| 2546 | + 'heading_text' => __($label, 'geodirectory'), |
|
| 2547 | + 'is_active_tab' => false, |
|
| 2548 | + /** |
|
| 2549 | + * Filter if a custom field should be displayed on the details page tab. |
|
| 2550 | + * |
|
| 2551 | + * @since 1.0.0 |
|
| 2552 | + * @param string $htmlvar_name The field HTML var name. |
|
| 2553 | + */ |
|
| 2554 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
|
| 2555 | + 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2556 | + ); |
|
| 2557 | + } |
|
| 2558 | + } else {
|
|
| 2559 | + if ($html != '') {
|
|
| 2560 | + $tabs_arr[$html_var] = array( |
|
| 2561 | + 'heading_text' => __($label, 'geodirectory'), |
|
| 2562 | + 'is_active_tab' => false, |
|
| 2563 | + /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 2564 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
|
|
| 2565 | + 'tab_content' => $html |
|
| 2566 | + ); |
|
| 2567 | + } |
|
| 2568 | + } |
|
| 2569 | + } |
|
| 2570 | + } |
|
| 2571 | + } |
|
| 2572 | + } |
|
| 2573 | + return $tabs_arr; |
|
| 2574 | 2574 | } |
| 2575 | 2575 | |
| 2576 | 2576 | /* display add listing page for wpml */ |
@@ -2594,39 +2594,39 @@ discard block |
||
| 2594 | 2594 | */ |
| 2595 | 2595 | function geodir_add_post_status_author_page() |
| 2596 | 2596 | {
|
| 2597 | - global $wpdb, $post; |
|
| 2598 | - |
|
| 2599 | - $html = ''; |
|
| 2600 | - if (get_current_user_id()) {
|
|
| 2601 | - |
|
| 2602 | - $is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
|
|
| 2603 | - if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
|
|
| 2604 | - |
|
| 2605 | - // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them. |
|
| 2606 | - $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
|
|
| 2607 | - $status = "<strong>(";
|
|
| 2608 | - $status_icon = '<i class="fa fa-play"></i>'; |
|
| 2609 | - if ($real_status == 'publish') {
|
|
| 2610 | - $status .= __('Published', 'geodirectory');
|
|
| 2611 | - } else {
|
|
| 2612 | - $status .= __('Not published', 'geodirectory');
|
|
| 2613 | - $status_icon = '<i class="fa fa-pause"></i>'; |
|
| 2614 | - } |
|
| 2615 | - $status .= ")</strong>"; |
|
| 2597 | + global $wpdb, $post; |
|
| 2598 | + |
|
| 2599 | + $html = ''; |
|
| 2600 | + if (get_current_user_id()) {
|
|
| 2601 | + |
|
| 2602 | + $is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
|
|
| 2603 | + if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
|
|
| 2604 | + |
|
| 2605 | + // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them. |
|
| 2606 | + $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
|
|
| 2607 | + $status = "<strong>(";
|
|
| 2608 | + $status_icon = '<i class="fa fa-play"></i>'; |
|
| 2609 | + if ($real_status == 'publish') {
|
|
| 2610 | + $status .= __('Published', 'geodirectory');
|
|
| 2611 | + } else {
|
|
| 2612 | + $status .= __('Not published', 'geodirectory');
|
|
| 2613 | + $status_icon = '<i class="fa fa-pause"></i>'; |
|
| 2614 | + } |
|
| 2615 | + $status .= ")</strong>"; |
|
| 2616 | 2616 | |
| 2617 | - $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2618 | - } |
|
| 2619 | - } |
|
| 2617 | + $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2618 | + } |
|
| 2619 | + } |
|
| 2620 | 2620 | |
| 2621 | - if ($html != '') {
|
|
| 2622 | - /** |
|
| 2623 | - * Filter the post status text on the author page. |
|
| 2624 | - * |
|
| 2625 | - * @since 1.0.0 |
|
| 2626 | - * @param string $html The HTML of the status. |
|
| 2627 | - */ |
|
| 2628 | - echo apply_filters('geodir_filter_status_text_on_author_page', $html);
|
|
| 2629 | - } |
|
| 2621 | + if ($html != '') {
|
|
| 2622 | + /** |
|
| 2623 | + * Filter the post status text on the author page. |
|
| 2624 | + * |
|
| 2625 | + * @since 1.0.0 |
|
| 2626 | + * @param string $html The HTML of the status. |
|
| 2627 | + */ |
|
| 2628 | + echo apply_filters('geodir_filter_status_text_on_author_page', $html);
|
|
| 2629 | + } |
|
| 2630 | 2630 | |
| 2631 | 2631 | |
| 2632 | 2632 | } |
@@ -2640,9 +2640,9 @@ discard block |
||
| 2640 | 2640 | * @package GeoDirectory |
| 2641 | 2641 | */ |
| 2642 | 2642 | function geodir_init_no_rating() {
|
| 2643 | - if (geodir_rating_disabled_post_types()) {
|
|
| 2644 | - add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
|
|
| 2645 | - } |
|
| 2643 | + if (geodir_rating_disabled_post_types()) {
|
|
| 2644 | + add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
|
|
| 2645 | + } |
|
| 2646 | 2646 | } |
| 2647 | 2647 | |
| 2648 | 2648 | /** |
@@ -2656,22 +2656,22 @@ discard block |
||
| 2656 | 2656 | * @return array Modified sort options array. |
| 2657 | 2657 | */ |
| 2658 | 2658 | function geodir_no_rating_get_sort_options($options, $post_type = '') {
|
| 2659 | - if (!empty($post_type) && geodir_cpt_has_rating_disabled($post_type)) {
|
|
| 2660 | - $new_options = array(); |
|
| 2659 | + if (!empty($post_type) && geodir_cpt_has_rating_disabled($post_type)) {
|
|
| 2660 | + $new_options = array(); |
|
| 2661 | 2661 | |
| 2662 | - if (!empty($options)) {
|
|
| 2663 | - foreach ($options as $option) {
|
|
| 2664 | - if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
|
|
| 2665 | - continue; |
|
| 2666 | - } |
|
| 2667 | - $new_options[] = $option; |
|
| 2668 | - } |
|
| 2662 | + if (!empty($options)) {
|
|
| 2663 | + foreach ($options as $option) {
|
|
| 2664 | + if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
|
|
| 2665 | + continue; |
|
| 2666 | + } |
|
| 2667 | + $new_options[] = $option; |
|
| 2668 | + } |
|
| 2669 | 2669 | |
| 2670 | - $options = $new_options; |
|
| 2671 | - } |
|
| 2672 | - } |
|
| 2670 | + $options = $new_options; |
|
| 2671 | + } |
|
| 2672 | + } |
|
| 2673 | 2673 | |
| 2674 | - return $options; |
|
| 2674 | + return $options; |
|
| 2675 | 2675 | } |
| 2676 | 2676 | |
| 2677 | 2677 | /** |
@@ -2683,9 +2683,9 @@ discard block |
||
| 2683 | 2683 | * @return array Modified class array. |
| 2684 | 2684 | */ |
| 2685 | 2685 | function geodir_body_class_active_map($classes = array()) {
|
| 2686 | - $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2686 | + $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2687 | 2687 | |
| 2688 | - return $classes; |
|
| 2688 | + return $classes; |
|
| 2689 | 2689 | } |
| 2690 | 2690 | add_filter('body_class', 'geodir_body_class_active_map', 100);
|
| 2691 | 2691 | |
@@ -2698,9 +2698,9 @@ discard block |
||
| 2698 | 2698 | * @return string Modified class string. |
| 2699 | 2699 | */ |
| 2700 | 2700 | function geodir_admin_body_class_active_map($class = '') {
|
| 2701 | - $class .= ' gd-map-' . geodir_map_name(); |
|
| 2701 | + $class .= ' gd-map-' . geodir_map_name(); |
|
| 2702 | 2702 | |
| 2703 | - return $class; |
|
| 2703 | + return $class; |
|
| 2704 | 2704 | } |
| 2705 | 2705 | add_filter('admin_body_class', 'geodir_admin_body_class_active_map', 100);
|
| 2706 | 2706 | |
@@ -2718,36 +2718,36 @@ discard block |
||
| 2718 | 2718 | * @return array Translation texts. |
| 2719 | 2719 | */ |
| 2720 | 2720 | function geodir_load_gd_options_text_translation($translation_texts = array()) {
|
| 2721 | - $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2722 | - |
|
| 2723 | - $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
|
| 2724 | - |
|
| 2725 | - /** |
|
| 2726 | - * Filters the geodirectory option names that requires to add for translation. |
|
| 2727 | - * |
|
| 2728 | - * @since 1.5.7 |
|
| 2729 | - * @package GeoDirectory |
|
| 2730 | - * |
|
| 2731 | - * @param array $gd_options Array of option names. |
|
| 2732 | - */ |
|
| 2733 | - $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
|
|
| 2734 | - $gd_options = array_unique($gd_options); |
|
| 2735 | - |
|
| 2736 | - if (!empty($gd_options)) {
|
|
| 2737 | - foreach ($gd_options as $gd_option) {
|
|
| 2738 | - if ($gd_option != '' && $option_value = get_option($gd_option)) {
|
|
| 2739 | - $option_value = is_string($option_value) ? stripslashes_deep($option_value) : ''; |
|
| 2721 | + $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2722 | + |
|
| 2723 | + $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
|
| 2724 | + |
|
| 2725 | + /** |
|
| 2726 | + * Filters the geodirectory option names that requires to add for translation. |
|
| 2727 | + * |
|
| 2728 | + * @since 1.5.7 |
|
| 2729 | + * @package GeoDirectory |
|
| 2730 | + * |
|
| 2731 | + * @param array $gd_options Array of option names. |
|
| 2732 | + */ |
|
| 2733 | + $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
|
|
| 2734 | + $gd_options = array_unique($gd_options); |
|
| 2735 | + |
|
| 2736 | + if (!empty($gd_options)) {
|
|
| 2737 | + foreach ($gd_options as $gd_option) {
|
|
| 2738 | + if ($gd_option != '' && $option_value = get_option($gd_option)) {
|
|
| 2739 | + $option_value = is_string($option_value) ? stripslashes_deep($option_value) : ''; |
|
| 2740 | 2740 | |
| 2741 | - if ($option_value != '' && !in_array($option_value, $translation_texts)) {
|
|
| 2742 | - $translation_texts[] = stripslashes_deep($option_value); |
|
| 2743 | - } |
|
| 2744 | - } |
|
| 2745 | - } |
|
| 2746 | - } |
|
| 2741 | + if ($option_value != '' && !in_array($option_value, $translation_texts)) {
|
|
| 2742 | + $translation_texts[] = stripslashes_deep($option_value); |
|
| 2743 | + } |
|
| 2744 | + } |
|
| 2745 | + } |
|
| 2746 | + } |
|
| 2747 | 2747 | |
| 2748 | - $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 2748 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 2749 | 2749 | |
| 2750 | - return $translation_texts; |
|
| 2750 | + return $translation_texts; |
|
| 2751 | 2751 | } |
| 2752 | 2752 | |
| 2753 | 2753 | add_filter('geodir_load_db_language', 'geodir_load_gd_options_text_translation');
|
@@ -2761,15 +2761,15 @@ discard block |
||
| 2761 | 2761 | |
| 2762 | 2762 | add_filter('get_comments_link', 'gd_get_comments_link', 10, 2);
|
| 2763 | 2763 | function gd_get_comments_link($comments_link, $post_id) {
|
| 2764 | - $post_type = get_post_type($post_id); |
|
| 2764 | + $post_type = get_post_type($post_id); |
|
| 2765 | 2765 | |
| 2766 | - $all_postypes = geodir_get_posttypes(); |
|
| 2767 | - if (in_array($post_type, $all_postypes)) {
|
|
| 2768 | - $comments_link = str_replace('#comments', '#reviews', $comments_link);
|
|
| 2769 | - $comments_link = str_replace('#respond', '#reviews', $comments_link);
|
|
| 2770 | - } |
|
| 2766 | + $all_postypes = geodir_get_posttypes(); |
|
| 2767 | + if (in_array($post_type, $all_postypes)) {
|
|
| 2768 | + $comments_link = str_replace('#comments', '#reviews', $comments_link);
|
|
| 2769 | + $comments_link = str_replace('#respond', '#reviews', $comments_link);
|
|
| 2770 | + } |
|
| 2771 | 2771 | |
| 2772 | - return $comments_link; |
|
| 2772 | + return $comments_link; |
|
| 2773 | 2773 | } |
| 2774 | 2774 | |
| 2775 | 2775 | |
@@ -2787,11 +2787,11 @@ discard block |
||
| 2787 | 2787 | function geodir_add_nav_menu_class( $args ) |
| 2788 | 2788 | {
|
| 2789 | 2789 | |
| 2790 | - if(isset($args['menu_class'])){
|
|
| 2791 | - $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
|
| 2792 | - } |
|
| 2790 | + if(isset($args['menu_class'])){
|
|
| 2791 | + $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
|
| 2792 | + } |
|
| 2793 | 2793 | |
| 2794 | - return $args; |
|
| 2794 | + return $args; |
|
| 2795 | 2795 | } |
| 2796 | 2796 | |
| 2797 | 2797 | add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' ); |
@@ -2808,15 +2808,15 @@ discard block |
||
| 2808 | 2808 | * @return string Filtered locale ID. |
| 2809 | 2809 | */ |
| 2810 | 2810 | function geodir_wpml_filter_locale($locale) {
|
| 2811 | - global $sitepress; |
|
| 2811 | + global $sitepress; |
|
| 2812 | 2812 | |
| 2813 | - $post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : ''); |
|
| 2813 | + $post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : ''); |
|
| 2814 | 2814 | |
| 2815 | - if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
|
|
| 2816 | - $locale = $sitepress->get_locale($current_lang); |
|
| 2817 | - } |
|
| 2815 | + if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
|
|
| 2816 | + $locale = $sitepress->get_locale($current_lang); |
|
| 2817 | + } |
|
| 2818 | 2818 | |
| 2819 | - return $locale; |
|
| 2819 | + return $locale; |
|
| 2820 | 2820 | } |
| 2821 | 2821 | |
| 2822 | 2822 | /** |
@@ -2826,15 +2826,15 @@ discard block |
||
| 2826 | 2826 | * @package GeoDirectory |
| 2827 | 2827 | */ |
| 2828 | 2828 | function geodir_wpml_set_filter() {
|
| 2829 | - if (function_exists('icl_object_id')) {
|
|
| 2830 | - global $sitepress; |
|
| 2829 | + if (function_exists('icl_object_id')) {
|
|
| 2830 | + global $sitepress; |
|
| 2831 | 2831 | |
| 2832 | - if ($sitepress->get_setting('sync_comments_on_duplicates')) {
|
|
| 2833 | - add_action('comment_post', 'gepdir_wpml_sync_comment', 100, 1);
|
|
| 2834 | - } |
|
| 2832 | + if ($sitepress->get_setting('sync_comments_on_duplicates')) {
|
|
| 2833 | + add_action('comment_post', 'gepdir_wpml_sync_comment', 100, 1);
|
|
| 2834 | + } |
|
| 2835 | 2835 | |
| 2836 | - add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
|
|
| 2837 | - } |
|
| 2836 | + add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
|
|
| 2837 | + } |
|
| 2838 | 2838 | } |
| 2839 | 2839 | add_filter('plugins_loaded', 'geodir_wpml_set_filter');
|
| 2840 | 2840 | |
@@ -2847,37 +2847,37 @@ discard block |
||
| 2847 | 2847 | * @return array Filtered languages. |
| 2848 | 2848 | */ |
| 2849 | 2849 | function geodir_wpml_filter_ls_languages($languages) {
|
| 2850 | - if (geodir_is_geodir_page()) {
|
|
| 2851 | - $keep_vars = array(); |
|
| 2850 | + if (geodir_is_geodir_page()) {
|
|
| 2851 | + $keep_vars = array(); |
|
| 2852 | 2852 | |
| 2853 | - if (geodir_is_page('add-listing')) {
|
|
| 2854 | - $keep_vars = array('listing_type', 'package_id');
|
|
| 2855 | - } else if (geodir_is_page('search')) {
|
|
| 2856 | - $keep_vars = array('geodir_search', 'stype', 'snear', 'set_location_type', 'set_location_val', 'sgeo_lat', 'sgeo_lon');
|
|
| 2857 | - } else if (geodir_is_page('author')) {
|
|
| 2858 | - $keep_vars = array('geodir_dashbord', 'stype', 'list');
|
|
| 2859 | - } else if (geodir_is_page('login')) {
|
|
| 2860 | - $keep_vars = array('forgot', 'signup');
|
|
| 2861 | - } |
|
| 2853 | + if (geodir_is_page('add-listing')) {
|
|
| 2854 | + $keep_vars = array('listing_type', 'package_id');
|
|
| 2855 | + } else if (geodir_is_page('search')) {
|
|
| 2856 | + $keep_vars = array('geodir_search', 'stype', 'snear', 'set_location_type', 'set_location_val', 'sgeo_lat', 'sgeo_lon');
|
|
| 2857 | + } else if (geodir_is_page('author')) {
|
|
| 2858 | + $keep_vars = array('geodir_dashbord', 'stype', 'list');
|
|
| 2859 | + } else if (geodir_is_page('login')) {
|
|
| 2860 | + $keep_vars = array('forgot', 'signup');
|
|
| 2861 | + } |
|
| 2862 | 2862 | |
| 2863 | - if (!empty($keep_vars)) {
|
|
| 2864 | - foreach ( $languages as $code => $url) {
|
|
| 2865 | - $filter_url = $url['url']; |
|
| 2863 | + if (!empty($keep_vars)) {
|
|
| 2864 | + foreach ( $languages as $code => $url) {
|
|
| 2865 | + $filter_url = $url['url']; |
|
| 2866 | 2866 | |
| 2867 | - foreach ($keep_vars as $var) {
|
|
| 2868 | - if (isset($_GET[$var]) && !is_array($_GET[$var])) {
|
|
| 2869 | - $filter_url = remove_query_arg(array($var), $filter_url); |
|
| 2870 | - $filter_url = add_query_arg(array($var => $_GET[$var]), $filter_url); |
|
| 2871 | - } |
|
| 2872 | - } |
|
| 2867 | + foreach ($keep_vars as $var) {
|
|
| 2868 | + if (isset($_GET[$var]) && !is_array($_GET[$var])) {
|
|
| 2869 | + $filter_url = remove_query_arg(array($var), $filter_url); |
|
| 2870 | + $filter_url = add_query_arg(array($var => $_GET[$var]), $filter_url); |
|
| 2871 | + } |
|
| 2872 | + } |
|
| 2873 | 2873 | |
| 2874 | - if ($filter_url != $url['url']) {
|
|
| 2875 | - $languages[$code]['url'] = $filter_url; |
|
| 2876 | - } |
|
| 2877 | - } |
|
| 2878 | - } |
|
| 2879 | - } |
|
| 2874 | + if ($filter_url != $url['url']) {
|
|
| 2875 | + $languages[$code]['url'] = $filter_url; |
|
| 2876 | + } |
|
| 2877 | + } |
|
| 2878 | + } |
|
| 2879 | + } |
|
| 2880 | 2880 | |
| 2881 | - return $languages; |
|
| 2881 | + return $languages; |
|
| 2882 | 2882 | } |
| 2883 | 2883 | add_filter( 'icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1 ); |
| 2884 | 2884 | \ No newline at end of file |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | /* ON TEMPLATE INCLUDE */ |
| 137 | 137 | ///////////////////////// |
| 138 | 138 | |
| 139 | -add_filter('template_include', 'geodir_template_loader',9);
|
|
| 139 | +add_filter('template_include', 'geodir_template_loader', 9);
|
|
| 140 | 140 | |
| 141 | 141 | ///////////////////////// |
| 142 | 142 | /* CATEGORY / TAXONOMY / CUSTOM POST ACTIONS */ |
@@ -176,9 +176,9 @@ discard block |
||
| 176 | 176 | /* WP REVIEW COUNT ACTIONS */ |
| 177 | 177 | //////////////////////// |
| 178 | 178 | |
| 179 | -add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100,1);
|
|
| 179 | +add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100, 1);
|
|
| 180 | 180 | //add_action('geodir_update_postrating', 'geodir_term_review_count_force_update', 100);
|
| 181 | -add_action('transition_post_status', 'geodir_term_review_count_force_update', 100,3);
|
|
| 181 | +add_action('transition_post_status', 'geodir_term_review_count_force_update', 100, 3);
|
|
| 182 | 182 | //add_action('created_term', 'geodir_term_review_count_force_update', 100);
|
| 183 | 183 | add_action('edited_term', 'geodir_term_review_count_force_update', 100);
|
| 184 | 184 | add_action('delete_term', 'geodir_term_review_count_force_update', 100);
|
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | function geodir_unset_prev_theme_nav_location($newname) |
| 224 | 224 | {
|
| 225 | - $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 225 | + $geodir_theme_location = get_option('geodir_theme_location_nav_'.$newname);
|
|
| 226 | 226 | if ($geodir_theme_location) {
|
| 227 | 227 | update_option('geodir_theme_location_nav', $geodir_theme_location);
|
| 228 | 228 | } else {
|
@@ -320,8 +320,8 @@ discard block |
||
| 320 | 320 | |
| 321 | 321 | /////// GEO DIRECOTORY CUSTOM HOOKS /// |
| 322 | 322 | |
| 323 | -add_action('geodir_before_tab_content', 'geodir_before_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 324 | -add_action('geodir_after_tab_content', 'geodir_after_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 323 | +add_action('geodir_before_tab_content', 'geodir_before_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 324 | +add_action('geodir_after_tab_content', 'geodir_after_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 325 | 325 | |
| 326 | 326 | // Detail page sidebar content |
| 327 | 327 | add_action('geodir_detail_page_sidebar', 'geodir_detail_page_sidebar_content_sorting', 1);
|
@@ -421,8 +421,8 @@ discard block |
||
| 421 | 421 | do_action('geodir_after_social_sharing_buttons');
|
| 422 | 422 | $content_html = ob_get_clean(); |
| 423 | 423 | if (trim($content_html) != '') |
| 424 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | - if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 424 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">'.$content_html.'</div>'; |
|
| 425 | + if ((int) get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | 426 | /** |
| 427 | 427 | * Filter the geodir_social_sharing_buttons() function content. |
| 428 | 428 | * |
@@ -462,12 +462,12 @@ discard block |
||
| 462 | 462 | $post_id = $post->ID; |
| 463 | 463 | |
| 464 | 464 | if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
| 465 | - $post_id = (int)$_REQUEST['pid']; |
|
| 465 | + $post_id = (int) $_REQUEST['pid']; |
|
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | $postlink = get_permalink(geodir_add_listing_page_id()); |
| 469 | 469 | $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
| 470 | - echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 470 | + echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="'.esc_url($editlink).'">'.__('Edit this Post', 'geodirectory').'</a></p>';
|
|
| 471 | 471 | } |
| 472 | 472 | }// end of if, if its a preview or not |
| 473 | 473 | /** |
@@ -478,8 +478,8 @@ discard block |
||
| 478 | 478 | do_action('geodir_after_edit_post_link');
|
| 479 | 479 | $content_html = ob_get_clean(); |
| 480 | 480 | if (trim($content_html) != '') |
| 481 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | - if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 481 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">'.$content_html.'</div>'; |
|
| 482 | + if ((int) get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | 483 | /** |
| 484 | 484 | * Filter the geodir_edit_post_link() function content. |
| 485 | 485 | * |
@@ -500,8 +500,8 @@ discard block |
||
| 500 | 500 | */ |
| 501 | 501 | function geodir_detail_page_google_analytics() |
| 502 | 502 | {
|
| 503 | - global $post,$preview; |
|
| 504 | - if($preview){return '';}
|
|
| 503 | + global $post, $preview; |
|
| 504 | + if ($preview) {return ''; }
|
|
| 505 | 505 | $package_info = array(); |
| 506 | 506 | $package_info = geodir_post_package_info($package_info, $post); |
| 507 | 507 | |
@@ -533,14 +533,14 @@ discard block |
||
| 533 | 533 | $hide_refresh = get_option('geodir_ga_auto_refresh');
|
| 534 | 534 | |
| 535 | 535 | $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
| 536 | - if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 536 | + if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id() == $post->post_author || current_user_can('manage_options'))) {
|
|
| 537 | 537 | $page_url = urlencode($_SERVER['REQUEST_URI']); |
| 538 | 538 | ?> |
| 539 | 539 | <script type="text/javascript"> |
| 540 | 540 | var gd_gaTimeOut; |
| 541 | - var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
|
|
| 542 | - var gd_gaHideRefresh = <?php echo (int)$hide_refresh;?>; |
|
| 543 | - var gd_gaAutoRefresh = <?php echo $auto_refresh;?>; |
|
| 541 | + var gd_gaTime = parseInt('<?php echo $refresh_time; ?>');
|
|
| 542 | + var gd_gaHideRefresh = <?php echo (int) $hide_refresh; ?>; |
|
| 543 | + var gd_gaAutoRefresh = <?php echo $auto_refresh; ?>; |
|
| 544 | 544 | ga_data1 = false; |
| 545 | 545 | ga_data2 = false; |
| 546 | 546 | ga_data3 = false; |
@@ -681,7 +681,7 @@ discard block |
||
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | function gdga_noResults() {
|
| 684 | - jQuery('#gdga-chart-container').html('<?php _e('No results available','geodirectory');?>');
|
|
| 684 | + jQuery('#gdga-chart-container').html('<?php _e('No results available', 'geodirectory'); ?>');
|
|
| 685 | 685 | jQuery('#gdga-legend-container').html('');
|
| 686 | 686 | } |
| 687 | 687 | |
@@ -713,18 +713,18 @@ discard block |
||
| 713 | 713 | var data2 = results[1].rows.map(function(row) { return +row[2]; });
|
| 714 | 714 | //var labelsN = results[0].rows.map(function(row) { return +row[1]; });
|
| 715 | 715 | |
| 716 | - var labels = ['<?php _e('Jan', 'geodirectory');?>',
|
|
| 717 | - '<?php _e('Feb', 'geodirectory');?>',
|
|
| 718 | - '<?php _e('Mar', 'geodirectory');?>',
|
|
| 719 | - '<?php _e('Apr', 'geodirectory');?>',
|
|
| 720 | - '<?php _e('May', 'geodirectory');?>',
|
|
| 721 | - '<?php _e('Jun', 'geodirectory');?>',
|
|
| 722 | - '<?php _e('Jul', 'geodirectory');?>',
|
|
| 723 | - '<?php _e('Aug', 'geodirectory');?>',
|
|
| 724 | - '<?php _e('Sep', 'geodirectory');?>',
|
|
| 725 | - '<?php _e('Oct', 'geodirectory');?>',
|
|
| 726 | - '<?php _e('Nov', 'geodirectory');?>',
|
|
| 727 | - '<?php _e('Dec', 'geodirectory');?>'];
|
|
| 716 | + var labels = ['<?php _e('Jan', 'geodirectory'); ?>',
|
|
| 717 | + '<?php _e('Feb', 'geodirectory'); ?>',
|
|
| 718 | + '<?php _e('Mar', 'geodirectory'); ?>',
|
|
| 719 | + '<?php _e('Apr', 'geodirectory'); ?>',
|
|
| 720 | + '<?php _e('May', 'geodirectory'); ?>',
|
|
| 721 | + '<?php _e('Jun', 'geodirectory'); ?>',
|
|
| 722 | + '<?php _e('Jul', 'geodirectory'); ?>',
|
|
| 723 | + '<?php _e('Aug', 'geodirectory'); ?>',
|
|
| 724 | + '<?php _e('Sep', 'geodirectory'); ?>',
|
|
| 725 | + '<?php _e('Oct', 'geodirectory'); ?>',
|
|
| 726 | + '<?php _e('Nov', 'geodirectory'); ?>',
|
|
| 727 | + '<?php _e('Dec', 'geodirectory'); ?>'];
|
|
| 728 | 728 | |
| 729 | 729 | // Ensure the data arrays are at least as long as the labels array. |
| 730 | 730 | // Chart.js bar charts don't (yet) accept sparse datasets. |
@@ -737,13 +737,13 @@ discard block |
||
| 737 | 737 | labels : labels, |
| 738 | 738 | datasets : [ |
| 739 | 739 | {
|
| 740 | - label: '<?php _e('Last Year', 'geodirectory');?>',
|
|
| 740 | + label: '<?php _e('Last Year', 'geodirectory'); ?>',
|
|
| 741 | 741 | fillColor : "rgba(220,220,220,0.5)", |
| 742 | 742 | strokeColor : "rgba(220,220,220,1)", |
| 743 | 743 | data : data2 |
| 744 | 744 | }, |
| 745 | 745 | {
|
| 746 | - label: '<?php _e('This Year', 'geodirectory');?>',
|
|
| 746 | + label: '<?php _e('This Year', 'geodirectory'); ?>',
|
|
| 747 | 747 | fillColor : "rgba(151,187,205,0.5)", |
| 748 | 748 | strokeColor : "rgba(151,187,205,1)", |
| 749 | 749 | data : data1 |
@@ -788,30 +788,30 @@ discard block |
||
| 788 | 788 | |
| 789 | 789 | <?php |
| 790 | 790 | // Here we list the shorthand days of the week so it can be used in translation. |
| 791 | - __("Mon",'geodirectory');
|
|
| 792 | - __("Tue",'geodirectory');
|
|
| 793 | - __("Wed",'geodirectory');
|
|
| 794 | - __("Thu",'geodirectory');
|
|
| 795 | - __("Fri",'geodirectory');
|
|
| 796 | - __("Sat",'geodirectory');
|
|
| 797 | - __("Sun",'geodirectory');
|
|
| 791 | + __("Mon", 'geodirectory');
|
|
| 792 | + __("Tue", 'geodirectory');
|
|
| 793 | + __("Wed", 'geodirectory');
|
|
| 794 | + __("Thu", 'geodirectory');
|
|
| 795 | + __("Fri", 'geodirectory');
|
|
| 796 | + __("Sat", 'geodirectory');
|
|
| 797 | + __("Sun", 'geodirectory');
|
|
| 798 | 798 | ?> |
| 799 | 799 | |
| 800 | 800 | labels = [ |
| 801 | - "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
|
|
| 802 | - "<?php _e(date('D', strtotime("+2 day")),'geodirectory'); ?>",
|
|
| 803 | - "<?php _e(date('D', strtotime("+3 day")),'geodirectory'); ?>",
|
|
| 804 | - "<?php _e(date('D', strtotime("+4 day")),'geodirectory'); ?>",
|
|
| 805 | - "<?php _e(date('D', strtotime("+5 day")),'geodirectory'); ?>",
|
|
| 806 | - "<?php _e(date('D', strtotime("+6 day")),'geodirectory'); ?>",
|
|
| 807 | - "<?php _e(date('D', strtotime("+7 day")),'geodirectory'); ?>"
|
|
| 801 | + "<?php _e(date('D', strtotime("+1 day")), 'geodirectory'); ?>",
|
|
| 802 | + "<?php _e(date('D', strtotime("+2 day")), 'geodirectory'); ?>",
|
|
| 803 | + "<?php _e(date('D', strtotime("+3 day")), 'geodirectory'); ?>",
|
|
| 804 | + "<?php _e(date('D', strtotime("+4 day")), 'geodirectory'); ?>",
|
|
| 805 | + "<?php _e(date('D', strtotime("+5 day")), 'geodirectory'); ?>",
|
|
| 806 | + "<?php _e(date('D', strtotime("+6 day")), 'geodirectory'); ?>",
|
|
| 807 | + "<?php _e(date('D', strtotime("+7 day")), 'geodirectory'); ?>"
|
|
| 808 | 808 | ]; |
| 809 | 809 | |
| 810 | 810 | var data = {
|
| 811 | 811 | labels : labels, |
| 812 | 812 | datasets : [ |
| 813 | 813 | {
|
| 814 | - label: '<?php _e('Last Week', 'geodirectory');?>',
|
|
| 814 | + label: '<?php _e('Last Week', 'geodirectory'); ?>',
|
|
| 815 | 815 | fillColor : "rgba(220,220,220,0.5)", |
| 816 | 816 | strokeColor : "rgba(220,220,220,1)", |
| 817 | 817 | pointColor : "rgba(220,220,220,1)", |
@@ -819,7 +819,7 @@ discard block |
||
| 819 | 819 | data : data2 |
| 820 | 820 | }, |
| 821 | 821 | {
|
| 822 | - label: '<?php _e('This Week', 'geodirectory');?>',
|
|
| 822 | + label: '<?php _e('This Week', 'geodirectory'); ?>',
|
|
| 823 | 823 | fillColor : "rgba(151,187,205,0.5)", |
| 824 | 824 | strokeColor : "rgba(151,187,205,1)", |
| 825 | 825 | pointColor : "rgba(151,187,205,1)", |
@@ -1026,18 +1026,18 @@ discard block |
||
| 1026 | 1026 | </style> |
| 1027 | 1027 | <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script> |
| 1028 | 1028 | <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script> |
| 1029 | - <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory');?></button>
|
|
| 1029 | + <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory'); ?></button>
|
|
| 1030 | 1030 | <span id="ga_stats" class="gdga-analytics-box" style="display:none"> |
| 1031 | - <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory');?></div>
|
|
| 1031 | + <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory'); ?></div>
|
|
| 1032 | 1032 | <div id="gd-active-users-container"> |
| 1033 | - <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory');?>"></i><?php _e("Active Users:", 'geodirectory');?>
|
|
| 1033 | + <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory'); ?>"></i><?php _e("Active Users:", 'geodirectory'); ?>
|
|
| 1034 | 1034 | <b class="gd-ActiveUsers-value">0</b> |
| 1035 | 1035 | </div> |
| 1036 | 1036 | </div> |
| 1037 | 1037 | <select id="gdga-select-analytic" onchange="gdga_select_option();" style="display: none;"> |
| 1038 | - <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory');?></option>
|
|
| 1039 | - <option value="years"><?php _e("This Year vs Last Year", 'geodirectory');?></option>
|
|
| 1040 | - <option value="country"><?php _e("Top Countries", 'geodirectory');?></option>
|
|
| 1038 | + <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory'); ?></option>
|
|
| 1039 | + <option value="years"><?php _e("This Year vs Last Year", 'geodirectory'); ?></option>
|
|
| 1040 | + <option value="country"><?php _e("Top Countries", 'geodirectory'); ?></option>
|
|
| 1041 | 1041 | </select> |
| 1042 | 1042 | <div class="Chartjs-figure" id="gdga-chart-container"></div> |
| 1043 | 1043 | <ol class="Chartjs-legend" id="gdga-legend-container"></ol> |
@@ -1053,8 +1053,8 @@ discard block |
||
| 1053 | 1053 | do_action('geodir_after_google_analytics');
|
| 1054 | 1054 | $content_html = ob_get_clean(); |
| 1055 | 1055 | if (trim($content_html) != '') |
| 1056 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | - if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1056 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">'.$content_html.'</div>'; |
|
| 1057 | + if ((int) get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | 1058 | /** |
| 1059 | 1059 | * Filter the geodir_edit_post_link() function content. |
| 1060 | 1060 | * |
@@ -1080,7 +1080,7 @@ discard block |
||
| 1080 | 1080 | {
|
| 1081 | 1081 | global $post, $preview, $post_images; |
| 1082 | 1082 | |
| 1083 | - if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
|
|
| 1083 | + if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int) $post->ID)) {
|
|
| 1084 | 1084 | return; |
| 1085 | 1085 | } |
| 1086 | 1086 | ob_start(); // Start buffering; |
@@ -1115,10 +1115,10 @@ discard block |
||
| 1115 | 1115 | |
| 1116 | 1116 | $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
|
| 1117 | 1117 | |
| 1118 | - $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
|
|
| 1118 | + $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="'.$post_avgratings.'">'.$post_avgratings.'</span> / <span itemprop="best" content="5">5</span> '.__("based on", 'geodirectory').' </span><span class="count" itemprop="count" content="'.$comment_count.'">'.$comment_count.' '.$reviews_text.'</span><br />';
|
|
| 1119 | 1119 | |
| 1120 | 1120 | $html .= '<span class="item">'; |
| 1121 | - $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1121 | + $html .= '<span class="fn" itemprop="itemreviewed">'.$post->post_title.'</span>'; |
|
| 1122 | 1122 | |
| 1123 | 1123 | if ($post_images) {
|
| 1124 | 1124 | foreach ($post_images as $img) {
|
@@ -1128,7 +1128,7 @@ discard block |
||
| 1128 | 1128 | } |
| 1129 | 1129 | |
| 1130 | 1130 | if (isset($post_img) && $post_img) {
|
| 1131 | - $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1131 | + $html .= '<br /><img src="'.$post_img.'" class="photo" alt="'.esc_attr($post->post_title).'" itemprop="photo" content="'.$post_img.'" class="photo" />'; |
|
| 1132 | 1132 | } |
| 1133 | 1133 | |
| 1134 | 1134 | $html .= '</span>'; |
@@ -1155,9 +1155,9 @@ discard block |
||
| 1155 | 1155 | do_action('geodir_after_detail_page_review_rating');
|
| 1156 | 1156 | $content_html = ob_get_clean(); |
| 1157 | 1157 | if (trim($content_html) != '') {
|
| 1158 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1158 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">'.$content_html.'</div>'; |
|
| 1159 | 1159 | } |
| 1160 | - if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1160 | + if ((int) get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1161 | 1161 | /** |
| 1162 | 1162 | * Filter the geodir_detail_page_review_rating() function content. |
| 1163 | 1163 | * |
@@ -1196,8 +1196,8 @@ discard block |
||
| 1196 | 1196 | |
| 1197 | 1197 | $content_html = ob_get_clean(); |
| 1198 | 1198 | if (trim($content_html) != '') |
| 1199 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1200 | - if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1199 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">'.$content_html.'</div>'; |
|
| 1200 | + if ((int) get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1201 | 1201 | /** |
| 1202 | 1202 | * Filter the output html for function geodir_detail_page_more_info(). |
| 1203 | 1203 | * |
@@ -1296,7 +1296,7 @@ discard block |
||
| 1296 | 1296 | 'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
|
| 1297 | 1297 | 'geodir_txt_form_wait' => __('Wait...', 'geodirectory'),
|
| 1298 | 1298 | 'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
|
| 1299 | - 'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
|
| 1299 | + 'fa_rating' => (int) get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
|
| 1300 | 1300 | 'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
|
| 1301 | 1301 | 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
| 1302 | 1302 | 'geodir_map_name' => geodir_map_name(), |
@@ -1325,10 +1325,10 @@ discard block |
||
| 1325 | 1325 | foreach ($arr_alert_msg as $key => $value) {
|
| 1326 | 1326 | if (!is_scalar($value)) |
| 1327 | 1327 | continue; |
| 1328 | - $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1328 | + $arr_alert_msg[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
| 1329 | 1329 | } |
| 1330 | 1330 | |
| 1331 | - $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1331 | + $script = "var geodir_all_js_msg = ".json_encode($arr_alert_msg).';'; |
|
| 1332 | 1332 | echo '<script>'; |
| 1333 | 1333 | echo $script; |
| 1334 | 1334 | echo '</script>'; |
@@ -1418,7 +1418,7 @@ discard block |
||
| 1418 | 1418 | $geodir_old_sidebars = get_option('geodir_sidebars');
|
| 1419 | 1419 | if (is_array($geodir_old_sidebars)) {
|
| 1420 | 1420 | foreach ($geodir_old_sidebars as $key => $val) {
|
| 1421 | - if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1421 | + if (0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1422 | 1422 | {
|
| 1423 | 1423 | $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
| 1424 | 1424 | } |
@@ -1497,7 +1497,7 @@ discard block |
||
| 1497 | 1497 | global $post; |
| 1498 | 1498 | $term_condition = ''; |
| 1499 | 1499 | if (isset($_REQUEST['backandedit'])) {
|
| 1500 | - $post = (object)$gd_session->get('listing');
|
|
| 1500 | + $post = (object) $gd_session->get('listing');
|
|
| 1501 | 1501 | $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
| 1502 | 1502 | } |
| 1503 | 1503 | |
@@ -1511,7 +1511,7 @@ discard block |
||
| 1511 | 1511 | echo 'checked="checked"'; |
| 1512 | 1512 | } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
| 1513 | 1513 | class="geodir_textfield" value="1" |
| 1514 | - style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
|
| 1514 | + style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if ($terms_page) { echo get_permalink($terms_page); }?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
|
| 1515 | 1515 | </span> |
| 1516 | 1516 | </div> |
| 1517 | 1517 | <span class="geodir_message_error"><?php if (isset($required_msg)) {
|
@@ -1551,7 +1551,7 @@ discard block |
||
| 1551 | 1551 | /** This action is documented in geodirectory_template_actions.php */ |
| 1552 | 1552 | $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
| 1553 | 1553 | |
| 1554 | - if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1554 | + if (!($desc_limit === '' || (int) $desc_limit > 0)) {
|
|
| 1555 | 1555 | $is_display = false; |
| 1556 | 1556 | } |
| 1557 | 1557 | } |
@@ -1599,16 +1599,16 @@ discard block |
||
| 1599 | 1599 | global $wpdb, $plugin_prefix; |
| 1600 | 1600 | |
| 1601 | 1601 | // Remove unused virtual page |
| 1602 | - $listings_page_id = (int)get_option('geodir_listing_page');
|
|
| 1602 | + $listings_page_id = (int) get_option('geodir_listing_page');
|
|
| 1603 | 1603 | if ($listings_page_id) {
|
| 1604 | - $wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
|
| 1604 | + $wpdb->query($wpdb->prepare("DELETE FROM ".$wpdb->posts." WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
|
| 1605 | 1605 | delete_option('geodir_listing_page');
|
| 1606 | 1606 | } |
| 1607 | 1607 | |
| 1608 | 1608 | if (!get_option('geodir_changes_in_custom_fields_table')) {
|
| 1609 | 1609 | $wpdb->query( |
| 1610 | 1610 | $wpdb->prepare( |
| 1611 | - "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1611 | + "UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1612 | 1612 | array('1', '1', 'admin')
|
| 1613 | 1613 | ) |
| 1614 | 1614 | ); |
@@ -1616,9 +1616,9 @@ discard block |
||
| 1616 | 1616 | |
| 1617 | 1617 | /* --- terms meta value set --- */ |
| 1618 | 1618 | |
| 1619 | - update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1619 | + update_option('geodir_default_marker_icon', geodir_plugin_url().'/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1620 | 1620 | |
| 1621 | - $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1621 | + $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1622 | 1622 | |
| 1623 | 1623 | if (!empty($options_data)) {
|
| 1624 | 1624 | |
@@ -1626,7 +1626,7 @@ discard block |
||
| 1626 | 1626 | |
| 1627 | 1627 | $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
| 1628 | 1628 | |
| 1629 | - $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1629 | + $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM ".$wpdb->prefix."term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1630 | 1630 | |
| 1631 | 1631 | if (!empty($taxonomies_data)) {
|
| 1632 | 1632 | |
@@ -1635,17 +1635,17 @@ discard block |
||
| 1635 | 1635 | $taxObject = get_taxonomy($taxobj->taxonomy); |
| 1636 | 1636 | $post_type = $taxObject->object_type[0]; |
| 1637 | 1637 | |
| 1638 | - $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1638 | + $opt_value = 'tax_meta_'.$post_type.'_'.$option_val; |
|
| 1639 | 1639 | |
| 1640 | - $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1640 | + $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM ".$wpdb->prefix."options WHERE option_name=%s", array('tax_meta_'.$option_val)));
|
|
| 1641 | 1641 | |
| 1642 | 1642 | if ($duplicate_data) {
|
| 1643 | 1643 | |
| 1644 | - $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1644 | + $wpdb->query($wpdb->prepare("UPDATE ".$wpdb->prefix."options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1645 | 1645 | |
| 1646 | 1646 | } else {
|
| 1647 | 1647 | |
| 1648 | - $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1648 | + $wpdb->query($wpdb->prepare("INSERT INTO ".$wpdb->prefix."options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1649 | 1649 | |
| 1650 | 1650 | } |
| 1651 | 1651 | |
@@ -1679,14 +1679,14 @@ discard block |
||
| 1679 | 1679 | |
| 1680 | 1680 | global $wpdb, $table_prefix; |
| 1681 | 1681 | |
| 1682 | - $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1682 | + $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($slug)));
|
|
| 1683 | 1683 | |
| 1684 | 1684 | if ($slug_exists) {
|
| 1685 | 1685 | |
| 1686 | 1686 | $suffix = 1; |
| 1687 | 1687 | do {
|
| 1688 | - $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1689 | - $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1688 | + $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix"; |
|
| 1689 | + $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1690 | 1690 | $suffix++; |
| 1691 | 1691 | } while ($location_slug_check && $suffix < 100); |
| 1692 | 1692 | |
@@ -1740,7 +1740,7 @@ discard block |
||
| 1740 | 1740 | |
| 1741 | 1741 | $suffix = 1; |
| 1742 | 1742 | do {
|
| 1743 | - $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1743 | + $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix"; |
|
| 1744 | 1744 | |
| 1745 | 1745 | /** This action is documented in geodirectory_hooks_actions.php */ |
| 1746 | 1746 | $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
@@ -1752,7 +1752,7 @@ discard block |
||
| 1752 | 1752 | |
| 1753 | 1753 | //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
| 1754 | 1754 | |
| 1755 | - $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1755 | + $wpdb->query($wpdb->prepare("UPDATE ".$table_prefix."terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1756 | 1756 | |
| 1757 | 1757 | } |
| 1758 | 1758 | |
@@ -1761,18 +1761,18 @@ discard block |
||
| 1761 | 1761 | $post_type = !empty($taxonomy_obj) ? $taxonomy_obj->object_type[0] : NULL; |
| 1762 | 1762 | |
| 1763 | 1763 | $post_types = geodir_get_posttypes(); |
| 1764 | - if ($post_type && in_array($post_type, $post_types) && $post_type . '_tags' == $taxonomy) {
|
|
| 1765 | - $posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM " . $wpdb->term_relationships . " WHERE term_taxonomy_id = %d", array($tt_id)));
|
|
| 1764 | + if ($post_type && in_array($post_type, $post_types) && $post_type.'_tags' == $taxonomy) {
|
|
| 1765 | + $posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM ".$wpdb->term_relationships." WHERE term_taxonomy_id = %d", array($tt_id)));
|
|
| 1766 | 1766 | |
| 1767 | 1767 | if (!empty($posts_obj)) {
|
| 1768 | 1768 | foreach ($posts_obj as $post_obj) {
|
| 1769 | 1769 | $post_id = $post_obj->object_id; |
| 1770 | 1770 | |
| 1771 | - $raw_tags = wp_get_object_terms($post_id, $post_type . '_tags', array('fields' => 'names'));
|
|
| 1771 | + $raw_tags = wp_get_object_terms($post_id, $post_type.'_tags', array('fields' => 'names'));
|
|
| 1772 | 1772 | $post_tags = !empty($raw_tags) ? implode(',', $raw_tags) : '';
|
| 1773 | 1773 | |
| 1774 | - $listing_table = $plugin_prefix . $post_type . '_detail'; |
|
| 1775 | - $wpdb->query($wpdb->prepare("UPDATE " . $listing_table . " SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
|
|
| 1774 | + $listing_table = $plugin_prefix.$post_type.'_detail'; |
|
| 1775 | + $wpdb->query($wpdb->prepare("UPDATE ".$listing_table." SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
|
|
| 1776 | 1776 | } |
| 1777 | 1777 | } |
| 1778 | 1778 | } |
@@ -1806,7 +1806,7 @@ discard block |
||
| 1806 | 1806 | if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
| 1807 | 1807 | return $slug_exists = true; |
| 1808 | 1808 | |
| 1809 | - if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1809 | + if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1810 | 1810 | return $slug_exists = true; |
| 1811 | 1811 | |
| 1812 | 1812 | return $slug_exists; |
@@ -1846,43 +1846,43 @@ discard block |
||
| 1846 | 1846 | |
| 1847 | 1847 | |
| 1848 | 1848 | $gd_page = ''; |
| 1849 | - if(geodir_is_page('home')){
|
|
| 1849 | + if (geodir_is_page('home')) {
|
|
| 1850 | 1850 | $gd_page = 'home'; |
| 1851 | 1851 | $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
| 1852 | 1852 | } |
| 1853 | - elseif(geodir_is_page('detail')){
|
|
| 1853 | + elseif (geodir_is_page('detail')) {
|
|
| 1854 | 1854 | $gd_page = 'detail'; |
| 1855 | 1855 | $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
| 1856 | 1856 | } |
| 1857 | - elseif(geodir_is_page('pt')){
|
|
| 1857 | + elseif (geodir_is_page('pt')) {
|
|
| 1858 | 1858 | $gd_page = 'pt'; |
| 1859 | 1859 | $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
| 1860 | 1860 | } |
| 1861 | - elseif(geodir_is_page('listing')){
|
|
| 1861 | + elseif (geodir_is_page('listing')) {
|
|
| 1862 | 1862 | $gd_page = 'listing'; |
| 1863 | 1863 | $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
| 1864 | 1864 | } |
| 1865 | - elseif(geodir_is_page('location')){
|
|
| 1865 | + elseif (geodir_is_page('location')) {
|
|
| 1866 | 1866 | $gd_page = 'location'; |
| 1867 | 1867 | $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
| 1868 | 1868 | } |
| 1869 | - elseif(geodir_is_page('search')){
|
|
| 1869 | + elseif (geodir_is_page('search')) {
|
|
| 1870 | 1870 | $gd_page = 'search'; |
| 1871 | 1871 | $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
| 1872 | 1872 | } |
| 1873 | - elseif(geodir_is_page('add-listing')){
|
|
| 1873 | + elseif (geodir_is_page('add-listing')) {
|
|
| 1874 | 1874 | $gd_page = 'add-listing'; |
| 1875 | 1875 | $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
| 1876 | 1876 | } |
| 1877 | - elseif(geodir_is_page('author')){
|
|
| 1877 | + elseif (geodir_is_page('author')) {
|
|
| 1878 | 1878 | $gd_page = 'author'; |
| 1879 | 1879 | $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
| 1880 | 1880 | } |
| 1881 | - elseif(geodir_is_page('login')){
|
|
| 1881 | + elseif (geodir_is_page('login')) {
|
|
| 1882 | 1882 | $gd_page = 'login'; |
| 1883 | 1883 | $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
| 1884 | 1884 | } |
| 1885 | - elseif(geodir_is_page('listing-success')){
|
|
| 1885 | + elseif (geodir_is_page('listing-success')) {
|
|
| 1886 | 1886 | $gd_page = 'listing-success'; |
| 1887 | 1887 | $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
| 1888 | 1888 | } |
@@ -1914,12 +1914,12 @@ discard block |
||
| 1914 | 1914 | |
| 1915 | 1915 | if (!get_option('geodir_set_post_attachments')) {
|
| 1916 | 1916 | |
| 1917 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1918 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1917 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 1918 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
| 1919 | 1919 | |
| 1920 | 1920 | $all_postypes = geodir_get_posttypes(); |
| 1921 | 1921 | |
| 1922 | - foreach($all_postypes as $post_type){
|
|
| 1922 | + foreach ($all_postypes as $post_type) {
|
|
| 1923 | 1923 | $args = array( |
| 1924 | 1924 | 'posts_per_page' => -1, |
| 1925 | 1925 | 'post_type' => $post_type, |
@@ -2013,7 +2013,7 @@ discard block |
||
| 2013 | 2013 | {
|
| 2014 | 2014 | $user_id = get_current_user_id(); |
| 2015 | 2015 | |
| 2016 | - if(!$user_id){return $post;}
|
|
| 2016 | + if (!$user_id) {return $post; }
|
|
| 2017 | 2017 | |
| 2018 | 2018 | $gd_post_types = geodir_get_posttypes(); |
| 2019 | 2019 | |
@@ -2122,7 +2122,7 @@ discard block |
||
| 2122 | 2122 | |
| 2123 | 2123 | if (array_key_exists('post_video', $tabs_arr)) {
|
| 2124 | 2124 | |
| 2125 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2125 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2126 | 2126 | |
| 2127 | 2127 | if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
| 2128 | 2128 | $tabs_arr['post_video']['heading_text'] = $field_title; |
@@ -2130,7 +2130,7 @@ discard block |
||
| 2130 | 2130 | |
| 2131 | 2131 | if (array_key_exists('special_offers', $tabs_arr)) {
|
| 2132 | 2132 | |
| 2133 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2133 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2134 | 2134 | |
| 2135 | 2135 | if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
| 2136 | 2136 | $tabs_arr['special_offers']['heading_text'] = $field_title; |
@@ -2151,7 +2151,7 @@ discard block |
||
| 2151 | 2151 | */ |
| 2152 | 2152 | function geodir_remove_template_redirect_actions() |
| 2153 | 2153 | {
|
| 2154 | - if (geodir_is_page('login')){
|
|
| 2154 | + if (geodir_is_page('login')) {
|
|
| 2155 | 2155 | remove_all_actions('template_redirect');
|
| 2156 | 2156 | remove_action('init', 'avia_modify_front', 10);
|
| 2157 | 2157 | } |
@@ -2198,25 +2198,25 @@ discard block |
||
| 2198 | 2198 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
| 2199 | 2199 | |
| 2200 | 2200 | $wpdb->query( |
| 2201 | - $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2201 | + $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d AND file=%s ",
|
|
| 2202 | 2202 | array($post_id, $split_img_file_path) |
| 2203 | 2203 | ) |
| 2204 | 2204 | ); |
| 2205 | 2205 | |
| 2206 | 2206 | $attachment_data = $wpdb->get_row( |
| 2207 | - $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2207 | + $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=%d",
|
|
| 2208 | 2208 | array($post_id) |
| 2209 | 2209 | ) |
| 2210 | 2210 | ); |
| 2211 | 2211 | |
| 2212 | 2212 | if (!empty($attachment_data)) {
|
| 2213 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2213 | + $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
|
|
| 2214 | 2214 | } |
| 2215 | 2215 | |
| 2216 | 2216 | |
| 2217 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2217 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
| 2218 | 2218 | |
| 2219 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2219 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='' WHERE post_id =".$post_id);
|
|
| 2220 | 2220 | |
| 2221 | 2221 | geodir_set_wp_featured_image($post_id); |
| 2222 | 2222 | |
@@ -2244,9 +2244,9 @@ discard block |
||
| 2244 | 2244 | |
| 2245 | 2245 | foreach ($all_postypes as $posttype) {
|
| 2246 | 2246 | |
| 2247 | - $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2247 | + $tablename = $plugin_prefix.$posttype.'_detail'; |
|
| 2248 | 2248 | |
| 2249 | - $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2249 | + $get_post_data = $wpdb->get_results("SELECT post_id FROM ".$tablename);
|
|
| 2250 | 2250 | |
| 2251 | 2251 | if (!empty($get_post_data)) {
|
| 2252 | 2252 | |
@@ -2254,7 +2254,7 @@ discard block |
||
| 2254 | 2254 | |
| 2255 | 2255 | $post_id = $data->post_id; |
| 2256 | 2256 | |
| 2257 | - $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2257 | + $attachment_data = $wpdb->get_results("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id =".$post_id." AND file!=''");
|
|
| 2258 | 2258 | |
| 2259 | 2259 | if (!empty($attachment_data)) {
|
| 2260 | 2260 | |
@@ -2271,22 +2271,22 @@ discard block |
||
| 2271 | 2271 | |
| 2272 | 2272 | $file_name = $file_info['basename']; |
| 2273 | 2273 | |
| 2274 | - $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2274 | + $img_arr['path'] = $uploads_path.$sub_dir.'/'.$file_name; |
|
| 2275 | 2275 | |
| 2276 | 2276 | if (!file_exists($img_arr['path'])) {
|
| 2277 | 2277 | |
| 2278 | - $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2278 | + $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ID=".$attach->ID);
|
|
| 2279 | 2279 | |
| 2280 | 2280 | } |
| 2281 | 2281 | |
| 2282 | 2282 | } |
| 2283 | 2283 | |
| 2284 | - $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2284 | + $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=".$post_id." GROUP BY post_id");
|
|
| 2285 | 2285 | |
| 2286 | 2286 | if (!empty($attachment_data)) {
|
| 2287 | 2287 | |
| 2288 | 2288 | if ($attachment_data->ID) |
| 2289 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2289 | + $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
|
|
| 2290 | 2290 | |
| 2291 | 2291 | } else {
|
| 2292 | 2292 | |
@@ -2300,7 +2300,7 @@ discard block |
||
| 2300 | 2300 | |
| 2301 | 2301 | } |
| 2302 | 2302 | |
| 2303 | - $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2303 | + $wpdb->query("UPDATE ".$tablename." SET featured_image='' WHERE post_id =".$post_id);
|
|
| 2304 | 2304 | |
| 2305 | 2305 | geodir_set_wp_featured_image($post_id); |
| 2306 | 2306 | |
@@ -2329,7 +2329,7 @@ discard block |
||
| 2329 | 2329 | {
|
| 2330 | 2330 | |
| 2331 | 2331 | if (!get_option('geodir_default_rating_star_icon')) {
|
| 2332 | - update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2332 | + update_option('geodir_default_rating_star_icon', geodir_plugin_url().'/geodirectory-assets/images/stars.png');
|
|
| 2333 | 2333 | } |
| 2334 | 2334 | |
| 2335 | 2335 | } |
@@ -2346,10 +2346,10 @@ discard block |
||
| 2346 | 2346 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 2347 | 2347 | * @return array User listing count for each post type. |
| 2348 | 2348 | */ |
| 2349 | -function geodir_user_post_listing_count($user_id=null) |
|
| 2349 | +function geodir_user_post_listing_count($user_id = null) |
|
| 2350 | 2350 | {
|
| 2351 | 2351 | global $wpdb, $plugin_prefix, $current_user; |
| 2352 | - if(!$user_id){
|
|
| 2352 | + if (!$user_id) {
|
|
| 2353 | 2353 | $user_id = $current_user->ID; |
| 2354 | 2354 | } |
| 2355 | 2355 | |
@@ -2360,7 +2360,7 @@ discard block |
||
| 2360 | 2360 | $user_listing = array(); |
| 2361 | 2361 | if (is_array($all_posts) && !empty($all_posts)) {
|
| 2362 | 2362 | foreach ($all_posts as $ptype) {
|
| 2363 | - $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2363 | + $total_posts = $wpdb->get_var("SELECT count( ID ) FROM ".$wpdb->prefix."posts WHERE post_author=".$user_id." AND post_type='".$ptype."' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2364 | 2364 | |
| 2365 | 2365 | if ($total_posts > 0) {
|
| 2366 | 2366 | $user_listing[$ptype] = $total_posts; |
@@ -2401,19 +2401,19 @@ discard block |
||
| 2401 | 2401 | |
| 2402 | 2402 | $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
| 2403 | 2403 | //remove video and special offers if it is already set to show |
| 2404 | - if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2404 | + if (isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']) {
|
|
| 2405 | 2405 | $unset_video = true; |
| 2406 | 2406 | } |
| 2407 | 2407 | |
| 2408 | - if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2408 | + if (isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']) {
|
|
| 2409 | 2409 | $unset_special_offers = true; |
| 2410 | 2410 | } |
| 2411 | - if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2412 | - foreach($custom_fields as $key => $custom_field){
|
|
| 2413 | - if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2411 | + if (isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)) {
|
|
| 2412 | + foreach ($custom_fields as $key => $custom_field) {
|
|
| 2413 | + if ($custom_field['name'] == 'geodir_video' && isset($unset_video)) {
|
|
| 2414 | 2414 | unset($custom_fields[$key]); |
| 2415 | 2415 | } |
| 2416 | - if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2416 | + if ($custom_field['name'] == 'geodir_special_offers' && isset($unset_special_offers)) {
|
|
| 2417 | 2417 | unset($custom_fields[$key]); |
| 2418 | 2418 | } |
| 2419 | 2419 | } |
@@ -2430,7 +2430,7 @@ discard block |
||
| 2430 | 2430 | $post->{$field_name} = $_REQUEST[$field_name];
|
| 2431 | 2431 | } |
| 2432 | 2432 | |
| 2433 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2433 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file', 'address', 'taxonomy'))) {
|
|
| 2434 | 2434 | if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
| 2435 | 2435 | continue; |
| 2436 | 2436 | } |
@@ -2463,7 +2463,7 @@ discard block |
||
| 2463 | 2463 | $post->{$field_name} = $_REQUEST[$field_name];
|
| 2464 | 2464 | } |
| 2465 | 2465 | |
| 2466 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2466 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file', 'address', 'taxonomy'))) {
|
|
| 2467 | 2467 | $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title']; |
| 2468 | 2468 | $site_title = trim($field['site_title']); |
| 2469 | 2469 | $type = $field; |
@@ -2479,21 +2479,21 @@ discard block |
||
| 2479 | 2479 | $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
| 2480 | 2480 | $variables_array['value'] = ''; |
| 2481 | 2481 | $variables_array['value'] = $post->{$type['htmlvar_name']};
|
| 2482 | - }else{
|
|
| 2482 | + } else {
|
|
| 2483 | 2483 | $i = 0; |
| 2484 | 2484 | $fieldset_count++; |
| 2485 | 2485 | $field_set_start = 1; |
| 2486 | - $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2486 | + $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_'.$fieldset_count; |
|
| 2487 | 2487 | $fieldset_arr[$fieldset_count]['label'] = $label; |
| 2488 | 2488 | } |
| 2489 | 2489 | |
| 2490 | 2490 | |
| 2491 | - if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2491 | + if (isset($type['extra_fields'])) {$extra_fields = $type['extra_fields']; }
|
|
| 2492 | 2492 | $type = stripslashes_deep($type); // strip slashes |
| 2493 | - if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2493 | + if (isset($type['extra_fields'])) {$type['extra_fields'] = $extra_fields; }
|
|
| 2494 | 2494 | $html = ''; |
| 2495 | 2495 | $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
| 2496 | - if($html_var=='post'){$html_var='post_address';}
|
|
| 2496 | + if ($html_var == 'post') {$html_var = 'post_address'; }
|
|
| 2497 | 2497 | $field_icon = geodir_field_icon_proccess($type); |
| 2498 | 2498 | $filed_type = $type['type']; |
| 2499 | 2499 | |
@@ -2506,7 +2506,7 @@ discard block |
||
| 2506 | 2506 | * @param string $fields_location The location the field is to be show. |
| 2507 | 2507 | * @param array $type The array of field values. |
| 2508 | 2508 | */ |
| 2509 | - $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2509 | + $html = apply_filters("geodir_custom_field_output_{$filed_type}", $html, $fields_location, $type);
|
|
| 2510 | 2510 | |
| 2511 | 2511 | |
| 2512 | 2512 | /** |
@@ -2552,7 +2552,7 @@ discard block |
||
| 2552 | 2552 | * @param string $htmlvar_name The field HTML var name. |
| 2553 | 2553 | */ |
| 2554 | 2554 | 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
| 2555 | - 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2555 | + 'tab_content' => '<div class="geodir-company_info field-group xxx">'.$fieldset_html.'</div>' |
|
| 2556 | 2556 | ); |
| 2557 | 2557 | } |
| 2558 | 2558 | } else {
|
@@ -2614,7 +2614,7 @@ discard block |
||
| 2614 | 2614 | } |
| 2615 | 2615 | $status .= ")</strong>"; |
| 2616 | 2616 | |
| 2617 | - $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2617 | + $html = '<span class="geodir-post-status">'.$status_icon.' <font class="geodir-status-label">'.__('Status: ', 'geodirectory').'</font>'.$status.'</span>';
|
|
| 2618 | 2618 | } |
| 2619 | 2619 | } |
| 2620 | 2620 | |
@@ -2683,7 +2683,7 @@ discard block |
||
| 2683 | 2683 | * @return array Modified class array. |
| 2684 | 2684 | */ |
| 2685 | 2685 | function geodir_body_class_active_map($classes = array()) {
|
| 2686 | - $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2686 | + $classes[] = 'gd-map-'.geodir_map_name(); |
|
| 2687 | 2687 | |
| 2688 | 2688 | return $classes; |
| 2689 | 2689 | } |
@@ -2698,7 +2698,7 @@ discard block |
||
| 2698 | 2698 | * @return string Modified class string. |
| 2699 | 2699 | */ |
| 2700 | 2700 | function geodir_admin_body_class_active_map($class = '') {
|
| 2701 | - $class .= ' gd-map-' . geodir_map_name(); |
|
| 2701 | + $class .= ' gd-map-'.geodir_map_name(); |
|
| 2702 | 2702 | |
| 2703 | 2703 | return $class; |
| 2704 | 2704 | } |
@@ -2718,7 +2718,7 @@ discard block |
||
| 2718 | 2718 | * @return array Translation texts. |
| 2719 | 2719 | */ |
| 2720 | 2720 | function geodir_load_gd_options_text_translation($translation_texts = array()) {
|
| 2721 | - $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2721 | + $translation_texts = !empty($translation_texts) && is_array($translation_texts) ? $translation_texts : array(); |
|
| 2722 | 2722 | |
| 2723 | 2723 | $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
| 2724 | 2724 | |
@@ -2784,17 +2784,17 @@ discard block |
||
| 2784 | 2784 | * @param array $args The array of menu arguments. |
| 2785 | 2785 | * @return array The modified arguments. |
| 2786 | 2786 | */ |
| 2787 | -function geodir_add_nav_menu_class( $args ) |
|
| 2787 | +function geodir_add_nav_menu_class($args) |
|
| 2788 | 2788 | {
|
| 2789 | 2789 | |
| 2790 | - if(isset($args['menu_class'])){
|
|
| 2790 | + if (isset($args['menu_class'])) {
|
|
| 2791 | 2791 | $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
| 2792 | 2792 | } |
| 2793 | 2793 | |
| 2794 | 2794 | return $args; |
| 2795 | 2795 | } |
| 2796 | 2796 | |
| 2797 | -add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' ); |
|
| 2797 | +add_filter('wp_nav_menu_args', 'geodir_add_nav_menu_class');
|
|
| 2798 | 2798 | |
| 2799 | 2799 | /** |
| 2800 | 2800 | * Filters WordPress locale ID. |
@@ -2861,7 +2861,7 @@ discard block |
||
| 2861 | 2861 | } |
| 2862 | 2862 | |
| 2863 | 2863 | if (!empty($keep_vars)) {
|
| 2864 | - foreach ( $languages as $code => $url) {
|
|
| 2864 | + foreach ($languages as $code => $url) {
|
|
| 2865 | 2865 | $filter_url = $url['url']; |
| 2866 | 2866 | |
| 2867 | 2867 | foreach ($keep_vars as $var) {
|
@@ -2880,4 +2880,4 @@ discard block |
||
| 2880 | 2880 | |
| 2881 | 2881 | return $languages; |
| 2882 | 2882 | } |
| 2883 | -add_filter( 'icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1 ); |
|
| 2884 | 2883 | \ No newline at end of file |
| 2884 | +add_filter('icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1); |
|
| 2885 | 2885 | \ No newline at end of file |
@@ -16,92 +16,92 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | $general_options = apply_filters('geodir_general_options', array(
|
| 18 | 18 | |
| 19 | - array('name' => __('General', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'general_options'),
|
|
| 20 | - |
|
| 21 | - array('name' => __('General Options', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'general_options'),
|
|
| 22 | - |
|
| 23 | - array( |
|
| 24 | - 'name' => __('Sender name', 'geodirectory'),
|
|
| 25 | - 'desc' => __('(Name that will be shown as email sender when users receive emails from this site)', 'geodirectory'),
|
|
| 26 | - 'id' => 'site_email_name', |
|
| 27 | - 'type' => 'text', |
|
| 28 | - 'css' => 'min-width:300px;', |
|
| 29 | - 'std' => get_bloginfo('name') // Default value for the page title - changed in settings
|
|
| 30 | - ), |
|
| 31 | - |
|
| 32 | - array( |
|
| 33 | - 'name' => __('Email address', 'geodirectory'),
|
|
| 34 | - 'desc' => __('(Emails to users will be sent via this mail ID)', 'geodirectory'),
|
|
| 35 | - 'id' => 'site_email', |
|
| 36 | - 'type' => 'text', |
|
| 37 | - 'css' => 'min-width:300px;', |
|
| 38 | - 'std' => get_bloginfo('admin_email') // Default value for the page title - changed in settings
|
|
| 39 | - ), |
|
| 40 | - array( |
|
| 41 | - 'name' => __('Allow user to see wp-admin area', 'geodirectory'),
|
|
| 42 | - 'desc' => __('Yes', 'geodirectory'),
|
|
| 43 | - 'id' => 'geodir_allow_wpadmin', |
|
| 44 | - 'std' => '1', |
|
| 45 | - 'type' => 'radio', |
|
| 46 | - 'value' => '1', |
|
| 47 | - 'radiogroup' => 'start' |
|
| 48 | - ), |
|
| 49 | - array( |
|
| 50 | - 'name' => __('Allow user to see wp-admin area', 'geodirectory'),
|
|
| 51 | - 'desc' => __('No', 'geodirectory'),
|
|
| 52 | - 'id' => 'geodir_allow_wpadmin', |
|
| 53 | - 'std' => '0', |
|
| 54 | - 'type' => 'radio', |
|
| 55 | - 'value' => '0', |
|
| 56 | - 'radiogroup' => 'end' |
|
| 57 | - ), |
|
| 58 | - |
|
| 59 | - array( |
|
| 60 | - 'name' => __('Allow user to choose own password', 'geodirectory'),
|
|
| 61 | - 'desc' => __('Yes', 'geodirectory'),
|
|
| 62 | - 'id' => 'geodir_allow_cpass', |
|
| 63 | - 'std' => '1', |
|
| 64 | - 'type' => 'radio', |
|
| 65 | - 'value' => '1', |
|
| 66 | - 'radiogroup' => 'start' |
|
| 67 | - ), |
|
| 68 | - array( |
|
| 69 | - 'name' => __('Allow user to choose own password', 'geodirectory'),
|
|
| 70 | - 'desc' => __('No', 'geodirectory'),
|
|
| 71 | - 'id' => 'geodir_allow_cpass', |
|
| 72 | - 'std' => '0', |
|
| 73 | - 'type' => 'radio', |
|
| 74 | - 'value' => '0', |
|
| 75 | - 'radiogroup' => 'end' |
|
| 76 | - ), |
|
| 77 | - array( |
|
| 78 | - 'name' => __('Disable review stars for CPT', 'geodirectory'),
|
|
| 79 | - 'desc' => __('Disable review stars for certain CPT without disabling comments on listings.', 'geodirectory'),
|
|
| 80 | - 'tip' => '', |
|
| 81 | - 'id' => 'geodir_disable_rating_cpt', |
|
| 82 | - 'css' => 'min-width:300px;', |
|
| 83 | - 'std' => '', |
|
| 84 | - 'type' => 'multiselect', |
|
| 85 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 86 | - 'class' => 'chosen_select', |
|
| 87 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 88 | - ), |
|
| 89 | - array( |
|
| 90 | - 'name' => __('User deleted posts go to trash', 'geodirectory'),
|
|
| 91 | - 'desc' => __('If checked a user deleted post will go to trash, otherwise it will be permanently deleted', 'geodirectory'),
|
|
| 92 | - 'id' => 'geodir_disable_perm_delete', |
|
| 93 | - 'type' => 'checkbox', |
|
| 94 | - 'std' => '1' |
|
| 95 | - ), |
|
| 96 | - array( |
|
| 97 | - 'name' => __('Max upload file size(in mb)', 'geodirectory'),
|
|
| 98 | - 'desc' => __('(Maximum upload file size in MB, 1 MB = 1024 KB. Must be greater then 0(ZERO), for ex: 2. This setting will overwrite the max upload file size limit in image/file upload & import listings for entire GeoDirectory core + GeoDirectory plugins.)', 'geodirectory'),
|
|
| 99 | - 'id' => 'geodir_upload_max_filesize', |
|
| 100 | - 'type' => 'text', |
|
| 101 | - 'css' => 'min-width:300px;', |
|
| 102 | - 'std' => '2' |
|
| 103 | - ), |
|
| 104 | - array('type' => 'sectionend', 'id' => 'general_options'),
|
|
| 19 | + array('name' => __('General', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'general_options'),
|
|
| 20 | + |
|
| 21 | + array('name' => __('General Options', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'general_options'),
|
|
| 22 | + |
|
| 23 | + array( |
|
| 24 | + 'name' => __('Sender name', 'geodirectory'),
|
|
| 25 | + 'desc' => __('(Name that will be shown as email sender when users receive emails from this site)', 'geodirectory'),
|
|
| 26 | + 'id' => 'site_email_name', |
|
| 27 | + 'type' => 'text', |
|
| 28 | + 'css' => 'min-width:300px;', |
|
| 29 | + 'std' => get_bloginfo('name') // Default value for the page title - changed in settings
|
|
| 30 | + ), |
|
| 31 | + |
|
| 32 | + array( |
|
| 33 | + 'name' => __('Email address', 'geodirectory'),
|
|
| 34 | + 'desc' => __('(Emails to users will be sent via this mail ID)', 'geodirectory'),
|
|
| 35 | + 'id' => 'site_email', |
|
| 36 | + 'type' => 'text', |
|
| 37 | + 'css' => 'min-width:300px;', |
|
| 38 | + 'std' => get_bloginfo('admin_email') // Default value for the page title - changed in settings
|
|
| 39 | + ), |
|
| 40 | + array( |
|
| 41 | + 'name' => __('Allow user to see wp-admin area', 'geodirectory'),
|
|
| 42 | + 'desc' => __('Yes', 'geodirectory'),
|
|
| 43 | + 'id' => 'geodir_allow_wpadmin', |
|
| 44 | + 'std' => '1', |
|
| 45 | + 'type' => 'radio', |
|
| 46 | + 'value' => '1', |
|
| 47 | + 'radiogroup' => 'start' |
|
| 48 | + ), |
|
| 49 | + array( |
|
| 50 | + 'name' => __('Allow user to see wp-admin area', 'geodirectory'),
|
|
| 51 | + 'desc' => __('No', 'geodirectory'),
|
|
| 52 | + 'id' => 'geodir_allow_wpadmin', |
|
| 53 | + 'std' => '0', |
|
| 54 | + 'type' => 'radio', |
|
| 55 | + 'value' => '0', |
|
| 56 | + 'radiogroup' => 'end' |
|
| 57 | + ), |
|
| 58 | + |
|
| 59 | + array( |
|
| 60 | + 'name' => __('Allow user to choose own password', 'geodirectory'),
|
|
| 61 | + 'desc' => __('Yes', 'geodirectory'),
|
|
| 62 | + 'id' => 'geodir_allow_cpass', |
|
| 63 | + 'std' => '1', |
|
| 64 | + 'type' => 'radio', |
|
| 65 | + 'value' => '1', |
|
| 66 | + 'radiogroup' => 'start' |
|
| 67 | + ), |
|
| 68 | + array( |
|
| 69 | + 'name' => __('Allow user to choose own password', 'geodirectory'),
|
|
| 70 | + 'desc' => __('No', 'geodirectory'),
|
|
| 71 | + 'id' => 'geodir_allow_cpass', |
|
| 72 | + 'std' => '0', |
|
| 73 | + 'type' => 'radio', |
|
| 74 | + 'value' => '0', |
|
| 75 | + 'radiogroup' => 'end' |
|
| 76 | + ), |
|
| 77 | + array( |
|
| 78 | + 'name' => __('Disable review stars for CPT', 'geodirectory'),
|
|
| 79 | + 'desc' => __('Disable review stars for certain CPT without disabling comments on listings.', 'geodirectory'),
|
|
| 80 | + 'tip' => '', |
|
| 81 | + 'id' => 'geodir_disable_rating_cpt', |
|
| 82 | + 'css' => 'min-width:300px;', |
|
| 83 | + 'std' => '', |
|
| 84 | + 'type' => 'multiselect', |
|
| 85 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 86 | + 'class' => 'chosen_select', |
|
| 87 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 88 | + ), |
|
| 89 | + array( |
|
| 90 | + 'name' => __('User deleted posts go to trash', 'geodirectory'),
|
|
| 91 | + 'desc' => __('If checked a user deleted post will go to trash, otherwise it will be permanently deleted', 'geodirectory'),
|
|
| 92 | + 'id' => 'geodir_disable_perm_delete', |
|
| 93 | + 'type' => 'checkbox', |
|
| 94 | + 'std' => '1' |
|
| 95 | + ), |
|
| 96 | + array( |
|
| 97 | + 'name' => __('Max upload file size(in mb)', 'geodirectory'),
|
|
| 98 | + 'desc' => __('(Maximum upload file size in MB, 1 MB = 1024 KB. Must be greater then 0(ZERO), for ex: 2. This setting will overwrite the max upload file size limit in image/file upload & import listings for entire GeoDirectory core + GeoDirectory plugins.)', 'geodirectory'),
|
|
| 99 | + 'id' => 'geodir_upload_max_filesize', |
|
| 100 | + 'type' => 'text', |
|
| 101 | + 'css' => 'min-width:300px;', |
|
| 102 | + 'std' => '2' |
|
| 103 | + ), |
|
| 104 | + array('type' => 'sectionend', 'id' => 'general_options'),
|
|
| 105 | 105 | |
| 106 | 106 | ));/* General Options End*/ |
| 107 | 107 | |
@@ -113,104 +113,104 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | $google_analytic_settings = apply_filters('geodir_google_analytic_settings', array(
|
| 115 | 115 | |
| 116 | - array('name' => __('Google Analytics', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'google_analytic_settings'),
|
|
| 117 | - |
|
| 118 | - array('name' => __('Google Analytic Settings', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'google_analytic_settings'),
|
|
| 119 | - |
|
| 120 | - |
|
| 121 | - |
|
| 122 | - array( |
|
| 123 | - 'name' => __('Show business owner google analytics stats?', 'geodirectory'),
|
|
| 124 | - 'desc' => __('Yes', 'geodirectory'),
|
|
| 125 | - 'id' => 'geodir_ga_stats', |
|
| 126 | - 'std' => '0', |
|
| 127 | - 'type' => 'radio', |
|
| 128 | - 'value' => '1', |
|
| 129 | - 'radiogroup' => 'start' |
|
| 130 | - ), |
|
| 131 | - array( |
|
| 132 | - 'name' => __('Show business owner Google Analytics stats?', 'geodirectory'),
|
|
| 133 | - 'desc' => __('No', 'geodirectory'),
|
|
| 134 | - 'id' => 'geodir_ga_stats', |
|
| 135 | - 'std' => '1', |
|
| 136 | - 'type' => 'radio', |
|
| 137 | - 'value' => '0', |
|
| 138 | - 'radiogroup' => 'end' |
|
| 139 | - ), |
|
| 140 | - |
|
| 141 | - array( |
|
| 142 | - 'name' => __('Google analytics access', 'geodirectory'),
|
|
| 143 | - 'desc' => '', |
|
| 144 | - 'id' => 'geodir_ga_token', |
|
| 145 | - 'type' => 'google_analytics', |
|
| 146 | - 'css' => 'min-width:300px;', |
|
| 147 | - 'std' => '' // Default value for the page title - changed in settings |
|
| 148 | - ), |
|
| 149 | - |
|
| 150 | - array( |
|
| 151 | - 'name' => __('Google analytics Auth Code', 'geodirectory'),
|
|
| 152 | - 'desc' => __('You must save this setting before accounts will show.', 'geodirectory'),
|
|
| 153 | - 'id' => 'geodir_ga_auth_code', |
|
| 154 | - 'type' => 'text', |
|
| 155 | - 'css' => 'min-width:300px;', |
|
| 156 | - 'std' => '' // Default value for the page title - changed in settings |
|
| 157 | - ), |
|
| 158 | - |
|
| 159 | - array( |
|
| 160 | - 'name' => __('Analytics Account', 'geodirectory'),
|
|
| 161 | - 'desc' => __('Select the account that you setup for this site.', 'geodirectory'),
|
|
| 162 | - 'id' => 'geodir_ga_account_id', |
|
| 163 | - 'css' => 'min-width:300px;', |
|
| 164 | - 'std' => 'gridview_onehalf', |
|
| 165 | - 'type' => 'select', |
|
| 166 | - 'class' => 'chosen_select', |
|
| 167 | - 'options' => geodir_gd_accounts() |
|
| 168 | - ), |
|
| 169 | - |
|
| 170 | - |
|
| 171 | - array( |
|
| 172 | - 'name' => __('Add Google analytics tracking code to site?', 'geodirectory'),
|
|
| 173 | - 'desc' => __('Yes <small>(this will automatically add the correct tracking code to your site)</small>', 'geodirectory'),
|
|
| 174 | - 'id' => 'geodir_ga_add_tracking_code', |
|
| 175 | - 'std' => '0', |
|
| 176 | - 'type' => 'radio', |
|
| 177 | - 'value' => '1', |
|
| 178 | - 'radiogroup' => 'start' |
|
| 179 | - ), |
|
| 180 | - array( |
|
| 181 | - 'name' => __('Add Google analytics tracking code to site?', 'geodirectory'),
|
|
| 182 | - 'desc' => __('No <small>(if you already have tracking code added you should not add it again)</small>', 'geodirectory'),
|
|
| 183 | - 'id' => 'geodir_ga_add_tracking_code', |
|
| 184 | - 'std' => '1', |
|
| 185 | - 'type' => 'radio', |
|
| 186 | - 'value' => '0', |
|
| 187 | - 'radiogroup' => 'end' |
|
| 188 | - ), |
|
| 189 | - |
|
| 190 | - array( |
|
| 191 | - 'name' => __('Anonymize user IP?', 'geodirectory'),
|
|
| 192 | - 'desc' => __('In most cases this is not required, this is to comply with certain country laws such as Germany.', 'geodirectory'),
|
|
| 193 | - 'id' => 'geodir_ga_anonymize_ip', |
|
| 194 | - 'type' => 'checkbox', |
|
| 195 | - 'std' => '0' |
|
| 196 | - ), |
|
| 197 | - |
|
| 198 | - array( |
|
| 199 | - 'name' => __('Auto refresh active users?', 'geodirectory'),
|
|
| 200 | - 'desc' => __('If ticked it uses the auto refresh time below, if not it never refreshes unless the refresh button is clicked.', 'geodirectory'),
|
|
| 201 | - 'id' => 'geodir_ga_auto_refresh', |
|
| 202 | - 'type' => 'checkbox', |
|
| 203 | - 'std' => '0' |
|
| 204 | - ), |
|
| 205 | - array( |
|
| 206 | - 'name' => __('Time interval for auto refresh active users', 'geodirectory'),
|
|
| 207 | - 'desc' => __('Time interval in seconds to auto refresh active users. The active users will be auto refreshed after this time interval. Leave blank or use 0(zero) to disable auto refresh. Default: 5', 'geodirectory'),
|
|
| 208 | - 'id' => 'geodir_ga_refresh_time', |
|
| 209 | - 'type' => 'text', |
|
| 210 | - 'std' => '5' |
|
| 211 | - ), |
|
| 212 | - |
|
| 213 | - array('type' => 'sectionend', 'id' => 'google_analytic_settings'),
|
|
| 116 | + array('name' => __('Google Analytics', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'google_analytic_settings'),
|
|
| 117 | + |
|
| 118 | + array('name' => __('Google Analytic Settings', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'google_analytic_settings'),
|
|
| 119 | + |
|
| 120 | + |
|
| 121 | + |
|
| 122 | + array( |
|
| 123 | + 'name' => __('Show business owner google analytics stats?', 'geodirectory'),
|
|
| 124 | + 'desc' => __('Yes', 'geodirectory'),
|
|
| 125 | + 'id' => 'geodir_ga_stats', |
|
| 126 | + 'std' => '0', |
|
| 127 | + 'type' => 'radio', |
|
| 128 | + 'value' => '1', |
|
| 129 | + 'radiogroup' => 'start' |
|
| 130 | + ), |
|
| 131 | + array( |
|
| 132 | + 'name' => __('Show business owner Google Analytics stats?', 'geodirectory'),
|
|
| 133 | + 'desc' => __('No', 'geodirectory'),
|
|
| 134 | + 'id' => 'geodir_ga_stats', |
|
| 135 | + 'std' => '1', |
|
| 136 | + 'type' => 'radio', |
|
| 137 | + 'value' => '0', |
|
| 138 | + 'radiogroup' => 'end' |
|
| 139 | + ), |
|
| 140 | + |
|
| 141 | + array( |
|
| 142 | + 'name' => __('Google analytics access', 'geodirectory'),
|
|
| 143 | + 'desc' => '', |
|
| 144 | + 'id' => 'geodir_ga_token', |
|
| 145 | + 'type' => 'google_analytics', |
|
| 146 | + 'css' => 'min-width:300px;', |
|
| 147 | + 'std' => '' // Default value for the page title - changed in settings |
|
| 148 | + ), |
|
| 149 | + |
|
| 150 | + array( |
|
| 151 | + 'name' => __('Google analytics Auth Code', 'geodirectory'),
|
|
| 152 | + 'desc' => __('You must save this setting before accounts will show.', 'geodirectory'),
|
|
| 153 | + 'id' => 'geodir_ga_auth_code', |
|
| 154 | + 'type' => 'text', |
|
| 155 | + 'css' => 'min-width:300px;', |
|
| 156 | + 'std' => '' // Default value for the page title - changed in settings |
|
| 157 | + ), |
|
| 158 | + |
|
| 159 | + array( |
|
| 160 | + 'name' => __('Analytics Account', 'geodirectory'),
|
|
| 161 | + 'desc' => __('Select the account that you setup for this site.', 'geodirectory'),
|
|
| 162 | + 'id' => 'geodir_ga_account_id', |
|
| 163 | + 'css' => 'min-width:300px;', |
|
| 164 | + 'std' => 'gridview_onehalf', |
|
| 165 | + 'type' => 'select', |
|
| 166 | + 'class' => 'chosen_select', |
|
| 167 | + 'options' => geodir_gd_accounts() |
|
| 168 | + ), |
|
| 169 | + |
|
| 170 | + |
|
| 171 | + array( |
|
| 172 | + 'name' => __('Add Google analytics tracking code to site?', 'geodirectory'),
|
|
| 173 | + 'desc' => __('Yes <small>(this will automatically add the correct tracking code to your site)</small>', 'geodirectory'),
|
|
| 174 | + 'id' => 'geodir_ga_add_tracking_code', |
|
| 175 | + 'std' => '0', |
|
| 176 | + 'type' => 'radio', |
|
| 177 | + 'value' => '1', |
|
| 178 | + 'radiogroup' => 'start' |
|
| 179 | + ), |
|
| 180 | + array( |
|
| 181 | + 'name' => __('Add Google analytics tracking code to site?', 'geodirectory'),
|
|
| 182 | + 'desc' => __('No <small>(if you already have tracking code added you should not add it again)</small>', 'geodirectory'),
|
|
| 183 | + 'id' => 'geodir_ga_add_tracking_code', |
|
| 184 | + 'std' => '1', |
|
| 185 | + 'type' => 'radio', |
|
| 186 | + 'value' => '0', |
|
| 187 | + 'radiogroup' => 'end' |
|
| 188 | + ), |
|
| 189 | + |
|
| 190 | + array( |
|
| 191 | + 'name' => __('Anonymize user IP?', 'geodirectory'),
|
|
| 192 | + 'desc' => __('In most cases this is not required, this is to comply with certain country laws such as Germany.', 'geodirectory'),
|
|
| 193 | + 'id' => 'geodir_ga_anonymize_ip', |
|
| 194 | + 'type' => 'checkbox', |
|
| 195 | + 'std' => '0' |
|
| 196 | + ), |
|
| 197 | + |
|
| 198 | + array( |
|
| 199 | + 'name' => __('Auto refresh active users?', 'geodirectory'),
|
|
| 200 | + 'desc' => __('If ticked it uses the auto refresh time below, if not it never refreshes unless the refresh button is clicked.', 'geodirectory'),
|
|
| 201 | + 'id' => 'geodir_ga_auto_refresh', |
|
| 202 | + 'type' => 'checkbox', |
|
| 203 | + 'std' => '0' |
|
| 204 | + ), |
|
| 205 | + array( |
|
| 206 | + 'name' => __('Time interval for auto refresh active users', 'geodirectory'),
|
|
| 207 | + 'desc' => __('Time interval in seconds to auto refresh active users. The active users will be auto refreshed after this time interval. Leave blank or use 0(zero) to disable auto refresh. Default: 5', 'geodirectory'),
|
|
| 208 | + 'id' => 'geodir_ga_refresh_time', |
|
| 209 | + 'type' => 'text', |
|
| 210 | + 'std' => '5' |
|
| 211 | + ), |
|
| 212 | + |
|
| 213 | + array('type' => 'sectionend', 'id' => 'google_analytic_settings'),
|
|
| 214 | 214 | |
| 215 | 215 | )); // google_analytic_settings End |
| 216 | 216 | |
@@ -222,84 +222,84 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | $search_settings = apply_filters('geodir_search_settings', array(
|
| 224 | 224 | |
| 225 | - array('name' => __('Search', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'search_settings'),
|
|
| 226 | - |
|
| 227 | - array('name' => __('Search Settings', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'search_settings'),
|
|
| 228 | - |
|
| 229 | - array( |
|
| 230 | - 'name' => __('Limit squared distance area to X miles (helps improve search speed)', 'geodirectory'),
|
|
| 231 | - 'desc' => __('Enter whole number only ex. 40 (Tokyo is largest city in the world @40 sq miles) LEAVE BLANK FOR NO DISTANCE LIMIT', 'geodirectory'),
|
|
| 232 | - 'id' => 'geodir_search_dist', |
|
| 233 | - 'type' => 'text', |
|
| 234 | - 'css' => 'min-width:300px;', |
|
| 235 | - 'std' => '40' // Default value for the page title - changed in settings |
|
| 236 | - ), |
|
| 237 | - |
|
| 238 | - array( |
|
| 239 | - 'name' => __('Show search distances in miles or km', 'geodirectory'),
|
|
| 240 | - 'desc' => __('Miles', 'geodirectory'),
|
|
| 241 | - 'id' => 'geodir_search_dist_1', |
|
| 242 | - 'std' => 'miles', |
|
| 243 | - 'type' => 'radio', |
|
| 244 | - 'value' => 'miles', |
|
| 245 | - 'radiogroup' => 'start' |
|
| 246 | - ), |
|
| 247 | - array( |
|
| 248 | - 'name' => __('Show search distances in miles or km', 'geodirectory'),
|
|
| 249 | - 'desc' => __('Kilometers', 'geodirectory'),
|
|
| 250 | - 'id' => 'geodir_search_dist_1', |
|
| 251 | - 'std' => 'miles', |
|
| 252 | - 'type' => 'radio', |
|
| 253 | - 'value' => 'km', |
|
| 254 | - 'radiogroup' => 'end' |
|
| 255 | - ), |
|
| 256 | - |
|
| 257 | - array( |
|
| 258 | - 'name' => __('If distance is less than 0.01 show distance in meters or feet', 'geodirectory'),
|
|
| 259 | - 'desc' => __('Meters', 'geodirectory'),
|
|
| 260 | - 'id' => 'geodir_search_dist_2', |
|
| 261 | - 'std' => 'meters', |
|
| 262 | - 'type' => 'radio', |
|
| 263 | - 'value' => 'meters', |
|
| 264 | - 'radiogroup' => 'start' |
|
| 265 | - ), |
|
| 266 | - |
|
| 267 | - array( |
|
| 268 | - 'name' => __('If distance is less than 0.01 show distance in meters or feet', 'geodirectory'),
|
|
| 269 | - 'desc' => __('Feet', 'geodirectory'),
|
|
| 270 | - 'id' => 'geodir_search_dist_2', |
|
| 271 | - 'std' => 'meters', |
|
| 272 | - 'type' => 'radio', |
|
| 273 | - 'value' => 'feet', |
|
| 274 | - 'radiogroup' => 'end' |
|
| 275 | - ), |
|
| 276 | - |
|
| 277 | - array( |
|
| 278 | - 'name' => __('Add location specific text to (Near) search for Google', 'geodirectory'),
|
|
| 279 | - 'desc' => __('This is usefull if your directory is limted to one location such as: New York or Australia (this setting should be blank if using default country, regions etc with multilocation addon as it will automatically add them)', 'geodirectory'),
|
|
| 280 | - 'id' => 'geodir_search_near_addition', |
|
| 281 | - 'type' => 'text', |
|
| 282 | - 'css' => 'min-width:300px;', |
|
| 283 | - 'std' => '' |
|
| 284 | - ), |
|
| 285 | - array( |
|
| 286 | - 'name' => __('Individual word search limit', 'geodirectory'),
|
|
| 287 | - 'desc' => __('With this option you can limit individual words being searched for, for example searching for `Jo Brown` would return results with words like `Jones`, you can exclude these types of small character words if you wish.', 'geodirectory'),
|
|
| 288 | - 'id' => 'geodir_search_word_limit', |
|
| 289 | - 'css' => 'min-width:300px;', |
|
| 290 | - 'std' => 'gridview_onehalf', |
|
| 291 | - 'type' => 'select', |
|
| 292 | - 'class' => 'chosen_select', |
|
| 293 | - 'options' => array_unique(array( |
|
| 294 | - '0' => __('Disabled', 'geodirectory'),
|
|
| 295 | - '1' => __('1 Character words excluded', 'geodirectory'),
|
|
| 296 | - '2' => __('2 Character words and less excluded', 'geodirectory'),
|
|
| 297 | - '3' => __('3 Character words and less excluded', 'geodirectory'),
|
|
| 298 | - )) |
|
| 299 | - ), |
|
| 300 | - |
|
| 301 | - |
|
| 302 | - array('type' => 'sectionend', 'id' => 'search_settings'),
|
|
| 225 | + array('name' => __('Search', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'search_settings'),
|
|
| 226 | + |
|
| 227 | + array('name' => __('Search Settings', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'search_settings'),
|
|
| 228 | + |
|
| 229 | + array( |
|
| 230 | + 'name' => __('Limit squared distance area to X miles (helps improve search speed)', 'geodirectory'),
|
|
| 231 | + 'desc' => __('Enter whole number only ex. 40 (Tokyo is largest city in the world @40 sq miles) LEAVE BLANK FOR NO DISTANCE LIMIT', 'geodirectory'),
|
|
| 232 | + 'id' => 'geodir_search_dist', |
|
| 233 | + 'type' => 'text', |
|
| 234 | + 'css' => 'min-width:300px;', |
|
| 235 | + 'std' => '40' // Default value for the page title - changed in settings |
|
| 236 | + ), |
|
| 237 | + |
|
| 238 | + array( |
|
| 239 | + 'name' => __('Show search distances in miles or km', 'geodirectory'),
|
|
| 240 | + 'desc' => __('Miles', 'geodirectory'),
|
|
| 241 | + 'id' => 'geodir_search_dist_1', |
|
| 242 | + 'std' => 'miles', |
|
| 243 | + 'type' => 'radio', |
|
| 244 | + 'value' => 'miles', |
|
| 245 | + 'radiogroup' => 'start' |
|
| 246 | + ), |
|
| 247 | + array( |
|
| 248 | + 'name' => __('Show search distances in miles or km', 'geodirectory'),
|
|
| 249 | + 'desc' => __('Kilometers', 'geodirectory'),
|
|
| 250 | + 'id' => 'geodir_search_dist_1', |
|
| 251 | + 'std' => 'miles', |
|
| 252 | + 'type' => 'radio', |
|
| 253 | + 'value' => 'km', |
|
| 254 | + 'radiogroup' => 'end' |
|
| 255 | + ), |
|
| 256 | + |
|
| 257 | + array( |
|
| 258 | + 'name' => __('If distance is less than 0.01 show distance in meters or feet', 'geodirectory'),
|
|
| 259 | + 'desc' => __('Meters', 'geodirectory'),
|
|
| 260 | + 'id' => 'geodir_search_dist_2', |
|
| 261 | + 'std' => 'meters', |
|
| 262 | + 'type' => 'radio', |
|
| 263 | + 'value' => 'meters', |
|
| 264 | + 'radiogroup' => 'start' |
|
| 265 | + ), |
|
| 266 | + |
|
| 267 | + array( |
|
| 268 | + 'name' => __('If distance is less than 0.01 show distance in meters or feet', 'geodirectory'),
|
|
| 269 | + 'desc' => __('Feet', 'geodirectory'),
|
|
| 270 | + 'id' => 'geodir_search_dist_2', |
|
| 271 | + 'std' => 'meters', |
|
| 272 | + 'type' => 'radio', |
|
| 273 | + 'value' => 'feet', |
|
| 274 | + 'radiogroup' => 'end' |
|
| 275 | + ), |
|
| 276 | + |
|
| 277 | + array( |
|
| 278 | + 'name' => __('Add location specific text to (Near) search for Google', 'geodirectory'),
|
|
| 279 | + 'desc' => __('This is usefull if your directory is limted to one location such as: New York or Australia (this setting should be blank if using default country, regions etc with multilocation addon as it will automatically add them)', 'geodirectory'),
|
|
| 280 | + 'id' => 'geodir_search_near_addition', |
|
| 281 | + 'type' => 'text', |
|
| 282 | + 'css' => 'min-width:300px;', |
|
| 283 | + 'std' => '' |
|
| 284 | + ), |
|
| 285 | + array( |
|
| 286 | + 'name' => __('Individual word search limit', 'geodirectory'),
|
|
| 287 | + 'desc' => __('With this option you can limit individual words being searched for, for example searching for `Jo Brown` would return results with words like `Jones`, you can exclude these types of small character words if you wish.', 'geodirectory'),
|
|
| 288 | + 'id' => 'geodir_search_word_limit', |
|
| 289 | + 'css' => 'min-width:300px;', |
|
| 290 | + 'std' => 'gridview_onehalf', |
|
| 291 | + 'type' => 'select', |
|
| 292 | + 'class' => 'chosen_select', |
|
| 293 | + 'options' => array_unique(array( |
|
| 294 | + '0' => __('Disabled', 'geodirectory'),
|
|
| 295 | + '1' => __('1 Character words excluded', 'geodirectory'),
|
|
| 296 | + '2' => __('2 Character words and less excluded', 'geodirectory'),
|
|
| 297 | + '3' => __('3 Character words and less excluded', 'geodirectory'),
|
|
| 298 | + )) |
|
| 299 | + ), |
|
| 300 | + |
|
| 301 | + |
|
| 302 | + array('type' => 'sectionend', 'id' => 'search_settings'),
|
|
| 303 | 303 | |
| 304 | 304 | )); //search_settings End |
| 305 | 305 | |
@@ -311,17 +311,17 @@ discard block |
||
| 311 | 311 | */ |
| 312 | 312 | $dummy_data_settings = apply_filters('geodir_dummy_data_settings', array(
|
| 313 | 313 | |
| 314 | - array('name' => __('Dummy Data', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'dummy_data_settings'),
|
|
| 315 | - |
|
| 316 | - array( |
|
| 317 | - 'name' => '', |
|
| 318 | - 'desc' => '', |
|
| 319 | - 'id' => 'geodir_dummy_data_installer', |
|
| 320 | - 'type' => 'dummy_installer', |
|
| 321 | - 'css' => 'min-width:300px;', |
|
| 322 | - 'std' => '40' // Default value for the page title - changed in settings |
|
| 323 | - ), |
|
| 324 | - array('type' => 'sectionend', 'id' => 'geodir_dummy_data_settings'),
|
|
| 314 | + array('name' => __('Dummy Data', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'dummy_data_settings'),
|
|
| 315 | + |
|
| 316 | + array( |
|
| 317 | + 'name' => '', |
|
| 318 | + 'desc' => '', |
|
| 319 | + 'id' => 'geodir_dummy_data_installer', |
|
| 320 | + 'type' => 'dummy_installer', |
|
| 321 | + 'css' => 'min-width:300px;', |
|
| 322 | + 'std' => '40' // Default value for the page title - changed in settings |
|
| 323 | + ), |
|
| 324 | + array('type' => 'sectionend', 'id' => 'geodir_dummy_data_settings'),
|
|
| 325 | 325 | |
| 326 | 326 | )); //dummy_data_settings End |
| 327 | 327 | |
@@ -16,17 +16,17 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | function geodir_theme_location_setting_fun() |
| 18 | 18 | {
|
| 19 | - $post_type_arr = array(); |
|
| 20 | - $geodir_all_nav_locations = get_registered_nav_menus(); |
|
| 21 | - $geodir_active_nav_locations = get_nav_menu_locations(); |
|
| 22 | - if (!empty($geodir_active_nav_locations) && is_array($geodir_active_nav_locations)) {
|
|
| 23 | - foreach ($geodir_active_nav_locations as $key => $theme_location) {
|
|
| 24 | - if (!empty($geodir_all_nav_locations) && is_array($geodir_all_nav_locations) && array_key_exists($key, $geodir_all_nav_locations)) |
|
| 25 | - $post_type_arr[$key] = $geodir_all_nav_locations[$key]; |
|
| 26 | - } |
|
| 27 | - } |
|
| 28 | - |
|
| 29 | - return $post_type_arr; |
|
| 19 | + $post_type_arr = array(); |
|
| 20 | + $geodir_all_nav_locations = get_registered_nav_menus(); |
|
| 21 | + $geodir_active_nav_locations = get_nav_menu_locations(); |
|
| 22 | + if (!empty($geodir_active_nav_locations) && is_array($geodir_active_nav_locations)) {
|
|
| 23 | + foreach ($geodir_active_nav_locations as $key => $theme_location) {
|
|
| 24 | + if (!empty($geodir_all_nav_locations) && is_array($geodir_all_nav_locations) && array_key_exists($key, $geodir_all_nav_locations)) |
|
| 25 | + $post_type_arr[$key] = $geodir_all_nav_locations[$key]; |
|
| 26 | + } |
|
| 27 | + } |
|
| 28 | + |
|
| 29 | + return $post_type_arr; |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | /** |
@@ -37,536 +37,536 @@ discard block |
||
| 37 | 37 | */ |
| 38 | 38 | $geodir_settings['design_settings'] = apply_filters('geodir_design_settings', array(
|
| 39 | 39 | |
| 40 | - /* Home Layout Settings start */ |
|
| 41 | - array('name' => __('Home', 'geodirectory'), 'type' => 'title', 'desc' => 'Setting to set home page layout', 'id' => 'home_page_settings '),
|
|
| 40 | + /* Home Layout Settings start */ |
|
| 41 | + array('name' => __('Home', 'geodirectory'), 'type' => 'title', 'desc' => 'Setting to set home page layout', 'id' => 'home_page_settings '),
|
|
| 42 | 42 | |
| 43 | 43 | |
| 44 | - array('name' => __('Home Top Section Settings', 'geodirectory'),
|
|
| 45 | - 'type' => 'sectionstart', |
|
| 46 | - 'desc' => '', |
|
| 47 | - 'id' => 'geodir_home_top_section'), |
|
| 44 | + array('name' => __('Home Top Section Settings', 'geodirectory'),
|
|
| 45 | + 'type' => 'sectionstart', |
|
| 46 | + 'desc' => '', |
|
| 47 | + 'id' => 'geodir_home_top_section'), |
|
| 48 | 48 | |
| 49 | - array( |
|
| 50 | - 'name' => __('Home top section', 'geodirectory'),
|
|
| 51 | - 'desc' => __('Show the top section of home page', 'geodirectory'),
|
|
| 52 | - 'id' => 'geodir_show_home_top_section', |
|
| 53 | - 'type' => 'checkbox', |
|
| 54 | - 'std' => '1' // Default value to show home top section |
|
| 55 | - ), |
|
| 49 | + array( |
|
| 50 | + 'name' => __('Home top section', 'geodirectory'),
|
|
| 51 | + 'desc' => __('Show the top section of home page', 'geodirectory'),
|
|
| 52 | + 'id' => 'geodir_show_home_top_section', |
|
| 53 | + 'type' => 'checkbox', |
|
| 54 | + 'std' => '1' // Default value to show home top section |
|
| 55 | + ), |
|
| 56 | 56 | |
| 57 | 57 | |
| 58 | - array('type' => 'sectionend', 'id' => 'geodir_home_top_section'),
|
|
| 58 | + array('type' => 'sectionend', 'id' => 'geodir_home_top_section'),
|
|
| 59 | 59 | |
| 60 | 60 | |
| 61 | - array('name' => __('Home Page Layout Settings', 'geodirectory'),
|
|
| 62 | - 'type' => 'sectionstart', |
|
| 63 | - 'desc' => '', |
|
| 64 | - 'id' => 'geodir_home_layout'), |
|
| 61 | + array('name' => __('Home Page Layout Settings', 'geodirectory'),
|
|
| 62 | + 'type' => 'sectionstart', |
|
| 63 | + 'desc' => '', |
|
| 64 | + 'id' => 'geodir_home_layout'), |
|
| 65 | 65 | |
| 66 | - array( |
|
| 67 | - 'name' => __('Home right section', 'geodirectory'),
|
|
| 68 | - 'desc' => __('Show the right section of home page', 'geodirectory'),
|
|
| 69 | - 'id' => 'geodir_show_home_right_section', |
|
| 70 | - 'type' => 'checkbox', |
|
| 71 | - 'std' => '1' // Default value to show home top section |
|
| 72 | - ), |
|
| 66 | + array( |
|
| 67 | + 'name' => __('Home right section', 'geodirectory'),
|
|
| 68 | + 'desc' => __('Show the right section of home page', 'geodirectory'),
|
|
| 69 | + 'id' => 'geodir_show_home_right_section', |
|
| 70 | + 'type' => 'checkbox', |
|
| 71 | + 'std' => '1' // Default value to show home top section |
|
| 72 | + ), |
|
| 73 | 73 | |
| 74 | - array( |
|
| 75 | - 'name' => __('Width of home right section', 'geodirectory'),
|
|
| 76 | - 'desc' => __('Enter the width of right section of home page in %', 'geodirectory'),
|
|
| 77 | - 'id' => 'geodir_width_home_right_section', |
|
| 78 | - 'type' => 'text', |
|
| 79 | - 'css' => 'min-width:300px;', |
|
| 80 | - 'std' => '30' // Default value to show home top section |
|
| 81 | - ), |
|
| 74 | + array( |
|
| 75 | + 'name' => __('Width of home right section', 'geodirectory'),
|
|
| 76 | + 'desc' => __('Enter the width of right section of home page in %', 'geodirectory'),
|
|
| 77 | + 'id' => 'geodir_width_home_right_section', |
|
| 78 | + 'type' => 'text', |
|
| 79 | + 'css' => 'min-width:300px;', |
|
| 80 | + 'std' => '30' // Default value to show home top section |
|
| 81 | + ), |
|
| 82 | 82 | |
| 83 | - array( |
|
| 84 | - 'name' => __('Home content section', 'geodirectory'),
|
|
| 85 | - 'desc' => __('Show the content section of home page', 'geodirectory'),
|
|
| 86 | - 'id' => 'geodir_show_home_contant_section', |
|
| 87 | - 'type' => 'checkbox', |
|
| 88 | - 'std' => '1' // Default value to show home top section |
|
| 89 | - ), |
|
| 83 | + array( |
|
| 84 | + 'name' => __('Home content section', 'geodirectory'),
|
|
| 85 | + 'desc' => __('Show the content section of home page', 'geodirectory'),
|
|
| 86 | + 'id' => 'geodir_show_home_contant_section', |
|
| 87 | + 'type' => 'checkbox', |
|
| 88 | + 'std' => '1' // Default value to show home top section |
|
| 89 | + ), |
|
| 90 | 90 | |
| 91 | - array( |
|
| 92 | - 'name' => __('Width of home content section', 'geodirectory'),
|
|
| 93 | - 'desc' => __('Enter the width of content section of home page in %', 'geodirectory'),
|
|
| 94 | - 'id' => 'geodir_width_home_contant_section', |
|
| 95 | - 'type' => 'text', |
|
| 96 | - 'css' => 'min-width:300px;', |
|
| 97 | - 'std' => '63' // Default value to show home top section |
|
| 98 | - ), |
|
| 91 | + array( |
|
| 92 | + 'name' => __('Width of home content section', 'geodirectory'),
|
|
| 93 | + 'desc' => __('Enter the width of content section of home page in %', 'geodirectory'),
|
|
| 94 | + 'id' => 'geodir_width_home_contant_section', |
|
| 95 | + 'type' => 'text', |
|
| 96 | + 'css' => 'min-width:300px;', |
|
| 97 | + 'std' => '63' // Default value to show home top section |
|
| 98 | + ), |
|
| 99 | 99 | |
| 100 | - array( |
|
| 101 | - 'name' => __('Home left section', 'geodirectory'),
|
|
| 102 | - 'desc' => __('Show the left section of home page', 'geodirectory'),
|
|
| 103 | - 'id' => 'geodir_show_home_left_section', |
|
| 104 | - 'type' => 'checkbox', |
|
| 105 | - 'std' => '0' // Default value to show home top section |
|
| 106 | - ), |
|
| 100 | + array( |
|
| 101 | + 'name' => __('Home left section', 'geodirectory'),
|
|
| 102 | + 'desc' => __('Show the left section of home page', 'geodirectory'),
|
|
| 103 | + 'id' => 'geodir_show_home_left_section', |
|
| 104 | + 'type' => 'checkbox', |
|
| 105 | + 'std' => '0' // Default value to show home top section |
|
| 106 | + ), |
|
| 107 | 107 | |
| 108 | - array( |
|
| 109 | - 'name' => __('Width of home left section', 'geodirectory'),
|
|
| 110 | - 'desc' => __('Enter the width of left section of home page in %', 'geodirectory'),
|
|
| 111 | - 'id' => 'geodir_width_home_left_section', |
|
| 112 | - 'type' => 'text', |
|
| 113 | - 'css' => 'min-width:300px;', |
|
| 114 | - 'std' => '30' // Default value to show home top section |
|
| 115 | - ), |
|
| 108 | + array( |
|
| 109 | + 'name' => __('Width of home left section', 'geodirectory'),
|
|
| 110 | + 'desc' => __('Enter the width of left section of home page in %', 'geodirectory'),
|
|
| 111 | + 'id' => 'geodir_width_home_left_section', |
|
| 112 | + 'type' => 'text', |
|
| 113 | + 'css' => 'min-width:300px;', |
|
| 114 | + 'std' => '30' // Default value to show home top section |
|
| 115 | + ), |
|
| 116 | 116 | |
| 117 | - array( |
|
| 118 | - 'name' => __('Home bottom section', 'geodirectory'),
|
|
| 119 | - 'desc' => __('Show the bottom section of home page', 'geodirectory'),
|
|
| 120 | - 'id' => 'geodir_show_home_bottom_section', |
|
| 121 | - 'type' => 'checkbox', |
|
| 122 | - 'std' => '0' // Default value to show home top section |
|
| 123 | - ), |
|
| 124 | - array( |
|
| 125 | - 'name' => __('Resize image large size', 'geodirectory'),
|
|
| 126 | - 'desc' => sprintf(__('Use default wordpress media image large size ( %s ) for featured image upload. If unchecked then default geodirectory image large size ( 800x800 ) will be used.', 'geodirectory'), get_option('large_size_w') . 'x' . get_option('large_size_h')),
|
|
| 127 | - 'id' => 'geodir_use_wp_media_large_size', |
|
| 128 | - 'type' => 'checkbox', |
|
| 129 | - 'std' => '0' |
|
| 130 | - ), |
|
| 117 | + array( |
|
| 118 | + 'name' => __('Home bottom section', 'geodirectory'),
|
|
| 119 | + 'desc' => __('Show the bottom section of home page', 'geodirectory'),
|
|
| 120 | + 'id' => 'geodir_show_home_bottom_section', |
|
| 121 | + 'type' => 'checkbox', |
|
| 122 | + 'std' => '0' // Default value to show home top section |
|
| 123 | + ), |
|
| 124 | + array( |
|
| 125 | + 'name' => __('Resize image large size', 'geodirectory'),
|
|
| 126 | + 'desc' => sprintf(__('Use default wordpress media image large size ( %s ) for featured image upload. If unchecked then default geodirectory image large size ( 800x800 ) will be used.', 'geodirectory'), get_option('large_size_w') . 'x' . get_option('large_size_h')),
|
|
| 127 | + 'id' => 'geodir_use_wp_media_large_size', |
|
| 128 | + 'type' => 'checkbox', |
|
| 129 | + 'std' => '0' |
|
| 130 | + ), |
|
| 131 | 131 | |
| 132 | - array('type' => 'sectionend', 'id' => 'geodir_home_layout'),
|
|
| 132 | + array('type' => 'sectionend', 'id' => 'geodir_home_layout'),
|
|
| 133 | 133 | |
| 134 | 134 | |
| 135 | - /* Home Layout Settings end */ |
|
| 135 | + /* Home Layout Settings end */ |
|
| 136 | 136 | |
| 137 | 137 | |
| 138 | - /* Listing Layout Settings end */ |
|
| 138 | + /* Listing Layout Settings end */ |
|
| 139 | 139 | |
| 140 | - array('name' => __('Listings', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_listing_settings '),
|
|
| 140 | + array('name' => __('Listings', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_listing_settings '),
|
|
| 141 | 141 | |
| 142 | 142 | |
| 143 | - array('name' => __('Listing Page Layout Settings', 'geodirectory'),
|
|
| 144 | - 'type' => 'sectionstart', |
|
| 145 | - 'desc' => '', |
|
| 146 | - 'id' => 'geodir_listing_layout'), |
|
| 143 | + array('name' => __('Listing Page Layout Settings', 'geodirectory'),
|
|
| 144 | + 'type' => 'sectionstart', |
|
| 145 | + 'desc' => '', |
|
| 146 | + 'id' => 'geodir_listing_layout'), |
|
| 147 | 147 | |
| 148 | - array( |
|
| 149 | - 'name' => __('Listing top section', 'geodirectory'),
|
|
| 150 | - 'desc' => __('Show the top section of listing page', 'geodirectory'),
|
|
| 151 | - 'id' => 'geodir_show_listing_top_section', |
|
| 152 | - 'type' => 'checkbox', |
|
| 153 | - 'std' => '1' // Default value to show home top section |
|
| 154 | - ), |
|
| 148 | + array( |
|
| 149 | + 'name' => __('Listing top section', 'geodirectory'),
|
|
| 150 | + 'desc' => __('Show the top section of listing page', 'geodirectory'),
|
|
| 151 | + 'id' => 'geodir_show_listing_top_section', |
|
| 152 | + 'type' => 'checkbox', |
|
| 153 | + 'std' => '1' // Default value to show home top section |
|
| 154 | + ), |
|
| 155 | 155 | |
| 156 | - array( |
|
| 157 | - 'name' => __('Listing right section', 'geodirectory'),
|
|
| 158 | - 'desc' => __('Show the right section of listing page', 'geodirectory'),
|
|
| 159 | - 'id' => 'geodir_show_listing_right_section', |
|
| 160 | - 'type' => 'checkbox', |
|
| 161 | - 'std' => '1' // Default value to show home top section |
|
| 162 | - ), |
|
| 156 | + array( |
|
| 157 | + 'name' => __('Listing right section', 'geodirectory'),
|
|
| 158 | + 'desc' => __('Show the right section of listing page', 'geodirectory'),
|
|
| 159 | + 'id' => 'geodir_show_listing_right_section', |
|
| 160 | + 'type' => 'checkbox', |
|
| 161 | + 'std' => '1' // Default value to show home top section |
|
| 162 | + ), |
|
| 163 | 163 | |
| 164 | - array( |
|
| 165 | - 'name' => __('Width of listing right section', 'geodirectory'),
|
|
| 166 | - 'desc' => __('Enter the width of right section of listing page in %', 'geodirectory'),
|
|
| 167 | - 'id' => 'geodir_width_listing_right_section', |
|
| 168 | - 'type' => 'text', |
|
| 169 | - 'css' => 'min-width:300px;', |
|
| 170 | - 'std' => '30' // Default value to show home top section |
|
| 171 | - ), |
|
| 164 | + array( |
|
| 165 | + 'name' => __('Width of listing right section', 'geodirectory'),
|
|
| 166 | + 'desc' => __('Enter the width of right section of listing page in %', 'geodirectory'),
|
|
| 167 | + 'id' => 'geodir_width_listing_right_section', |
|
| 168 | + 'type' => 'text', |
|
| 169 | + 'css' => 'min-width:300px;', |
|
| 170 | + 'std' => '30' // Default value to show home top section |
|
| 171 | + ), |
|
| 172 | 172 | |
| 173 | 173 | |
| 174 | - array( |
|
| 175 | - 'name' => __('Listing content section view', 'geodirectory'),
|
|
| 176 | - 'desc' => __('Set the listing view of listing page', 'geodirectory'),
|
|
| 177 | - 'id' => 'geodir_listing_view', |
|
| 178 | - 'css' => 'min-width:300px;', |
|
| 179 | - 'std' => 'gridview_onehalf', |
|
| 180 | - 'type' => 'select', |
|
| 181 | - 'class' => 'chosen_select', |
|
| 182 | - 'options' => array_unique(array( |
|
| 183 | - 'gridview_onehalf' => __('Grid View (Two Columns)', 'geodirectory'),
|
|
| 184 | - 'gridview_onethird' => __('Grid View (Three Columns)', 'geodirectory'),
|
|
| 185 | - 'gridview_onefourth' => __('Grid View (Four Columns)', 'geodirectory'),
|
|
| 186 | - 'gridview_onefifth' => __('Grid View (Five Columns)', 'geodirectory'),
|
|
| 187 | - 'listview' => __('List view', 'geodirectory'),
|
|
| 188 | - )) |
|
| 189 | - ), |
|
| 174 | + array( |
|
| 175 | + 'name' => __('Listing content section view', 'geodirectory'),
|
|
| 176 | + 'desc' => __('Set the listing view of listing page', 'geodirectory'),
|
|
| 177 | + 'id' => 'geodir_listing_view', |
|
| 178 | + 'css' => 'min-width:300px;', |
|
| 179 | + 'std' => 'gridview_onehalf', |
|
| 180 | + 'type' => 'select', |
|
| 181 | + 'class' => 'chosen_select', |
|
| 182 | + 'options' => array_unique(array( |
|
| 183 | + 'gridview_onehalf' => __('Grid View (Two Columns)', 'geodirectory'),
|
|
| 184 | + 'gridview_onethird' => __('Grid View (Three Columns)', 'geodirectory'),
|
|
| 185 | + 'gridview_onefourth' => __('Grid View (Four Columns)', 'geodirectory'),
|
|
| 186 | + 'gridview_onefifth' => __('Grid View (Five Columns)', 'geodirectory'),
|
|
| 187 | + 'listview' => __('List view', 'geodirectory'),
|
|
| 188 | + )) |
|
| 189 | + ), |
|
| 190 | 190 | |
| 191 | - array( |
|
| 192 | - 'name' => __('Width of listing content section', 'geodirectory'),
|
|
| 193 | - 'desc' => __('Enter the width of content section of listing page in %', 'geodirectory'),
|
|
| 194 | - 'id' => 'geodir_width_listing_contant_section', |
|
| 195 | - 'type' => 'text', |
|
| 196 | - 'css' => 'min-width:300px;', |
|
| 197 | - 'std' => '63' // Default value to show home top section |
|
| 198 | - ), |
|
| 191 | + array( |
|
| 192 | + 'name' => __('Width of listing content section', 'geodirectory'),
|
|
| 193 | + 'desc' => __('Enter the width of content section of listing page in %', 'geodirectory'),
|
|
| 194 | + 'id' => 'geodir_width_listing_contant_section', |
|
| 195 | + 'type' => 'text', |
|
| 196 | + 'css' => 'min-width:300px;', |
|
| 197 | + 'std' => '63' // Default value to show home top section |
|
| 198 | + ), |
|
| 199 | 199 | |
| 200 | - array( |
|
| 201 | - 'name' => __('Listing left section', 'geodirectory'),
|
|
| 202 | - 'desc' => __('Show the left section of listing page', 'geodirectory'),
|
|
| 203 | - 'id' => 'geodir_show_listing_left_section', |
|
| 204 | - 'type' => 'checkbox', |
|
| 205 | - 'std' => '0' // Default value to show home top section |
|
| 206 | - ), |
|
| 200 | + array( |
|
| 201 | + 'name' => __('Listing left section', 'geodirectory'),
|
|
| 202 | + 'desc' => __('Show the left section of listing page', 'geodirectory'),
|
|
| 203 | + 'id' => 'geodir_show_listing_left_section', |
|
| 204 | + 'type' => 'checkbox', |
|
| 205 | + 'std' => '0' // Default value to show home top section |
|
| 206 | + ), |
|
| 207 | 207 | |
| 208 | - array( |
|
| 209 | - 'name' => __('Width of listing left section', 'geodirectory'),
|
|
| 210 | - 'desc' => __('Enter the width of left section of listing in %', 'geodirectory'),
|
|
| 211 | - 'id' => 'geodir_width_listing_left_section', |
|
| 212 | - 'type' => 'text', |
|
| 213 | - 'css' => 'min-width:300px;', |
|
| 214 | - 'std' => '30' // Default value to show home top section |
|
| 215 | - ), |
|
| 208 | + array( |
|
| 209 | + 'name' => __('Width of listing left section', 'geodirectory'),
|
|
| 210 | + 'desc' => __('Enter the width of left section of listing in %', 'geodirectory'),
|
|
| 211 | + 'id' => 'geodir_width_listing_left_section', |
|
| 212 | + 'type' => 'text', |
|
| 213 | + 'css' => 'min-width:300px;', |
|
| 214 | + 'std' => '30' // Default value to show home top section |
|
| 215 | + ), |
|
| 216 | 216 | |
| 217 | - array( |
|
| 218 | - 'name' => __('Listing bottom section', 'geodirectory'),
|
|
| 219 | - 'desc' => __('Show the bottom section of listing page', 'geodirectory'),
|
|
| 220 | - 'id' => 'geodir_show_listing_bottom_section', |
|
| 221 | - 'type' => 'checkbox', |
|
| 222 | - 'std' => '0' // Default value to show home top section |
|
| 223 | - ), |
|
| 217 | + array( |
|
| 218 | + 'name' => __('Listing bottom section', 'geodirectory'),
|
|
| 219 | + 'desc' => __('Show the bottom section of listing page', 'geodirectory'),
|
|
| 220 | + 'id' => 'geodir_show_listing_bottom_section', |
|
| 221 | + 'type' => 'checkbox', |
|
| 222 | + 'std' => '0' // Default value to show home top section |
|
| 223 | + ), |
|
| 224 | 224 | |
| 225 | - array( |
|
| 226 | - 'name' => __('Upload listing no image', 'geodirectory'),
|
|
| 227 | - 'desc' => '', |
|
| 228 | - 'id' => 'geodir_listing_no_img', |
|
| 229 | - 'type' => 'file', |
|
| 230 | - 'std' => '0' // Default value to show home top section |
|
| 231 | - ), |
|
| 225 | + array( |
|
| 226 | + 'name' => __('Upload listing no image', 'geodirectory'),
|
|
| 227 | + 'desc' => '', |
|
| 228 | + 'id' => 'geodir_listing_no_img', |
|
| 229 | + 'type' => 'file', |
|
| 230 | + 'std' => '0' // Default value to show home top section |
|
| 231 | + ), |
|
| 232 | 232 | |
| 233 | - array( |
|
| 234 | - 'name' => __('Description word limit', 'geodirectory'),
|
|
| 235 | - 'desc' => '', |
|
| 236 | - 'id' => 'geodir_desc_word_limit', |
|
| 237 | - 'type' => 'text', |
|
| 238 | - 'css' => 'min-width:300px;', |
|
| 239 | - 'std' => '50' // Default value to show home top section |
|
| 240 | - ), |
|
| 233 | + array( |
|
| 234 | + 'name' => __('Description word limit', 'geodirectory'),
|
|
| 235 | + 'desc' => '', |
|
| 236 | + 'id' => 'geodir_desc_word_limit', |
|
| 237 | + 'type' => 'text', |
|
| 238 | + 'css' => 'min-width:300px;', |
|
| 239 | + 'std' => '50' // Default value to show home top section |
|
| 240 | + ), |
|
| 241 | 241 | |
| 242 | - array( |
|
| 243 | - 'name' => __('Hover listing map animation', 'geodirectory'),
|
|
| 244 | - 'desc' => __('Bounce map pin if listing hovered', 'geodirectory'),
|
|
| 245 | - 'id' => 'geodir_listing_hover_bounce_map_pin', |
|
| 246 | - 'type' => 'checkbox', |
|
| 247 | - 'std' => '1' // Default value to show home top section |
|
| 248 | - ), |
|
| 242 | + array( |
|
| 243 | + 'name' => __('Hover listing map animation', 'geodirectory'),
|
|
| 244 | + 'desc' => __('Bounce map pin if listing hovered', 'geodirectory'),
|
|
| 245 | + 'id' => 'geodir_listing_hover_bounce_map_pin', |
|
| 246 | + 'type' => 'checkbox', |
|
| 247 | + 'std' => '1' // Default value to show home top section |
|
| 248 | + ), |
|
| 249 | 249 | |
| 250 | - array('type' => 'sectionend', 'id' => 'geodir_listing_layout'),
|
|
| 250 | + array('type' => 'sectionend', 'id' => 'geodir_listing_layout'),
|
|
| 251 | 251 | |
| 252 | 252 | |
| 253 | - array('name' => __('Listing General Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_listing_gen_settings '),
|
|
| 253 | + array('name' => __('Listing General Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_listing_gen_settings '),
|
|
| 254 | 254 | |
| 255 | - array( |
|
| 256 | - 'name' => __('New listing default status', 'geodirectory'),
|
|
| 257 | - 'desc' => __('Select new listing default status.', 'geodirectory'),
|
|
| 258 | - 'tip' => '', |
|
| 259 | - 'id' => 'geodir_new_post_default_status', |
|
| 260 | - 'css' => 'min-width:300px;', |
|
| 261 | - 'std' => 'publish', |
|
| 262 | - 'type' => 'select', |
|
| 263 | - 'class' => 'chosen_select', |
|
| 264 | - 'options' => array_unique(array( |
|
| 265 | - 'publish' => __('publish', 'geodirectory'),
|
|
| 266 | - 'draft' => __('draft', 'geodirectory'),
|
|
| 267 | - )) |
|
| 268 | - ), |
|
| 255 | + array( |
|
| 256 | + 'name' => __('New listing default status', 'geodirectory'),
|
|
| 257 | + 'desc' => __('Select new listing default status.', 'geodirectory'),
|
|
| 258 | + 'tip' => '', |
|
| 259 | + 'id' => 'geodir_new_post_default_status', |
|
| 260 | + 'css' => 'min-width:300px;', |
|
| 261 | + 'std' => 'publish', |
|
| 262 | + 'type' => 'select', |
|
| 263 | + 'class' => 'chosen_select', |
|
| 264 | + 'options' => array_unique(array( |
|
| 265 | + 'publish' => __('publish', 'geodirectory'),
|
|
| 266 | + 'draft' => __('draft', 'geodirectory'),
|
|
| 267 | + )) |
|
| 268 | + ), |
|
| 269 | 269 | |
| 270 | - array( |
|
| 271 | - 'name' => __('New listings settings', 'geodirectory'),
|
|
| 272 | - 'desc' => __('Enter number of days a listing will appear new.(enter 0 to disable feature)', 'geodirectory'),
|
|
| 273 | - 'id' => 'geodir_listing_new_days', |
|
| 274 | - 'type' => 'text', |
|
| 275 | - 'css' => 'min-width:300px;', |
|
| 276 | - 'std' => '30' // Default value for the page title - changed in settings |
|
| 277 | - ), |
|
| 270 | + array( |
|
| 271 | + 'name' => __('New listings settings', 'geodirectory'),
|
|
| 272 | + 'desc' => __('Enter number of days a listing will appear new.(enter 0 to disable feature)', 'geodirectory'),
|
|
| 273 | + 'id' => 'geodir_listing_new_days', |
|
| 274 | + 'type' => 'text', |
|
| 275 | + 'css' => 'min-width:300px;', |
|
| 276 | + 'std' => '30' // Default value for the page title - changed in settings |
|
| 277 | + ), |
|
| 278 | 278 | |
| 279 | - array('type' => 'sectionend', 'id' => 'geodir_listing_gen_settings'),
|
|
| 279 | + array('type' => 'sectionend', 'id' => 'geodir_listing_gen_settings'),
|
|
| 280 | 280 | |
| 281 | 281 | |
| 282 | - array('name' => __('Add Listing Form Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_add_listing_gen_settings'),
|
|
| 282 | + array('name' => __('Add Listing Form Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_add_listing_gen_settings'),
|
|
| 283 | 283 | |
| 284 | - array( |
|
| 285 | - 'name' => __('Enable "Accept Terms and Conditions"', 'geodirectory'),
|
|
| 286 | - 'desc' => __('Show the "Accept Terms and Conditions" field on add listing.', 'geodirectory'),
|
|
| 287 | - 'id' => 'geodir_accept_term_condition', |
|
| 288 | - 'type' => 'checkbox', |
|
| 289 | - 'std' => '1' // Default value to show home top section |
|
| 290 | - ), |
|
| 284 | + array( |
|
| 285 | + 'name' => __('Enable "Accept Terms and Conditions"', 'geodirectory'),
|
|
| 286 | + 'desc' => __('Show the "Accept Terms and Conditions" field on add listing.', 'geodirectory'),
|
|
| 287 | + 'id' => 'geodir_accept_term_condition', |
|
| 288 | + 'type' => 'checkbox', |
|
| 289 | + 'std' => '1' // Default value to show home top section |
|
| 290 | + ), |
|
| 291 | 291 | |
| 292 | 292 | |
| 293 | - array( |
|
| 294 | - 'name' => __('Show description field as editor', 'geodirectory'),
|
|
| 295 | - 'desc' => __('Select post types to show advanced editor on add listing page.', 'geodirectory'),
|
|
| 296 | - 'tip' => '', |
|
| 297 | - 'id' => 'geodir_tiny_editor_on_add_listing', |
|
| 298 | - 'css' => 'min-width:300px;', |
|
| 299 | - 'std' => array(), |
|
| 300 | - 'type' => 'multiselect', |
|
| 301 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 302 | - 'class' => 'chosen_select', |
|
| 303 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 304 | - ), |
|
| 293 | + array( |
|
| 294 | + 'name' => __('Show description field as editor', 'geodirectory'),
|
|
| 295 | + 'desc' => __('Select post types to show advanced editor on add listing page.', 'geodirectory'),
|
|
| 296 | + 'tip' => '', |
|
| 297 | + 'id' => 'geodir_tiny_editor_on_add_listing', |
|
| 298 | + 'css' => 'min-width:300px;', |
|
| 299 | + 'std' => array(), |
|
| 300 | + 'type' => 'multiselect', |
|
| 301 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 302 | + 'class' => 'chosen_select', |
|
| 303 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 304 | + ), |
|
| 305 | 305 | |
| 306 | - array('type' => 'sectionend', 'id' => 'geodir_add_listing_gen_settings'),
|
|
| 307 | - /* Listing Layout Settings end */ |
|
| 306 | + array('type' => 'sectionend', 'id' => 'geodir_add_listing_gen_settings'),
|
|
| 307 | + /* Listing Layout Settings end */ |
|
| 308 | 308 | |
| 309 | 309 | |
| 310 | - /* Search Layout Settings end */ |
|
| 310 | + /* Search Layout Settings end */ |
|
| 311 | 311 | |
| 312 | - array('name' => __('Search', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_search_settings '),
|
|
| 312 | + array('name' => __('Search', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_search_settings '),
|
|
| 313 | 313 | |
| 314 | 314 | |
| 315 | - array('name' => __('Search Page Layout Settings', 'geodirectory'),
|
|
| 316 | - 'type' => 'sectionstart', |
|
| 317 | - 'desc' => '', |
|
| 318 | - 'id' => 'geodir_search_layout'), |
|
| 315 | + array('name' => __('Search Page Layout Settings', 'geodirectory'),
|
|
| 316 | + 'type' => 'sectionstart', |
|
| 317 | + 'desc' => '', |
|
| 318 | + 'id' => 'geodir_search_layout'), |
|
| 319 | 319 | |
| 320 | - array( |
|
| 321 | - 'name' => __('Search top section', 'geodirectory'),
|
|
| 322 | - 'desc' => __('Show the top section of search page', 'geodirectory'),
|
|
| 323 | - 'id' => 'geodir_show_search_top_section', |
|
| 324 | - 'type' => 'checkbox', |
|
| 325 | - 'std' => '1' // Default value to show home top section |
|
| 326 | - ), |
|
| 320 | + array( |
|
| 321 | + 'name' => __('Search top section', 'geodirectory'),
|
|
| 322 | + 'desc' => __('Show the top section of search page', 'geodirectory'),
|
|
| 323 | + 'id' => 'geodir_show_search_top_section', |
|
| 324 | + 'type' => 'checkbox', |
|
| 325 | + 'std' => '1' // Default value to show home top section |
|
| 326 | + ), |
|
| 327 | 327 | |
| 328 | - array( |
|
| 329 | - 'name' => __('Search right section', 'geodirectory'),
|
|
| 330 | - 'desc' => __('Show the right section of search page', 'geodirectory'),
|
|
| 331 | - 'id' => 'geodir_show_search_right_section', |
|
| 332 | - 'type' => 'checkbox', |
|
| 333 | - 'std' => '1' // Default value to show home top section |
|
| 334 | - ), |
|
| 328 | + array( |
|
| 329 | + 'name' => __('Search right section', 'geodirectory'),
|
|
| 330 | + 'desc' => __('Show the right section of search page', 'geodirectory'),
|
|
| 331 | + 'id' => 'geodir_show_search_right_section', |
|
| 332 | + 'type' => 'checkbox', |
|
| 333 | + 'std' => '1' // Default value to show home top section |
|
| 334 | + ), |
|
| 335 | 335 | |
| 336 | - array( |
|
| 337 | - 'name' => __('Width of search right section', 'geodirectory'),
|
|
| 338 | - 'desc' => __('Enter the width of right section of search page in %', 'geodirectory'),
|
|
| 339 | - 'id' => 'geodir_width_search_right_section', |
|
| 340 | - 'type' => 'text', |
|
| 341 | - 'css' => 'min-width:300px;', |
|
| 342 | - 'std' => '30' // Default value to show home top section |
|
| 343 | - ), |
|
| 336 | + array( |
|
| 337 | + 'name' => __('Width of search right section', 'geodirectory'),
|
|
| 338 | + 'desc' => __('Enter the width of right section of search page in %', 'geodirectory'),
|
|
| 339 | + 'id' => 'geodir_width_search_right_section', |
|
| 340 | + 'type' => 'text', |
|
| 341 | + 'css' => 'min-width:300px;', |
|
| 342 | + 'std' => '30' // Default value to show home top section |
|
| 343 | + ), |
|
| 344 | 344 | |
| 345 | 345 | |
| 346 | - array( |
|
| 347 | - 'name' => __('Search content section view', 'geodirectory'),
|
|
| 348 | - 'desc' => __('Set the listing view of search page', 'geodirectory'),
|
|
| 349 | - 'id' => 'geodir_search_view', |
|
| 350 | - 'css' => 'min-width:300px;', |
|
| 351 | - 'std' => 'gridview_onehalf', |
|
| 352 | - 'type' => 'select', |
|
| 353 | - 'class' => 'chosen_select', |
|
| 354 | - 'options' => array_unique(array( |
|
| 355 | - 'gridview_onehalf' => __('Grid View (Two Columns)', 'geodirectory'),
|
|
| 356 | - 'gridview_onethird' => __('Grid View (Three Columns)', 'geodirectory'),
|
|
| 357 | - 'gridview_onefourth' => __('Grid View (Four Columns)', 'geodirectory'),
|
|
| 358 | - 'gridview_onefifth' => __('Grid View (Five Columns)', 'geodirectory'),
|
|
| 359 | - 'listview' => __('List view', 'geodirectory'),
|
|
| 360 | - )) |
|
| 361 | - ), |
|
| 346 | + array( |
|
| 347 | + 'name' => __('Search content section view', 'geodirectory'),
|
|
| 348 | + 'desc' => __('Set the listing view of search page', 'geodirectory'),
|
|
| 349 | + 'id' => 'geodir_search_view', |
|
| 350 | + 'css' => 'min-width:300px;', |
|
| 351 | + 'std' => 'gridview_onehalf', |
|
| 352 | + 'type' => 'select', |
|
| 353 | + 'class' => 'chosen_select', |
|
| 354 | + 'options' => array_unique(array( |
|
| 355 | + 'gridview_onehalf' => __('Grid View (Two Columns)', 'geodirectory'),
|
|
| 356 | + 'gridview_onethird' => __('Grid View (Three Columns)', 'geodirectory'),
|
|
| 357 | + 'gridview_onefourth' => __('Grid View (Four Columns)', 'geodirectory'),
|
|
| 358 | + 'gridview_onefifth' => __('Grid View (Five Columns)', 'geodirectory'),
|
|
| 359 | + 'listview' => __('List view', 'geodirectory'),
|
|
| 360 | + )) |
|
| 361 | + ), |
|
| 362 | 362 | |
| 363 | - array( |
|
| 364 | - 'name' => __('Width of search content section', 'geodirectory'),
|
|
| 365 | - 'desc' => __('Enter the width of content section of search page in %', 'geodirectory'),
|
|
| 366 | - 'id' => 'geodir_width_search_contant_section', |
|
| 367 | - 'type' => 'text', |
|
| 368 | - 'css' => 'min-width:300px;', |
|
| 369 | - 'std' => '63' // Default value to show home top section |
|
| 370 | - ), |
|
| 363 | + array( |
|
| 364 | + 'name' => __('Width of search content section', 'geodirectory'),
|
|
| 365 | + 'desc' => __('Enter the width of content section of search page in %', 'geodirectory'),
|
|
| 366 | + 'id' => 'geodir_width_search_contant_section', |
|
| 367 | + 'type' => 'text', |
|
| 368 | + 'css' => 'min-width:300px;', |
|
| 369 | + 'std' => '63' // Default value to show home top section |
|
| 370 | + ), |
|
| 371 | 371 | |
| 372 | - array( |
|
| 373 | - 'name' => __('Search left section', 'geodirectory'),
|
|
| 374 | - 'desc' => __('Show the left section of search page', 'geodirectory'),
|
|
| 375 | - 'id' => 'geodir_show_search_left_section', |
|
| 376 | - 'type' => 'checkbox', |
|
| 377 | - 'std' => '0' // Default value to show home top section |
|
| 378 | - ), |
|
| 372 | + array( |
|
| 373 | + 'name' => __('Search left section', 'geodirectory'),
|
|
| 374 | + 'desc' => __('Show the left section of search page', 'geodirectory'),
|
|
| 375 | + 'id' => 'geodir_show_search_left_section', |
|
| 376 | + 'type' => 'checkbox', |
|
| 377 | + 'std' => '0' // Default value to show home top section |
|
| 378 | + ), |
|
| 379 | 379 | |
| 380 | - array( |
|
| 381 | - 'name' => __('Width of search left section', 'geodirectory'),
|
|
| 382 | - 'desc' => __('Enter the width of left section of search in %', 'geodirectory'),
|
|
| 383 | - 'id' => 'geodir_width_search_left_section', |
|
| 384 | - 'type' => 'text', |
|
| 385 | - 'css' => 'min-width:300px;', |
|
| 386 | - 'std' => '30' // Default value to show home top section |
|
| 387 | - ), |
|
| 380 | + array( |
|
| 381 | + 'name' => __('Width of search left section', 'geodirectory'),
|
|
| 382 | + 'desc' => __('Enter the width of left section of search in %', 'geodirectory'),
|
|
| 383 | + 'id' => 'geodir_width_search_left_section', |
|
| 384 | + 'type' => 'text', |
|
| 385 | + 'css' => 'min-width:300px;', |
|
| 386 | + 'std' => '30' // Default value to show home top section |
|
| 387 | + ), |
|
| 388 | 388 | |
| 389 | - array( |
|
| 390 | - 'name' => __('Search bottom section', 'geodirectory'),
|
|
| 391 | - 'desc' => __('Show the bottom section of search page', 'geodirectory'),
|
|
| 392 | - 'id' => 'geodir_show_search_bottom_section', |
|
| 393 | - 'type' => 'checkbox', |
|
| 394 | - 'std' => '0' // Default value to show home top section |
|
| 395 | - ), |
|
| 389 | + array( |
|
| 390 | + 'name' => __('Search bottom section', 'geodirectory'),
|
|
| 391 | + 'desc' => __('Show the bottom section of search page', 'geodirectory'),
|
|
| 392 | + 'id' => 'geodir_show_search_bottom_section', |
|
| 393 | + 'type' => 'checkbox', |
|
| 394 | + 'std' => '0' // Default value to show home top section |
|
| 395 | + ), |
|
| 396 | 396 | |
| 397 | 397 | array( |
| 398 | - 'name' => __('Show advanced pagination details', 'geodirectory'),
|
|
| 399 | - 'desc' => __('This will add extra pagination info like "Showing listings x-y of z" after/before pagination.', 'geodirectory'),
|
|
| 400 | - 'id' => 'geodir_pagination_advance_info', |
|
| 401 | - 'css' => 'min-width:300px;', |
|
| 402 | - 'std' => '', |
|
| 403 | - 'type' => 'select', |
|
| 404 | - 'class' => 'chosen_select', |
|
| 405 | - 'options' => array( |
|
| 398 | + 'name' => __('Show advanced pagination details', 'geodirectory'),
|
|
| 399 | + 'desc' => __('This will add extra pagination info like "Showing listings x-y of z" after/before pagination.', 'geodirectory'),
|
|
| 400 | + 'id' => 'geodir_pagination_advance_info', |
|
| 401 | + 'css' => 'min-width:300px;', |
|
| 402 | + 'std' => '', |
|
| 403 | + 'type' => 'select', |
|
| 404 | + 'class' => 'chosen_select', |
|
| 405 | + 'options' => array( |
|
| 406 | 406 | '' => __('Never Display', 'geodirectory'),
|
| 407 | 407 | 'after' => __('After Pagination', 'geodirectory'),
|
| 408 | 408 | 'before' => __('Before Pagination', 'geodirectory')
|
| 409 | 409 | ) |
| 410 | - ), |
|
| 410 | + ), |
|
| 411 | 411 | |
| 412 | - array('type' => 'sectionend', 'id' => 'geodir_search_layout'),
|
|
| 412 | + array('type' => 'sectionend', 'id' => 'geodir_search_layout'),
|
|
| 413 | 413 | |
| 414 | 414 | |
| 415 | - array('name' => __('Search form settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_search_form_default_text_settings'),
|
|
| 415 | + array('name' => __('Search form settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_search_form_default_text_settings'),
|
|
| 416 | 416 | |
| 417 | - array( |
|
| 418 | - 'name' => __('Use old non-styled form', 'geodirectory'),
|
|
| 419 | - 'desc' => __('Will show the old type form (not recommended unless you had added your own styles)', 'geodirectory'),
|
|
| 420 | - 'id' => 'geodir_show_search_old_search_from', |
|
| 421 | - 'type' => 'checkbox', |
|
| 422 | - 'std' => '0' // Default value to show |
|
| 423 | - ), |
|
| 417 | + array( |
|
| 418 | + 'name' => __('Use old non-styled form', 'geodirectory'),
|
|
| 419 | + 'desc' => __('Will show the old type form (not recommended unless you had added your own styles)', 'geodirectory'),
|
|
| 420 | + 'id' => 'geodir_show_search_old_search_from', |
|
| 421 | + 'type' => 'checkbox', |
|
| 422 | + 'std' => '0' // Default value to show |
|
| 423 | + ), |
|
| 424 | 424 | |
| 425 | - array( |
|
| 426 | - 'name' => __('Search field default value', 'geodirectory'),
|
|
| 427 | - 'desc' => __('Show the search text box \'placeholder\' value on search form.', 'geodirectory'),
|
|
| 428 | - 'id' => 'geodir_search_field_default_text', |
|
| 429 | - 'type' => 'text', |
|
| 430 | - 'css' => 'min-width:300px;', |
|
| 431 | - 'std' => 'Search for' // show on the listing page. |
|
| 432 | - ), |
|
| 425 | + array( |
|
| 426 | + 'name' => __('Search field default value', 'geodirectory'),
|
|
| 427 | + 'desc' => __('Show the search text box \'placeholder\' value on search form.', 'geodirectory'),
|
|
| 428 | + 'id' => 'geodir_search_field_default_text', |
|
| 429 | + 'type' => 'text', |
|
| 430 | + 'css' => 'min-width:300px;', |
|
| 431 | + 'std' => 'Search for' // show on the listing page. |
|
| 432 | + ), |
|
| 433 | 433 | |
| 434 | - array( |
|
| 435 | - 'name' => __('Near field default value', 'geodirectory'),
|
|
| 436 | - 'desc' => __('Show the near text box \'placeholder\' value on search form.', 'geodirectory'),
|
|
| 437 | - 'id' => 'geodir_near_field_default_text', |
|
| 438 | - 'type' => 'text', |
|
| 439 | - 'css' => 'min-width:300px;', |
|
| 440 | - 'std' => 'Near' // show on the listing page. |
|
| 441 | - ), |
|
| 434 | + array( |
|
| 435 | + 'name' => __('Near field default value', 'geodirectory'),
|
|
| 436 | + 'desc' => __('Show the near text box \'placeholder\' value on search form.', 'geodirectory'),
|
|
| 437 | + 'id' => 'geodir_near_field_default_text', |
|
| 438 | + 'type' => 'text', |
|
| 439 | + 'css' => 'min-width:300px;', |
|
| 440 | + 'std' => 'Near' // show on the listing page. |
|
| 441 | + ), |
|
| 442 | 442 | |
| 443 | - array( |
|
| 444 | - 'name' => __('Search button label', 'geodirectory'),
|
|
| 445 | - 'desc' => __('Show the search button label on search form.', 'geodirectory'),
|
|
| 446 | - 'id' => 'geodir_search_button_label', |
|
| 447 | - 'type' => 'text', |
|
| 448 | - 'css' => 'min-width:300px;', |
|
| 449 | - 'std' => 'Search' // show on the listing page. |
|
| 450 | - ), |
|
| 443 | + array( |
|
| 444 | + 'name' => __('Search button label', 'geodirectory'),
|
|
| 445 | + 'desc' => __('Show the search button label on search form.', 'geodirectory'),
|
|
| 446 | + 'id' => 'geodir_search_button_label', |
|
| 447 | + 'type' => 'text', |
|
| 448 | + 'css' => 'min-width:300px;', |
|
| 449 | + 'std' => 'Search' // show on the listing page. |
|
| 450 | + ), |
|
| 451 | 451 | |
| 452 | - array('type' => 'sectionend', 'id' => 'geodir_search_form_default_text_settings'),
|
|
| 452 | + array('type' => 'sectionend', 'id' => 'geodir_search_form_default_text_settings'),
|
|
| 453 | 453 | |
| 454 | - /* Listing Layout Settings end */ |
|
| 454 | + /* Listing Layout Settings end */ |
|
| 455 | 455 | |
| 456 | 456 | |
| 457 | - /* Detail Layout Settings end */ |
|
| 457 | + /* Detail Layout Settings end */ |
|
| 458 | 458 | |
| 459 | - array('name' => __('Detail', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_detail_settings '),
|
|
| 459 | + array('name' => __('Detail', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_detail_settings '),
|
|
| 460 | 460 | |
| 461 | - array('name' => __('Detail/Single Page Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'detail_page_settings '),
|
|
| 461 | + array('name' => __('Detail/Single Page Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'detail_page_settings '),
|
|
| 462 | 462 | |
| 463 | - array( |
|
| 464 | - 'name' => __('Detail top section', 'geodirectory'),
|
|
| 465 | - 'desc' => __('Show the top section of listing page', 'geodirectory'),
|
|
| 466 | - 'id' => 'geodir_show_detail_top_section', |
|
| 467 | - 'type' => 'checkbox', |
|
| 468 | - 'std' => '1' // Default value to show home top section |
|
| 469 | - ), |
|
| 463 | + array( |
|
| 464 | + 'name' => __('Detail top section', 'geodirectory'),
|
|
| 465 | + 'desc' => __('Show the top section of listing page', 'geodirectory'),
|
|
| 466 | + 'id' => 'geodir_show_detail_top_section', |
|
| 467 | + 'type' => 'checkbox', |
|
| 468 | + 'std' => '1' // Default value to show home top section |
|
| 469 | + ), |
|
| 470 | 470 | |
| 471 | - array( |
|
| 472 | - 'name' => __('Detail bottom section', 'geodirectory'),
|
|
| 473 | - 'desc' => __('Show the bottom section of listing page', 'geodirectory'),
|
|
| 474 | - 'id' => 'geodir_show_detail_bottom_section', |
|
| 475 | - 'type' => 'checkbox', |
|
| 476 | - 'std' => '1' // Default value to show home top section |
|
| 477 | - ), |
|
| 478 | - array( |
|
| 479 | - 'name' => __('Detail sidebar section on left side', 'geodirectory'),
|
|
| 480 | - 'desc' => __('Display detail sidebar section on left side of the detail page', 'geodirectory'),
|
|
| 481 | - 'id' => 'geodir_detail_sidebar_left_section', |
|
| 482 | - 'type' => 'checkbox', |
|
| 483 | - 'std' => '0' |
|
| 484 | - ), |
|
| 485 | - array( |
|
| 486 | - 'name' => __('Disable GD modal', 'geodirectory'),
|
|
| 487 | - 'desc' => __('Disable GD modal that displays slideshow images in popup', 'geodirectory'),
|
|
| 488 | - 'id' => 'geodir_disable_gb_modal', |
|
| 489 | - 'type' => 'checkbox', |
|
| 490 | - 'std' => '0' |
|
| 491 | - ), |
|
| 492 | - array( |
|
| 493 | - 'name' => __('Disable Tweet, Fb Like, Google+ buttons section', 'geodirectory'),
|
|
| 494 | - 'desc' => __('Disable Tweet, Fb Like, Google+ buttons section that displays on Detail page sidebar', 'geodirectory'),
|
|
| 495 | - 'id' => 'geodir_disable_tfg_buttons_section', |
|
| 496 | - 'type' => 'checkbox', |
|
| 497 | - 'std' => '0' |
|
| 498 | - ), |
|
| 499 | - array( |
|
| 500 | - 'name' => __('Disable Google Analytics section', 'geodirectory'),
|
|
| 501 | - 'desc' => __('Disable Google Analytics section that displays on Detail page sidebar', 'geodirectory'),
|
|
| 502 | - 'id' => 'geodir_disable_google_analytics_section', |
|
| 503 | - 'type' => 'checkbox', |
|
| 504 | - 'std' => '0' |
|
| 505 | - ), |
|
| 506 | - array( |
|
| 507 | - 'name' => __('Disable User Links section', 'geodirectory'),
|
|
| 508 | - 'desc' => __('Disable User Links section (Edit post, Favorite etc..) that displays on Detail page sidebar', 'geodirectory'),
|
|
| 509 | - 'id' => 'geodir_disable_user_links_section', |
|
| 510 | - 'type' => 'checkbox', |
|
| 511 | - 'std' => '0' |
|
| 512 | - ), |
|
| 513 | - array( |
|
| 514 | - 'name' => __('Disable Rating Info section', 'geodirectory'),
|
|
| 515 | - 'desc' => __('Disable Rating Info section that displays on Detail page sidebar', 'geodirectory'),
|
|
| 516 | - 'id' => 'geodir_disable_rating_info_section', |
|
| 517 | - 'type' => 'checkbox', |
|
| 518 | - 'std' => '0' |
|
| 519 | - ), |
|
| 520 | - array( |
|
| 521 | - 'name' => __('Disable Listing Info section', 'geodirectory'),
|
|
| 522 | - 'desc' => __('Disable Listing Info section that displays on Detail page sidebar', 'geodirectory'),
|
|
| 523 | - 'id' => 'geodir_disable_listing_info_section', |
|
| 524 | - 'type' => 'checkbox', |
|
| 525 | - 'std' => '0' |
|
| 526 | - ), |
|
| 471 | + array( |
|
| 472 | + 'name' => __('Detail bottom section', 'geodirectory'),
|
|
| 473 | + 'desc' => __('Show the bottom section of listing page', 'geodirectory'),
|
|
| 474 | + 'id' => 'geodir_show_detail_bottom_section', |
|
| 475 | + 'type' => 'checkbox', |
|
| 476 | + 'std' => '1' // Default value to show home top section |
|
| 477 | + ), |
|
| 478 | + array( |
|
| 479 | + 'name' => __('Detail sidebar section on left side', 'geodirectory'),
|
|
| 480 | + 'desc' => __('Display detail sidebar section on left side of the detail page', 'geodirectory'),
|
|
| 481 | + 'id' => 'geodir_detail_sidebar_left_section', |
|
| 482 | + 'type' => 'checkbox', |
|
| 483 | + 'std' => '0' |
|
| 484 | + ), |
|
| 485 | + array( |
|
| 486 | + 'name' => __('Disable GD modal', 'geodirectory'),
|
|
| 487 | + 'desc' => __('Disable GD modal that displays slideshow images in popup', 'geodirectory'),
|
|
| 488 | + 'id' => 'geodir_disable_gb_modal', |
|
| 489 | + 'type' => 'checkbox', |
|
| 490 | + 'std' => '0' |
|
| 491 | + ), |
|
| 492 | + array( |
|
| 493 | + 'name' => __('Disable Tweet, Fb Like, Google+ buttons section', 'geodirectory'),
|
|
| 494 | + 'desc' => __('Disable Tweet, Fb Like, Google+ buttons section that displays on Detail page sidebar', 'geodirectory'),
|
|
| 495 | + 'id' => 'geodir_disable_tfg_buttons_section', |
|
| 496 | + 'type' => 'checkbox', |
|
| 497 | + 'std' => '0' |
|
| 498 | + ), |
|
| 499 | + array( |
|
| 500 | + 'name' => __('Disable Google Analytics section', 'geodirectory'),
|
|
| 501 | + 'desc' => __('Disable Google Analytics section that displays on Detail page sidebar', 'geodirectory'),
|
|
| 502 | + 'id' => 'geodir_disable_google_analytics_section', |
|
| 503 | + 'type' => 'checkbox', |
|
| 504 | + 'std' => '0' |
|
| 505 | + ), |
|
| 506 | + array( |
|
| 507 | + 'name' => __('Disable User Links section', 'geodirectory'),
|
|
| 508 | + 'desc' => __('Disable User Links section (Edit post, Favorite etc..) that displays on Detail page sidebar', 'geodirectory'),
|
|
| 509 | + 'id' => 'geodir_disable_user_links_section', |
|
| 510 | + 'type' => 'checkbox', |
|
| 511 | + 'std' => '0' |
|
| 512 | + ), |
|
| 513 | + array( |
|
| 514 | + 'name' => __('Disable Rating Info section', 'geodirectory'),
|
|
| 515 | + 'desc' => __('Disable Rating Info section that displays on Detail page sidebar', 'geodirectory'),
|
|
| 516 | + 'id' => 'geodir_disable_rating_info_section', |
|
| 517 | + 'type' => 'checkbox', |
|
| 518 | + 'std' => '0' |
|
| 519 | + ), |
|
| 520 | + array( |
|
| 521 | + 'name' => __('Disable Listing Info section', 'geodirectory'),
|
|
| 522 | + 'desc' => __('Disable Listing Info section that displays on Detail page sidebar', 'geodirectory'),
|
|
| 523 | + 'id' => 'geodir_disable_listing_info_section', |
|
| 524 | + 'type' => 'checkbox', |
|
| 525 | + 'std' => '0' |
|
| 526 | + ), |
|
| 527 | 527 | |
| 528 | - array('type' => 'sectionend', 'id' => 'detail_page_settings'),
|
|
| 528 | + array('type' => 'sectionend', 'id' => 'detail_page_settings'),
|
|
| 529 | 529 | |
| 530 | 530 | |
| 531 | - /* ---------- DETAIL PAGE TAB SETTING START*/ |
|
| 531 | + /* ---------- DETAIL PAGE TAB SETTING START*/ |
|
| 532 | 532 | |
| 533 | - array('name' => __('Detail Page Tab Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_detail_page_tab_settings '),
|
|
| 533 | + array('name' => __('Detail Page Tab Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_detail_page_tab_settings '),
|
|
| 534 | 534 | |
| 535 | - array( |
|
| 536 | - 'name' => __('Exclude selected tabs from detail page', 'geodirectory'),
|
|
| 537 | - 'desc' => __('Select tabs to exclude from the list of all appearing tabs on detail page.', 'geodirectory'),
|
|
| 538 | - 'tip' => '', |
|
| 539 | - 'id' => 'geodir_detail_page_tabs_excluded', |
|
| 540 | - 'css' => 'min-width:300px;', |
|
| 541 | - 'std' => geodir_get_posttypes(), |
|
| 542 | - 'type' => 'multiselect', |
|
| 543 | - 'placeholder_text' => __('Select tabs', 'geodirectory'),
|
|
| 544 | - 'class' => 'chosen_select', |
|
| 545 | - 'options' => array_unique(geodir_detail_page_tabs_key_value_array()) |
|
| 546 | - ), |
|
| 535 | + array( |
|
| 536 | + 'name' => __('Exclude selected tabs from detail page', 'geodirectory'),
|
|
| 537 | + 'desc' => __('Select tabs to exclude from the list of all appearing tabs on detail page.', 'geodirectory'),
|
|
| 538 | + 'tip' => '', |
|
| 539 | + 'id' => 'geodir_detail_page_tabs_excluded', |
|
| 540 | + 'css' => 'min-width:300px;', |
|
| 541 | + 'std' => geodir_get_posttypes(), |
|
| 542 | + 'type' => 'multiselect', |
|
| 543 | + 'placeholder_text' => __('Select tabs', 'geodirectory'),
|
|
| 544 | + 'class' => 'chosen_select', |
|
| 545 | + 'options' => array_unique(geodir_detail_page_tabs_key_value_array()) |
|
| 546 | + ), |
|
| 547 | 547 | |
| 548 | - array( |
|
| 549 | - 'name' => __('Show as list', 'geodirectory'),
|
|
| 550 | - 'desc' => __('Show as list instead of tabs', 'geodirectory'),
|
|
| 551 | - 'id' => 'geodir_disable_tabs', |
|
| 552 | - 'type' => 'checkbox', |
|
| 553 | - 'std' => '0' |
|
| 554 | - ), |
|
| 548 | + array( |
|
| 549 | + 'name' => __('Show as list', 'geodirectory'),
|
|
| 550 | + 'desc' => __('Show as list instead of tabs', 'geodirectory'),
|
|
| 551 | + 'id' => 'geodir_disable_tabs', |
|
| 552 | + 'type' => 'checkbox', |
|
| 553 | + 'std' => '0' |
|
| 554 | + ), |
|
| 555 | 555 | |
| 556 | - array('type' => 'sectionend', 'id' => 'geodir_detail_page_tab_settings'),
|
|
| 557 | - /* ---------- DETAIL PAGE TAB SETTING END*/ |
|
| 556 | + array('type' => 'sectionend', 'id' => 'geodir_detail_page_tab_settings'),
|
|
| 557 | + /* ---------- DETAIL PAGE TAB SETTING END*/ |
|
| 558 | 558 | |
| 559 | - /* START DEFAULT STAR IMAGE*/ |
|
| 560 | - array('name' => __('Default Rating Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_rating_settings '),
|
|
| 559 | + /* START DEFAULT STAR IMAGE*/ |
|
| 560 | + array('name' => __('Default Rating Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_rating_settings '),
|
|
| 561 | 561 | |
| 562 | - array( |
|
| 563 | - 'name' => __('Upload default rating star icon', 'geodirectory'),
|
|
| 564 | - 'desc' => '', |
|
| 565 | - 'id' => 'geodir_default_rating_star_icon', |
|
| 566 | - 'type' => 'file', |
|
| 567 | - 'std' => '0', |
|
| 568 | - 'value' => geodir_plugin_url() . '/geodirectory-assets/images/stars.png'// Default value to show home top section |
|
| 569 | - ), |
|
| 562 | + array( |
|
| 563 | + 'name' => __('Upload default rating star icon', 'geodirectory'),
|
|
| 564 | + 'desc' => '', |
|
| 565 | + 'id' => 'geodir_default_rating_star_icon', |
|
| 566 | + 'type' => 'file', |
|
| 567 | + 'std' => '0', |
|
| 568 | + 'value' => geodir_plugin_url() . '/geodirectory-assets/images/stars.png'// Default value to show home top section |
|
| 569 | + ), |
|
| 570 | 570 | array( |
| 571 | 571 | 'name' => __('Enable Font Awesome', 'geodirectory'),
|
| 572 | 572 | 'desc' => __('When enabled all rating images will be using font awesome rating icons as images.', 'geodirectory' ),
|
@@ -582,369 +582,369 @@ discard block |
||
| 582 | 582 | 'std' => '#757575' |
| 583 | 583 | ), |
| 584 | 584 | |
| 585 | - array('type' => 'sectionend', 'id' => 'geodir_detail_page_tab_settings'),
|
|
| 585 | + array('type' => 'sectionend', 'id' => 'geodir_detail_page_tab_settings'),
|
|
| 586 | 586 | |
| 587 | - /* END DEFAULT STAR IMAGE*/ |
|
| 587 | + /* END DEFAULT STAR IMAGE*/ |
|
| 588 | 588 | |
| 589 | - /* Detail related post settings start */ |
|
| 589 | + /* Detail related post settings start */ |
|
| 590 | 590 | |
| 591 | - array('name' => __('Related Post Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'detail_page_related_post_settings '),
|
|
| 591 | + array('name' => __('Related Post Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'detail_page_related_post_settings '),
|
|
| 592 | 592 | |
| 593 | - array( |
|
| 594 | - 'name' => __('Show related post listing on', 'geodirectory'),
|
|
| 595 | - 'desc' => __('Select the post types to display related listing on detail page.', 'geodirectory'),
|
|
| 596 | - 'tip' => '', |
|
| 597 | - 'id' => 'geodir_add_related_listing_posttypes', |
|
| 598 | - 'css' => 'min-width:300px;', |
|
| 599 | - 'std' => geodir_get_posttypes(), |
|
| 600 | - 'type' => 'multiselect', |
|
| 601 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 602 | - 'class' => 'chosen_select', |
|
| 603 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 604 | - ), |
|
| 593 | + array( |
|
| 594 | + 'name' => __('Show related post listing on', 'geodirectory'),
|
|
| 595 | + 'desc' => __('Select the post types to display related listing on detail page.', 'geodirectory'),
|
|
| 596 | + 'tip' => '', |
|
| 597 | + 'id' => 'geodir_add_related_listing_posttypes', |
|
| 598 | + 'css' => 'min-width:300px;', |
|
| 599 | + 'std' => geodir_get_posttypes(), |
|
| 600 | + 'type' => 'multiselect', |
|
| 601 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 602 | + 'class' => 'chosen_select', |
|
| 603 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 604 | + ), |
|
| 605 | 605 | |
| 606 | - array( |
|
| 607 | - 'name' => __('Relate to', 'geodirectory'),
|
|
| 608 | - 'desc' => __('Set the relation between current post to related posts.', 'geodirectory'),
|
|
| 609 | - 'id' => 'geodir_related_post_relate_to', |
|
| 610 | - 'css' => 'min-width:300px;', |
|
| 611 | - 'std' => 'category', |
|
| 612 | - 'type' => 'select', |
|
| 613 | - 'class' => 'chosen_select', |
|
| 614 | - 'options' => array_unique(array( |
|
| 615 | - 'category' => __('Categories', 'geodirectory'),
|
|
| 616 | - 'tags' => __('Tags', 'geodirectory'),
|
|
| 617 | - )) |
|
| 618 | - ), |
|
| 606 | + array( |
|
| 607 | + 'name' => __('Relate to', 'geodirectory'),
|
|
| 608 | + 'desc' => __('Set the relation between current post to related posts.', 'geodirectory'),
|
|
| 609 | + 'id' => 'geodir_related_post_relate_to', |
|
| 610 | + 'css' => 'min-width:300px;', |
|
| 611 | + 'std' => 'category', |
|
| 612 | + 'type' => 'select', |
|
| 613 | + 'class' => 'chosen_select', |
|
| 614 | + 'options' => array_unique(array( |
|
| 615 | + 'category' => __('Categories', 'geodirectory'),
|
|
| 616 | + 'tags' => __('Tags', 'geodirectory'),
|
|
| 617 | + )) |
|
| 618 | + ), |
|
| 619 | 619 | |
| 620 | - array( |
|
| 621 | - 'name' => __('Layout', 'geodirectory'),
|
|
| 622 | - 'desc' => __('Set the listing view of relate post on detail page', 'geodirectory'),
|
|
| 623 | - 'id' => 'geodir_related_post_listing_view', |
|
| 624 | - 'css' => 'min-width:300px;', |
|
| 625 | - 'std' => 'gridview_onehalf', |
|
| 626 | - 'type' => 'select', |
|
| 627 | - 'class' => 'chosen_select', |
|
| 628 | - 'options' => array_unique(array( |
|
| 629 | - 'gridview_onehalf' => __('Grid View (Two Columns)', 'geodirectory'),
|
|
| 630 | - 'gridview_onethird' => __('Grid View (Three Columns)', 'geodirectory'),
|
|
| 631 | - 'gridview_onefourth' => __('Grid View (Four Columns)', 'geodirectory'),
|
|
| 632 | - 'gridview_onefifth' => __('Grid View (Five Columns)', 'geodirectory'),
|
|
| 633 | - 'listview' => __('List view', 'geodirectory'),
|
|
| 634 | - )) |
|
| 635 | - ), |
|
| 620 | + array( |
|
| 621 | + 'name' => __('Layout', 'geodirectory'),
|
|
| 622 | + 'desc' => __('Set the listing view of relate post on detail page', 'geodirectory'),
|
|
| 623 | + 'id' => 'geodir_related_post_listing_view', |
|
| 624 | + 'css' => 'min-width:300px;', |
|
| 625 | + 'std' => 'gridview_onehalf', |
|
| 626 | + 'type' => 'select', |
|
| 627 | + 'class' => 'chosen_select', |
|
| 628 | + 'options' => array_unique(array( |
|
| 629 | + 'gridview_onehalf' => __('Grid View (Two Columns)', 'geodirectory'),
|
|
| 630 | + 'gridview_onethird' => __('Grid View (Three Columns)', 'geodirectory'),
|
|
| 631 | + 'gridview_onefourth' => __('Grid View (Four Columns)', 'geodirectory'),
|
|
| 632 | + 'gridview_onefifth' => __('Grid View (Five Columns)', 'geodirectory'),
|
|
| 633 | + 'listview' => __('List view', 'geodirectory'),
|
|
| 634 | + )) |
|
| 635 | + ), |
|
| 636 | 636 | |
| 637 | - array( |
|
| 638 | - 'name' => __('Sort by', 'geodirectory'),
|
|
| 639 | - 'desc' => __('Set the related post listing sort by view', 'geodirectory'),
|
|
| 640 | - 'id' => 'geodir_related_post_sortby', |
|
| 641 | - 'css' => 'min-width:300px;', |
|
| 642 | - 'std' => 'latest', |
|
| 643 | - 'type' => 'select', |
|
| 644 | - 'class' => 'chosen_select', |
|
| 645 | - 'options' => array_unique(array( |
|
| 646 | - 'latest' => __('Latest', 'geodirectory'),
|
|
| 647 | - 'featured' => __('Featured', 'geodirectory'),
|
|
| 648 | - 'high_review' => __('Review', 'geodirectory'),
|
|
| 649 | - 'high_rating' => __('Rating', 'geodirectory'),
|
|
| 650 | - 'random' => __('Random', 'geodirectory'),
|
|
| 651 | - 'nearest' => __('Nearest', 'geodirectory'),
|
|
| 652 | - )) |
|
| 653 | - ), |
|
| 637 | + array( |
|
| 638 | + 'name' => __('Sort by', 'geodirectory'),
|
|
| 639 | + 'desc' => __('Set the related post listing sort by view', 'geodirectory'),
|
|
| 640 | + 'id' => 'geodir_related_post_sortby', |
|
| 641 | + 'css' => 'min-width:300px;', |
|
| 642 | + 'std' => 'latest', |
|
| 643 | + 'type' => 'select', |
|
| 644 | + 'class' => 'chosen_select', |
|
| 645 | + 'options' => array_unique(array( |
|
| 646 | + 'latest' => __('Latest', 'geodirectory'),
|
|
| 647 | + 'featured' => __('Featured', 'geodirectory'),
|
|
| 648 | + 'high_review' => __('Review', 'geodirectory'),
|
|
| 649 | + 'high_rating' => __('Rating', 'geodirectory'),
|
|
| 650 | + 'random' => __('Random', 'geodirectory'),
|
|
| 651 | + 'nearest' => __('Nearest', 'geodirectory'),
|
|
| 652 | + )) |
|
| 653 | + ), |
|
| 654 | 654 | |
| 655 | - array( |
|
| 656 | - 'name' => __('Number of posts:', 'geodirectory'),
|
|
| 657 | - 'desc' => __('Enter number of posts to display on related posts listing', 'geodirectory'),
|
|
| 658 | - 'id' => 'geodir_related_post_count', |
|
| 659 | - 'type' => 'text', |
|
| 660 | - 'css' => 'min-width:300px;', |
|
| 661 | - 'std' => '5' // Default value to show home top section |
|
| 662 | - ), |
|
| 655 | + array( |
|
| 656 | + 'name' => __('Number of posts:', 'geodirectory'),
|
|
| 657 | + 'desc' => __('Enter number of posts to display on related posts listing', 'geodirectory'),
|
|
| 658 | + 'id' => 'geodir_related_post_count', |
|
| 659 | + 'type' => 'text', |
|
| 660 | + 'css' => 'min-width:300px;', |
|
| 661 | + 'std' => '5' // Default value to show home top section |
|
| 662 | + ), |
|
| 663 | 663 | |
| 664 | - array( |
|
| 665 | - 'name' => __('Post excerpt', 'geodirectory'),
|
|
| 666 | - 'desc' => __('Post content excerpt character count', 'geodirectory'),
|
|
| 667 | - 'id' => 'geodir_related_post_excerpt', |
|
| 668 | - 'type' => 'text', |
|
| 669 | - 'css' => 'min-width:300px;', |
|
| 670 | - 'std' => '20' // Default value to show home top section |
|
| 671 | - ), |
|
| 664 | + array( |
|
| 665 | + 'name' => __('Post excerpt', 'geodirectory'),
|
|
| 666 | + 'desc' => __('Post content excerpt character count', 'geodirectory'),
|
|
| 667 | + 'id' => 'geodir_related_post_excerpt', |
|
| 668 | + 'type' => 'text', |
|
| 669 | + 'css' => 'min-width:300px;', |
|
| 670 | + 'std' => '20' // Default value to show home top section |
|
| 671 | + ), |
|
| 672 | 672 | |
| 673 | 673 | |
| 674 | - array('type' => 'sectionend', 'id' => 'detail_page_related_post_settings'),
|
|
| 675 | - /* Detail Layout Settings end */ |
|
| 674 | + array('type' => 'sectionend', 'id' => 'detail_page_related_post_settings'),
|
|
| 675 | + /* Detail Layout Settings end */ |
|
| 676 | 676 | |
| 677 | - /* Author Layout Settings Start */ |
|
| 677 | + /* Author Layout Settings Start */ |
|
| 678 | 678 | |
| 679 | - array('name' => __('Author', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_author_settings '),
|
|
| 679 | + array('name' => __('Author', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_author_settings '),
|
|
| 680 | 680 | |
| 681 | 681 | |
| 682 | - array('name' => __('Author Page Layout Settings', 'geodirectory'),
|
|
| 683 | - 'type' => 'sectionstart', |
|
| 684 | - 'desc' => '', |
|
| 685 | - 'id' => 'geodir_author_layout'), |
|
| 682 | + array('name' => __('Author Page Layout Settings', 'geodirectory'),
|
|
| 683 | + 'type' => 'sectionstart', |
|
| 684 | + 'desc' => '', |
|
| 685 | + 'id' => 'geodir_author_layout'), |
|
| 686 | 686 | |
| 687 | - array( |
|
| 688 | - 'name' => __('Author top section', 'geodirectory'),
|
|
| 689 | - 'desc' => __('Show the top section of author page', 'geodirectory'),
|
|
| 690 | - 'id' => 'geodir_show_author_top_section', |
|
| 691 | - 'type' => 'checkbox', |
|
| 692 | - 'std' => '1' // Default value to show home top section |
|
| 693 | - ), |
|
| 687 | + array( |
|
| 688 | + 'name' => __('Author top section', 'geodirectory'),
|
|
| 689 | + 'desc' => __('Show the top section of author page', 'geodirectory'),
|
|
| 690 | + 'id' => 'geodir_show_author_top_section', |
|
| 691 | + 'type' => 'checkbox', |
|
| 692 | + 'std' => '1' // Default value to show home top section |
|
| 693 | + ), |
|
| 694 | 694 | |
| 695 | - array( |
|
| 696 | - 'name' => __('Author right section', 'geodirectory'),
|
|
| 697 | - 'desc' => __('Show the right section of author page', 'geodirectory'),
|
|
| 698 | - 'id' => 'geodir_show_author_right_section', |
|
| 699 | - 'type' => 'checkbox', |
|
| 700 | - 'std' => '1' // Default value to show home top section |
|
| 701 | - ), |
|
| 695 | + array( |
|
| 696 | + 'name' => __('Author right section', 'geodirectory'),
|
|
| 697 | + 'desc' => __('Show the right section of author page', 'geodirectory'),
|
|
| 698 | + 'id' => 'geodir_show_author_right_section', |
|
| 699 | + 'type' => 'checkbox', |
|
| 700 | + 'std' => '1' // Default value to show home top section |
|
| 701 | + ), |
|
| 702 | 702 | |
| 703 | - array( |
|
| 704 | - 'name' => __('Width of author right section', 'geodirectory'),
|
|
| 705 | - 'desc' => __('Enter the width of right section of author page in %', 'geodirectory'),
|
|
| 706 | - 'id' => 'geodir_width_author_right_section', |
|
| 707 | - 'type' => 'text', |
|
| 708 | - 'css' => 'min-width:300px;', |
|
| 709 | - 'std' => '30' // Default value to show home top section |
|
| 710 | - ), |
|
| 703 | + array( |
|
| 704 | + 'name' => __('Width of author right section', 'geodirectory'),
|
|
| 705 | + 'desc' => __('Enter the width of right section of author page in %', 'geodirectory'),
|
|
| 706 | + 'id' => 'geodir_width_author_right_section', |
|
| 707 | + 'type' => 'text', |
|
| 708 | + 'css' => 'min-width:300px;', |
|
| 709 | + 'std' => '30' // Default value to show home top section |
|
| 710 | + ), |
|
| 711 | 711 | |
| 712 | - array( |
|
| 713 | - 'name' => __('Author content section view', 'geodirectory'),
|
|
| 714 | - 'desc' => __('Set the listing view of author page', 'geodirectory'),
|
|
| 715 | - 'id' => 'geodir_author_view', |
|
| 716 | - 'css' => 'min-width:300px;', |
|
| 717 | - 'std' => 'gridview_onehalf', |
|
| 718 | - 'type' => 'select', |
|
| 719 | - 'class' => 'chosen_select', |
|
| 720 | - 'options' => array_unique(array( |
|
| 721 | - 'gridview_onehalf' => __('Grid View (Two Columns)', 'geodirectory'),
|
|
| 722 | - 'gridview_onethird' => __('Grid View (Three Columns)', 'geodirectory'),
|
|
| 723 | - 'gridview_onefourth' => __('Grid View (Four Columns)', 'geodirectory'),
|
|
| 724 | - 'gridview_onefifth' => __('Grid View (Five Columns)', 'geodirectory'),
|
|
| 725 | - 'listview' => __('List view', 'geodirectory'),
|
|
| 726 | - )) |
|
| 727 | - ), |
|
| 712 | + array( |
|
| 713 | + 'name' => __('Author content section view', 'geodirectory'),
|
|
| 714 | + 'desc' => __('Set the listing view of author page', 'geodirectory'),
|
|
| 715 | + 'id' => 'geodir_author_view', |
|
| 716 | + 'css' => 'min-width:300px;', |
|
| 717 | + 'std' => 'gridview_onehalf', |
|
| 718 | + 'type' => 'select', |
|
| 719 | + 'class' => 'chosen_select', |
|
| 720 | + 'options' => array_unique(array( |
|
| 721 | + 'gridview_onehalf' => __('Grid View (Two Columns)', 'geodirectory'),
|
|
| 722 | + 'gridview_onethird' => __('Grid View (Three Columns)', 'geodirectory'),
|
|
| 723 | + 'gridview_onefourth' => __('Grid View (Four Columns)', 'geodirectory'),
|
|
| 724 | + 'gridview_onefifth' => __('Grid View (Five Columns)', 'geodirectory'),
|
|
| 725 | + 'listview' => __('List view', 'geodirectory'),
|
|
| 726 | + )) |
|
| 727 | + ), |
|
| 728 | 728 | |
| 729 | - array( |
|
| 730 | - 'name' => __('Width of author content section', 'geodirectory'),
|
|
| 731 | - 'desc' => __('Enter the width of content section of author page in %', 'geodirectory'),
|
|
| 732 | - 'id' => 'geodir_width_author_contant_section', |
|
| 733 | - 'type' => 'text', |
|
| 734 | - 'css' => 'min-width:300px;', |
|
| 735 | - 'std' => '63' // Default value to show home top section |
|
| 736 | - ), |
|
| 729 | + array( |
|
| 730 | + 'name' => __('Width of author content section', 'geodirectory'),
|
|
| 731 | + 'desc' => __('Enter the width of content section of author page in %', 'geodirectory'),
|
|
| 732 | + 'id' => 'geodir_width_author_contant_section', |
|
| 733 | + 'type' => 'text', |
|
| 734 | + 'css' => 'min-width:300px;', |
|
| 735 | + 'std' => '63' // Default value to show home top section |
|
| 736 | + ), |
|
| 737 | 737 | |
| 738 | - array( |
|
| 739 | - 'name' => __('Author left section', 'geodirectory'),
|
|
| 740 | - 'desc' => __('Show the left section of author page', 'geodirectory'),
|
|
| 741 | - 'id' => 'geodir_show_author_left_section', |
|
| 742 | - 'type' => 'checkbox', |
|
| 743 | - 'std' => '0' // Default value to show home top section |
|
| 744 | - ), |
|
| 738 | + array( |
|
| 739 | + 'name' => __('Author left section', 'geodirectory'),
|
|
| 740 | + 'desc' => __('Show the left section of author page', 'geodirectory'),
|
|
| 741 | + 'id' => 'geodir_show_author_left_section', |
|
| 742 | + 'type' => 'checkbox', |
|
| 743 | + 'std' => '0' // Default value to show home top section |
|
| 744 | + ), |
|
| 745 | 745 | |
| 746 | - array( |
|
| 747 | - 'name' => __('Width of author left section', 'geodirectory'),
|
|
| 748 | - 'desc' => __('Enter the width of left section of home page in %', 'geodirectory'),
|
|
| 749 | - 'id' => 'geodir_width_author_left_section', |
|
| 750 | - 'type' => 'text', |
|
| 751 | - 'css' => 'min-width:300px;', |
|
| 752 | - 'std' => '30' // Default value to show home top section |
|
| 753 | - ), |
|
| 746 | + array( |
|
| 747 | + 'name' => __('Width of author left section', 'geodirectory'),
|
|
| 748 | + 'desc' => __('Enter the width of left section of home page in %', 'geodirectory'),
|
|
| 749 | + 'id' => 'geodir_width_author_left_section', |
|
| 750 | + 'type' => 'text', |
|
| 751 | + 'css' => 'min-width:300px;', |
|
| 752 | + 'std' => '30' // Default value to show home top section |
|
| 753 | + ), |
|
| 754 | 754 | |
| 755 | - array( |
|
| 756 | - 'name' => __('Author bottom section', 'geodirectory'),
|
|
| 757 | - 'desc' => __('Show the bottom section of author page', 'geodirectory'),
|
|
| 758 | - 'id' => 'geodir_show_author_bottom_section', |
|
| 759 | - 'type' => 'checkbox', |
|
| 760 | - 'std' => '0' // Default value to show home top section |
|
| 761 | - ), |
|
| 755 | + array( |
|
| 756 | + 'name' => __('Author bottom section', 'geodirectory'),
|
|
| 757 | + 'desc' => __('Show the bottom section of author page', 'geodirectory'),
|
|
| 758 | + 'id' => 'geodir_show_author_bottom_section', |
|
| 759 | + 'type' => 'checkbox', |
|
| 760 | + 'std' => '0' // Default value to show home top section |
|
| 761 | + ), |
|
| 762 | 762 | |
| 763 | 763 | |
| 764 | - array( |
|
| 765 | - 'name' => __('Description word limit', 'geodirectory'),
|
|
| 766 | - 'desc' => '', |
|
| 767 | - 'id' => 'geodir_author_desc_word_limit', |
|
| 768 | - 'type' => 'text', |
|
| 769 | - 'css' => 'min-width:300px;', |
|
| 770 | - 'std' => '50' // Default value to show home top section |
|
| 771 | - ), |
|
| 764 | + array( |
|
| 765 | + 'name' => __('Description word limit', 'geodirectory'),
|
|
| 766 | + 'desc' => '', |
|
| 767 | + 'id' => 'geodir_author_desc_word_limit', |
|
| 768 | + 'type' => 'text', |
|
| 769 | + 'css' => 'min-width:300px;', |
|
| 770 | + 'std' => '50' // Default value to show home top section |
|
| 771 | + ), |
|
| 772 | 772 | |
| 773 | - array('type' => 'sectionend', 'id' => 'geodir_author_layout'),
|
|
| 774 | - /* Author Layout Settings end */ |
|
| 773 | + array('type' => 'sectionend', 'id' => 'geodir_author_layout'),
|
|
| 774 | + /* Author Layout Settings end */ |
|
| 775 | 775 | |
| 776 | 776 | |
| 777 | - /* Post Type Navigation Settings Start */ |
|
| 778 | - array('name' => __('Navigation', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_navigation_settings'),
|
|
| 777 | + /* Post Type Navigation Settings Start */ |
|
| 778 | + array('name' => __('Navigation', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_navigation_settings'),
|
|
| 779 | 779 | |
| 780 | 780 | |
| 781 | - /* Post Type Navigation Settings Start */ |
|
| 781 | + /* Post Type Navigation Settings Start */ |
|
| 782 | 782 | |
| 783 | - array('name' => __('Navigation Locations', 'geodirectory'),
|
|
| 784 | - 'type' => 'sectionstart', |
|
| 785 | - 'desc' => '', |
|
| 786 | - 'id' => 'geodir_navigation_locations'), |
|
| 783 | + array('name' => __('Navigation Locations', 'geodirectory'),
|
|
| 784 | + 'type' => 'sectionstart', |
|
| 785 | + 'desc' => '', |
|
| 786 | + 'id' => 'geodir_navigation_locations'), |
|
| 787 | 787 | |
| 788 | - array( |
|
| 789 | - 'name' => __('Show geodirectory navigation in selected menu locations', 'geodirectory'),
|
|
| 790 | - 'desc' => '', |
|
| 791 | - 'tip' => '', |
|
| 792 | - 'id' => 'geodir_theme_location_nav', |
|
| 793 | - 'css' => 'min-width:300px;', |
|
| 794 | - 'std' => array(), |
|
| 795 | - 'type' => 'multiselect', |
|
| 796 | - 'placeholder_text' => __('Select menu locations', 'geodirectory'),
|
|
| 797 | - 'class' => 'chosen_select', |
|
| 798 | - 'options' => array_unique(geodir_theme_location_setting_fun()) |
|
| 799 | - ), |
|
| 800 | - array('type' => 'sectionend', 'id' => 'geodir_navigation_options'),
|
|
| 801 | - |
|
| 802 | - |
|
| 803 | - array('name' => __('Navigation Settings', 'geodirectory'),
|
|
| 804 | - 'type' => 'sectionstart', |
|
| 805 | - 'desc' => '', |
|
| 806 | - 'id' => 'geodir_navigation_options'), |
|
| 788 | + array( |
|
| 789 | + 'name' => __('Show geodirectory navigation in selected menu locations', 'geodirectory'),
|
|
| 790 | + 'desc' => '', |
|
| 791 | + 'tip' => '', |
|
| 792 | + 'id' => 'geodir_theme_location_nav', |
|
| 793 | + 'css' => 'min-width:300px;', |
|
| 794 | + 'std' => array(), |
|
| 795 | + 'type' => 'multiselect', |
|
| 796 | + 'placeholder_text' => __('Select menu locations', 'geodirectory'),
|
|
| 797 | + 'class' => 'chosen_select', |
|
| 798 | + 'options' => array_unique(geodir_theme_location_setting_fun()) |
|
| 799 | + ), |
|
| 800 | + array('type' => 'sectionend', 'id' => 'geodir_navigation_options'),
|
|
| 807 | 801 | |
| 808 | 802 | |
| 809 | - array( |
|
| 810 | - 'name' => __('Show add listing navigation in menu', 'geodirectory'),
|
|
| 811 | - 'desc' => sprintf(__('Show add listing navigation in main menu? (untick to disable) If you disable this option, none of the add listing link will appear in main navigation.', 'geodirectory')),
|
|
| 812 | - 'id' => 'geodir_show_addlisting_nav', |
|
| 813 | - 'std' => '1', |
|
| 814 | - 'type' => 'checkbox' |
|
| 815 | - ), |
|
| 803 | + array('name' => __('Navigation Settings', 'geodirectory'),
|
|
| 804 | + 'type' => 'sectionstart', |
|
| 805 | + 'desc' => '', |
|
| 806 | + 'id' => 'geodir_navigation_options'), |
|
| 816 | 807 | |
| 817 | - array( |
|
| 818 | - 'name' => __('Show listings navigation in menu', 'geodirectory'),
|
|
| 819 | - 'desc' => sprintf(__('Show listing navigation in main menu? (untick to disable) If you disable this option, none of the listing link will appear in main navigation.', 'geodirectory')),
|
|
| 820 | - 'id' => 'geodir_show_listing_nav', |
|
| 821 | - 'std' => '1', |
|
| 822 | - 'type' => 'checkbox' |
|
| 823 | - ), |
|
| 824 | 808 | |
| 825 | - array('type' => 'sectionend', 'id' => 'geodir_navigation_options'),
|
|
| 809 | + array( |
|
| 810 | + 'name' => __('Show add listing navigation in menu', 'geodirectory'),
|
|
| 811 | + 'desc' => sprintf(__('Show add listing navigation in main menu? (untick to disable) If you disable this option, none of the add listing link will appear in main navigation.', 'geodirectory')),
|
|
| 812 | + 'id' => 'geodir_show_addlisting_nav', |
|
| 813 | + 'std' => '1', |
|
| 814 | + 'type' => 'checkbox' |
|
| 815 | + ), |
|
| 826 | 816 | |
| 817 | + array( |
|
| 818 | + 'name' => __('Show listings navigation in menu', 'geodirectory'),
|
|
| 819 | + 'desc' => sprintf(__('Show listing navigation in main menu? (untick to disable) If you disable this option, none of the listing link will appear in main navigation.', 'geodirectory')),
|
|
| 820 | + 'id' => 'geodir_show_listing_nav', |
|
| 821 | + 'std' => '1', |
|
| 822 | + 'type' => 'checkbox' |
|
| 823 | + ), |
|
| 827 | 824 | |
| 828 | - array('name' => __('Post Type Navigation Settings', 'geodirectory'),
|
|
| 829 | - 'type' => 'sectionstart', |
|
| 830 | - 'desc' => '', |
|
| 831 | - 'id' => 'geodir_post_type_navigation_layout'), |
|
| 832 | - array( |
|
| 833 | - 'name' => __('Show listing link in main navigation', 'geodirectory'),
|
|
| 834 | - 'desc' => '', |
|
| 835 | - 'tip' => '', |
|
| 836 | - 'id' => 'geodir_add_posttype_in_main_nav', |
|
| 837 | - 'css' => 'min-width:300px;', |
|
| 838 | - 'std' => array(), |
|
| 839 | - 'type' => 'multiselect', |
|
| 840 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 841 | - 'class' => 'chosen_select', |
|
| 842 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 843 | - ), |
|
| 825 | + array('type' => 'sectionend', 'id' => 'geodir_navigation_options'),
|
|
| 844 | 826 | |
| 845 | - array( |
|
| 846 | - 'name' => __('Show listing link in listing navigation', 'geodirectory'),
|
|
| 847 | - 'desc' => '', |
|
| 848 | - 'tip' => '', |
|
| 849 | - 'id' => 'geodir_add_posttype_in_listing_nav', |
|
| 850 | - 'css' => 'min-width:300px;', |
|
| 851 | - 'std' => geodir_get_posttypes(), |
|
| 852 | - 'type' => 'multiselect', |
|
| 853 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 854 | - 'class' => 'chosen_select', |
|
| 855 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 856 | - ), |
|
| 857 | 827 | |
| 858 | - array( |
|
| 859 | - 'name' => __('Allow post type to add from frontend', 'geodirectory'),
|
|
| 860 | - 'desc' => '', |
|
| 861 | - 'tip' => '', |
|
| 862 | - 'id' => 'geodir_allow_posttype_frontend', |
|
| 863 | - 'css' => 'min-width:300px;', |
|
| 864 | - 'std' => geodir_get_posttypes(), |
|
| 865 | - 'type' => 'multiselect', |
|
| 866 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 867 | - 'class' => 'chosen_select', |
|
| 868 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 869 | - ), |
|
| 828 | + array('name' => __('Post Type Navigation Settings', 'geodirectory'),
|
|
| 829 | + 'type' => 'sectionstart', |
|
| 830 | + 'desc' => '', |
|
| 831 | + 'id' => 'geodir_post_type_navigation_layout'), |
|
| 832 | + array( |
|
| 833 | + 'name' => __('Show listing link in main navigation', 'geodirectory'),
|
|
| 834 | + 'desc' => '', |
|
| 835 | + 'tip' => '', |
|
| 836 | + 'id' => 'geodir_add_posttype_in_main_nav', |
|
| 837 | + 'css' => 'min-width:300px;', |
|
| 838 | + 'std' => array(), |
|
| 839 | + 'type' => 'multiselect', |
|
| 840 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 841 | + 'class' => 'chosen_select', |
|
| 842 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 843 | + ), |
|
| 870 | 844 | |
| 871 | - array( |
|
| 872 | - 'name' => __('Show add listing link in main navigation', 'geodirectory'),
|
|
| 873 | - 'desc' => '', |
|
| 874 | - 'tip' => '', |
|
| 875 | - 'id' => 'geodir_add_listing_link_main_nav', |
|
| 876 | - 'css' => 'min-width:300px;', |
|
| 877 | - 'std' => array(), |
|
| 878 | - 'type' => 'multiselect', |
|
| 879 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 880 | - 'class' => 'chosen_select', |
|
| 881 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 882 | - ), |
|
| 845 | + array( |
|
| 846 | + 'name' => __('Show listing link in listing navigation', 'geodirectory'),
|
|
| 847 | + 'desc' => '', |
|
| 848 | + 'tip' => '', |
|
| 849 | + 'id' => 'geodir_add_posttype_in_listing_nav', |
|
| 850 | + 'css' => 'min-width:300px;', |
|
| 851 | + 'std' => geodir_get_posttypes(), |
|
| 852 | + 'type' => 'multiselect', |
|
| 853 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 854 | + 'class' => 'chosen_select', |
|
| 855 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 856 | + ), |
|
| 883 | 857 | |
| 884 | - array( |
|
| 885 | - 'name' => __('Show add listing link in add listing navigation', 'geodirectory'),
|
|
| 886 | - 'desc' => '', |
|
| 887 | - 'tip' => '', |
|
| 888 | - 'id' => 'geodir_add_listing_link_add_listing_nav', |
|
| 889 | - 'css' => 'min-width:300px;', |
|
| 890 | - 'std' => geodir_get_posttypes(), |
|
| 891 | - 'type' => 'multiselect', |
|
| 892 | - 'class' => 'chosen_select', |
|
| 893 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 894 | - ), |
|
| 858 | + array( |
|
| 859 | + 'name' => __('Allow post type to add from frontend', 'geodirectory'),
|
|
| 860 | + 'desc' => '', |
|
| 861 | + 'tip' => '', |
|
| 862 | + 'id' => 'geodir_allow_posttype_frontend', |
|
| 863 | + 'css' => 'min-width:300px;', |
|
| 864 | + 'std' => geodir_get_posttypes(), |
|
| 865 | + 'type' => 'multiselect', |
|
| 866 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 867 | + 'class' => 'chosen_select', |
|
| 868 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 869 | + ), |
|
| 895 | 870 | |
| 896 | - array('type' => 'sectionend', 'id' => 'geodir_post_type_navigation_layout'),
|
|
| 871 | + array( |
|
| 872 | + 'name' => __('Show add listing link in main navigation', 'geodirectory'),
|
|
| 873 | + 'desc' => '', |
|
| 874 | + 'tip' => '', |
|
| 875 | + 'id' => 'geodir_add_listing_link_main_nav', |
|
| 876 | + 'css' => 'min-width:300px;', |
|
| 877 | + 'std' => array(), |
|
| 878 | + 'type' => 'multiselect', |
|
| 879 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 880 | + 'class' => 'chosen_select', |
|
| 881 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 882 | + ), |
|
| 897 | 883 | |
| 884 | + array( |
|
| 885 | + 'name' => __('Show add listing link in add listing navigation', 'geodirectory'),
|
|
| 886 | + 'desc' => '', |
|
| 887 | + 'tip' => '', |
|
| 888 | + 'id' => 'geodir_add_listing_link_add_listing_nav', |
|
| 889 | + 'css' => 'min-width:300px;', |
|
| 890 | + 'std' => geodir_get_posttypes(), |
|
| 891 | + 'type' => 'multiselect', |
|
| 892 | + 'class' => 'chosen_select', |
|
| 893 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 894 | + ), |
|
| 898 | 895 | |
| 899 | - array('name' => __('User Dashboard Post Type Navigation Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_user_dashboard_post_type '),
|
|
| 896 | + array('type' => 'sectionend', 'id' => 'geodir_post_type_navigation_layout'),
|
|
| 900 | 897 | |
| 901 | 898 | |
| 902 | - array( |
|
| 903 | - 'name' => __('Show add listing link in user dashboard', 'geodirectory'),
|
|
| 904 | - 'desc' => '', |
|
| 905 | - 'tip' => '', |
|
| 906 | - 'id' => 'geodir_add_listing_link_user_dashboard', |
|
| 907 | - 'css' => 'min-width:300px;', |
|
| 908 | - 'std' => geodir_get_posttypes(), |
|
| 909 | - 'type' => 'multiselect', |
|
| 910 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 911 | - 'class' => 'chosen_select', |
|
| 912 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 913 | - ), |
|
| 899 | + array('name' => __('User Dashboard Post Type Navigation Settings', 'geodirectory'), 'type' => 'sectionstart', 'desc' => '', 'id' => 'geodir_user_dashboard_post_type '),
|
|
| 914 | 900 | |
| 915 | - array( |
|
| 916 | - 'name' => __('Show favorite link in user dashboard', 'geodirectory'),
|
|
| 917 | - 'desc' => __('Option will not appear if user does not have a favorite of that post type', 'geodirectory'),
|
|
| 918 | - 'tip' => '', |
|
| 919 | - 'id' => 'geodir_favorite_link_user_dashboard', |
|
| 920 | - 'css' => 'min-width:300px;', |
|
| 921 | - 'std' => geodir_get_posttypes(), |
|
| 922 | - 'type' => 'multiselect', |
|
| 923 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 924 | - 'class' => 'chosen_select', |
|
| 925 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 926 | - ), |
|
| 927 | 901 | |
| 928 | - array( |
|
| 929 | - 'name' => __('Show listing link in user dashboard', 'geodirectory'),
|
|
| 930 | - 'desc' => __('Option will not appear if user does not have his/her own listing of that post type', 'geodirectory'),
|
|
| 931 | - 'tip' => '', |
|
| 932 | - 'id' => 'geodir_listing_link_user_dashboard', |
|
| 933 | - 'css' => 'min-width:300px;', |
|
| 934 | - 'std' => geodir_get_posttypes(), |
|
| 935 | - 'type' => 'multiselect', |
|
| 936 | - 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 937 | - 'class' => 'chosen_select', |
|
| 938 | - 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 939 | - ), |
|
| 940 | - |
|
| 941 | - array('type' => 'sectionend', 'id' => 'geodir_user_dashboard_post_type'),
|
|
| 942 | - /* Post Type Navigation Settings End */ |
|
| 943 | - |
|
| 944 | - /* Script Settings Start */ |
|
| 945 | - array('name' => __('Scripts', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_script_settings '),
|
|
| 946 | - |
|
| 947 | - /* |
|
| 902 | + array( |
|
| 903 | + 'name' => __('Show add listing link in user dashboard', 'geodirectory'),
|
|
| 904 | + 'desc' => '', |
|
| 905 | + 'tip' => '', |
|
| 906 | + 'id' => 'geodir_add_listing_link_user_dashboard', |
|
| 907 | + 'css' => 'min-width:300px;', |
|
| 908 | + 'std' => geodir_get_posttypes(), |
|
| 909 | + 'type' => 'multiselect', |
|
| 910 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 911 | + 'class' => 'chosen_select', |
|
| 912 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 913 | + ), |
|
| 914 | + |
|
| 915 | + array( |
|
| 916 | + 'name' => __('Show favorite link in user dashboard', 'geodirectory'),
|
|
| 917 | + 'desc' => __('Option will not appear if user does not have a favorite of that post type', 'geodirectory'),
|
|
| 918 | + 'tip' => '', |
|
| 919 | + 'id' => 'geodir_favorite_link_user_dashboard', |
|
| 920 | + 'css' => 'min-width:300px;', |
|
| 921 | + 'std' => geodir_get_posttypes(), |
|
| 922 | + 'type' => 'multiselect', |
|
| 923 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 924 | + 'class' => 'chosen_select', |
|
| 925 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 926 | + ), |
|
| 927 | + |
|
| 928 | + array( |
|
| 929 | + 'name' => __('Show listing link in user dashboard', 'geodirectory'),
|
|
| 930 | + 'desc' => __('Option will not appear if user does not have his/her own listing of that post type', 'geodirectory'),
|
|
| 931 | + 'tip' => '', |
|
| 932 | + 'id' => 'geodir_listing_link_user_dashboard', |
|
| 933 | + 'css' => 'min-width:300px;', |
|
| 934 | + 'std' => geodir_get_posttypes(), |
|
| 935 | + 'type' => 'multiselect', |
|
| 936 | + 'placeholder_text' => __('Select post types', 'geodirectory'),
|
|
| 937 | + 'class' => 'chosen_select', |
|
| 938 | + 'options' => array_unique(geodir_post_type_setting_fun()) |
|
| 939 | + ), |
|
| 940 | + |
|
| 941 | + array('type' => 'sectionend', 'id' => 'geodir_user_dashboard_post_type'),
|
|
| 942 | + /* Post Type Navigation Settings End */ |
|
| 943 | + |
|
| 944 | + /* Script Settings Start */ |
|
| 945 | + array('name' => __('Scripts', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_script_settings '),
|
|
| 946 | + |
|
| 947 | + /* |
|
| 948 | 948 | array( 'name' => __( 'Add/Remove Scripts', 'geodirectory' ), |
| 949 | 949 | 'type' => 'sectionstart', |
| 950 | 950 | 'desc' => '', |
@@ -970,190 +970,190 @@ discard block |
||
| 970 | 970 | |
| 971 | 971 | */ |
| 972 | 972 | |
| 973 | - array('name' => __('GD Lazy Load Images', 'geodirectory'),
|
|
| 974 | - 'type' => 'sectionstart', |
|
| 975 | - 'desc' => '', |
|
| 976 | - 'id' => 'geodir_gdll_settings'), |
|
| 973 | + array('name' => __('GD Lazy Load Images', 'geodirectory'),
|
|
| 974 | + 'type' => 'sectionstart', |
|
| 975 | + 'desc' => '', |
|
| 976 | + 'id' => 'geodir_gdll_settings'), |
|
| 977 | 977 | |
| 978 | - array( |
|
| 979 | - 'name' => __('Enable lazy load images?', 'geodirectory'),
|
|
| 980 | - 'desc' => __('GD images will be loaded only when visible on the page', 'geodirectory'),
|
|
| 981 | - 'id' => 'geodir_lazy_load', |
|
| 982 | - 'type' => 'checkbox', |
|
| 983 | - 'std' => '1' // Default value to show home top section |
|
| 984 | - ), |
|
| 985 | - array('type' => 'sectionend', 'id' => 'geodir_gdll_settings'),
|
|
| 978 | + array( |
|
| 979 | + 'name' => __('Enable lazy load images?', 'geodirectory'),
|
|
| 980 | + 'desc' => __('GD images will be loaded only when visible on the page', 'geodirectory'),
|
|
| 981 | + 'id' => 'geodir_lazy_load', |
|
| 982 | + 'type' => 'checkbox', |
|
| 983 | + 'std' => '1' // Default value to show home top section |
|
| 984 | + ), |
|
| 985 | + array('type' => 'sectionend', 'id' => 'geodir_gdll_settings'),
|
|
| 986 | 986 | |
| 987 | 987 | |
| 988 | - array('name' => __('Script Settings', 'geodirectory'),
|
|
| 989 | - 'type' => 'sectionstart', |
|
| 990 | - 'desc' => '', |
|
| 991 | - 'id' => 'geodir_script_settings'), |
|
| 988 | + array('name' => __('Script Settings', 'geodirectory'),
|
|
| 989 | + 'type' => 'sectionstart', |
|
| 990 | + 'desc' => '', |
|
| 991 | + 'id' => 'geodir_script_settings'), |
|
| 992 | 992 | |
| 993 | - array( |
|
| 994 | - 'name' => __('Custom style css code', 'geodirectory'),
|
|
| 995 | - 'desc' => '', |
|
| 996 | - 'id' => 'geodir_coustem_css', |
|
| 997 | - 'type' => 'textarea', |
|
| 998 | - 'css' => 'min-width:300px;', |
|
| 999 | - 'std' => '' // Default value for the page title - changed in settings |
|
| 1000 | - ), |
|
| 993 | + array( |
|
| 994 | + 'name' => __('Custom style css code', 'geodirectory'),
|
|
| 995 | + 'desc' => '', |
|
| 996 | + 'id' => 'geodir_coustem_css', |
|
| 997 | + 'type' => 'textarea', |
|
| 998 | + 'css' => 'min-width:300px;', |
|
| 999 | + 'std' => '' // Default value for the page title - changed in settings |
|
| 1000 | + ), |
|
| 1001 | 1001 | |
| 1002 | - array( |
|
| 1003 | - 'name' => __('Header script code', 'geodirectory'),
|
|
| 1004 | - 'desc' => '', |
|
| 1005 | - 'id' => 'geodir_header_scripts', |
|
| 1006 | - 'type' => 'textarea', |
|
| 1007 | - 'css' => 'min-width:300px;', |
|
| 1008 | - 'std' => '' // Default value for the page title - changed in settings |
|
| 1009 | - ), |
|
| 1002 | + array( |
|
| 1003 | + 'name' => __('Header script code', 'geodirectory'),
|
|
| 1004 | + 'desc' => '', |
|
| 1005 | + 'id' => 'geodir_header_scripts', |
|
| 1006 | + 'type' => 'textarea', |
|
| 1007 | + 'css' => 'min-width:300px;', |
|
| 1008 | + 'std' => '' // Default value for the page title - changed in settings |
|
| 1009 | + ), |
|
| 1010 | 1010 | |
| 1011 | - array( |
|
| 1012 | - 'name' => __('Footer script code', 'geodirectory'),
|
|
| 1013 | - 'desc' => '', |
|
| 1014 | - 'id' => 'geodir_footer_scripts', |
|
| 1015 | - 'type' => 'textarea', |
|
| 1016 | - 'css' => 'min-width:300px;', |
|
| 1017 | - 'std' => '' // Default value for the page title - changed in settings |
|
| 1018 | - ), |
|
| 1011 | + array( |
|
| 1012 | + 'name' => __('Footer script code', 'geodirectory'),
|
|
| 1013 | + 'desc' => '', |
|
| 1014 | + 'id' => 'geodir_footer_scripts', |
|
| 1015 | + 'type' => 'textarea', |
|
| 1016 | + 'css' => 'min-width:300px;', |
|
| 1017 | + 'std' => '' // Default value for the page title - changed in settings |
|
| 1018 | + ), |
|
| 1019 | 1019 | |
| 1020 | - array('type' => 'sectionend', 'id' => 'geodir_script_settings'),
|
|
| 1021 | - /* Script Settings End */ |
|
| 1020 | + array('type' => 'sectionend', 'id' => 'geodir_script_settings'),
|
|
| 1021 | + /* Script Settings End */ |
|
| 1022 | 1022 | |
| 1023 | - /* Map Settings Start */ |
|
| 1024 | - array('name' => __('Map', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_map_settings '),
|
|
| 1023 | + /* Map Settings Start */ |
|
| 1024 | + array('name' => __('Map', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'geodir_map_settings '),
|
|
| 1025 | 1025 | |
| 1026 | 1026 | |
| 1027 | - // Google API key |
|
| 1028 | - array( |
|
| 1029 | - 'name' => __('Google Maps API KEY', 'geodirectory'),
|
|
| 1030 | - 'type' => 'sectionstart', |
|
| 1031 | - 'desc' => '', |
|
| 1032 | - 'id' => 'geodir_google_api_key' |
|
| 1033 | - ), |
|
| 1034 | - array( |
|
| 1035 | - 'name' => __('Google Maps API KEY', 'geodirectory'),
|
|
| 1036 | - 'desc' => sprintf( |
|
| 1037 | - __('This is a requirement to use Google Maps, you can get a key from <a href="%s" target="_blank">here</a> OR you can set GD to use Open Street Maps below under Select Maps API setting. (<a href="%s" target="_blank">How to add a Google API KEY?</a>)', 'geodirectory'),
|
|
| 1038 | - 'https://console.developers.google.com/flows/enableapi?apiid=static_maps_backend,street_view_image_backend,maps_embed_backend,places_backend,geocoding_backend,directions_backend,distance_matrix_backend,geolocation,elevation_backend,timezone_backend,maps_backend&keyType=CLIENT_SIDE&reusekey=true','https://wpgeodirectory.com/docs/add-google-api-key/' ), |
|
| 1039 | - 'tip' => '', |
|
| 1040 | - 'id' => 'geodir_google_api_key', |
|
| 1041 | - 'css' => 'min-width:300px;', |
|
| 1042 | - 'std' => '', |
|
| 1043 | - 'type' => 'map-key', |
|
| 1044 | - ), |
|
| 1045 | - array( |
|
| 1046 | - 'type' => 'sectionend', |
|
| 1047 | - 'id' => 'geodir_google_api_key' |
|
| 1048 | - ), |
|
| 1027 | + // Google API key |
|
| 1028 | + array( |
|
| 1029 | + 'name' => __('Google Maps API KEY', 'geodirectory'),
|
|
| 1030 | + 'type' => 'sectionstart', |
|
| 1031 | + 'desc' => '', |
|
| 1032 | + 'id' => 'geodir_google_api_key' |
|
| 1033 | + ), |
|
| 1034 | + array( |
|
| 1035 | + 'name' => __('Google Maps API KEY', 'geodirectory'),
|
|
| 1036 | + 'desc' => sprintf( |
|
| 1037 | + __('This is a requirement to use Google Maps, you can get a key from <a href="%s" target="_blank">here</a> OR you can set GD to use Open Street Maps below under Select Maps API setting. (<a href="%s" target="_blank">How to add a Google API KEY?</a>)', 'geodirectory'),
|
|
| 1038 | + 'https://console.developers.google.com/flows/enableapi?apiid=static_maps_backend,street_view_image_backend,maps_embed_backend,places_backend,geocoding_backend,directions_backend,distance_matrix_backend,geolocation,elevation_backend,timezone_backend,maps_backend&keyType=CLIENT_SIDE&reusekey=true','https://wpgeodirectory.com/docs/add-google-api-key/' ), |
|
| 1039 | + 'tip' => '', |
|
| 1040 | + 'id' => 'geodir_google_api_key', |
|
| 1041 | + 'css' => 'min-width:300px;', |
|
| 1042 | + 'std' => '', |
|
| 1043 | + 'type' => 'map-key', |
|
| 1044 | + ), |
|
| 1045 | + array( |
|
| 1046 | + 'type' => 'sectionend', |
|
| 1047 | + 'id' => 'geodir_google_api_key' |
|
| 1048 | + ), |
|
| 1049 | 1049 | |
| 1050 | - /* Untick the category by default on home map */ |
|
| 1051 | - array( |
|
| 1052 | - 'name' => __('Home Map Settings', 'geodirectory'),
|
|
| 1053 | - 'type' => 'sectionstart', |
|
| 1054 | - 'desc' => '', |
|
| 1055 | - 'id' => 'geodir_home_map_section' |
|
| 1056 | - ), |
|
| 1057 | - array( |
|
| 1058 | - 'name' => __('Select category to untick by default on map', 'geodirectory'),
|
|
| 1059 | - 'desc' => __('Select category to untick by default on the home map.', 'geodirectory'),
|
|
| 1060 | - 'tip' => '', |
|
| 1061 | - 'id' => 'geodir_home_map_untick', |
|
| 1062 | - 'css' => 'min-width:300px;', |
|
| 1063 | - 'std' => '', |
|
| 1064 | - 'type' => 'multiselect', |
|
| 1065 | - 'placeholder_text' => __('Select category', 'geodirectory'),
|
|
| 1066 | - 'class' => 'chosen_select', |
|
| 1067 | - 'options' => geodir_home_map_cats_key_value_array() |
|
| 1068 | - ), |
|
| 1069 | - array( |
|
| 1070 | - 'type' => 'sectionend', |
|
| 1071 | - 'id' => 'geodir_home_map_section' |
|
| 1072 | - ), |
|
| 1050 | + /* Untick the category by default on home map */ |
|
| 1051 | + array( |
|
| 1052 | + 'name' => __('Home Map Settings', 'geodirectory'),
|
|
| 1053 | + 'type' => 'sectionstart', |
|
| 1054 | + 'desc' => '', |
|
| 1055 | + 'id' => 'geodir_home_map_section' |
|
| 1056 | + ), |
|
| 1057 | + array( |
|
| 1058 | + 'name' => __('Select category to untick by default on map', 'geodirectory'),
|
|
| 1059 | + 'desc' => __('Select category to untick by default on the home map.', 'geodirectory'),
|
|
| 1060 | + 'tip' => '', |
|
| 1061 | + 'id' => 'geodir_home_map_untick', |
|
| 1062 | + 'css' => 'min-width:300px;', |
|
| 1063 | + 'std' => '', |
|
| 1064 | + 'type' => 'multiselect', |
|
| 1065 | + 'placeholder_text' => __('Select category', 'geodirectory'),
|
|
| 1066 | + 'class' => 'chosen_select', |
|
| 1067 | + 'options' => geodir_home_map_cats_key_value_array() |
|
| 1068 | + ), |
|
| 1069 | + array( |
|
| 1070 | + 'type' => 'sectionend', |
|
| 1071 | + 'id' => 'geodir_home_map_section' |
|
| 1072 | + ), |
|
| 1073 | 1073 | |
| 1074 | - array( |
|
| 1075 | - 'name' => __('Add Listing Map Settings', 'geodirectory'),
|
|
| 1076 | - 'type' => 'sectionstart', |
|
| 1077 | - 'desc' => '', |
|
| 1078 | - 'id' => 'geodir_add_listing_map_section' |
|
| 1079 | - ), |
|
| 1080 | - array( |
|
| 1081 | - 'name' => __('Disable mouse scroll on details page map tab', 'geodirectory'),
|
|
| 1082 | - 'desc' => __('Stops the mouse scroll zooming the map (home and listings settings set from widget)', 'geodirectory'),
|
|
| 1083 | - 'id' => 'geodir_add_listing_mouse_scroll', |
|
| 1084 | - 'type' => 'checkbox', |
|
| 1085 | - 'std' => '0' // Default value to show home top section |
|
| 1086 | - ), |
|
| 1087 | - array( |
|
| 1088 | - 'type' => 'sectionend', |
|
| 1089 | - 'id' => 'geodir_add_listing_map_section' |
|
| 1090 | - ), |
|
| 1074 | + array( |
|
| 1075 | + 'name' => __('Add Listing Map Settings', 'geodirectory'),
|
|
| 1076 | + 'type' => 'sectionstart', |
|
| 1077 | + 'desc' => '', |
|
| 1078 | + 'id' => 'geodir_add_listing_map_section' |
|
| 1079 | + ), |
|
| 1080 | + array( |
|
| 1081 | + 'name' => __('Disable mouse scroll on details page map tab', 'geodirectory'),
|
|
| 1082 | + 'desc' => __('Stops the mouse scroll zooming the map (home and listings settings set from widget)', 'geodirectory'),
|
|
| 1083 | + 'id' => 'geodir_add_listing_mouse_scroll', |
|
| 1084 | + 'type' => 'checkbox', |
|
| 1085 | + 'std' => '0' // Default value to show home top section |
|
| 1086 | + ), |
|
| 1087 | + array( |
|
| 1088 | + 'type' => 'sectionend', |
|
| 1089 | + 'id' => 'geodir_add_listing_map_section' |
|
| 1090 | + ), |
|
| 1091 | 1091 | |
| 1092 | 1092 | |
| 1093 | - array('name' => __('Default map settings', 'geodirectory'),
|
|
| 1094 | - 'type' => 'sectionstart', |
|
| 1095 | - 'desc' => '', |
|
| 1096 | - 'id' => 'geodir_map_default_settings'), |
|
| 1093 | + array('name' => __('Default map settings', 'geodirectory'),
|
|
| 1094 | + 'type' => 'sectionstart', |
|
| 1095 | + 'desc' => '', |
|
| 1096 | + 'id' => 'geodir_map_default_settings'), |
|
| 1097 | 1097 | |
| 1098 | - array( |
|
| 1099 | - 'name' => '', |
|
| 1100 | - 'desc' => '', |
|
| 1101 | - 'id' => 'map_default_settings', |
|
| 1102 | - 'type' => 'map_default_settings', |
|
| 1103 | - 'css' => 'min-width:300px;', |
|
| 1104 | - 'std' => '' // Default value for the page title - changed in settings |
|
| 1105 | - ), |
|
| 1098 | + array( |
|
| 1099 | + 'name' => '', |
|
| 1100 | + 'desc' => '', |
|
| 1101 | + 'id' => 'map_default_settings', |
|
| 1102 | + 'type' => 'map_default_settings', |
|
| 1103 | + 'css' => 'min-width:300px;', |
|
| 1104 | + 'std' => '' // Default value for the page title - changed in settings |
|
| 1105 | + ), |
|
| 1106 | 1106 | |
| 1107 | - array( |
|
| 1108 | - 'name' => __('Upload map default marker icon', 'geodirectory'),
|
|
| 1109 | - 'desc' => '', |
|
| 1110 | - 'id' => 'geodir_default_marker_icon', |
|
| 1111 | - 'type' => 'file', |
|
| 1112 | - 'std' => '0', |
|
| 1113 | - 'value' => geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png'// Default value to show home top section |
|
| 1114 | - ), |
|
| 1115 | - // add option that allows enable/disable map dragging to phone devices |
|
| 1116 | - array( |
|
| 1117 | - 'name' => __('Show button control on map to enable/disable dragging', 'geodirectory'),
|
|
| 1118 | - 'desc' => __('If checked, it displays button control to enable/disable dragging on google maps for phone devices', 'geodirectory'),
|
|
| 1119 | - 'id' => 'geodir_map_onoff_dragging', |
|
| 1120 | - 'type' => 'checkbox', |
|
| 1121 | - 'std' => '0' // Default value to show home top section |
|
| 1122 | - ), |
|
| 1123 | - array( |
|
| 1124 | - 'name' => __('Select Maps API', 'geodirectory'),
|
|
| 1125 | - 'desc' => __('- Google Maps API will force to load Google JS library only.<br>- OpenStreetMap API will force to load OpenStreetMap JS library only.<br>- Load Automatic will load Google JS library first, but if Google maps JS library not loaded it then loads the OpenStreetMap JS library to load the maps (recommended for regions where Google maps banned).<br>- Disable Maps will disable and hides maps for entire site.', 'geodirectory'),
|
|
| 1126 | - 'tip' => '', |
|
| 1127 | - 'id' => 'geodir_load_map', |
|
| 1128 | - 'css' => 'min-width:300px;', |
|
| 1129 | - 'std' => 'auto', |
|
| 1130 | - 'type' => 'select', |
|
| 1131 | - 'placeholder_text' => __('Select Map', 'geodirectory'),
|
|
| 1132 | - 'options' => array( |
|
| 1133 | - 'auto' => __('Load Automatic', 'geodirectory'),
|
|
| 1134 | - 'google' => __('Load Google Maps API', 'geodirectory'),
|
|
| 1135 | - 'osm' => __('Load OpenStreetMap API', 'geodirectory'),
|
|
| 1136 | - 'none' => __('Disable Maps', 'geodirectory')
|
|
| 1137 | - ) |
|
| 1138 | - ), |
|
| 1139 | - |
|
| 1140 | - array('type' => 'sectionend', 'id' => 'geodir_map_default_settings'),
|
|
| 1141 | - |
|
| 1142 | - array('name' => __('Show / hide post type and category on map', 'geodirectory'),
|
|
| 1143 | - 'type' => 'sectionstart', |
|
| 1144 | - 'desc' => '', |
|
| 1145 | - 'id' => 'geodir_map_settings'), |
|
| 1107 | + array( |
|
| 1108 | + 'name' => __('Upload map default marker icon', 'geodirectory'),
|
|
| 1109 | + 'desc' => '', |
|
| 1110 | + 'id' => 'geodir_default_marker_icon', |
|
| 1111 | + 'type' => 'file', |
|
| 1112 | + 'std' => '0', |
|
| 1113 | + 'value' => geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png'// Default value to show home top section |
|
| 1114 | + ), |
|
| 1115 | + // add option that allows enable/disable map dragging to phone devices |
|
| 1116 | + array( |
|
| 1117 | + 'name' => __('Show button control on map to enable/disable dragging', 'geodirectory'),
|
|
| 1118 | + 'desc' => __('If checked, it displays button control to enable/disable dragging on google maps for phone devices', 'geodirectory'),
|
|
| 1119 | + 'id' => 'geodir_map_onoff_dragging', |
|
| 1120 | + 'type' => 'checkbox', |
|
| 1121 | + 'std' => '0' // Default value to show home top section |
|
| 1122 | + ), |
|
| 1123 | + array( |
|
| 1124 | + 'name' => __('Select Maps API', 'geodirectory'),
|
|
| 1125 | + 'desc' => __('- Google Maps API will force to load Google JS library only.<br>- OpenStreetMap API will force to load OpenStreetMap JS library only.<br>- Load Automatic will load Google JS library first, but if Google maps JS library not loaded it then loads the OpenStreetMap JS library to load the maps (recommended for regions where Google maps banned).<br>- Disable Maps will disable and hides maps for entire site.', 'geodirectory'),
|
|
| 1126 | + 'tip' => '', |
|
| 1127 | + 'id' => 'geodir_load_map', |
|
| 1128 | + 'css' => 'min-width:300px;', |
|
| 1129 | + 'std' => 'auto', |
|
| 1130 | + 'type' => 'select', |
|
| 1131 | + 'placeholder_text' => __('Select Map', 'geodirectory'),
|
|
| 1132 | + 'options' => array( |
|
| 1133 | + 'auto' => __('Load Automatic', 'geodirectory'),
|
|
| 1134 | + 'google' => __('Load Google Maps API', 'geodirectory'),
|
|
| 1135 | + 'osm' => __('Load OpenStreetMap API', 'geodirectory'),
|
|
| 1136 | + 'none' => __('Disable Maps', 'geodirectory')
|
|
| 1137 | + ) |
|
| 1138 | + ), |
|
| 1146 | 1139 | |
| 1147 | - array( |
|
| 1148 | - 'name' => __('Select Map Category', 'geodirectory'),
|
|
| 1149 | - 'desc' => '', |
|
| 1150 | - 'id' => 'geodir_map_settings', |
|
| 1151 | - 'type' => 'map', |
|
| 1152 | - 'css' => 'min-width:300px;', |
|
| 1153 | - 'std' => '' // Default value for the page title - changed in settings |
|
| 1154 | - ), |
|
| 1155 | - |
|
| 1156 | - array('type' => 'sectionend', 'id' => 'geodir_map_settings'),
|
|
| 1157 | - /* Map Settings End */ |
|
| 1140 | + array('type' => 'sectionend', 'id' => 'geodir_map_default_settings'),
|
|
| 1141 | + |
|
| 1142 | + array('name' => __('Show / hide post type and category on map', 'geodirectory'),
|
|
| 1143 | + 'type' => 'sectionstart', |
|
| 1144 | + 'desc' => '', |
|
| 1145 | + 'id' => 'geodir_map_settings'), |
|
| 1146 | + |
|
| 1147 | + array( |
|
| 1148 | + 'name' => __('Select Map Category', 'geodirectory'),
|
|
| 1149 | + 'desc' => '', |
|
| 1150 | + 'id' => 'geodir_map_settings', |
|
| 1151 | + 'type' => 'map', |
|
| 1152 | + 'css' => 'min-width:300px;', |
|
| 1153 | + 'std' => '' // Default value for the page title - changed in settings |
|
| 1154 | + ), |
|
| 1155 | + |
|
| 1156 | + array('type' => 'sectionend', 'id' => 'geodir_map_settings'),
|
|
| 1157 | + /* Map Settings End */ |
|
| 1158 | 1158 | |
| 1159 | 1159 | )); // End Design settings |
@@ -13,125 +13,125 @@ discard block |
||
| 13 | 13 | * @package GeoDirectory |
| 14 | 14 | */ |
| 15 | 15 | function geodir_deactivation() {
|
| 16 | - // Update installed variable |
|
| 17 | - update_option("geodir_installed", 0);
|
|
| 16 | + // Update installed variable |
|
| 17 | + update_option("geodir_installed", 0);
|
|
| 18 | 18 | |
| 19 | - // Remove rewrite rules and then recreate rewrite rules. |
|
| 20 | - flush_rewrite_rules(); |
|
| 19 | + // Remove rewrite rules and then recreate rewrite rules. |
|
| 20 | + flush_rewrite_rules(); |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | if (!function_exists('geodir_admin_styles')) {
|
| 24 | - /** |
|
| 25 | - * Enqueue Admin Styles. |
|
| 26 | - * |
|
| 27 | - * @since 1.0.0 |
|
| 28 | - * @package GeoDirectory |
|
| 29 | - */ |
|
| 30 | - function geodir_admin_styles() {
|
|
| 31 | - wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 32 | - wp_enqueue_style('geodirectory-admin-css');
|
|
| 24 | + /** |
|
| 25 | + * Enqueue Admin Styles. |
|
| 26 | + * |
|
| 27 | + * @since 1.0.0 |
|
| 28 | + * @package GeoDirectory |
|
| 29 | + */ |
|
| 30 | + function geodir_admin_styles() {
|
|
| 31 | + wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 32 | + wp_enqueue_style('geodirectory-admin-css');
|
|
| 33 | 33 | |
| 34 | - wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 35 | - wp_enqueue_style('geodirectory-frontend-style');
|
|
| 34 | + wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 35 | + wp_enqueue_style('geodirectory-frontend-style');
|
|
| 36 | 36 | |
| 37 | - wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 38 | - wp_enqueue_style('geodir-chosen-style');
|
|
| 37 | + wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 38 | + wp_enqueue_style('geodir-chosen-style');
|
|
| 39 | 39 | |
| 40 | - wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 41 | - wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
|
| 40 | + wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 41 | + wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
|
| 42 | 42 | |
| 43 | - wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 44 | - wp_enqueue_style('geodirectory-jquery-ui-css');
|
|
| 43 | + wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 44 | + wp_enqueue_style('geodirectory-jquery-ui-css');
|
|
| 45 | 45 | |
| 46 | - wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 47 | - wp_enqueue_style('geodirectory-custom-fields-css');
|
|
| 46 | + wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 47 | + wp_enqueue_style('geodirectory-custom-fields-css');
|
|
| 48 | 48 | |
| 49 | - wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | - wp_enqueue_style('geodirectory-pluplodar-css');
|
|
| 49 | + wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | + wp_enqueue_style('geodirectory-pluplodar-css');
|
|
| 51 | 51 | |
| 52 | - wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | - wp_enqueue_style('geodir-rating-style');
|
|
| 52 | + wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | + wp_enqueue_style('geodir-rating-style');
|
|
| 54 | 54 | |
| 55 | - wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | - wp_enqueue_style('geodir-rtl-style');
|
|
| 57 | - } |
|
| 55 | + wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | + wp_enqueue_style('geodir-rtl-style');
|
|
| 57 | + } |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | if (!function_exists('geodir_admin_styles_req')) {
|
| 61 | - /** |
|
| 62 | - * Loads stylesheets from CDN. |
|
| 63 | - * |
|
| 64 | - * @since 1.0.0 |
|
| 65 | - * @package GeoDirectory |
|
| 66 | - */ |
|
| 67 | - function geodir_admin_styles_req() |
|
| 68 | - {
|
|
| 61 | + /** |
|
| 62 | + * Loads stylesheets from CDN. |
|
| 63 | + * |
|
| 64 | + * @since 1.0.0 |
|
| 65 | + * @package GeoDirectory |
|
| 66 | + */ |
|
| 67 | + function geodir_admin_styles_req() |
|
| 68 | + {
|
|
| 69 | 69 | |
| 70 | - wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
|
| 71 | - wp_enqueue_style('font-awesome');
|
|
| 70 | + wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
|
| 71 | + wp_enqueue_style('font-awesome');
|
|
| 72 | 72 | |
| 73 | - wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 74 | - wp_enqueue_script('geodirectory-admin');
|
|
| 73 | + wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 74 | + wp_enqueue_script('geodirectory-admin');
|
|
| 75 | 75 | |
| 76 | - } |
|
| 76 | + } |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | if (!function_exists('geodir_admin_scripts')) {
|
| 80 | - /** |
|
| 81 | - * Enqueue Admin Scripts. |
|
| 82 | - * |
|
| 83 | - * @since 1.0.0 |
|
| 84 | - * @package GeoDirectory |
|
| 85 | - */ |
|
| 86 | - function geodir_admin_scripts() |
|
| 87 | - {
|
|
| 88 | - $geodir_map_name = geodir_map_name(); |
|
| 80 | + /** |
|
| 81 | + * Enqueue Admin Scripts. |
|
| 82 | + * |
|
| 83 | + * @since 1.0.0 |
|
| 84 | + * @package GeoDirectory |
|
| 85 | + */ |
|
| 86 | + function geodir_admin_scripts() |
|
| 87 | + {
|
|
| 88 | + $geodir_map_name = geodir_map_name(); |
|
| 89 | 89 | |
| 90 | - wp_enqueue_script('jquery');
|
|
| 90 | + wp_enqueue_script('jquery');
|
|
| 91 | 91 | |
| 92 | - wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 92 | + wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 93 | 93 | |
| 94 | - wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 95 | - wp_enqueue_script('chosen');
|
|
| 94 | + wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 95 | + wp_enqueue_script('chosen');
|
|
| 96 | 96 | |
| 97 | - wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 98 | - wp_enqueue_script('geodirectory-choose-ajax');
|
|
| 97 | + wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 98 | + wp_enqueue_script('geodirectory-choose-ajax');
|
|
| 99 | 99 | |
| 100 | - if (isset($_REQUEST['listing_type'])) {
|
|
| 101 | - wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 102 | - } |
|
| 100 | + if (isset($_REQUEST['listing_type'])) {
|
|
| 101 | + wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 102 | + } |
|
| 103 | 103 | |
| 104 | - wp_enqueue_script('geodirectory-custom-fields-script');
|
|
| 105 | - $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 104 | + wp_enqueue_script('geodirectory-custom-fields-script');
|
|
| 105 | + $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 106 | 106 | |
| 107 | - wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 107 | + wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 108 | 108 | |
| 109 | - if (in_array($geodir_map_name, array('auto', 'google'))) {
|
|
| 110 | - $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 111 | - $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 112 | - /** This filter is documented in geodirectory_template_tags.php */ |
|
| 113 | - $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
|
| 114 | - wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 115 | - } |
|
| 109 | + if (in_array($geodir_map_name, array('auto', 'google'))) {
|
|
| 110 | + $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 111 | + $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 112 | + /** This filter is documented in geodirectory_template_tags.php */ |
|
| 113 | + $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
|
| 114 | + wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | - if ($geodir_map_name == 'osm') {
|
|
| 118 | - // Leaflet OpenStreetMap |
|
| 119 | - wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 120 | - wp_enqueue_style('geodirectory-leaflet-style');
|
|
| 117 | + if ($geodir_map_name == 'osm') {
|
|
| 118 | + // Leaflet OpenStreetMap |
|
| 119 | + wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 120 | + wp_enqueue_style('geodirectory-leaflet-style');
|
|
| 121 | 121 | |
| 122 | - wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 123 | - wp_enqueue_script('geodirectory-leaflet-script');
|
|
| 122 | + wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 123 | + wp_enqueue_script('geodirectory-leaflet-script');
|
|
| 124 | 124 | |
| 125 | - wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 126 | - wp_enqueue_script('geodirectory-leaflet-geo-script');
|
|
| 127 | - } |
|
| 128 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 125 | + wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 126 | + wp_enqueue_script('geodirectory-leaflet-geo-script');
|
|
| 127 | + } |
|
| 128 | + wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 129 | 129 | |
| 130 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 131 | - wp_enqueue_script('geodirectory-goMap-script');
|
|
| 130 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 131 | + wp_enqueue_script('geodirectory-goMap-script');
|
|
| 132 | 132 | |
| 133 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 134 | - wp_enqueue_script('geodirectory-goMap-script');
|
|
| 133 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 134 | + wp_enqueue_script('geodirectory-goMap-script');
|
|
| 135 | 135 | |
| 136 | 136 | // font awesome rating script |
| 137 | 137 | if (get_option('geodir_reviewrating_enable_font_awesome')) {
|
@@ -142,167 +142,167 @@ discard block |
||
| 142 | 142 | wp_enqueue_script('geodir-jRating-js');
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 146 | - wp_enqueue_script('geodir-on-document-load');
|
|
| 147 | - |
|
| 148 | - |
|
| 149 | - // SCRIPT FOR UPLOAD |
|
| 150 | - wp_enqueue_script('plupload-all');
|
|
| 151 | - wp_enqueue_script('jquery-ui-sortable');
|
|
| 152 | - |
|
| 153 | - wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 154 | - wp_enqueue_script('geodirectory-plupload-script');
|
|
| 155 | - |
|
| 156 | - // SCRIPT FOR UPLOAD END |
|
| 157 | - |
|
| 158 | - |
|
| 159 | - // place js config array for plupload |
|
| 160 | - $plupload_init = array( |
|
| 161 | - 'runtimes' => 'html5,silverlight,flash,html4', |
|
| 162 | - 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
| 163 | - 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
| 164 | - 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
| 165 | - 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
| 166 | - 'multiple_queues' => true, |
|
| 167 | - 'max_file_size' => geodir_max_upload_size(), |
|
| 168 | - 'url' => admin_url('admin-ajax.php'),
|
|
| 169 | - 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
|
|
| 170 | - 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
|
|
| 171 | - 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
|
|
| 172 | - 'multipart' => true, |
|
| 173 | - 'urlstream_upload' => true, |
|
| 174 | - 'multi_selection' => false, // will be added per uploader |
|
| 175 | - // additional post data to send to our ajax hook |
|
| 176 | - 'multipart_params' => array( |
|
| 177 | - '_ajax_nonce' => "", // will be added per uploader |
|
| 178 | - 'action' => 'plupload_action', // the ajax action name |
|
| 179 | - 'imgid' => 0 // will be added per uploader |
|
| 180 | - ) |
|
| 181 | - ); |
|
| 182 | - $base_plupload_config = json_encode($plupload_init); |
|
| 183 | - |
|
| 184 | - |
|
| 185 | - $thumb_img_arr = array(); |
|
| 186 | - |
|
| 187 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 188 | - $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
| 189 | - |
|
| 190 | - $totImg = ''; |
|
| 191 | - $image_limit = ''; |
|
| 192 | - if (!empty($thumb_img_arr)) {
|
|
| 193 | - $totImg = count($thumb_img_arr); |
|
| 194 | - } |
|
| 145 | + wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 146 | + wp_enqueue_script('geodir-on-document-load');
|
|
| 147 | + |
|
| 148 | + |
|
| 149 | + // SCRIPT FOR UPLOAD |
|
| 150 | + wp_enqueue_script('plupload-all');
|
|
| 151 | + wp_enqueue_script('jquery-ui-sortable');
|
|
| 152 | + |
|
| 153 | + wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 154 | + wp_enqueue_script('geodirectory-plupload-script');
|
|
| 155 | + |
|
| 156 | + // SCRIPT FOR UPLOAD END |
|
| 157 | + |
|
| 158 | + |
|
| 159 | + // place js config array for plupload |
|
| 160 | + $plupload_init = array( |
|
| 161 | + 'runtimes' => 'html5,silverlight,flash,html4', |
|
| 162 | + 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
| 163 | + 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
| 164 | + 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
| 165 | + 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
| 166 | + 'multiple_queues' => true, |
|
| 167 | + 'max_file_size' => geodir_max_upload_size(), |
|
| 168 | + 'url' => admin_url('admin-ajax.php'),
|
|
| 169 | + 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
|
|
| 170 | + 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
|
|
| 171 | + 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
|
|
| 172 | + 'multipart' => true, |
|
| 173 | + 'urlstream_upload' => true, |
|
| 174 | + 'multi_selection' => false, // will be added per uploader |
|
| 175 | + // additional post data to send to our ajax hook |
|
| 176 | + 'multipart_params' => array( |
|
| 177 | + '_ajax_nonce' => "", // will be added per uploader |
|
| 178 | + 'action' => 'plupload_action', // the ajax action name |
|
| 179 | + 'imgid' => 0 // will be added per uploader |
|
| 180 | + ) |
|
| 181 | + ); |
|
| 182 | + $base_plupload_config = json_encode($plupload_init); |
|
| 183 | + |
|
| 184 | + |
|
| 185 | + $thumb_img_arr = array(); |
|
| 186 | + |
|
| 187 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 188 | + $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
| 189 | + |
|
| 190 | + $totImg = ''; |
|
| 191 | + $image_limit = ''; |
|
| 192 | + if (!empty($thumb_img_arr)) {
|
|
| 193 | + $totImg = count($thumb_img_arr); |
|
| 194 | + } |
|
| 195 | 195 | |
| 196 | - $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
|
|
| 197 | - 'totalImg' => $totImg, |
|
| 198 | - 'image_limit' => $image_limit, |
|
| 199 | - 'upload_img_size' => geodir_max_upload_size()); |
|
| 196 | + $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
|
|
| 197 | + 'totalImg' => $totImg, |
|
| 198 | + 'image_limit' => $image_limit, |
|
| 199 | + 'upload_img_size' => geodir_max_upload_size()); |
|
| 200 | 200 | |
| 201 | - wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
|
|
| 201 | + wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
|
|
| 202 | 202 | |
| 203 | - $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
|
|
| 204 | - wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
|
| 203 | + $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
|
|
| 204 | + wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
|
| 205 | 205 | |
| 206 | 206 | |
| 207 | - wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 208 | - wp_enqueue_script('geodirectory-admin-script');
|
|
| 207 | + wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 208 | + wp_enqueue_script('geodirectory-admin-script');
|
|
| 209 | 209 | |
| 210 | - wp_enqueue_style('farbtastic');
|
|
| 211 | - wp_enqueue_script('farbtastic');
|
|
| 210 | + wp_enqueue_style('farbtastic');
|
|
| 211 | + wp_enqueue_script('farbtastic');
|
|
| 212 | 212 | |
| 213 | - $screen = get_current_screen(); |
|
| 214 | - if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
|
| 215 | - wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 216 | - } |
|
| 213 | + $screen = get_current_screen(); |
|
| 214 | + if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
|
| 215 | + wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
|
|
| 219 | - wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
|
| 218 | + $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
|
|
| 219 | + wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
|
| 220 | 220 | |
| 221 | - } |
|
| 221 | + } |
|
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | if (!function_exists('geodir_admin_menu')) {
|
| 225 | - /** |
|
| 226 | - * Admin Menus |
|
| 227 | - * |
|
| 228 | - * Sets up the admin menus in wordpress. |
|
| 229 | - * |
|
| 230 | - * @since 1.0.0 |
|
| 231 | - * @package GeoDirectory |
|
| 232 | - * @global array $menu Menu array. |
|
| 233 | - * @global object $geodirectory GeoDirectory plugin object. |
|
| 234 | - */ |
|
| 235 | - function geodir_admin_menu() |
|
| 236 | - {
|
|
| 237 | - global $menu, $geodirectory; |
|
| 225 | + /** |
|
| 226 | + * Admin Menus |
|
| 227 | + * |
|
| 228 | + * Sets up the admin menus in wordpress. |
|
| 229 | + * |
|
| 230 | + * @since 1.0.0 |
|
| 231 | + * @package GeoDirectory |
|
| 232 | + * @global array $menu Menu array. |
|
| 233 | + * @global object $geodirectory GeoDirectory plugin object. |
|
| 234 | + */ |
|
| 235 | + function geodir_admin_menu() |
|
| 236 | + {
|
|
| 237 | + global $menu, $geodirectory; |
|
| 238 | 238 | |
| 239 | - if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
|
| 239 | + if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
|
| 240 | 240 | |
| 241 | - add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 241 | + add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 242 | 242 | |
| 243 | 243 | |
| 244 | - } |
|
| 244 | + } |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | if (!function_exists('geodir_admin_menu_order')) {
|
| 248 | - /** |
|
| 249 | - * Order admin menus. |
|
| 250 | - * |
|
| 251 | - * @since 1.0.0 |
|
| 252 | - * @package GeoDirectory |
|
| 253 | - * @param array $menu_order Menu order array. |
|
| 254 | - * @return array Modified menu order array. |
|
| 255 | - */ |
|
| 256 | - function geodir_admin_menu_order($menu_order) |
|
| 257 | - {
|
|
| 258 | - |
|
| 259 | - // Initialize our custom order array |
|
| 260 | - $geodir_menu_order = array(); |
|
| 261 | - |
|
| 262 | - // Get the index of our custom separator |
|
| 263 | - $geodir_separator = array_search('separator-geodirectory', $menu_order);
|
|
| 264 | - |
|
| 265 | - // Get index of posttype menu |
|
| 266 | - $post_types = geodir_get_posttypes(); |
|
| 267 | - |
|
| 268 | - // Loop through menu order and do some rearranging |
|
| 269 | - foreach ($menu_order as $index => $item) : |
|
| 270 | - |
|
| 271 | - if ((('geodirectory') == $item)) :
|
|
| 272 | - $geodir_menu_order[] = 'separator-geodirectory'; |
|
| 273 | - if (!empty($post_types)) {
|
|
| 274 | - foreach ($post_types as $post_type) {
|
|
| 275 | - $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 276 | - } |
|
| 277 | - } |
|
| 278 | - $geodir_menu_order[] = $item; |
|
| 248 | + /** |
|
| 249 | + * Order admin menus. |
|
| 250 | + * |
|
| 251 | + * @since 1.0.0 |
|
| 252 | + * @package GeoDirectory |
|
| 253 | + * @param array $menu_order Menu order array. |
|
| 254 | + * @return array Modified menu order array. |
|
| 255 | + */ |
|
| 256 | + function geodir_admin_menu_order($menu_order) |
|
| 257 | + {
|
|
| 279 | 258 | |
| 280 | - unset($menu_order[$geodir_separator]); |
|
| 281 | - //unset( $menu_order[$geodir_places] ); |
|
| 282 | - elseif (!in_array($item, array('separator-geodirectory'))) :
|
|
| 283 | - $geodir_menu_order[] = $item; |
|
| 284 | - endif; |
|
| 259 | + // Initialize our custom order array |
|
| 260 | + $geodir_menu_order = array(); |
|
| 285 | 261 | |
| 286 | - endforeach; |
|
| 262 | + // Get the index of our custom separator |
|
| 263 | + $geodir_separator = array_search('separator-geodirectory', $menu_order);
|
|
| 287 | 264 | |
| 288 | - // Return order |
|
| 289 | - return $geodir_menu_order; |
|
| 290 | - } |
|
| 265 | + // Get index of posttype menu |
|
| 266 | + $post_types = geodir_get_posttypes(); |
|
| 267 | + |
|
| 268 | + // Loop through menu order and do some rearranging |
|
| 269 | + foreach ($menu_order as $index => $item) : |
|
| 270 | + |
|
| 271 | + if ((('geodirectory') == $item)) :
|
|
| 272 | + $geodir_menu_order[] = 'separator-geodirectory'; |
|
| 273 | + if (!empty($post_types)) {
|
|
| 274 | + foreach ($post_types as $post_type) {
|
|
| 275 | + $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 276 | + } |
|
| 277 | + } |
|
| 278 | + $geodir_menu_order[] = $item; |
|
| 279 | + |
|
| 280 | + unset($menu_order[$geodir_separator]); |
|
| 281 | + //unset( $menu_order[$geodir_places] ); |
|
| 282 | + elseif (!in_array($item, array('separator-geodirectory'))) :
|
|
| 283 | + $geodir_menu_order[] = $item; |
|
| 284 | + endif; |
|
| 285 | + |
|
| 286 | + endforeach; |
|
| 287 | + |
|
| 288 | + // Return order |
|
| 289 | + return $geodir_menu_order; |
|
| 290 | + } |
|
| 291 | 291 | } |
| 292 | 292 | |
| 293 | 293 | if (!function_exists('geodir_admin_custom_menu_order')) {
|
| 294 | - /** |
|
| 295 | - * Enables custom menu order. |
|
| 296 | - * |
|
| 297 | - * @since 1.0.0 |
|
| 298 | - * @package GeoDirectory |
|
| 299 | - * @return bool |
|
| 300 | - */ |
|
| 301 | - function geodir_admin_custom_menu_order() |
|
| 302 | - {
|
|
| 303 | - if (!current_user_can('manage_options')) return false;
|
|
| 304 | - return true; |
|
| 305 | - } |
|
| 294 | + /** |
|
| 295 | + * Enables custom menu order. |
|
| 296 | + * |
|
| 297 | + * @since 1.0.0 |
|
| 298 | + * @package GeoDirectory |
|
| 299 | + * @return bool |
|
| 300 | + */ |
|
| 301 | + function geodir_admin_custom_menu_order() |
|
| 302 | + {
|
|
| 303 | + if (!current_user_can('manage_options')) return false;
|
|
| 304 | + return true; |
|
| 305 | + } |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | /** |
@@ -313,51 +313,51 @@ discard block |
||
| 313 | 313 | */ |
| 314 | 314 | function geodir_before_admin_panel() |
| 315 | 315 | {
|
| 316 | - if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
|
| 317 | - echo '<div id="message" class="updated fade"> |
|
| 316 | + if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
|
| 317 | + echo '<div id="message" class="updated fade"> |
|
| 318 | 318 | <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
|
| 319 | 319 | <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
|
| 320 | 320 | </div>'; |
| 321 | 321 | |
| 322 | - } |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
|
| 325 | - switch ($_REQUEST['msg']) {
|
|
| 326 | - case 'success': |
|
| 327 | - echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 328 | - flush_rewrite_rules(false); |
|
| 324 | + if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
|
| 325 | + switch ($_REQUEST['msg']) {
|
|
| 326 | + case 'success': |
|
| 327 | + echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 328 | + flush_rewrite_rules(false); |
|
| 329 | 329 | |
| 330 | - break; |
|
| 330 | + break; |
|
| 331 | 331 | case 'fail': |
| 332 | 332 | $gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : ''; |
| 333 | 333 | |
| 334 | 334 | if ($gderr == 21) |
| 335 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 335 | + echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 336 | 336 | else |
| 337 | 337 | echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
|
| 338 | - break; |
|
| 339 | - } |
|
| 340 | - } |
|
| 338 | + break; |
|
| 339 | + } |
|
| 340 | + } |
|
| 341 | 341 | |
| 342 | - $geodir_load_map = get_option('geodir_load_map');
|
|
| 343 | - $need_map_key = false; |
|
| 344 | - if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 345 | - $need_map_key = true; |
|
| 346 | - } |
|
| 342 | + $geodir_load_map = get_option('geodir_load_map');
|
|
| 343 | + $need_map_key = false; |
|
| 344 | + if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 345 | + $need_map_key = true; |
|
| 346 | + } |
|
| 347 | 347 | |
| 348 | - if (!geodir_get_map_api_key() && $need_map_key) {
|
|
| 349 | - echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 350 | - } |
|
| 348 | + if (!geodir_get_map_api_key() && $need_map_key) {
|
|
| 349 | + echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - if (!geodir_is_default_location_set()) {
|
|
| 353 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 352 | + if (!geodir_is_default_location_set()) {
|
|
| 353 | + echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 354 | 354 | |
| 355 | - } |
|
| 355 | + } |
|
| 356 | 356 | |
| 357 | - if (!function_exists('curl_init')) {
|
|
| 358 | - echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 357 | + if (!function_exists('curl_init')) {
|
|
| 358 | + echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 359 | 359 | |
| 360 | - } |
|
| 360 | + } |
|
| 361 | 361 | |
| 362 | 362 | |
| 363 | 363 | |
@@ -374,19 +374,19 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | function geodir_handle_option_form_submit($current_tab) |
| 376 | 376 | {
|
| 377 | - global $geodir_settings; |
|
| 378 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 379 | - /** |
|
| 380 | - * Contains settings array for current tab. |
|
| 381 | - * |
|
| 382 | - * @since 1.0.0 |
|
| 383 | - * @package GeoDirectory |
|
| 384 | - */ |
|
| 385 | - include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 386 | - } |
|
| 387 | - if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
|
| 388 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | - if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 377 | + global $geodir_settings; |
|
| 378 | + if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 379 | + /** |
|
| 380 | + * Contains settings array for current tab. |
|
| 381 | + * |
|
| 382 | + * @since 1.0.0 |
|
| 383 | + * @package GeoDirectory |
|
| 384 | + */ |
|
| 385 | + include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 386 | + } |
|
| 387 | + if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
|
| 388 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | + if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 390 | 390 | |
| 391 | 391 | /** |
| 392 | 392 | * Fires before updating geodirectory admin settings. |
@@ -398,38 +398,38 @@ discard block |
||
| 398 | 398 | */ |
| 399 | 399 | do_action('geodir_before_update_options', $current_tab, $geodir_settings);
|
| 400 | 400 | |
| 401 | - if (!empty($geodir_settings[$current_tab])) |
|
| 402 | - geodir_update_options($geodir_settings[$current_tab]); |
|
| 401 | + if (!empty($geodir_settings[$current_tab])) |
|
| 402 | + geodir_update_options($geodir_settings[$current_tab]); |
|
| 403 | 403 | |
| 404 | - /** |
|
| 405 | - * Called after GeoDirectory options settings are updated. |
|
| 406 | - * |
|
| 407 | - * @since 1.0.0 |
|
| 408 | - * @param array $geodir_settings The array of GeoDirectory settings. |
|
| 409 | - * @see 'geodir_before_update_options' |
|
| 410 | - */ |
|
| 411 | - do_action('geodir_update_options', $geodir_settings);
|
|
| 404 | + /** |
|
| 405 | + * Called after GeoDirectory options settings are updated. |
|
| 406 | + * |
|
| 407 | + * @since 1.0.0 |
|
| 408 | + * @param array $geodir_settings The array of GeoDirectory settings. |
|
| 409 | + * @see 'geodir_before_update_options' |
|
| 410 | + */ |
|
| 411 | + do_action('geodir_update_options', $geodir_settings);
|
|
| 412 | 412 | |
| 413 | - /** |
|
| 414 | - * Called after GeoDirectory options settings are updated. |
|
| 415 | - * |
|
| 416 | - * Provides tab specific settings. |
|
| 417 | - * |
|
| 418 | - * @since 1.0.0 |
|
| 419 | - * @param string $current_tab The current settings tab name. |
|
| 420 | - * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
|
| 421 | - */ |
|
| 422 | - do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 413 | + /** |
|
| 414 | + * Called after GeoDirectory options settings are updated. |
|
| 415 | + * |
|
| 416 | + * Provides tab specific settings. |
|
| 417 | + * |
|
| 418 | + * @since 1.0.0 |
|
| 419 | + * @param string $current_tab The current settings tab name. |
|
| 420 | + * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
|
| 421 | + */ |
|
| 422 | + do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 423 | 423 | |
| 424 | - flush_rewrite_rules(false); |
|
| 424 | + flush_rewrite_rules(false); |
|
| 425 | 425 | |
| 426 | - $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
|
| 426 | + $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
|
| 427 | 427 | |
| 428 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 428 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 429 | 429 | |
| 430 | - wp_redirect($redirect_url); |
|
| 431 | - exit(); |
|
| 432 | - endif; |
|
| 430 | + wp_redirect($redirect_url); |
|
| 431 | + exit(); |
|
| 432 | + endif; |
|
| 433 | 433 | |
| 434 | 434 | |
| 435 | 435 | } |
@@ -447,144 +447,144 @@ discard block |
||
| 447 | 447 | * @return bool Returns true if saved. |
| 448 | 448 | */ |
| 449 | 449 | function geodir_update_options($options, $dummy = false) {
|
| 450 | - if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
| 450 | + if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
| 451 | 451 | |
| 452 | - foreach ($options as $value) {
|
|
| 453 | - if ($dummy && isset($value['std'])) |
|
| 454 | - $_POST[$value['id']] = $value['std']; |
|
| 452 | + foreach ($options as $value) {
|
|
| 453 | + if ($dummy && isset($value['std'])) |
|
| 454 | + $_POST[$value['id']] = $value['std']; |
|
| 455 | 455 | |
| 456 | 456 | |
| 457 | - if (isset($value['type']) && $value['type'] == 'checkbox') : |
|
| 457 | + if (isset($value['type']) && $value['type'] == 'checkbox') : |
|
| 458 | 458 | |
| 459 | - if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 460 | - update_option($value['id'], $_POST[$value['id']]); |
|
| 461 | - } else {
|
|
| 462 | - update_option($value['id'], 0); |
|
| 463 | - } |
|
| 459 | + if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 460 | + update_option($value['id'], $_POST[$value['id']]); |
|
| 461 | + } else {
|
|
| 462 | + update_option($value['id'], 0); |
|
| 463 | + } |
|
| 464 | 464 | |
| 465 | - elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
| 465 | + elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
| 466 | 466 | |
| 467 | - if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 468 | - update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 469 | - update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 470 | - if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 471 | - update_option($value['id'] . '_crop', 1); |
|
| 472 | - else : |
|
| 473 | - update_option($value['id'] . '_crop', 0); |
|
| 474 | - endif; |
|
| 475 | - } else {
|
|
| 476 | - update_option($value['id'] . '_width', $value['std']); |
|
| 477 | - update_option($value['id'] . '_height', $value['std']); |
|
| 478 | - update_option($value['id'] . '_crop', 1); |
|
| 479 | - } |
|
| 467 | + if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 468 | + update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 469 | + update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 470 | + if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 471 | + update_option($value['id'] . '_crop', 1); |
|
| 472 | + else : |
|
| 473 | + update_option($value['id'] . '_crop', 0); |
|
| 474 | + endif; |
|
| 475 | + } else {
|
|
| 476 | + update_option($value['id'] . '_width', $value['std']); |
|
| 477 | + update_option($value['id'] . '_height', $value['std']); |
|
| 478 | + update_option($value['id'] . '_crop', 1); |
|
| 479 | + } |
|
| 480 | 480 | |
| 481 | - elseif (isset($value['type']) && $value['type'] == 'map') : |
|
| 482 | - $post_types = array(); |
|
| 483 | - $categories = array(); |
|
| 481 | + elseif (isset($value['type']) && $value['type'] == 'map') : |
|
| 482 | + $post_types = array(); |
|
| 483 | + $categories = array(); |
|
| 484 | 484 | |
| 485 | - if (!empty($_POST['home_map_post_types'])) : |
|
| 486 | - foreach ($_POST['home_map_post_types'] as $post_type) : |
|
| 487 | - $post_types[] = $post_type; |
|
| 488 | - endforeach; |
|
| 489 | - endif; |
|
| 485 | + if (!empty($_POST['home_map_post_types'])) : |
|
| 486 | + foreach ($_POST['home_map_post_types'] as $post_type) : |
|
| 487 | + $post_types[] = $post_type; |
|
| 488 | + endforeach; |
|
| 489 | + endif; |
|
| 490 | 490 | |
| 491 | - update_option('geodir_exclude_post_type_on_map', $post_types);
|
|
| 491 | + update_option('geodir_exclude_post_type_on_map', $post_types);
|
|
| 492 | 492 | |
| 493 | - if (!empty($_POST['post_category'])) : |
|
| 494 | - foreach ($_POST['post_category'] as $texonomy => $cat_arr) : |
|
| 495 | - $categories[$texonomy] = array(); |
|
| 496 | - foreach ($cat_arr as $category) : |
|
| 497 | - $categories[$texonomy][] = $category; |
|
| 498 | - endforeach; |
|
| 499 | - $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array(); |
|
| 500 | - endforeach; |
|
| 501 | - endif; |
|
| 502 | - update_option('geodir_exclude_cat_on_map', $categories);
|
|
| 503 | - update_option('geodir_exclude_cat_on_map_upgrade', 1);
|
|
| 504 | - elseif (isset($value['type']) && $value['type'] == 'map_default_settings') : |
|
| 493 | + if (!empty($_POST['post_category'])) : |
|
| 494 | + foreach ($_POST['post_category'] as $texonomy => $cat_arr) : |
|
| 495 | + $categories[$texonomy] = array(); |
|
| 496 | + foreach ($cat_arr as $category) : |
|
| 497 | + $categories[$texonomy][] = $category; |
|
| 498 | + endforeach; |
|
| 499 | + $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array(); |
|
| 500 | + endforeach; |
|
| 501 | + endif; |
|
| 502 | + update_option('geodir_exclude_cat_on_map', $categories);
|
|
| 503 | + update_option('geodir_exclude_cat_on_map_upgrade', 1);
|
|
| 504 | + elseif (isset($value['type']) && $value['type'] == 'map_default_settings') : |
|
| 505 | 505 | |
| 506 | 506 | |
| 507 | - if (!empty($_POST['geodir_default_map_language'])): |
|
| 508 | - update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
|
|
| 509 | - endif; |
|
| 507 | + if (!empty($_POST['geodir_default_map_language'])): |
|
| 508 | + update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
|
|
| 509 | + endif; |
|
| 510 | 510 | |
| 511 | 511 | |
| 512 | - if (!empty($_POST['geodir_default_map_search_pt'])): |
|
| 513 | - update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
|
|
| 514 | - endif; |
|
| 512 | + if (!empty($_POST['geodir_default_map_search_pt'])): |
|
| 513 | + update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
|
|
| 514 | + endif; |
|
| 515 | 515 | |
| 516 | 516 | |
| 517 | - elseif (isset($value['type']) && $value['type'] == 'file') : |
|
| 517 | + elseif (isset($value['type']) && $value['type'] == 'file') : |
|
| 518 | 518 | |
| 519 | 519 | |
| 520 | - if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 520 | + if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 521 | 521 | |
| 522 | - if (get_option($value['id'])) {
|
|
| 523 | - $image_name_arr = explode('/', get_option($value['id']));
|
|
| 524 | - $noimg_name = end($image_name_arr); |
|
| 525 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 526 | - if (file_exists($img_path)) |
|
| 527 | - unlink($img_path); |
|
| 528 | - } |
|
| 522 | + if (get_option($value['id'])) {
|
|
| 523 | + $image_name_arr = explode('/', get_option($value['id']));
|
|
| 524 | + $noimg_name = end($image_name_arr); |
|
| 525 | + $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 526 | + if (file_exists($img_path)) |
|
| 527 | + unlink($img_path); |
|
| 528 | + } |
|
| 529 | 529 | |
| 530 | - update_option($value['id'], ''); |
|
| 531 | - } |
|
| 530 | + update_option($value['id'], ''); |
|
| 531 | + } |
|
| 532 | 532 | |
| 533 | - $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : ''; |
|
| 534 | - $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : ''; |
|
| 535 | - |
|
| 536 | - if (!empty($filename)): |
|
| 537 | - $ext = pathinfo($filename, PATHINFO_EXTENSION); |
|
| 538 | - $uplaods = array(); |
|
| 539 | - |
|
| 540 | - foreach ($uploadedfile as $key => $uplaod): |
|
| 541 | - if ($key == 'name'): |
|
| 542 | - $uplaods[$key] = $filename; |
|
| 543 | - else : |
|
| 544 | - $uplaods[$key] = $uplaod; |
|
| 545 | - endif; |
|
| 546 | - endforeach; |
|
| 547 | - |
|
| 548 | - $uploads = wp_upload_dir(); |
|
| 549 | - |
|
| 550 | - if (get_option($value['id'])) {
|
|
| 551 | - $image_name_arr = explode('/', get_option($value['id']));
|
|
| 552 | - $noimg_name = end($image_name_arr); |
|
| 553 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 554 | - if (file_exists($img_path)) |
|
| 555 | - unlink($img_path); |
|
| 556 | - } |
|
| 533 | + $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : ''; |
|
| 534 | + $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : ''; |
|
| 535 | + |
|
| 536 | + if (!empty($filename)): |
|
| 537 | + $ext = pathinfo($filename, PATHINFO_EXTENSION); |
|
| 538 | + $uplaods = array(); |
|
| 539 | + |
|
| 540 | + foreach ($uploadedfile as $key => $uplaod): |
|
| 541 | + if ($key == 'name'): |
|
| 542 | + $uplaods[$key] = $filename; |
|
| 543 | + else : |
|
| 544 | + $uplaods[$key] = $uplaod; |
|
| 545 | + endif; |
|
| 546 | + endforeach; |
|
| 547 | + |
|
| 548 | + $uploads = wp_upload_dir(); |
|
| 549 | + |
|
| 550 | + if (get_option($value['id'])) {
|
|
| 551 | + $image_name_arr = explode('/', get_option($value['id']));
|
|
| 552 | + $noimg_name = end($image_name_arr); |
|
| 553 | + $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 554 | + if (file_exists($img_path)) |
|
| 555 | + unlink($img_path); |
|
| 556 | + } |
|
| 557 | 557 | |
| 558 | - $upload_overrides = array('test_form' => false);
|
|
| 559 | - $movefile = wp_handle_upload($uplaods, $upload_overrides); |
|
| 558 | + $upload_overrides = array('test_form' => false);
|
|
| 559 | + $movefile = wp_handle_upload($uplaods, $upload_overrides); |
|
| 560 | 560 | |
| 561 | - update_option($value['id'], $movefile['url']); |
|
| 561 | + update_option($value['id'], $movefile['url']); |
|
| 562 | 562 | |
| 563 | - endif; |
|
| 563 | + endif; |
|
| 564 | 564 | |
| 565 | - if (!get_option($value['id']) && isset($value['value'])): |
|
| 566 | - update_option($value['id'], $value['value']); |
|
| 567 | - endif; |
|
| 565 | + if (!get_option($value['id']) && isset($value['value'])): |
|
| 566 | + update_option($value['id'], $value['value']); |
|
| 567 | + endif; |
|
| 568 | 568 | |
| 569 | 569 | |
| 570 | - else : |
|
| 571 | - // same menu setting per theme. |
|
| 572 | - if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
|
| 573 | - $theme = wp_get_theme(); |
|
| 574 | - update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 575 | - } |
|
| 570 | + else : |
|
| 571 | + // same menu setting per theme. |
|
| 572 | + if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
|
| 573 | + $theme = wp_get_theme(); |
|
| 574 | + update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 575 | + } |
|
| 576 | 576 | |
| 577 | - if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 578 | - update_option($value['id'], $_POST[$value['id']]); |
|
| 579 | - } else {
|
|
| 580 | - delete_option($value['id']); |
|
| 581 | - } |
|
| 577 | + if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 578 | + update_option($value['id'], $_POST[$value['id']]); |
|
| 579 | + } else {
|
|
| 580 | + delete_option($value['id']); |
|
| 581 | + } |
|
| 582 | 582 | |
| 583 | - endif; |
|
| 584 | - } |
|
| 585 | - if ($dummy) |
|
| 586 | - $_POST = array(); |
|
| 587 | - return true; |
|
| 583 | + endif; |
|
| 584 | + } |
|
| 585 | + if ($dummy) |
|
| 586 | + $_POST = array(); |
|
| 587 | + return true; |
|
| 588 | 588 | |
| 589 | 589 | } |
| 590 | 590 | |
@@ -633,33 +633,33 @@ discard block |
||
| 633 | 633 | function places_custom_fields_tab($tabs) |
| 634 | 634 | {
|
| 635 | 635 | |
| 636 | - $geodir_post_types = get_option('geodir_post_types');
|
|
| 636 | + $geodir_post_types = get_option('geodir_post_types');
|
|
| 637 | 637 | |
| 638 | - if (!empty($geodir_post_types)) {
|
|
| 638 | + if (!empty($geodir_post_types)) {
|
|
| 639 | 639 | |
| 640 | - foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info): |
|
| 640 | + foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info): |
|
| 641 | 641 | |
| 642 | - $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory'); |
|
| 642 | + $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory'); |
|
| 643 | 643 | |
| 644 | - $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 645 | - 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
|
|
| 646 | - 'subtabs' => array( |
|
| 647 | - array('subtab' => 'custom_fields',
|
|
| 648 | - 'label' => __('Custom Fields', 'geodirectory'),
|
|
| 649 | - 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 650 | - array('subtab' => 'sorting_options',
|
|
| 651 | - 'label' => __('Sorting Options', 'geodirectory'),
|
|
| 652 | - 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 653 | - ), |
|
| 654 | - 'tab_index' => 9, |
|
| 655 | - 'request' => array('listing_type' => $geodir_post_type)
|
|
| 656 | - ); |
|
| 644 | + $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 645 | + 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
|
|
| 646 | + 'subtabs' => array( |
|
| 647 | + array('subtab' => 'custom_fields',
|
|
| 648 | + 'label' => __('Custom Fields', 'geodirectory'),
|
|
| 649 | + 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 650 | + array('subtab' => 'sorting_options',
|
|
| 651 | + 'label' => __('Sorting Options', 'geodirectory'),
|
|
| 652 | + 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 653 | + ), |
|
| 654 | + 'tab_index' => 9, |
|
| 655 | + 'request' => array('listing_type' => $geodir_post_type)
|
|
| 656 | + ); |
|
| 657 | 657 | |
| 658 | - endforeach; |
|
| 658 | + endforeach; |
|
| 659 | 659 | |
| 660 | - } |
|
| 660 | + } |
|
| 661 | 661 | |
| 662 | - return $tabs; |
|
| 662 | + return $tabs; |
|
| 663 | 663 | } |
| 664 | 664 | |
| 665 | 665 | |
@@ -675,9 +675,9 @@ discard block |
||
| 675 | 675 | */ |
| 676 | 676 | function geodir_tools_setting_tab($tabs) |
| 677 | 677 | {
|
| 678 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 679 | - $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
|
| 680 | - return $tabs; |
|
| 678 | + wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 679 | + $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
|
| 680 | + return $tabs; |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | /** |
@@ -692,8 +692,8 @@ discard block |
||
| 692 | 692 | */ |
| 693 | 693 | function geodir_compatibility_setting_tab($tabs) |
| 694 | 694 | {
|
| 695 | - $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
|
|
| 696 | - return $tabs; |
|
| 695 | + $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
|
|
| 696 | + return $tabs; |
|
| 697 | 697 | } |
| 698 | 698 | |
| 699 | 699 | |
@@ -709,144 +709,144 @@ discard block |
||
| 709 | 709 | */ |
| 710 | 710 | function geodir_extend_geodirectory_setting_tab($tabs) |
| 711 | 711 | {
|
| 712 | - $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 713 | - return $tabs; |
|
| 712 | + $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 713 | + return $tabs; |
|
| 714 | 714 | } |
| 715 | 715 | |
| 716 | 716 | |
| 717 | 717 | if (!function_exists('geodir_edit_post_columns')) {
|
| 718 | - /** |
|
| 719 | - * Modify admin post listing page columns. |
|
| 720 | - * |
|
| 721 | - * @since 1.0.0 |
|
| 722 | - * @package GeoDirectory |
|
| 723 | - * @param array $columns The column array. |
|
| 724 | - * @return array Altered column array. |
|
| 725 | - */ |
|
| 726 | - function geodir_edit_post_columns($columns) |
|
| 727 | - {
|
|
| 728 | - |
|
| 729 | - $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
|
|
| 730 | - 'categorys' => __('Categories', 'geodirectory'));
|
|
| 731 | - |
|
| 732 | - if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
|
|
| 733 | - {
|
|
| 734 | - $offset = 0; // should we prepend $array with $data? |
|
| 735 | - $offset = count($columns); // or should we append $array with $data? lets pick this one... |
|
| 736 | - } |
|
| 718 | + /** |
|
| 719 | + * Modify admin post listing page columns. |
|
| 720 | + * |
|
| 721 | + * @since 1.0.0 |
|
| 722 | + * @package GeoDirectory |
|
| 723 | + * @param array $columns The column array. |
|
| 724 | + * @return array Altered column array. |
|
| 725 | + */ |
|
| 726 | + function geodir_edit_post_columns($columns) |
|
| 727 | + {
|
|
| 737 | 728 | |
| 738 | - $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset)); |
|
| 729 | + $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
|
|
| 730 | + 'categorys' => __('Categories', 'geodirectory'));
|
|
| 739 | 731 | |
| 740 | - $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
|
|
| 732 | + if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
|
|
| 733 | + {
|
|
| 734 | + $offset = 0; // should we prepend $array with $data? |
|
| 735 | + $offset = count($columns); // or should we append $array with $data? lets pick this one... |
|
| 736 | + } |
|
| 741 | 737 | |
| 742 | - return $columns; |
|
| 743 | - } |
|
| 738 | + $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset)); |
|
| 739 | + |
|
| 740 | + $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
|
|
| 741 | + |
|
| 742 | + return $columns; |
|
| 743 | + } |
|
| 744 | 744 | } |
| 745 | 745 | |
| 746 | 746 | |
| 747 | 747 | if (!function_exists('geodir_manage_post_columns')) {
|
| 748 | - /** |
|
| 749 | - * Adds content to our custom post listing page columns. |
|
| 750 | - * |
|
| 751 | - * @since 1.0.0 |
|
| 752 | - * @package GeoDirectory |
|
| 753 | - * @global object $wpdb WordPress Database object. |
|
| 754 | - * @global object $post WordPress Post object. |
|
| 755 | - * @param string $column The column name. |
|
| 756 | - * @param int $post_id The post ID. |
|
| 757 | - */ |
|
| 758 | - function geodir_manage_post_columns($column, $post_id) |
|
| 759 | - {
|
|
| 760 | - global $post, $wpdb; |
|
| 761 | - |
|
| 762 | - switch ($column): |
|
| 763 | - /* If displaying the 'city' column. */ |
|
| 764 | - case 'location' : |
|
| 765 | - $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true); |
|
| 766 | - $location = geodir_get_location($location_id); |
|
| 767 | - /* If no city is found, output a default message. */ |
|
| 768 | - if (empty($location)) {
|
|
| 769 | - _e('Unknown', 'geodirectory');
|
|
| 770 | - } else {
|
|
| 771 | - /* If there is a city id, append 'city name' to the text string. */ |
|
| 772 | - $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 773 | - echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 774 | - } |
|
| 775 | - break; |
|
| 776 | - |
|
| 777 | - /* If displaying the 'expire' column. */ |
|
| 778 | - case 'expire' : |
|
| 779 | - $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true); |
|
| 780 | - $d1 = $expire_date; // get expire_date |
|
| 781 | - $d2 = date('Y-m-d'); // get current date
|
|
| 782 | - $state = __('days left', 'geodirectory');
|
|
| 783 | - $date_diff_text = ''; |
|
| 784 | - $expire_class = 'expire_left'; |
|
| 785 | - if ($expire_date != 'Never') {
|
|
| 786 | - if (strtotime($d1) < strtotime($d2)) {
|
|
| 787 | - $state = __('days overdue', 'geodirectory');
|
|
| 788 | - $expire_class = 'expire_over'; |
|
| 789 | - } |
|
| 790 | - $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
|
| 791 | - $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 792 | - } |
|
| 793 | - /* If no expire_date is found, output a default message. */ |
|
| 794 | - if (empty($expire_date)) |
|
| 795 | - echo __('Unknown', 'geodirectory');
|
|
| 796 | - /* If there is a expire_date, append 'days left' to the text string. */ |
|
| 797 | - else |
|
| 798 | - echo $expire_date . $date_diff_text; |
|
| 799 | - break; |
|
| 800 | - |
|
| 801 | - /* If displaying the 'categorys' column. */ |
|
| 802 | - case 'categorys' : |
|
| 803 | - |
|
| 804 | - /* Get the categorys for the post. */ |
|
| 805 | - |
|
| 806 | - |
|
| 807 | - $terms = wp_get_object_terms($post_id, get_object_taxonomies($post)); |
|
| 808 | - |
|
| 809 | - /* If terms were found. */ |
|
| 810 | - if (!empty($terms)) {
|
|
| 811 | - $out = array(); |
|
| 812 | - /* Loop through each term, linking to the 'edit posts' page for the specific term. */ |
|
| 813 | - foreach ($terms as $term) {
|
|
| 814 | - if (!strstr($term->taxonomy, 'tag')) {
|
|
| 815 | - $out[] = sprintf('<a href="%s">%s</a>',
|
|
| 816 | - esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
|
|
| 817 | - esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
|
|
| 818 | - ); |
|
| 819 | - } |
|
| 820 | - } |
|
| 821 | - /* Join the terms, separating them with a comma. */ |
|
| 822 | - echo(join(', ', $out));
|
|
| 823 | - } /* If no terms were found, output a default message. */ |
|
| 824 | - else {
|
|
| 825 | - _e('No Categories', 'geodirectory');
|
|
| 826 | - } |
|
| 827 | - break; |
|
| 748 | + /** |
|
| 749 | + * Adds content to our custom post listing page columns. |
|
| 750 | + * |
|
| 751 | + * @since 1.0.0 |
|
| 752 | + * @package GeoDirectory |
|
| 753 | + * @global object $wpdb WordPress Database object. |
|
| 754 | + * @global object $post WordPress Post object. |
|
| 755 | + * @param string $column The column name. |
|
| 756 | + * @param int $post_id The post ID. |
|
| 757 | + */ |
|
| 758 | + function geodir_manage_post_columns($column, $post_id) |
|
| 759 | + {
|
|
| 760 | + global $post, $wpdb; |
|
| 761 | + |
|
| 762 | + switch ($column): |
|
| 763 | + /* If displaying the 'city' column. */ |
|
| 764 | + case 'location' : |
|
| 765 | + $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true); |
|
| 766 | + $location = geodir_get_location($location_id); |
|
| 767 | + /* If no city is found, output a default message. */ |
|
| 768 | + if (empty($location)) {
|
|
| 769 | + _e('Unknown', 'geodirectory');
|
|
| 770 | + } else {
|
|
| 771 | + /* If there is a city id, append 'city name' to the text string. */ |
|
| 772 | + $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 773 | + echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 774 | + } |
|
| 775 | + break; |
|
| 776 | + |
|
| 777 | + /* If displaying the 'expire' column. */ |
|
| 778 | + case 'expire' : |
|
| 779 | + $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true); |
|
| 780 | + $d1 = $expire_date; // get expire_date |
|
| 781 | + $d2 = date('Y-m-d'); // get current date
|
|
| 782 | + $state = __('days left', 'geodirectory');
|
|
| 783 | + $date_diff_text = ''; |
|
| 784 | + $expire_class = 'expire_left'; |
|
| 785 | + if ($expire_date != 'Never') {
|
|
| 786 | + if (strtotime($d1) < strtotime($d2)) {
|
|
| 787 | + $state = __('days overdue', 'geodirectory');
|
|
| 788 | + $expire_class = 'expire_over'; |
|
| 789 | + } |
|
| 790 | + $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
|
| 791 | + $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 792 | + } |
|
| 793 | + /* If no expire_date is found, output a default message. */ |
|
| 794 | + if (empty($expire_date)) |
|
| 795 | + echo __('Unknown', 'geodirectory');
|
|
| 796 | + /* If there is a expire_date, append 'days left' to the text string. */ |
|
| 797 | + else |
|
| 798 | + echo $expire_date . $date_diff_text; |
|
| 799 | + break; |
|
| 828 | 800 | |
| 829 | - endswitch; |
|
| 830 | - } |
|
| 801 | + /* If displaying the 'categorys' column. */ |
|
| 802 | + case 'categorys' : |
|
| 803 | + |
|
| 804 | + /* Get the categorys for the post. */ |
|
| 805 | + |
|
| 806 | + |
|
| 807 | + $terms = wp_get_object_terms($post_id, get_object_taxonomies($post)); |
|
| 808 | + |
|
| 809 | + /* If terms were found. */ |
|
| 810 | + if (!empty($terms)) {
|
|
| 811 | + $out = array(); |
|
| 812 | + /* Loop through each term, linking to the 'edit posts' page for the specific term. */ |
|
| 813 | + foreach ($terms as $term) {
|
|
| 814 | + if (!strstr($term->taxonomy, 'tag')) {
|
|
| 815 | + $out[] = sprintf('<a href="%s">%s</a>',
|
|
| 816 | + esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
|
|
| 817 | + esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
|
|
| 818 | + ); |
|
| 819 | + } |
|
| 820 | + } |
|
| 821 | + /* Join the terms, separating them with a comma. */ |
|
| 822 | + echo(join(', ', $out));
|
|
| 823 | + } /* If no terms were found, output a default message. */ |
|
| 824 | + else {
|
|
| 825 | + _e('No Categories', 'geodirectory');
|
|
| 826 | + } |
|
| 827 | + break; |
|
| 828 | + |
|
| 829 | + endswitch; |
|
| 830 | + } |
|
| 831 | 831 | } |
| 832 | 832 | |
| 833 | 833 | |
| 834 | 834 | if (!function_exists('geodir_post_sortable_columns')) {
|
| 835 | - /** |
|
| 836 | - * Makes admin post listing page columns sortable. |
|
| 837 | - * |
|
| 838 | - * @since 1.0.0 |
|
| 839 | - * @package GeoDirectory |
|
| 840 | - * @param array $columns The column array. |
|
| 841 | - * @return array Altered column array. |
|
| 842 | - */ |
|
| 843 | - function geodir_post_sortable_columns($columns) |
|
| 844 | - {
|
|
| 845 | - |
|
| 846 | - $columns['expire'] = 'expire'; |
|
| 847 | - |
|
| 848 | - return $columns; |
|
| 849 | - } |
|
| 835 | + /** |
|
| 836 | + * Makes admin post listing page columns sortable. |
|
| 837 | + * |
|
| 838 | + * @since 1.0.0 |
|
| 839 | + * @package GeoDirectory |
|
| 840 | + * @param array $columns The column array. |
|
| 841 | + * @return array Altered column array. |
|
| 842 | + */ |
|
| 843 | + function geodir_post_sortable_columns($columns) |
|
| 844 | + {
|
|
| 845 | + |
|
| 846 | + $columns['expire'] = 'expire'; |
|
| 847 | + |
|
| 848 | + return $columns; |
|
| 849 | + } |
|
| 850 | 850 | } |
| 851 | 851 | |
| 852 | 852 | /** |
@@ -860,32 +860,32 @@ discard block |
||
| 860 | 860 | * @param int $post_id The post ID. |
| 861 | 861 | */ |
| 862 | 862 | function geodir_post_information_save($post_id, $post) {
|
| 863 | - global $wpdb, $current_user; |
|
| 863 | + global $wpdb, $current_user; |
|
| 864 | 864 | |
| 865 | - if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 866 | - return; |
|
| 867 | - } |
|
| 865 | + if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 866 | + return; |
|
| 867 | + } |
|
| 868 | 868 | |
| 869 | - $geodir_posttypes = geodir_get_posttypes(); |
|
| 869 | + $geodir_posttypes = geodir_get_posttypes(); |
|
| 870 | 870 | |
| 871 | - if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
|
|
| 872 | - return; |
|
| 871 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
|
|
| 872 | + return; |
|
| 873 | 873 | |
| 874 | - if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 875 | - if (isset($_REQUEST['_status'])) |
|
| 876 | - geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
| 874 | + if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 875 | + if (isset($_REQUEST['_status'])) |
|
| 876 | + geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
| 877 | 877 | |
| 878 | - if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
| 879 | - return; |
|
| 878 | + if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
| 879 | + return; |
|
| 880 | 880 | |
| 881 | - if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
| 882 | - return; |
|
| 881 | + if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
| 882 | + return; |
|
| 883 | 883 | |
| 884 | - if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
| 885 | - return; |
|
| 884 | + if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
| 885 | + return; |
|
| 886 | 886 | |
| 887 | - geodir_save_listing($_REQUEST); |
|
| 888 | - } |
|
| 887 | + geodir_save_listing($_REQUEST); |
|
| 888 | + } |
|
| 889 | 889 | } |
| 890 | 890 | |
| 891 | 891 | /** |
@@ -901,102 +901,102 @@ discard block |
||
| 901 | 901 | */ |
| 902 | 902 | function geodir_admin_fields($options) |
| 903 | 903 | {
|
| 904 | - global $geodirectory; |
|
| 905 | - |
|
| 906 | - $first_title = true; |
|
| 907 | - $tab_id = ''; |
|
| 908 | - $i = 0; |
|
| 909 | - foreach ($options as $value) : |
|
| 910 | - if (!isset($value['name'])) $value['name'] = ''; |
|
| 911 | - if (!isset($value['class'])) $value['class'] = ''; |
|
| 912 | - if (!isset($value['css'])) $value['css'] = ''; |
|
| 913 | - if (!isset($value['std'])) $value['std'] = ''; |
|
| 914 | - $desc = ''; |
|
| 915 | - switch ($value['type']) : |
|
| 916 | - case 'dummy_installer': |
|
| 917 | - $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place'; |
|
| 918 | - geodir_autoinstall_admin_header($post_type); |
|
| 919 | - break; |
|
| 920 | - case 'title': |
|
| 921 | - |
|
| 922 | - if ($i == 0) {
|
|
| 923 | - echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>'; |
|
| 924 | - echo '<div class="inner_content_tab_main">'; |
|
| 925 | - } |
|
| 904 | + global $geodirectory; |
|
| 905 | + |
|
| 906 | + $first_title = true; |
|
| 907 | + $tab_id = ''; |
|
| 908 | + $i = 0; |
|
| 909 | + foreach ($options as $value) : |
|
| 910 | + if (!isset($value['name'])) $value['name'] = ''; |
|
| 911 | + if (!isset($value['class'])) $value['class'] = ''; |
|
| 912 | + if (!isset($value['css'])) $value['css'] = ''; |
|
| 913 | + if (!isset($value['std'])) $value['std'] = ''; |
|
| 914 | + $desc = ''; |
|
| 915 | + switch ($value['type']) : |
|
| 916 | + case 'dummy_installer': |
|
| 917 | + $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place'; |
|
| 918 | + geodir_autoinstall_admin_header($post_type); |
|
| 919 | + break; |
|
| 920 | + case 'title': |
|
| 921 | + |
|
| 922 | + if ($i == 0) {
|
|
| 923 | + echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>'; |
|
| 924 | + echo '<div class="inner_content_tab_main">'; |
|
| 925 | + } |
|
| 926 | 926 | |
| 927 | - $i++; |
|
| 927 | + $i++; |
|
| 928 | 928 | |
| 929 | - if (isset($value['id']) && $value['id']) |
|
| 930 | - $tab_id = $value['id']; |
|
| 929 | + if (isset($value['id']) && $value['id']) |
|
| 930 | + $tab_id = $value['id']; |
|
| 931 | 931 | |
| 932 | - if (isset($value['desc']) && $value['desc']) |
|
| 933 | - $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 932 | + if (isset($value['desc']) && $value['desc']) |
|
| 933 | + $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 934 | 934 | |
| 935 | - if (isset($value['name']) && $value['name']) {
|
|
| 936 | - if ($first_title === true) {
|
|
| 937 | - $first_title = false; |
|
| 938 | - } else {
|
|
| 939 | - echo '</div>'; |
|
| 940 | - } |
|
| 941 | - echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 935 | + if (isset($value['name']) && $value['name']) {
|
|
| 936 | + if ($first_title === true) {
|
|
| 937 | + $first_title = false; |
|
| 938 | + } else {
|
|
| 939 | + echo '</div>'; |
|
| 940 | + } |
|
| 941 | + echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 942 | 942 | |
| 943 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 944 | - } |
|
| 943 | + echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 944 | + } |
|
| 945 | 945 | |
| 946 | - /** |
|
| 947 | - * Called after a GeoDirectory settings title is output in the GD settings page. |
|
| 948 | - * |
|
| 949 | - * The action is called dynamically geodir_settings_$value['id']. |
|
| 950 | - * |
|
| 951 | - * @since 1.0.0 |
|
| 952 | - */ |
|
| 953 | - do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 954 | - break; |
|
| 955 | - |
|
| 956 | - case 'no_tabs': |
|
| 957 | - |
|
| 958 | - echo '<div class="inner_content_tab_main">'; |
|
| 959 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 960 | - |
|
| 961 | - break; |
|
| 962 | - |
|
| 963 | - case 'sectionstart': |
|
| 964 | - if (isset($value['desc']) && $value['desc']) |
|
| 965 | - $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 966 | - if (isset($value['name']) && $value['name']) |
|
| 967 | - echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 968 | - /** |
|
| 969 | - * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
|
| 970 | - * |
|
| 971 | - * The action is called dynamically geodir_settings_$value['id']_start. |
|
| 972 | - * |
|
| 973 | - * @since 1.0.0 |
|
| 974 | - */ |
|
| 975 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 976 | - echo '<table class="form-table">' . "\n\n"; |
|
| 977 | - |
|
| 978 | - break; |
|
| 979 | - case 'sectionend': |
|
| 980 | - /** |
|
| 981 | - * Called before a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 982 | - * |
|
| 983 | - * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 984 | - * |
|
| 985 | - * @since 1.0.0 |
|
| 986 | - */ |
|
| 987 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 988 | - echo '</table>'; |
|
| 989 | - /** |
|
| 990 | - * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 991 | - * |
|
| 992 | - * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 993 | - * |
|
| 994 | - * @since 1.0.0 |
|
| 995 | - */ |
|
| 996 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 997 | - break; |
|
| 998 | - case 'text': |
|
| 999 | - ?> |
|
| 946 | + /** |
|
| 947 | + * Called after a GeoDirectory settings title is output in the GD settings page. |
|
| 948 | + * |
|
| 949 | + * The action is called dynamically geodir_settings_$value['id']. |
|
| 950 | + * |
|
| 951 | + * @since 1.0.0 |
|
| 952 | + */ |
|
| 953 | + do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 954 | + break; |
|
| 955 | + |
|
| 956 | + case 'no_tabs': |
|
| 957 | + |
|
| 958 | + echo '<div class="inner_content_tab_main">'; |
|
| 959 | + echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 960 | + |
|
| 961 | + break; |
|
| 962 | + |
|
| 963 | + case 'sectionstart': |
|
| 964 | + if (isset($value['desc']) && $value['desc']) |
|
| 965 | + $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 966 | + if (isset($value['name']) && $value['name']) |
|
| 967 | + echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 968 | + /** |
|
| 969 | + * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
|
| 970 | + * |
|
| 971 | + * The action is called dynamically geodir_settings_$value['id']_start. |
|
| 972 | + * |
|
| 973 | + * @since 1.0.0 |
|
| 974 | + */ |
|
| 975 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 976 | + echo '<table class="form-table">' . "\n\n"; |
|
| 977 | + |
|
| 978 | + break; |
|
| 979 | + case 'sectionend': |
|
| 980 | + /** |
|
| 981 | + * Called before a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 982 | + * |
|
| 983 | + * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 984 | + * |
|
| 985 | + * @since 1.0.0 |
|
| 986 | + */ |
|
| 987 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 988 | + echo '</table>'; |
|
| 989 | + /** |
|
| 990 | + * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 991 | + * |
|
| 992 | + * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 993 | + * |
|
| 994 | + * @since 1.0.0 |
|
| 995 | + */ |
|
| 996 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 997 | + break; |
|
| 998 | + case 'text': |
|
| 999 | + ?> |
|
| 1000 | 1000 | <tr valign="top"> |
| 1001 | 1001 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1002 | 1002 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1005,15 +1005,15 @@ discard block |
||
| 1005 | 1005 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1006 | 1006 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1007 | 1007 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1008 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1009 | - } else {
|
|
| 1010 | - echo esc_attr($value['std']); |
|
| 1011 | - } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1008 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1009 | + } else {
|
|
| 1010 | + echo esc_attr($value['std']); |
|
| 1011 | + } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1012 | 1012 | </tr><?php |
| 1013 | - break; |
|
| 1013 | + break; |
|
| 1014 | 1014 | |
| 1015 | - case 'map-key': |
|
| 1016 | - ?> |
|
| 1015 | + case 'map-key': |
|
| 1016 | + ?> |
|
| 1017 | 1017 | <tr valign="top"> |
| 1018 | 1018 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1019 | 1019 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1022,17 +1022,17 @@ discard block |
||
| 1022 | 1022 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1023 | 1023 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1024 | 1024 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1025 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1026 | - } else {
|
|
| 1027 | - echo esc_attr($value['std']); |
|
| 1028 | - } ?>"/> |
|
| 1025 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1026 | + } else {
|
|
| 1027 | + echo esc_attr($value['std']); |
|
| 1028 | + } ?>"/> |
|
| 1029 | 1029 | <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
|
| 1030 | 1030 | <span class="description"><?php echo $value['desc']; ?></span></td> |
| 1031 | 1031 | </tr><?php |
| 1032 | - break; |
|
| 1032 | + break; |
|
| 1033 | 1033 | |
| 1034 | - case 'password': |
|
| 1035 | - ?> |
|
| 1034 | + case 'password': |
|
| 1035 | + ?> |
|
| 1036 | 1036 | <tr valign="top"> |
| 1037 | 1037 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1038 | 1038 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1041,42 +1041,42 @@ discard block |
||
| 1041 | 1041 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1042 | 1042 | style="<?php echo esc_attr($value['css']); ?>" |
| 1043 | 1043 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1044 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1045 | - } else {
|
|
| 1046 | - echo esc_attr($value['std']); |
|
| 1047 | - } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1044 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1045 | + } else {
|
|
| 1046 | + echo esc_attr($value['std']); |
|
| 1047 | + } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1048 | 1048 | </tr><?php |
| 1049 | - break; |
|
| 1049 | + break; |
|
| 1050 | 1050 | |
| 1051 | - case 'html_content': |
|
| 1052 | - ?> |
|
| 1051 | + case 'html_content': |
|
| 1052 | + ?> |
|
| 1053 | 1053 | <tr valign="top"> |
| 1054 | 1054 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1055 | 1055 | <td class="forminp"><span class="description"><?php echo $value['desc']; ?></span></td> |
| 1056 | 1056 | </tr><?php |
| 1057 | - break; |
|
| 1057 | + break; |
|
| 1058 | 1058 | |
| 1059 | - case 'color' : |
|
| 1060 | - ?> |
|
| 1059 | + case 'color' : |
|
| 1060 | + ?> |
|
| 1061 | 1061 | <tr valign="top"> |
| 1062 | 1062 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1063 | 1063 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1064 | 1064 | id="<?php echo esc_attr($value['id']); ?>" type="text" |
| 1065 | 1065 | style="<?php echo esc_attr($value['css']); ?>" |
| 1066 | 1066 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1067 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1068 | - } else {
|
|
| 1069 | - echo esc_attr($value['std']); |
|
| 1070 | - } ?>" class="colorpick"/> <span |
|
| 1067 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1068 | + } else {
|
|
| 1069 | + echo esc_attr($value['std']); |
|
| 1070 | + } ?>" class="colorpick"/> <span |
|
| 1071 | 1071 | class="description"><?php echo $value['desc']; ?></span> |
| 1072 | 1072 | |
| 1073 | 1073 | <div id="colorPickerDiv_<?php echo esc_attr($value['id']); ?>" class="colorpickdiv" |
| 1074 | 1074 | style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div> |
| 1075 | 1075 | </td> |
| 1076 | 1076 | </tr><?php |
| 1077 | - break; |
|
| 1078 | - case 'image_width' : |
|
| 1079 | - ?> |
|
| 1077 | + break; |
|
| 1078 | + case 'image_width' : |
|
| 1079 | + ?> |
|
| 1080 | 1080 | <tr valign="top"> |
| 1081 | 1081 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1082 | 1082 | <td class="forminp"> |
@@ -1098,11 +1098,11 @@ discard block |
||
| 1098 | 1098 | |
| 1099 | 1099 | <span class="description"><?php echo $value['desc'] ?></span></td> |
| 1100 | 1100 | </tr><?php |
| 1101 | - break; |
|
| 1102 | - case 'select': |
|
| 1103 | - $option_value = get_option($value['id']); |
|
| 1104 | - $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value; |
|
| 1105 | - ?> |
|
| 1101 | + break; |
|
| 1102 | + case 'select': |
|
| 1103 | + $option_value = get_option($value['id']); |
|
| 1104 | + $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value; |
|
| 1105 | + ?> |
|
| 1106 | 1106 | <tr valign="top"> |
| 1107 | 1107 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1108 | 1108 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
@@ -1111,33 +1111,33 @@ discard block |
||
| 1111 | 1111 | class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
| 1112 | 1112 | option-ajaxchosen="false"> |
| 1113 | 1113 | <?php |
| 1114 | - foreach ($value['options'] as $key => $val) {
|
|
| 1115 | - $geodir_select_value = ''; |
|
| 1116 | - if ($option_value != '') {
|
|
| 1117 | - if ($option_value != '' && $option_value == $key) |
|
| 1118 | - $geodir_select_value = ' selected="selected" '; |
|
| 1119 | - } else {
|
|
| 1120 | - if ($value['std'] == $key) |
|
| 1121 | - $geodir_select_value = ' selected="selected" '; |
|
| 1122 | - } |
|
| 1123 | - ?> |
|
| 1114 | + foreach ($value['options'] as $key => $val) {
|
|
| 1115 | + $geodir_select_value = ''; |
|
| 1116 | + if ($option_value != '') {
|
|
| 1117 | + if ($option_value != '' && $option_value == $key) |
|
| 1118 | + $geodir_select_value = ' selected="selected" '; |
|
| 1119 | + } else {
|
|
| 1120 | + if ($value['std'] == $key) |
|
| 1121 | + $geodir_select_value = ' selected="selected" '; |
|
| 1122 | + } |
|
| 1123 | + ?> |
|
| 1124 | 1124 | <option |
| 1125 | 1125 | value="<?php echo esc_attr($key); ?>" <?php echo $geodir_select_value; ?> ><?php echo ucfirst($val) ?></option> |
| 1126 | 1126 | <?php |
| 1127 | - } |
|
| 1128 | - ?> |
|
| 1127 | + } |
|
| 1128 | + ?> |
|
| 1129 | 1129 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1130 | 1130 | </td> |
| 1131 | 1131 | </tr><?php |
| 1132 | - break; |
|
| 1132 | + break; |
|
| 1133 | 1133 | |
| 1134 | - case 'multiselect': |
|
| 1135 | - $option_values = get_option($value['id']); |
|
| 1136 | - if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
|
|
| 1137 | - $option_values = $value['std']; |
|
| 1138 | - } |
|
| 1139 | - $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values; |
|
| 1140 | - ?> |
|
| 1134 | + case 'multiselect': |
|
| 1135 | + $option_values = get_option($value['id']); |
|
| 1136 | + if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
|
|
| 1137 | + $option_values = $value['std']; |
|
| 1138 | + } |
|
| 1139 | + $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values; |
|
| 1140 | + ?> |
|
| 1141 | 1141 | <tr valign="top"> |
| 1142 | 1142 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1143 | 1143 | <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]" |
@@ -1147,25 +1147,25 @@ discard block |
||
| 1147 | 1147 | data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>" |
| 1148 | 1148 | option-ajaxchosen="false"> |
| 1149 | 1149 | <?php |
| 1150 | - foreach ($value['options'] as $key => $val) {
|
|
| 1151 | - if (strpos($key, 'optgroup_start-') === 0) {
|
|
| 1152 | - ?><optgroup label="<?php echo ucfirst($val); ?>"><?php |
|
| 1153 | - } else if (strpos($key, 'optgroup_end-') === 0) {
|
|
| 1154 | - ?></optgroup><?php |
|
| 1155 | - } else {
|
|
| 1156 | - ?> |
|
| 1150 | + foreach ($value['options'] as $key => $val) {
|
|
| 1151 | + if (strpos($key, 'optgroup_start-') === 0) {
|
|
| 1152 | + ?><optgroup label="<?php echo ucfirst($val); ?>"><?php |
|
| 1153 | + } else if (strpos($key, 'optgroup_end-') === 0) {
|
|
| 1154 | + ?></optgroup><?php |
|
| 1155 | + } else {
|
|
| 1156 | + ?> |
|
| 1157 | 1157 | <option |
| 1158 | 1158 | value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option> |
| 1159 | 1159 | <?php |
| 1160 | - } |
|
| 1161 | - } |
|
| 1162 | - ?> |
|
| 1160 | + } |
|
| 1161 | + } |
|
| 1162 | + ?> |
|
| 1163 | 1163 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1164 | 1164 | </td> |
| 1165 | 1165 | </tr><?php |
| 1166 | - break; |
|
| 1167 | - case 'file': |
|
| 1168 | - ?> |
|
| 1166 | + break; |
|
| 1167 | + case 'file': |
|
| 1168 | + ?> |
|
| 1169 | 1169 | <tr valign="top"> |
| 1170 | 1170 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1171 | 1171 | <td class="forminp"> |
@@ -1185,87 +1185,87 @@ discard block |
||
| 1185 | 1185 | <?php } ?> |
| 1186 | 1186 | </td> |
| 1187 | 1187 | </tr><?php |
| 1188 | - break; |
|
| 1189 | - case 'map_default_settings' : |
|
| 1190 | - ?> |
|
| 1188 | + break; |
|
| 1189 | + case 'map_default_settings' : |
|
| 1190 | + ?> |
|
| 1191 | 1191 | |
| 1192 | 1192 | <tr valign="top"> |
| 1193 | 1193 | <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
|
| 1194 | 1194 | <td width="60%"> |
| 1195 | 1195 | <select name="geodir_default_map_language" style="width:60%"> |
| 1196 | 1196 | <?php |
| 1197 | - $arr_map_langages = array( |
|
| 1198 | - 'ar' => __('ARABIC', 'geodirectory'),
|
|
| 1199 | - 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1200 | - 'bg' => __('BULGARIAN', 'geodirectory'),
|
|
| 1201 | - 'bn' => __('BENGALI', 'geodirectory'),
|
|
| 1202 | - 'ca' => __('CATALAN', 'geodirectory'),
|
|
| 1203 | - 'cs' => __('CZECH', 'geodirectory'),
|
|
| 1204 | - 'da' => __('DANISH', 'geodirectory'),
|
|
| 1205 | - 'de' => __('GERMAN', 'geodirectory'),
|
|
| 1206 | - 'el' => __('GREEK', 'geodirectory'),
|
|
| 1207 | - 'en' => __('ENGLISH', 'geodirectory'),
|
|
| 1208 | - 'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
|
|
| 1209 | - 'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
|
|
| 1210 | - 'es' => __('SPANISH', 'geodirectory'),
|
|
| 1211 | - 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1212 | - 'fa' => __('FARSI', 'geodirectory'),
|
|
| 1213 | - 'fi' => __('FINNISH', 'geodirectory'),
|
|
| 1214 | - 'fil' => __('FILIPINO', 'geodirectory'),
|
|
| 1215 | - 'fr' => __('FRENCH', 'geodirectory'),
|
|
| 1216 | - 'gl' => __('GALICIAN', 'geodirectory'),
|
|
| 1217 | - 'gu' => __('GUJARATI', 'geodirectory'),
|
|
| 1218 | - 'hi' => __('HINDI', 'geodirectory'),
|
|
| 1219 | - 'hr' => __('CROATIAN', 'geodirectory'),
|
|
| 1220 | - 'hu' => __('HUNGARIAN', 'geodirectory'),
|
|
| 1221 | - 'id' => __('INDONESIAN', 'geodirectory'),
|
|
| 1222 | - 'it' => __('ITALIAN', 'geodirectory'),
|
|
| 1223 | - 'iw' => __('HEBREW', 'geodirectory'),
|
|
| 1224 | - 'ja' => __('JAPANESE', 'geodirectory'),
|
|
| 1225 | - 'kn' => __('KANNADA', 'geodirectory'),
|
|
| 1226 | - 'ko' => __('KOREAN', 'geodirectory'),
|
|
| 1227 | - 'lt' => __('LITHUANIAN', 'geodirectory'),
|
|
| 1228 | - 'lv' => __('LATVIAN', 'geodirectory'),
|
|
| 1229 | - 'ml' => __('MALAYALAM', 'geodirectory'),
|
|
| 1230 | - 'mr' => __('MARATHI', 'geodirectory'),
|
|
| 1231 | - 'nl' => __('DUTCH', 'geodirectory'),
|
|
| 1232 | - 'no' => __('NORWEGIAN', 'geodirectory'),
|
|
| 1233 | - 'pl' => __('POLISH', 'geodirectory'),
|
|
| 1234 | - 'pt' => __('PORTUGUESE', 'geodirectory'),
|
|
| 1235 | - 'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
|
|
| 1236 | - 'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
|
|
| 1237 | - 'ro' => __('ROMANIAN', 'geodirectory'),
|
|
| 1238 | - 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1239 | - 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1240 | - 'sk' => __('SLOVAK', 'geodirectory'),
|
|
| 1241 | - 'sl' => __('SLOVENIAN', 'geodirectory'),
|
|
| 1242 | - 'sr' => __('SERBIAN', 'geodirectory'),
|
|
| 1243 | - 'sv' => __(' SWEDISH', 'geodirectory'),
|
|
| 1244 | - 'tl' => __('TAGALOG', 'geodirectory'),
|
|
| 1245 | - 'ta' => __('TAMIL', 'geodirectory'),
|
|
| 1246 | - 'te' => __('TELUGU', 'geodirectory'),
|
|
| 1247 | - 'th' => __('THAI', 'geodirectory'),
|
|
| 1248 | - 'tr' => __('TURKISH', 'geodirectory'),
|
|
| 1249 | - 'uk' => __('UKRAINIAN', 'geodirectory'),
|
|
| 1250 | - 'vi' => __('VIETNAMESE', 'geodirectory'),
|
|
| 1251 | - 'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
|
|
| 1252 | - 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
|
|
| 1253 | - ); |
|
| 1254 | - $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 1255 | - if (empty($geodir_default_map_language)) |
|
| 1256 | - $geodir_default_map_language = 'en'; |
|
| 1257 | - foreach ($arr_map_langages as $language_key => $language_txt) {
|
|
| 1258 | - if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
| 1259 | - $geodir_default_language_selected = "selected='selected'"; |
|
| 1260 | - else |
|
| 1261 | - $geodir_default_language_selected = ''; |
|
| 1262 | - |
|
| 1263 | - ?> |
|
| 1197 | + $arr_map_langages = array( |
|
| 1198 | + 'ar' => __('ARABIC', 'geodirectory'),
|
|
| 1199 | + 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1200 | + 'bg' => __('BULGARIAN', 'geodirectory'),
|
|
| 1201 | + 'bn' => __('BENGALI', 'geodirectory'),
|
|
| 1202 | + 'ca' => __('CATALAN', 'geodirectory'),
|
|
| 1203 | + 'cs' => __('CZECH', 'geodirectory'),
|
|
| 1204 | + 'da' => __('DANISH', 'geodirectory'),
|
|
| 1205 | + 'de' => __('GERMAN', 'geodirectory'),
|
|
| 1206 | + 'el' => __('GREEK', 'geodirectory'),
|
|
| 1207 | + 'en' => __('ENGLISH', 'geodirectory'),
|
|
| 1208 | + 'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
|
|
| 1209 | + 'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
|
|
| 1210 | + 'es' => __('SPANISH', 'geodirectory'),
|
|
| 1211 | + 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1212 | + 'fa' => __('FARSI', 'geodirectory'),
|
|
| 1213 | + 'fi' => __('FINNISH', 'geodirectory'),
|
|
| 1214 | + 'fil' => __('FILIPINO', 'geodirectory'),
|
|
| 1215 | + 'fr' => __('FRENCH', 'geodirectory'),
|
|
| 1216 | + 'gl' => __('GALICIAN', 'geodirectory'),
|
|
| 1217 | + 'gu' => __('GUJARATI', 'geodirectory'),
|
|
| 1218 | + 'hi' => __('HINDI', 'geodirectory'),
|
|
| 1219 | + 'hr' => __('CROATIAN', 'geodirectory'),
|
|
| 1220 | + 'hu' => __('HUNGARIAN', 'geodirectory'),
|
|
| 1221 | + 'id' => __('INDONESIAN', 'geodirectory'),
|
|
| 1222 | + 'it' => __('ITALIAN', 'geodirectory'),
|
|
| 1223 | + 'iw' => __('HEBREW', 'geodirectory'),
|
|
| 1224 | + 'ja' => __('JAPANESE', 'geodirectory'),
|
|
| 1225 | + 'kn' => __('KANNADA', 'geodirectory'),
|
|
| 1226 | + 'ko' => __('KOREAN', 'geodirectory'),
|
|
| 1227 | + 'lt' => __('LITHUANIAN', 'geodirectory'),
|
|
| 1228 | + 'lv' => __('LATVIAN', 'geodirectory'),
|
|
| 1229 | + 'ml' => __('MALAYALAM', 'geodirectory'),
|
|
| 1230 | + 'mr' => __('MARATHI', 'geodirectory'),
|
|
| 1231 | + 'nl' => __('DUTCH', 'geodirectory'),
|
|
| 1232 | + 'no' => __('NORWEGIAN', 'geodirectory'),
|
|
| 1233 | + 'pl' => __('POLISH', 'geodirectory'),
|
|
| 1234 | + 'pt' => __('PORTUGUESE', 'geodirectory'),
|
|
| 1235 | + 'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
|
|
| 1236 | + 'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
|
|
| 1237 | + 'ro' => __('ROMANIAN', 'geodirectory'),
|
|
| 1238 | + 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1239 | + 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1240 | + 'sk' => __('SLOVAK', 'geodirectory'),
|
|
| 1241 | + 'sl' => __('SLOVENIAN', 'geodirectory'),
|
|
| 1242 | + 'sr' => __('SERBIAN', 'geodirectory'),
|
|
| 1243 | + 'sv' => __(' SWEDISH', 'geodirectory'),
|
|
| 1244 | + 'tl' => __('TAGALOG', 'geodirectory'),
|
|
| 1245 | + 'ta' => __('TAMIL', 'geodirectory'),
|
|
| 1246 | + 'te' => __('TELUGU', 'geodirectory'),
|
|
| 1247 | + 'th' => __('THAI', 'geodirectory'),
|
|
| 1248 | + 'tr' => __('TURKISH', 'geodirectory'),
|
|
| 1249 | + 'uk' => __('UKRAINIAN', 'geodirectory'),
|
|
| 1250 | + 'vi' => __('VIETNAMESE', 'geodirectory'),
|
|
| 1251 | + 'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
|
|
| 1252 | + 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
|
|
| 1253 | + ); |
|
| 1254 | + $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 1255 | + if (empty($geodir_default_map_language)) |
|
| 1256 | + $geodir_default_map_language = 'en'; |
|
| 1257 | + foreach ($arr_map_langages as $language_key => $language_txt) {
|
|
| 1258 | + if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
| 1259 | + $geodir_default_language_selected = "selected='selected'"; |
|
| 1260 | + else |
|
| 1261 | + $geodir_default_language_selected = ''; |
|
| 1262 | + |
|
| 1263 | + ?> |
|
| 1264 | 1264 | <option |
| 1265 | 1265 | value="<?php echo $language_key?>" <?php echo $geodir_default_language_selected; ?>><?php echo $language_txt; ?></option> |
| 1266 | 1266 | |
| 1267 | 1267 | <?php } |
| 1268 | - ?> |
|
| 1268 | + ?> |
|
| 1269 | 1269 | </select> |
| 1270 | 1270 | </td> |
| 1271 | 1271 | </tr> |
@@ -1276,46 +1276,46 @@ discard block |
||
| 1276 | 1276 | <td width="60%"> |
| 1277 | 1277 | <select name="geodir_default_map_search_pt" style="width:60%"> |
| 1278 | 1278 | <?php |
| 1279 | - $post_types = geodir_get_posttypes('array');
|
|
| 1280 | - $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
|
|
| 1281 | - if (empty($geodir_default_map_search_pt)) |
|
| 1282 | - $geodir_default_map_search_pt = 'gd_place'; |
|
| 1283 | - if (is_array($post_types)) {
|
|
| 1284 | - foreach ($post_types as $key => $post_types_obj) {
|
|
| 1285 | - if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
| 1286 | - $geodir_search_pt_selected = "selected='selected'"; |
|
| 1287 | - else |
|
| 1288 | - $geodir_search_pt_selected = ''; |
|
| 1289 | - |
|
| 1290 | - ?> |
|
| 1279 | + $post_types = geodir_get_posttypes('array');
|
|
| 1280 | + $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
|
|
| 1281 | + if (empty($geodir_default_map_search_pt)) |
|
| 1282 | + $geodir_default_map_search_pt = 'gd_place'; |
|
| 1283 | + if (is_array($post_types)) {
|
|
| 1284 | + foreach ($post_types as $key => $post_types_obj) {
|
|
| 1285 | + if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
| 1286 | + $geodir_search_pt_selected = "selected='selected'"; |
|
| 1287 | + else |
|
| 1288 | + $geodir_search_pt_selected = ''; |
|
| 1289 | + |
|
| 1290 | + ?> |
|
| 1291 | 1291 | <option |
| 1292 | 1292 | value="<?php echo $key?>" <?php echo $geodir_search_pt_selected; ?>><?php echo __($post_types_obj['labels']['singular_name'], 'geodirectory'); ?></option> |
| 1293 | 1293 | |
| 1294 | 1294 | <?php } |
| 1295 | 1295 | |
| 1296 | - } |
|
| 1296 | + } |
|
| 1297 | 1297 | |
| 1298 | - ?> |
|
| 1298 | + ?> |
|
| 1299 | 1299 | </select> |
| 1300 | 1300 | </td> |
| 1301 | 1301 | </tr> |
| 1302 | 1302 | |
| 1303 | 1303 | <?php |
| 1304 | - break; |
|
| 1304 | + break; |
|
| 1305 | 1305 | |
| 1306 | - case 'map': |
|
| 1307 | - ?> |
|
| 1306 | + case 'map': |
|
| 1307 | + ?> |
|
| 1308 | 1308 | <tr valign="top"> |
| 1309 | 1309 | <td class="forminp"> |
| 1310 | 1310 | <?php |
| 1311 | - global $post_cat, $cat_display; |
|
| 1312 | - $post_types = geodir_get_posttypes('object');
|
|
| 1313 | - $cat_display = 'checkbox'; |
|
| 1314 | - $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
|
| 1315 | - $gd_cats = get_option('geodir_exclude_cat_on_map');
|
|
| 1316 | - $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1317 | - $count = 1; |
|
| 1318 | - ?> |
|
| 1311 | + global $post_cat, $cat_display; |
|
| 1312 | + $post_types = geodir_get_posttypes('object');
|
|
| 1313 | + $cat_display = 'checkbox'; |
|
| 1314 | + $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
|
| 1315 | + $gd_cats = get_option('geodir_exclude_cat_on_map');
|
|
| 1316 | + $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1317 | + $count = 1; |
|
| 1318 | + ?> |
|
| 1319 | 1319 | <table width="70%" class="widefat"> |
| 1320 | 1320 | <thead> |
| 1321 | 1321 | <tr> |
@@ -1324,18 +1324,18 @@ discard block |
||
| 1324 | 1324 | <th><b><?php echo DESIGN_POST_TYPE_CAT; ?></b></th> |
| 1325 | 1325 | </tr> |
| 1326 | 1326 | <?php |
| 1327 | - $gd_categs = $gd_cats; |
|
| 1328 | - foreach ($post_types as $key => $post_types_obj) : |
|
| 1329 | - $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : ''; |
|
| 1330 | - $gd_taxonomy = geodir_get_taxonomies($key); |
|
| 1331 | - if ($gd_cats_upgrade) {
|
|
| 1332 | - $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : ''; |
|
| 1333 | - $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array(); |
|
| 1334 | - $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array(); |
|
| 1335 | - } |
|
| 1336 | - $post_cat = implode(',', $gd_cats);
|
|
| 1337 | - $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy); |
|
| 1338 | - ?> |
|
| 1327 | + $gd_categs = $gd_cats; |
|
| 1328 | + foreach ($post_types as $key => $post_types_obj) : |
|
| 1329 | + $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : ''; |
|
| 1330 | + $gd_taxonomy = geodir_get_taxonomies($key); |
|
| 1331 | + if ($gd_cats_upgrade) {
|
|
| 1332 | + $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : ''; |
|
| 1333 | + $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array(); |
|
| 1334 | + $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array(); |
|
| 1335 | + } |
|
| 1336 | + $post_cat = implode(',', $gd_cats);
|
|
| 1337 | + $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy); |
|
| 1338 | + ?> |
|
| 1339 | 1339 | <tr> |
| 1340 | 1340 | <td valign="top" width="5%"><?php echo $count; ?></td> |
| 1341 | 1341 | <td valign="top" width="25%" id="td_post_types"><input type="checkbox" |
@@ -1356,19 +1356,19 @@ discard block |
||
| 1356 | 1356 | </td> |
| 1357 | 1357 | </tr> |
| 1358 | 1358 | <?php |
| 1359 | - break; |
|
| 1359 | + break; |
|
| 1360 | 1360 | |
| 1361 | - case 'checkbox' : |
|
| 1361 | + case 'checkbox' : |
|
| 1362 | 1362 | |
| 1363 | - if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) : |
|
| 1364 | - ?> |
|
| 1363 | + if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) : |
|
| 1364 | + ?> |
|
| 1365 | 1365 | <tr valign="top"> |
| 1366 | 1366 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1367 | 1367 | <td class="forminp"> |
| 1368 | 1368 | <?php |
| 1369 | - endif; |
|
| 1369 | + endif; |
|
| 1370 | 1370 | |
| 1371 | - ?> |
|
| 1371 | + ?> |
|
| 1372 | 1372 | <fieldset> |
| 1373 | 1373 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1374 | 1374 | <label for="<?php echo $value['id'] ?>"> |
@@ -1378,49 +1378,49 @@ discard block |
||
| 1378 | 1378 | </fieldset> |
| 1379 | 1379 | <?php |
| 1380 | 1380 | |
| 1381 | - if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) : |
|
| 1382 | - ?> |
|
| 1381 | + if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) : |
|
| 1382 | + ?> |
|
| 1383 | 1383 | </td> |
| 1384 | 1384 | </tr> |
| 1385 | 1385 | <?php |
| 1386 | - endif; |
|
| 1386 | + endif; |
|
| 1387 | 1387 | |
| 1388 | - break; |
|
| 1388 | + break; |
|
| 1389 | 1389 | |
| 1390 | - case 'radio' : |
|
| 1390 | + case 'radio' : |
|
| 1391 | 1391 | |
| 1392 | - if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) : |
|
| 1393 | - ?> |
|
| 1392 | + if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) : |
|
| 1393 | + ?> |
|
| 1394 | 1394 | <tr valign="top"> |
| 1395 | 1395 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1396 | 1396 | <td class="forminp"> |
| 1397 | 1397 | <?php |
| 1398 | - endif; |
|
| 1398 | + endif; |
|
| 1399 | 1399 | |
| 1400 | - ?> |
|
| 1400 | + ?> |
|
| 1401 | 1401 | <fieldset> |
| 1402 | 1402 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1403 | 1403 | <label for="<?php echo $value['id'];?>"> |
| 1404 | 1404 | <input name="<?php echo esc_attr($value['id']); ?>" |
| 1405 | 1405 | id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio" |
| 1406 | 1406 | value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
|
| 1407 | - echo 'checked="checked"'; |
|
| 1408 | - }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1407 | + echo 'checked="checked"'; |
|
| 1408 | + }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1409 | 1409 | <?php echo $value['desc']; ?></label><br> |
| 1410 | 1410 | </fieldset> |
| 1411 | 1411 | <?php |
| 1412 | 1412 | |
| 1413 | - if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) : |
|
| 1414 | - ?> |
|
| 1413 | + if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) : |
|
| 1414 | + ?> |
|
| 1415 | 1415 | </td> |
| 1416 | 1416 | </tr> |
| 1417 | 1417 | <?php |
| 1418 | - endif; |
|
| 1418 | + endif; |
|
| 1419 | 1419 | |
| 1420 | - break; |
|
| 1420 | + break; |
|
| 1421 | 1421 | |
| 1422 | - case 'textarea': |
|
| 1423 | - ?> |
|
| 1422 | + case 'textarea': |
|
| 1423 | + ?> |
|
| 1424 | 1424 | <tr valign="top"> |
| 1425 | 1425 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1426 | 1426 | <td class="forminp"> |
@@ -1433,30 +1433,30 @@ discard block |
||
| 1433 | 1433 | |
| 1434 | 1434 | </td> |
| 1435 | 1435 | </tr><?php |
| 1436 | - break; |
|
| 1436 | + break; |
|
| 1437 | 1437 | |
| 1438 | - case 'editor': |
|
| 1439 | - ?> |
|
| 1438 | + case 'editor': |
|
| 1439 | + ?> |
|
| 1440 | 1440 | <tr valign="top"> |
| 1441 | 1441 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1442 | 1442 | <td class="forminp"><?php |
| 1443 | - if (get_option($value['id'])) |
|
| 1444 | - $content = stripslashes(get_option($value['id'])); |
|
| 1445 | - else |
|
| 1446 | - $content = $value['std']; |
|
| 1443 | + if (get_option($value['id'])) |
|
| 1444 | + $content = stripslashes(get_option($value['id'])); |
|
| 1445 | + else |
|
| 1446 | + $content = $value['std']; |
|
| 1447 | 1447 | |
| 1448 | - $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
|
|
| 1448 | + $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
|
|
| 1449 | 1449 | |
| 1450 | - wp_editor($content, esc_attr($value['id']), $editor_settings); |
|
| 1450 | + wp_editor($content, esc_attr($value['id']), $editor_settings); |
|
| 1451 | 1451 | |
| 1452 | - ?> <span class="description"><?php echo $value['desc'] ?></span> |
|
| 1452 | + ?> <span class="description"><?php echo $value['desc'] ?></span> |
|
| 1453 | 1453 | |
| 1454 | 1454 | </td> |
| 1455 | 1455 | </tr><?php |
| 1456 | - break; |
|
| 1456 | + break; |
|
| 1457 | 1457 | |
| 1458 | - case 'single_select_page' : |
|
| 1459 | - // WPML |
|
| 1458 | + case 'single_select_page' : |
|
| 1459 | + // WPML |
|
| 1460 | 1460 | $switch_lang = false; |
| 1461 | 1461 | $disabled = ''; |
| 1462 | 1462 | if (geodir_is_wpml() && isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') {
|
@@ -1474,18 +1474,18 @@ discard block |
||
| 1474 | 1474 | // |
| 1475 | 1475 | $page_setting = (int)get_option($value['id']); |
| 1476 | 1476 | |
| 1477 | - $args = array('name' => $value['id'],
|
|
| 1478 | - 'id' => $value['id'], |
|
| 1479 | - 'sort_column' => 'menu_order', |
|
| 1480 | - 'sort_order' => 'ASC', |
|
| 1481 | - 'show_option_none' => ' ', |
|
| 1482 | - 'class' => $value['class'], |
|
| 1483 | - 'echo' => false, |
|
| 1484 | - 'selected' => $page_setting); |
|
| 1477 | + $args = array('name' => $value['id'],
|
|
| 1478 | + 'id' => $value['id'], |
|
| 1479 | + 'sort_column' => 'menu_order', |
|
| 1480 | + 'sort_order' => 'ASC', |
|
| 1481 | + 'show_option_none' => ' ', |
|
| 1482 | + 'class' => $value['class'], |
|
| 1483 | + 'echo' => false, |
|
| 1484 | + 'selected' => $page_setting); |
|
| 1485 | 1485 | |
| 1486 | - if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
| 1486 | + if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
| 1487 | 1487 | |
| 1488 | - ?> |
|
| 1488 | + ?> |
|
| 1489 | 1489 | <tr valign="top" class="single_select_page"> |
| 1490 | 1490 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1491 | 1491 | <td class="forminp"> |
@@ -1496,17 +1496,17 @@ discard block |
||
| 1496 | 1496 | if ($switch_lang) {
|
| 1497 | 1497 | $sitepress->switch_lang($switch_lang, true); |
| 1498 | 1498 | } |
| 1499 | - break; |
|
| 1500 | - case 'single_select_country' : |
|
| 1501 | - $country_setting = (string)get_option($value['id']); |
|
| 1502 | - if (strstr($country_setting, ':')) : |
|
| 1503 | - $country = current(explode(':', $country_setting));
|
|
| 1504 | - $state = end(explode(':', $country_setting));
|
|
| 1505 | - else : |
|
| 1506 | - $country = $country_setting; |
|
| 1507 | - $state = '*'; |
|
| 1508 | - endif; |
|
| 1509 | - ?> |
|
| 1499 | + break; |
|
| 1500 | + case 'single_select_country' : |
|
| 1501 | + $country_setting = (string)get_option($value['id']); |
|
| 1502 | + if (strstr($country_setting, ':')) : |
|
| 1503 | + $country = current(explode(':', $country_setting));
|
|
| 1504 | + $state = end(explode(':', $country_setting));
|
|
| 1505 | + else : |
|
| 1506 | + $country = $country_setting; |
|
| 1507 | + $state = '*'; |
|
| 1508 | + endif; |
|
| 1509 | + ?> |
|
| 1510 | 1510 | <tr valign="top"> |
| 1511 | 1511 | <th scope="rpw" class="titledesc"><?php echo $value['name'] ?></th> |
| 1512 | 1512 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
@@ -1517,12 +1517,12 @@ discard block |
||
| 1517 | 1517 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1518 | 1518 | </td> |
| 1519 | 1519 | </tr><?php |
| 1520 | - break; |
|
| 1521 | - case 'multi_select_countries' : |
|
| 1522 | - $countries = $geodirectory->countries->countries; |
|
| 1523 | - asort($countries); |
|
| 1524 | - $selections = (array)get_option($value['id']); |
|
| 1525 | - ?> |
|
| 1520 | + break; |
|
| 1521 | + case 'multi_select_countries' : |
|
| 1522 | + $countries = $geodirectory->countries->countries; |
|
| 1523 | + asort($countries); |
|
| 1524 | + $selections = (array)get_option($value['id']); |
|
| 1525 | + ?> |
|
| 1526 | 1526 | <tr valign="top"> |
| 1527 | 1527 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1528 | 1528 | <td class="forminp"> |
@@ -1530,21 +1530,21 @@ discard block |
||
| 1530 | 1530 | data-placeholder="<?php _e('Choose countries…', 'geodirectory'); ?>"
|
| 1531 | 1531 | title="Country" class="chosen_select"> |
| 1532 | 1532 | <?php |
| 1533 | - if ($countries) foreach ($countries as $key => $val) : |
|
| 1534 | - echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1535 | - endforeach; |
|
| 1536 | - ?> |
|
| 1533 | + if ($countries) foreach ($countries as $key => $val) : |
|
| 1534 | + echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1535 | + endforeach; |
|
| 1536 | + ?> |
|
| 1537 | 1537 | </select> |
| 1538 | 1538 | </td> |
| 1539 | 1539 | </tr> |
| 1540 | 1540 | |
| 1541 | 1541 | <?php |
| 1542 | 1542 | |
| 1543 | - break; |
|
| 1543 | + break; |
|
| 1544 | 1544 | |
| 1545 | - case 'google_analytics' : |
|
| 1546 | - $selections = (array)get_option($value['id']); |
|
| 1547 | - ?> |
|
| 1545 | + case 'google_analytics' : |
|
| 1546 | + $selections = (array)get_option($value['id']); |
|
| 1547 | + ?> |
|
| 1548 | 1548 | <tr valign="top"> |
| 1549 | 1549 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1550 | 1550 | <td class="forminp"> |
@@ -1552,62 +1552,62 @@ discard block |
||
| 1552 | 1552 | |
| 1553 | 1553 | <?php |
| 1554 | 1554 | |
| 1555 | - $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
|
| 1556 | - $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
|
| 1557 | - $state = "&state=123";//any string |
|
| 1558 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1559 | - $response_type = "&response_type=code"; |
|
| 1560 | - $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
|
| 1561 | - $access_type = "&access_type=offline"; |
|
| 1562 | - $approval_prompt = "&approval_prompt=force"; |
|
| 1555 | + $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
|
| 1556 | + $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
|
| 1557 | + $state = "&state=123";//any string |
|
| 1558 | + $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1559 | + $response_type = "&response_type=code"; |
|
| 1560 | + $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
|
| 1561 | + $access_type = "&access_type=offline"; |
|
| 1562 | + $approval_prompt = "&approval_prompt=force"; |
|
| 1563 | 1563 | |
| 1564 | - $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1564 | + $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1565 | 1565 | |
| 1566 | 1566 | |
| 1567 | - if (get_option('geodir_ga_auth_token')) {
|
|
| 1568 | - ?> |
|
| 1567 | + if (get_option('geodir_ga_auth_token')) {
|
|
| 1568 | + ?> |
|
| 1569 | 1569 | <span class="button-primary" |
| 1570 | 1570 | onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
|
| 1571 | 1571 | <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
|
| 1572 | 1572 | <?php |
| 1573 | - global $gd_ga_errors; |
|
| 1574 | - if(!empty($gd_ga_errors)){
|
|
| 1575 | - print_r($gd_ga_errors); |
|
| 1576 | - } |
|
| 1577 | - } else {
|
|
| 1578 | - ?> |
|
| 1573 | + global $gd_ga_errors; |
|
| 1574 | + if(!empty($gd_ga_errors)){
|
|
| 1575 | + print_r($gd_ga_errors); |
|
| 1576 | + } |
|
| 1577 | + } else {
|
|
| 1578 | + ?> |
|
| 1579 | 1579 | <span class="button-primary" |
| 1580 | 1580 | onclick="window.open('<?php echo geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
|
| 1581 | 1581 | <?php |
| 1582 | - } |
|
| 1583 | - ?> |
|
| 1582 | + } |
|
| 1583 | + ?> |
|
| 1584 | 1584 | </td> |
| 1585 | 1585 | </tr> |
| 1586 | 1586 | |
| 1587 | 1587 | <?php |
| 1588 | 1588 | |
| 1589 | 1589 | |
| 1590 | - break; |
|
| 1590 | + break; |
|
| 1591 | 1591 | |
| 1592 | - case 'field_seperator' : |
|
| 1592 | + case 'field_seperator' : |
|
| 1593 | 1593 | |
| 1594 | - ?> |
|
| 1594 | + ?> |
|
| 1595 | 1595 | <tr valign="top"> |
| 1596 | 1596 | <td colspan="2" class="forminp geodir_line_seperator"></td> |
| 1597 | 1597 | </tr> |
| 1598 | 1598 | <?php |
| 1599 | 1599 | |
| 1600 | - break; |
|
| 1600 | + break; |
|
| 1601 | 1601 | |
| 1602 | - endswitch; |
|
| 1602 | + endswitch; |
|
| 1603 | 1603 | |
| 1604 | - endforeach; |
|
| 1604 | + endforeach; |
|
| 1605 | 1605 | |
| 1606 | - if ($first_title === false) {
|
|
| 1607 | - echo "</div>"; |
|
| 1608 | - } |
|
| 1606 | + if ($first_title === false) {
|
|
| 1607 | + echo "</div>"; |
|
| 1608 | + } |
|
| 1609 | 1609 | |
| 1610 | - ?> |
|
| 1610 | + ?> |
|
| 1611 | 1611 | |
| 1612 | 1612 | <script type="text/javascript"> |
| 1613 | 1613 | |
@@ -1667,33 +1667,33 @@ discard block |
||
| 1667 | 1667 | */ |
| 1668 | 1668 | function geodir_post_info_setting() |
| 1669 | 1669 | {
|
| 1670 | - global $post, $post_id; |
|
| 1671 | - |
|
| 1672 | - $post_type = get_post_type(); |
|
| 1673 | - |
|
| 1674 | - $package_info = array(); |
|
| 1675 | - |
|
| 1676 | - $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1677 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename'); |
|
| 1678 | - echo '<div id="geodir_wrapper">'; |
|
| 1679 | - /** |
|
| 1680 | - * Called before the GD custom fields are output in the wp-admin area. |
|
| 1681 | - * |
|
| 1682 | - * @since 1.0.0 |
|
| 1683 | - * @see 'geodir_after_default_field_in_meta_box' |
|
| 1684 | - */ |
|
| 1685 | - do_action('geodir_before_default_field_in_meta_box');
|
|
| 1686 | - //geodir_get_custom_fields_html($package_info->pid,'default',$post_type); |
|
| 1687 | - // to display all fields in one information box |
|
| 1688 | - geodir_get_custom_fields_html($package_info->pid, 'all', $post_type); |
|
| 1689 | - /** |
|
| 1690 | - * Called after the GD custom fields are output in the wp-admin area. |
|
| 1691 | - * |
|
| 1692 | - * @since 1.0.0 |
|
| 1693 | - * @see 'geodir_before_default_field_in_meta_box' |
|
| 1694 | - */ |
|
| 1695 | - do_action('geodir_after_default_field_in_meta_box');
|
|
| 1696 | - echo '</div>'; |
|
| 1670 | + global $post, $post_id; |
|
| 1671 | + |
|
| 1672 | + $post_type = get_post_type(); |
|
| 1673 | + |
|
| 1674 | + $package_info = array(); |
|
| 1675 | + |
|
| 1676 | + $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1677 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename'); |
|
| 1678 | + echo '<div id="geodir_wrapper">'; |
|
| 1679 | + /** |
|
| 1680 | + * Called before the GD custom fields are output in the wp-admin area. |
|
| 1681 | + * |
|
| 1682 | + * @since 1.0.0 |
|
| 1683 | + * @see 'geodir_after_default_field_in_meta_box' |
|
| 1684 | + */ |
|
| 1685 | + do_action('geodir_before_default_field_in_meta_box');
|
|
| 1686 | + //geodir_get_custom_fields_html($package_info->pid,'default',$post_type); |
|
| 1687 | + // to display all fields in one information box |
|
| 1688 | + geodir_get_custom_fields_html($package_info->pid, 'all', $post_type); |
|
| 1689 | + /** |
|
| 1690 | + * Called after the GD custom fields are output in the wp-admin area. |
|
| 1691 | + * |
|
| 1692 | + * @since 1.0.0 |
|
| 1693 | + * @see 'geodir_before_default_field_in_meta_box' |
|
| 1694 | + */ |
|
| 1695 | + do_action('geodir_after_default_field_in_meta_box');
|
|
| 1696 | + echo '</div>'; |
|
| 1697 | 1697 | } |
| 1698 | 1698 | |
| 1699 | 1699 | /** |
@@ -1706,18 +1706,18 @@ discard block |
||
| 1706 | 1706 | */ |
| 1707 | 1707 | function geodir_post_addinfo_setting() |
| 1708 | 1708 | {
|
| 1709 | - global $post, $post_id; |
|
| 1709 | + global $post, $post_id; |
|
| 1710 | 1710 | |
| 1711 | - $post_type = get_post_type(); |
|
| 1711 | + $post_type = get_post_type(); |
|
| 1712 | 1712 | |
| 1713 | - $package_info = array(); |
|
| 1713 | + $package_info = array(); |
|
| 1714 | 1714 | |
| 1715 | - $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1715 | + $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1716 | 1716 | |
| 1717 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename'); |
|
| 1718 | - echo '<div id="geodir_wrapper">'; |
|
| 1719 | - geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type); |
|
| 1720 | - echo '</div>'; |
|
| 1717 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename'); |
|
| 1718 | + echo '<div id="geodir_wrapper">'; |
|
| 1719 | + geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type); |
|
| 1720 | + echo '</div>'; |
|
| 1721 | 1721 | |
| 1722 | 1722 | } |
| 1723 | 1723 | |
@@ -1731,60 +1731,60 @@ discard block |
||
| 1731 | 1731 | */ |
| 1732 | 1732 | function geodir_post_attachments() |
| 1733 | 1733 | {
|
| 1734 | - global $post, $post_id; |
|
| 1734 | + global $post, $post_id; |
|
| 1735 | 1735 | |
| 1736 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
|
| 1736 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
|
| 1737 | 1737 | |
| 1738 | - if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
|
| 1739 | - echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 1740 | - geodir_show_featured_image($post_id, 'thumbnail'); |
|
| 1741 | - } |
|
| 1738 | + if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
|
| 1739 | + echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 1740 | + geodir_show_featured_image($post_id, 'thumbnail'); |
|
| 1741 | + } |
|
| 1742 | 1742 | |
| 1743 | - $image_limit = 0; |
|
| 1743 | + $image_limit = 0; |
|
| 1744 | 1744 | |
| 1745 | - ?> |
|
| 1745 | + ?> |
|
| 1746 | 1746 | |
| 1747 | 1747 | |
| 1748 | 1748 | <h5 class="form_title"> |
| 1749 | 1749 | <?php if ($image_limit != 0 && $image_limit == 1) {
|
| 1750 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 1751 | - } ?> |
|
| 1750 | + echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 1751 | + } ?> |
|
| 1752 | 1752 | <?php if ($image_limit != 0 && $image_limit > 1) {
|
| 1753 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 1754 | - } ?> |
|
| 1753 | + echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 1754 | + } ?> |
|
| 1755 | 1755 | <?php if ($image_limit == 0) {
|
| 1756 | - echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 1757 | - } ?> |
|
| 1756 | + echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 1757 | + } ?> |
|
| 1758 | 1758 | </h5> |
| 1759 | 1759 | |
| 1760 | 1760 | |
| 1761 | 1761 | <?php |
| 1762 | 1762 | |
| 1763 | - $curImages = geodir_get_images($post_id); |
|
| 1764 | - $place_img_array = array(); |
|
| 1763 | + $curImages = geodir_get_images($post_id); |
|
| 1764 | + $place_img_array = array(); |
|
| 1765 | 1765 | |
| 1766 | - if (!empty($curImages)): |
|
| 1767 | - foreach ($curImages as $p_img): |
|
| 1768 | - $place_img_array[] = $p_img->src; |
|
| 1769 | - endforeach; |
|
| 1770 | - endif; |
|
| 1766 | + if (!empty($curImages)): |
|
| 1767 | + foreach ($curImages as $p_img): |
|
| 1768 | + $place_img_array[] = $p_img->src; |
|
| 1769 | + endforeach; |
|
| 1770 | + endif; |
|
| 1771 | 1771 | |
| 1772 | - if (!empty($place_img_array)) |
|
| 1773 | - $curImages = implode(',', $place_img_array);
|
|
| 1772 | + if (!empty($place_img_array)) |
|
| 1773 | + $curImages = implode(',', $place_img_array);
|
|
| 1774 | 1774 | |
| 1775 | 1775 | |
| 1776 | - // adjust values here |
|
| 1777 | - $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
| 1776 | + // adjust values here |
|
| 1777 | + $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
| 1778 | 1778 | |
| 1779 | - $svalue = $curImages; // this will be initial value of the above form field. Image urls. |
|
| 1779 | + $svalue = $curImages; // this will be initial value of the above form field. Image urls. |
|
| 1780 | 1780 | |
| 1781 | - $multiple = true; // allow multiple files upload |
|
| 1781 | + $multiple = true; // allow multiple files upload |
|
| 1782 | 1782 | |
| 1783 | - $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
| 1783 | + $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
| 1784 | 1784 | |
| 1785 | - $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
| 1785 | + $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
| 1786 | 1786 | |
| 1787 | - ?> |
|
| 1787 | + ?> |
|
| 1788 | 1788 | |
| 1789 | 1789 | <div class="gtd-form_row clearfix" id="<?php echo $id; ?>dropbox" style="border:1px solid #999999;padding:5px;text-align:center;"> |
| 1790 | 1790 | <input type="hidden" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="<?php echo $svalue; ?>"/> |
@@ -1826,13 +1826,13 @@ discard block |
||
| 1826 | 1826 | */ |
| 1827 | 1827 | function geodir_action_post_updated($post_ID, $post_after, $post_before) |
| 1828 | 1828 | {
|
| 1829 | - $post_type = get_post_type($post_ID); |
|
| 1829 | + $post_type = get_post_type($post_ID); |
|
| 1830 | 1830 | |
| 1831 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1832 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
|
|
| 1833 | - geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title); |
|
| 1834 | - } |
|
| 1835 | - } |
|
| 1831 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1832 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
|
|
| 1833 | + geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title); |
|
| 1834 | + } |
|
| 1835 | + } |
|
| 1836 | 1836 | } |
| 1837 | 1837 | |
| 1838 | 1838 | /** |
@@ -1847,39 +1847,39 @@ discard block |
||
| 1847 | 1847 | */ |
| 1848 | 1848 | function geodir_notification_add_bcc_option($settings) |
| 1849 | 1849 | {
|
| 1850 | - if (!empty($settings)) {
|
|
| 1851 | - $new_settings = array(); |
|
| 1852 | - foreach ($settings as $setting) {
|
|
| 1853 | - if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
|
|
| 1854 | - $geodir_bcc_listing_published_yes = array( |
|
| 1855 | - 'name' => __('Listing published', 'geodirectory'),
|
|
| 1856 | - 'desc' => __('Yes', 'geodirectory'),
|
|
| 1857 | - 'id' => 'geodir_bcc_listing_published', |
|
| 1858 | - 'std' => 'yes', |
|
| 1859 | - 'type' => 'radio', |
|
| 1860 | - 'value' => '1', |
|
| 1861 | - 'radiogroup' => 'start' |
|
| 1862 | - ); |
|
| 1863 | - |
|
| 1864 | - $geodir_bcc_listing_published_no = array( |
|
| 1865 | - 'name' => __('Listing published', 'geodirectory'),
|
|
| 1866 | - 'desc' => __('No', 'geodirectory'),
|
|
| 1867 | - 'id' => 'geodir_bcc_listing_published', |
|
| 1868 | - 'std' => 'yes', |
|
| 1869 | - 'type' => 'radio', |
|
| 1870 | - 'value' => '0', |
|
| 1871 | - 'radiogroup' => 'end' |
|
| 1872 | - ); |
|
| 1873 | - |
|
| 1874 | - $new_settings[] = $geodir_bcc_listing_published_yes; |
|
| 1875 | - $new_settings[] = $geodir_bcc_listing_published_no; |
|
| 1876 | - } |
|
| 1877 | - $new_settings[] = $setting; |
|
| 1878 | - } |
|
| 1879 | - $settings = $new_settings; |
|
| 1880 | - } |
|
| 1850 | + if (!empty($settings)) {
|
|
| 1851 | + $new_settings = array(); |
|
| 1852 | + foreach ($settings as $setting) {
|
|
| 1853 | + if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
|
|
| 1854 | + $geodir_bcc_listing_published_yes = array( |
|
| 1855 | + 'name' => __('Listing published', 'geodirectory'),
|
|
| 1856 | + 'desc' => __('Yes', 'geodirectory'),
|
|
| 1857 | + 'id' => 'geodir_bcc_listing_published', |
|
| 1858 | + 'std' => 'yes', |
|
| 1859 | + 'type' => 'radio', |
|
| 1860 | + 'value' => '1', |
|
| 1861 | + 'radiogroup' => 'start' |
|
| 1862 | + ); |
|
| 1863 | + |
|
| 1864 | + $geodir_bcc_listing_published_no = array( |
|
| 1865 | + 'name' => __('Listing published', 'geodirectory'),
|
|
| 1866 | + 'desc' => __('No', 'geodirectory'),
|
|
| 1867 | + 'id' => 'geodir_bcc_listing_published', |
|
| 1868 | + 'std' => 'yes', |
|
| 1869 | + 'type' => 'radio', |
|
| 1870 | + 'value' => '0', |
|
| 1871 | + 'radiogroup' => 'end' |
|
| 1872 | + ); |
|
| 1873 | + |
|
| 1874 | + $new_settings[] = $geodir_bcc_listing_published_yes; |
|
| 1875 | + $new_settings[] = $geodir_bcc_listing_published_no; |
|
| 1876 | + } |
|
| 1877 | + $new_settings[] = $setting; |
|
| 1878 | + } |
|
| 1879 | + $settings = $new_settings; |
|
| 1880 | + } |
|
| 1881 | 1881 | |
| 1882 | - return $settings; |
|
| 1882 | + return $settings; |
|
| 1883 | 1883 | } |
| 1884 | 1884 | |
| 1885 | 1885 | |
@@ -1894,19 +1894,19 @@ discard block |
||
| 1894 | 1894 | */ |
| 1895 | 1895 | function get_gd_theme_compat_callback() |
| 1896 | 1896 | {
|
| 1897 | - global $wpdb; |
|
| 1898 | - $themes = get_option('gd_theme_compats');
|
|
| 1899 | - |
|
| 1900 | - if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
|
|
| 1901 | - if (isset($_POST['export'])) {
|
|
| 1902 | - echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']])); |
|
| 1903 | - } else {
|
|
| 1904 | - echo json_encode($themes[$_POST['theme']]); |
|
| 1905 | - } |
|
| 1897 | + global $wpdb; |
|
| 1898 | + $themes = get_option('gd_theme_compats');
|
|
| 1906 | 1899 | |
| 1907 | - } |
|
| 1900 | + if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
|
|
| 1901 | + if (isset($_POST['export'])) {
|
|
| 1902 | + echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']])); |
|
| 1903 | + } else {
|
|
| 1904 | + echo json_encode($themes[$_POST['theme']]); |
|
| 1905 | + } |
|
| 1906 | + |
|
| 1907 | + } |
|
| 1908 | 1908 | |
| 1909 | - die(); |
|
| 1909 | + die(); |
|
| 1910 | 1910 | } |
| 1911 | 1911 | |
| 1912 | 1912 | add_action('wp_ajax_get_gd_theme_compat_import_callback', 'get_gd_theme_compat_import_callback');
|
@@ -1920,20 +1920,20 @@ discard block |
||
| 1920 | 1920 | */ |
| 1921 | 1921 | function get_gd_theme_compat_import_callback() |
| 1922 | 1922 | {
|
| 1923 | - global $wpdb; |
|
| 1924 | - $themes = get_option('gd_theme_compats');
|
|
| 1925 | - if (isset($_POST['theme']) && !empty($_POST['theme'])) {
|
|
| 1926 | - $json = json_decode(stripslashes($_POST['theme']), true); |
|
| 1927 | - if (!empty($json) && is_array($json)) {
|
|
| 1928 | - $key = sanitize_text_field(key($json)); |
|
| 1929 | - $themes[$key] = $json[$key]; |
|
| 1930 | - update_option('gd_theme_compats', $themes);
|
|
| 1931 | - echo $key; |
|
| 1932 | - die(); |
|
| 1933 | - } |
|
| 1934 | - } |
|
| 1935 | - echo '0'; |
|
| 1936 | - die(); |
|
| 1923 | + global $wpdb; |
|
| 1924 | + $themes = get_option('gd_theme_compats');
|
|
| 1925 | + if (isset($_POST['theme']) && !empty($_POST['theme'])) {
|
|
| 1926 | + $json = json_decode(stripslashes($_POST['theme']), true); |
|
| 1927 | + if (!empty($json) && is_array($json)) {
|
|
| 1928 | + $key = sanitize_text_field(key($json)); |
|
| 1929 | + $themes[$key] = $json[$key]; |
|
| 1930 | + update_option('gd_theme_compats', $themes);
|
|
| 1931 | + echo $key; |
|
| 1932 | + die(); |
|
| 1933 | + } |
|
| 1934 | + } |
|
| 1935 | + echo '0'; |
|
| 1936 | + die(); |
|
| 1937 | 1937 | } |
| 1938 | 1938 | |
| 1939 | 1939 | |
@@ -1946,39 +1946,39 @@ discard block |
||
| 1946 | 1946 | */ |
| 1947 | 1947 | function gd_set_theme_compat() |
| 1948 | 1948 | {
|
| 1949 | - global $wpdb; |
|
| 1950 | - $theme = wp_get_theme(); |
|
| 1949 | + global $wpdb; |
|
| 1950 | + $theme = wp_get_theme(); |
|
| 1951 | 1951 | |
| 1952 | - if ($theme->parent()) {
|
|
| 1953 | - $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
|
|
| 1954 | - } else {
|
|
| 1955 | - $theme_name = str_replace(" ", "_", $theme->get('Name'));
|
|
| 1956 | - } |
|
| 1952 | + if ($theme->parent()) {
|
|
| 1953 | + $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
|
|
| 1954 | + } else {
|
|
| 1955 | + $theme_name = str_replace(" ", "_", $theme->get('Name'));
|
|
| 1956 | + } |
|
| 1957 | 1957 | |
| 1958 | - $theme_compats = get_option('gd_theme_compats');
|
|
| 1959 | - $current_compat = get_option('gd_theme_compat');
|
|
| 1960 | - $current_compat = str_replace("_custom", "", $current_compat);
|
|
| 1958 | + $theme_compats = get_option('gd_theme_compats');
|
|
| 1959 | + $current_compat = get_option('gd_theme_compat');
|
|
| 1960 | + $current_compat = str_replace("_custom", "", $current_compat);
|
|
| 1961 | 1961 | |
| 1962 | - if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
|
|
| 1963 | - return; |
|
| 1964 | - }// if already running correct compat then bail |
|
| 1962 | + if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
|
|
| 1963 | + return; |
|
| 1964 | + }// if already running correct compat then bail |
|
| 1965 | 1965 | |
| 1966 | - if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
|
|
| 1967 | - update_option('gd_theme_compat', $theme_name);
|
|
| 1968 | - update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
|
|
| 1966 | + if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
|
|
| 1967 | + update_option('gd_theme_compat', $theme_name);
|
|
| 1968 | + update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
|
|
| 1969 | 1969 | |
| 1970 | - // if there are default options to set then set them |
|
| 1971 | - if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
|
|
| 1970 | + // if there are default options to set then set them |
|
| 1971 | + if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
|
|
| 1972 | 1972 | |
| 1973 | - foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
|
|
| 1974 | - update_option($key, $val); |
|
| 1975 | - } |
|
| 1976 | - } |
|
| 1973 | + foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
|
|
| 1974 | + update_option($key, $val); |
|
| 1975 | + } |
|
| 1976 | + } |
|
| 1977 | 1977 | |
| 1978 | - } else {
|
|
| 1979 | - update_option('gd_theme_compat', '');
|
|
| 1980 | - update_option('theme_compatibility_setting', '');
|
|
| 1981 | - } |
|
| 1978 | + } else {
|
|
| 1979 | + update_option('gd_theme_compat', '');
|
|
| 1980 | + update_option('theme_compatibility_setting', '');
|
|
| 1981 | + } |
|
| 1982 | 1982 | |
| 1983 | 1983 | |
| 1984 | 1984 | } |
@@ -1993,9 +1993,9 @@ discard block |
||
| 1993 | 1993 | */ |
| 1994 | 1994 | function gd_check_avada_compat() |
| 1995 | 1995 | {
|
| 1996 | - if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
|
|
| 1997 | - add_action('admin_notices', 'gd_avada_compat_warning');
|
|
| 1998 | - } |
|
| 1996 | + if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
|
|
| 1997 | + add_action('admin_notices', 'gd_avada_compat_warning');
|
|
| 1998 | + } |
|
| 1999 | 1999 | } |
| 2000 | 2000 | |
| 2001 | 2001 | |
@@ -2008,22 +2008,22 @@ discard block |
||
| 2008 | 2008 | function gd_avada_compat_warning() |
| 2009 | 2009 | {
|
| 2010 | 2010 | |
| 2011 | - /* |
|
| 2011 | + /* |
|
| 2012 | 2012 | $msg_type = error |
| 2013 | 2013 | $msg_type = updated fade |
| 2014 | 2014 | $msg_type = update-nag |
| 2015 | 2015 | */ |
| 2016 | 2016 | |
| 2017 | - $plugin = 'avada-nag'; |
|
| 2018 | - $timestamp = 'avada-nag1234'; |
|
| 2019 | - $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
|
| 2020 | - echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2021 | - echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | - echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2023 | - echo "<p>$message</p>"; |
|
| 2024 | - echo "</div>"; |
|
| 2017 | + $plugin = 'avada-nag'; |
|
| 2018 | + $timestamp = 'avada-nag1234'; |
|
| 2019 | + $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
|
| 2020 | + echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2021 | + echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | + echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2023 | + echo "<p>$message</p>"; |
|
| 2024 | + echo "</div>"; |
|
| 2025 | 2025 | |
| 2026 | - ?> |
|
| 2026 | + ?> |
|
| 2027 | 2027 | <script> |
| 2028 | 2028 | function gdRemoveANotification($plugin, $timestamp) {
|
| 2029 | 2029 | |
@@ -2091,10 +2091,10 @@ discard block |
||
| 2091 | 2091 | */ |
| 2092 | 2092 | function geodir_avada_remove_notification() |
| 2093 | 2093 | {
|
| 2094 | - update_option('avada_nag', TRUE);
|
|
| 2094 | + update_option('avada_nag', TRUE);
|
|
| 2095 | 2095 | |
| 2096 | - // Always die in functions echoing ajax content |
|
| 2097 | - die(); |
|
| 2096 | + // Always die in functions echoing ajax content |
|
| 2097 | + die(); |
|
| 2098 | 2098 | } |
| 2099 | 2099 | |
| 2100 | 2100 | |
@@ -2116,9 +2116,9 @@ discard block |
||
| 2116 | 2116 | global $post, $typenow, $current_screen; |
| 2117 | 2117 | |
| 2118 | 2118 | $post_type = NULL; |
| 2119 | - if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
| 2119 | + if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
| 2120 | 2120 | $post_type = get_post_type($_REQUEST['post']); |
| 2121 | - elseif ($post && isset($post->post_type)) |
|
| 2121 | + elseif ($post && isset($post->post_type)) |
|
| 2122 | 2122 | $post_type = $post->post_type; |
| 2123 | 2123 | elseif ($typenow) |
| 2124 | 2124 | $post_type = $typenow; |
@@ -2153,7 +2153,7 @@ discard block |
||
| 2153 | 2153 | // Don't allow same slug url for listing and location |
| 2154 | 2154 | if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
|
| 2155 | 2155 | $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
|
| 2156 | - wp_redirect($redirect_url); |
|
| 2156 | + wp_redirect($redirect_url); |
|
| 2157 | 2157 | exit; |
| 2158 | 2158 | } |
| 2159 | 2159 | |
@@ -2183,10 +2183,10 @@ discard block |
||
| 2183 | 2183 | * @package GeoDirectory |
| 2184 | 2184 | */ |
| 2185 | 2185 | function geodir_hide_admin_preview_button() {
|
| 2186 | - global $post_type; |
|
| 2187 | - $post_types = geodir_get_posttypes(); |
|
| 2188 | - if(in_array($post_type, $post_types)) |
|
| 2189 | - echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
|
| 2186 | + global $post_type; |
|
| 2187 | + $post_types = geodir_get_posttypes(); |
|
| 2188 | + if(in_array($post_type, $post_types)) |
|
| 2189 | + echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
|
| 2190 | 2190 | } |
| 2191 | 2191 | add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' ); |
| 2192 | 2192 | add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' ); |
@@ -2201,7 +2201,7 @@ discard block |
||
| 2201 | 2201 | */ |
| 2202 | 2202 | function geodir_import_export_tab( $tabs ) {
|
| 2203 | 2203 | $tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) ); |
| 2204 | - return $tabs; |
|
| 2204 | + return $tabs; |
|
| 2205 | 2205 | } |
| 2206 | 2206 | |
| 2207 | 2207 | /** |
@@ -2216,26 +2216,26 @@ discard block |
||
| 2216 | 2216 | function geodir_import_export_page() {
|
| 2217 | 2217 | $nonce = wp_create_nonce( 'geodir_import_export_nonce' ); |
| 2218 | 2218 | $gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv'; |
| 2219 | - /** |
|
| 2220 | - * Filter sample category data csv file url. |
|
| 2221 | - * |
|
| 2222 | - * @since 1.0.0 |
|
| 2223 | - * @package GeoDirectory |
|
| 2224 | - * |
|
| 2225 | - * @param string $gd_cats_sample_csv Sample category data csv file url. |
|
| 2226 | - */ |
|
| 2219 | + /** |
|
| 2220 | + * Filter sample category data csv file url. |
|
| 2221 | + * |
|
| 2222 | + * @since 1.0.0 |
|
| 2223 | + * @package GeoDirectory |
|
| 2224 | + * |
|
| 2225 | + * @param string $gd_cats_sample_csv Sample category data csv file url. |
|
| 2226 | + */ |
|
| 2227 | 2227 | $gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv ); |
| 2228 | 2228 | |
| 2229 | 2229 | $gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv'; |
| 2230 | - /** |
|
| 2231 | - * Filter sample post data csv file url. |
|
| 2232 | - * |
|
| 2233 | - * @since 1.0.0 |
|
| 2234 | - * @package GeoDirectory |
|
| 2235 | - * |
|
| 2236 | - * @param string $gd_posts_sample_csv Sample post data csv file url. |
|
| 2237 | - */ |
|
| 2238 | - $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2230 | + /** |
|
| 2231 | + * Filter sample post data csv file url. |
|
| 2232 | + * |
|
| 2233 | + * @since 1.0.0 |
|
| 2234 | + * @package GeoDirectory |
|
| 2235 | + * |
|
| 2236 | + * @param string $gd_posts_sample_csv Sample post data csv file url. |
|
| 2237 | + */ |
|
| 2238 | + $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2239 | 2239 | |
| 2240 | 2240 | $gd_posttypes = geodir_get_posttypes( 'array' ); |
| 2241 | 2241 | |
@@ -2258,14 +2258,14 @@ discard block |
||
| 2258 | 2258 | $gd_chunksize_options[100000] = 100000; |
| 2259 | 2259 | |
| 2260 | 2260 | /** |
| 2261 | - * Filter max entries per export csv file. |
|
| 2262 | - * |
|
| 2263 | - * @since 1.5.6 |
|
| 2264 | - * @package GeoDirectory |
|
| 2265 | - * |
|
| 2266 | - * @param string $gd_chunksize_options Entries options. |
|
| 2267 | - */ |
|
| 2268 | - $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2261 | + * Filter max entries per export csv file. |
|
| 2262 | + * |
|
| 2263 | + * @since 1.5.6 |
|
| 2264 | + * @package GeoDirectory |
|
| 2265 | + * |
|
| 2266 | + * @param string $gd_chunksize_options Entries options. |
|
| 2267 | + */ |
|
| 2268 | + $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2269 | 2269 | |
| 2270 | 2270 | $gd_chunksize_option = ''; |
| 2271 | 2271 | foreach ($gd_chunksize_options as $value => $title) {
|
@@ -2282,12 +2282,12 @@ discard block |
||
| 2282 | 2282 | <div class="gd-content-heading"> |
| 2283 | 2283 | |
| 2284 | 2284 | <?php |
| 2285 | - ini_set('max_execution_time', 999999);
|
|
| 2286 | - $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2287 | - ini_restore('max_execution_time');
|
|
| 2285 | + ini_set('max_execution_time', 999999);
|
|
| 2286 | + $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2287 | + ini_restore('max_execution_time');
|
|
| 2288 | 2288 | |
| 2289 | - if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2290 | - ?> |
|
| 2289 | + if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2290 | + ?> |
|
| 2291 | 2291 | <div id="gd_ie_reqs" class="metabox-holder"> |
| 2292 | 2292 | <div class="meta-box-sortables ui-sortable"> |
| 2293 | 2293 | <div class="postbox"> |
@@ -2462,7 +2462,7 @@ discard block |
||
| 2462 | 2462 | * Called just after the sample CSV download link. |
| 2463 | 2463 | * |
| 2464 | 2464 | * @since 1.0.0 |
| 2465 | - * @package GeoDirectory |
|
| 2465 | + * @package GeoDirectory |
|
| 2466 | 2466 | */ |
| 2467 | 2467 | do_action('geodir_sample_cats_csv_download_link');
|
| 2468 | 2468 | ?> |
@@ -2547,11 +2547,11 @@ discard block |
||
| 2547 | 2547 | * |
| 2548 | 2548 | * Called after the last setting on the GD > Import & Export page. |
| 2549 | 2549 | * @since 1.4.6 |
| 2550 | - * @package GeoDirectory |
|
| 2550 | + * @package GeoDirectory |
|
| 2551 | 2551 | * |
| 2552 | 2552 | * @param array $gd_posttypes GD post types. |
| 2553 | - * @param array $gd_chunksize_options File chunk size options. |
|
| 2554 | - * @param string $nonce Wordpress security token for GD import & export. |
|
| 2553 | + * @param array $gd_chunksize_options File chunk size options. |
|
| 2554 | + * @param string $nonce Wordpress security token for GD import & export. |
|
| 2555 | 2555 | */ |
| 2556 | 2556 | do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce ); |
| 2557 | 2557 | ?> |
@@ -3238,44 +3238,44 @@ discard block |
||
| 3238 | 3238 | function geodir_init_filesystem() |
| 3239 | 3239 | {
|
| 3240 | 3240 | |
| 3241 | - if(!function_exists('get_filesystem_method')){
|
|
| 3242 | - require_once(ABSPATH."/wp-admin/includes/file.php"); |
|
| 3243 | - } |
|
| 3244 | - $access_type = get_filesystem_method(); |
|
| 3245 | - if ($access_type === 'direct') {
|
|
| 3246 | - /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
|
| 3247 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3248 | - |
|
| 3249 | - /* initialize the API */ |
|
| 3250 | - if (!WP_Filesystem($creds)) {
|
|
| 3251 | - /* any problems and we exit */ |
|
| 3252 | - //return '@@@3'; |
|
| 3253 | - return false; |
|
| 3254 | - } |
|
| 3241 | + if(!function_exists('get_filesystem_method')){
|
|
| 3242 | + require_once(ABSPATH."/wp-admin/includes/file.php"); |
|
| 3243 | + } |
|
| 3244 | + $access_type = get_filesystem_method(); |
|
| 3245 | + if ($access_type === 'direct') {
|
|
| 3246 | + /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
|
| 3247 | + $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3248 | + |
|
| 3249 | + /* initialize the API */ |
|
| 3250 | + if (!WP_Filesystem($creds)) {
|
|
| 3251 | + /* any problems and we exit */ |
|
| 3252 | + //return '@@@3'; |
|
| 3253 | + return false; |
|
| 3254 | + } |
|
| 3255 | 3255 | |
| 3256 | - global $wp_filesystem; |
|
| 3257 | - return $wp_filesystem; |
|
| 3258 | - /* do our file manipulations below */ |
|
| 3259 | - } elseif (defined('FTP_USER')) {
|
|
| 3260 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3256 | + global $wp_filesystem; |
|
| 3257 | + return $wp_filesystem; |
|
| 3258 | + /* do our file manipulations below */ |
|
| 3259 | + } elseif (defined('FTP_USER')) {
|
|
| 3260 | + $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3261 | + |
|
| 3262 | + /* initialize the API */ |
|
| 3263 | + if (!WP_Filesystem($creds)) {
|
|
| 3264 | + /* any problems and we exit */ |
|
| 3265 | + //return '@@@33'; |
|
| 3266 | + return false; |
|
| 3267 | + } |
|
| 3261 | 3268 | |
| 3262 | - /* initialize the API */ |
|
| 3263 | - if (!WP_Filesystem($creds)) {
|
|
| 3264 | - /* any problems and we exit */ |
|
| 3265 | - //return '@@@33'; |
|
| 3266 | - return false; |
|
| 3267 | - } |
|
| 3269 | + global $wp_filesystem; |
|
| 3270 | + //return '@@@1'; |
|
| 3271 | + return $wp_filesystem; |
|
| 3268 | 3272 | |
| 3269 | - global $wp_filesystem; |
|
| 3270 | - //return '@@@1'; |
|
| 3271 | - return $wp_filesystem; |
|
| 3272 | - |
|
| 3273 | - } else {
|
|
| 3274 | - //return '@@@2'; |
|
| 3275 | - /* don't have direct write access. Prompt user with our notice */ |
|
| 3276 | - add_action('admin_notice', 'geodir_filesystem_notice');
|
|
| 3277 | - return false; |
|
| 3278 | - } |
|
| 3273 | + } else {
|
|
| 3274 | + //return '@@@2'; |
|
| 3275 | + /* don't have direct write access. Prompt user with our notice */ |
|
| 3276 | + add_action('admin_notice', 'geodir_filesystem_notice');
|
|
| 3277 | + return false; |
|
| 3278 | + } |
|
| 3279 | 3279 | |
| 3280 | 3280 | } |
| 3281 | 3281 | |
@@ -3293,10 +3293,10 @@ discard block |
||
| 3293 | 3293 | */ |
| 3294 | 3294 | function geodir_filesystem_notice() |
| 3295 | 3295 | { if ( defined( 'DOING_AJAX' ) ){return;}
|
| 3296 | - $access_type = get_filesystem_method(); |
|
| 3297 | - if ($access_type === 'direct') {
|
|
| 3298 | - } elseif (!defined('FTP_USER')) {
|
|
| 3299 | - ?> |
|
| 3296 | + $access_type = get_filesystem_method(); |
|
| 3297 | + if ($access_type === 'direct') {
|
|
| 3298 | + } elseif (!defined('FTP_USER')) {
|
|
| 3299 | + ?> |
|
| 3300 | 3300 | <div class="error"> |
| 3301 | 3301 | <p><?php _e('GeoDirectory does not have access to your filesystem, thing like import/export will not work. Please define your details in wp-config.php as explained here', 'geodirectory'); ?>
|
| 3302 | 3302 | <a target="_blank" href="http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants">http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants</a> |
@@ -3323,1258 +3323,1258 @@ discard block |
||
| 3323 | 3323 | * @return string Json data. |
| 3324 | 3324 | */ |
| 3325 | 3325 | function geodir_ajax_import_export() {
|
| 3326 | - global $wpdb, $plugin_prefix, $current_user, $wp_filesystem; |
|
| 3326 | + global $wpdb, $plugin_prefix, $current_user, $wp_filesystem; |
|
| 3327 | 3327 | |
| 3328 | - error_reporting(0); |
|
| 3328 | + error_reporting(0); |
|
| 3329 | 3329 | |
| 3330 | - $xstart = microtime(true); |
|
| 3330 | + $xstart = microtime(true); |
|
| 3331 | 3331 | |
| 3332 | - // try to set higher limits for import |
|
| 3333 | - $max_input_time = ini_get('max_input_time');
|
|
| 3334 | - $max_execution_time = ini_get('max_execution_time');
|
|
| 3335 | - $memory_limit= ini_get('memory_limit');
|
|
| 3332 | + // try to set higher limits for import |
|
| 3333 | + $max_input_time = ini_get('max_input_time');
|
|
| 3334 | + $max_execution_time = ini_get('max_execution_time');
|
|
| 3335 | + $memory_limit= ini_get('memory_limit');
|
|
| 3336 | 3336 | |
| 3337 | - if(!$max_input_time || $max_input_time<3000){
|
|
| 3338 | - ini_set('max_input_time', 3000);
|
|
| 3339 | - } |
|
| 3337 | + if(!$max_input_time || $max_input_time<3000){
|
|
| 3338 | + ini_set('max_input_time', 3000);
|
|
| 3339 | + } |
|
| 3340 | 3340 | |
| 3341 | - if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3342 | - ini_set('max_execution_time', 3000);
|
|
| 3343 | - } |
|
| 3341 | + if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3342 | + ini_set('max_execution_time', 3000);
|
|
| 3343 | + } |
|
| 3344 | 3344 | |
| 3345 | - if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3346 | - if(str_replace('M','',$memory_limit)<256){
|
|
| 3347 | - ini_set('memory_limit', '256M');
|
|
| 3348 | - } |
|
| 3349 | - } |
|
| 3345 | + if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3346 | + if(str_replace('M','',$memory_limit)<256){
|
|
| 3347 | + ini_set('memory_limit', '256M');
|
|
| 3348 | + } |
|
| 3349 | + } |
|
| 3350 | 3350 | |
| 3351 | - $json = array(); |
|
| 3351 | + $json = array(); |
|
| 3352 | 3352 | |
| 3353 | - if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3354 | - wp_send_json( $json ); |
|
| 3355 | - } |
|
| 3353 | + if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3354 | + wp_send_json( $json ); |
|
| 3355 | + } |
|
| 3356 | 3356 | |
| 3357 | - $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3358 | - $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3359 | - $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3357 | + $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3358 | + $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3359 | + $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3360 | 3360 | |
| 3361 | - if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3362 | - wp_send_json( $json ); |
|
| 3363 | - } |
|
| 3361 | + if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3362 | + wp_send_json( $json ); |
|
| 3363 | + } |
|
| 3364 | 3364 | |
| 3365 | - $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3366 | - $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3367 | - $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
|
| 3368 | - $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3365 | + $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3366 | + $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3367 | + $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
|
| 3368 | + $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3369 | 3369 | |
| 3370 | - $wp_filesystem = geodir_init_filesystem(); |
|
| 3371 | - if (!$wp_filesystem) {
|
|
| 3372 | - $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3373 | - wp_send_json( $json ); |
|
| 3374 | - } |
|
| 3370 | + $wp_filesystem = geodir_init_filesystem(); |
|
| 3371 | + if (!$wp_filesystem) {
|
|
| 3372 | + $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3373 | + wp_send_json( $json ); |
|
| 3374 | + } |
|
| 3375 | 3375 | |
| 3376 | - if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
|
| 3377 | - $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3378 | - wp_send_json( $json ); |
|
| 3379 | - } |
|
| 3376 | + if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
|
| 3377 | + $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3378 | + wp_send_json( $json ); |
|
| 3379 | + } |
|
| 3380 | 3380 | |
| 3381 | - $csv_file_dir = geodir_path_import_export( false ); |
|
| 3382 | - if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3383 | - if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3384 | - $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3385 | - wp_send_json( $json ); |
|
| 3386 | - } |
|
| 3387 | - } |
|
| 3381 | + $csv_file_dir = geodir_path_import_export( false ); |
|
| 3382 | + if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3383 | + if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3384 | + $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3385 | + wp_send_json( $json ); |
|
| 3386 | + } |
|
| 3387 | + } |
|
| 3388 | 3388 | |
| 3389 | - $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 3390 | - $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 3391 | - |
|
| 3392 | - switch ( $task ) {
|
|
| 3393 | - case 'export_posts': {
|
|
| 3394 | - // WPML |
|
| 3395 | - $is_wpml = geodir_is_wpml(); |
|
| 3396 | - if ($is_wpml) {
|
|
| 3397 | - global $sitepress; |
|
| 3398 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3389 | + $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 3390 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 3391 | + |
|
| 3392 | + switch ( $task ) {
|
|
| 3393 | + case 'export_posts': {
|
|
| 3394 | + // WPML |
|
| 3395 | + $is_wpml = geodir_is_wpml(); |
|
| 3396 | + if ($is_wpml) {
|
|
| 3397 | + global $sitepress; |
|
| 3398 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3399 | 3399 | |
| 3400 | - $sitepress->switch_lang('all', true);
|
|
| 3401 | - } |
|
| 3402 | - // WPML |
|
| 3403 | - if ( $post_type == 'gd_event' ) {
|
|
| 3404 | - add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3405 | - } |
|
| 3406 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3400 | + $sitepress->switch_lang('all', true);
|
|
| 3401 | + } |
|
| 3402 | + // WPML |
|
| 3403 | + if ( $post_type == 'gd_event' ) {
|
|
| 3404 | + add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3405 | + } |
|
| 3406 | + $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3407 | 3407 | |
| 3408 | - $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3409 | - if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3410 | - $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3411 | - } |
|
| 3412 | - $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3413 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3414 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3415 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3416 | - $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3408 | + $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3409 | + if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3410 | + $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3411 | + } |
|
| 3412 | + $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3413 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3414 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3415 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3416 | + $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3417 | 3417 | |
| 3418 | - $chunk_file_paths = array(); |
|
| 3418 | + $chunk_file_paths = array(); |
|
| 3419 | 3419 | |
| 3420 | - if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3421 | - $json['total'] = $posts_count; |
|
| 3422 | - // WPML |
|
| 3423 | - if ($is_wpml) {
|
|
| 3424 | - $sitepress->switch_lang($active_lang, true); |
|
| 3425 | - } |
|
| 3426 | - // WPML |
|
| 3427 | - wp_send_json( $json ); |
|
| 3428 | - gd_die(); |
|
| 3429 | - } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3430 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3431 | - $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3432 | - $percentage = min( $percentage, 100 ); |
|
| 3420 | + if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3421 | + $json['total'] = $posts_count; |
|
| 3422 | + // WPML |
|
| 3423 | + if ($is_wpml) {
|
|
| 3424 | + $sitepress->switch_lang($active_lang, true); |
|
| 3425 | + } |
|
| 3426 | + // WPML |
|
| 3427 | + wp_send_json( $json ); |
|
| 3428 | + gd_die(); |
|
| 3429 | + } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3430 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3431 | + $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3432 | + $percentage = min( $percentage, 100 ); |
|
| 3433 | 3433 | |
| 3434 | - $json['percentage'] = $percentage; |
|
| 3435 | - // WPML |
|
| 3436 | - if ($is_wpml) {
|
|
| 3437 | - $sitepress->switch_lang($active_lang, true); |
|
| 3438 | - } |
|
| 3439 | - // WPML |
|
| 3440 | - wp_send_json( $json ); |
|
| 3441 | - gd_die(); |
|
| 3442 | - } else {
|
|
| 3443 | - if ( !$posts_count > 0 ) {
|
|
| 3444 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3445 | - } else {
|
|
| 3446 | - $total_posts = $posts_count; |
|
| 3447 | - if ($chunk_per_page > $total_posts) {
|
|
| 3448 | - $chunk_per_page = $total_posts; |
|
| 3449 | - } |
|
| 3450 | - $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3434 | + $json['percentage'] = $percentage; |
|
| 3435 | + // WPML |
|
| 3436 | + if ($is_wpml) {
|
|
| 3437 | + $sitepress->switch_lang($active_lang, true); |
|
| 3438 | + } |
|
| 3439 | + // WPML |
|
| 3440 | + wp_send_json( $json ); |
|
| 3441 | + gd_die(); |
|
| 3442 | + } else {
|
|
| 3443 | + if ( !$posts_count > 0 ) {
|
|
| 3444 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3445 | + } else {
|
|
| 3446 | + $total_posts = $posts_count; |
|
| 3447 | + if ($chunk_per_page > $total_posts) {
|
|
| 3448 | + $chunk_per_page = $total_posts; |
|
| 3449 | + } |
|
| 3450 | + $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3451 | 3451 | |
| 3452 | - $j = $chunk_page_no; |
|
| 3453 | - $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3452 | + $j = $chunk_page_no; |
|
| 3453 | + $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3454 | 3454 | |
| 3455 | - $per_page = 500; |
|
| 3456 | - if ($per_page > $chunk_per_page) {
|
|
| 3457 | - $per_page = $chunk_per_page; |
|
| 3458 | - } |
|
| 3459 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3455 | + $per_page = 500; |
|
| 3456 | + if ($per_page > $chunk_per_page) {
|
|
| 3457 | + $per_page = $chunk_per_page; |
|
| 3458 | + } |
|
| 3459 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3460 | 3460 | |
| 3461 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3462 | - $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3461 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3462 | + $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3463 | 3463 | |
| 3464 | - $clear = $i == 0 ? true : false; |
|
| 3465 | - geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3466 | - } |
|
| 3464 | + $clear = $i == 0 ? true : false; |
|
| 3465 | + geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3466 | + } |
|
| 3467 | 3467 | |
| 3468 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3469 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3470 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3471 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3472 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3468 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3469 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3470 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3471 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3472 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3473 | 3473 | |
| 3474 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3475 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3476 | - } |
|
| 3474 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3475 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3476 | + } |
|
| 3477 | 3477 | |
| 3478 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3479 | - $json['total'] = $posts_count; |
|
| 3480 | - $json['files'] = $chunk_file_paths; |
|
| 3481 | - } else {
|
|
| 3482 | - if ($j > 1) {
|
|
| 3483 | - $json['total'] = $posts_count; |
|
| 3484 | - $json['files'] = array(); |
|
| 3485 | - } else {
|
|
| 3486 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3487 | - } |
|
| 3488 | - } |
|
| 3489 | - } |
|
| 3490 | - // WPML |
|
| 3491 | - if ($is_wpml) {
|
|
| 3492 | - $sitepress->switch_lang($active_lang, true); |
|
| 3493 | - } |
|
| 3494 | - // WPML |
|
| 3495 | - wp_send_json( $json ); |
|
| 3496 | - } |
|
| 3497 | - } |
|
| 3498 | - break; |
|
| 3499 | - case 'export_cats': {
|
|
| 3500 | - // WPML |
|
| 3501 | - $is_wpml = geodir_is_wpml(); |
|
| 3502 | - if ($is_wpml) {
|
|
| 3503 | - global $sitepress; |
|
| 3504 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3478 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3479 | + $json['total'] = $posts_count; |
|
| 3480 | + $json['files'] = $chunk_file_paths; |
|
| 3481 | + } else {
|
|
| 3482 | + if ($j > 1) {
|
|
| 3483 | + $json['total'] = $posts_count; |
|
| 3484 | + $json['files'] = array(); |
|
| 3485 | + } else {
|
|
| 3486 | + $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3487 | + } |
|
| 3488 | + } |
|
| 3489 | + } |
|
| 3490 | + // WPML |
|
| 3491 | + if ($is_wpml) {
|
|
| 3492 | + $sitepress->switch_lang($active_lang, true); |
|
| 3493 | + } |
|
| 3494 | + // WPML |
|
| 3495 | + wp_send_json( $json ); |
|
| 3496 | + } |
|
| 3497 | + } |
|
| 3498 | + break; |
|
| 3499 | + case 'export_cats': {
|
|
| 3500 | + // WPML |
|
| 3501 | + $is_wpml = geodir_is_wpml(); |
|
| 3502 | + if ($is_wpml) {
|
|
| 3503 | + global $sitepress; |
|
| 3504 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3505 | 3505 | |
| 3506 | - $sitepress->switch_lang('all', true);
|
|
| 3507 | - } |
|
| 3508 | - // WPML |
|
| 3509 | - $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3506 | + $sitepress->switch_lang('all', true);
|
|
| 3507 | + } |
|
| 3508 | + // WPML |
|
| 3509 | + $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3510 | 3510 | |
| 3511 | - $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3512 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3513 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3514 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3515 | - $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3511 | + $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3512 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3513 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3514 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3515 | + $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3516 | 3516 | |
| 3517 | - $chunk_file_paths = array(); |
|
| 3517 | + $chunk_file_paths = array(); |
|
| 3518 | 3518 | |
| 3519 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3520 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3521 | - $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3522 | - $percentage = min( $percentage, 100 ); |
|
| 3519 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3520 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3521 | + $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3522 | + $percentage = min( $percentage, 100 ); |
|
| 3523 | 3523 | |
| 3524 | - $json['percentage'] = $percentage; |
|
| 3525 | - // WPML |
|
| 3526 | - if ($is_wpml) {
|
|
| 3527 | - $sitepress->switch_lang($active_lang, true); |
|
| 3528 | - } |
|
| 3529 | - // WPML |
|
| 3530 | - wp_send_json( $json ); |
|
| 3531 | - } else {
|
|
| 3532 | - if ( !$terms_count > 0 ) {
|
|
| 3533 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3534 | - } else {
|
|
| 3535 | - $total_terms = $terms_count; |
|
| 3536 | - if ($chunk_per_page > $terms_count) {
|
|
| 3537 | - $chunk_per_page = $terms_count; |
|
| 3538 | - } |
|
| 3539 | - $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3524 | + $json['percentage'] = $percentage; |
|
| 3525 | + // WPML |
|
| 3526 | + if ($is_wpml) {
|
|
| 3527 | + $sitepress->switch_lang($active_lang, true); |
|
| 3528 | + } |
|
| 3529 | + // WPML |
|
| 3530 | + wp_send_json( $json ); |
|
| 3531 | + } else {
|
|
| 3532 | + if ( !$terms_count > 0 ) {
|
|
| 3533 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3534 | + } else {
|
|
| 3535 | + $total_terms = $terms_count; |
|
| 3536 | + if ($chunk_per_page > $terms_count) {
|
|
| 3537 | + $chunk_per_page = $terms_count; |
|
| 3538 | + } |
|
| 3539 | + $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3540 | 3540 | |
| 3541 | - $j = $chunk_page_no; |
|
| 3542 | - $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3541 | + $j = $chunk_page_no; |
|
| 3542 | + $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3543 | 3543 | |
| 3544 | - $per_page = 500; |
|
| 3545 | - if ($per_page > $chunk_per_page) {
|
|
| 3546 | - $per_page = $chunk_per_page; |
|
| 3547 | - } |
|
| 3548 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3544 | + $per_page = 500; |
|
| 3545 | + if ($per_page > $chunk_per_page) {
|
|
| 3546 | + $per_page = $chunk_per_page; |
|
| 3547 | + } |
|
| 3548 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3549 | 3549 | |
| 3550 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3551 | - $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3550 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3551 | + $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3552 | 3552 | |
| 3553 | - $clear = $i == 0 ? true : false; |
|
| 3554 | - geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3555 | - } |
|
| 3553 | + $clear = $i == 0 ? true : false; |
|
| 3554 | + geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3555 | + } |
|
| 3556 | 3556 | |
| 3557 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3558 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3559 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3560 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3561 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3557 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3558 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3559 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3560 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3561 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3562 | 3562 | |
| 3563 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3564 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3565 | - } |
|
| 3563 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3564 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3565 | + } |
|
| 3566 | 3566 | |
| 3567 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3568 | - $json['total'] = $terms_count; |
|
| 3569 | - $json['files'] = $chunk_file_paths; |
|
| 3570 | - } else {
|
|
| 3571 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3572 | - } |
|
| 3573 | - } |
|
| 3574 | - // WPML |
|
| 3575 | - if ($is_wpml) {
|
|
| 3576 | - $sitepress->switch_lang($active_lang, true); |
|
| 3577 | - } |
|
| 3578 | - // WPML |
|
| 3579 | - wp_send_json( $json ); |
|
| 3580 | - } |
|
| 3581 | - } |
|
| 3582 | - break; |
|
| 3583 | - case 'export_locations': {
|
|
| 3584 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3585 | - $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3586 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3587 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3588 | - $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3567 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3568 | + $json['total'] = $terms_count; |
|
| 3569 | + $json['files'] = $chunk_file_paths; |
|
| 3570 | + } else {
|
|
| 3571 | + $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3572 | + } |
|
| 3573 | + } |
|
| 3574 | + // WPML |
|
| 3575 | + if ($is_wpml) {
|
|
| 3576 | + $sitepress->switch_lang($active_lang, true); |
|
| 3577 | + } |
|
| 3578 | + // WPML |
|
| 3579 | + wp_send_json( $json ); |
|
| 3580 | + } |
|
| 3581 | + } |
|
| 3582 | + break; |
|
| 3583 | + case 'export_locations': {
|
|
| 3584 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3585 | + $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3586 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3587 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3588 | + $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3589 | 3589 | |
| 3590 | - $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3590 | + $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3591 | 3591 | |
| 3592 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3593 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3594 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3595 | - $percentage = min( $percentage, 100 ); |
|
| 3592 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3593 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3594 | + $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3595 | + $percentage = min( $percentage, 100 ); |
|
| 3596 | 3596 | |
| 3597 | - $json['percentage'] = $percentage; |
|
| 3598 | - wp_send_json( $json ); |
|
| 3599 | - } else {
|
|
| 3600 | - $chunk_file_paths = array(); |
|
| 3597 | + $json['percentage'] = $percentage; |
|
| 3598 | + wp_send_json( $json ); |
|
| 3599 | + } else {
|
|
| 3600 | + $chunk_file_paths = array(); |
|
| 3601 | 3601 | |
| 3602 | - if ( !$items_count > 0 ) {
|
|
| 3603 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3604 | - } else {
|
|
| 3605 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3606 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3602 | + if ( !$items_count > 0 ) {
|
|
| 3603 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3604 | + } else {
|
|
| 3605 | + $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3606 | + $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3607 | 3607 | |
| 3608 | - $j = $chunk_page_no; |
|
| 3609 | - $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3608 | + $j = $chunk_page_no; |
|
| 3609 | + $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3610 | 3610 | |
| 3611 | - $per_page = 500; |
|
| 3612 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3613 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3611 | + $per_page = 500; |
|
| 3612 | + $per_page = min( $per_page, $chunk_per_page ); |
|
| 3613 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3614 | 3614 | |
| 3615 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3616 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3615 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3616 | + $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3617 | 3617 | |
| 3618 | - $clear = $i == 0 ? true : false; |
|
| 3619 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3620 | - } |
|
| 3618 | + $clear = $i == 0 ? true : false; |
|
| 3619 | + geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3620 | + } |
|
| 3621 | 3621 | |
| 3622 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3623 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3624 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3625 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3626 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3622 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3623 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3624 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3625 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3626 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3627 | 3627 | |
| 3628 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3629 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3630 | - } |
|
| 3628 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3629 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3630 | + } |
|
| 3631 | 3631 | |
| 3632 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3633 | - $json['total'] = $items_count; |
|
| 3634 | - $json['files'] = $chunk_file_paths; |
|
| 3635 | - } else {
|
|
| 3636 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3637 | - } |
|
| 3638 | - } |
|
| 3639 | - wp_send_json( $json ); |
|
| 3640 | - } |
|
| 3641 | - } |
|
| 3642 | - break; |
|
| 3643 | - case 'export_hoods': {
|
|
| 3644 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3645 | - $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3646 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3647 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3648 | - $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3632 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3633 | + $json['total'] = $items_count; |
|
| 3634 | + $json['files'] = $chunk_file_paths; |
|
| 3635 | + } else {
|
|
| 3636 | + $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3637 | + } |
|
| 3638 | + } |
|
| 3639 | + wp_send_json( $json ); |
|
| 3640 | + } |
|
| 3641 | + } |
|
| 3642 | + break; |
|
| 3643 | + case 'export_hoods': {
|
|
| 3644 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3645 | + $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3646 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3647 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3648 | + $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3649 | 3649 | |
| 3650 | - $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3650 | + $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3651 | 3651 | |
| 3652 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3653 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3654 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3655 | - $percentage = min( $percentage, 100 ); |
|
| 3652 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3653 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3654 | + $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3655 | + $percentage = min( $percentage, 100 ); |
|
| 3656 | 3656 | |
| 3657 | - $json['percentage'] = $percentage; |
|
| 3658 | - wp_send_json( $json ); |
|
| 3659 | - } else {
|
|
| 3660 | - $chunk_file_paths = array(); |
|
| 3657 | + $json['percentage'] = $percentage; |
|
| 3658 | + wp_send_json( $json ); |
|
| 3659 | + } else {
|
|
| 3660 | + $chunk_file_paths = array(); |
|
| 3661 | 3661 | |
| 3662 | - if ( !$items_count > 0 ) {
|
|
| 3663 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3664 | - } else {
|
|
| 3665 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3666 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3662 | + if ( !$items_count > 0 ) {
|
|
| 3663 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3664 | + } else {
|
|
| 3665 | + $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3666 | + $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3667 | 3667 | |
| 3668 | - $j = $chunk_page_no; |
|
| 3669 | - $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3668 | + $j = $chunk_page_no; |
|
| 3669 | + $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3670 | 3670 | |
| 3671 | - $per_page = 500; |
|
| 3672 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3673 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3671 | + $per_page = 500; |
|
| 3672 | + $per_page = min( $per_page, $chunk_per_page ); |
|
| 3673 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3674 | 3674 | |
| 3675 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3676 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3675 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3676 | + $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3677 | 3677 | |
| 3678 | - $clear = $i == 0 ? true : false; |
|
| 3679 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3680 | - } |
|
| 3678 | + $clear = $i == 0 ? true : false; |
|
| 3679 | + geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3680 | + } |
|
| 3681 | 3681 | |
| 3682 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3683 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3684 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3685 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3686 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3682 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3683 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3684 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3685 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3686 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3687 | 3687 | |
| 3688 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3689 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3690 | - } |
|
| 3688 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3689 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3690 | + } |
|
| 3691 | 3691 | |
| 3692 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3693 | - $json['total'] = $items_count; |
|
| 3694 | - $json['files'] = $chunk_file_paths; |
|
| 3695 | - } else {
|
|
| 3696 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3697 | - } |
|
| 3698 | - } |
|
| 3699 | - wp_send_json( $json ); |
|
| 3700 | - } |
|
| 3701 | - } |
|
| 3702 | - break; |
|
| 3703 | - case 'prepare_import': |
|
| 3704 | - case 'import_cat': |
|
| 3705 | - case 'import_post': |
|
| 3706 | - case 'import_loc': |
|
| 3707 | - case 'import_hood': {
|
|
| 3708 | - // WPML |
|
| 3709 | - $is_wpml = geodir_is_wpml(); |
|
| 3710 | - if ($is_wpml) {
|
|
| 3711 | - global $sitepress; |
|
| 3712 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3713 | - } |
|
| 3714 | - // WPML |
|
| 3692 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3693 | + $json['total'] = $items_count; |
|
| 3694 | + $json['files'] = $chunk_file_paths; |
|
| 3695 | + } else {
|
|
| 3696 | + $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3697 | + } |
|
| 3698 | + } |
|
| 3699 | + wp_send_json( $json ); |
|
| 3700 | + } |
|
| 3701 | + } |
|
| 3702 | + break; |
|
| 3703 | + case 'prepare_import': |
|
| 3704 | + case 'import_cat': |
|
| 3705 | + case 'import_post': |
|
| 3706 | + case 'import_loc': |
|
| 3707 | + case 'import_hood': {
|
|
| 3708 | + // WPML |
|
| 3709 | + $is_wpml = geodir_is_wpml(); |
|
| 3710 | + if ($is_wpml) {
|
|
| 3711 | + global $sitepress; |
|
| 3712 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3713 | + } |
|
| 3714 | + // WPML |
|
| 3715 | 3715 | |
| 3716 | - ini_set( 'auto_detect_line_endings', true ); |
|
| 3716 | + ini_set( 'auto_detect_line_endings', true ); |
|
| 3717 | 3717 | |
| 3718 | - $uploads = wp_upload_dir(); |
|
| 3719 | - $uploads_dir = $uploads['path']; |
|
| 3720 | - $uploads_subdir = $uploads['subdir']; |
|
| 3718 | + $uploads = wp_upload_dir(); |
|
| 3719 | + $uploads_dir = $uploads['path']; |
|
| 3720 | + $uploads_subdir = $uploads['subdir']; |
|
| 3721 | 3721 | |
| 3722 | - $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 3723 | - $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3722 | + $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 3723 | + $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3724 | 3724 | |
| 3725 | - $csv_file_arr = explode( '/', $csv_file ); |
|
| 3726 | - $csv_filename = end( $csv_file_arr ); |
|
| 3727 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 3725 | + $csv_file_arr = explode( '/', $csv_file ); |
|
| 3726 | + $csv_filename = end( $csv_file_arr ); |
|
| 3727 | + $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 3728 | 3728 | |
| 3729 | - $json['file'] = $csv_file; |
|
| 3730 | - $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 3731 | - $file = array(); |
|
| 3729 | + $json['file'] = $csv_file; |
|
| 3730 | + $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 3731 | + $file = array(); |
|
| 3732 | 3732 | |
| 3733 | - if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 3734 | - $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 3733 | + if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 3734 | + $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 3735 | 3735 | |
| 3736 | - if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
|
| 3737 | - $json['error'] = NULL; |
|
| 3738 | - $json['rows'] = 0; |
|
| 3736 | + if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
|
| 3737 | + $json['error'] = NULL; |
|
| 3738 | + $json['rows'] = 0; |
|
| 3739 | 3739 | |
| 3740 | - $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
|
| 3741 | - setlocale(LC_ALL, 'en_US.UTF-8'); |
|
| 3742 | - if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 3743 | - while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 3744 | - if ( !empty( $data ) ) {
|
|
| 3745 | - $file[] = $data; |
|
| 3746 | - } |
|
| 3747 | - } |
|
| 3748 | - fclose($handle); |
|
| 3749 | - } |
|
| 3750 | - setlocale(LC_ALL, $lc_all); |
|
| 3740 | + $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
|
| 3741 | + setlocale(LC_ALL, 'en_US.UTF-8'); |
|
| 3742 | + if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 3743 | + while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 3744 | + if ( !empty( $data ) ) {
|
|
| 3745 | + $file[] = $data; |
|
| 3746 | + } |
|
| 3747 | + } |
|
| 3748 | + fclose($handle); |
|
| 3749 | + } |
|
| 3750 | + setlocale(LC_ALL, $lc_all); |
|
| 3751 | 3751 | |
| 3752 | - $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
| 3752 | + $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
| 3753 | 3753 | |
| 3754 | - if (!$json['rows'] > 0) {
|
|
| 3755 | - $json['error'] = __('No data found in csv file.', 'geodirectory');
|
|
| 3756 | - } |
|
| 3757 | - } else {
|
|
| 3758 | - wp_send_json( $json ); |
|
| 3759 | - } |
|
| 3760 | - } else {
|
|
| 3761 | - wp_send_json( $json ); |
|
| 3762 | - } |
|
| 3754 | + if (!$json['rows'] > 0) {
|
|
| 3755 | + $json['error'] = __('No data found in csv file.', 'geodirectory');
|
|
| 3756 | + } |
|
| 3757 | + } else {
|
|
| 3758 | + wp_send_json( $json ); |
|
| 3759 | + } |
|
| 3760 | + } else {
|
|
| 3761 | + wp_send_json( $json ); |
|
| 3762 | + } |
|
| 3763 | 3763 | |
| 3764 | - if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 3765 | - wp_send_json( $json ); |
|
| 3766 | - } |
|
| 3764 | + if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 3765 | + wp_send_json( $json ); |
|
| 3766 | + } |
|
| 3767 | 3767 | |
| 3768 | - $total = $json['rows']; |
|
| 3769 | - $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 3770 | - $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 3768 | + $total = $json['rows']; |
|
| 3769 | + $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 3770 | + $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 3771 | 3771 | |
| 3772 | - $count = $limit; |
|
| 3772 | + $count = $limit; |
|
| 3773 | 3773 | |
| 3774 | - if ($count < $total) {
|
|
| 3775 | - $count = $processed + $count; |
|
| 3776 | - if ($count > $total) {
|
|
| 3777 | - $count = $total; |
|
| 3778 | - } |
|
| 3779 | - } else {
|
|
| 3780 | - $count = $total; |
|
| 3781 | - } |
|
| 3774 | + if ($count < $total) {
|
|
| 3775 | + $count = $processed + $count; |
|
| 3776 | + if ($count > $total) {
|
|
| 3777 | + $count = $total; |
|
| 3778 | + } |
|
| 3779 | + } else {
|
|
| 3780 | + $count = $total; |
|
| 3781 | + } |
|
| 3782 | 3782 | |
| 3783 | - $created = 0; |
|
| 3784 | - $updated = 0; |
|
| 3785 | - $skipped = 0; |
|
| 3786 | - $invalid = 0; |
|
| 3787 | - $invalid_addr = 0; |
|
| 3788 | - $images = 0; |
|
| 3783 | + $created = 0; |
|
| 3784 | + $updated = 0; |
|
| 3785 | + $skipped = 0; |
|
| 3786 | + $invalid = 0; |
|
| 3787 | + $invalid_addr = 0; |
|
| 3788 | + $images = 0; |
|
| 3789 | 3789 | |
| 3790 | - $gd_post_info = array(); |
|
| 3791 | - $countpost = 0; |
|
| 3790 | + $gd_post_info = array(); |
|
| 3791 | + $countpost = 0; |
|
| 3792 | 3792 | |
| 3793 | - $post_types = geodir_get_posttypes(); |
|
| 3793 | + $post_types = geodir_get_posttypes(); |
|
| 3794 | 3794 | |
| 3795 | - if ( $task == 'import_cat' ) {
|
|
| 3796 | - if (!empty($file)) {
|
|
| 3797 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 3795 | + if ( $task == 'import_cat' ) {
|
|
| 3796 | + if (!empty($file)) {
|
|
| 3797 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 3798 | 3798 | |
| 3799 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 3800 | - $json['error'] = CSV_INVAILD_FILE; |
|
| 3801 | - wp_send_json( $json ); |
|
| 3802 | - exit; |
|
| 3803 | - } |
|
| 3799 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 3800 | + $json['error'] = CSV_INVAILD_FILE; |
|
| 3801 | + wp_send_json( $json ); |
|
| 3802 | + exit; |
|
| 3803 | + } |
|
| 3804 | 3804 | |
| 3805 | - $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
|
|
| 3805 | + $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
|
|
| 3806 | 3806 | |
| 3807 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 3808 | - $index = $processed + $i; |
|
| 3807 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 3808 | + $index = $processed + $i; |
|
| 3809 | 3809 | |
| 3810 | - if (isset($file[$index])) {
|
|
| 3811 | - $row = $file[$index]; |
|
| 3812 | - $row = array_map( 'trim', $row ); |
|
| 3813 | - //$row = array_map( 'utf8_encode', $row ); |
|
| 3810 | + if (isset($file[$index])) {
|
|
| 3811 | + $row = $file[$index]; |
|
| 3812 | + $row = array_map( 'trim', $row ); |
|
| 3813 | + //$row = array_map( 'utf8_encode', $row ); |
|
| 3814 | 3814 | |
| 3815 | - $cat_id = ''; |
|
| 3816 | - $cat_name = ''; |
|
| 3817 | - $cat_slug = ''; |
|
| 3818 | - $cat_posttype = ''; |
|
| 3819 | - $cat_parent = ''; |
|
| 3820 | - $cat_description = ''; |
|
| 3821 | - $cat_schema = ''; |
|
| 3822 | - $cat_top_description = ''; |
|
| 3823 | - $cat_image = ''; |
|
| 3824 | - $cat_icon = ''; |
|
| 3825 | - $cat_language = ''; |
|
| 3826 | - $cat_id_original = ''; |
|
| 3815 | + $cat_id = ''; |
|
| 3816 | + $cat_name = ''; |
|
| 3817 | + $cat_slug = ''; |
|
| 3818 | + $cat_posttype = ''; |
|
| 3819 | + $cat_parent = ''; |
|
| 3820 | + $cat_description = ''; |
|
| 3821 | + $cat_schema = ''; |
|
| 3822 | + $cat_top_description = ''; |
|
| 3823 | + $cat_image = ''; |
|
| 3824 | + $cat_icon = ''; |
|
| 3825 | + $cat_language = ''; |
|
| 3826 | + $cat_id_original = ''; |
|
| 3827 | 3827 | |
| 3828 | - $c = 0; |
|
| 3829 | - foreach ($columns as $column ) {
|
|
| 3830 | - if ( $column == 'cat_id' ) {
|
|
| 3831 | - $cat_id = (int)$row[$c]; |
|
| 3832 | - } else if ( $column == 'cat_name' ) {
|
|
| 3833 | - $cat_name = $row[$c]; |
|
| 3834 | - } else if ( $column == 'cat_slug' ) {
|
|
| 3835 | - $cat_slug = $row[$c]; |
|
| 3836 | - } else if ( $column == 'cat_posttype' ) {
|
|
| 3837 | - $cat_posttype = $row[$c]; |
|
| 3838 | - } else if ( $column == 'cat_parent' ) {
|
|
| 3839 | - $cat_parent = trim($row[$c]); |
|
| 3840 | - } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 3841 | - $cat_schema = $row[$c]; |
|
| 3842 | - } else if ( $column == 'cat_description' ) {
|
|
| 3843 | - $cat_description = $row[$c]; |
|
| 3844 | - } else if ( $column == 'cat_top_description' ) {
|
|
| 3845 | - $cat_top_description = $row[$c]; |
|
| 3846 | - } else if ( $column == 'cat_image' ) {
|
|
| 3847 | - $cat_image = $row[$c]; |
|
| 3848 | - } else if ( $column == 'cat_icon' ) {
|
|
| 3849 | - $cat_icon = $row[$c]; |
|
| 3850 | - } |
|
| 3851 | - // WPML |
|
| 3852 | - if ( $is_wpml ) {
|
|
| 3853 | - if ( $column == 'cat_language' ) {
|
|
| 3854 | - $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 3855 | - } else if ( $column == 'cat_id_original' ) {
|
|
| 3856 | - $cat_id_original = (int)$row[$c]; |
|
| 3857 | - } |
|
| 3858 | - } |
|
| 3859 | - // WPML |
|
| 3860 | - $c++; |
|
| 3861 | - } |
|
| 3828 | + $c = 0; |
|
| 3829 | + foreach ($columns as $column ) {
|
|
| 3830 | + if ( $column == 'cat_id' ) {
|
|
| 3831 | + $cat_id = (int)$row[$c]; |
|
| 3832 | + } else if ( $column == 'cat_name' ) {
|
|
| 3833 | + $cat_name = $row[$c]; |
|
| 3834 | + } else if ( $column == 'cat_slug' ) {
|
|
| 3835 | + $cat_slug = $row[$c]; |
|
| 3836 | + } else if ( $column == 'cat_posttype' ) {
|
|
| 3837 | + $cat_posttype = $row[$c]; |
|
| 3838 | + } else if ( $column == 'cat_parent' ) {
|
|
| 3839 | + $cat_parent = trim($row[$c]); |
|
| 3840 | + } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 3841 | + $cat_schema = $row[$c]; |
|
| 3842 | + } else if ( $column == 'cat_description' ) {
|
|
| 3843 | + $cat_description = $row[$c]; |
|
| 3844 | + } else if ( $column == 'cat_top_description' ) {
|
|
| 3845 | + $cat_top_description = $row[$c]; |
|
| 3846 | + } else if ( $column == 'cat_image' ) {
|
|
| 3847 | + $cat_image = $row[$c]; |
|
| 3848 | + } else if ( $column == 'cat_icon' ) {
|
|
| 3849 | + $cat_icon = $row[$c]; |
|
| 3850 | + } |
|
| 3851 | + // WPML |
|
| 3852 | + if ( $is_wpml ) {
|
|
| 3853 | + if ( $column == 'cat_language' ) {
|
|
| 3854 | + $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 3855 | + } else if ( $column == 'cat_id_original' ) {
|
|
| 3856 | + $cat_id_original = (int)$row[$c]; |
|
| 3857 | + } |
|
| 3858 | + } |
|
| 3859 | + // WPML |
|
| 3860 | + $c++; |
|
| 3861 | + } |
|
| 3862 | 3862 | |
| 3863 | - if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 3864 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 3863 | + if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 3864 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 3865 | 3865 | |
| 3866 | - $invalid++; |
|
| 3867 | - continue; |
|
| 3868 | - } |
|
| 3866 | + $invalid++; |
|
| 3867 | + continue; |
|
| 3868 | + } |
|
| 3869 | 3869 | |
| 3870 | - // WPML |
|
| 3871 | - if ($is_wpml && $cat_language != '') {
|
|
| 3872 | - $sitepress->switch_lang($cat_language, true); |
|
| 3873 | - } |
|
| 3874 | - // WPML |
|
| 3870 | + // WPML |
|
| 3871 | + if ($is_wpml && $cat_language != '') {
|
|
| 3872 | + $sitepress->switch_lang($cat_language, true); |
|
| 3873 | + } |
|
| 3874 | + // WPML |
|
| 3875 | 3875 | |
| 3876 | - $term_data = array(); |
|
| 3877 | - $term_data['name'] = $cat_name; |
|
| 3878 | - $term_data['slug'] = $cat_slug; |
|
| 3879 | - $term_data['description'] = $cat_description; |
|
| 3880 | - $term_data['cat_schema'] = $cat_schema; |
|
| 3881 | - $term_data['top_description'] = $cat_top_description; |
|
| 3882 | - $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 3883 | - $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 3876 | + $term_data = array(); |
|
| 3877 | + $term_data['name'] = $cat_name; |
|
| 3878 | + $term_data['slug'] = $cat_slug; |
|
| 3879 | + $term_data['description'] = $cat_description; |
|
| 3880 | + $term_data['cat_schema'] = $cat_schema; |
|
| 3881 | + $term_data['top_description'] = $cat_top_description; |
|
| 3882 | + $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 3883 | + $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 3884 | 3884 | |
| 3885 | - //$term_data = array_map( 'utf8_encode', $term_data ); |
|
| 3885 | + //$term_data = array_map( 'utf8_encode', $term_data ); |
|
| 3886 | 3886 | |
| 3887 | - $taxonomy = $cat_posttype . 'category'; |
|
| 3887 | + $taxonomy = $cat_posttype . 'category'; |
|
| 3888 | 3888 | |
| 3889 | - $term_data['taxonomy'] = $taxonomy; |
|
| 3889 | + $term_data['taxonomy'] = $taxonomy; |
|
| 3890 | 3890 | |
| 3891 | - $term_parent_id = 0; |
|
| 3892 | - if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 3893 | - $term_parent = ''; |
|
| 3891 | + $term_parent_id = 0; |
|
| 3892 | + if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 3893 | + $term_parent = ''; |
|
| 3894 | 3894 | |
| 3895 | - if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 3896 | - // |
|
| 3897 | - } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 3898 | - // |
|
| 3899 | - } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 3900 | - // |
|
| 3901 | - } else {
|
|
| 3902 | - $term_parent_data = array(); |
|
| 3903 | - $term_parent_data['name'] = $cat_parent; |
|
| 3904 | - //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
|
| 3905 | - $term_parent_data['taxonomy'] = $taxonomy; |
|
| 3895 | + if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 3896 | + // |
|
| 3897 | + } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 3898 | + // |
|
| 3899 | + } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 3900 | + // |
|
| 3901 | + } else {
|
|
| 3902 | + $term_parent_data = array(); |
|
| 3903 | + $term_parent_data['name'] = $cat_parent; |
|
| 3904 | + //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
|
| 3905 | + $term_parent_data['taxonomy'] = $taxonomy; |
|
| 3906 | 3906 | |
| 3907 | - $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 3908 | - } |
|
| 3907 | + $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 3908 | + } |
|
| 3909 | 3909 | |
| 3910 | - if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 3911 | - $term_parent_id = (int)$term_parent->term_id; |
|
| 3912 | - } |
|
| 3913 | - } |
|
| 3914 | - $term_data['parent'] = (int)$term_parent_id; |
|
| 3910 | + if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 3911 | + $term_parent_id = (int)$term_parent->term_id; |
|
| 3912 | + } |
|
| 3913 | + } |
|
| 3914 | + $term_data['parent'] = (int)$term_parent_id; |
|
| 3915 | 3915 | |
| 3916 | - $term_id = NULL; |
|
| 3917 | - if ( $import_choice == 'update' ) {
|
|
| 3918 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3919 | - $term_data['term_id'] = $term['term_id']; |
|
| 3916 | + $term_id = NULL; |
|
| 3917 | + if ( $import_choice == 'update' ) {
|
|
| 3918 | + if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3919 | + $term_data['term_id'] = $term['term_id']; |
|
| 3920 | 3920 | |
| 3921 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3922 | - $updated++; |
|
| 3923 | - } else {
|
|
| 3924 | - $invalid++; |
|
| 3925 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3926 | - } |
|
| 3927 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3928 | - $term_data['term_id'] = $term['term_id']; |
|
| 3921 | + if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3922 | + $updated++; |
|
| 3923 | + } else {
|
|
| 3924 | + $invalid++; |
|
| 3925 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3926 | + } |
|
| 3927 | + } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3928 | + $term_data['term_id'] = $term['term_id']; |
|
| 3929 | 3929 | |
| 3930 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3931 | - $updated++; |
|
| 3932 | - } else {
|
|
| 3933 | - $invalid++; |
|
| 3934 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3935 | - } |
|
| 3936 | - } else {
|
|
| 3937 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3938 | - $created++; |
|
| 3939 | - } else {
|
|
| 3940 | - $invalid++; |
|
| 3941 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3942 | - } |
|
| 3943 | - } |
|
| 3944 | - } else if ( $import_choice == 'skip' ) {
|
|
| 3945 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3946 | - $skipped++; |
|
| 3947 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3948 | - $skipped++; |
|
| 3949 | - } else {
|
|
| 3950 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3951 | - $created++; |
|
| 3952 | - } else {
|
|
| 3953 | - $invalid++; |
|
| 3954 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3955 | - } |
|
| 3956 | - } |
|
| 3957 | - } else {
|
|
| 3958 | - $invalid++; |
|
| 3959 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3960 | - } |
|
| 3930 | + if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3931 | + $updated++; |
|
| 3932 | + } else {
|
|
| 3933 | + $invalid++; |
|
| 3934 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3935 | + } |
|
| 3936 | + } else {
|
|
| 3937 | + if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3938 | + $created++; |
|
| 3939 | + } else {
|
|
| 3940 | + $invalid++; |
|
| 3941 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3942 | + } |
|
| 3943 | + } |
|
| 3944 | + } else if ( $import_choice == 'skip' ) {
|
|
| 3945 | + if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3946 | + $skipped++; |
|
| 3947 | + } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3948 | + $skipped++; |
|
| 3949 | + } else {
|
|
| 3950 | + if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3951 | + $created++; |
|
| 3952 | + } else {
|
|
| 3953 | + $invalid++; |
|
| 3954 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3955 | + } |
|
| 3956 | + } |
|
| 3957 | + } else {
|
|
| 3958 | + $invalid++; |
|
| 3959 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3960 | + } |
|
| 3961 | 3961 | |
| 3962 | - if ( $term_id ) {
|
|
| 3963 | - // WPML |
|
| 3964 | - if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
|
| 3965 | - $wpml_element_type = 'tax_' . $taxonomy; |
|
| 3966 | - $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 3967 | - $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 3968 | - |
|
| 3969 | - $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 3962 | + if ( $term_id ) {
|
|
| 3963 | + // WPML |
|
| 3964 | + if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
|
| 3965 | + $wpml_element_type = 'tax_' . $taxonomy; |
|
| 3966 | + $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 3967 | + $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 3968 | + |
|
| 3969 | + $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 3970 | 3970 | |
| 3971 | - $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 3972 | - } |
|
| 3973 | - // WPML |
|
| 3971 | + $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 3972 | + } |
|
| 3973 | + // WPML |
|
| 3974 | 3974 | |
| 3975 | - if ( isset( $term_data['top_description'] ) ) {
|
|
| 3976 | - update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 3977 | - } |
|
| 3975 | + if ( isset( $term_data['top_description'] ) ) {
|
|
| 3976 | + update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 3977 | + } |
|
| 3978 | 3978 | |
| 3979 | - if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 3980 | - update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 3981 | - } |
|
| 3979 | + if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 3980 | + update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 3981 | + } |
|
| 3982 | 3982 | |
| 3983 | - $attachment = false; |
|
| 3984 | - if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 3985 | - $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 3986 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 3983 | + $attachment = false; |
|
| 3984 | + if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 3985 | + $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 3986 | + $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 3987 | 3987 | |
| 3988 | - if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 3989 | - $attachment = true; |
|
| 3990 | - update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 3991 | - } |
|
| 3992 | - } |
|
| 3988 | + if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 3989 | + $attachment = true; |
|
| 3990 | + update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 3991 | + } |
|
| 3992 | + } |
|
| 3993 | 3993 | |
| 3994 | - if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 3995 | - $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 3996 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 3997 | - |
|
| 3998 | - if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 3999 | - $attachment = true; |
|
| 4000 | - update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 4001 | - } |
|
| 4002 | - } |
|
| 3994 | + if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 3995 | + $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 3996 | + $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 3997 | + |
|
| 3998 | + if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 3999 | + $attachment = true; |
|
| 4000 | + update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 4001 | + } |
|
| 4002 | + } |
|
| 4003 | 4003 | |
| 4004 | - if ( $attachment ) {
|
|
| 4005 | - $images++; |
|
| 4006 | - } |
|
| 4007 | - } |
|
| 4004 | + if ( $attachment ) {
|
|
| 4005 | + $images++; |
|
| 4006 | + } |
|
| 4007 | + } |
|
| 4008 | 4008 | |
| 4009 | - // WPML |
|
| 4010 | - if ($is_wpml && $cat_language != '') {
|
|
| 4011 | - $sitepress->switch_lang($active_lang, true); |
|
| 4012 | - } |
|
| 4013 | - // WPML |
|
| 4014 | - } |
|
| 4015 | - } |
|
| 4016 | - } |
|
| 4009 | + // WPML |
|
| 4010 | + if ($is_wpml && $cat_language != '') {
|
|
| 4011 | + $sitepress->switch_lang($active_lang, true); |
|
| 4012 | + } |
|
| 4013 | + // WPML |
|
| 4014 | + } |
|
| 4015 | + } |
|
| 4016 | + } |
|
| 4017 | 4017 | |
| 4018 | - $json = array(); |
|
| 4019 | - $json['processed'] = $limit; |
|
| 4020 | - $json['created'] = $created; |
|
| 4021 | - $json['updated'] = $updated; |
|
| 4022 | - $json['skipped'] = $skipped; |
|
| 4023 | - $json['invalid'] = $invalid; |
|
| 4024 | - $json['images'] = $images; |
|
| 4018 | + $json = array(); |
|
| 4019 | + $json['processed'] = $limit; |
|
| 4020 | + $json['created'] = $created; |
|
| 4021 | + $json['updated'] = $updated; |
|
| 4022 | + $json['skipped'] = $skipped; |
|
| 4023 | + $json['invalid'] = $invalid; |
|
| 4024 | + $json['images'] = $images; |
|
| 4025 | 4025 | |
| 4026 | - wp_send_json( $json ); |
|
| 4027 | - exit; |
|
| 4028 | - } else if ( $task == 'import_post' ) {
|
|
| 4029 | - $xtimings['###1'] = microtime(true)-$xstart; |
|
| 4030 | - //run some stuff to make the import quicker |
|
| 4031 | - wp_defer_term_counting( true ); |
|
| 4032 | - wp_defer_comment_counting( true ); |
|
| 4033 | - $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4026 | + wp_send_json( $json ); |
|
| 4027 | + exit; |
|
| 4028 | + } else if ( $task == 'import_post' ) {
|
|
| 4029 | + $xtimings['###1'] = microtime(true)-$xstart; |
|
| 4030 | + //run some stuff to make the import quicker |
|
| 4031 | + wp_defer_term_counting( true ); |
|
| 4032 | + wp_defer_comment_counting( true ); |
|
| 4033 | + $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4034 | 4034 | // |
| 4035 | 4035 | // remove_all_actions('publish_post');
|
| 4036 | 4036 | // remove_all_actions('transition_post_status');
|
| 4037 | 4037 | // remove_all_actions('publish_future_post');
|
| 4038 | 4038 | |
| 4039 | - if (!empty($file)) {
|
|
| 4040 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4041 | - $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
|
| 4042 | - $default_status = 'publish'; |
|
| 4043 | - $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4039 | + if (!empty($file)) {
|
|
| 4040 | + $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4041 | + $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
|
| 4042 | + $default_status = 'publish'; |
|
| 4043 | + $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4044 | 4044 | |
| 4045 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4045 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4046 | 4046 | |
| 4047 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4048 | - $json['error'] = CSV_INVAILD_FILE; |
|
| 4049 | - wp_send_json( $json ); |
|
| 4050 | - exit; |
|
| 4051 | - } |
|
| 4052 | - $xtimings['###2'] = microtime(true)-$xstart; |
|
| 4053 | - $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
|
| 4054 | - $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4055 | - $processed_actual = 0; |
|
| 4056 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4057 | - $index = $processed + $i; |
|
| 4058 | - $gd_post = array(); |
|
| 4047 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4048 | + $json['error'] = CSV_INVAILD_FILE; |
|
| 4049 | + wp_send_json( $json ); |
|
| 4050 | + exit; |
|
| 4051 | + } |
|
| 4052 | + $xtimings['###2'] = microtime(true)-$xstart; |
|
| 4053 | + $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
|
| 4054 | + $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4055 | + $processed_actual = 0; |
|
| 4056 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4057 | + $index = $processed + $i; |
|
| 4058 | + $gd_post = array(); |
|
| 4059 | 4059 | |
| 4060 | - if (isset($file[$index])) {
|
|
| 4061 | - $processed_actual++; |
|
| 4062 | - $row = $file[$index]; |
|
| 4063 | - $row = array_map( 'trim', $row ); |
|
| 4064 | - //$row = array_map( 'utf8_encode', $row ); |
|
| 4065 | - $row = array_map( 'addslashes_gpc', $row ); |
|
| 4060 | + if (isset($file[$index])) {
|
|
| 4061 | + $processed_actual++; |
|
| 4062 | + $row = $file[$index]; |
|
| 4063 | + $row = array_map( 'trim', $row ); |
|
| 4064 | + //$row = array_map( 'utf8_encode', $row ); |
|
| 4065 | + $row = array_map( 'addslashes_gpc', $row ); |
|
| 4066 | 4066 | |
| 4067 | - $post_id = ''; |
|
| 4068 | - $post_title = ''; |
|
| 4069 | - $post_author = ''; |
|
| 4070 | - $post_content = ''; |
|
| 4071 | - $post_category_arr = array(); |
|
| 4072 | - $default_category = ''; |
|
| 4073 | - $post_tags = array(); |
|
| 4074 | - $post_type = ''; |
|
| 4075 | - $post_status = ''; |
|
| 4076 | - $geodir_video = ''; |
|
| 4077 | - $post_address = ''; |
|
| 4078 | - $post_city = ''; |
|
| 4079 | - $post_region = ''; |
|
| 4080 | - $post_country = ''; |
|
| 4081 | - $post_zip = ''; |
|
| 4082 | - $post_latitude = ''; |
|
| 4083 | - $post_longitude = ''; |
|
| 4084 | - $post_neighbourhood = ''; |
|
| 4085 | - $neighbourhood_latitude = ''; |
|
| 4086 | - $neighbourhood_longitude = ''; |
|
| 4087 | - $geodir_timing = ''; |
|
| 4088 | - $geodir_contact = ''; |
|
| 4089 | - $geodir_email = ''; |
|
| 4090 | - $geodir_website = ''; |
|
| 4091 | - $geodir_twitter = ''; |
|
| 4092 | - $geodir_facebook = ''; |
|
| 4093 | - $geodir_twitter = ''; |
|
| 4094 | - $post_images = array(); |
|
| 4067 | + $post_id = ''; |
|
| 4068 | + $post_title = ''; |
|
| 4069 | + $post_author = ''; |
|
| 4070 | + $post_content = ''; |
|
| 4071 | + $post_category_arr = array(); |
|
| 4072 | + $default_category = ''; |
|
| 4073 | + $post_tags = array(); |
|
| 4074 | + $post_type = ''; |
|
| 4075 | + $post_status = ''; |
|
| 4076 | + $geodir_video = ''; |
|
| 4077 | + $post_address = ''; |
|
| 4078 | + $post_city = ''; |
|
| 4079 | + $post_region = ''; |
|
| 4080 | + $post_country = ''; |
|
| 4081 | + $post_zip = ''; |
|
| 4082 | + $post_latitude = ''; |
|
| 4083 | + $post_longitude = ''; |
|
| 4084 | + $post_neighbourhood = ''; |
|
| 4085 | + $neighbourhood_latitude = ''; |
|
| 4086 | + $neighbourhood_longitude = ''; |
|
| 4087 | + $geodir_timing = ''; |
|
| 4088 | + $geodir_contact = ''; |
|
| 4089 | + $geodir_email = ''; |
|
| 4090 | + $geodir_website = ''; |
|
| 4091 | + $geodir_twitter = ''; |
|
| 4092 | + $geodir_facebook = ''; |
|
| 4093 | + $geodir_twitter = ''; |
|
| 4094 | + $post_images = array(); |
|
| 4095 | 4095 | |
| 4096 | - $expire_date = 'Never'; |
|
| 4096 | + $expire_date = 'Never'; |
|
| 4097 | 4097 | |
| 4098 | - $language = ''; |
|
| 4099 | - $original_post_id = ''; |
|
| 4098 | + $language = ''; |
|
| 4099 | + $original_post_id = ''; |
|
| 4100 | 4100 | |
| 4101 | - $c = 0; |
|
| 4102 | - foreach ($columns as $column ) {
|
|
| 4103 | - $gd_post[$column] = $row[$c]; |
|
| 4101 | + $c = 0; |
|
| 4102 | + foreach ($columns as $column ) {
|
|
| 4103 | + $gd_post[$column] = $row[$c]; |
|
| 4104 | 4104 | |
| 4105 | - if ( $column == 'post_id' ) {
|
|
| 4106 | - $post_id = $row[$c]; |
|
| 4107 | - } else if ( $column == 'post_title' ) {
|
|
| 4108 | - $post_title = sanitize_text_field($row[$c]); |
|
| 4109 | - } else if ( $column == 'post_author' ) {
|
|
| 4110 | - $post_author = $row[$c]; |
|
| 4111 | - } else if ( $column == 'post_content' ) {
|
|
| 4112 | - $post_content = $row[$c]; |
|
| 4113 | - } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4114 | - $post_category_arr = explode( ',', $row[$c] ); |
|
| 4115 | - } else if ( $column == 'default_category' ) {
|
|
| 4116 | - $default_category = wp_kses_normalize_entities($row[$c]); |
|
| 4117 | - } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4118 | - $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4119 | - } else if ( $column == 'post_type' ) {
|
|
| 4120 | - $post_type = $row[$c]; |
|
| 4121 | - } else if ( $column == 'post_status' ) {
|
|
| 4122 | - $post_status = sanitize_key( $row[$c] ); |
|
| 4123 | - } else if ( $column == 'is_featured' ) {
|
|
| 4124 | - $is_featured = (int)$row[$c]; |
|
| 4125 | - } else if ( $column == 'geodir_video' ) {
|
|
| 4126 | - $geodir_video = $row[$c]; |
|
| 4127 | - } else if ( $column == 'post_address' ) {
|
|
| 4128 | - $post_address = sanitize_text_field($row[$c]); |
|
| 4129 | - } else if ( $column == 'post_city' ) {
|
|
| 4130 | - $post_city = sanitize_text_field($row[$c]); |
|
| 4131 | - } else if ( $column == 'post_region' ) {
|
|
| 4132 | - $post_region = sanitize_text_field($row[$c]); |
|
| 4133 | - } else if ( $column == 'post_country' ) {
|
|
| 4134 | - $post_country = sanitize_text_field($row[$c]); |
|
| 4135 | - } else if ( $column == 'post_zip' ) {
|
|
| 4136 | - $post_zip = sanitize_text_field($row[$c]); |
|
| 4137 | - } else if ( $column == 'post_latitude' ) {
|
|
| 4138 | - $post_latitude = sanitize_text_field($row[$c]); |
|
| 4139 | - } else if ( $column == 'post_longitude' ) {
|
|
| 4140 | - $post_longitude = sanitize_text_field($row[$c]); |
|
| 4141 | - } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4142 | - $post_neighbourhood = sanitize_text_field($row[$c]); |
|
| 4143 | - unset($gd_post[$column]); |
|
| 4144 | - } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4145 | - $neighbourhood_latitude = sanitize_text_field($row[$c]); |
|
| 4146 | - } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4147 | - $neighbourhood_longitude = sanitize_text_field($row[$c]); |
|
| 4148 | - } else if ( $column == 'geodir_timing' ) {
|
|
| 4149 | - $geodir_timing = sanitize_text_field($row[$c]); |
|
| 4150 | - } else if ( $column == 'geodir_contact' ) {
|
|
| 4151 | - $geodir_contact = sanitize_text_field($row[$c]); |
|
| 4152 | - } else if ( $column == 'geodir_email' ) {
|
|
| 4153 | - $geodir_email = sanitize_email($row[$c]); |
|
| 4154 | - } else if ( $column == 'geodir_website' ) {
|
|
| 4155 | - $geodir_website = sanitize_text_field($row[$c]); |
|
| 4156 | - } else if ( $column == 'geodir_twitter' ) {
|
|
| 4157 | - $geodir_twitter = sanitize_text_field($row[$c]); |
|
| 4158 | - } else if ( $column == 'geodir_facebook' ) {
|
|
| 4159 | - $geodir_facebook = sanitize_text_field($row[$c]); |
|
| 4160 | - } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4161 | - $post_images[] = $row[$c]; |
|
| 4162 | - } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4163 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4164 | - } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4165 | - $row[$c] = str_replace('/', '-', $row[$c]);
|
|
| 4166 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4167 | - } |
|
| 4168 | - // WPML |
|
| 4169 | - if ($is_wpml) {
|
|
| 4170 | - if ($column == 'language') {
|
|
| 4171 | - $language = geodir_strtolower(trim($row[$c])); |
|
| 4172 | - } else if ($column == 'original_post_id') {
|
|
| 4173 | - $original_post_id = (int)$row[$c]; |
|
| 4174 | - } |
|
| 4175 | - } |
|
| 4176 | - // WPML |
|
| 4177 | - $c++; |
|
| 4178 | - } |
|
| 4179 | - // listing claimed or not |
|
| 4180 | - if ($is_claim_active && isset($gd_post['claimed'])) {
|
|
| 4181 | - $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4182 | - } |
|
| 4105 | + if ( $column == 'post_id' ) {
|
|
| 4106 | + $post_id = $row[$c]; |
|
| 4107 | + } else if ( $column == 'post_title' ) {
|
|
| 4108 | + $post_title = sanitize_text_field($row[$c]); |
|
| 4109 | + } else if ( $column == 'post_author' ) {
|
|
| 4110 | + $post_author = $row[$c]; |
|
| 4111 | + } else if ( $column == 'post_content' ) {
|
|
| 4112 | + $post_content = $row[$c]; |
|
| 4113 | + } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4114 | + $post_category_arr = explode( ',', $row[$c] ); |
|
| 4115 | + } else if ( $column == 'default_category' ) {
|
|
| 4116 | + $default_category = wp_kses_normalize_entities($row[$c]); |
|
| 4117 | + } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4118 | + $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4119 | + } else if ( $column == 'post_type' ) {
|
|
| 4120 | + $post_type = $row[$c]; |
|
| 4121 | + } else if ( $column == 'post_status' ) {
|
|
| 4122 | + $post_status = sanitize_key( $row[$c] ); |
|
| 4123 | + } else if ( $column == 'is_featured' ) {
|
|
| 4124 | + $is_featured = (int)$row[$c]; |
|
| 4125 | + } else if ( $column == 'geodir_video' ) {
|
|
| 4126 | + $geodir_video = $row[$c]; |
|
| 4127 | + } else if ( $column == 'post_address' ) {
|
|
| 4128 | + $post_address = sanitize_text_field($row[$c]); |
|
| 4129 | + } else if ( $column == 'post_city' ) {
|
|
| 4130 | + $post_city = sanitize_text_field($row[$c]); |
|
| 4131 | + } else if ( $column == 'post_region' ) {
|
|
| 4132 | + $post_region = sanitize_text_field($row[$c]); |
|
| 4133 | + } else if ( $column == 'post_country' ) {
|
|
| 4134 | + $post_country = sanitize_text_field($row[$c]); |
|
| 4135 | + } else if ( $column == 'post_zip' ) {
|
|
| 4136 | + $post_zip = sanitize_text_field($row[$c]); |
|
| 4137 | + } else if ( $column == 'post_latitude' ) {
|
|
| 4138 | + $post_latitude = sanitize_text_field($row[$c]); |
|
| 4139 | + } else if ( $column == 'post_longitude' ) {
|
|
| 4140 | + $post_longitude = sanitize_text_field($row[$c]); |
|
| 4141 | + } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4142 | + $post_neighbourhood = sanitize_text_field($row[$c]); |
|
| 4143 | + unset($gd_post[$column]); |
|
| 4144 | + } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4145 | + $neighbourhood_latitude = sanitize_text_field($row[$c]); |
|
| 4146 | + } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4147 | + $neighbourhood_longitude = sanitize_text_field($row[$c]); |
|
| 4148 | + } else if ( $column == 'geodir_timing' ) {
|
|
| 4149 | + $geodir_timing = sanitize_text_field($row[$c]); |
|
| 4150 | + } else if ( $column == 'geodir_contact' ) {
|
|
| 4151 | + $geodir_contact = sanitize_text_field($row[$c]); |
|
| 4152 | + } else if ( $column == 'geodir_email' ) {
|
|
| 4153 | + $geodir_email = sanitize_email($row[$c]); |
|
| 4154 | + } else if ( $column == 'geodir_website' ) {
|
|
| 4155 | + $geodir_website = sanitize_text_field($row[$c]); |
|
| 4156 | + } else if ( $column == 'geodir_twitter' ) {
|
|
| 4157 | + $geodir_twitter = sanitize_text_field($row[$c]); |
|
| 4158 | + } else if ( $column == 'geodir_facebook' ) {
|
|
| 4159 | + $geodir_facebook = sanitize_text_field($row[$c]); |
|
| 4160 | + } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4161 | + $post_images[] = $row[$c]; |
|
| 4162 | + } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4163 | + $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4164 | + } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4165 | + $row[$c] = str_replace('/', '-', $row[$c]);
|
|
| 4166 | + $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4167 | + } |
|
| 4168 | + // WPML |
|
| 4169 | + if ($is_wpml) {
|
|
| 4170 | + if ($column == 'language') {
|
|
| 4171 | + $language = geodir_strtolower(trim($row[$c])); |
|
| 4172 | + } else if ($column == 'original_post_id') {
|
|
| 4173 | + $original_post_id = (int)$row[$c]; |
|
| 4174 | + } |
|
| 4175 | + } |
|
| 4176 | + // WPML |
|
| 4177 | + $c++; |
|
| 4178 | + } |
|
| 4179 | + // listing claimed or not |
|
| 4180 | + if ($is_claim_active && isset($gd_post['claimed'])) {
|
|
| 4181 | + $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4182 | + } |
|
| 4183 | 4183 | |
| 4184 | - // WPML |
|
| 4185 | - if ($is_wpml && $language != '') {
|
|
| 4186 | - $sitepress->switch_lang($language, true); |
|
| 4187 | - } |
|
| 4188 | - // WPML |
|
| 4184 | + // WPML |
|
| 4185 | + if ($is_wpml && $language != '') {
|
|
| 4186 | + $sitepress->switch_lang($language, true); |
|
| 4187 | + } |
|
| 4188 | + // WPML |
|
| 4189 | 4189 | |
| 4190 | - $gd_post['IMAGE'] = $post_images; |
|
| 4190 | + $gd_post['IMAGE'] = $post_images; |
|
| 4191 | 4191 | |
| 4192 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4193 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4192 | + $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4193 | + $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4194 | 4194 | |
| 4195 | - $valid = true; |
|
| 4195 | + $valid = true; |
|
| 4196 | 4196 | |
| 4197 | - if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4198 | - $invalid++; |
|
| 4199 | - $valid = false; |
|
| 4200 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4201 | - } |
|
| 4202 | - $xtimings['###3'] = microtime(true)-$xstart; |
|
| 4203 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4204 | - if ( $location_allowed ) {
|
|
| 4205 | - $location_result = geodir_get_default_location(); |
|
| 4206 | - if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4207 | - $invalid_addr++; |
|
| 4208 | - $valid = false; |
|
| 4209 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4210 | - } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4211 | - if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4212 | - $invalid_addr++; |
|
| 4213 | - $valid = false; |
|
| 4214 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4215 | - } else {
|
|
| 4216 | - if (!$location_manager) {
|
|
| 4217 | - $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4218 | - } |
|
| 4219 | - } |
|
| 4220 | - } |
|
| 4221 | - } |
|
| 4222 | - $xtimings['###4'] = microtime(true)-$xstart; |
|
| 4223 | - if ( !$valid ) {
|
|
| 4224 | - continue; |
|
| 4225 | - } |
|
| 4197 | + if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4198 | + $invalid++; |
|
| 4199 | + $valid = false; |
|
| 4200 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4201 | + } |
|
| 4202 | + $xtimings['###3'] = microtime(true)-$xstart; |
|
| 4203 | + $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4204 | + if ( $location_allowed ) {
|
|
| 4205 | + $location_result = geodir_get_default_location(); |
|
| 4206 | + if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4207 | + $invalid_addr++; |
|
| 4208 | + $valid = false; |
|
| 4209 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4210 | + } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4211 | + if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4212 | + $invalid_addr++; |
|
| 4213 | + $valid = false; |
|
| 4214 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4215 | + } else {
|
|
| 4216 | + if (!$location_manager) {
|
|
| 4217 | + $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4218 | + } |
|
| 4219 | + } |
|
| 4220 | + } |
|
| 4221 | + } |
|
| 4222 | + $xtimings['###4'] = microtime(true)-$xstart; |
|
| 4223 | + if ( !$valid ) {
|
|
| 4224 | + continue; |
|
| 4225 | + } |
|
| 4226 | 4226 | |
| 4227 | - $cat_taxonomy = $post_type . 'category'; |
|
| 4228 | - $tags_taxonomy = $post_type . '_tags'; |
|
| 4227 | + $cat_taxonomy = $post_type . 'category'; |
|
| 4228 | + $tags_taxonomy = $post_type . '_tags'; |
|
| 4229 | 4229 | |
| 4230 | - if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
|
| 4231 | - $post_category_arr = array_merge(array($default_category), $post_category_arr); |
|
| 4232 | - } |
|
| 4230 | + if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
|
| 4231 | + $post_category_arr = array_merge(array($default_category), $post_category_arr); |
|
| 4232 | + } |
|
| 4233 | 4233 | |
| 4234 | - $post_category = array(); |
|
| 4235 | - $default_category_id = NULL; |
|
| 4236 | - if ( !empty( $post_category_arr ) ) {
|
|
| 4237 | - foreach ( $post_category_arr as $value ) {
|
|
| 4238 | - $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4234 | + $post_category = array(); |
|
| 4235 | + $default_category_id = NULL; |
|
| 4236 | + if ( !empty( $post_category_arr ) ) {
|
|
| 4237 | + foreach ( $post_category_arr as $value ) {
|
|
| 4238 | + $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4239 | 4239 | |
| 4240 | - if ( $category_name != '' ) {
|
|
| 4241 | - $term_category = array(); |
|
| 4240 | + if ( $category_name != '' ) {
|
|
| 4241 | + $term_category = array(); |
|
| 4242 | 4242 | |
| 4243 | - if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4244 | - $term_category = $term; |
|
| 4245 | - } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4246 | - $term_category = $term; |
|
| 4247 | - } else {
|
|
| 4248 | - $term_data = array(); |
|
| 4249 | - $term_data['name'] = $category_name; |
|
| 4250 | - $term_data['taxonomy'] = $cat_taxonomy; |
|
| 4243 | + if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4244 | + $term_category = $term; |
|
| 4245 | + } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4246 | + $term_category = $term; |
|
| 4247 | + } else {
|
|
| 4248 | + $term_data = array(); |
|
| 4249 | + $term_data['name'] = $category_name; |
|
| 4250 | + $term_data['taxonomy'] = $cat_taxonomy; |
|
| 4251 | 4251 | |
| 4252 | - $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4253 | - if ( $term_id ) {
|
|
| 4254 | - $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4255 | - } |
|
| 4256 | - } |
|
| 4252 | + $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4253 | + if ( $term_id ) {
|
|
| 4254 | + $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4255 | + } |
|
| 4256 | + } |
|
| 4257 | 4257 | |
| 4258 | - if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4259 | - $post_category[] = intval($term_category->term_id); |
|
| 4258 | + if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4259 | + $post_category[] = intval($term_category->term_id); |
|
| 4260 | 4260 | |
| 4261 | - if ($category_name == $default_category) {
|
|
| 4262 | - $default_category_id = intval($term_category->term_id); |
|
| 4263 | - } |
|
| 4264 | - } |
|
| 4265 | - } |
|
| 4266 | - } |
|
| 4267 | - } |
|
| 4268 | - $xtimings['###5'] = microtime(true)-$xstart; |
|
| 4269 | - $save_post = array(); |
|
| 4270 | - $save_post['post_title'] = $post_title; |
|
| 4271 | - $save_post['post_content'] = $post_content; |
|
| 4272 | - $save_post['post_type'] = $post_type; |
|
| 4273 | - $save_post['post_author'] = $post_author; |
|
| 4274 | - $save_post['post_status'] = $post_status; |
|
| 4275 | - $save_post['post_category'] = $post_category; |
|
| 4276 | - $save_post['post_tags'] = $post_tags; |
|
| 4277 | - |
|
| 4278 | - $saved_post_id = NULL; |
|
| 4279 | - if ( $import_choice == 'update' ) {
|
|
| 4280 | - $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4261 | + if ($category_name == $default_category) {
|
|
| 4262 | + $default_category_id = intval($term_category->term_id); |
|
| 4263 | + } |
|
| 4264 | + } |
|
| 4265 | + } |
|
| 4266 | + } |
|
| 4267 | + } |
|
| 4268 | + $xtimings['###5'] = microtime(true)-$xstart; |
|
| 4269 | + $save_post = array(); |
|
| 4270 | + $save_post['post_title'] = $post_title; |
|
| 4271 | + $save_post['post_content'] = $post_content; |
|
| 4272 | + $save_post['post_type'] = $post_type; |
|
| 4273 | + $save_post['post_author'] = $post_author; |
|
| 4274 | + $save_post['post_status'] = $post_status; |
|
| 4275 | + $save_post['post_category'] = $post_category; |
|
| 4276 | + $save_post['post_tags'] = $post_tags; |
|
| 4277 | + |
|
| 4278 | + $saved_post_id = NULL; |
|
| 4279 | + if ( $import_choice == 'update' ) {
|
|
| 4280 | + $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4281 | 4281 | |
| 4282 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4283 | - $save_post['ID'] = $post_id; |
|
| 4282 | + if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4283 | + $save_post['ID'] = $post_id; |
|
| 4284 | 4284 | |
| 4285 | - if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4286 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4287 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4288 | - $saved_post_id = 0; |
|
| 4289 | - } else {
|
|
| 4290 | - $saved_post_id = $post_id; |
|
| 4291 | - $updated++; |
|
| 4292 | - } |
|
| 4293 | - } |
|
| 4294 | - } else {
|
|
| 4295 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4296 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4297 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4298 | - $saved_post_id = 0; |
|
| 4299 | - } else {
|
|
| 4300 | - $created++; |
|
| 4301 | - } |
|
| 4302 | - } |
|
| 4303 | - } |
|
| 4285 | + if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4286 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4287 | + $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4288 | + $saved_post_id = 0; |
|
| 4289 | + } else {
|
|
| 4290 | + $saved_post_id = $post_id; |
|
| 4291 | + $updated++; |
|
| 4292 | + } |
|
| 4293 | + } |
|
| 4294 | + } else {
|
|
| 4295 | + if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4296 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4297 | + $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4298 | + $saved_post_id = 0; |
|
| 4299 | + } else {
|
|
| 4300 | + $created++; |
|
| 4301 | + } |
|
| 4302 | + } |
|
| 4303 | + } |
|
| 4304 | 4304 | |
| 4305 | - if ( !$saved_post_id > 0 ) {
|
|
| 4306 | - $invalid++; |
|
| 4307 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4308 | - } |
|
| 4309 | - } else if ( $import_choice == 'skip' ) {
|
|
| 4310 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4311 | - $skipped++; |
|
| 4312 | - } else {
|
|
| 4313 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4314 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4315 | - $invalid++; |
|
| 4305 | + if ( !$saved_post_id > 0 ) {
|
|
| 4306 | + $invalid++; |
|
| 4307 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4308 | + } |
|
| 4309 | + } else if ( $import_choice == 'skip' ) {
|
|
| 4310 | + if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4311 | + $skipped++; |
|
| 4312 | + } else {
|
|
| 4313 | + if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4314 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4315 | + $invalid++; |
|
| 4316 | 4316 | |
| 4317 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4318 | - $saved_post_id = 0; |
|
| 4319 | - } else {
|
|
| 4320 | - $created++; |
|
| 4321 | - } |
|
| 4322 | - } else {
|
|
| 4323 | - $invalid++; |
|
| 4317 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4318 | + $saved_post_id = 0; |
|
| 4319 | + } else {
|
|
| 4320 | + $created++; |
|
| 4321 | + } |
|
| 4322 | + } else {
|
|
| 4323 | + $invalid++; |
|
| 4324 | 4324 | |
| 4325 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4326 | - } |
|
| 4327 | - } |
|
| 4328 | - } else {
|
|
| 4329 | - $invalid++; |
|
| 4325 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4326 | + } |
|
| 4327 | + } |
|
| 4328 | + } else {
|
|
| 4329 | + $invalid++; |
|
| 4330 | 4330 | |
| 4331 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4332 | - } |
|
| 4333 | - $xtimings['###6'] = microtime(true)-$xstart; |
|
| 4334 | - if ( (int)$saved_post_id > 0 ) {
|
|
| 4335 | - // WPML |
|
| 4336 | - if ($is_wpml && $original_post_id > 0 && $language != '') {
|
|
| 4337 | - $wpml_post_type = 'post_' . $post_type; |
|
| 4338 | - $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4339 | - $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 4340 | - |
|
| 4341 | - $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4331 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4332 | + } |
|
| 4333 | + $xtimings['###6'] = microtime(true)-$xstart; |
|
| 4334 | + if ( (int)$saved_post_id > 0 ) {
|
|
| 4335 | + // WPML |
|
| 4336 | + if ($is_wpml && $original_post_id > 0 && $language != '') {
|
|
| 4337 | + $wpml_post_type = 'post_' . $post_type; |
|
| 4338 | + $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4339 | + $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 4340 | + |
|
| 4341 | + $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4342 | 4342 | |
| 4343 | - $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4344 | - } |
|
| 4345 | - // WPML |
|
| 4346 | - $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4343 | + $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4344 | + } |
|
| 4345 | + // WPML |
|
| 4346 | + $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4347 | 4347 | |
| 4348 | - $gd_post['post_id'] = $saved_post_id; |
|
| 4349 | - $gd_post['ID'] = $saved_post_id; |
|
| 4350 | - $gd_post['post_tags'] = $post_tags; |
|
| 4351 | - $gd_post['post_title'] = $post_title; |
|
| 4352 | - $gd_post['post_status'] = $post_status; |
|
| 4353 | - $gd_post['submit_time'] = time(); |
|
| 4354 | - $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
| 4348 | + $gd_post['post_id'] = $saved_post_id; |
|
| 4349 | + $gd_post['ID'] = $saved_post_id; |
|
| 4350 | + $gd_post['post_tags'] = $post_tags; |
|
| 4351 | + $gd_post['post_title'] = $post_title; |
|
| 4352 | + $gd_post['post_status'] = $post_status; |
|
| 4353 | + $gd_post['submit_time'] = time(); |
|
| 4354 | + $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
| 4355 | 4355 | |
| 4356 | - // post location |
|
| 4357 | - $post_location_id = 0; |
|
| 4358 | - if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4359 | - $gd_post['post_neighbourhood'] = ''; |
|
| 4356 | + // post location |
|
| 4357 | + $post_location_id = 0; |
|
| 4358 | + if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4359 | + $gd_post['post_neighbourhood'] = ''; |
|
| 4360 | 4360 | |
| 4361 | - $post_location_info = array( |
|
| 4362 | - 'city' => $post_city, |
|
| 4363 | - 'region' => $post_region, |
|
| 4364 | - 'country' => $post_country, |
|
| 4365 | - 'geo_lat' => $post_latitude, |
|
| 4366 | - 'geo_lng' => $post_longitude |
|
| 4367 | - ); |
|
| 4368 | - if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4369 | - $post_location_id = $location_id; |
|
| 4370 | - } |
|
| 4361 | + $post_location_info = array( |
|
| 4362 | + 'city' => $post_city, |
|
| 4363 | + 'region' => $post_region, |
|
| 4364 | + 'country' => $post_country, |
|
| 4365 | + 'geo_lat' => $post_latitude, |
|
| 4366 | + 'geo_lng' => $post_longitude |
|
| 4367 | + ); |
|
| 4368 | + if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4369 | + $post_location_id = $location_id; |
|
| 4370 | + } |
|
| 4371 | 4371 | |
| 4372 | - if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
|
|
| 4373 | - $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id); |
|
| 4372 | + if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
|
|
| 4373 | + $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id); |
|
| 4374 | 4374 | |
| 4375 | - $hood_data = array(); |
|
| 4376 | - $hood_data['hood_location_id'] = $post_location_id; |
|
| 4377 | - $hood_data['hood_name'] = $post_neighbourhood; |
|
| 4375 | + $hood_data = array(); |
|
| 4376 | + $hood_data['hood_location_id'] = $post_location_id; |
|
| 4377 | + $hood_data['hood_name'] = $post_neighbourhood; |
|
| 4378 | 4378 | |
| 4379 | - if (!empty($neighbourhood_info)) {
|
|
| 4380 | - $hood_data['hood_id'] = $neighbourhood_info->hood_id; |
|
| 4381 | - $hood_data['hood_slug'] = $neighbourhood_info->hood_slug; |
|
| 4379 | + if (!empty($neighbourhood_info)) {
|
|
| 4380 | + $hood_data['hood_id'] = $neighbourhood_info->hood_id; |
|
| 4381 | + $hood_data['hood_slug'] = $neighbourhood_info->hood_slug; |
|
| 4382 | 4382 | |
| 4383 | - if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4384 | - $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4385 | - $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4386 | - } |
|
| 4387 | - } |
|
| 4383 | + if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4384 | + $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4385 | + $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4386 | + } |
|
| 4387 | + } |
|
| 4388 | 4388 | |
| 4389 | - if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4390 | - $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4391 | - $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4392 | - } |
|
| 4389 | + if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4390 | + $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4391 | + $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4392 | + } |
|
| 4393 | 4393 | |
| 4394 | - $hood_data['hood_latitude'] = $post_latitude; |
|
| 4395 | - $hood_data['hood_longitude'] = $post_longitude; |
|
| 4396 | - |
|
| 4397 | - $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data); |
|
| 4398 | - if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
|
|
| 4399 | - $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug; |
|
| 4400 | - } |
|
| 4401 | - } |
|
| 4402 | - } |
|
| 4403 | - $gd_post['post_location_id'] = $post_location_id; |
|
| 4394 | + $hood_data['hood_latitude'] = $post_latitude; |
|
| 4395 | + $hood_data['hood_longitude'] = $post_longitude; |
|
| 4396 | + |
|
| 4397 | + $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data); |
|
| 4398 | + if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
|
|
| 4399 | + $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug; |
|
| 4400 | + } |
|
| 4401 | + } |
|
| 4402 | + } |
|
| 4403 | + $gd_post['post_location_id'] = $post_location_id; |
|
| 4404 | 4404 | |
| 4405 | - // post package info |
|
| 4406 | - $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4407 | - if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
|
| 4408 | - $package_id = $gd_post_info->package_id; |
|
| 4409 | - } |
|
| 4405 | + // post package info |
|
| 4406 | + $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4407 | + if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
|
| 4408 | + $package_id = $gd_post_info->package_id; |
|
| 4409 | + } |
|
| 4410 | 4410 | |
| 4411 | - $package_info = array(); |
|
| 4412 | - if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
|
| 4413 | - $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4411 | + $package_info = array(); |
|
| 4412 | + if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
|
| 4413 | + $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4414 | 4414 | |
| 4415 | - if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
|
| 4416 | - $package_info = array(); |
|
| 4417 | - } |
|
| 4418 | - } |
|
| 4415 | + if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
|
| 4416 | + $package_info = array(); |
|
| 4417 | + } |
|
| 4418 | + } |
|
| 4419 | 4419 | |
| 4420 | - if (empty($package_info)) {
|
|
| 4421 | - $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4422 | - } |
|
| 4420 | + if (empty($package_info)) {
|
|
| 4421 | + $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4422 | + } |
|
| 4423 | 4423 | |
| 4424 | - if (!empty($package_info)) {
|
|
| 4425 | - $package_id = $package_info['pid']; |
|
| 4424 | + if (!empty($package_info)) {
|
|
| 4425 | + $package_id = $package_info['pid']; |
|
| 4426 | 4426 | |
| 4427 | - if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
|
| 4428 | - $gd_post['expire_date'] = $expire_date; |
|
| 4429 | - } else {
|
|
| 4430 | - if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4431 | - $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4432 | - $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4433 | - } else {
|
|
| 4434 | - $gd_post['expire_date'] = 'Never'; |
|
| 4435 | - } |
|
| 4436 | - } |
|
| 4427 | + if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
|
| 4428 | + $gd_post['expire_date'] = $expire_date; |
|
| 4429 | + } else {
|
|
| 4430 | + if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4431 | + $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4432 | + $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4433 | + } else {
|
|
| 4434 | + $gd_post['expire_date'] = 'Never'; |
|
| 4435 | + } |
|
| 4436 | + } |
|
| 4437 | 4437 | |
| 4438 | - $gd_post['package_id'] = $package_id; |
|
| 4439 | - } |
|
| 4438 | + $gd_post['package_id'] = $package_id; |
|
| 4439 | + } |
|
| 4440 | 4440 | |
| 4441 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4441 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4442 | 4442 | |
| 4443 | - if ($post_type == 'gd_event') {
|
|
| 4444 | - $gd_post = geodir_imex_process_event_data($gd_post); |
|
| 4445 | - } |
|
| 4443 | + if ($post_type == 'gd_event') {
|
|
| 4444 | + $gd_post = geodir_imex_process_event_data($gd_post); |
|
| 4445 | + } |
|
| 4446 | 4446 | |
| 4447 | - if (isset($gd_post['post_id'])) {
|
|
| 4448 | - unset($gd_post['post_id']); |
|
| 4449 | - } |
|
| 4447 | + if (isset($gd_post['post_id'])) {
|
|
| 4448 | + unset($gd_post['post_id']); |
|
| 4449 | + } |
|
| 4450 | 4450 | |
| 4451 | - // Export franchise fields |
|
| 4452 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4453 | - if ($is_franchise_active) {
|
|
| 4454 | - if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4455 | - $gd_franchise_lock = array(); |
|
| 4451 | + // Export franchise fields |
|
| 4452 | + $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4453 | + if ($is_franchise_active) {
|
|
| 4454 | + if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4455 | + $gd_franchise_lock = array(); |
|
| 4456 | 4456 | |
| 4457 | - if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4458 | - $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4459 | - $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4460 | - $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4461 | - } |
|
| 4457 | + if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4458 | + $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4459 | + $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4460 | + $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4461 | + } |
|
| 4462 | 4462 | |
| 4463 | - update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4464 | - update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4465 | - } else {
|
|
| 4466 | - if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4467 | - geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4468 | - } |
|
| 4469 | - } |
|
| 4470 | - } |
|
| 4463 | + update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4464 | + update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4465 | + } else {
|
|
| 4466 | + if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4467 | + geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4468 | + } |
|
| 4469 | + } |
|
| 4470 | + } |
|
| 4471 | 4471 | |
| 4472 | - if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
|
| 4473 | - $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4474 | - if ($default_category_id) {
|
|
| 4475 | - $save_post['post_default_category'] = $default_category_id; |
|
| 4476 | - $gd_post['default_category'] = $default_category_id; |
|
| 4477 | - } |
|
| 4478 | - $gd_post[$cat_taxonomy] = $save_post['post_category']; |
|
| 4479 | - } |
|
| 4480 | - $xtimings['###7'] = microtime(true)-$xstart; |
|
| 4481 | - // Save post info |
|
| 4482 | - geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4483 | - $xtimings['###8'] = microtime(true)-$xstart; |
|
| 4484 | - // post taxonomies |
|
| 4485 | - if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4486 | - wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4472 | + if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
|
| 4473 | + $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4474 | + if ($default_category_id) {
|
|
| 4475 | + $save_post['post_default_category'] = $default_category_id; |
|
| 4476 | + $gd_post['default_category'] = $default_category_id; |
|
| 4477 | + } |
|
| 4478 | + $gd_post[$cat_taxonomy] = $save_post['post_category']; |
|
| 4479 | + } |
|
| 4480 | + $xtimings['###7'] = microtime(true)-$xstart; |
|
| 4481 | + // Save post info |
|
| 4482 | + geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4483 | + $xtimings['###8'] = microtime(true)-$xstart; |
|
| 4484 | + // post taxonomies |
|
| 4485 | + if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4486 | + wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4487 | 4487 | |
| 4488 | - $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4489 | - if ($default_category_id) {
|
|
| 4490 | - $post_default_category = $default_category_id; |
|
| 4491 | - } |
|
| 4492 | - $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
|
| 4493 | - $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
|
| 4494 | - $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4488 | + $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4489 | + if ($default_category_id) {
|
|
| 4490 | + $post_default_category = $default_category_id; |
|
| 4491 | + } |
|
| 4492 | + $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
|
| 4493 | + $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
|
| 4494 | + $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4495 | 4495 | |
| 4496 | - if ($post_category_str != '' && $post_default_category) {
|
|
| 4497 | - $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4498 | - } |
|
| 4496 | + if ($post_category_str != '' && $post_default_category) {
|
|
| 4497 | + $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4498 | + } |
|
| 4499 | 4499 | |
| 4500 | - $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
|
| 4500 | + $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
|
| 4501 | 4501 | |
| 4502 | - geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4503 | - } |
|
| 4504 | - $xtimings['###8.1'] = microtime(true)-$xstart; |
|
| 4505 | - if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4506 | - wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4507 | - } |
|
| 4508 | - $xtimings['###9'] = microtime(true)-$xstart; |
|
| 4509 | - // Post images |
|
| 4510 | - if ( !empty( $post_images ) ) {
|
|
| 4511 | - $post_images = array_unique($post_images); |
|
| 4502 | + geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4503 | + } |
|
| 4504 | + $xtimings['###8.1'] = microtime(true)-$xstart; |
|
| 4505 | + if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4506 | + wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4507 | + } |
|
| 4508 | + $xtimings['###9'] = microtime(true)-$xstart; |
|
| 4509 | + // Post images |
|
| 4510 | + if ( !empty( $post_images ) ) {
|
|
| 4511 | + $post_images = array_unique($post_images); |
|
| 4512 | 4512 | |
| 4513 | - $old_post_images_arr = array(); |
|
| 4514 | - $saved_post_images_arr = array(); |
|
| 4513 | + $old_post_images_arr = array(); |
|
| 4514 | + $saved_post_images_arr = array(); |
|
| 4515 | 4515 | |
| 4516 | - $order = 1; |
|
| 4516 | + $order = 1; |
|
| 4517 | 4517 | |
| 4518 | - $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4519 | - $xtimings['###9.1'] = microtime(true)-$xstart; |
|
| 4520 | - if (!empty($old_post_images)) {
|
|
| 4521 | - foreach( $old_post_images as $old_post_image ) {
|
|
| 4522 | - if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
|
| 4523 | - $old_post_images_arr[] = $old_post_image->file; |
|
| 4524 | - } |
|
| 4525 | - } |
|
| 4526 | - } |
|
| 4518 | + $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4519 | + $xtimings['###9.1'] = microtime(true)-$xstart; |
|
| 4520 | + if (!empty($old_post_images)) {
|
|
| 4521 | + foreach( $old_post_images as $old_post_image ) {
|
|
| 4522 | + if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
|
| 4523 | + $old_post_images_arr[] = $old_post_image->file; |
|
| 4524 | + } |
|
| 4525 | + } |
|
| 4526 | + } |
|
| 4527 | 4527 | |
| 4528 | - foreach ( $post_images as $post_image ) {
|
|
| 4529 | - $image_name = basename( $post_image ); |
|
| 4530 | - $saved_post_images_arr[] = $image_name; |
|
| 4528 | + foreach ( $post_images as $post_image ) {
|
|
| 4529 | + $image_name = basename( $post_image ); |
|
| 4530 | + $saved_post_images_arr[] = $image_name; |
|
| 4531 | 4531 | |
| 4532 | - if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4533 | - continue; // Skip if image already exists. |
|
| 4534 | - } |
|
| 4532 | + if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4533 | + continue; // Skip if image already exists. |
|
| 4534 | + } |
|
| 4535 | 4535 | |
| 4536 | - $image_name_parts = explode( '.', $image_name ); |
|
| 4537 | - array_pop( $image_name_parts ); |
|
| 4538 | - $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4539 | - $xtimings['###9.2'] = microtime(true)-$xstart; |
|
| 4540 | - $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4541 | - $xtimings['###9.3'] = microtime(true)-$xstart; |
|
| 4542 | - if ( !empty( $arr_file_type ) ) {
|
|
| 4543 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 4536 | + $image_name_parts = explode( '.', $image_name ); |
|
| 4537 | + array_pop( $image_name_parts ); |
|
| 4538 | + $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4539 | + $xtimings['###9.2'] = microtime(true)-$xstart; |
|
| 4540 | + $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4541 | + $xtimings['###9.3'] = microtime(true)-$xstart; |
|
| 4542 | + if ( !empty( $arr_file_type ) ) {
|
|
| 4543 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 4544 | 4544 | |
| 4545 | - $attachment = array(); |
|
| 4546 | - $attachment['post_id'] = $saved_post_id; |
|
| 4547 | - $attachment['title'] = $proper_image_name; |
|
| 4548 | - $attachment['content'] = ''; |
|
| 4549 | - $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4550 | - $attachment['mime_type'] = $uploaded_file_type; |
|
| 4551 | - $attachment['menu_order'] = $order; |
|
| 4552 | - $attachment['is_featured'] = 0; |
|
| 4553 | - |
|
| 4554 | - $attachment_set = ''; |
|
| 4555 | - foreach ( $attachment as $key => $val ) {
|
|
| 4556 | - if ( $val != '' ) {
|
|
| 4557 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4558 | - } |
|
| 4559 | - } |
|
| 4560 | - $attachment_set = trim( $attachment_set, ", " ); |
|
| 4545 | + $attachment = array(); |
|
| 4546 | + $attachment['post_id'] = $saved_post_id; |
|
| 4547 | + $attachment['title'] = $proper_image_name; |
|
| 4548 | + $attachment['content'] = ''; |
|
| 4549 | + $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4550 | + $attachment['mime_type'] = $uploaded_file_type; |
|
| 4551 | + $attachment['menu_order'] = $order; |
|
| 4552 | + $attachment['is_featured'] = 0; |
|
| 4553 | + |
|
| 4554 | + $attachment_set = ''; |
|
| 4555 | + foreach ( $attachment as $key => $val ) {
|
|
| 4556 | + if ( $val != '' ) {
|
|
| 4557 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4558 | + } |
|
| 4559 | + } |
|
| 4560 | + $attachment_set = trim( $attachment_set, ", " ); |
|
| 4561 | 4561 | |
| 4562 | - // Add new attachment |
|
| 4563 | - $xtimings['###9.4'] = microtime(true)-$xstart; |
|
| 4564 | - $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4565 | - $xtimings['###9.5'] = microtime(true)-$xstart; |
|
| 4566 | - $order++; |
|
| 4567 | - } |
|
| 4568 | - } |
|
| 4569 | - |
|
| 4570 | - $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4571 | - // Remove previous attachment |
|
| 4572 | - $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4573 | - $xtimings['###9.6'] = microtime(true)-$xstart; |
|
| 4574 | - if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4575 | - geodir_set_wp_featured_image($saved_post_id); |
|
| 4576 | - $xtimings['###9.7'] = microtime(true)-$xstart; |
|
| 4577 | - /* |
|
| 4562 | + // Add new attachment |
|
| 4563 | + $xtimings['###9.4'] = microtime(true)-$xstart; |
|
| 4564 | + $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4565 | + $xtimings['###9.5'] = microtime(true)-$xstart; |
|
| 4566 | + $order++; |
|
| 4567 | + } |
|
| 4568 | + } |
|
| 4569 | + |
|
| 4570 | + $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4571 | + // Remove previous attachment |
|
| 4572 | + $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4573 | + $xtimings['###9.6'] = microtime(true)-$xstart; |
|
| 4574 | + if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4575 | + geodir_set_wp_featured_image($saved_post_id); |
|
| 4576 | + $xtimings['###9.7'] = microtime(true)-$xstart; |
|
| 4577 | + /* |
|
| 4578 | 4578 | $menu_order = 1; |
| 4579 | 4579 | |
| 4580 | 4580 | foreach ( $saved_post_images_arr as $img_name ) {
|
@@ -4587,288 +4587,288 @@ discard block |
||
| 4587 | 4587 | } |
| 4588 | 4588 | $menu_order++; |
| 4589 | 4589 | }*/ |
| 4590 | - } |
|
| 4590 | + } |
|
| 4591 | 4591 | |
| 4592 | - if ( $order > 1 ) {
|
|
| 4593 | - $images++; |
|
| 4594 | - } |
|
| 4595 | - } |
|
| 4596 | - $xtimings['###10'] = microtime(true)-$xstart; |
|
| 4597 | - /** This action is documented in geodirectory-functions/post-functions.php */ |
|
| 4598 | - do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4599 | - $xtimings['###11'] = microtime(true)-$xstart; |
|
| 4600 | - if (isset($is_featured)) {
|
|
| 4601 | - geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
|
| 4602 | - } |
|
| 4603 | - if (isset($gd_post['alive_days'])) {
|
|
| 4604 | - geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']); |
|
| 4605 | - } |
|
| 4606 | - if (isset($gd_post['expire_date'])) {
|
|
| 4607 | - geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
|
| 4608 | - } |
|
| 4609 | - $xtimings['###12'] = microtime(true)-$xstart; |
|
| 4610 | - } |
|
| 4592 | + if ( $order > 1 ) {
|
|
| 4593 | + $images++; |
|
| 4594 | + } |
|
| 4595 | + } |
|
| 4596 | + $xtimings['###10'] = microtime(true)-$xstart; |
|
| 4597 | + /** This action is documented in geodirectory-functions/post-functions.php */ |
|
| 4598 | + do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4599 | + $xtimings['###11'] = microtime(true)-$xstart; |
|
| 4600 | + if (isset($is_featured)) {
|
|
| 4601 | + geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
|
| 4602 | + } |
|
| 4603 | + if (isset($gd_post['alive_days'])) {
|
|
| 4604 | + geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']); |
|
| 4605 | + } |
|
| 4606 | + if (isset($gd_post['expire_date'])) {
|
|
| 4607 | + geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
|
| 4608 | + } |
|
| 4609 | + $xtimings['###12'] = microtime(true)-$xstart; |
|
| 4610 | + } |
|
| 4611 | 4611 | |
| 4612 | - // WPML |
|
| 4613 | - if ($is_wpml && $language != '') {
|
|
| 4614 | - $sitepress->switch_lang($active_lang, true); |
|
| 4615 | - } |
|
| 4616 | - // WPML |
|
| 4617 | - } |
|
| 4618 | - } |
|
| 4619 | - } |
|
| 4612 | + // WPML |
|
| 4613 | + if ($is_wpml && $language != '') {
|
|
| 4614 | + $sitepress->switch_lang($active_lang, true); |
|
| 4615 | + } |
|
| 4616 | + // WPML |
|
| 4617 | + } |
|
| 4618 | + } |
|
| 4619 | + } |
|
| 4620 | 4620 | |
| 4621 | - //undo some stuff to make the import quicker |
|
| 4622 | - wp_defer_term_counting( false ); |
|
| 4623 | - wp_defer_comment_counting( false ); |
|
| 4624 | - $wpdb->query( 'COMMIT;' ); |
|
| 4625 | - $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4626 | - $xtimings['###13'] = microtime(true)-$xstart; |
|
| 4627 | - $json = array(); |
|
| 4628 | - $json['processed'] = $processed_actual; |
|
| 4629 | - $json['created'] = $created; |
|
| 4630 | - $json['updated'] = $updated; |
|
| 4631 | - $json['skipped'] = $skipped; |
|
| 4632 | - $json['invalid'] = $invalid; |
|
| 4633 | - $json['invalid_addr'] = $invalid_addr; |
|
| 4634 | - $json['images'] = $images; |
|
| 4635 | - $json['timing'] = microtime(true)-$xstart; |
|
| 4636 | - $json['timings'] = $xtimings; |
|
| 4621 | + //undo some stuff to make the import quicker |
|
| 4622 | + wp_defer_term_counting( false ); |
|
| 4623 | + wp_defer_comment_counting( false ); |
|
| 4624 | + $wpdb->query( 'COMMIT;' ); |
|
| 4625 | + $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4626 | + $xtimings['###13'] = microtime(true)-$xstart; |
|
| 4627 | + $json = array(); |
|
| 4628 | + $json['processed'] = $processed_actual; |
|
| 4629 | + $json['created'] = $created; |
|
| 4630 | + $json['updated'] = $updated; |
|
| 4631 | + $json['skipped'] = $skipped; |
|
| 4632 | + $json['invalid'] = $invalid; |
|
| 4633 | + $json['invalid_addr'] = $invalid_addr; |
|
| 4634 | + $json['images'] = $images; |
|
| 4635 | + $json['timing'] = microtime(true)-$xstart; |
|
| 4636 | + $json['timings'] = $xtimings; |
|
| 4637 | 4637 | |
| 4638 | 4638 | |
| 4639 | - wp_send_json( $json ); |
|
| 4640 | - exit; |
|
| 4641 | - } else if ( $task == 'import_loc' ) {
|
|
| 4642 | - global $gd_post_types; |
|
| 4643 | - $gd_post_types = $post_types; |
|
| 4639 | + wp_send_json( $json ); |
|
| 4640 | + exit; |
|
| 4641 | + } else if ( $task == 'import_loc' ) {
|
|
| 4642 | + global $gd_post_types; |
|
| 4643 | + $gd_post_types = $post_types; |
|
| 4644 | 4644 | |
| 4645 | - if (!empty($file)) {
|
|
| 4646 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4645 | + if (!empty($file)) {
|
|
| 4646 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4647 | 4647 | |
| 4648 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4649 | - $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4650 | - wp_send_json( $json ); |
|
| 4651 | - } |
|
| 4648 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4649 | + $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4650 | + wp_send_json( $json ); |
|
| 4651 | + } |
|
| 4652 | 4652 | |
| 4653 | - $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
|
| 4654 | - $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4655 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4656 | - $index = $processed + $i; |
|
| 4653 | + $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
|
| 4654 | + $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4655 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4656 | + $index = $processed + $i; |
|
| 4657 | 4657 | |
| 4658 | - if (isset($file[$index])) {
|
|
| 4659 | - $row = $file[$index]; |
|
| 4660 | - $row = array_map( 'trim', $row ); |
|
| 4661 | - $data = array(); |
|
| 4658 | + if (isset($file[$index])) {
|
|
| 4659 | + $row = $file[$index]; |
|
| 4660 | + $row = array_map( 'trim', $row ); |
|
| 4661 | + $data = array(); |
|
| 4662 | 4662 | |
| 4663 | - foreach ($columns as $c => $column ) {
|
|
| 4664 | - if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
|
|
| 4665 | - $data[$column] = $row[$c]; |
|
| 4666 | - } |
|
| 4667 | - } |
|
| 4663 | + foreach ($columns as $c => $column ) {
|
|
| 4664 | + if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
|
|
| 4665 | + $data[$column] = $row[$c]; |
|
| 4666 | + } |
|
| 4667 | + } |
|
| 4668 | 4668 | |
| 4669 | - if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4670 | - $invalid++; |
|
| 4671 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4672 | - continue; |
|
| 4673 | - } |
|
| 4669 | + if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4670 | + $invalid++; |
|
| 4671 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4672 | + continue; |
|
| 4673 | + } |
|
| 4674 | 4674 | |
| 4675 | - $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
|
| 4675 | + $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
|
| 4676 | 4676 | |
| 4677 | - if ( $import_choice == 'update' ) {
|
|
| 4678 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4679 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4680 | - $updated++; |
|
| 4681 | - } else {
|
|
| 4682 | - $invalid++; |
|
| 4683 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4684 | - } |
|
| 4685 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4686 | - $data['location_id'] = (int)$location->location_id; |
|
| 4677 | + if ( $import_choice == 'update' ) {
|
|
| 4678 | + if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4679 | + if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4680 | + $updated++; |
|
| 4681 | + } else {
|
|
| 4682 | + $invalid++; |
|
| 4683 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4684 | + } |
|
| 4685 | + } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4686 | + $data['location_id'] = (int)$location->location_id; |
|
| 4687 | 4687 | |
| 4688 | - if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 4689 | - $data['location_id'] = (int)$location->location_id; |
|
| 4690 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 4691 | - $data['location_id'] = (int)$location->location_id; |
|
| 4692 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 4693 | - $data['location_id'] = (int)$location->location_id; |
|
| 4694 | - } |
|
| 4688 | + if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 4689 | + $data['location_id'] = (int)$location->location_id; |
|
| 4690 | + } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 4691 | + $data['location_id'] = (int)$location->location_id; |
|
| 4692 | + } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 4693 | + $data['location_id'] = (int)$location->location_id; |
|
| 4694 | + } |
|
| 4695 | 4695 | |
| 4696 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4697 | - $updated++; |
|
| 4698 | - } else {
|
|
| 4699 | - $invalid++; |
|
| 4700 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4701 | - } |
|
| 4702 | - } else {
|
|
| 4703 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4704 | - $created++; |
|
| 4705 | - } else {
|
|
| 4706 | - $invalid++; |
|
| 4707 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4708 | - } |
|
| 4709 | - } |
|
| 4710 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4711 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4712 | - $skipped++; |
|
| 4713 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4714 | - $skipped++; |
|
| 4715 | - } else {
|
|
| 4716 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4717 | - $created++; |
|
| 4718 | - } else {
|
|
| 4719 | - $invalid++; |
|
| 4720 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4721 | - } |
|
| 4722 | - } |
|
| 4723 | - } else {
|
|
| 4724 | - $invalid++; |
|
| 4725 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4726 | - } |
|
| 4727 | - } |
|
| 4728 | - } |
|
| 4729 | - } |
|
| 4696 | + if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4697 | + $updated++; |
|
| 4698 | + } else {
|
|
| 4699 | + $invalid++; |
|
| 4700 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4701 | + } |
|
| 4702 | + } else {
|
|
| 4703 | + if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4704 | + $created++; |
|
| 4705 | + } else {
|
|
| 4706 | + $invalid++; |
|
| 4707 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4708 | + } |
|
| 4709 | + } |
|
| 4710 | + } elseif ( $import_choice == 'skip' ) {
|
|
| 4711 | + if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4712 | + $skipped++; |
|
| 4713 | + } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4714 | + $skipped++; |
|
| 4715 | + } else {
|
|
| 4716 | + if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4717 | + $created++; |
|
| 4718 | + } else {
|
|
| 4719 | + $invalid++; |
|
| 4720 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4721 | + } |
|
| 4722 | + } |
|
| 4723 | + } else {
|
|
| 4724 | + $invalid++; |
|
| 4725 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4726 | + } |
|
| 4727 | + } |
|
| 4728 | + } |
|
| 4729 | + } |
|
| 4730 | 4730 | |
| 4731 | - $json = array(); |
|
| 4732 | - $json['processed'] = $limit; |
|
| 4733 | - $json['created'] = $created; |
|
| 4734 | - $json['updated'] = $updated; |
|
| 4735 | - $json['skipped'] = $skipped; |
|
| 4736 | - $json['invalid'] = $invalid; |
|
| 4737 | - $json['images'] = $images; |
|
| 4731 | + $json = array(); |
|
| 4732 | + $json['processed'] = $limit; |
|
| 4733 | + $json['created'] = $created; |
|
| 4734 | + $json['updated'] = $updated; |
|
| 4735 | + $json['skipped'] = $skipped; |
|
| 4736 | + $json['invalid'] = $invalid; |
|
| 4737 | + $json['images'] = $images; |
|
| 4738 | 4738 | |
| 4739 | - wp_send_json( $json ); |
|
| 4740 | - } else if ( $task == 'import_hood' ) {
|
|
| 4741 | - if (!empty($file)) {
|
|
| 4742 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4739 | + wp_send_json( $json ); |
|
| 4740 | + } else if ( $task == 'import_hood' ) {
|
|
| 4741 | + if (!empty($file)) {
|
|
| 4742 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4743 | 4743 | |
| 4744 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4745 | - $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4746 | - wp_send_json( $json ); |
|
| 4747 | - } |
|
| 4744 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4745 | + $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4746 | + wp_send_json( $json ); |
|
| 4747 | + } |
|
| 4748 | 4748 | |
| 4749 | - $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
|
| 4750 | - $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 4751 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4752 | - $index = $processed + $i; |
|
| 4749 | + $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
|
| 4750 | + $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 4751 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4752 | + $index = $processed + $i; |
|
| 4753 | 4753 | |
| 4754 | - if (isset($file[$index])) {
|
|
| 4755 | - $row = $file[$index]; |
|
| 4756 | - $row = array_map( 'trim', $row ); |
|
| 4757 | - $data = array(); |
|
| 4754 | + if (isset($file[$index])) {
|
|
| 4755 | + $row = $file[$index]; |
|
| 4756 | + $row = array_map( 'trim', $row ); |
|
| 4757 | + $data = array(); |
|
| 4758 | 4758 | |
| 4759 | - foreach ($columns as $c => $column) {
|
|
| 4760 | - if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
|
|
| 4761 | - $data[$column] = sanitize_text_field($row[$c]); |
|
| 4762 | - } |
|
| 4763 | - } |
|
| 4759 | + foreach ($columns as $c => $column) {
|
|
| 4760 | + if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
|
|
| 4761 | + $data[$column] = sanitize_text_field($row[$c]); |
|
| 4762 | + } |
|
| 4763 | + } |
|
| 4764 | 4764 | |
| 4765 | - if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4766 | - $invalid++; |
|
| 4767 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4768 | - continue; |
|
| 4769 | - } |
|
| 4765 | + if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4766 | + $invalid++; |
|
| 4767 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4768 | + continue; |
|
| 4769 | + } |
|
| 4770 | 4770 | |
| 4771 | - $location_info = array(); |
|
| 4772 | - if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 4773 | - $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 4774 | - } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
|
| 4775 | - $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
|
| 4776 | - } |
|
| 4771 | + $location_info = array(); |
|
| 4772 | + if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 4773 | + $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 4774 | + } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
|
| 4775 | + $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
|
| 4776 | + } |
|
| 4777 | 4777 | |
| 4778 | - if (empty($location_info)) {
|
|
| 4779 | - $invalid++; |
|
| 4780 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4781 | - continue; |
|
| 4782 | - } |
|
| 4778 | + if (empty($location_info)) {
|
|
| 4779 | + $invalid++; |
|
| 4780 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4781 | + continue; |
|
| 4782 | + } |
|
| 4783 | 4783 | |
| 4784 | - $location_id = $location_info->location_id; |
|
| 4784 | + $location_id = $location_info->location_id; |
|
| 4785 | 4785 | |
| 4786 | - $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0; |
|
| 4786 | + $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0; |
|
| 4787 | 4787 | |
| 4788 | - $hood_data = array(); |
|
| 4789 | - $hood_data['hood_name'] = $data['neighbourhood_name']; |
|
| 4790 | - $hood_data['hood_slug'] = $data['neighbourhood_slug']; |
|
| 4791 | - $hood_data['hood_latitude'] = $data['latitude']; |
|
| 4792 | - $hood_data['hood_longitude'] = $data['longitude']; |
|
| 4793 | - $hood_data['hood_location_id'] = $location_id; |
|
| 4788 | + $hood_data = array(); |
|
| 4789 | + $hood_data['hood_name'] = $data['neighbourhood_name']; |
|
| 4790 | + $hood_data['hood_slug'] = $data['neighbourhood_slug']; |
|
| 4791 | + $hood_data['hood_latitude'] = $data['latitude']; |
|
| 4792 | + $hood_data['hood_longitude'] = $data['longitude']; |
|
| 4793 | + $hood_data['hood_location_id'] = $location_id; |
|
| 4794 | 4794 | |
| 4795 | - if ( $import_choice == 'update' ) {
|
|
| 4796 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4797 | - $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 4795 | + if ( $import_choice == 'update' ) {
|
|
| 4796 | + if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4797 | + $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 4798 | 4798 | |
| 4799 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4800 | - $updated++; |
|
| 4801 | - } else {
|
|
| 4802 | - $invalid++; |
|
| 4803 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4804 | - } |
|
| 4805 | - } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4806 | - $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 4799 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4800 | + $updated++; |
|
| 4801 | + } else {
|
|
| 4802 | + $invalid++; |
|
| 4803 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4804 | + } |
|
| 4805 | + } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4806 | + $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 4807 | 4807 | |
| 4808 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4809 | - $updated++; |
|
| 4810 | - } else {
|
|
| 4811 | - $invalid++; |
|
| 4812 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4813 | - } |
|
| 4814 | - } else {
|
|
| 4815 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4816 | - $created++; |
|
| 4817 | - } else {
|
|
| 4818 | - $invalid++; |
|
| 4819 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4820 | - } |
|
| 4821 | - } |
|
| 4822 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4823 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4824 | - $skipped++; |
|
| 4825 | - } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4826 | - $skipped++; |
|
| 4827 | - } else {
|
|
| 4808 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4809 | + $updated++; |
|
| 4810 | + } else {
|
|
| 4811 | + $invalid++; |
|
| 4812 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4813 | + } |
|
| 4814 | + } else {
|
|
| 4815 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4816 | + $created++; |
|
| 4817 | + } else {
|
|
| 4818 | + $invalid++; |
|
| 4819 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4820 | + } |
|
| 4821 | + } |
|
| 4822 | + } elseif ( $import_choice == 'skip' ) {
|
|
| 4823 | + if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4824 | + $skipped++; |
|
| 4825 | + } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4826 | + $skipped++; |
|
| 4827 | + } else {
|
|
| 4828 | 4828 | |
| 4829 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4830 | - $created++; |
|
| 4831 | - } else {
|
|
| 4832 | - $invalid++; |
|
| 4833 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4834 | - } |
|
| 4835 | - } |
|
| 4836 | - } else {
|
|
| 4837 | - $invalid++; |
|
| 4838 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4839 | - } |
|
| 4840 | - } |
|
| 4841 | - } |
|
| 4842 | - } |
|
| 4829 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4830 | + $created++; |
|
| 4831 | + } else {
|
|
| 4832 | + $invalid++; |
|
| 4833 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4834 | + } |
|
| 4835 | + } |
|
| 4836 | + } else {
|
|
| 4837 | + $invalid++; |
|
| 4838 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4839 | + } |
|
| 4840 | + } |
|
| 4841 | + } |
|
| 4842 | + } |
|
| 4843 | 4843 | |
| 4844 | - $json = array(); |
|
| 4845 | - $json['processed'] = $limit; |
|
| 4846 | - $json['created'] = $created; |
|
| 4847 | - $json['updated'] = $updated; |
|
| 4848 | - $json['skipped'] = $skipped; |
|
| 4849 | - $json['invalid'] = $invalid; |
|
| 4850 | - $json['images'] = $images; |
|
| 4844 | + $json = array(); |
|
| 4845 | + $json['processed'] = $limit; |
|
| 4846 | + $json['created'] = $created; |
|
| 4847 | + $json['updated'] = $updated; |
|
| 4848 | + $json['skipped'] = $skipped; |
|
| 4849 | + $json['invalid'] = $invalid; |
|
| 4850 | + $json['images'] = $images; |
|
| 4851 | 4851 | |
| 4852 | - wp_send_json( $json ); |
|
| 4853 | - } |
|
| 4854 | - } |
|
| 4855 | - break; |
|
| 4856 | - case 'import_finish':{
|
|
| 4857 | - /** |
|
| 4858 | - * Run an action when an import finishes. |
|
| 4859 | - * |
|
| 4860 | - * This action can be used to fire functions after an import ends. |
|
| 4861 | - * |
|
| 4862 | - * @since 1.5.3 |
|
| 4863 | - * @package GeoDirectory |
|
| 4864 | - */ |
|
| 4865 | - do_action('geodir_import_finished');
|
|
| 4866 | - } |
|
| 4867 | - break; |
|
| 4852 | + wp_send_json( $json ); |
|
| 4853 | + } |
|
| 4854 | + } |
|
| 4855 | + break; |
|
| 4856 | + case 'import_finish':{
|
|
| 4857 | + /** |
|
| 4858 | + * Run an action when an import finishes. |
|
| 4859 | + * |
|
| 4860 | + * This action can be used to fire functions after an import ends. |
|
| 4861 | + * |
|
| 4862 | + * @since 1.5.3 |
|
| 4863 | + * @package GeoDirectory |
|
| 4864 | + */ |
|
| 4865 | + do_action('geodir_import_finished');
|
|
| 4866 | + } |
|
| 4867 | + break; |
|
| 4868 | 4868 | |
| 4869 | - } |
|
| 4870 | - echo '0'; |
|
| 4871 | - gd_die(); |
|
| 4869 | + } |
|
| 4870 | + echo '0'; |
|
| 4871 | + gd_die(); |
|
| 4872 | 4872 | } |
| 4873 | 4873 | |
| 4874 | 4874 | /** |
@@ -4912,12 +4912,12 @@ discard block |
||
| 4912 | 4912 | $args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args ); |
| 4913 | 4913 | } |
| 4914 | 4914 | |
| 4915 | - if( !empty( $term ) ) {
|
|
| 4915 | + if( !empty( $term ) ) {
|
|
| 4916 | 4916 | $result = wp_insert_term( $term, $taxonomy, $args ); |
| 4917 | - if( !is_wp_error( $result ) ) {
|
|
| 4918 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4919 | - } |
|
| 4920 | - } |
|
| 4917 | + if( !is_wp_error( $result ) ) {
|
|
| 4918 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4919 | + } |
|
| 4920 | + } |
|
| 4921 | 4921 | |
| 4922 | 4922 | return false; |
| 4923 | 4923 | } |
@@ -4963,16 +4963,16 @@ discard block |
||
| 4963 | 4963 | $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
| 4964 | 4964 | |
| 4965 | 4965 | if( !is_wp_error( $result ) ) {
|
| 4966 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4967 | - } |
|
| 4966 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4967 | + } |
|
| 4968 | 4968 | } else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
| 4969 | 4969 | $term_data['term_id'] = $term_info['term_id']; |
| 4970 | 4970 | |
| 4971 | 4971 | $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
| 4972 | 4972 | |
| 4973 | 4973 | if( !is_wp_error( $result ) ) {
|
| 4974 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4975 | - } |
|
| 4974 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4975 | + } |
|
| 4976 | 4976 | } else {
|
| 4977 | 4977 | return geodir_imex_insert_term( $taxonomy, $term_data ); |
| 4978 | 4978 | } |
@@ -4994,47 +4994,47 @@ discard block |
||
| 4994 | 4994 | * @return int Posts count. |
| 4995 | 4995 | */ |
| 4996 | 4996 | function geodir_get_posts_count( $post_type ) {
|
| 4997 | - global $wpdb, $plugin_prefix; |
|
| 4997 | + global $wpdb, $plugin_prefix; |
|
| 4998 | 4998 | |
| 4999 | - if ( !post_type_exists( $post_type ) ) {
|
|
| 5000 | - return 0; |
|
| 5001 | - } |
|
| 4999 | + if ( !post_type_exists( $post_type ) ) {
|
|
| 5000 | + return 0; |
|
| 5001 | + } |
|
| 5002 | 5002 | |
| 5003 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5003 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5004 | 5004 | |
| 5005 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5006 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5007 | - $where_statuses = ''; |
|
| 5008 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5009 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5010 | - } |
|
| 5005 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5006 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5007 | + $where_statuses = ''; |
|
| 5008 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5009 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5010 | + } |
|
| 5011 | 5011 | |
| 5012 | - /** |
|
| 5013 | - * Filter the SQL where clause part to filter posts count in import/export. |
|
| 5014 | - * |
|
| 5015 | - * @since 1.6.4 |
|
| 5016 | - * @package GeoDirectory |
|
| 5017 | - * |
|
| 5018 | - * @param string $where SQL where clause part. |
|
| 5019 | - */ |
|
| 5020 | - $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5021 | - |
|
| 5022 | - $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5023 | - |
|
| 5024 | - $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5012 | + /** |
|
| 5013 | + * Filter the SQL where clause part to filter posts count in import/export. |
|
| 5014 | + * |
|
| 5015 | + * @since 1.6.4 |
|
| 5016 | + * @package GeoDirectory |
|
| 5017 | + * |
|
| 5018 | + * @param string $where SQL where clause part. |
|
| 5019 | + */ |
|
| 5020 | + $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5021 | + |
|
| 5022 | + $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5023 | + |
|
| 5024 | + $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5025 | 5025 | |
| 5026 | - /** |
|
| 5027 | - * Modify returned post counts for the current post type. |
|
| 5028 | - * |
|
| 5029 | - * @since 1.4.6 |
|
| 5030 | - * @package GeoDirectory |
|
| 5031 | - * |
|
| 5032 | - * @param int $posts_count Post counts. |
|
| 5033 | - * @param string $post_type Post type. |
|
| 5034 | - */ |
|
| 5035 | - $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5036 | - |
|
| 5037 | - return $posts_count; |
|
| 5026 | + /** |
|
| 5027 | + * Modify returned post counts for the current post type. |
|
| 5028 | + * |
|
| 5029 | + * @since 1.4.6 |
|
| 5030 | + * @package GeoDirectory |
|
| 5031 | + * |
|
| 5032 | + * @param int $posts_count Post counts. |
|
| 5033 | + * @param string $post_type Post type. |
|
| 5034 | + */ |
|
| 5035 | + $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5036 | + |
|
| 5037 | + return $posts_count; |
|
| 5038 | 5038 | } |
| 5039 | 5039 | |
| 5040 | 5040 | /** |
@@ -5063,10 +5063,10 @@ discard block |
||
| 5063 | 5063 | |
| 5064 | 5064 | if ( !empty( $posts ) ) {
|
| 5065 | 5065 | $is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' ); |
| 5066 | - $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 5067 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5068 | - $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
|
| 5069 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5066 | + $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 5067 | + $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5068 | + $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
|
| 5069 | + $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5070 | 5070 | |
| 5071 | 5071 | $csv_row = array(); |
| 5072 | 5072 | $csv_row[] = 'post_id'; |
@@ -5098,7 +5098,7 @@ discard block |
||
| 5098 | 5098 | } |
| 5099 | 5099 | $csv_row[] = 'post_status'; |
| 5100 | 5100 | $csv_row[] = 'is_featured'; |
| 5101 | - // Export claim listing field |
|
| 5101 | + // Export claim listing field |
|
| 5102 | 5102 | if ($is_claim_active) {
|
| 5103 | 5103 | $csv_row[] = 'claimed'; |
| 5104 | 5104 | } |
@@ -5107,7 +5107,7 @@ discard block |
||
| 5107 | 5107 | $csv_row[] = 'alive_days'; |
| 5108 | 5108 | $csv_row[] = 'expire_date'; |
| 5109 | 5109 | } |
| 5110 | - $csv_row[] = 'post_date'; |
|
| 5110 | + $csv_row[] = 'post_date'; |
|
| 5111 | 5111 | $csv_row[] = 'post_address'; |
| 5112 | 5112 | $csv_row[] = 'post_city'; |
| 5113 | 5113 | $csv_row[] = 'post_region'; |
@@ -5115,11 +5115,11 @@ discard block |
||
| 5115 | 5115 | $csv_row[] = 'post_zip'; |
| 5116 | 5116 | $csv_row[] = 'post_latitude'; |
| 5117 | 5117 | $csv_row[] = 'post_longitude'; |
| 5118 | - if ($neighbourhood_active) {
|
|
| 5119 | - $csv_row[] = 'post_neighbourhood'; |
|
| 5120 | - $csv_row[] = 'neighbourhood_latitude'; |
|
| 5121 | - $csv_row[] = 'neighbourhood_longitude'; |
|
| 5122 | - } |
|
| 5118 | + if ($neighbourhood_active) {
|
|
| 5119 | + $csv_row[] = 'post_neighbourhood'; |
|
| 5120 | + $csv_row[] = 'neighbourhood_latitude'; |
|
| 5121 | + $csv_row[] = 'neighbourhood_longitude'; |
|
| 5122 | + } |
|
| 5123 | 5123 | $csv_row[] = 'geodir_timing'; |
| 5124 | 5124 | $csv_row[] = 'geodir_contact'; |
| 5125 | 5125 | $csv_row[] = 'geodir_email'; |
@@ -5151,21 +5151,21 @@ discard block |
||
| 5151 | 5151 | $csv_row[] = 'franchise'; |
| 5152 | 5152 | } |
| 5153 | 5153 | |
| 5154 | - /** |
|
| 5155 | - * Filter columns field names of gd export listings csv. |
|
| 5156 | - * |
|
| 5157 | - * @since 1.6.5 |
|
| 5158 | - * @package GeoDirectory |
|
| 5159 | - * |
|
| 5160 | - * @param array $csv_row Column names being exported in csv. |
|
| 5161 | - * @param string $post_type The post type. |
|
| 5162 | - */ |
|
| 5163 | - $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
|
|
| 5154 | + /** |
|
| 5155 | + * Filter columns field names of gd export listings csv. |
|
| 5156 | + * |
|
| 5157 | + * @since 1.6.5 |
|
| 5158 | + * @package GeoDirectory |
|
| 5159 | + * |
|
| 5160 | + * @param array $csv_row Column names being exported in csv. |
|
| 5161 | + * @param string $post_type The post type. |
|
| 5162 | + */ |
|
| 5163 | + $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
|
|
| 5164 | 5164 | |
| 5165 | 5165 | $csv_rows[] = $csv_row; |
| 5166 | 5166 | |
| 5167 | 5167 | $images_count = 5; |
| 5168 | - $xx=0; |
|
| 5168 | + $xx=0; |
|
| 5169 | 5169 | foreach ( $posts as $post ) {$xx++;
|
| 5170 | 5170 | $post_id = $post['ID']; |
| 5171 | 5171 | |
@@ -5296,15 +5296,15 @@ discard block |
||
| 5296 | 5296 | } |
| 5297 | 5297 | $csv_row[] = $post_info['post_status']; // post_status |
| 5298 | 5298 | $csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
| 5299 | - if ($is_claim_active) {
|
|
| 5300 | - $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5301 | - } |
|
| 5299 | + if ($is_claim_active) {
|
|
| 5300 | + $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5301 | + } |
|
| 5302 | 5302 | if ($is_payment_plugin) {
|
| 5303 | 5303 | $csv_row[] = (int)$post_info['package_id']; // package_id |
| 5304 | 5304 | $csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days |
| 5305 | 5305 | $csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
|
| 5306 | 5306 | } |
| 5307 | - $csv_row[] = $post_info['post_date']; // post_date |
|
| 5307 | + $csv_row[] = $post_info['post_date']; // post_date |
|
| 5308 | 5308 | $csv_row[] = stripslashes($post_info['post_address']); // post_address |
| 5309 | 5309 | $csv_row[] = stripslashes($post_info['post_city']); // post_city |
| 5310 | 5310 | $csv_row[] = stripslashes($post_info['post_region']); // post_region |
@@ -5312,21 +5312,21 @@ discard block |
||
| 5312 | 5312 | $csv_row[] = stripslashes($post_info['post_zip']); // post_zip |
| 5313 | 5313 | $csv_row[] = $post_info['post_latitude']; // post_latitude |
| 5314 | 5314 | $csv_row[] = $post_info['post_longitude']; // post_longitude |
| 5315 | - if ($neighbourhood_active) {
|
|
| 5316 | - $post_neighbourhood = ''; |
|
| 5317 | - $neighbourhood_latitude = ''; |
|
| 5318 | - $neighbourhood_longitude = ''; |
|
| 5319 | - if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
|
|
| 5320 | - if (!empty($hood_info)) {
|
|
| 5321 | - $post_neighbourhood = $hood_info->hood_name; |
|
| 5322 | - $neighbourhood_latitude = $hood_info->hood_latitude; |
|
| 5323 | - $neighbourhood_longitude = $hood_info->hood_longitude; |
|
| 5324 | - } |
|
| 5325 | - } |
|
| 5326 | - $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood |
|
| 5327 | - $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude |
|
| 5328 | - $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude |
|
| 5329 | - } |
|
| 5315 | + if ($neighbourhood_active) {
|
|
| 5316 | + $post_neighbourhood = ''; |
|
| 5317 | + $neighbourhood_latitude = ''; |
|
| 5318 | + $neighbourhood_longitude = ''; |
|
| 5319 | + if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
|
|
| 5320 | + if (!empty($hood_info)) {
|
|
| 5321 | + $post_neighbourhood = $hood_info->hood_name; |
|
| 5322 | + $neighbourhood_latitude = $hood_info->hood_latitude; |
|
| 5323 | + $neighbourhood_longitude = $hood_info->hood_longitude; |
|
| 5324 | + } |
|
| 5325 | + } |
|
| 5326 | + $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood |
|
| 5327 | + $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude |
|
| 5328 | + $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude |
|
| 5329 | + } |
|
| 5330 | 5330 | $csv_row[] = stripslashes($post_info['geodir_timing']); // geodir_timing |
| 5331 | 5331 | $csv_row[] = stripslashes($post_info['geodir_contact']); // geodir_contact |
| 5332 | 5332 | $csv_row[] = stripslashes($post_info['geodir_email']); // geodir_email |
@@ -5366,16 +5366,16 @@ discard block |
||
| 5366 | 5366 | $csv_row[] = (int)$franchise; // franchise id |
| 5367 | 5367 | } |
| 5368 | 5368 | |
| 5369 | - /** |
|
| 5370 | - * Filter columns values of gd export listings csv file |
|
| 5371 | - * |
|
| 5372 | - * @since 1.6.5 |
|
| 5373 | - * @package GeoDirectory |
|
| 5374 | - * |
|
| 5375 | - * @param array $csv_row Field values being exported in csv. |
|
| 5376 | - * @param array $post_info The post info. |
|
| 5377 | - */ |
|
| 5378 | - $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
|
| 5369 | + /** |
|
| 5370 | + * Filter columns values of gd export listings csv file |
|
| 5371 | + * |
|
| 5372 | + * @since 1.6.5 |
|
| 5373 | + * @package GeoDirectory |
|
| 5374 | + * |
|
| 5375 | + * @param array $csv_row Field values being exported in csv. |
|
| 5376 | + * @param array $post_info The post info. |
|
| 5377 | + */ |
|
| 5378 | + $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
|
| 5379 | 5379 | |
| 5380 | 5380 | for ( $c = 0; $c < $images_count; $c++ ) {
|
| 5381 | 5381 | $csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE |
@@ -5408,64 +5408,64 @@ discard block |
||
| 5408 | 5408 | * @return array Array of posts data. |
| 5409 | 5409 | */ |
| 5410 | 5410 | function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
| 5411 | - global $wpdb, $plugin_prefix; |
|
| 5411 | + global $wpdb, $plugin_prefix; |
|
| 5412 | 5412 | |
| 5413 | - if ( ! post_type_exists( $post_type ) ) |
|
| 5414 | - return new stdClass; |
|
| 5413 | + if ( ! post_type_exists( $post_type ) ) |
|
| 5414 | + return new stdClass; |
|
| 5415 | 5415 | |
| 5416 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5416 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5417 | 5417 | |
| 5418 | - $limit = ''; |
|
| 5419 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5420 | - $offset = ( $page_no - 1 ) * $per_page; |
|
| 5418 | + $limit = ''; |
|
| 5419 | + if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5420 | + $offset = ( $page_no - 1 ) * $per_page; |
|
| 5421 | 5421 | |
| 5422 | - if ( $offset > 0 ) {
|
|
| 5423 | - $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5424 | - } else {
|
|
| 5425 | - $limit = " LIMIT " . $per_page; |
|
| 5426 | - } |
|
| 5427 | - } |
|
| 5422 | + if ( $offset > 0 ) {
|
|
| 5423 | + $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5424 | + } else {
|
|
| 5425 | + $limit = " LIMIT " . $per_page; |
|
| 5426 | + } |
|
| 5427 | + } |
|
| 5428 | 5428 | |
| 5429 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5430 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5431 | - $where_statuses = ''; |
|
| 5432 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5433 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5434 | - } |
|
| 5429 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5430 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5431 | + $where_statuses = ''; |
|
| 5432 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5433 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5434 | + } |
|
| 5435 | 5435 | |
| 5436 | - /** |
|
| 5437 | - * Filter the SQL where clause part to filter posts in import/export. |
|
| 5438 | - * |
|
| 5439 | - * @since 1.6.4 |
|
| 5440 | - * @package GeoDirectory |
|
| 5441 | - * |
|
| 5442 | - * @param string $where SQL where clause part. |
|
| 5443 | - */ |
|
| 5444 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5445 | - |
|
| 5446 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5447 | - /** |
|
| 5448 | - * Modify returned posts SQL query for the current post type. |
|
| 5449 | - * |
|
| 5450 | - * @since 1.4.6 |
|
| 5451 | - * @package GeoDirectory |
|
| 5452 | - * |
|
| 5453 | - * @param int $query The SQL query. |
|
| 5454 | - * @param string $post_type Post type. |
|
| 5455 | - */ |
|
| 5456 | - $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5457 | - $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5458 | - |
|
| 5459 | - /** |
|
| 5460 | - * Modify returned post results for the current post type. |
|
| 5461 | - * |
|
| 5462 | - * @since 1.4.6 |
|
| 5463 | - * @package GeoDirectory |
|
| 5464 | - * |
|
| 5465 | - * @param object $results An object containing all post ids. |
|
| 5466 | - * @param string $post_type Post type. |
|
| 5467 | - */ |
|
| 5468 | - return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5436 | + /** |
|
| 5437 | + * Filter the SQL where clause part to filter posts in import/export. |
|
| 5438 | + * |
|
| 5439 | + * @since 1.6.4 |
|
| 5440 | + * @package GeoDirectory |
|
| 5441 | + * |
|
| 5442 | + * @param string $where SQL where clause part. |
|
| 5443 | + */ |
|
| 5444 | + $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5445 | + |
|
| 5446 | + $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5447 | + /** |
|
| 5448 | + * Modify returned posts SQL query for the current post type. |
|
| 5449 | + * |
|
| 5450 | + * @since 1.4.6 |
|
| 5451 | + * @package GeoDirectory |
|
| 5452 | + * |
|
| 5453 | + * @param int $query The SQL query. |
|
| 5454 | + * @param string $post_type Post type. |
|
| 5455 | + */ |
|
| 5456 | + $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5457 | + $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5458 | + |
|
| 5459 | + /** |
|
| 5460 | + * Modify returned post results for the current post type. |
|
| 5461 | + * |
|
| 5462 | + * @since 1.4.6 |
|
| 5463 | + * @package GeoDirectory |
|
| 5464 | + * |
|
| 5465 | + * @param object $results An object containing all post ids. |
|
| 5466 | + * @param string $post_type Post type. |
|
| 5467 | + */ |
|
| 5468 | + return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5469 | 5469 | } |
| 5470 | 5470 | |
| 5471 | 5471 | /** |
@@ -5484,26 +5484,26 @@ discard block |
||
| 5484 | 5484 | * @return string The SQL query. |
| 5485 | 5485 | */ |
| 5486 | 5486 | function geodir_imex_get_events_query( $query, $post_type ) {
|
| 5487 | - if ( $post_type == 'gd_event' ) {
|
|
| 5488 | - global $wpdb, $plugin_prefix; |
|
| 5487 | + if ( $post_type == 'gd_event' ) {
|
|
| 5488 | + global $wpdb, $plugin_prefix; |
|
| 5489 | 5489 | |
| 5490 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5491 | - $schedule_table = EVENT_SCHEDULE; |
|
| 5490 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5491 | + $schedule_table = EVENT_SCHEDULE; |
|
| 5492 | 5492 | |
| 5493 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5494 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5495 | - $where_statuses = ''; |
|
| 5496 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5497 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5498 | - } |
|
| 5493 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5494 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5495 | + $where_statuses = ''; |
|
| 5496 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5497 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5498 | + } |
|
| 5499 | 5499 | |
| 5500 | - /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
|
| 5501 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5500 | + /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
|
| 5501 | + $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5502 | 5502 | |
| 5503 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5504 | - } |
|
| 5503 | + $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5504 | + } |
|
| 5505 | 5505 | |
| 5506 | - return $query; |
|
| 5506 | + return $query; |
|
| 5507 | 5507 | } |
| 5508 | 5508 | |
| 5509 | 5509 | /** |
@@ -5525,36 +5525,36 @@ discard block |
||
| 5525 | 5525 | * @return int Total terms count. |
| 5526 | 5526 | */ |
| 5527 | 5527 | function geodir_get_terms_count( $post_type ) {
|
| 5528 | - $args = array( 'hide_empty' => 0 ); |
|
| 5528 | + $args = array( 'hide_empty' => 0 ); |
|
| 5529 | 5529 | |
| 5530 | - remove_all_filters( 'get_terms' ); |
|
| 5530 | + remove_all_filters( 'get_terms' ); |
|
| 5531 | 5531 | |
| 5532 | - $taxonomy = $post_type . 'category'; |
|
| 5532 | + $taxonomy = $post_type . 'category'; |
|
| 5533 | 5533 | |
| 5534 | - // WPML |
|
| 5535 | - $is_wpml = geodir_is_wpml(); |
|
| 5536 | - $active_lang = 'all'; |
|
| 5537 | - if ( $is_wpml ) {
|
|
| 5538 | - global $sitepress; |
|
| 5539 | - $active_lang = $sitepress->get_current_language(); |
|
| 5534 | + // WPML |
|
| 5535 | + $is_wpml = geodir_is_wpml(); |
|
| 5536 | + $active_lang = 'all'; |
|
| 5537 | + if ( $is_wpml ) {
|
|
| 5538 | + global $sitepress; |
|
| 5539 | + $active_lang = $sitepress->get_current_language(); |
|
| 5540 | 5540 | |
| 5541 | - if ( $active_lang != 'all' ) {
|
|
| 5542 | - $sitepress->switch_lang( 'all', true ); |
|
| 5543 | - } |
|
| 5544 | - } |
|
| 5545 | - // WPML |
|
| 5541 | + if ( $active_lang != 'all' ) {
|
|
| 5542 | + $sitepress->switch_lang( 'all', true ); |
|
| 5543 | + } |
|
| 5544 | + } |
|
| 5545 | + // WPML |
|
| 5546 | 5546 | |
| 5547 | - $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5547 | + $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5548 | 5548 | |
| 5549 | - // WPML |
|
| 5550 | - if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5551 | - global $sitepress; |
|
| 5552 | - $sitepress->switch_lang( $active_lang, true ); |
|
| 5553 | - } |
|
| 5554 | - // WPML |
|
| 5555 | - $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5549 | + // WPML |
|
| 5550 | + if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5551 | + global $sitepress; |
|
| 5552 | + $sitepress->switch_lang( $active_lang, true ); |
|
| 5553 | + } |
|
| 5554 | + // WPML |
|
| 5555 | + $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5556 | 5556 | |
| 5557 | - return $count_terms; |
|
| 5557 | + return $count_terms; |
|
| 5558 | 5558 | } |
| 5559 | 5559 | |
| 5560 | 5560 | /** |
@@ -5593,11 +5593,11 @@ discard block |
||
| 5593 | 5593 | $csv_row[] = 'cat_posttype'; |
| 5594 | 5594 | $csv_row[] = 'cat_parent'; |
| 5595 | 5595 | $csv_row[] = 'cat_schema'; |
| 5596 | - // WPML |
|
| 5596 | + // WPML |
|
| 5597 | 5597 | $is_wpml = geodir_is_wpml(); |
| 5598 | 5598 | if ($is_wpml) {
|
| 5599 | 5599 | $csv_row[] = 'cat_language'; |
| 5600 | - $csv_row[] = 'cat_id_original'; |
|
| 5600 | + $csv_row[] = 'cat_id_original'; |
|
| 5601 | 5601 | } |
| 5602 | 5602 | // WPML |
| 5603 | 5603 | $csv_row[] = 'cat_description'; |
@@ -5627,10 +5627,10 @@ discard block |
||
| 5627 | 5627 | $csv_row[] = $post_type; |
| 5628 | 5628 | $csv_row[] = $cat_parent; |
| 5629 | 5629 | $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type ); |
| 5630 | - // WPML |
|
| 5630 | + // WPML |
|
| 5631 | 5631 | if ($is_wpml) {
|
| 5632 | 5632 | $csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy ); |
| 5633 | - $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5633 | + $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5634 | 5634 | } |
| 5635 | 5635 | // WPML |
| 5636 | 5636 | $csv_row[] = $term->description; |
@@ -6048,43 +6048,43 @@ discard block |
||
| 6048 | 6048 | * @param string $status Post status. |
| 6049 | 6049 | */ |
| 6050 | 6050 | function geodir_create_page($slug, $option, $page_title = '', $page_content = '', $post_parent = 0, $status = 'publish') {
|
| 6051 | - global $wpdb, $current_user; |
|
| 6052 | - |
|
| 6053 | - $option_value = get_option($option); |
|
| 6054 | - |
|
| 6055 | - if ($option_value > 0) : |
|
| 6056 | - if (get_post($option_value)) : |
|
| 6057 | - // Page exists |
|
| 6058 | - return; |
|
| 6059 | - endif; |
|
| 6060 | - endif; |
|
| 6061 | - |
|
| 6062 | - $page_found = $wpdb->get_var( |
|
| 6063 | - $wpdb->prepare( |
|
| 6064 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6065 | - array($slug) |
|
| 6066 | - ) |
|
| 6067 | - ); |
|
| 6068 | - |
|
| 6069 | - if ($page_found) : |
|
| 6070 | - // Page exists |
|
| 6071 | - if (!$option_value) update_option($option, $page_found); |
|
| 6072 | - return; |
|
| 6073 | - endif; |
|
| 6074 | - |
|
| 6075 | - $page_data = array( |
|
| 6076 | - 'post_status' => $status, |
|
| 6077 | - 'post_type' => 'page', |
|
| 6078 | - 'post_author' => $current_user->ID, |
|
| 6079 | - 'post_name' => $slug, |
|
| 6080 | - 'post_title' => $page_title, |
|
| 6081 | - 'post_content' => $page_content, |
|
| 6082 | - 'post_parent' => $post_parent, |
|
| 6083 | - 'comment_status' => 'closed' |
|
| 6084 | - ); |
|
| 6085 | - $page_id = wp_insert_post($page_data); |
|
| 6086 | - |
|
| 6087 | - add_option($option, $page_id); |
|
| 6051 | + global $wpdb, $current_user; |
|
| 6052 | + |
|
| 6053 | + $option_value = get_option($option); |
|
| 6054 | + |
|
| 6055 | + if ($option_value > 0) : |
|
| 6056 | + if (get_post($option_value)) : |
|
| 6057 | + // Page exists |
|
| 6058 | + return; |
|
| 6059 | + endif; |
|
| 6060 | + endif; |
|
| 6061 | + |
|
| 6062 | + $page_found = $wpdb->get_var( |
|
| 6063 | + $wpdb->prepare( |
|
| 6064 | + "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6065 | + array($slug) |
|
| 6066 | + ) |
|
| 6067 | + ); |
|
| 6068 | + |
|
| 6069 | + if ($page_found) : |
|
| 6070 | + // Page exists |
|
| 6071 | + if (!$option_value) update_option($option, $page_found); |
|
| 6072 | + return; |
|
| 6073 | + endif; |
|
| 6074 | + |
|
| 6075 | + $page_data = array( |
|
| 6076 | + 'post_status' => $status, |
|
| 6077 | + 'post_type' => 'page', |
|
| 6078 | + 'post_author' => $current_user->ID, |
|
| 6079 | + 'post_name' => $slug, |
|
| 6080 | + 'post_title' => $page_title, |
|
| 6081 | + 'post_content' => $page_content, |
|
| 6082 | + 'post_parent' => $post_parent, |
|
| 6083 | + 'comment_status' => 'closed' |
|
| 6084 | + ); |
|
| 6085 | + $page_id = wp_insert_post($page_data); |
|
| 6086 | + |
|
| 6087 | + add_option($option, $page_id); |
|
| 6088 | 6088 | |
| 6089 | 6089 | } |
| 6090 | 6090 | |
@@ -6115,9 +6115,9 @@ discard block |
||
| 6115 | 6115 | * @package GeoDirectory |
| 6116 | 6116 | */ |
| 6117 | 6117 | function geodir_admin_upgrade_notice() {
|
| 6118 | - $class = "error"; |
|
| 6119 | - $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6120 | - echo"<div class=\"$class\"> <p>$message</p></div>"; |
|
| 6118 | + $class = "error"; |
|
| 6119 | + $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6120 | + echo"<div class=\"$class\"> <p>$message</p></div>"; |
|
| 6121 | 6121 | } |
| 6122 | 6122 | |
| 6123 | 6123 | /** |
@@ -6130,18 +6130,18 @@ discard block |
||
| 6130 | 6130 | */ |
| 6131 | 6131 | function geodire_admin_upgrade_notice( $plugin_data, $r ) |
| 6132 | 6132 | {
|
| 6133 | - // readme contents |
|
| 6134 | - $args = array( |
|
| 6135 | - 'timeout' => 15, |
|
| 6136 | - 'redirection' => 5 |
|
| 6137 | - ); |
|
| 6138 | - $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
|
| 6139 | - $data = wp_remote_get( $url, $args ); |
|
| 6133 | + // readme contents |
|
| 6134 | + $args = array( |
|
| 6135 | + 'timeout' => 15, |
|
| 6136 | + 'redirection' => 5 |
|
| 6137 | + ); |
|
| 6138 | + $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
|
| 6139 | + $data = wp_remote_get( $url, $args ); |
|
| 6140 | 6140 | |
| 6141 | - if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
|
| 6141 | + if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
|
| 6142 | 6142 | |
| 6143 | - geodir_in_plugin_update_message($data['body']); |
|
| 6144 | - } |
|
| 6143 | + geodir_in_plugin_update_message($data['body']); |
|
| 6144 | + } |
|
| 6145 | 6145 | } |
| 6146 | 6146 | |
| 6147 | 6147 | |
@@ -6149,28 +6149,28 @@ discard block |
||
| 6149 | 6149 | * @param string $content http response body |
| 6150 | 6150 | */ |
| 6151 | 6151 | function geodir_in_plugin_update_message($content) {
|
| 6152 | - // Output Upgrade Notice |
|
| 6153 | - $matches = null; |
|
| 6154 | - $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6155 | - $upgrade_notice = ''; |
|
| 6156 | - if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6157 | - if(empty($matches)){return;}
|
|
| 6158 | - |
|
| 6159 | - $version = trim( $matches[1] ); |
|
| 6160 | - if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6161 | - |
|
| 6162 | - |
|
| 6163 | - $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6164 | - if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6165 | - $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
|
| 6166 | - foreach ( $notices as $index => $line ) {
|
|
| 6167 | - $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6168 | - } |
|
| 6169 | - $upgrade_notice .= '</div> '; |
|
| 6170 | - } |
|
| 6171 | - } |
|
| 6172 | - } |
|
| 6173 | - echo $upgrade_notice; |
|
| 6152 | + // Output Upgrade Notice |
|
| 6153 | + $matches = null; |
|
| 6154 | + $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6155 | + $upgrade_notice = ''; |
|
| 6156 | + if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6157 | + if(empty($matches)){return;}
|
|
| 6158 | + |
|
| 6159 | + $version = trim( $matches[1] ); |
|
| 6160 | + if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6161 | + |
|
| 6162 | + |
|
| 6163 | + $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6164 | + if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6165 | + $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
|
| 6166 | + foreach ( $notices as $index => $line ) {
|
|
| 6167 | + $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6168 | + } |
|
| 6169 | + $upgrade_notice .= '</div> '; |
|
| 6170 | + } |
|
| 6171 | + } |
|
| 6172 | + } |
|
| 6173 | + echo $upgrade_notice; |
|
| 6174 | 6174 | } |
| 6175 | 6175 | |
| 6176 | 6176 | /** |
@@ -6203,19 +6203,19 @@ discard block |
||
| 6203 | 6203 | * @param array Listing statuses to be skipped. |
| 6204 | 6204 | */ |
| 6205 | 6205 | function geodir_imex_export_skip_statuses() {
|
| 6206 | - $statuses = array( 'trash', 'auto-draft' ); |
|
| 6206 | + $statuses = array( 'trash', 'auto-draft' ); |
|
| 6207 | 6207 | |
| 6208 | - /** |
|
| 6209 | - * Filter the statuses to skip during GD export listings. |
|
| 6210 | - * |
|
| 6211 | - * @since 1.6.0 |
|
| 6212 | - * @package GeoDirectory |
|
| 6213 | - * |
|
| 6214 | - * @param array $statuses Listing statuses to be skipped. |
|
| 6215 | - */ |
|
| 6216 | - $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6208 | + /** |
|
| 6209 | + * Filter the statuses to skip during GD export listings. |
|
| 6210 | + * |
|
| 6211 | + * @since 1.6.0 |
|
| 6212 | + * @package GeoDirectory |
|
| 6213 | + * |
|
| 6214 | + * @param array $statuses Listing statuses to be skipped. |
|
| 6215 | + */ |
|
| 6216 | + $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6217 | 6217 | |
| 6218 | - return $statuses; |
|
| 6218 | + return $statuses; |
|
| 6219 | 6219 | } |
| 6220 | 6220 | |
| 6221 | 6221 | /** |
@@ -6231,37 +6231,37 @@ discard block |
||
| 6231 | 6231 | * @global string $typenow Current post type. |
| 6232 | 6232 | */ |
| 6233 | 6233 | function geodir_admin_dequeue_scripts() {
|
| 6234 | - global $typenow; |
|
| 6234 | + global $typenow; |
|
| 6235 | 6235 | |
| 6236 | - // EDD |
|
| 6237 | - if (wp_script_is('jquery-chosen', 'enqueued')) {
|
|
| 6238 | - wp_dequeue_script('jquery-chosen');
|
|
| 6239 | - } |
|
| 6236 | + // EDD |
|
| 6237 | + if (wp_script_is('jquery-chosen', 'enqueued')) {
|
|
| 6238 | + wp_dequeue_script('jquery-chosen');
|
|
| 6239 | + } |
|
| 6240 | 6240 | |
| 6241 | - // Ultimate Addons for Visual Composer |
|
| 6242 | - if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
|
|
| 6243 | - wp_dequeue_script('ultimate-vc-backend-script');
|
|
| 6244 | - } |
|
| 6241 | + // Ultimate Addons for Visual Composer |
|
| 6242 | + if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
|
|
| 6243 | + wp_dequeue_script('ultimate-vc-backend-script');
|
|
| 6244 | + } |
|
| 6245 | 6245 | |
| 6246 | - // VC editor conflicts |
|
| 6247 | - if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) {
|
|
| 6248 | - wp_dequeue_script('dfd_vc_damin_scripts');
|
|
| 6249 | - } |
|
| 6246 | + // VC editor conflicts |
|
| 6247 | + if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) {
|
|
| 6248 | + wp_dequeue_script('dfd_vc_damin_scripts');
|
|
| 6249 | + } |
|
| 6250 | 6250 | |
| 6251 | - // Ultimate chosen |
|
| 6252 | - if (wp_script_is('ultimate-chosen-script', 'enqueued')) {
|
|
| 6253 | - wp_dequeue_script('ultimate-chosen-script');
|
|
| 6254 | - } |
|
| 6251 | + // Ultimate chosen |
|
| 6252 | + if (wp_script_is('ultimate-chosen-script', 'enqueued')) {
|
|
| 6253 | + wp_dequeue_script('ultimate-chosen-script');
|
|
| 6254 | + } |
|
| 6255 | 6255 | |
| 6256 | - // Crum composer choosen |
|
| 6257 | - if (wp_script_is('crum-composer-choosen', 'enqueued')) {
|
|
| 6258 | - wp_dequeue_script('crum-composer-choosen');
|
|
| 6259 | - } |
|
| 6256 | + // Crum composer choosen |
|
| 6257 | + if (wp_script_is('crum-composer-choosen', 'enqueued')) {
|
|
| 6258 | + wp_dequeue_script('crum-composer-choosen');
|
|
| 6259 | + } |
|
| 6260 | 6260 | |
| 6261 | - // Fix conflict Fusion Builder jquery chosen with GD jquery chosen. |
|
| 6262 | - if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) {
|
|
| 6263 | - wp_dequeue_script('fusion_builder_chosen_js');
|
|
| 6264 | - } |
|
| 6261 | + // Fix conflict Fusion Builder jquery chosen with GD jquery chosen. |
|
| 6262 | + if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) {
|
|
| 6263 | + wp_dequeue_script('fusion_builder_chosen_js');
|
|
| 6264 | + } |
|
| 6265 | 6265 | } |
| 6266 | 6266 | |
| 6267 | 6267 | /** |
@@ -6277,48 +6277,48 @@ discard block |
||
| 6277 | 6277 | * @return string SQL where clause part. |
| 6278 | 6278 | */ |
| 6279 | 6279 | function geodir_imex_get_filter_where($where = '', $post_type = '') {
|
| 6280 | - global $wpdb; |
|
| 6280 | + global $wpdb; |
|
| 6281 | 6281 | |
| 6282 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6282 | + $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6283 | 6283 | |
| 6284 | - if ( !empty( $filters ) ) {
|
|
| 6285 | - foreach ( $filters as $field => $value ) {
|
|
| 6286 | - switch ($field) {
|
|
| 6287 | - case 'start_date': |
|
| 6288 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6289 | - break; |
|
| 6290 | - case 'end_date': |
|
| 6291 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6292 | - break; |
|
| 6293 | - } |
|
| 6294 | - } |
|
| 6295 | - } |
|
| 6284 | + if ( !empty( $filters ) ) {
|
|
| 6285 | + foreach ( $filters as $field => $value ) {
|
|
| 6286 | + switch ($field) {
|
|
| 6287 | + case 'start_date': |
|
| 6288 | + $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6289 | + break; |
|
| 6290 | + case 'end_date': |
|
| 6291 | + $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6292 | + break; |
|
| 6293 | + } |
|
| 6294 | + } |
|
| 6295 | + } |
|
| 6296 | 6296 | |
| 6297 | - return $where; |
|
| 6297 | + return $where; |
|
| 6298 | 6298 | } |
| 6299 | 6299 | add_filter('geodir_get_posts_count', 'geodir_imex_get_filter_where', 10, 2);
|
| 6300 | 6300 | add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
|
| 6301 | 6301 | |
| 6302 | 6302 | |
| 6303 | 6303 | function geodir_fix_for_primer_theme(){
|
| 6304 | - if(!defined( 'PRIMER_VERSION' )){return;}
|
|
| 6305 | - global $pagenow; |
|
| 6304 | + if(!defined( 'PRIMER_VERSION' )){return;}
|
|
| 6305 | + global $pagenow; |
|
| 6306 | 6306 | |
| 6307 | - if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){
|
|
| 6307 | + if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){
|
|
| 6308 | 6308 | |
| 6309 | - $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
| 6309 | + $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
| 6310 | 6310 | |
| 6311 | - $post_types = geodir_get_posttypes(); |
|
| 6312 | - if ($post_type && in_array($post_type, $post_types) ) {
|
|
| 6313 | - global $primer_customizer_layouts; |
|
| 6314 | - remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
| 6315 | - } |
|
| 6316 | - } |
|
| 6311 | + $post_types = geodir_get_posttypes(); |
|
| 6312 | + if ($post_type && in_array($post_type, $post_types) ) {
|
|
| 6313 | + global $primer_customizer_layouts; |
|
| 6314 | + remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
| 6315 | + } |
|
| 6316 | + } |
|
| 6317 | 6317 | |
| 6318 | 6318 | } |
| 6319 | 6319 | |
| 6320 | 6320 | if(is_admin()){
|
| 6321 | - add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);
|
|
| 6321 | + add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);
|
|
| 6322 | 6322 | } |
| 6323 | 6323 | |
| 6324 | 6324 | |
@@ -6451,96 +6451,96 @@ discard block |
||
| 6451 | 6451 | |
| 6452 | 6452 | function geodir_ga_activation_url() {
|
| 6453 | 6453 | |
| 6454 | - return add_query_arg( array( |
|
| 6455 | - 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
|
|
| 6456 | - 'scope' => GEODIR_GA_SCOPE, |
|
| 6457 | - 'response_type' => 'code', |
|
| 6458 | - 'redirect_uri' => GEODIR_GA_REDIRECT, |
|
| 6459 | - 'client_id' => GEODIR_GA_CLIENTID, |
|
| 6460 | - ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
| 6454 | + return add_query_arg( array( |
|
| 6455 | + 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
|
|
| 6456 | + 'scope' => GEODIR_GA_SCOPE, |
|
| 6457 | + 'response_type' => 'code', |
|
| 6458 | + 'redirect_uri' => GEODIR_GA_REDIRECT, |
|
| 6459 | + 'client_id' => GEODIR_GA_CLIENTID, |
|
| 6460 | + ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
| 6461 | 6461 | |
| 6462 | - return $url; |
|
| 6462 | + return $url; |
|
| 6463 | 6463 | } |
| 6464 | 6464 | |
| 6465 | 6465 | function geodir_gd_accounts(){
|
| 6466 | - $accounts = array(); |
|
| 6467 | - $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
| 6468 | - if($useAuth){
|
|
| 6469 | - try {
|
|
| 6470 | - $accounts = geodir_ga_get_analytics_accounts(); |
|
| 6471 | - } catch (Exception $e) {
|
|
| 6472 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 6473 | - } |
|
| 6466 | + $accounts = array(); |
|
| 6467 | + $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
| 6468 | + if($useAuth){
|
|
| 6469 | + try {
|
|
| 6470 | + $accounts = geodir_ga_get_analytics_accounts(); |
|
| 6471 | + } catch (Exception $e) {
|
|
| 6472 | + geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 6473 | + } |
|
| 6474 | 6474 | |
| 6475 | - if(is_array($accounts)){
|
|
| 6476 | - $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
|
| 6477 | - }elseif(get_option('geodir_ga_account_id')){
|
|
| 6478 | - $accounts = array(); |
|
| 6479 | - $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6480 | - } |
|
| 6481 | - } |
|
| 6482 | - return $accounts; |
|
| 6475 | + if(is_array($accounts)){
|
|
| 6476 | + $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
|
| 6477 | + }elseif(get_option('geodir_ga_account_id')){
|
|
| 6478 | + $accounts = array(); |
|
| 6479 | + $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6480 | + } |
|
| 6481 | + } |
|
| 6482 | + return $accounts; |
|
| 6483 | 6483 | } |
| 6484 | 6484 | |
| 6485 | 6485 | function geodir_ga_get_analytics_accounts() |
| 6486 | 6486 | {
|
| 6487 | - global $gd_ga_errors; |
|
| 6488 | - $accounts = array(); |
|
| 6487 | + global $gd_ga_errors; |
|
| 6488 | + $accounts = array(); |
|
| 6489 | 6489 | |
| 6490 | - if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
|
|
| 6490 | + if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
|
|
| 6491 | 6491 | |
| 6492 | 6492 | |
| 6493 | - if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
|
|
| 6494 | - return get_option('geodir_gd_uids');
|
|
| 6495 | - } |
|
| 6493 | + if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
|
|
| 6494 | + return get_option('geodir_gd_uids');
|
|
| 6495 | + } |
|
| 6496 | 6496 | |
| 6497 | - # Create a new Gdata call |
|
| 6498 | - if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6499 | - $stats = new GDGoogleAnalyticsStats(); |
|
| 6500 | - else |
|
| 6501 | - return false; |
|
| 6497 | + # Create a new Gdata call |
|
| 6498 | + if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6499 | + $stats = new GDGoogleAnalyticsStats(); |
|
| 6500 | + else |
|
| 6501 | + return false; |
|
| 6502 | 6502 | |
| 6503 | - # Check if Google sucessfully logged in |
|
| 6504 | - if ( ! $stats->checkLogin() ) |
|
| 6505 | - return false; |
|
| 6503 | + # Check if Google sucessfully logged in |
|
| 6504 | + if ( ! $stats->checkLogin() ) |
|
| 6505 | + return false; |
|
| 6506 | 6506 | |
| 6507 | - # Get a list of accounts |
|
| 6508 | - try {
|
|
| 6509 | - $accounts = $stats->getAllProfiles(); |
|
| 6510 | - } catch (Exception $e) {
|
|
| 6511 | - $gd_ga_errors[] = $e->getMessage(); |
|
| 6512 | - return false; |
|
| 6513 | - } |
|
| 6507 | + # Get a list of accounts |
|
| 6508 | + try {
|
|
| 6509 | + $accounts = $stats->getAllProfiles(); |
|
| 6510 | + } catch (Exception $e) {
|
|
| 6511 | + $gd_ga_errors[] = $e->getMessage(); |
|
| 6512 | + return false; |
|
| 6513 | + } |
|
| 6514 | 6514 | |
| 6515 | 6515 | |
| 6516 | - natcasesort ($accounts); |
|
| 6516 | + natcasesort ($accounts); |
|
| 6517 | 6517 | |
| 6518 | - # Return the account array if there are accounts |
|
| 6519 | - if ( count($accounts) > 0 ){
|
|
| 6520 | - update_option('geodir_gd_uids',$accounts);
|
|
| 6521 | - return $accounts; |
|
| 6522 | - } |
|
| 6523 | - else |
|
| 6524 | - return false; |
|
| 6518 | + # Return the account array if there are accounts |
|
| 6519 | + if ( count($accounts) > 0 ){
|
|
| 6520 | + update_option('geodir_gd_uids',$accounts);
|
|
| 6521 | + return $accounts; |
|
| 6522 | + } |
|
| 6523 | + else |
|
| 6524 | + return false; |
|
| 6525 | 6525 | } |
| 6526 | 6526 | |
| 6527 | 6527 | add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' ); |
| 6528 | 6528 | function geodir_ga_deauthorize(){
|
| 6529 | 6529 | |
| 6530 | - if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
|
|
| 6530 | + if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
|
|
| 6531 | 6531 | |
| 6532 | - die( 'Security check' ); |
|
| 6532 | + die( 'Security check' ); |
|
| 6533 | 6533 | |
| 6534 | - } else {
|
|
| 6535 | - update_option('geodir_ga_auth_token','');
|
|
| 6536 | - update_option('geodir_ga_auth_code','');
|
|
| 6537 | - update_option('geodir_gd_uids','');
|
|
| 6534 | + } else {
|
|
| 6535 | + update_option('geodir_ga_auth_token','');
|
|
| 6536 | + update_option('geodir_ga_auth_code','');
|
|
| 6537 | + update_option('geodir_gd_uids','');
|
|
| 6538 | 6538 | |
| 6539 | 6539 | |
| 6540 | - echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
|
|
| 6541 | - } |
|
| 6540 | + echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
|
|
| 6541 | + } |
|
| 6542 | 6542 | |
| 6543 | - die(); |
|
| 6543 | + die(); |
|
| 6544 | 6544 | } |
| 6545 | 6545 | |
| 6546 | 6546 | |
@@ -6551,12 +6551,12 @@ discard block |
||
| 6551 | 6551 | * @package GeoDirectory |
| 6552 | 6552 | */ |
| 6553 | 6553 | function geodir_post_type_setting_fun() {
|
| 6554 | - $post_type_arr = array(); |
|
| 6554 | + $post_type_arr = array(); |
|
| 6555 | 6555 | |
| 6556 | - $post_types = geodir_get_posttypes('object');
|
|
| 6556 | + $post_types = geodir_get_posttypes('object');
|
|
| 6557 | 6557 | |
| 6558 | - foreach ($post_types as $key => $post_types_obj) {
|
|
| 6559 | - $post_type_arr[$key] = $post_types_obj->labels->singular_name; |
|
| 6560 | - } |
|
| 6561 | - return $post_type_arr; |
|
| 6558 | + foreach ($post_types as $key => $post_types_obj) {
|
|
| 6559 | + $post_type_arr[$key] = $post_types_obj->labels->singular_name; |
|
| 6560 | + } |
|
| 6561 | + return $post_type_arr; |
|
| 6562 | 6562 | } |
| 6563 | 6563 | \ No newline at end of file |
@@ -20,491 +20,491 @@ 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 | - * @package GeoDirectory |
|
| 79 | - * @global object $wpdb WordPress Database object. |
|
| 80 | - * @global object $post The current post object. |
|
| 81 | - * @global object $current_user Current user object. |
|
| 73 | + /** |
|
| 74 | + * Saves listing in the database using given information. |
|
| 75 | + * |
|
| 76 | + * @since 1.0.0 |
|
| 77 | + * @since 1.5.4 New parameter $wp_error added. |
|
| 78 | + * @package GeoDirectory |
|
| 79 | + * @global object $wpdb WordPress Database object. |
|
| 80 | + * @global object $post The current post object. |
|
| 81 | + * @global object $current_user Current user object. |
|
| 82 | 82 | * @global object $gd_session GeoDirectory Session object. |
| 83 | - * @param array $request_info {
|
|
| 84 | - * Array of request info arguments. |
|
| 85 | - * |
|
| 86 | - * @type string $action Ajax action name. |
|
| 87 | - * @type string $geodir_ajax Ajax type. |
|
| 88 | - * @type string $ajax_action Ajax action. |
|
| 89 | - * @type string $listing_type Listing type. |
|
| 90 | - * @type string $pid Default Post ID. |
|
| 91 | - * @type string $preview Todo Desc needed. |
|
| 92 | - * @type string $add_listing_page_id Add listing page ID. |
|
| 93 | - * @type string $post_title Listing title. |
|
| 94 | - * @type string $post_desc Listing Description. |
|
| 95 | - * @type string $post_tags Listing tags. |
|
| 96 | - * @type array $cat_limit Category limit. |
|
| 97 | - * @type array $post_category Category IDs. |
|
| 98 | - * @type array $post_category_str Category string. |
|
| 99 | - * @type string $post_default_category Default category ID. |
|
| 100 | - * @type string $post_address Listing address. |
|
| 101 | - * @type string $geodir_location_add_listing_country_val Add listing country value. |
|
| 102 | - * @type string $post_country Listing country. |
|
| 103 | - * @type string $geodir_location_add_listing_region_val Add listing region value. |
|
| 104 | - * @type string $post_region Listing region. |
|
| 105 | - * @type string $geodir_location_add_listing_city_val Add listing city value. |
|
| 106 | - * @type string $post_city Listing city. |
|
| 107 | - * @type string $post_zip Listing zip. |
|
| 108 | - * @type string $post_latitude Listing latitude. |
|
| 109 | - * @type string $post_longitude Listing longitude. |
|
| 110 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 111 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 112 | - * @type string $geodir_timing Business timing info. |
|
| 113 | - * @type string $geodir_contact Contact number. |
|
| 114 | - * @type string $geodir_email Business contact email. |
|
| 115 | - * @type string $geodir_website Business website. |
|
| 116 | - * @type string $geodir_twitter Twitter link. |
|
| 117 | - * @type string $geodir_facebook Facebook link. |
|
| 118 | - * @type string $geodir_video Video link. |
|
| 119 | - * @type string $geodir_special_offers Speacial offers. |
|
| 120 | - * @type string $post_images Post image urls. |
|
| 121 | - * @type string $post_imagesimage_limit Post images limit. |
|
| 122 | - * @type string $post_imagestotImg Todo Desc needed. |
|
| 123 | - * @type string $geodir_accept_term_condition Has accepted terms and conditions?. |
|
| 124 | - * @type string $geodir_spamblocker Todo Desc needed. |
|
| 125 | - * @type string $geodir_filled_by_spam_bot Todo Desc needed. |
|
| 126 | - * |
|
| 127 | - * } |
|
| 128 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 129 | - * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false. |
|
| 130 | - * @return int|string|WP_Error Created post id or WP_Error on failure. |
|
| 131 | - */ |
|
| 132 | - function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false) |
|
| 133 | - {
|
|
| 134 | - global $wpdb, $current_user, $gd_session; |
|
| 135 | - |
|
| 136 | - $last_post_id = ''; |
|
| 137 | - |
|
| 138 | - if ($gd_session->get('listing') && !$dummy) {
|
|
| 139 | - $request_info = array(); |
|
| 140 | - $request_session = $gd_session->get('listing');
|
|
| 141 | - $request_info = array_merge($_REQUEST, $request_session); |
|
| 142 | - } else if (!$gd_session->get('listing') && !$dummy) {
|
|
| 143 | - global $post; |
|
| 83 | + * @param array $request_info {
|
|
| 84 | + * Array of request info arguments. |
|
| 85 | + * |
|
| 86 | + * @type string $action Ajax action name. |
|
| 87 | + * @type string $geodir_ajax Ajax type. |
|
| 88 | + * @type string $ajax_action Ajax action. |
|
| 89 | + * @type string $listing_type Listing type. |
|
| 90 | + * @type string $pid Default Post ID. |
|
| 91 | + * @type string $preview Todo Desc needed. |
|
| 92 | + * @type string $add_listing_page_id Add listing page ID. |
|
| 93 | + * @type string $post_title Listing title. |
|
| 94 | + * @type string $post_desc Listing Description. |
|
| 95 | + * @type string $post_tags Listing tags. |
|
| 96 | + * @type array $cat_limit Category limit. |
|
| 97 | + * @type array $post_category Category IDs. |
|
| 98 | + * @type array $post_category_str Category string. |
|
| 99 | + * @type string $post_default_category Default category ID. |
|
| 100 | + * @type string $post_address Listing address. |
|
| 101 | + * @type string $geodir_location_add_listing_country_val Add listing country value. |
|
| 102 | + * @type string $post_country Listing country. |
|
| 103 | + * @type string $geodir_location_add_listing_region_val Add listing region value. |
|
| 104 | + * @type string $post_region Listing region. |
|
| 105 | + * @type string $geodir_location_add_listing_city_val Add listing city value. |
|
| 106 | + * @type string $post_city Listing city. |
|
| 107 | + * @type string $post_zip Listing zip. |
|
| 108 | + * @type string $post_latitude Listing latitude. |
|
| 109 | + * @type string $post_longitude Listing longitude. |
|
| 110 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 111 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 112 | + * @type string $geodir_timing Business timing info. |
|
| 113 | + * @type string $geodir_contact Contact number. |
|
| 114 | + * @type string $geodir_email Business contact email. |
|
| 115 | + * @type string $geodir_website Business website. |
|
| 116 | + * @type string $geodir_twitter Twitter link. |
|
| 117 | + * @type string $geodir_facebook Facebook link. |
|
| 118 | + * @type string $geodir_video Video link. |
|
| 119 | + * @type string $geodir_special_offers Speacial offers. |
|
| 120 | + * @type string $post_images Post image urls. |
|
| 121 | + * @type string $post_imagesimage_limit Post images limit. |
|
| 122 | + * @type string $post_imagestotImg Todo Desc needed. |
|
| 123 | + * @type string $geodir_accept_term_condition Has accepted terms and conditions?. |
|
| 124 | + * @type string $geodir_spamblocker Todo Desc needed. |
|
| 125 | + * @type string $geodir_filled_by_spam_bot Todo Desc needed. |
|
| 126 | + * |
|
| 127 | + * } |
|
| 128 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 129 | + * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false. |
|
| 130 | + * @return int|string|WP_Error Created post id or WP_Error on failure. |
|
| 131 | + */ |
|
| 132 | + function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false) |
|
| 133 | + {
|
|
| 134 | + global $wpdb, $current_user, $gd_session; |
|
| 135 | + |
|
| 136 | + $last_post_id = ''; |
|
| 137 | + |
|
| 138 | + if ($gd_session->get('listing') && !$dummy) {
|
|
| 139 | + $request_info = array(); |
|
| 140 | + $request_session = $gd_session->get('listing');
|
|
| 141 | + $request_info = array_merge($_REQUEST, $request_session); |
|
| 142 | + } else if (!$gd_session->get('listing') && !$dummy) {
|
|
| 143 | + global $post; |
|
| 144 | 144 | |
| 145 | - $gd_post = $post; |
|
| 146 | - if (!empty($gd_post) && is_array($gd_post)) {
|
|
| 147 | - $gd_post = (object)$post; |
|
| 145 | + $gd_post = $post; |
|
| 146 | + if (!empty($gd_post) && is_array($gd_post)) {
|
|
| 147 | + $gd_post = (object)$post; |
|
| 148 | 148 | |
| 149 | - // Fix WPML duplicate. |
|
| 150 | - if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
|
|
| 151 | - return false; |
|
| 152 | - } |
|
| 153 | - } |
|
| 149 | + // Fix WPML duplicate. |
|
| 150 | + if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
|
|
| 151 | + return false; |
|
| 152 | + } |
|
| 153 | + } |
|
| 154 | 154 | |
| 155 | - $request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
| 156 | - $request_info['post_title'] = $request_info['post_title']; |
|
| 157 | - $request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid'])); |
|
| 158 | - $request_info['post_desc'] = $request_info['content']; |
|
| 159 | - } else if (!$dummy) {
|
|
| 160 | - return false; |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - /** |
|
| 164 | - * Filter the request_info array. |
|
| 165 | - * |
|
| 166 | - * You can use this filter to modify request_info array. |
|
| 167 | - * |
|
| 168 | - * @since 1.0.0 |
|
| 169 | - * @package GeoDirectory |
|
| 170 | - * @param array $request_info See {@see geodir_save_listing()} for accepted args.
|
|
| 171 | - */ |
|
| 172 | - $request_info = apply_filters('geodir_action_get_request_info', $request_info);
|
|
| 173 | - |
|
| 174 | - // Check if we need to save post location as new location |
|
| 175 | - $location_result = geodir_get_default_location(); |
|
| 176 | - |
|
| 177 | - if ($location_result->location_id > 0) {
|
|
| 178 | - if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
|
|
| 179 | - $request_info['post_location'] = array( |
|
| 180 | - 'city' => $request_info['post_city'], |
|
| 181 | - 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
| 182 | - 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
| 183 | - 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
| 184 | - 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
| 185 | - ); |
|
| 186 | - |
|
| 187 | - $post_location_info = $request_info['post_location']; |
|
| 188 | - |
|
| 189 | - if ($location_id = geodir_add_new_location($post_location_info)) {
|
|
| 190 | - $post_location_id = $location_id; |
|
| 191 | - } |
|
| 192 | - } else {
|
|
| 193 | - $post_location_id = $location_result->location_id; |
|
| 194 | - } |
|
| 195 | - } else {
|
|
| 196 | - $post_location_id = $location_result->location_id; |
|
| 197 | - } |
|
| 198 | - |
|
| 199 | - if ($dummy) {
|
|
| 200 | - $post_status = 'publish'; |
|
| 201 | - } else {
|
|
| 202 | - $post_status = geodir_new_post_default_status(); |
|
| 203 | - } |
|
| 204 | - |
|
| 205 | - if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 206 | - $post_status = get_post_status($request_info['pid']); |
|
| 207 | - } |
|
| 208 | - |
|
| 209 | - /* fix change of slug on every title edit */ |
|
| 210 | - if (!isset($request_info['post_name'])) {
|
|
| 211 | - $request_info['post_name'] = $request_info['post_title']; |
|
| 212 | - |
|
| 213 | - if (!empty($request_info['pid'])) {
|
|
| 214 | - $post_info = get_post($request_info['pid']); |
|
| 215 | - |
|
| 216 | - if (!empty($post_info) && isset($post_info->post_name)) {
|
|
| 217 | - $request_info['post_name'] = $post_info->post_name; |
|
| 218 | - } |
|
| 219 | - } |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - $post = array( |
|
| 223 | - 'post_content' => $request_info['post_desc'], |
|
| 224 | - 'post_status' => $post_status, |
|
| 225 | - 'post_title' => $request_info['post_title'], |
|
| 226 | - 'post_name' => $request_info['post_name'], |
|
| 227 | - 'post_type' => $request_info['listing_type'] |
|
| 228 | - ); |
|
| 229 | - |
|
| 230 | - /** |
|
| 231 | - * Called before a listing is saved to the database. |
|
| 232 | - * |
|
| 233 | - * @since 1.0.0 |
|
| 234 | - * @param object $post The post object. |
|
| 235 | - */ |
|
| 236 | - do_action_ref_array('geodir_before_save_listing', $post);
|
|
| 155 | + $request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
| 156 | + $request_info['post_title'] = $request_info['post_title']; |
|
| 157 | + $request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid'])); |
|
| 158 | + $request_info['post_desc'] = $request_info['content']; |
|
| 159 | + } else if (!$dummy) {
|
|
| 160 | + return false; |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + /** |
|
| 164 | + * Filter the request_info array. |
|
| 165 | + * |
|
| 166 | + * You can use this filter to modify request_info array. |
|
| 167 | + * |
|
| 168 | + * @since 1.0.0 |
|
| 169 | + * @package GeoDirectory |
|
| 170 | + * @param array $request_info See {@see geodir_save_listing()} for accepted args.
|
|
| 171 | + */ |
|
| 172 | + $request_info = apply_filters('geodir_action_get_request_info', $request_info);
|
|
| 173 | + |
|
| 174 | + // Check if we need to save post location as new location |
|
| 175 | + $location_result = geodir_get_default_location(); |
|
| 176 | + |
|
| 177 | + if ($location_result->location_id > 0) {
|
|
| 178 | + if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
|
|
| 179 | + $request_info['post_location'] = array( |
|
| 180 | + 'city' => $request_info['post_city'], |
|
| 181 | + 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
| 182 | + 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
| 183 | + 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
| 184 | + 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
| 185 | + ); |
|
| 186 | + |
|
| 187 | + $post_location_info = $request_info['post_location']; |
|
| 188 | + |
|
| 189 | + if ($location_id = geodir_add_new_location($post_location_info)) {
|
|
| 190 | + $post_location_id = $location_id; |
|
| 191 | + } |
|
| 192 | + } else {
|
|
| 193 | + $post_location_id = $location_result->location_id; |
|
| 194 | + } |
|
| 195 | + } else {
|
|
| 196 | + $post_location_id = $location_result->location_id; |
|
| 197 | + } |
|
| 237 | 198 | |
| 238 | - $send_post_submit_mail = false; |
|
| 199 | + if ($dummy) {
|
|
| 200 | + $post_status = 'publish'; |
|
| 201 | + } else {
|
|
| 202 | + $post_status = geodir_new_post_default_status(); |
|
| 203 | + } |
|
| 239 | 204 | |
| 240 | - // unhook this function so it doesn't loop infinitely |
|
| 241 | - remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 205 | + if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 206 | + $post_status = get_post_status($request_info['pid']); |
|
| 207 | + } |
|
| 242 | 208 | |
| 243 | - if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 244 | - $post['ID'] = $request_info['pid']; |
|
| 209 | + /* fix change of slug on every title edit */ |
|
| 210 | + if (!isset($request_info['post_name'])) {
|
|
| 211 | + $request_info['post_name'] = $request_info['post_title']; |
|
| 245 | 212 | |
| 246 | - $last_post_id = wp_update_post($post, $wp_error); |
|
| 247 | - } else {
|
|
| 248 | - $last_post_id = wp_insert_post($post, $wp_error); |
|
| 213 | + if (!empty($request_info['pid'])) {
|
|
| 214 | + $post_info = get_post($request_info['pid']); |
|
| 249 | 215 | |
| 250 | - if (!$dummy && $last_post_id) {
|
|
| 251 | - $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email) |
|
| 252 | - //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
|
|
| 253 | - } |
|
| 254 | - } |
|
| 216 | + if (!empty($post_info) && isset($post_info->post_name)) {
|
|
| 217 | + $request_info['post_name'] = $post_info->post_name; |
|
| 218 | + } |
|
| 219 | + } |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + $post = array( |
|
| 223 | + 'post_content' => $request_info['post_desc'], |
|
| 224 | + 'post_status' => $post_status, |
|
| 225 | + 'post_title' => $request_info['post_title'], |
|
| 226 | + 'post_name' => $request_info['post_name'], |
|
| 227 | + 'post_type' => $request_info['listing_type'] |
|
| 228 | + ); |
|
| 229 | + |
|
| 230 | + /** |
|
| 231 | + * Called before a listing is saved to the database. |
|
| 232 | + * |
|
| 233 | + * @since 1.0.0 |
|
| 234 | + * @param object $post The post object. |
|
| 235 | + */ |
|
| 236 | + do_action_ref_array('geodir_before_save_listing', $post);
|
|
| 237 | + |
|
| 238 | + $send_post_submit_mail = false; |
|
| 239 | + |
|
| 240 | + // unhook this function so it doesn't loop infinitely |
|
| 241 | + remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 242 | + |
|
| 243 | + if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 244 | + $post['ID'] = $request_info['pid']; |
|
| 245 | + |
|
| 246 | + $last_post_id = wp_update_post($post, $wp_error); |
|
| 247 | + } else {
|
|
| 248 | + $last_post_id = wp_insert_post($post, $wp_error); |
|
| 249 | + |
|
| 250 | + if (!$dummy && $last_post_id) {
|
|
| 251 | + $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email) |
|
| 252 | + //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
|
|
| 253 | + } |
|
| 254 | + } |
|
| 255 | 255 | |
| 256 | - if ($wp_error && is_wp_error($last_post_id)) {
|
|
| 257 | - return $last_post_id; // Return WP_Error on save failure. |
|
| 258 | - } |
|
| 256 | + if ($wp_error && is_wp_error($last_post_id)) {
|
|
| 257 | + return $last_post_id; // Return WP_Error on save failure. |
|
| 258 | + } |
|
| 259 | 259 | |
| 260 | - if (!$last_post_id) {
|
|
| 261 | - return false; // Save failure. |
|
| 262 | - } |
|
| 260 | + if (!$last_post_id) {
|
|
| 261 | + return false; // Save failure. |
|
| 262 | + } |
|
| 263 | 263 | |
| 264 | - // re-hook this function |
|
| 265 | - add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 264 | + // re-hook this function |
|
| 265 | + add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 266 | 266 | |
| 267 | - $post_tags = ''; |
|
| 268 | - if (!isset($request_info['post_tags'])) {
|
|
| 267 | + $post_tags = ''; |
|
| 268 | + if (!isset($request_info['post_tags'])) {
|
|
| 269 | 269 | |
| 270 | - $post_type = $request_info['listing_type']; |
|
| 271 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 270 | + $post_type = $request_info['listing_type']; |
|
| 271 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 272 | 272 | |
| 273 | - } |
|
| 273 | + } |
|
| 274 | 274 | |
| 275 | - $gd_post_info = array( |
|
| 276 | - "post_title" => $request_info['post_title'], |
|
| 277 | - "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
| 278 | - "post_status" => $post_status, |
|
| 279 | - "post_location_id" => $post_location_id, |
|
| 280 | - "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
| 281 | - "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
| 282 | - "submit_time" => time(), |
|
| 283 | - "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
| 284 | - ); |
|
| 275 | + $gd_post_info = array( |
|
| 276 | + "post_title" => $request_info['post_title'], |
|
| 277 | + "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
| 278 | + "post_status" => $post_status, |
|
| 279 | + "post_location_id" => $post_location_id, |
|
| 280 | + "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
| 281 | + "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
| 282 | + "submit_time" => time(), |
|
| 283 | + "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
| 284 | + ); |
|
| 285 | 285 | |
| 286 | - $payment_info = array(); |
|
| 287 | - $package_info = array(); |
|
| 286 | + $payment_info = array(); |
|
| 287 | + $package_info = array(); |
|
| 288 | 288 | |
| 289 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 289 | + $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 290 | 290 | |
| 291 | - $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
| 291 | + $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
| 292 | 292 | |
| 293 | - if (!empty($package_info) && !$post_package_id) {
|
|
| 294 | - if (isset($package_info['days']) && $package_info['days'] != 0) {
|
|
| 295 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 296 | - } else {
|
|
| 297 | - $payment_info['expire_date'] = 'Never'; |
|
| 298 | - } |
|
| 293 | + if (!empty($package_info) && !$post_package_id) {
|
|
| 294 | + if (isset($package_info['days']) && $package_info['days'] != 0) {
|
|
| 295 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 296 | + } else {
|
|
| 297 | + $payment_info['expire_date'] = 'Never'; |
|
| 298 | + } |
|
| 299 | 299 | |
| 300 | - $payment_info['package_id'] = $package_info['pid']; |
|
| 301 | - $payment_info['alive_days'] = $package_info['days']; |
|
| 302 | - $payment_info['is_featured'] = $package_info['is_featured']; |
|
| 300 | + $payment_info['package_id'] = $package_info['pid']; |
|
| 301 | + $payment_info['alive_days'] = $package_info['days']; |
|
| 302 | + $payment_info['is_featured'] = $package_info['is_featured']; |
|
| 303 | 303 | |
| 304 | - $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
| 305 | - } |
|
| 304 | + $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
| 305 | + } |
|
| 306 | 306 | |
| 307 | - $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
|
|
| 307 | + $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
|
|
| 308 | 308 | |
| 309 | - foreach ($custom_metaboxes as $key => $val): |
|
| 309 | + foreach ($custom_metaboxes as $key => $val): |
|
| 310 | 310 | |
| 311 | - $name = $val['name']; |
|
| 312 | - $type = $val['type']; |
|
| 313 | - $extrafields = $val['extra_fields']; |
|
| 311 | + $name = $val['name']; |
|
| 312 | + $type = $val['type']; |
|
| 313 | + $extrafields = $val['extra_fields']; |
|
| 314 | 314 | |
| 315 | - if (trim($type) == 'address') {
|
|
| 316 | - $prefix = $name . '_'; |
|
| 317 | - $address = $prefix . 'address'; |
|
| 315 | + if (trim($type) == 'address') {
|
|
| 316 | + $prefix = $name . '_'; |
|
| 317 | + $address = $prefix . 'address'; |
|
| 318 | 318 | |
| 319 | - if (isset($request_info[$address]) && $request_info[$address] != '') {
|
|
| 320 | - $gd_post_info[$address] = wp_slash($request_info[$address]); |
|
| 321 | - } |
|
| 319 | + if (isset($request_info[$address]) && $request_info[$address] != '') {
|
|
| 320 | + $gd_post_info[$address] = wp_slash($request_info[$address]); |
|
| 321 | + } |
|
| 322 | 322 | |
| 323 | - if ($extrafields != '') {
|
|
| 324 | - $extrafields = unserialize($extrafields); |
|
| 323 | + if ($extrafields != '') {
|
|
| 324 | + $extrafields = unserialize($extrafields); |
|
| 325 | 325 | |
| 326 | 326 | |
| 327 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 327 | + if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 328 | 328 | |
| 329 | - $location_result = geodir_get_default_location(); |
|
| 329 | + $location_result = geodir_get_default_location(); |
|
| 330 | 330 | |
| 331 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 332 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 333 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 331 | + $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 332 | + $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 333 | + $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 334 | 334 | |
| 335 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 335 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 336 | 336 | |
| 337 | - } else {
|
|
| 337 | + } else {
|
|
| 338 | 338 | |
| 339 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 340 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 341 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 339 | + $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 340 | + $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 341 | + $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 342 | 342 | |
| 343 | - //----------set post locations when import dummy data------- |
|
| 344 | - $location_result = geodir_get_default_location(); |
|
| 343 | + //----------set post locations when import dummy data------- |
|
| 344 | + $location_result = geodir_get_default_location(); |
|
| 345 | 345 | |
| 346 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 347 | - //----------------------------------------------------------------- |
|
| 346 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 347 | + //----------------------------------------------------------------- |
|
| 348 | 348 | |
| 349 | - } |
|
| 349 | + } |
|
| 350 | 350 | |
| 351 | 351 | |
| 352 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 353 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 354 | - } |
|
| 352 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 353 | + $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 354 | + } |
|
| 355 | 355 | |
| 356 | 356 | |
| 357 | - if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
|
| 357 | + if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
|
| 358 | 358 | |
| 359 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 360 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 361 | - } |
|
| 359 | + if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 360 | + $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 361 | + } |
|
| 362 | 362 | |
| 363 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 364 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 365 | - } |
|
| 363 | + if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 364 | + $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 365 | + } |
|
| 366 | 366 | |
| 367 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 368 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 369 | - } |
|
| 367 | + if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 368 | + $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 369 | + } |
|
| 370 | 370 | |
| 371 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 372 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 373 | - } |
|
| 371 | + if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 372 | + $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 373 | + } |
|
| 374 | 374 | |
| 375 | - } |
|
| 375 | + } |
|
| 376 | 376 | |
| 377 | - // show lat lng |
|
| 378 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 379 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 380 | - } |
|
| 381 | - } |
|
| 377 | + // show lat lng |
|
| 378 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 379 | + $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 380 | + } |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | - } elseif (trim($type) == 'file') {
|
|
| 384 | - if (isset($request_info[$name])) {
|
|
| 385 | - $request_files = array(); |
|
| 386 | - if ($request_info[$name] != '') |
|
| 387 | - $request_files = explode(",", $request_info[$name]);
|
|
| 383 | + } elseif (trim($type) == 'file') {
|
|
| 384 | + if (isset($request_info[$name])) {
|
|
| 385 | + $request_files = array(); |
|
| 386 | + if ($request_info[$name] != '') |
|
| 387 | + $request_files = explode(",", $request_info[$name]);
|
|
| 388 | 388 | |
| 389 | - $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
| 390 | - geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
| 389 | + $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
| 390 | + geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
| 391 | 391 | |
| 392 | - } |
|
| 393 | - } elseif (trim($type) == 'datepicker') {
|
|
| 394 | - $datetime = ''; |
|
| 395 | - if (isset($request_info[$name]) && $request_info[$name] != '') {
|
|
| 396 | - $date_format = geodir_default_date_format(); |
|
| 397 | - if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
|
|
| 398 | - $extra_fields = unserialize($val['extra_fields']); |
|
| 399 | - $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
| 400 | - } |
|
| 392 | + } |
|
| 393 | + } elseif (trim($type) == 'datepicker') {
|
|
| 394 | + $datetime = ''; |
|
| 395 | + if (isset($request_info[$name]) && $request_info[$name] != '') {
|
|
| 396 | + $date_format = geodir_default_date_format(); |
|
| 397 | + if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
|
|
| 398 | + $extra_fields = unserialize($val['extra_fields']); |
|
| 399 | + $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
| 400 | + } |
|
| 401 | 401 | |
| 402 | - // check if we need to change the format or not |
|
| 403 | - $date_format_len = strlen(str_replace(' ', '', $date_format));
|
|
| 404 | - if($date_format_len>5){// if greater then 5 then it's the old style format.
|
|
| 402 | + // check if we need to change the format or not |
|
| 403 | + $date_format_len = strlen(str_replace(' ', '', $date_format));
|
|
| 404 | + if($date_format_len>5){// if greater then 5 then it's the old style format.
|
|
| 405 | 405 | |
| 406 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
|
|
| 407 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format
|
|
| 406 | + $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
|
|
| 407 | + $replace = array('d','j','l','m','n','F','Y');//PHP date format
|
|
| 408 | 408 | |
| 409 | - $date_format = str_replace($search, $replace, $date_format); |
|
| 409 | + $date_format = str_replace($search, $replace, $date_format); |
|
| 410 | 410 | |
| 411 | - $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
|
|
| 411 | + $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
|
|
| 412 | 412 | |
| 413 | - }else{
|
|
| 414 | - $post_htmlvar_value = $request_info[$name]; |
|
| 415 | - } |
|
| 413 | + }else{
|
|
| 414 | + $post_htmlvar_value = $request_info[$name]; |
|
| 415 | + } |
|
| 416 | 416 | |
| 417 | - $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d |
|
| 418 | - $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated |
|
| 417 | + $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d |
|
| 418 | + $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated |
|
| 419 | 419 | |
| 420 | - //$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
|
|
| 420 | + //$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
|
|
| 421 | 421 | |
| 422 | - } |
|
| 423 | - $gd_post_info[$name] = $datetime; |
|
| 424 | - } else if ($type == 'multiselect') {
|
|
| 425 | - if (isset($request_info[$name])) {
|
|
| 426 | - $gd_post_info[$name] = $request_info[$name]; |
|
| 427 | - } else {
|
|
| 428 | - if (isset($request_info['gd_field_' . $name])) {
|
|
| 429 | - $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
| 430 | - } |
|
| 431 | - } |
|
| 432 | - } else if (isset($request_info[$name])) {
|
|
| 433 | - $gd_post_info[$name] = $request_info[$name]; |
|
| 434 | - } |
|
| 422 | + } |
|
| 423 | + $gd_post_info[$name] = $datetime; |
|
| 424 | + } else if ($type == 'multiselect') {
|
|
| 425 | + if (isset($request_info[$name])) {
|
|
| 426 | + $gd_post_info[$name] = $request_info[$name]; |
|
| 427 | + } else {
|
|
| 428 | + if (isset($request_info['gd_field_' . $name])) {
|
|
| 429 | + $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
| 430 | + } |
|
| 431 | + } |
|
| 432 | + } else if (isset($request_info[$name])) {
|
|
| 433 | + $gd_post_info[$name] = $request_info[$name]; |
|
| 434 | + } |
|
| 435 | 435 | |
| 436 | - endforeach; |
|
| 436 | + endforeach; |
|
| 437 | 437 | |
| 438 | - if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
|
|
| 439 | - $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
| 440 | - } |
|
| 438 | + if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
|
|
| 439 | + $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
| 440 | + } |
|
| 441 | 441 | |
| 442 | - // Save post detail info in detail table |
|
| 443 | - if (!empty($gd_post_info)) {
|
|
| 444 | - geodir_save_post_info($last_post_id, $gd_post_info); |
|
| 445 | - } |
|
| 442 | + // Save post detail info in detail table |
|
| 443 | + if (!empty($gd_post_info)) {
|
|
| 444 | + geodir_save_post_info($last_post_id, $gd_post_info); |
|
| 445 | + } |
|
| 446 | 446 | |
| 447 | 447 | |
| 448 | - // Set categories to the listing |
|
| 449 | - if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
|
|
| 450 | - $post_category = array(); |
|
| 448 | + // Set categories to the listing |
|
| 449 | + if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
|
|
| 450 | + $post_category = array(); |
|
| 451 | 451 | |
| 452 | - foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
|
| 452 | + foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
|
| 453 | 453 | |
| 454 | - if ($dummy) |
|
| 455 | - $post_category = $cat; |
|
| 456 | - else {
|
|
| 454 | + if ($dummy) |
|
| 455 | + $post_category = $cat; |
|
| 456 | + else {
|
|
| 457 | 457 | |
| 458 | - if (!is_array($cat) && strstr($cat, ',')) |
|
| 459 | - $cat = explode(',', $cat);
|
|
| 458 | + if (!is_array($cat) && strstr($cat, ',')) |
|
| 459 | + $cat = explode(',', $cat);
|
|
| 460 | 460 | |
| 461 | - if (!empty($cat) && is_array($cat)) |
|
| 462 | - $post_category = array_map('intval', $cat);
|
|
| 463 | - } |
|
| 461 | + if (!empty($cat) && is_array($cat)) |
|
| 462 | + $post_category = array_map('intval', $cat);
|
|
| 463 | + } |
|
| 464 | 464 | |
| 465 | - wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
| 466 | - } |
|
| 465 | + wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
| 466 | + } |
|
| 467 | 467 | |
| 468 | - $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
| 468 | + $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
| 469 | 469 | |
| 470 | - $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
| 471 | - geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
| 470 | + $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
| 471 | + geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
| 472 | 472 | |
| 473 | - } |
|
| 473 | + } |
|
| 474 | 474 | |
| 475 | - $post_tags = ''; |
|
| 476 | - // Set tags to the listing |
|
| 477 | - if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
|
| 478 | - $post_tags = explode(",", $request_info['post_tags']);
|
|
| 479 | - } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
|
| 480 | - if ($dummy) |
|
| 481 | - $post_tags = $request_info['post_tags']; |
|
| 482 | - } else {
|
|
| 483 | - if ($dummy) |
|
| 484 | - $post_tags = array($request_info['post_title']); |
|
| 485 | - } |
|
| 475 | + $post_tags = ''; |
|
| 476 | + // Set tags to the listing |
|
| 477 | + if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
|
| 478 | + $post_tags = explode(",", $request_info['post_tags']);
|
|
| 479 | + } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
|
| 480 | + if ($dummy) |
|
| 481 | + $post_tags = $request_info['post_tags']; |
|
| 482 | + } else {
|
|
| 483 | + if ($dummy) |
|
| 484 | + $post_tags = array($request_info['post_title']); |
|
| 485 | + } |
|
| 486 | 486 | |
| 487 | - if (is_array($post_tags)) {
|
|
| 488 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 489 | - wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
| 490 | - } |
|
| 487 | + if (is_array($post_tags)) {
|
|
| 488 | + $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 489 | + wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
| 490 | + } |
|
| 491 | 491 | |
| 492 | 492 | |
| 493 | - // Insert attechment |
|
| 493 | + // Insert attechment |
|
| 494 | 494 | |
| 495 | - if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
|
|
| 496 | - if (!$dummy) {
|
|
| 497 | - $tmpimgArr = trim($request_info['post_images'], ","); |
|
| 498 | - $tmpimgArr = explode(",", $tmpimgArr);
|
|
| 499 | - geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
| 500 | - } else{
|
|
| 501 | - geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
| 502 | - } |
|
| 495 | + if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
|
|
| 496 | + if (!$dummy) {
|
|
| 497 | + $tmpimgArr = trim($request_info['post_images'], ","); |
|
| 498 | + $tmpimgArr = explode(",", $tmpimgArr);
|
|
| 499 | + geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
| 500 | + } else{
|
|
| 501 | + geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
| 502 | + } |
|
| 503 | 503 | |
| 504 | 504 | |
| 505 | - } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
|
|
| 505 | + } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
|
|
| 506 | 506 | |
| 507 | - /* Delete Attachments |
|
| 507 | + /* Delete Attachments |
|
| 508 | 508 | $postcurr_images = geodir_get_images($last_post_id); |
| 509 | 509 | |
| 510 | 510 | $wpdb->query( |
@@ -520,34 +520,34 @@ discard block |
||
| 520 | 520 | geodir_save_post_info($last_post_id, $gd_post_featured_img); |
| 521 | 521 | */ |
| 522 | 522 | |
| 523 | - } |
|
| 523 | + } |
|
| 524 | 524 | |
| 525 | - geodir_remove_temp_images(); |
|
| 526 | - geodir_set_wp_featured_image($last_post_id); |
|
| 525 | + geodir_remove_temp_images(); |
|
| 526 | + geodir_set_wp_featured_image($last_post_id); |
|
| 527 | 527 | |
| 528 | - /** |
|
| 529 | - * Called after a listing is saved to the database and before any email have been sent. |
|
| 530 | - * |
|
| 531 | - * @since 1.0.0 |
|
| 532 | - * @param int $last_post_id The saved post ID. |
|
| 533 | - * @param array $request_info The post details in an array. |
|
| 534 | - * @see 'geodir_after_save_listinginfo' |
|
| 535 | - */ |
|
| 536 | - do_action('geodir_after_save_listing', $last_post_id, $request_info);
|
|
| 528 | + /** |
|
| 529 | + * Called after a listing is saved to the database and before any email have been sent. |
|
| 530 | + * |
|
| 531 | + * @since 1.0.0 |
|
| 532 | + * @param int $last_post_id The saved post ID. |
|
| 533 | + * @param array $request_info The post details in an array. |
|
| 534 | + * @see 'geodir_after_save_listinginfo' |
|
| 535 | + */ |
|
| 536 | + do_action('geodir_after_save_listing', $last_post_id, $request_info);
|
|
| 537 | 537 | |
| 538 | - //die; |
|
| 538 | + //die; |
|
| 539 | 539 | |
| 540 | - if ($send_post_submit_mail) { // if new post send out email
|
|
| 541 | - $to_name = geodir_get_client_name($current_user->ID); |
|
| 542 | - geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
|
|
| 543 | - } |
|
| 544 | - /* |
|
| 540 | + if ($send_post_submit_mail) { // if new post send out email
|
|
| 541 | + $to_name = geodir_get_client_name($current_user->ID); |
|
| 542 | + geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
|
|
| 543 | + } |
|
| 544 | + /* |
|
| 545 | 545 | * Unset the session so we don't loop. |
| 546 | 546 | */ |
| 547 | - $gd_session->un_set('listing');
|
|
| 548 | - return $last_post_id; |
|
| 547 | + $gd_session->un_set('listing');
|
|
| 548 | + return $last_post_id; |
|
| 549 | 549 | |
| 550 | - } |
|
| 550 | + } |
|
| 551 | 551 | |
| 552 | 552 | } |
| 553 | 553 | |
@@ -566,599 +566,599 @@ discard block |
||
| 566 | 566 | function geodir_get_post_info($post_id = '') |
| 567 | 567 | {
|
| 568 | 568 | |
| 569 | - global $wpdb, $plugin_prefix, $post, $post_info; |
|
| 569 | + global $wpdb, $plugin_prefix, $post, $post_info; |
|
| 570 | 570 | |
| 571 | - if ($post_id == '' && !empty($post)) |
|
| 572 | - $post_id = $post->ID; |
|
| 571 | + if ($post_id == '' && !empty($post)) |
|
| 572 | + $post_id = $post->ID; |
|
| 573 | 573 | |
| 574 | - $post_type = get_post_type($post_id); |
|
| 574 | + $post_type = get_post_type($post_id); |
|
| 575 | 575 | |
| 576 | - $all_postypes = geodir_get_posttypes(); |
|
| 576 | + $all_postypes = geodir_get_posttypes(); |
|
| 577 | 577 | |
| 578 | - if (!in_array($post_type, $all_postypes)) |
|
| 579 | - return false; |
|
| 578 | + if (!in_array($post_type, $all_postypes)) |
|
| 579 | + return false; |
|
| 580 | 580 | |
| 581 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 581 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 582 | 582 | |
| 583 | - /** |
|
| 584 | - * Apply Filter to change Post info |
|
| 585 | - * |
|
| 586 | - * You can use this filter to change Post info. |
|
| 587 | - * |
|
| 588 | - * @since 1.0.0 |
|
| 589 | - * @package GeoDirectory |
|
| 590 | - */ |
|
| 591 | - $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 583 | + /** |
|
| 584 | + * Apply Filter to change Post info |
|
| 585 | + * |
|
| 586 | + * You can use this filter to change Post info. |
|
| 587 | + * |
|
| 588 | + * @since 1.0.0 |
|
| 589 | + * @package GeoDirectory |
|
| 590 | + */ |
|
| 591 | + $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 592 | 592 | WHERE p.ID = pd.post_id |
| 593 | 593 | AND post_id = " . $post_id); |
| 594 | 594 | |
| 595 | - $post_detail = $wpdb->get_row($query); |
|
| 595 | + $post_detail = $wpdb->get_row($query); |
|
| 596 | 596 | |
| 597 | - return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
| 597 | + return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
| 598 | 598 | |
| 599 | 599 | } |
| 600 | 600 | |
| 601 | 601 | |
| 602 | 602 | if (!function_exists('geodir_save_post_info')) {
|
| 603 | - /** |
|
| 604 | - * Saves post detail info in detail table. |
|
| 605 | - * |
|
| 606 | - * @since 1.0.0 |
|
| 607 | - * @package GeoDirectory |
|
| 608 | - * @global object $wpdb WordPress Database object. |
|
| 609 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 610 | - * @param int $post_id The post ID. |
|
| 611 | - * @param array $postinfo_array {
|
|
| 612 | - * Post info that needs to be saved in detail table. |
|
| 613 | - * |
|
| 614 | - * @type string $post_title Listing title. |
|
| 615 | - * @type string $post_tags Listing tags. |
|
| 616 | - * @type string $post_status Listing post status. |
|
| 617 | - * @type string $post_location_id Listing location ID. |
|
| 618 | - * @type string $claimed Todo Desc needed. |
|
| 619 | - * @type string $businesses Todo Desc needed. |
|
| 620 | - * @type int $submit_time Submitted time in unix timestamp. |
|
| 621 | - * @type string $submit_ip Submitted IP. |
|
| 622 | - * @type string $expire_date Listing expiration date. |
|
| 623 | - * @type int $package_id Listing package ID. |
|
| 624 | - * @type int $alive_days Todo Desc needed. |
|
| 625 | - * @type int $is_featured Is this a featured listing?. |
|
| 626 | - * @type string $post_address Listing address. |
|
| 627 | - * @type string $post_city Listing city. |
|
| 628 | - * @type string $post_region Listing region. |
|
| 629 | - * @type string $post_country Listing country. |
|
| 630 | - * @type string $post_locations Listing locations. |
|
| 631 | - * @type string $post_zip Listing zip. |
|
| 632 | - * @type string $post_latitude Listing latitude. |
|
| 633 | - * @type string $post_longitude Listing longitude. |
|
| 634 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 635 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 636 | - * @type string $geodir_timing Business timing info. |
|
| 637 | - * @type string $geodir_contact Contact number. |
|
| 638 | - * @type string $geodir_email Business contact email. |
|
| 639 | - * @type string $geodir_website Business website. |
|
| 640 | - * @type string $geodir_twitter Twitter link. |
|
| 641 | - * @type string $geodir_facebook Facebook link. |
|
| 642 | - * @type string $geodir_video Video link. |
|
| 643 | - * @type string $geodir_special_offers Speacial offers. |
|
| 644 | - * |
|
| 645 | - * } |
|
| 646 | - * @return bool |
|
| 647 | - */ |
|
| 648 | - function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
| 649 | - {
|
|
| 650 | - global $wpdb, $plugin_prefix; |
|
| 651 | - |
|
| 652 | - $post_type = get_post_type($post_id); |
|
| 653 | - |
|
| 654 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 655 | - |
|
| 656 | - /** |
|
| 657 | - * Filter to change Post info |
|
| 658 | - * |
|
| 659 | - * You can use this filter to change Post info. |
|
| 660 | - * |
|
| 661 | - * @since 1.0.0 |
|
| 662 | - * @package GeoDirectory |
|
| 663 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 664 | - * @param int $post_id The post ID. |
|
| 665 | - */ |
|
| 666 | - $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
|
|
| 603 | + /** |
|
| 604 | + * Saves post detail info in detail table. |
|
| 605 | + * |
|
| 606 | + * @since 1.0.0 |
|
| 607 | + * @package GeoDirectory |
|
| 608 | + * @global object $wpdb WordPress Database object. |
|
| 609 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 610 | + * @param int $post_id The post ID. |
|
| 611 | + * @param array $postinfo_array {
|
|
| 612 | + * Post info that needs to be saved in detail table. |
|
| 613 | + * |
|
| 614 | + * @type string $post_title Listing title. |
|
| 615 | + * @type string $post_tags Listing tags. |
|
| 616 | + * @type string $post_status Listing post status. |
|
| 617 | + * @type string $post_location_id Listing location ID. |
|
| 618 | + * @type string $claimed Todo Desc needed. |
|
| 619 | + * @type string $businesses Todo Desc needed. |
|
| 620 | + * @type int $submit_time Submitted time in unix timestamp. |
|
| 621 | + * @type string $submit_ip Submitted IP. |
|
| 622 | + * @type string $expire_date Listing expiration date. |
|
| 623 | + * @type int $package_id Listing package ID. |
|
| 624 | + * @type int $alive_days Todo Desc needed. |
|
| 625 | + * @type int $is_featured Is this a featured listing?. |
|
| 626 | + * @type string $post_address Listing address. |
|
| 627 | + * @type string $post_city Listing city. |
|
| 628 | + * @type string $post_region Listing region. |
|
| 629 | + * @type string $post_country Listing country. |
|
| 630 | + * @type string $post_locations Listing locations. |
|
| 631 | + * @type string $post_zip Listing zip. |
|
| 632 | + * @type string $post_latitude Listing latitude. |
|
| 633 | + * @type string $post_longitude Listing longitude. |
|
| 634 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 635 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 636 | + * @type string $geodir_timing Business timing info. |
|
| 637 | + * @type string $geodir_contact Contact number. |
|
| 638 | + * @type string $geodir_email Business contact email. |
|
| 639 | + * @type string $geodir_website Business website. |
|
| 640 | + * @type string $geodir_twitter Twitter link. |
|
| 641 | + * @type string $geodir_facebook Facebook link. |
|
| 642 | + * @type string $geodir_video Video link. |
|
| 643 | + * @type string $geodir_special_offers Speacial offers. |
|
| 644 | + * |
|
| 645 | + * } |
|
| 646 | + * @return bool |
|
| 647 | + */ |
|
| 648 | + function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
| 649 | + {
|
|
| 650 | + global $wpdb, $plugin_prefix; |
|
| 651 | + |
|
| 652 | + $post_type = get_post_type($post_id); |
|
| 653 | + |
|
| 654 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 655 | + |
|
| 656 | + /** |
|
| 657 | + * Filter to change Post info |
|
| 658 | + * |
|
| 659 | + * You can use this filter to change Post info. |
|
| 660 | + * |
|
| 661 | + * @since 1.0.0 |
|
| 662 | + * @package GeoDirectory |
|
| 663 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 664 | + * @param int $post_id The post ID. |
|
| 665 | + */ |
|
| 666 | + $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
|
|
| 667 | + |
|
| 668 | + $query_string_escaped = ''; |
|
| 669 | + $query_string_array = array(); |
|
| 670 | + |
|
| 671 | + if (!empty($postmeta) && $post_id) {
|
|
| 672 | + |
|
| 673 | + $columns = $wpdb->get_col("show columns from $table");
|
|
| 674 | + foreach ($postmeta as $mkey => $mval) {
|
|
| 675 | + if(in_array($mkey,$columns)) {
|
|
| 676 | + if (is_array($mval)) {
|
|
| 677 | + $mval = implode(",", $mval);
|
|
| 678 | + } |
|
| 679 | + $query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above |
|
| 680 | + $query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare |
|
| 667 | 681 | |
| 668 | - $query_string_escaped = ''; |
|
| 669 | - $query_string_array = array(); |
|
| 682 | + } |
|
| 683 | + } |
|
| 670 | 684 | |
| 671 | - if (!empty($postmeta) && $post_id) {
|
|
| 685 | + $query_string_escaped = trim($query_string_escaped, ", "); |
|
| 672 | 686 | |
| 673 | - $columns = $wpdb->get_col("show columns from $table");
|
|
| 674 | - foreach ($postmeta as $mkey => $mval) {
|
|
| 675 | - if(in_array($mkey,$columns)) {
|
|
| 676 | - if (is_array($mval)) {
|
|
| 677 | - $mval = implode(",", $mval);
|
|
| 678 | - } |
|
| 679 | - $query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above |
|
| 680 | - $query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare |
|
| 687 | + if (empty($query_string_array) || trim($query_string_escaped) == '') {
|
|
| 688 | + return false; |
|
| 689 | + } |
|
| 681 | 690 | |
| 682 | - } |
|
| 683 | - } |
|
| 691 | + $query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array);
|
|
| 684 | 692 | |
| 685 | - $query_string_escaped = trim($query_string_escaped, ", "); |
|
| 686 | 693 | |
| 687 | - if (empty($query_string_array) || trim($query_string_escaped) == '') {
|
|
| 688 | - return false; |
|
| 689 | - } |
|
| 694 | + /** |
|
| 695 | + * Called before saving the listing info. |
|
| 696 | + * |
|
| 697 | + * @since 1.0.0 |
|
| 698 | + * @package GeoDirectory |
|
| 699 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 700 | + * @param int $post_id The post ID. |
|
| 701 | + */ |
|
| 702 | + do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
|
| 690 | 703 | |
| 691 | - $query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array);
|
|
| 704 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 692 | 705 | |
| 706 | + $query_string_array[] = $post_id; |
|
| 707 | + $wpdb->query( |
|
| 708 | + $wpdb->prepare( |
|
| 709 | + "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d", |
|
| 710 | + $query_string_array |
|
| 711 | + ) |
|
| 712 | + ); |
|
| 693 | 713 | |
| 694 | - /** |
|
| 695 | - * Called before saving the listing info. |
|
| 696 | - * |
|
| 697 | - * @since 1.0.0 |
|
| 698 | - * @package GeoDirectory |
|
| 699 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 700 | - * @param int $post_id The post ID. |
|
| 701 | - */ |
|
| 702 | - do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
|
| 703 | 714 | |
| 704 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 715 | + } else {
|
|
| 705 | 716 | |
| 706 | - $query_string_array[] = $post_id; |
|
| 707 | - $wpdb->query( |
|
| 708 | - $wpdb->prepare( |
|
| 709 | - "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d", |
|
| 710 | - $query_string_array |
|
| 711 | - ) |
|
| 712 | - ); |
|
| 717 | + array_unshift($query_string_array, $post_id); |
|
| 718 | + $wpdb->query( |
|
| 719 | + $wpdb->prepare( |
|
| 720 | + "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped, |
|
| 721 | + $query_string_array |
|
| 722 | + ) |
|
| 723 | + ); |
|
| 724 | + |
|
| 725 | + } |
|
| 713 | 726 | |
| 727 | + /** |
|
| 728 | + * Called after saving the listing info. |
|
| 729 | + * |
|
| 730 | + * @since 1.0.0 |
|
| 731 | + * @package GeoDirectory |
|
| 732 | + * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
| 733 | + * @param int $post_id The post ID. |
|
| 734 | + * @see 'geodir_after_save_listing' |
|
| 735 | + */ |
|
| 736 | + do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
|
| 737 | + |
|
| 738 | + return true; |
|
| 739 | + } else |
|
| 740 | + return false; |
|
| 714 | 741 | |
| 715 | - } else {
|
|
| 742 | + } |
|
| 743 | +} |
|
| 716 | 744 | |
| 717 | - array_unshift($query_string_array, $post_id); |
|
| 718 | - $wpdb->query( |
|
| 719 | - $wpdb->prepare( |
|
| 720 | - "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped, |
|
| 721 | - $query_string_array |
|
| 722 | - ) |
|
| 723 | - ); |
|
| 724 | - |
|
| 725 | - } |
|
| 726 | 745 | |
| 727 | - /** |
|
| 728 | - * Called after saving the listing info. |
|
| 729 | - * |
|
| 730 | - * @since 1.0.0 |
|
| 731 | - * @package GeoDirectory |
|
| 732 | - * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
| 733 | - * @param int $post_id The post ID. |
|
| 734 | - * @see 'geodir_after_save_listing' |
|
| 735 | - */ |
|
| 736 | - do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
|
| 746 | +if (!function_exists('geodir_save_post_meta')) {
|
|
| 747 | + /** |
|
| 748 | + * Save or update post custom fields. |
|
| 749 | + * |
|
| 750 | + * @since 1.0.0 |
|
| 751 | + * @package GeoDirectory |
|
| 752 | + * @global object $wpdb WordPress Database object. |
|
| 753 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 754 | + * @param int $post_id The post ID. |
|
| 755 | + * @param string $postmeta Detail table column name. |
|
| 756 | + * @param string $meta_value Detail table column value. |
|
| 757 | + * @return void|bool |
|
| 758 | + */ |
|
| 759 | + function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
| 760 | + {
|
|
| 761 | + |
|
| 762 | + global $wpdb, $plugin_prefix; |
|
| 763 | + |
|
| 764 | + $post_type = get_post_type($post_id); |
|
| 765 | + |
|
| 766 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 767 | + |
|
| 768 | + if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
|
| 769 | + |
|
| 770 | + if (is_array($meta_value)) {
|
|
| 771 | + $meta_value = implode(",", $meta_value);
|
|
| 772 | + } |
|
| 737 | 773 | |
| 738 | - return true; |
|
| 739 | - } else |
|
| 740 | - return false; |
|
| 774 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 741 | 775 | |
| 742 | - } |
|
| 743 | -} |
|
| 776 | + $wpdb->query( |
|
| 777 | + $wpdb->prepare( |
|
| 778 | + "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 779 | + array($post_id) |
|
| 780 | + ) |
|
| 781 | + ); |
|
| 744 | 782 | |
| 783 | + } else {
|
|
| 745 | 784 | |
| 746 | -if (!function_exists('geodir_save_post_meta')) {
|
|
| 747 | - /** |
|
| 748 | - * Save or update post custom fields. |
|
| 749 | - * |
|
| 750 | - * @since 1.0.0 |
|
| 751 | - * @package GeoDirectory |
|
| 752 | - * @global object $wpdb WordPress Database object. |
|
| 753 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 754 | - * @param int $post_id The post ID. |
|
| 755 | - * @param string $postmeta Detail table column name. |
|
| 756 | - * @param string $meta_value Detail table column value. |
|
| 757 | - * @return void|bool |
|
| 758 | - */ |
|
| 759 | - function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
| 760 | - {
|
|
| 761 | - |
|
| 762 | - global $wpdb, $plugin_prefix; |
|
| 763 | - |
|
| 764 | - $post_type = get_post_type($post_id); |
|
| 765 | - |
|
| 766 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 767 | - |
|
| 768 | - if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
|
| 769 | - |
|
| 770 | - if (is_array($meta_value)) {
|
|
| 771 | - $meta_value = implode(",", $meta_value);
|
|
| 772 | - } |
|
| 773 | - |
|
| 774 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 775 | - |
|
| 776 | - $wpdb->query( |
|
| 777 | - $wpdb->prepare( |
|
| 778 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 779 | - array($post_id) |
|
| 780 | - ) |
|
| 781 | - ); |
|
| 782 | - |
|
| 783 | - } else {
|
|
| 784 | - |
|
| 785 | - $wpdb->query( |
|
| 786 | - $wpdb->prepare( |
|
| 787 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 788 | - array($post_id) |
|
| 789 | - ) |
|
| 790 | - ); |
|
| 791 | - } |
|
| 792 | - |
|
| 793 | - |
|
| 794 | - } else |
|
| 795 | - return false; |
|
| 796 | - } |
|
| 785 | + $wpdb->query( |
|
| 786 | + $wpdb->prepare( |
|
| 787 | + "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 788 | + array($post_id) |
|
| 789 | + ) |
|
| 790 | + ); |
|
| 791 | + } |
|
| 792 | + |
|
| 793 | + |
|
| 794 | + } else |
|
| 795 | + return false; |
|
| 796 | + } |
|
| 797 | 797 | } |
| 798 | 798 | |
| 799 | 799 | if (!function_exists('geodir_delete_post_meta')) {
|
| 800 | - /** |
|
| 801 | - * Delete post custom fields. |
|
| 802 | - * |
|
| 803 | - * @since 1.0.0 |
|
| 804 | - * @package GeoDirectory |
|
| 805 | - * @global object $wpdb WordPress Database object. |
|
| 806 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 807 | - * @param int $post_id The post ID. |
|
| 808 | - * @param string $postmeta Detail table column name. |
|
| 809 | - * @todo check if this is depreciated |
|
| 810 | - * @todo Fix unknown variable mval |
|
| 811 | - * @return bool |
|
| 812 | - */ |
|
| 813 | - function geodir_delete_post_meta($post_id, $postmeta) |
|
| 814 | - {
|
|
| 815 | - |
|
| 816 | - global $wpdb, $plugin_prefix; |
|
| 817 | - |
|
| 818 | - $post_type = get_post_type($post_id); |
|
| 819 | - |
|
| 820 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 821 | - |
|
| 822 | - if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
|
| 823 | - $post_meta_set_query = ''; |
|
| 824 | - |
|
| 825 | - foreach ($postmeta as $mkey) {
|
|
| 826 | - if ($mval != '') |
|
| 827 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 828 | - } |
|
| 829 | - |
|
| 830 | - $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 800 | + /** |
|
| 801 | + * Delete post custom fields. |
|
| 802 | + * |
|
| 803 | + * @since 1.0.0 |
|
| 804 | + * @package GeoDirectory |
|
| 805 | + * @global object $wpdb WordPress Database object. |
|
| 806 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 807 | + * @param int $post_id The post ID. |
|
| 808 | + * @param string $postmeta Detail table column name. |
|
| 809 | + * @todo check if this is depreciated |
|
| 810 | + * @todo Fix unknown variable mval |
|
| 811 | + * @return bool |
|
| 812 | + */ |
|
| 813 | + function geodir_delete_post_meta($post_id, $postmeta) |
|
| 814 | + {
|
|
| 815 | + |
|
| 816 | + global $wpdb, $plugin_prefix; |
|
| 817 | + |
|
| 818 | + $post_type = get_post_type($post_id); |
|
| 819 | + |
|
| 820 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 821 | + |
|
| 822 | + if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
|
| 823 | + $post_meta_set_query = ''; |
|
| 824 | + |
|
| 825 | + foreach ($postmeta as $mkey) {
|
|
| 826 | + if ($mval != '') |
|
| 827 | + $post_meta_set_query .= $mkey . " = '', "; |
|
| 828 | + } |
|
| 829 | + |
|
| 830 | + $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 831 | 831 | |
| 832 | - if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
|
|
| 833 | - return false; |
|
| 834 | - } |
|
| 835 | - |
|
| 836 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 837 | - |
|
| 838 | - $wpdb->query( |
|
| 839 | - $wpdb->prepare( |
|
| 840 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 841 | - array($post_id) |
|
| 842 | - ) |
|
| 843 | - ); |
|
| 844 | - |
|
| 845 | - return true; |
|
| 846 | - } |
|
| 847 | - |
|
| 848 | - } elseif ($postmeta != '' && $post_id) {
|
|
| 849 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 850 | - |
|
| 851 | - $wpdb->query( |
|
| 852 | - $wpdb->prepare( |
|
| 853 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 854 | - array($post_id) |
|
| 855 | - ) |
|
| 856 | - ); |
|
| 857 | - |
|
| 858 | - return true; |
|
| 859 | - } |
|
| 860 | - |
|
| 861 | - } else |
|
| 862 | - return false; |
|
| 863 | - } |
|
| 832 | + if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
|
|
| 833 | + return false; |
|
| 834 | + } |
|
| 835 | + |
|
| 836 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 837 | + |
|
| 838 | + $wpdb->query( |
|
| 839 | + $wpdb->prepare( |
|
| 840 | + "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 841 | + array($post_id) |
|
| 842 | + ) |
|
| 843 | + ); |
|
| 844 | + |
|
| 845 | + return true; |
|
| 846 | + } |
|
| 847 | + |
|
| 848 | + } elseif ($postmeta != '' && $post_id) {
|
|
| 849 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 850 | + |
|
| 851 | + $wpdb->query( |
|
| 852 | + $wpdb->prepare( |
|
| 853 | + "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 854 | + array($post_id) |
|
| 855 | + ) |
|
| 856 | + ); |
|
| 857 | + |
|
| 858 | + return true; |
|
| 859 | + } |
|
| 860 | + |
|
| 861 | + } else |
|
| 862 | + return false; |
|
| 863 | + } |
|
| 864 | 864 | } |
| 865 | 865 | |
| 866 | 866 | |
| 867 | 867 | if (!function_exists('geodir_get_post_meta')) {
|
| 868 | - /** |
|
| 869 | - * Get post custom meta. |
|
| 870 | - * |
|
| 871 | - * @since 1.0.0 |
|
| 872 | - * @package GeoDirectory |
|
| 873 | - * @global object $wpdb WordPress Database object. |
|
| 874 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 875 | - * @param int $post_id The post ID. |
|
| 876 | - * @param string $meta_key The meta key to retrieve. |
|
| 877 | - * @param bool $single Optional. Whether to return a single value. Default false. |
|
| 878 | - * @todo single variable not yet implemented. |
|
| 879 | - * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
| 880 | - */ |
|
| 881 | - function geodir_get_post_meta($post_id, $meta_key, $single = false) |
|
| 882 | - {
|
|
| 883 | - if (!$post_id) {
|
|
| 884 | - return false; |
|
| 885 | - } |
|
| 886 | - global $wpdb, $plugin_prefix; |
|
| 887 | - |
|
| 888 | - $all_postypes = geodir_get_posttypes(); |
|
| 889 | - |
|
| 890 | - $post_type = get_post_type($post_id); |
|
| 891 | - |
|
| 892 | - if (!in_array($post_type, $all_postypes)) |
|
| 893 | - return false; |
|
| 894 | - |
|
| 895 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 896 | - |
|
| 897 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 898 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 899 | - if ($meta_value && $meta_value !== '') {
|
|
| 900 | - return maybe_serialize($meta_value); |
|
| 901 | - } else |
|
| 902 | - return $meta_value; |
|
| 903 | - } else {
|
|
| 904 | - return false; |
|
| 905 | - } |
|
| 906 | - } |
|
| 868 | + /** |
|
| 869 | + * Get post custom meta. |
|
| 870 | + * |
|
| 871 | + * @since 1.0.0 |
|
| 872 | + * @package GeoDirectory |
|
| 873 | + * @global object $wpdb WordPress Database object. |
|
| 874 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 875 | + * @param int $post_id The post ID. |
|
| 876 | + * @param string $meta_key The meta key to retrieve. |
|
| 877 | + * @param bool $single Optional. Whether to return a single value. Default false. |
|
| 878 | + * @todo single variable not yet implemented. |
|
| 879 | + * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
| 880 | + */ |
|
| 881 | + function geodir_get_post_meta($post_id, $meta_key, $single = false) |
|
| 882 | + {
|
|
| 883 | + if (!$post_id) {
|
|
| 884 | + return false; |
|
| 885 | + } |
|
| 886 | + global $wpdb, $plugin_prefix; |
|
| 887 | + |
|
| 888 | + $all_postypes = geodir_get_posttypes(); |
|
| 889 | + |
|
| 890 | + $post_type = get_post_type($post_id); |
|
| 891 | + |
|
| 892 | + if (!in_array($post_type, $all_postypes)) |
|
| 893 | + return false; |
|
| 894 | + |
|
| 895 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 896 | + |
|
| 897 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 898 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 899 | + if ($meta_value && $meta_value !== '') {
|
|
| 900 | + return maybe_serialize($meta_value); |
|
| 901 | + } else |
|
| 902 | + return $meta_value; |
|
| 903 | + } else {
|
|
| 904 | + return false; |
|
| 905 | + } |
|
| 906 | + } |
|
| 907 | 907 | } |
| 908 | 908 | |
| 909 | 909 | |
| 910 | 910 | if (!function_exists('geodir_save_post_images')) {
|
| 911 | - /** |
|
| 912 | - * Save post attachments. |
|
| 913 | - * |
|
| 914 | - * @since 1.0.0 |
|
| 915 | - * @package GeoDirectory |
|
| 916 | - * @global object $wpdb WordPress Database object. |
|
| 917 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 918 | - * @global object $current_user Current user object. |
|
| 919 | - * @param int $post_id The post ID. |
|
| 920 | - * @param array $post_image Post image urls as an array. |
|
| 921 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 922 | - */ |
|
| 923 | - function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
| 924 | - {
|
|
| 911 | + /** |
|
| 912 | + * Save post attachments. |
|
| 913 | + * |
|
| 914 | + * @since 1.0.0 |
|
| 915 | + * @package GeoDirectory |
|
| 916 | + * @global object $wpdb WordPress Database object. |
|
| 917 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 918 | + * @global object $current_user Current user object. |
|
| 919 | + * @param int $post_id The post ID. |
|
| 920 | + * @param array $post_image Post image urls as an array. |
|
| 921 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 922 | + */ |
|
| 923 | + function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
| 924 | + {
|
|
| 925 | 925 | |
| 926 | 926 | |
| 927 | - global $wpdb, $plugin_prefix, $current_user; |
|
| 927 | + global $wpdb, $plugin_prefix, $current_user; |
|
| 928 | 928 | |
| 929 | - $post_type = get_post_type($post_id); |
|
| 929 | + $post_type = get_post_type($post_id); |
|
| 930 | 930 | |
| 931 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 931 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 932 | 932 | |
| 933 | - $post_images = geodir_get_images($post_id); |
|
| 933 | + $post_images = geodir_get_images($post_id); |
|
| 934 | 934 | |
| 935 | - $wpdb->query( |
|
| 936 | - $wpdb->prepare( |
|
| 937 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 938 | - array($post_id) |
|
| 939 | - ) |
|
| 940 | - ); |
|
| 935 | + $wpdb->query( |
|
| 936 | + $wpdb->prepare( |
|
| 937 | + "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 938 | + array($post_id) |
|
| 939 | + ) |
|
| 940 | + ); |
|
| 941 | 941 | |
| 942 | - $invalid_files = $post_images; |
|
| 943 | - $valid_file_ids = array(); |
|
| 944 | - $valid_files_condition = ''; |
|
| 945 | - $geodir_uploaddir = ''; |
|
| 942 | + $invalid_files = $post_images; |
|
| 943 | + $valid_file_ids = array(); |
|
| 944 | + $valid_files_condition = ''; |
|
| 945 | + $geodir_uploaddir = ''; |
|
| 946 | 946 | |
| 947 | - $remove_files = array(); |
|
| 947 | + $remove_files = array(); |
|
| 948 | 948 | |
| 949 | - if (!empty($post_image)) {
|
|
| 949 | + if (!empty($post_image)) {
|
|
| 950 | 950 | |
| 951 | - $uploads = wp_upload_dir(); |
|
| 952 | - $uploads_dir = $uploads['path']; |
|
| 951 | + $uploads = wp_upload_dir(); |
|
| 952 | + $uploads_dir = $uploads['path']; |
|
| 953 | 953 | |
| 954 | - $geodir_uploadpath = $uploads['path']; |
|
| 955 | - $geodir_uploadurl = $uploads['url']; |
|
| 956 | - $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
| 954 | + $geodir_uploadpath = $uploads['path']; |
|
| 955 | + $geodir_uploadurl = $uploads['url']; |
|
| 956 | + $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
| 957 | 957 | |
| 958 | - $invalid_files = array(); |
|
| 959 | - $postcurr_images = array(); |
|
| 958 | + $invalid_files = array(); |
|
| 959 | + $postcurr_images = array(); |
|
| 960 | 960 | |
| 961 | - for ($m = 0; $m < count($post_image); $m++) {
|
|
| 962 | - $menu_order = $m + 1; |
|
| 961 | + for ($m = 0; $m < count($post_image); $m++) {
|
|
| 962 | + $menu_order = $m + 1; |
|
| 963 | 963 | |
| 964 | - $file_path = ''; |
|
| 965 | - /* --------- start ------- */ |
|
| 964 | + $file_path = ''; |
|
| 965 | + /* --------- start ------- */ |
|
| 966 | 966 | |
| 967 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 967 | + $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 968 | 968 | |
| 969 | - $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 969 | + $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 970 | 970 | |
| 971 | 971 | |
| 972 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 972 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 973 | 973 | |
| 974 | - /* --------- end ------- */ |
|
| 975 | - $curr_img_url = $post_image[$m]; |
|
| 974 | + /* --------- end ------- */ |
|
| 975 | + $curr_img_url = $post_image[$m]; |
|
| 976 | 976 | |
| 977 | - $image_name_arr = explode('/', $curr_img_url);
|
|
| 977 | + $image_name_arr = explode('/', $curr_img_url);
|
|
| 978 | 978 | |
| 979 | - $count_image_name_arr = count($image_name_arr) - 2; |
|
| 979 | + $count_image_name_arr = count($image_name_arr) - 2; |
|
| 980 | 980 | |
| 981 | - $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
| 981 | + $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
| 982 | 982 | |
| 983 | - $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
| 983 | + $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
| 984 | 984 | |
| 985 | - $filename = end($image_name_arr); |
|
| 986 | - if (strpos($filename, '?') !== false) {
|
|
| 987 | - list($filename) = explode('?', $filename);
|
|
| 988 | - } |
|
| 985 | + $filename = end($image_name_arr); |
|
| 986 | + if (strpos($filename, '?') !== false) {
|
|
| 987 | + list($filename) = explode('?', $filename);
|
|
| 988 | + } |
|
| 989 | 989 | |
| 990 | - $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
| 991 | - $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
| 990 | + $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
| 991 | + $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
| 992 | 992 | |
| 993 | - $img_name_arr = explode('.', $filename);
|
|
| 993 | + $img_name_arr = explode('.', $filename);
|
|
| 994 | 994 | |
| 995 | - $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
| 996 | - if (!empty($img_name_arr) && count($img_name_arr) > 2) {
|
|
| 997 | - $new_img_name_arr = $img_name_arr; |
|
| 998 | - if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
|
|
| 999 | - unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
| 1000 | - $file_title = implode('.', $new_img_name_arr);
|
|
| 1001 | - } |
|
| 1002 | - } |
|
| 1003 | - $file_title = sanitize_file_name($file_title); |
|
| 1004 | - $file_name = sanitize_file_name($filename); |
|
| 995 | + $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
| 996 | + if (!empty($img_name_arr) && count($img_name_arr) > 2) {
|
|
| 997 | + $new_img_name_arr = $img_name_arr; |
|
| 998 | + if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
|
|
| 999 | + unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
| 1000 | + $file_title = implode('.', $new_img_name_arr);
|
|
| 1001 | + } |
|
| 1002 | + } |
|
| 1003 | + $file_title = sanitize_file_name($file_title); |
|
| 1004 | + $file_name = sanitize_file_name($filename); |
|
| 1005 | 1005 | |
| 1006 | - $arr_file_type = wp_check_filetype($filename); |
|
| 1006 | + $arr_file_type = wp_check_filetype($filename); |
|
| 1007 | 1007 | |
| 1008 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 1008 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 1009 | 1009 | |
| 1010 | - // Set an array containing a list of acceptable formats |
|
| 1011 | - $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
|
|
| 1010 | + // Set an array containing a list of acceptable formats |
|
| 1011 | + $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
|
|
| 1012 | 1012 | |
| 1013 | - // If the uploaded file is the right format |
|
| 1014 | - if (in_array($uploaded_file_type, $allowed_file_types)) {
|
|
| 1015 | - if (!function_exists('wp_handle_upload')) {
|
|
| 1016 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1017 | - } |
|
| 1013 | + // If the uploaded file is the right format |
|
| 1014 | + if (in_array($uploaded_file_type, $allowed_file_types)) {
|
|
| 1015 | + if (!function_exists('wp_handle_upload')) {
|
|
| 1016 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1017 | + } |
|
| 1018 | 1018 | |
| 1019 | - if (!is_dir($geodir_uploadpath)) {
|
|
| 1020 | - mkdir($geodir_uploadpath); |
|
| 1021 | - } |
|
| 1019 | + if (!is_dir($geodir_uploadpath)) {
|
|
| 1020 | + mkdir($geodir_uploadpath); |
|
| 1021 | + } |
|
| 1022 | 1022 | |
| 1023 | - $external_img = false; |
|
| 1024 | - if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
|
|
| 1025 | - } else {
|
|
| 1026 | - $external_img = true; |
|
| 1027 | - } |
|
| 1023 | + $external_img = false; |
|
| 1024 | + if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
|
|
| 1025 | + } else {
|
|
| 1026 | + $external_img = true; |
|
| 1027 | + } |
|
| 1028 | 1028 | |
| 1029 | - if ($dummy || $external_img) {
|
|
| 1030 | - $uploaded_file = array(); |
|
| 1031 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 1029 | + if ($dummy || $external_img) {
|
|
| 1030 | + $uploaded_file = array(); |
|
| 1031 | + $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 1032 | 1032 | |
| 1033 | - if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
|
| 1034 | - $new_name = basename($uploaded['file']); |
|
| 1035 | - $uploaded_file = $uploaded; |
|
| 1036 | - }else{
|
|
| 1037 | - print_r($uploaded);exit; |
|
| 1038 | - } |
|
| 1039 | - $external_img = false; |
|
| 1040 | - } else {
|
|
| 1041 | - $new_name = $post_id . '_' . $file_name; |
|
| 1033 | + if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
|
| 1034 | + $new_name = basename($uploaded['file']); |
|
| 1035 | + $uploaded_file = $uploaded; |
|
| 1036 | + }else{
|
|
| 1037 | + print_r($uploaded);exit; |
|
| 1038 | + } |
|
| 1039 | + $external_img = false; |
|
| 1040 | + } else {
|
|
| 1041 | + $new_name = $post_id . '_' . $file_name; |
|
| 1042 | 1042 | |
| 1043 | - if ($curr_img_dir == $sub_dir) {
|
|
| 1044 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1045 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1046 | - } else {
|
|
| 1047 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1048 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1049 | - } |
|
| 1043 | + if ($curr_img_dir == $sub_dir) {
|
|
| 1044 | + $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1045 | + $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1046 | + } else {
|
|
| 1047 | + $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1048 | + $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1049 | + } |
|
| 1050 | 1050 | |
| 1051 | - $uploaded_file = ''; |
|
| 1051 | + $uploaded_file = ''; |
|
| 1052 | 1052 | |
| 1053 | - if (file_exists($img_path)) {
|
|
| 1054 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1055 | - $file_path = ''; |
|
| 1056 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1057 | - $uploaded_file = true; |
|
| 1058 | - $file_path = $curr_img_dir . '/' . $filename; |
|
| 1059 | - } |
|
| 1053 | + if (file_exists($img_path)) {
|
|
| 1054 | + $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1055 | + $file_path = ''; |
|
| 1056 | + } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1057 | + $uploaded_file = true; |
|
| 1058 | + $file_path = $curr_img_dir . '/' . $filename; |
|
| 1059 | + } |
|
| 1060 | 1060 | |
| 1061 | - if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1062 | - unlink($img_path); |
|
| 1063 | - } |
|
| 1061 | + if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1062 | + unlink($img_path); |
|
| 1063 | + } |
|
| 1064 | 1064 | |
| 1065 | - if (!empty($uploaded_file)) {
|
|
| 1066 | - if (!isset($file_path) || !$file_path) {
|
|
| 1067 | - $file_path = $sub_dir . '/' . $new_name; |
|
| 1068 | - } |
|
| 1065 | + if (!empty($uploaded_file)) {
|
|
| 1066 | + if (!isset($file_path) || !$file_path) {
|
|
| 1067 | + $file_path = $sub_dir . '/' . $new_name; |
|
| 1068 | + } |
|
| 1069 | 1069 | |
| 1070 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1070 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1071 | 1071 | |
| 1072 | - if ($menu_order == 1) {
|
|
| 1072 | + if ($menu_order == 1) {
|
|
| 1073 | 1073 | |
| 1074 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1074 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1075 | 1075 | |
| 1076 | - } |
|
| 1076 | + } |
|
| 1077 | 1077 | |
| 1078 | - // Set up options array to add this file as an attachment |
|
| 1079 | - $attachment = array(); |
|
| 1080 | - $attachment['post_id'] = $post_id; |
|
| 1081 | - $attachment['title'] = $file_title; |
|
| 1082 | - $attachment['content'] = ''; |
|
| 1083 | - $attachment['file'] = $file_path; |
|
| 1084 | - $attachment['mime_type'] = $uploaded_file_type; |
|
| 1085 | - $attachment['menu_order'] = $menu_order; |
|
| 1086 | - $attachment['is_featured'] = 0; |
|
| 1078 | + // Set up options array to add this file as an attachment |
|
| 1079 | + $attachment = array(); |
|
| 1080 | + $attachment['post_id'] = $post_id; |
|
| 1081 | + $attachment['title'] = $file_title; |
|
| 1082 | + $attachment['content'] = ''; |
|
| 1083 | + $attachment['file'] = $file_path; |
|
| 1084 | + $attachment['mime_type'] = $uploaded_file_type; |
|
| 1085 | + $attachment['menu_order'] = $menu_order; |
|
| 1086 | + $attachment['is_featured'] = 0; |
|
| 1087 | 1087 | |
| 1088 | - $attachment_set = ''; |
|
| 1088 | + $attachment_set = ''; |
|
| 1089 | 1089 | |
| 1090 | - foreach ($attachment as $key => $val) {
|
|
| 1091 | - if ($val != '') |
|
| 1092 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1093 | - } |
|
| 1090 | + foreach ($attachment as $key => $val) {
|
|
| 1091 | + if ($val != '') |
|
| 1092 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1093 | + } |
|
| 1094 | 1094 | |
| 1095 | - $attachment_set = trim($attachment_set, ", "); |
|
| 1095 | + $attachment_set = trim($attachment_set, ", "); |
|
| 1096 | + |
|
| 1097 | + $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1096 | 1098 | |
| 1097 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1099 | + $valid_file_ids[] = $wpdb->insert_id; |
|
| 1100 | + } |
|
| 1098 | 1101 | |
| 1099 | - $valid_file_ids[] = $wpdb->insert_id; |
|
| 1100 | - } |
|
| 1102 | + } |
|
| 1101 | 1103 | |
| 1102 | - } |
|
| 1103 | 1104 | |
| 1105 | + } else {
|
|
| 1106 | + $valid_file_ids[] = $find_image; |
|
| 1104 | 1107 | |
| 1105 | - } else {
|
|
| 1106 | - $valid_file_ids[] = $find_image; |
|
| 1107 | - |
|
| 1108 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1108 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1109 | 1109 | |
| 1110 | - $wpdb->query( |
|
| 1111 | - $wpdb->prepare( |
|
| 1112 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1113 | - array($menu_order, $split_img_path[1], $post_id) |
|
| 1114 | - ) |
|
| 1115 | - ); |
|
| 1110 | + $wpdb->query( |
|
| 1111 | + $wpdb->prepare( |
|
| 1112 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1113 | + array($menu_order, $split_img_path[1], $post_id) |
|
| 1114 | + ) |
|
| 1115 | + ); |
|
| 1116 | 1116 | |
| 1117 | - if ($menu_order == 1) |
|
| 1118 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1117 | + if ($menu_order == 1) |
|
| 1118 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1119 | 1119 | |
| 1120 | - } |
|
| 1120 | + } |
|
| 1121 | 1121 | |
| 1122 | 1122 | |
| 1123 | - } |
|
| 1123 | + } |
|
| 1124 | 1124 | |
| 1125 | - if (!empty($valid_file_ids)) {
|
|
| 1125 | + if (!empty($valid_file_ids)) {
|
|
| 1126 | 1126 | |
| 1127 | - $remove_files = $valid_file_ids; |
|
| 1127 | + $remove_files = $valid_file_ids; |
|
| 1128 | 1128 | |
| 1129 | - $remove_files_length = count($remove_files); |
|
| 1130 | - $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
| 1131 | - $format = implode(',', $remove_files_format);
|
|
| 1132 | - $valid_files_condition = " ID NOT IN ($format) AND "; |
|
| 1129 | + $remove_files_length = count($remove_files); |
|
| 1130 | + $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
| 1131 | + $format = implode(',', $remove_files_format);
|
|
| 1132 | + $valid_files_condition = " ID NOT IN ($format) AND "; |
|
| 1133 | 1133 | |
| 1134 | - } |
|
| 1134 | + } |
|
| 1135 | 1135 | |
| 1136 | - //Get and remove all old images of post from database to set by new order |
|
| 1136 | + //Get and remove all old images of post from database to set by new order |
|
| 1137 | 1137 | |
| 1138 | - if (!empty($post_images)) {
|
|
| 1138 | + if (!empty($post_images)) {
|
|
| 1139 | 1139 | |
| 1140 | - foreach ($post_images as $img) {
|
|
| 1140 | + foreach ($post_images as $img) {
|
|
| 1141 | 1141 | |
| 1142 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1142 | + if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1143 | 1143 | |
| 1144 | - $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1144 | + $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1145 | 1145 | |
| 1146 | - } |
|
| 1146 | + } |
|
| 1147 | 1147 | |
| 1148 | - } |
|
| 1148 | + } |
|
| 1149 | 1149 | |
| 1150 | - } |
|
| 1150 | + } |
|
| 1151 | 1151 | |
| 1152 | - $invalid_files = (object)$invalid_files; |
|
| 1153 | - } |
|
| 1152 | + $invalid_files = (object)$invalid_files; |
|
| 1153 | + } |
|
| 1154 | 1154 | |
| 1155 | - $remove_files[] = $post_id; |
|
| 1155 | + $remove_files[] = $post_id; |
|
| 1156 | 1156 | |
| 1157 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1157 | + $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1158 | 1158 | |
| 1159 | - if (!empty($invalid_files)) |
|
| 1160 | - geodir_remove_attachments($invalid_files); |
|
| 1161 | - } |
|
| 1159 | + if (!empty($invalid_files)) |
|
| 1160 | + geodir_remove_attachments($invalid_files); |
|
| 1161 | + } |
|
| 1162 | 1162 | |
| 1163 | 1163 | } |
| 1164 | 1164 | |
@@ -1172,12 +1172,12 @@ discard block |
||
| 1172 | 1172 | function geodir_remove_temp_images() |
| 1173 | 1173 | {
|
| 1174 | 1174 | |
| 1175 | - global $current_user; |
|
| 1175 | + global $current_user; |
|
| 1176 | 1176 | |
| 1177 | - $uploads = wp_upload_dir(); |
|
| 1178 | - $uploads_dir = $uploads['path']; |
|
| 1177 | + $uploads = wp_upload_dir(); |
|
| 1178 | + $uploads_dir = $uploads['path']; |
|
| 1179 | 1179 | |
| 1180 | - /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
|
|
| 1180 | + /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
|
|
| 1181 | 1181 | |
| 1182 | 1182 | $dirPath = $uploads_dir.'/temp_'.$current_user->data->ID; |
| 1183 | 1183 | if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
|
@@ -1194,8 +1194,8 @@ discard block |
||
| 1194 | 1194 | rmdir($dirPath); |
| 1195 | 1195 | } */ |
| 1196 | 1196 | |
| 1197 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1198 | - geodir_delete_directory($dirname); |
|
| 1197 | + $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1198 | + geodir_delete_directory($dirname); |
|
| 1199 | 1199 | } |
| 1200 | 1200 | |
| 1201 | 1201 | |
@@ -1209,116 +1209,116 @@ discard block |
||
| 1209 | 1209 | */ |
| 1210 | 1210 | function geodir_delete_directory($dirname) |
| 1211 | 1211 | {
|
| 1212 | - $dir_handle = ''; |
|
| 1213 | - if (is_dir($dirname)) |
|
| 1214 | - $dir_handle = opendir($dirname); |
|
| 1215 | - if (!$dir_handle) |
|
| 1216 | - return false; |
|
| 1217 | - while ($file = readdir($dir_handle)) {
|
|
| 1218 | - if ($file != "." && $file != "..") {
|
|
| 1219 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1220 | - unlink($dirname . "/" . $file); |
|
| 1221 | - else |
|
| 1222 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1223 | - } |
|
| 1224 | - } |
|
| 1225 | - closedir($dir_handle); |
|
| 1226 | - rmdir($dirname); |
|
| 1227 | - return true; |
|
| 1212 | + $dir_handle = ''; |
|
| 1213 | + if (is_dir($dirname)) |
|
| 1214 | + $dir_handle = opendir($dirname); |
|
| 1215 | + if (!$dir_handle) |
|
| 1216 | + return false; |
|
| 1217 | + while ($file = readdir($dir_handle)) {
|
|
| 1218 | + if ($file != "." && $file != "..") {
|
|
| 1219 | + if (!is_dir($dirname . "/" . $file)) |
|
| 1220 | + unlink($dirname . "/" . $file); |
|
| 1221 | + else |
|
| 1222 | + geodir_delete_directory($dirname . '/' . $file); |
|
| 1223 | + } |
|
| 1224 | + } |
|
| 1225 | + closedir($dir_handle); |
|
| 1226 | + rmdir($dirname); |
|
| 1227 | + return true; |
|
| 1228 | 1228 | |
| 1229 | 1229 | } |
| 1230 | 1230 | |
| 1231 | 1231 | |
| 1232 | 1232 | if (!function_exists('geodir_remove_attachments')) {
|
| 1233 | - /** |
|
| 1234 | - * Remove post attachments. |
|
| 1235 | - * |
|
| 1236 | - * @since 1.0.0 |
|
| 1237 | - * @package GeoDirectory |
|
| 1238 | - * @param array $postcurr_images Array of image objects. |
|
| 1239 | - */ |
|
| 1240 | - function geodir_remove_attachments($postcurr_images = array()) |
|
| 1241 | - {
|
|
| 1242 | - // Unlink all past images of post |
|
| 1243 | - if (!empty($postcurr_images)) {
|
|
| 1244 | - |
|
| 1245 | - $uploads = wp_upload_dir(); |
|
| 1246 | - $uploads_dir = $uploads['path']; |
|
| 1247 | - |
|
| 1248 | - foreach ($postcurr_images as $postimg) {
|
|
| 1249 | - $image_name_arr = explode('/', $postimg->src);
|
|
| 1250 | - $filename = end($image_name_arr); |
|
| 1251 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1252 | - unlink($uploads_dir . '/' . $filename); |
|
| 1253 | - } |
|
| 1254 | - |
|
| 1255 | - } // endif |
|
| 1256 | - // Unlink all past images of post end |
|
| 1257 | - } |
|
| 1233 | + /** |
|
| 1234 | + * Remove post attachments. |
|
| 1235 | + * |
|
| 1236 | + * @since 1.0.0 |
|
| 1237 | + * @package GeoDirectory |
|
| 1238 | + * @param array $postcurr_images Array of image objects. |
|
| 1239 | + */ |
|
| 1240 | + function geodir_remove_attachments($postcurr_images = array()) |
|
| 1241 | + {
|
|
| 1242 | + // Unlink all past images of post |
|
| 1243 | + if (!empty($postcurr_images)) {
|
|
| 1244 | + |
|
| 1245 | + $uploads = wp_upload_dir(); |
|
| 1246 | + $uploads_dir = $uploads['path']; |
|
| 1247 | + |
|
| 1248 | + foreach ($postcurr_images as $postimg) {
|
|
| 1249 | + $image_name_arr = explode('/', $postimg->src);
|
|
| 1250 | + $filename = end($image_name_arr); |
|
| 1251 | + if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1252 | + unlink($uploads_dir . '/' . $filename); |
|
| 1253 | + } |
|
| 1254 | + |
|
| 1255 | + } // endif |
|
| 1256 | + // Unlink all past images of post end |
|
| 1257 | + } |
|
| 1258 | 1258 | } |
| 1259 | 1259 | |
| 1260 | 1260 | if (!function_exists('geodir_get_featured_image')) {
|
| 1261 | - /** |
|
| 1262 | - * Gets the post featured image. |
|
| 1263 | - * |
|
| 1264 | - * @since 1.0.0 |
|
| 1265 | - * @package GeoDirectory |
|
| 1266 | - * @global object $wpdb WordPress Database object. |
|
| 1267 | - * @global object $post The current post object. |
|
| 1268 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1269 | - * @param int|string $post_id The post ID. |
|
| 1270 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1271 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1272 | - * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
| 1273 | - * @return bool|object Image details as an object. |
|
| 1274 | - */ |
|
| 1275 | - function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
| 1276 | - {
|
|
| 1277 | - |
|
| 1278 | - /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id, 'medium');//medium/thumbnail |
|
| 1261 | + /** |
|
| 1262 | + * Gets the post featured image. |
|
| 1263 | + * |
|
| 1264 | + * @since 1.0.0 |
|
| 1265 | + * @package GeoDirectory |
|
| 1266 | + * @global object $wpdb WordPress Database object. |
|
| 1267 | + * @global object $post The current post object. |
|
| 1268 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1269 | + * @param int|string $post_id The post ID. |
|
| 1270 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1271 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1272 | + * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
| 1273 | + * @return bool|object Image details as an object. |
|
| 1274 | + */ |
|
| 1275 | + function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
| 1276 | + {
|
|
| 1277 | + |
|
| 1278 | + /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id, 'medium');//medium/thumbnail |
|
| 1279 | 1279 | $img_arr['path'] = ''; |
| 1280 | 1280 | $img_arr['width'] = ''; |
| 1281 | 1281 | $img_arr['height'] = ''; |
| 1282 | 1282 | $img_arr['title'] = ''; |
| 1283 | 1283 | return (object)$img_arr;*/ |
| 1284 | - global $wpdb, $plugin_prefix, $post; |
|
| 1284 | + global $wpdb, $plugin_prefix, $post; |
|
| 1285 | 1285 | |
| 1286 | - if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
|
|
| 1287 | - $post_type = $post->post_type; |
|
| 1288 | - } else {
|
|
| 1289 | - $post_type = get_post_type($post_id); |
|
| 1290 | - } |
|
| 1286 | + if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
|
|
| 1287 | + $post_type = $post->post_type; |
|
| 1288 | + } else {
|
|
| 1289 | + $post_type = get_post_type($post_id); |
|
| 1290 | + } |
|
| 1291 | 1291 | |
| 1292 | - if (!in_array($post_type, geodir_get_posttypes())) {
|
|
| 1293 | - return false;// if not a GD CPT return; |
|
| 1294 | - } |
|
| 1292 | + if (!in_array($post_type, geodir_get_posttypes())) {
|
|
| 1293 | + return false;// if not a GD CPT return; |
|
| 1294 | + } |
|
| 1295 | 1295 | |
| 1296 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1296 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1297 | 1297 | |
| 1298 | - if (!$file) {
|
|
| 1299 | - if (isset($post->featured_image)) {
|
|
| 1300 | - $file = $post->featured_image; |
|
| 1301 | - } else {
|
|
| 1302 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1303 | - } |
|
| 1304 | - } |
|
| 1298 | + if (!$file) {
|
|
| 1299 | + if (isset($post->featured_image)) {
|
|
| 1300 | + $file = $post->featured_image; |
|
| 1301 | + } else {
|
|
| 1302 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1303 | + } |
|
| 1304 | + } |
|
| 1305 | 1305 | |
| 1306 | - if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
|
|
| 1307 | - $img_arr = array(); |
|
| 1306 | + if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
|
|
| 1307 | + $img_arr = array(); |
|
| 1308 | 1308 | |
| 1309 | - $file_info = pathinfo($file); |
|
| 1310 | - $sub_dir = ''; |
|
| 1311 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1312 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1309 | + $file_info = pathinfo($file); |
|
| 1310 | + $sub_dir = ''; |
|
| 1311 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1312 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1313 | 1313 | |
| 1314 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1315 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1316 | - $uploads_path = $uploads['path']; |
|
| 1314 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1315 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1316 | + $uploads_path = $uploads['path']; |
|
| 1317 | 1317 | |
| 1318 | - $file_name = $file_info['basename']; |
|
| 1318 | + $file_name = $file_info['basename']; |
|
| 1319 | 1319 | |
| 1320 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1321 | - /* |
|
| 1320 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1321 | + /* |
|
| 1322 | 1322 | * Allows the filter of image src for such things as CDN change. |
| 1323 | 1323 | * |
| 1324 | 1324 | * @since 1.5.7 |
@@ -1327,158 +1327,158 @@ discard block |
||
| 1327 | 1327 | * @param string $uploads_url The server upload directory url. |
| 1328 | 1328 | * @param string $uploads_baseurl The uploads dir base url. |
| 1329 | 1329 | */ |
| 1330 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1331 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1332 | - $width = 0; |
|
| 1333 | - $height = 0; |
|
| 1334 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1335 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1336 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1337 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1338 | - } |
|
| 1339 | - $img_arr['width'] = $width; |
|
| 1340 | - $img_arr['height'] = $height; |
|
| 1341 | - $img_arr['title'] = ''; |
|
| 1342 | - } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
|
|
| 1343 | - foreach ($post_images as $image) {
|
|
| 1344 | - return $image; |
|
| 1345 | - } |
|
| 1346 | - } else if ($no_image) {
|
|
| 1347 | - $img_arr = array(); |
|
| 1348 | - |
|
| 1349 | - $default_img = ''; |
|
| 1350 | - if (isset($post->default_category) && $post->default_category) {
|
|
| 1351 | - $default_cat = $post->default_category; |
|
| 1352 | - } else {
|
|
| 1353 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1354 | - } |
|
| 1355 | - |
|
| 1356 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1357 | - $default_img = $default_catimg['src']; |
|
| 1358 | - elseif ($no_image) {
|
|
| 1359 | - $default_img = get_option('geodir_listing_no_img');
|
|
| 1360 | - } |
|
| 1361 | - |
|
| 1362 | - if (!empty($default_img)) {
|
|
| 1363 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1364 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1365 | - $uploads_path = $uploads['path']; |
|
| 1366 | - |
|
| 1367 | - $img_arr = array(); |
|
| 1368 | - |
|
| 1369 | - $file_info = pathinfo($default_img); |
|
| 1370 | - |
|
| 1371 | - $file_name = $file_info['basename']; |
|
| 1372 | - |
|
| 1373 | - $img_arr['src'] = $default_img; |
|
| 1374 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1375 | - |
|
| 1376 | - $width = 0; |
|
| 1377 | - $height = 0; |
|
| 1378 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1379 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1380 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1381 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1382 | - } |
|
| 1383 | - $img_arr['width'] = $width; |
|
| 1384 | - $img_arr['height'] = $height; |
|
| 1385 | - |
|
| 1386 | - $img_arr['title'] = ''; // add the title to the array |
|
| 1387 | - } |
|
| 1388 | - } |
|
| 1389 | - |
|
| 1390 | - if (!empty($img_arr)) |
|
| 1391 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1392 | - else |
|
| 1393 | - return false; |
|
| 1394 | - } |
|
| 1330 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1331 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1332 | + $width = 0; |
|
| 1333 | + $height = 0; |
|
| 1334 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1335 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1336 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1337 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1338 | + } |
|
| 1339 | + $img_arr['width'] = $width; |
|
| 1340 | + $img_arr['height'] = $height; |
|
| 1341 | + $img_arr['title'] = ''; |
|
| 1342 | + } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
|
|
| 1343 | + foreach ($post_images as $image) {
|
|
| 1344 | + return $image; |
|
| 1345 | + } |
|
| 1346 | + } else if ($no_image) {
|
|
| 1347 | + $img_arr = array(); |
|
| 1348 | + |
|
| 1349 | + $default_img = ''; |
|
| 1350 | + if (isset($post->default_category) && $post->default_category) {
|
|
| 1351 | + $default_cat = $post->default_category; |
|
| 1352 | + } else {
|
|
| 1353 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1354 | + } |
|
| 1355 | + |
|
| 1356 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1357 | + $default_img = $default_catimg['src']; |
|
| 1358 | + elseif ($no_image) {
|
|
| 1359 | + $default_img = get_option('geodir_listing_no_img');
|
|
| 1360 | + } |
|
| 1361 | + |
|
| 1362 | + if (!empty($default_img)) {
|
|
| 1363 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1364 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1365 | + $uploads_path = $uploads['path']; |
|
| 1366 | + |
|
| 1367 | + $img_arr = array(); |
|
| 1368 | + |
|
| 1369 | + $file_info = pathinfo($default_img); |
|
| 1370 | + |
|
| 1371 | + $file_name = $file_info['basename']; |
|
| 1372 | + |
|
| 1373 | + $img_arr['src'] = $default_img; |
|
| 1374 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1375 | + |
|
| 1376 | + $width = 0; |
|
| 1377 | + $height = 0; |
|
| 1378 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1379 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1380 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1381 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1382 | + } |
|
| 1383 | + $img_arr['width'] = $width; |
|
| 1384 | + $img_arr['height'] = $height; |
|
| 1385 | + |
|
| 1386 | + $img_arr['title'] = ''; // add the title to the array |
|
| 1387 | + } |
|
| 1388 | + } |
|
| 1389 | + |
|
| 1390 | + if (!empty($img_arr)) |
|
| 1391 | + return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1392 | + else |
|
| 1393 | + return false; |
|
| 1394 | + } |
|
| 1395 | 1395 | } |
| 1396 | 1396 | |
| 1397 | 1397 | if (!function_exists('geodir_show_featured_image')) {
|
| 1398 | - /** |
|
| 1399 | - * Gets the post featured image. |
|
| 1400 | - * |
|
| 1401 | - * @since 1.0.0 |
|
| 1402 | - * @package GeoDirectory |
|
| 1403 | - * @param int|string $post_id The post ID. |
|
| 1404 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1405 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1406 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1407 | - * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
| 1408 | - * @return bool|string Returns image html. |
|
| 1409 | - */ |
|
| 1410 | - function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
| 1411 | - {
|
|
| 1412 | - $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
| 1413 | - |
|
| 1414 | - $html = geodir_show_image($image, $size, $no_image, false); |
|
| 1415 | - |
|
| 1416 | - if (!empty($html) && $echo) {
|
|
| 1417 | - echo $html; |
|
| 1418 | - } elseif (!empty($html)) {
|
|
| 1419 | - return $html; |
|
| 1420 | - } else |
|
| 1421 | - return false; |
|
| 1422 | - } |
|
| 1398 | + /** |
|
| 1399 | + * Gets the post featured image. |
|
| 1400 | + * |
|
| 1401 | + * @since 1.0.0 |
|
| 1402 | + * @package GeoDirectory |
|
| 1403 | + * @param int|string $post_id The post ID. |
|
| 1404 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1405 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1406 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1407 | + * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
| 1408 | + * @return bool|string Returns image html. |
|
| 1409 | + */ |
|
| 1410 | + function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
| 1411 | + {
|
|
| 1412 | + $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
| 1413 | + |
|
| 1414 | + $html = geodir_show_image($image, $size, $no_image, false); |
|
| 1415 | + |
|
| 1416 | + if (!empty($html) && $echo) {
|
|
| 1417 | + echo $html; |
|
| 1418 | + } elseif (!empty($html)) {
|
|
| 1419 | + return $html; |
|
| 1420 | + } else |
|
| 1421 | + return false; |
|
| 1422 | + } |
|
| 1423 | 1423 | } |
| 1424 | 1424 | |
| 1425 | 1425 | if (!function_exists('geodir_get_images')) {
|
| 1426 | - /** |
|
| 1427 | - * Gets the post images. |
|
| 1428 | - * |
|
| 1429 | - * @since 1.0.0 |
|
| 1430 | - * @package GeoDirectory |
|
| 1431 | - * @global object $wpdb WordPress Database object. |
|
| 1432 | - * @param int $post_id The post ID. |
|
| 1433 | - * @param string $img_size Optional. Thumbnail size. |
|
| 1434 | - * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1435 | - * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
| 1436 | - * @param int|string $limit Optional. Number of images. |
|
| 1437 | - * @return array|bool Returns images as an array. Each item is an object. |
|
| 1438 | - */ |
|
| 1439 | - function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
| 1440 | - {
|
|
| 1441 | - global $wpdb; |
|
| 1442 | - if ($limit) {
|
|
| 1443 | - $limit_q = " LIMIT $limit "; |
|
| 1444 | - } else {
|
|
| 1445 | - $limit_q = ''; |
|
| 1446 | - } |
|
| 1447 | - $not_featured = ''; |
|
| 1448 | - $sub_dir = ''; |
|
| 1449 | - if (!$add_featured) |
|
| 1450 | - $not_featured = " AND is_featured = 0 "; |
|
| 1451 | - |
|
| 1452 | - $arrImages = $wpdb->get_results( |
|
| 1453 | - $wpdb->prepare( |
|
| 1454 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1455 | - array('%image%', $post_id)
|
|
| 1456 | - ) |
|
| 1457 | - ); |
|
| 1458 | - |
|
| 1459 | - $counter = 0; |
|
| 1460 | - $return_arr = array(); |
|
| 1461 | - |
|
| 1462 | - if (!empty($arrImages)) {
|
|
| 1463 | - foreach ($arrImages as $attechment) {
|
|
| 1464 | - |
|
| 1465 | - $img_arr = array(); |
|
| 1466 | - $img_arr['id'] = $attechment->ID; |
|
| 1467 | - $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
| 1468 | - |
|
| 1469 | - $file_info = pathinfo($attechment->file); |
|
| 1470 | - |
|
| 1471 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1472 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1473 | - |
|
| 1474 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1475 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1476 | - $uploads_path = $uploads['path']; |
|
| 1477 | - |
|
| 1478 | - $file_name = $file_info['basename']; |
|
| 1479 | - |
|
| 1480 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1481 | - /* |
|
| 1426 | + /** |
|
| 1427 | + * Gets the post images. |
|
| 1428 | + * |
|
| 1429 | + * @since 1.0.0 |
|
| 1430 | + * @package GeoDirectory |
|
| 1431 | + * @global object $wpdb WordPress Database object. |
|
| 1432 | + * @param int $post_id The post ID. |
|
| 1433 | + * @param string $img_size Optional. Thumbnail size. |
|
| 1434 | + * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1435 | + * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
| 1436 | + * @param int|string $limit Optional. Number of images. |
|
| 1437 | + * @return array|bool Returns images as an array. Each item is an object. |
|
| 1438 | + */ |
|
| 1439 | + function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
| 1440 | + {
|
|
| 1441 | + global $wpdb; |
|
| 1442 | + if ($limit) {
|
|
| 1443 | + $limit_q = " LIMIT $limit "; |
|
| 1444 | + } else {
|
|
| 1445 | + $limit_q = ''; |
|
| 1446 | + } |
|
| 1447 | + $not_featured = ''; |
|
| 1448 | + $sub_dir = ''; |
|
| 1449 | + if (!$add_featured) |
|
| 1450 | + $not_featured = " AND is_featured = 0 "; |
|
| 1451 | + |
|
| 1452 | + $arrImages = $wpdb->get_results( |
|
| 1453 | + $wpdb->prepare( |
|
| 1454 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1455 | + array('%image%', $post_id)
|
|
| 1456 | + ) |
|
| 1457 | + ); |
|
| 1458 | + |
|
| 1459 | + $counter = 0; |
|
| 1460 | + $return_arr = array(); |
|
| 1461 | + |
|
| 1462 | + if (!empty($arrImages)) {
|
|
| 1463 | + foreach ($arrImages as $attechment) {
|
|
| 1464 | + |
|
| 1465 | + $img_arr = array(); |
|
| 1466 | + $img_arr['id'] = $attechment->ID; |
|
| 1467 | + $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
| 1468 | + |
|
| 1469 | + $file_info = pathinfo($attechment->file); |
|
| 1470 | + |
|
| 1471 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1472 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1473 | + |
|
| 1474 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1475 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1476 | + $uploads_path = $uploads['path']; |
|
| 1477 | + |
|
| 1478 | + $file_name = $file_info['basename']; |
|
| 1479 | + |
|
| 1480 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1481 | + /* |
|
| 1482 | 1482 | * Allows the filter of image src for such things as CDN change. |
| 1483 | 1483 | * |
| 1484 | 1484 | * @since 1.5.7 |
@@ -1487,514 +1487,514 @@ discard block |
||
| 1487 | 1487 | * @param string $uploads_url The server upload directory url. |
| 1488 | 1488 | * @param string $uploads_baseurl The uploads dir base url. |
| 1489 | 1489 | */ |
| 1490 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1491 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1492 | - $width = 0; |
|
| 1493 | - $height = 0; |
|
| 1494 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1495 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1496 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1497 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1498 | - } |
|
| 1499 | - $img_arr['width'] = $width; |
|
| 1500 | - $img_arr['height'] = $height; |
|
| 1501 | - |
|
| 1502 | - $img_arr['file'] = $file_name; // add the title to the array |
|
| 1503 | - $img_arr['title'] = $attechment->title; // add the title to the array |
|
| 1504 | - $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
| 1505 | - $img_arr['content'] = $attechment->content; // add the description to the array |
|
| 1506 | - $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
| 1507 | - |
|
| 1508 | - $return_arr[] = (object)$img_arr; |
|
| 1509 | - |
|
| 1510 | - $counter++; |
|
| 1511 | - } |
|
| 1512 | - return (object)$return_arr; |
|
| 1513 | - } else if ($no_images) {
|
|
| 1514 | - $default_img = ''; |
|
| 1515 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1516 | - $post_type = get_post_type($post_id); |
|
| 1517 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1518 | - $default_img = $default_catimg['src']; |
|
| 1519 | - elseif ($no_images) {
|
|
| 1520 | - $default_img = get_option('geodir_listing_no_img');
|
|
| 1521 | - } |
|
| 1522 | - |
|
| 1523 | - if (!empty($default_img)) {
|
|
| 1524 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1490 | + $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1491 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1492 | + $width = 0; |
|
| 1493 | + $height = 0; |
|
| 1494 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1495 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1496 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1497 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1498 | + } |
|
| 1499 | + $img_arr['width'] = $width; |
|
| 1500 | + $img_arr['height'] = $height; |
|
| 1501 | + |
|
| 1502 | + $img_arr['file'] = $file_name; // add the title to the array |
|
| 1503 | + $img_arr['title'] = $attechment->title; // add the title to the array |
|
| 1504 | + $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
| 1505 | + $img_arr['content'] = $attechment->content; // add the description to the array |
|
| 1506 | + $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
| 1507 | + |
|
| 1508 | + $return_arr[] = (object)$img_arr; |
|
| 1509 | + |
|
| 1510 | + $counter++; |
|
| 1511 | + } |
|
| 1512 | + return (object)$return_arr; |
|
| 1513 | + } else if ($no_images) {
|
|
| 1514 | + $default_img = ''; |
|
| 1515 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1516 | + $post_type = get_post_type($post_id); |
|
| 1517 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1518 | + $default_img = $default_catimg['src']; |
|
| 1519 | + elseif ($no_images) {
|
|
| 1520 | + $default_img = get_option('geodir_listing_no_img');
|
|
| 1521 | + } |
|
| 1522 | + |
|
| 1523 | + if (!empty($default_img)) {
|
|
| 1524 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1525 | 1525 | |
| 1526 | - $image_path = $default_img; |
|
| 1527 | - if (!path_is_absolute($image_path)) {
|
|
| 1528 | - $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
| 1529 | - } |
|
| 1530 | - |
|
| 1531 | - $file_info = pathinfo($default_img); |
|
| 1532 | - $file_name = $file_info['basename']; |
|
| 1533 | - |
|
| 1534 | - $width = ''; |
|
| 1535 | - $height = ''; |
|
| 1536 | - if (is_file($image_path) && file_exists($image_path)) {
|
|
| 1537 | - $imagesize = getimagesize($image_path); |
|
| 1538 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1539 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1540 | - } |
|
| 1526 | + $image_path = $default_img; |
|
| 1527 | + if (!path_is_absolute($image_path)) {
|
|
| 1528 | + $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
| 1529 | + } |
|
| 1530 | + |
|
| 1531 | + $file_info = pathinfo($default_img); |
|
| 1532 | + $file_name = $file_info['basename']; |
|
| 1533 | + |
|
| 1534 | + $width = ''; |
|
| 1535 | + $height = ''; |
|
| 1536 | + if (is_file($image_path) && file_exists($image_path)) {
|
|
| 1537 | + $imagesize = getimagesize($image_path); |
|
| 1538 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1539 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1540 | + } |
|
| 1541 | 1541 | |
| 1542 | - $img_arr = array(); |
|
| 1543 | - $img_arr['src'] = $default_img; |
|
| 1544 | - $img_arr['path'] = $image_path; |
|
| 1545 | - $img_arr['width'] = $width; |
|
| 1546 | - $img_arr['height'] = $height; |
|
| 1547 | - $img_arr['file'] = $file_name; // add the title to the array |
|
| 1548 | - $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
| 1549 | - $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
| 1550 | - |
|
| 1551 | - $return_arr[] = (object)$img_arr; |
|
| 1552 | - |
|
| 1553 | - return $return_arr; |
|
| 1554 | - } else |
|
| 1555 | - return false; |
|
| 1556 | - } |
|
| 1557 | - } |
|
| 1542 | + $img_arr = array(); |
|
| 1543 | + $img_arr['src'] = $default_img; |
|
| 1544 | + $img_arr['path'] = $image_path; |
|
| 1545 | + $img_arr['width'] = $width; |
|
| 1546 | + $img_arr['height'] = $height; |
|
| 1547 | + $img_arr['file'] = $file_name; // add the title to the array |
|
| 1548 | + $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
| 1549 | + $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
| 1550 | + |
|
| 1551 | + $return_arr[] = (object)$img_arr; |
|
| 1552 | + |
|
| 1553 | + return $return_arr; |
|
| 1554 | + } else |
|
| 1555 | + return false; |
|
| 1556 | + } |
|
| 1557 | + } |
|
| 1558 | 1558 | } |
| 1559 | 1559 | |
| 1560 | 1560 | if (!function_exists('geodir_show_image')) {
|
| 1561 | - /** |
|
| 1562 | - * Show image using image details. |
|
| 1563 | - * |
|
| 1564 | - * @since 1.0.0 |
|
| 1565 | - * @package GeoDirectory |
|
| 1566 | - * @param array|object $request Image info either as an array or object. |
|
| 1567 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1568 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1569 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1570 | - * @return bool|string Returns image html. |
|
| 1571 | - */ |
|
| 1572 | - function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
| 1573 | - {
|
|
| 1574 | - $image = new stdClass(); |
|
| 1575 | - |
|
| 1576 | - $html = ''; |
|
| 1577 | - if (!empty($request)) {
|
|
| 1578 | - if (!is_object($request)){
|
|
| 1579 | - $request = (object)$request; |
|
| 1580 | - } |
|
| 1581 | - |
|
| 1582 | - if (isset($request->src) && !isset($request->path)) {
|
|
| 1583 | - $request->path = $request->src; |
|
| 1584 | - } |
|
| 1585 | - |
|
| 1586 | - /* |
|
| 1561 | + /** |
|
| 1562 | + * Show image using image details. |
|
| 1563 | + * |
|
| 1564 | + * @since 1.0.0 |
|
| 1565 | + * @package GeoDirectory |
|
| 1566 | + * @param array|object $request Image info either as an array or object. |
|
| 1567 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1568 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1569 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1570 | + * @return bool|string Returns image html. |
|
| 1571 | + */ |
|
| 1572 | + function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
| 1573 | + {
|
|
| 1574 | + $image = new stdClass(); |
|
| 1575 | + |
|
| 1576 | + $html = ''; |
|
| 1577 | + if (!empty($request)) {
|
|
| 1578 | + if (!is_object($request)){
|
|
| 1579 | + $request = (object)$request; |
|
| 1580 | + } |
|
| 1581 | + |
|
| 1582 | + if (isset($request->src) && !isset($request->path)) {
|
|
| 1583 | + $request->path = $request->src; |
|
| 1584 | + } |
|
| 1585 | + |
|
| 1586 | + /* |
|
| 1587 | 1587 | * getimagesize() works faster from path than url so we try and get path if we can. |
| 1588 | 1588 | */ |
| 1589 | - $upload_dir = wp_upload_dir(); |
|
| 1590 | - $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
|
| 1591 | - $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
|
| 1592 | - if (strpos($img_no_http, $upload_no_http) !== false) {
|
|
| 1593 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1594 | - } |
|
| 1589 | + $upload_dir = wp_upload_dir(); |
|
| 1590 | + $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
|
| 1591 | + $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
|
| 1592 | + if (strpos($img_no_http, $upload_no_http) !== false) {
|
|
| 1593 | + $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1594 | + } |
|
| 1595 | 1595 | |
| 1596 | - $width = 0; |
|
| 1597 | - $height = 0; |
|
| 1598 | - if (is_file($request->path) && file_exists($request->path)) {
|
|
| 1599 | - $imagesize = getimagesize($request->path); |
|
| 1600 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1601 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1602 | - } |
|
| 1603 | - |
|
| 1604 | - $image->src = $request->src; |
|
| 1605 | - $image->width = $width; |
|
| 1606 | - $image->height = $height; |
|
| 1607 | - |
|
| 1608 | - $max_size = (object)geodir_get_imagesize($size); |
|
| 1609 | - |
|
| 1610 | - if (!is_wp_error($max_size)) {
|
|
| 1611 | - if ($image->width) {
|
|
| 1612 | - if ($image->height >= $image->width) {
|
|
| 1613 | - $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
| 1614 | - } else if ($image->width < ($max_size->h)) {
|
|
| 1615 | - $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
| 1616 | - } else |
|
| 1617 | - $width_per = 100; |
|
| 1618 | - } |
|
| 1619 | - |
|
| 1620 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1621 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1622 | - } else {
|
|
| 1623 | - if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
|
|
| 1624 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1625 | - }else{
|
|
| 1626 | - //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1627 | - //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>'; |
|
| 1628 | - $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
|
|
| 1629 | - |
|
| 1630 | - } |
|
| 1631 | - |
|
| 1632 | - } |
|
| 1633 | - } |
|
| 1634 | - } |
|
| 1635 | - |
|
| 1636 | - if (!empty($html) && $echo) {
|
|
| 1637 | - echo $html; |
|
| 1638 | - } elseif (!empty($html)) {
|
|
| 1639 | - return $html; |
|
| 1640 | - } else |
|
| 1641 | - return false; |
|
| 1642 | - } |
|
| 1643 | -} |
|
| 1596 | + $width = 0; |
|
| 1597 | + $height = 0; |
|
| 1598 | + if (is_file($request->path) && file_exists($request->path)) {
|
|
| 1599 | + $imagesize = getimagesize($request->path); |
|
| 1600 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1601 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1602 | + } |
|
| 1644 | 1603 | |
| 1645 | -if (!function_exists('geodir_set_post_terms')) {
|
|
| 1646 | - /** |
|
| 1647 | - * Set post Categories. |
|
| 1648 | - * |
|
| 1649 | - * @since 1.0.0 |
|
| 1650 | - * @package GeoDirectory |
|
| 1651 | - * @global object $wpdb WordPress Database object. |
|
| 1652 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1653 | - * @param int $post_id The post ID. |
|
| 1654 | - * @param array $terms An array of term objects. |
|
| 1655 | - * @param array $tt_ids An array of term taxonomy IDs. |
|
| 1656 | - * @param string $taxonomy Taxonomy slug. |
|
| 1657 | - */ |
|
| 1658 | - function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
| 1659 | - {
|
|
| 1660 | - global $wpdb, $plugin_prefix; |
|
| 1604 | + $image->src = $request->src; |
|
| 1605 | + $image->width = $width; |
|
| 1606 | + $image->height = $height; |
|
| 1607 | + |
|
| 1608 | + $max_size = (object)geodir_get_imagesize($size); |
|
| 1661 | 1609 | |
| 1662 | - $post_type = get_post_type($post_id); |
|
| 1610 | + if (!is_wp_error($max_size)) {
|
|
| 1611 | + if ($image->width) {
|
|
| 1612 | + if ($image->height >= $image->width) {
|
|
| 1613 | + $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
| 1614 | + } else if ($image->width < ($max_size->h)) {
|
|
| 1615 | + $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
| 1616 | + } else |
|
| 1617 | + $width_per = 100; |
|
| 1618 | + } |
|
| 1619 | + |
|
| 1620 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1621 | + $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1622 | + } else {
|
|
| 1623 | + if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
|
|
| 1624 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1625 | + }else{
|
|
| 1626 | + //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1627 | + //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>'; |
|
| 1628 | + $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
|
|
| 1663 | 1629 | |
| 1664 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1630 | + } |
|
| 1665 | 1631 | |
| 1666 | - if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
|
| 1632 | + } |
|
| 1633 | + } |
|
| 1634 | + } |
|
| 1635 | + |
|
| 1636 | + if (!empty($html) && $echo) {
|
|
| 1637 | + echo $html; |
|
| 1638 | + } elseif (!empty($html)) {
|
|
| 1639 | + return $html; |
|
| 1640 | + } else |
|
| 1641 | + return false; |
|
| 1642 | + } |
|
| 1643 | +} |
|
| 1667 | 1644 | |
| 1668 | - if ($taxonomy == $post_type . '_tags') {
|
|
| 1669 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1670 | - geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
| 1671 | - } |
|
| 1672 | - } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1673 | - $srcharr = array('"', '\\');
|
|
| 1674 | - $replarr = array(""", '');
|
|
| 1645 | +if (!function_exists('geodir_set_post_terms')) {
|
|
| 1646 | + /** |
|
| 1647 | + * Set post Categories. |
|
| 1648 | + * |
|
| 1649 | + * @since 1.0.0 |
|
| 1650 | + * @package GeoDirectory |
|
| 1651 | + * @global object $wpdb WordPress Database object. |
|
| 1652 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1653 | + * @param int $post_id The post ID. |
|
| 1654 | + * @param array $terms An array of term objects. |
|
| 1655 | + * @param array $tt_ids An array of term taxonomy IDs. |
|
| 1656 | + * @param string $taxonomy Taxonomy slug. |
|
| 1657 | + */ |
|
| 1658 | + function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
| 1659 | + {
|
|
| 1660 | + global $wpdb, $plugin_prefix; |
|
| 1661 | + |
|
| 1662 | + $post_type = get_post_type($post_id); |
|
| 1663 | + |
|
| 1664 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1665 | + |
|
| 1666 | + if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
|
| 1667 | + |
|
| 1668 | + if ($taxonomy == $post_type . '_tags') {
|
|
| 1669 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1670 | + geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
| 1671 | + } |
|
| 1672 | + } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1673 | + $srcharr = array('"', '\\');
|
|
| 1674 | + $replarr = array(""", '');
|
|
| 1675 | 1675 | |
| 1676 | - $post_obj = get_post($post_id); |
|
| 1676 | + $post_obj = get_post($post_id); |
|
| 1677 | 1677 | |
| 1678 | - $cat_ids = array('0');
|
|
| 1679 | - if (is_array($tt_ids)) |
|
| 1680 | - $cat_ids = $tt_ids; |
|
| 1678 | + $cat_ids = array('0');
|
|
| 1679 | + if (is_array($tt_ids)) |
|
| 1680 | + $cat_ids = $tt_ids; |
|
| 1681 | 1681 | |
| 1682 | 1682 | |
| 1683 | - if (!empty($cat_ids)) {
|
|
| 1684 | - $cat_ids_array = $cat_ids; |
|
| 1685 | - $cat_ids_length = count($cat_ids_array); |
|
| 1686 | - $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
| 1687 | - $format = implode(',', $cat_ids_format);
|
|
| 1683 | + if (!empty($cat_ids)) {
|
|
| 1684 | + $cat_ids_array = $cat_ids; |
|
| 1685 | + $cat_ids_length = count($cat_ids_array); |
|
| 1686 | + $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
| 1687 | + $format = implode(',', $cat_ids_format);
|
|
| 1688 | 1688 | |
| 1689 | - $cat_ids_array_del = $cat_ids_array; |
|
| 1690 | - $cat_ids_array_del[] = $post_id; |
|
| 1689 | + $cat_ids_array_del = $cat_ids_array; |
|
| 1690 | + $cat_ids_array_del[] = $post_id; |
|
| 1691 | 1691 | |
| 1692 | - $wpdb->get_var( |
|
| 1693 | - $wpdb->prepare( |
|
| 1694 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1695 | - $cat_ids_array_del |
|
| 1696 | - ) |
|
| 1697 | - ); |
|
| 1692 | + $wpdb->get_var( |
|
| 1693 | + $wpdb->prepare( |
|
| 1694 | + "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1695 | + $cat_ids_array_del |
|
| 1696 | + ) |
|
| 1697 | + ); |
|
| 1698 | 1698 | |
| 1699 | 1699 | |
| 1700 | - $post_term = $wpdb->get_col( |
|
| 1701 | - $wpdb->prepare( |
|
| 1702 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1703 | - $cat_ids_array |
|
| 1704 | - ) |
|
| 1705 | - ); |
|
| 1700 | + $post_term = $wpdb->get_col( |
|
| 1701 | + $wpdb->prepare( |
|
| 1702 | + "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1703 | + $cat_ids_array |
|
| 1704 | + ) |
|
| 1705 | + ); |
|
| 1706 | 1706 | |
| 1707 | - } |
|
| 1707 | + } |
|
| 1708 | 1708 | |
| 1709 | - $post_marker_json = ''; |
|
| 1709 | + $post_marker_json = ''; |
|
| 1710 | 1710 | |
| 1711 | - if (!empty($post_term)): |
|
| 1711 | + if (!empty($post_term)): |
|
| 1712 | 1712 | |
| 1713 | - foreach ($post_term as $cat_id): |
|
| 1713 | + foreach ($post_term as $cat_id): |
|
| 1714 | 1714 | |
| 1715 | - $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
| 1716 | - $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
| 1715 | + $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
| 1716 | + $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
| 1717 | 1717 | |
| 1718 | - $post_title = $post_obj->title; |
|
| 1719 | - $title = str_replace($srcharr, $replarr, $post_title); |
|
| 1718 | + $post_title = $post_obj->title; |
|
| 1719 | + $title = str_replace($srcharr, $replarr, $post_title); |
|
| 1720 | 1720 | |
| 1721 | - $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
| 1722 | - $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
| 1721 | + $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
| 1722 | + $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
| 1723 | 1723 | |
| 1724 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1725 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1724 | + $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1725 | + $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1726 | 1726 | |
| 1727 | - $json = '{';
|
|
| 1728 | - $json .= '"id":"' . $post_id . '",'; |
|
| 1729 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1730 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 1731 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1732 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 1733 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1734 | - $json .= '}'; |
|
| 1727 | + $json = '{';
|
|
| 1728 | + $json .= '"id":"' . $post_id . '",'; |
|
| 1729 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1730 | + $json .= '"long_pos": "' . $lng . '",'; |
|
| 1731 | + $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1732 | + $json .= '"icon":"' . $term_icon . '",'; |
|
| 1733 | + $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1734 | + $json .= '}'; |
|
| 1735 | 1735 | |
| 1736 | 1736 | |
| 1737 | - if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1738 | - $post_marker_json = $json; |
|
| 1737 | + if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1738 | + $post_marker_json = $json; |
|
| 1739 | 1739 | |
| 1740 | 1740 | |
| 1741 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1741 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1742 | 1742 | |
| 1743 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1743 | + $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1744 | 1744 | post_title = %s, |
| 1745 | 1745 | json = %s |
| 1746 | 1746 | WHERE post_id = %d AND cat_id = %d ", |
| 1747 | - array($post_title, $json, $post_id, $cat_id)); |
|
| 1747 | + array($post_title, $json, $post_id, $cat_id)); |
|
| 1748 | 1748 | |
| 1749 | - } else {
|
|
| 1749 | + } else {
|
|
| 1750 | 1750 | |
| 1751 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1751 | + $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1752 | 1752 | post_id = %d, |
| 1753 | 1753 | post_title = %s, |
| 1754 | 1754 | cat_id = %d, |
| 1755 | 1755 | json = %s", |
| 1756 | - array($post_id, $post_title, $cat_id, $json)); |
|
| 1756 | + array($post_id, $post_title, $cat_id, $json)); |
|
| 1757 | 1757 | |
| 1758 | - } |
|
| 1758 | + } |
|
| 1759 | 1759 | |
| 1760 | - $wpdb->query($json_query); |
|
| 1760 | + $wpdb->query($json_query); |
|
| 1761 | 1761 | |
| 1762 | - endforeach; |
|
| 1762 | + endforeach; |
|
| 1763 | 1763 | |
| 1764 | - endif; |
|
| 1764 | + endif; |
|
| 1765 | 1765 | |
| 1766 | - if (!empty($post_term) && is_array($post_term)) {
|
|
| 1767 | - $categories = implode(',', $post_term);
|
|
| 1766 | + if (!empty($post_term) && is_array($post_term)) {
|
|
| 1767 | + $categories = implode(',', $post_term);
|
|
| 1768 | 1768 | |
| 1769 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1769 | + if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1770 | 1770 | |
| 1771 | - if (empty($post_marker_json)) |
|
| 1772 | - $post_marker_json = isset($json) ? $json : ''; |
|
| 1771 | + if (empty($post_marker_json)) |
|
| 1772 | + $post_marker_json = isset($json) ? $json : ''; |
|
| 1773 | 1773 | |
| 1774 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1774 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1775 | 1775 | |
| 1776 | - $wpdb->query( |
|
| 1777 | - $wpdb->prepare( |
|
| 1778 | - "UPDATE " . $table . " SET |
|
| 1776 | + $wpdb->query( |
|
| 1777 | + $wpdb->prepare( |
|
| 1778 | + "UPDATE " . $table . " SET |
|
| 1779 | 1779 | " . $taxonomy . " = %s, |
| 1780 | 1780 | marker_json = %s |
| 1781 | 1781 | where post_id = %d", |
| 1782 | - array($categories, $post_marker_json, $post_id) |
|
| 1783 | - ) |
|
| 1784 | - ); |
|
| 1782 | + array($categories, $post_marker_json, $post_id) |
|
| 1783 | + ) |
|
| 1784 | + ); |
|
| 1785 | 1785 | |
| 1786 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
|
|
| 1786 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
|
|
| 1787 | 1787 | |
| 1788 | - $categories = trim($categories, ','); |
|
| 1788 | + $categories = trim($categories, ','); |
|
| 1789 | 1789 | |
| 1790 | - if ($categories) {
|
|
| 1790 | + if ($categories) {
|
|
| 1791 | 1791 | |
| 1792 | - $categories = explode(',', $categories);
|
|
| 1792 | + $categories = explode(',', $categories);
|
|
| 1793 | 1793 | |
| 1794 | - $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1794 | + $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1795 | 1795 | |
| 1796 | - if (!in_array($default_category, $categories)) {
|
|
| 1796 | + if (!in_array($default_category, $categories)) {
|
|
| 1797 | 1797 | |
| 1798 | - $wpdb->query( |
|
| 1799 | - $wpdb->prepare( |
|
| 1800 | - "UPDATE " . $table . " SET |
|
| 1798 | + $wpdb->query( |
|
| 1799 | + $wpdb->prepare( |
|
| 1800 | + "UPDATE " . $table . " SET |
|
| 1801 | 1801 | default_category = %s |
| 1802 | 1802 | where post_id = %d", |
| 1803 | - array($categories[0], $post_id) |
|
| 1804 | - ) |
|
| 1805 | - ); |
|
| 1803 | + array($categories[0], $post_id) |
|
| 1804 | + ) |
|
| 1805 | + ); |
|
| 1806 | 1806 | |
| 1807 | - $default_category = $categories[0]; |
|
| 1807 | + $default_category = $categories[0]; |
|
| 1808 | 1808 | |
| 1809 | - } |
|
| 1809 | + } |
|
| 1810 | 1810 | |
| 1811 | - if ($default_category == '') |
|
| 1812 | - $default_category = $categories[0]; |
|
| 1811 | + if ($default_category == '') |
|
| 1812 | + $default_category = $categories[0]; |
|
| 1813 | 1813 | |
| 1814 | - geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
| 1814 | + geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
| 1815 | 1815 | |
| 1816 | - } |
|
| 1816 | + } |
|
| 1817 | 1817 | |
| 1818 | - } |
|
| 1818 | + } |
|
| 1819 | 1819 | |
| 1820 | 1820 | |
| 1821 | - } else {
|
|
| 1821 | + } else {
|
|
| 1822 | 1822 | |
| 1823 | - $wpdb->query( |
|
| 1824 | - $wpdb->prepare( |
|
| 1825 | - "INSERT INTO " . $table . " SET |
|
| 1823 | + $wpdb->query( |
|
| 1824 | + $wpdb->prepare( |
|
| 1825 | + "INSERT INTO " . $table . " SET |
|
| 1826 | 1826 | post_id = %d, |
| 1827 | 1827 | " . $taxonomy . " = %s, |
| 1828 | 1828 | marker_json = %s ", |
| 1829 | 1829 | |
| 1830 | - array($post_id, $categories, $post_marker_json) |
|
| 1831 | - ) |
|
| 1832 | - ); |
|
| 1833 | - } |
|
| 1834 | - } |
|
| 1835 | - } |
|
| 1836 | - } |
|
| 1837 | - } |
|
| 1830 | + array($post_id, $categories, $post_marker_json) |
|
| 1831 | + ) |
|
| 1832 | + ); |
|
| 1833 | + } |
|
| 1834 | + } |
|
| 1835 | + } |
|
| 1836 | + } |
|
| 1837 | + } |
|
| 1838 | 1838 | } |
| 1839 | 1839 | |
| 1840 | 1840 | if (!function_exists('geodir_get_infowindow_html')) {
|
| 1841 | - /** |
|
| 1842 | - * Set post Map Marker info html. |
|
| 1843 | - * |
|
| 1844 | - * @since 1.0.0 |
|
| 1845 | - * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
| 1846 | - * @since 1.6.16 Changes for disable review stars for certain post type. |
|
| 1847 | - * @package GeoDirectory |
|
| 1848 | - * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
| 1849 | - * @global object $gd_session GeoDirectory Session object. |
|
| 1850 | - * @param object $postinfo_obj The post details object. |
|
| 1851 | - * @param string $post_preview Is this a post preview?. |
|
| 1852 | - * @return mixed|string|void |
|
| 1853 | - */ |
|
| 1854 | - function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') |
|
| 1855 | - {
|
|
| 1856 | - global $preview, $gd_session; |
|
| 1857 | - $srcharr = array("'", "/", "-", '"', '\\');
|
|
| 1858 | - $replarr = array("′", "⁄", "–", "“", '');
|
|
| 1859 | - |
|
| 1860 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1861 | - $ID = ''; |
|
| 1862 | - $plink = ''; |
|
| 1863 | - |
|
| 1864 | - if (isset($postinfo_obj->pid)) {
|
|
| 1865 | - $ID = $postinfo_obj->pid; |
|
| 1866 | - $plink = get_permalink($ID); |
|
| 1867 | - } |
|
| 1868 | - |
|
| 1869 | - $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
| 1870 | - $lat = $postinfo_obj->post_latitude; |
|
| 1871 | - $lng = $postinfo_obj->post_longitude; |
|
| 1872 | - } else {
|
|
| 1873 | - $ID = $postinfo_obj->post_id; |
|
| 1874 | - $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1875 | - $title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08 |
|
| 1876 | - $plink = get_permalink($ID); |
|
| 1877 | - $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
| 1878 | - $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
| 1879 | - } |
|
| 1841 | + /** |
|
| 1842 | + * Set post Map Marker info html. |
|
| 1843 | + * |
|
| 1844 | + * @since 1.0.0 |
|
| 1845 | + * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
| 1846 | + * @since 1.6.16 Changes for disable review stars for certain post type. |
|
| 1847 | + * @package GeoDirectory |
|
| 1848 | + * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
| 1849 | + * @global object $gd_session GeoDirectory Session object. |
|
| 1850 | + * @param object $postinfo_obj The post details object. |
|
| 1851 | + * @param string $post_preview Is this a post preview?. |
|
| 1852 | + * @return mixed|string|void |
|
| 1853 | + */ |
|
| 1854 | + function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') |
|
| 1855 | + {
|
|
| 1856 | + global $preview, $gd_session; |
|
| 1857 | + $srcharr = array("'", "/", "-", '"', '\\');
|
|
| 1858 | + $replarr = array("′", "⁄", "–", "“", '');
|
|
| 1859 | + |
|
| 1860 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1861 | + $ID = ''; |
|
| 1862 | + $plink = ''; |
|
| 1863 | + |
|
| 1864 | + if (isset($postinfo_obj->pid)) {
|
|
| 1865 | + $ID = $postinfo_obj->pid; |
|
| 1866 | + $plink = get_permalink($ID); |
|
| 1867 | + } |
|
| 1868 | + |
|
| 1869 | + $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
| 1870 | + $lat = $postinfo_obj->post_latitude; |
|
| 1871 | + $lng = $postinfo_obj->post_longitude; |
|
| 1872 | + } else {
|
|
| 1873 | + $ID = $postinfo_obj->post_id; |
|
| 1874 | + $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1875 | + $title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08 |
|
| 1876 | + $plink = get_permalink($ID); |
|
| 1877 | + $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
| 1878 | + $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
| 1879 | + } |
|
| 1880 | 1880 | |
| 1881 | - $post_type = $ID ? get_post_type($ID) : ''; |
|
| 1882 | - |
|
| 1883 | - // filter field as per price package |
|
| 1884 | - global $geodir_addon_list; |
|
| 1885 | - if ($post_type && defined('GEODIRPAYMENT_VERSION')) {
|
|
| 1886 | - $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
| 1887 | - $field_name = 'geodir_contact'; |
|
| 1888 | - if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1889 | - $contact = ''; |
|
| 1890 | - } |
|
| 1891 | - |
|
| 1892 | - $field_name = 'geodir_timing'; |
|
| 1893 | - if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1894 | - $timing = ''; |
|
| 1895 | - } |
|
| 1896 | - } |
|
| 1897 | - |
|
| 1898 | - if ($lat && $lng) {
|
|
| 1899 | - ob_start(); ?> |
|
| 1881 | + $post_type = $ID ? get_post_type($ID) : ''; |
|
| 1882 | + |
|
| 1883 | + // filter field as per price package |
|
| 1884 | + global $geodir_addon_list; |
|
| 1885 | + if ($post_type && defined('GEODIRPAYMENT_VERSION')) {
|
|
| 1886 | + $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
| 1887 | + $field_name = 'geodir_contact'; |
|
| 1888 | + if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1889 | + $contact = ''; |
|
| 1890 | + } |
|
| 1891 | + |
|
| 1892 | + $field_name = 'geodir_timing'; |
|
| 1893 | + if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1894 | + $timing = ''; |
|
| 1895 | + } |
|
| 1896 | + } |
|
| 1897 | + |
|
| 1898 | + if ($lat && $lng) {
|
|
| 1899 | + ob_start(); ?> |
|
| 1900 | 1900 | <div class="gd-bubble" style=""> |
| 1901 | 1901 | <div class="gd-bubble-inside"> |
| 1902 | 1902 | <?php |
| 1903 | - $comment_count = ''; |
|
| 1904 | - $rating_star = ''; |
|
| 1905 | - if ($ID != '' && $post_type != '' && !geodir_cpt_has_rating_disabled($post_type)) {
|
|
| 1906 | - $rating_star = ''; |
|
| 1907 | - $comment_count = geodir_get_review_count_total($ID); |
|
| 1908 | - |
|
| 1909 | - if (!$preview) {
|
|
| 1910 | - $post_avgratings = geodir_get_post_rating($ID); |
|
| 1911 | - |
|
| 1912 | - $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
| 1913 | - |
|
| 1914 | - /** |
|
| 1915 | - * Filter to change rating stars |
|
| 1916 | - * |
|
| 1917 | - * You can use this filter to change Rating stars. |
|
| 1918 | - * |
|
| 1919 | - * @since 1.0.0 |
|
| 1920 | - * @package GeoDirectory |
|
| 1921 | - * @param string $rating_star Rating stars. |
|
| 1922 | - * @param float $post_avgratings Average ratings of the post. |
|
| 1923 | - * @param int $ID The post ID. |
|
| 1924 | - */ |
|
| 1925 | - $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
|
|
| 1926 | - } |
|
| 1927 | - } |
|
| 1928 | - ?> |
|
| 1903 | + $comment_count = ''; |
|
| 1904 | + $rating_star = ''; |
|
| 1905 | + if ($ID != '' && $post_type != '' && !geodir_cpt_has_rating_disabled($post_type)) {
|
|
| 1906 | + $rating_star = ''; |
|
| 1907 | + $comment_count = geodir_get_review_count_total($ID); |
|
| 1908 | + |
|
| 1909 | + if (!$preview) {
|
|
| 1910 | + $post_avgratings = geodir_get_post_rating($ID); |
|
| 1911 | + |
|
| 1912 | + $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
| 1913 | + |
|
| 1914 | + /** |
|
| 1915 | + * Filter to change rating stars |
|
| 1916 | + * |
|
| 1917 | + * You can use this filter to change Rating stars. |
|
| 1918 | + * |
|
| 1919 | + * @since 1.0.0 |
|
| 1920 | + * @package GeoDirectory |
|
| 1921 | + * @param string $rating_star Rating stars. |
|
| 1922 | + * @param float $post_avgratings Average ratings of the post. |
|
| 1923 | + * @param int $ID The post ID. |
|
| 1924 | + */ |
|
| 1925 | + $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
|
|
| 1926 | + } |
|
| 1927 | + } |
|
| 1928 | + ?> |
|
| 1929 | 1929 | <div class="geodir-bubble_desc"> |
| 1930 | 1930 | <h4> |
| 1931 | 1931 | <a href="<?php if ($plink != '') {
|
| 1932 | - echo $plink; |
|
| 1933 | - } else {
|
|
| 1934 | - echo 'javascript:void(0);'; |
|
| 1935 | - } ?>"><?php echo $title; ?></a> |
|
| 1932 | + echo $plink; |
|
| 1933 | + } else {
|
|
| 1934 | + echo 'javascript:void(0);'; |
|
| 1935 | + } ?>"><?php echo $title; ?></a> |
|
| 1936 | 1936 | </h4> |
| 1937 | 1937 | <?php |
| 1938 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1939 | - $post_images = array(); |
|
| 1940 | - if (!empty($postinfo_obj->post_images)) {
|
|
| 1941 | - $post_images = explode(",", $postinfo_obj->post_images);
|
|
| 1942 | - } |
|
| 1943 | - |
|
| 1944 | - if (!empty($post_images)) {
|
|
| 1945 | - ?> |
|
| 1938 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1939 | + $post_images = array(); |
|
| 1940 | + if (!empty($postinfo_obj->post_images)) {
|
|
| 1941 | + $post_images = explode(",", $postinfo_obj->post_images);
|
|
| 1942 | + } |
|
| 1943 | + |
|
| 1944 | + if (!empty($post_images)) {
|
|
| 1945 | + ?> |
|
| 1946 | 1946 | <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
|
| 1947 | - echo $plink; |
|
| 1948 | - } else {
|
|
| 1949 | - echo 'javascript:void(0);'; |
|
| 1950 | - } ?>"><img alt="bubble image" style="max-height:50px;" |
|
| 1947 | + echo $plink; |
|
| 1948 | + } else {
|
|
| 1949 | + echo 'javascript:void(0);'; |
|
| 1950 | + } ?>"><img alt="bubble image" style="max-height:50px;" |
|
| 1951 | 1951 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1952 | 1952 | <?php |
| 1953 | - }else{
|
|
| 1954 | - echo '<div class="geodir-bubble_image"></div>'; |
|
| 1955 | - } |
|
| 1956 | - } else {
|
|
| 1957 | - if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
|
|
| 1958 | - ?> |
|
| 1953 | + }else{
|
|
| 1954 | + echo '<div class="geodir-bubble_image"></div>'; |
|
| 1955 | + } |
|
| 1956 | + } else {
|
|
| 1957 | + if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
|
|
| 1958 | + ?> |
|
| 1959 | 1959 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1960 | 1960 | <?php |
| 1961 | - }else{
|
|
| 1962 | - echo '<div class="geodir-bubble_image"></div>'; |
|
| 1963 | - } |
|
| 1964 | - } |
|
| 1965 | - ?> |
|
| 1961 | + }else{
|
|
| 1962 | + echo '<div class="geodir-bubble_image"></div>'; |
|
| 1963 | + } |
|
| 1964 | + } |
|
| 1965 | + ?> |
|
| 1966 | 1966 | <div class="geodir-bubble-meta-side"> |
| 1967 | 1967 | <?php |
| 1968 | - /** |
|
| 1969 | - * Fires before the meta info in the map info window. |
|
| 1970 | - * |
|
| 1971 | - * This can be used to add more info to the map info window before the normal meta info. |
|
| 1972 | - * |
|
| 1973 | - * @since 1.5.4 |
|
| 1974 | - * @param int $ID The post id. |
|
| 1975 | - * @param object $postinfo_obj The posts info as an object. |
|
| 1976 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1977 | - */ |
|
| 1978 | - do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
|
|
| 1979 | - |
|
| 1980 | - echo geodir_show_listing_info('mapbubble');
|
|
| 1981 | - |
|
| 1982 | - /** |
|
| 1983 | - * Fires after the meta info in the map info window. |
|
| 1984 | - * |
|
| 1985 | - * This can be used to add more info to the map info window after the normal meta info. |
|
| 1986 | - * |
|
| 1987 | - * @since 1.4.2 |
|
| 1988 | - * @param object $postinfo_obj The posts info as an object. |
|
| 1989 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1990 | - */ |
|
| 1991 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1992 | - ?> |
|
| 1968 | + /** |
|
| 1969 | + * Fires before the meta info in the map info window. |
|
| 1970 | + * |
|
| 1971 | + * This can be used to add more info to the map info window before the normal meta info. |
|
| 1972 | + * |
|
| 1973 | + * @since 1.5.4 |
|
| 1974 | + * @param int $ID The post id. |
|
| 1975 | + * @param object $postinfo_obj The posts info as an object. |
|
| 1976 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1977 | + */ |
|
| 1978 | + do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
|
|
| 1979 | + |
|
| 1980 | + echo geodir_show_listing_info('mapbubble');
|
|
| 1981 | + |
|
| 1982 | + /** |
|
| 1983 | + * Fires after the meta info in the map info window. |
|
| 1984 | + * |
|
| 1985 | + * This can be used to add more info to the map info window after the normal meta info. |
|
| 1986 | + * |
|
| 1987 | + * @since 1.4.2 |
|
| 1988 | + * @param object $postinfo_obj The posts info as an object. |
|
| 1989 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1990 | + */ |
|
| 1991 | + do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1992 | + ?> |
|
| 1993 | 1993 | </div> |
| 1994 | 1994 | <?php |
| 1995 | - if ($ID) {
|
|
| 1996 | - $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
|
|
| 1997 | - ?> |
|
| 1995 | + if ($ID) {
|
|
| 1996 | + $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
|
|
| 1997 | + ?> |
|
| 1998 | 1998 | <div class="geodir-bubble-meta-fade"></div> |
| 1999 | 1999 | <div class="geodir-bubble-meta-bottom"> |
| 2000 | 2000 | <?php if ($rating_star != '') { ?>
|
@@ -2010,69 +2010,69 @@ discard block |
||
| 2010 | 2010 | </div> |
| 2011 | 2011 | </div> |
| 2012 | 2012 | <?php |
| 2013 | - $html = ob_get_clean(); |
|
| 2014 | - /** |
|
| 2015 | - * Filter to change infowindow html |
|
| 2016 | - * |
|
| 2017 | - * You can use this filter to change infowindow html. |
|
| 2018 | - * |
|
| 2019 | - * @since 1.0.0 |
|
| 2020 | - * @package GeoDirectory |
|
| 2021 | - * @param string $html Infowindow html. |
|
| 2022 | - * @param object $postinfo_obj The Post object. |
|
| 2023 | - * @param bool|string $post_preview Is this a post preview? |
|
| 2024 | - */ |
|
| 2025 | - $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
|
|
| 2026 | - return $html; |
|
| 2027 | - } |
|
| 2028 | - } |
|
| 2013 | + $html = ob_get_clean(); |
|
| 2014 | + /** |
|
| 2015 | + * Filter to change infowindow html |
|
| 2016 | + * |
|
| 2017 | + * You can use this filter to change infowindow html. |
|
| 2018 | + * |
|
| 2019 | + * @since 1.0.0 |
|
| 2020 | + * @package GeoDirectory |
|
| 2021 | + * @param string $html Infowindow html. |
|
| 2022 | + * @param object $postinfo_obj The Post object. |
|
| 2023 | + * @param bool|string $post_preview Is this a post preview? |
|
| 2024 | + */ |
|
| 2025 | + $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
|
|
| 2026 | + return $html; |
|
| 2027 | + } |
|
| 2028 | + } |
|
| 2029 | 2029 | } |
| 2030 | 2030 | |
| 2031 | 2031 | |
| 2032 | 2032 | if (!function_exists('geodir_new_post_default_status')) {
|
| 2033 | - /** |
|
| 2034 | - * Default post status for new posts. |
|
| 2035 | - * |
|
| 2036 | - * @since 1.0.0 |
|
| 2037 | - * @package GeoDirectory |
|
| 2038 | - * @return string Returns the default post status for new posts. Ex: draft, publish etc. |
|
| 2039 | - */ |
|
| 2040 | - function geodir_new_post_default_status() |
|
| 2041 | - {
|
|
| 2042 | - if (get_option('geodir_new_post_default_status'))
|
|
| 2043 | - return get_option('geodir_new_post_default_status');
|
|
| 2044 | - else |
|
| 2045 | - return 'publish'; |
|
| 2046 | - |
|
| 2047 | - } |
|
| 2033 | + /** |
|
| 2034 | + * Default post status for new posts. |
|
| 2035 | + * |
|
| 2036 | + * @since 1.0.0 |
|
| 2037 | + * @package GeoDirectory |
|
| 2038 | + * @return string Returns the default post status for new posts. Ex: draft, publish etc. |
|
| 2039 | + */ |
|
| 2040 | + function geodir_new_post_default_status() |
|
| 2041 | + {
|
|
| 2042 | + if (get_option('geodir_new_post_default_status'))
|
|
| 2043 | + return get_option('geodir_new_post_default_status');
|
|
| 2044 | + else |
|
| 2045 | + return 'publish'; |
|
| 2046 | + |
|
| 2047 | + } |
|
| 2048 | 2048 | } |
| 2049 | 2049 | |
| 2050 | 2050 | if (!function_exists('geodir_change_post_status')) {
|
| 2051 | - /** |
|
| 2052 | - * Change post status of a post. |
|
| 2053 | - * |
|
| 2054 | - * @global object $wpdb WordPress Database object. |
|
| 2055 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2056 | - * @param int|string $post_id The post ID. |
|
| 2057 | - * @param string $status New post status. Ex: draft, publish etc. |
|
| 2058 | - */ |
|
| 2059 | - function geodir_change_post_status($post_id = '', $status = '') |
|
| 2060 | - {
|
|
| 2061 | - global $wpdb, $plugin_prefix; |
|
| 2062 | - |
|
| 2063 | - $post_type = get_post_type($post_id); |
|
| 2064 | - |
|
| 2065 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2066 | - |
|
| 2067 | - $wpdb->query( |
|
| 2068 | - $wpdb->prepare( |
|
| 2069 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2070 | - array($status, $post_id) |
|
| 2071 | - ) |
|
| 2072 | - ); |
|
| 2073 | - |
|
| 2074 | - |
|
| 2075 | - } |
|
| 2051 | + /** |
|
| 2052 | + * Change post status of a post. |
|
| 2053 | + * |
|
| 2054 | + * @global object $wpdb WordPress Database object. |
|
| 2055 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2056 | + * @param int|string $post_id The post ID. |
|
| 2057 | + * @param string $status New post status. Ex: draft, publish etc. |
|
| 2058 | + */ |
|
| 2059 | + function geodir_change_post_status($post_id = '', $status = '') |
|
| 2060 | + {
|
|
| 2061 | + global $wpdb, $plugin_prefix; |
|
| 2062 | + |
|
| 2063 | + $post_type = get_post_type($post_id); |
|
| 2064 | + |
|
| 2065 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2066 | + |
|
| 2067 | + $wpdb->query( |
|
| 2068 | + $wpdb->prepare( |
|
| 2069 | + "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2070 | + array($status, $post_id) |
|
| 2071 | + ) |
|
| 2072 | + ); |
|
| 2073 | + |
|
| 2074 | + |
|
| 2075 | + } |
|
| 2076 | 2076 | } |
| 2077 | 2077 | |
| 2078 | 2078 | /** |
@@ -2086,13 +2086,13 @@ discard block |
||
| 2086 | 2086 | */ |
| 2087 | 2087 | function geodir_set_post_status($pid, $status) |
| 2088 | 2088 | {
|
| 2089 | - if ($pid) {
|
|
| 2090 | - global $wpdb; |
|
| 2091 | - $my_post = array(); |
|
| 2092 | - $my_post['post_status'] = $status; |
|
| 2093 | - $my_post['ID'] = $pid; |
|
| 2094 | - $last_postid = wp_update_post($my_post); |
|
| 2095 | - } |
|
| 2089 | + if ($pid) {
|
|
| 2090 | + global $wpdb; |
|
| 2091 | + $my_post = array(); |
|
| 2092 | + $my_post['post_status'] = $status; |
|
| 2093 | + $my_post['ID'] = $pid; |
|
| 2094 | + $last_postid = wp_update_post($my_post); |
|
| 2095 | + } |
|
| 2096 | 2096 | } |
| 2097 | 2097 | |
| 2098 | 2098 | |
@@ -2108,384 +2108,384 @@ discard block |
||
| 2108 | 2108 | */ |
| 2109 | 2109 | function geodir_update_poststatus($new_status, $old_status, $post) |
| 2110 | 2110 | {
|
| 2111 | - global $wpdb; |
|
| 2111 | + global $wpdb; |
|
| 2112 | 2112 | |
| 2113 | - $geodir_posttypes = geodir_get_posttypes(); |
|
| 2113 | + $geodir_posttypes = geodir_get_posttypes(); |
|
| 2114 | 2114 | |
| 2115 | - if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 2115 | + if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 2116 | 2116 | |
| 2117 | - geodir_change_post_status($post->ID, $new_status); |
|
| 2118 | - } |
|
| 2117 | + geodir_change_post_status($post->ID, $new_status); |
|
| 2118 | + } |
|
| 2119 | 2119 | } |
| 2120 | 2120 | |
| 2121 | 2121 | |
| 2122 | 2122 | if (!function_exists('geodir_update_listing_info')) {
|
| 2123 | - /** |
|
| 2124 | - * Update post info. |
|
| 2125 | - * |
|
| 2126 | - * @since 1.0.0 |
|
| 2127 | - * @package GeoDirectory |
|
| 2128 | - * @global object $wpdb WordPress Database object. |
|
| 2129 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2130 | - * @param int $updatingpost The updating post ID. |
|
| 2131 | - * @param int $temppost The temporary post ID. |
|
| 2132 | - * @todo fix post_id variable |
|
| 2133 | - */ |
|
| 2134 | - function geodir_update_listing_info($updatingpost, $temppost) |
|
| 2135 | - {
|
|
| 2136 | - |
|
| 2137 | - global $wpdb, $plugin_prefix; |
|
| 2138 | - |
|
| 2139 | - $post_type = get_post_type($post_id); |
|
| 2140 | - |
|
| 2141 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2142 | - |
|
| 2143 | - $wpdb->query( |
|
| 2144 | - $wpdb->prepare( |
|
| 2145 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2146 | - array($updatingpost, $temppost) |
|
| 2147 | - ) |
|
| 2148 | - ); |
|
| 2149 | - |
|
| 2150 | - $wpdb->query( |
|
| 2151 | - $wpdb->prepare( |
|
| 2152 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2153 | - array($updatingpost, $temppost) |
|
| 2154 | - ) |
|
| 2155 | - ); |
|
| 2156 | - |
|
| 2157 | - /* Update Attachments*/ |
|
| 2158 | - |
|
| 2159 | - $wpdb->query( |
|
| 2160 | - $wpdb->prepare( |
|
| 2161 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2162 | - array($updatingpost, $temppost) |
|
| 2163 | - ) |
|
| 2164 | - ); |
|
| 2165 | - |
|
| 2166 | - } |
|
| 2123 | + /** |
|
| 2124 | + * Update post info. |
|
| 2125 | + * |
|
| 2126 | + * @since 1.0.0 |
|
| 2127 | + * @package GeoDirectory |
|
| 2128 | + * @global object $wpdb WordPress Database object. |
|
| 2129 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2130 | + * @param int $updatingpost The updating post ID. |
|
| 2131 | + * @param int $temppost The temporary post ID. |
|
| 2132 | + * @todo fix post_id variable |
|
| 2133 | + */ |
|
| 2134 | + function geodir_update_listing_info($updatingpost, $temppost) |
|
| 2135 | + {
|
|
| 2136 | + |
|
| 2137 | + global $wpdb, $plugin_prefix; |
|
| 2138 | + |
|
| 2139 | + $post_type = get_post_type($post_id); |
|
| 2140 | + |
|
| 2141 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2142 | + |
|
| 2143 | + $wpdb->query( |
|
| 2144 | + $wpdb->prepare( |
|
| 2145 | + "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2146 | + array($updatingpost, $temppost) |
|
| 2147 | + ) |
|
| 2148 | + ); |
|
| 2149 | + |
|
| 2150 | + $wpdb->query( |
|
| 2151 | + $wpdb->prepare( |
|
| 2152 | + "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2153 | + array($updatingpost, $temppost) |
|
| 2154 | + ) |
|
| 2155 | + ); |
|
| 2156 | + |
|
| 2157 | + /* Update Attachments*/ |
|
| 2158 | + |
|
| 2159 | + $wpdb->query( |
|
| 2160 | + $wpdb->prepare( |
|
| 2161 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2162 | + array($updatingpost, $temppost) |
|
| 2163 | + ) |
|
| 2164 | + ); |
|
| 2165 | + |
|
| 2166 | + } |
|
| 2167 | 2167 | } |
| 2168 | 2168 | |
| 2169 | 2169 | |
| 2170 | 2170 | if (!function_exists('geodir_delete_listing_info')) {
|
| 2171 | - /** |
|
| 2172 | - * Delete Listing info from details table for the given post id. |
|
| 2173 | - * |
|
| 2174 | - * @since 1.0.0 |
|
| 2175 | - * @package GeoDirectory |
|
| 2176 | - * @global object $wpdb WordPress Database object. |
|
| 2177 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2178 | - * @param int $deleted_postid The post ID. |
|
| 2179 | - * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
| 2180 | - * @return bool|void |
|
| 2181 | - */ |
|
| 2182 | - function geodir_delete_listing_info($deleted_postid, $force = false) |
|
| 2183 | - {
|
|
| 2184 | - global $wpdb, $plugin_prefix; |
|
| 2185 | - |
|
| 2186 | - // check for multisite deletions |
|
| 2187 | - if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
|
|
| 2188 | - } else {
|
|
| 2189 | - return; |
|
| 2190 | - } |
|
| 2191 | - |
|
| 2192 | - $post_type = get_post_type($deleted_postid); |
|
| 2193 | - |
|
| 2194 | - $all_postypes = geodir_get_posttypes(); |
|
| 2195 | - |
|
| 2196 | - if (!in_array($post_type, $all_postypes)) |
|
| 2197 | - return false; |
|
| 2198 | - |
|
| 2199 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2200 | - |
|
| 2201 | - /* Delete custom post meta*/ |
|
| 2202 | - $wpdb->query( |
|
| 2203 | - $wpdb->prepare( |
|
| 2204 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2205 | - array($deleted_postid) |
|
| 2206 | - ) |
|
| 2207 | - ); |
|
| 2208 | - |
|
| 2209 | - /* Delete post map icons*/ |
|
| 2210 | - |
|
| 2211 | - $wpdb->query( |
|
| 2212 | - $wpdb->prepare( |
|
| 2213 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2214 | - array($deleted_postid) |
|
| 2215 | - ) |
|
| 2216 | - ); |
|
| 2217 | - |
|
| 2218 | - /* Delete Attachments*/ |
|
| 2219 | - $postcurr_images = geodir_get_images($deleted_postid); |
|
| 2220 | - |
|
| 2221 | - $wpdb->query( |
|
| 2222 | - $wpdb->prepare( |
|
| 2223 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2224 | - array($deleted_postid) |
|
| 2225 | - ) |
|
| 2226 | - ); |
|
| 2227 | - geodir_remove_attachments($postcurr_images); |
|
| 2228 | - |
|
| 2229 | - } |
|
| 2171 | + /** |
|
| 2172 | + * Delete Listing info from details table for the given post id. |
|
| 2173 | + * |
|
| 2174 | + * @since 1.0.0 |
|
| 2175 | + * @package GeoDirectory |
|
| 2176 | + * @global object $wpdb WordPress Database object. |
|
| 2177 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2178 | + * @param int $deleted_postid The post ID. |
|
| 2179 | + * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
| 2180 | + * @return bool|void |
|
| 2181 | + */ |
|
| 2182 | + function geodir_delete_listing_info($deleted_postid, $force = false) |
|
| 2183 | + {
|
|
| 2184 | + global $wpdb, $plugin_prefix; |
|
| 2185 | + |
|
| 2186 | + // check for multisite deletions |
|
| 2187 | + if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
|
|
| 2188 | + } else {
|
|
| 2189 | + return; |
|
| 2190 | + } |
|
| 2191 | + |
|
| 2192 | + $post_type = get_post_type($deleted_postid); |
|
| 2193 | + |
|
| 2194 | + $all_postypes = geodir_get_posttypes(); |
|
| 2195 | + |
|
| 2196 | + if (!in_array($post_type, $all_postypes)) |
|
| 2197 | + return false; |
|
| 2198 | + |
|
| 2199 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2200 | + |
|
| 2201 | + /* Delete custom post meta*/ |
|
| 2202 | + $wpdb->query( |
|
| 2203 | + $wpdb->prepare( |
|
| 2204 | + "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2205 | + array($deleted_postid) |
|
| 2206 | + ) |
|
| 2207 | + ); |
|
| 2208 | + |
|
| 2209 | + /* Delete post map icons*/ |
|
| 2210 | + |
|
| 2211 | + $wpdb->query( |
|
| 2212 | + $wpdb->prepare( |
|
| 2213 | + "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2214 | + array($deleted_postid) |
|
| 2215 | + ) |
|
| 2216 | + ); |
|
| 2217 | + |
|
| 2218 | + /* Delete Attachments*/ |
|
| 2219 | + $postcurr_images = geodir_get_images($deleted_postid); |
|
| 2220 | + |
|
| 2221 | + $wpdb->query( |
|
| 2222 | + $wpdb->prepare( |
|
| 2223 | + "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2224 | + array($deleted_postid) |
|
| 2225 | + ) |
|
| 2226 | + ); |
|
| 2227 | + geodir_remove_attachments($postcurr_images); |
|
| 2228 | + |
|
| 2229 | + } |
|
| 2230 | 2230 | } |
| 2231 | 2231 | |
| 2232 | 2232 | |
| 2233 | 2233 | if (!function_exists('geodir_add_to_favorite')) {
|
| 2234 | - /** |
|
| 2235 | - * This function would add listing to favorite listing. |
|
| 2236 | - * |
|
| 2237 | - * @since 1.0.0 |
|
| 2238 | - * @package GeoDirectory |
|
| 2239 | - * @global object $current_user Current user object. |
|
| 2240 | - * @param int $post_id The post ID. |
|
| 2241 | - */ |
|
| 2242 | - function geodir_add_to_favorite($post_id) |
|
| 2243 | - {
|
|
| 2244 | - |
|
| 2245 | - global $current_user; |
|
| 2246 | - |
|
| 2247 | - /** |
|
| 2248 | - * Filter to modify "Unfavorite" text |
|
| 2249 | - * |
|
| 2250 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2251 | - * |
|
| 2252 | - * @since 1.0.0 |
|
| 2253 | - * @package GeoDirectory |
|
| 2254 | - */ |
|
| 2255 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2256 | - |
|
| 2257 | - /** |
|
| 2258 | - * Filter to modify "Remove from Favorites" text |
|
| 2259 | - * |
|
| 2260 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2261 | - * |
|
| 2262 | - * @since 1.0.0 |
|
| 2263 | - * @package GeoDirectory |
|
| 2264 | - */ |
|
| 2265 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2266 | - |
|
| 2267 | - /** |
|
| 2268 | - * Filter to modify "fa fa-heart" icon |
|
| 2269 | - * |
|
| 2270 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2271 | - * |
|
| 2272 | - * @since 1.0.0 |
|
| 2273 | - * @package GeoDirectory |
|
| 2274 | - */ |
|
| 2275 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2276 | - |
|
| 2277 | - $user_meta_data = array(); |
|
| 2278 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2279 | - |
|
| 2280 | - if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
|
|
| 2281 | - $user_meta_data[] = $post_id; |
|
| 2282 | - } |
|
| 2283 | - |
|
| 2284 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2285 | - |
|
| 2286 | - /** |
|
| 2287 | - * Called before adding the post from favourites. |
|
| 2288 | - * |
|
| 2289 | - * @since 1.0.0 |
|
| 2290 | - * @package GeoDirectory |
|
| 2291 | - * @param int $post_id The post ID. |
|
| 2292 | - */ |
|
| 2293 | - do_action('geodir_before_add_from_favorite', $post_id);
|
|
| 2294 | - |
|
| 2295 | - 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>'; |
|
| 2234 | + /** |
|
| 2235 | + * This function would add listing to favorite listing. |
|
| 2236 | + * |
|
| 2237 | + * @since 1.0.0 |
|
| 2238 | + * @package GeoDirectory |
|
| 2239 | + * @global object $current_user Current user object. |
|
| 2240 | + * @param int $post_id The post ID. |
|
| 2241 | + */ |
|
| 2242 | + function geodir_add_to_favorite($post_id) |
|
| 2243 | + {
|
|
| 2244 | + |
|
| 2245 | + global $current_user; |
|
| 2246 | + |
|
| 2247 | + /** |
|
| 2248 | + * Filter to modify "Unfavorite" text |
|
| 2249 | + * |
|
| 2250 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2251 | + * |
|
| 2252 | + * @since 1.0.0 |
|
| 2253 | + * @package GeoDirectory |
|
| 2254 | + */ |
|
| 2255 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2256 | + |
|
| 2257 | + /** |
|
| 2258 | + * Filter to modify "Remove from Favorites" text |
|
| 2259 | + * |
|
| 2260 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2261 | + * |
|
| 2262 | + * @since 1.0.0 |
|
| 2263 | + * @package GeoDirectory |
|
| 2264 | + */ |
|
| 2265 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2266 | + |
|
| 2267 | + /** |
|
| 2268 | + * Filter to modify "fa fa-heart" icon |
|
| 2269 | + * |
|
| 2270 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2271 | + * |
|
| 2272 | + * @since 1.0.0 |
|
| 2273 | + * @package GeoDirectory |
|
| 2274 | + */ |
|
| 2275 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2276 | + |
|
| 2277 | + $user_meta_data = array(); |
|
| 2278 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2279 | + |
|
| 2280 | + if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
|
|
| 2281 | + $user_meta_data[] = $post_id; |
|
| 2282 | + } |
|
| 2283 | + |
|
| 2284 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2285 | + |
|
| 2286 | + /** |
|
| 2287 | + * Called before adding the post from favourites. |
|
| 2288 | + * |
|
| 2289 | + * @since 1.0.0 |
|
| 2290 | + * @package GeoDirectory |
|
| 2291 | + * @param int $post_id The post ID. |
|
| 2292 | + */ |
|
| 2293 | + do_action('geodir_before_add_from_favorite', $post_id);
|
|
| 2294 | + |
|
| 2295 | + 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>'; |
|
| 2296 | + |
|
| 2297 | + /** |
|
| 2298 | + * Called after adding the post from favourites. |
|
| 2299 | + * |
|
| 2300 | + * @since 1.0.0 |
|
| 2301 | + * @package GeoDirectory |
|
| 2302 | + * @param int $post_id The post ID. |
|
| 2303 | + */ |
|
| 2304 | + do_action('geodir_after_add_from_favorite', $post_id);
|
|
| 2296 | 2305 | |
| 2297 | - /** |
|
| 2298 | - * Called after adding the post from favourites. |
|
| 2299 | - * |
|
| 2300 | - * @since 1.0.0 |
|
| 2301 | - * @package GeoDirectory |
|
| 2302 | - * @param int $post_id The post ID. |
|
| 2303 | - */ |
|
| 2304 | - do_action('geodir_after_add_from_favorite', $post_id);
|
|
| 2305 | - |
|
| 2306 | - } |
|
| 2306 | + } |
|
| 2307 | 2307 | } |
| 2308 | 2308 | |
| 2309 | 2309 | if (!function_exists('geodir_remove_from_favorite')) {
|
| 2310 | - /** |
|
| 2311 | - * This function would remove the favourited property earlier. |
|
| 2312 | - * |
|
| 2313 | - * @since 1.0.0 |
|
| 2314 | - * @package GeoDirectory |
|
| 2315 | - * @global object $current_user Current user object. |
|
| 2316 | - * @param int $post_id The post ID. |
|
| 2317 | - */ |
|
| 2318 | - function geodir_remove_from_favorite($post_id) |
|
| 2319 | - {
|
|
| 2320 | - global $current_user; |
|
| 2321 | - |
|
| 2322 | - /** |
|
| 2323 | - * Filter to modify "Add to Favorites" text |
|
| 2324 | - * |
|
| 2325 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2326 | - * |
|
| 2327 | - * @since 1.0.0 |
|
| 2328 | - * @package GeoDirectory |
|
| 2329 | - */ |
|
| 2330 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2331 | - |
|
| 2332 | - /** |
|
| 2333 | - * Filter to modify "Favourite" text |
|
| 2334 | - * |
|
| 2335 | - * You can use this filter to rename "Favourite" text to something else. |
|
| 2336 | - * |
|
| 2337 | - * @since 1.0.0 |
|
| 2338 | - * @package GeoDirectory |
|
| 2339 | - */ |
|
| 2340 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2341 | - |
|
| 2342 | - /** |
|
| 2343 | - * Filter to modify "fa fa-heart" icon |
|
| 2344 | - * |
|
| 2345 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2346 | - * |
|
| 2347 | - * @since 1.0.0 |
|
| 2348 | - * @package GeoDirectory |
|
| 2349 | - */ |
|
| 2350 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2351 | - |
|
| 2352 | - $user_meta_data = array(); |
|
| 2353 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2354 | - |
|
| 2355 | - if (!empty($user_meta_data)) {
|
|
| 2310 | + /** |
|
| 2311 | + * This function would remove the favourited property earlier. |
|
| 2312 | + * |
|
| 2313 | + * @since 1.0.0 |
|
| 2314 | + * @package GeoDirectory |
|
| 2315 | + * @global object $current_user Current user object. |
|
| 2316 | + * @param int $post_id The post ID. |
|
| 2317 | + */ |
|
| 2318 | + function geodir_remove_from_favorite($post_id) |
|
| 2319 | + {
|
|
| 2320 | + global $current_user; |
|
| 2321 | + |
|
| 2322 | + /** |
|
| 2323 | + * Filter to modify "Add to Favorites" text |
|
| 2324 | + * |
|
| 2325 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2326 | + * |
|
| 2327 | + * @since 1.0.0 |
|
| 2328 | + * @package GeoDirectory |
|
| 2329 | + */ |
|
| 2330 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2331 | + |
|
| 2332 | + /** |
|
| 2333 | + * Filter to modify "Favourite" text |
|
| 2334 | + * |
|
| 2335 | + * You can use this filter to rename "Favourite" text to something else. |
|
| 2336 | + * |
|
| 2337 | + * @since 1.0.0 |
|
| 2338 | + * @package GeoDirectory |
|
| 2339 | + */ |
|
| 2340 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2341 | + |
|
| 2342 | + /** |
|
| 2343 | + * Filter to modify "fa fa-heart" icon |
|
| 2344 | + * |
|
| 2345 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2346 | + * |
|
| 2347 | + * @since 1.0.0 |
|
| 2348 | + * @package GeoDirectory |
|
| 2349 | + */ |
|
| 2350 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2351 | + |
|
| 2352 | + $user_meta_data = array(); |
|
| 2353 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2354 | + |
|
| 2355 | + if (!empty($user_meta_data)) {
|
|
| 2356 | + |
|
| 2357 | + if (($key = array_search($post_id, $user_meta_data)) !== false) {
|
|
| 2358 | + unset($user_meta_data[$key]); |
|
| 2359 | + } |
|
| 2356 | 2360 | |
| 2357 | - if (($key = array_search($post_id, $user_meta_data)) !== false) {
|
|
| 2358 | - unset($user_meta_data[$key]); |
|
| 2359 | - } |
|
| 2361 | + } |
|
| 2360 | 2362 | |
| 2361 | - } |
|
| 2363 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2362 | 2364 | |
| 2363 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2365 | + /** |
|
| 2366 | + * Called before removing the post from favourites. |
|
| 2367 | + * |
|
| 2368 | + * @since 1.0.0 |
|
| 2369 | + * @package GeoDirectory |
|
| 2370 | + * @param int $post_id The post ID. |
|
| 2371 | + */ |
|
| 2372 | + do_action('geodir_before_remove_from_favorite', $post_id);
|
|
| 2364 | 2373 | |
| 2365 | - /** |
|
| 2366 | - * Called before removing the post from favourites. |
|
| 2367 | - * |
|
| 2368 | - * @since 1.0.0 |
|
| 2369 | - * @package GeoDirectory |
|
| 2370 | - * @param int $post_id The post ID. |
|
| 2371 | - */ |
|
| 2372 | - do_action('geodir_before_remove_from_favorite', $post_id);
|
|
| 2374 | + 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>'; |
|
| 2373 | 2375 | |
| 2374 | - 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>'; |
|
| 2376 | + /** |
|
| 2377 | + * Called after removing the post from favourites. |
|
| 2378 | + * |
|
| 2379 | + * @since 1.0.0 |
|
| 2380 | + * @package GeoDirectory |
|
| 2381 | + * @param int $post_id The post ID. |
|
| 2382 | + */ |
|
| 2383 | + do_action('geodir_after_remove_from_favorite', $post_id);
|
|
| 2375 | 2384 | |
| 2376 | - /** |
|
| 2377 | - * Called after removing the post from favourites. |
|
| 2378 | - * |
|
| 2379 | - * @since 1.0.0 |
|
| 2380 | - * @package GeoDirectory |
|
| 2381 | - * @param int $post_id The post ID. |
|
| 2382 | - */ |
|
| 2383 | - do_action('geodir_after_remove_from_favorite', $post_id);
|
|
| 2384 | - |
|
| 2385 | - } |
|
| 2385 | + } |
|
| 2386 | 2386 | } |
| 2387 | 2387 | |
| 2388 | 2388 | if (!function_exists('geodir_favourite_html')) {
|
| 2389 | - /** |
|
| 2390 | - * This function would display the html content for add to favorite or remove from favorite. |
|
| 2391 | - * |
|
| 2392 | - * @since 1.0.0 |
|
| 2393 | - * @package GeoDirectory |
|
| 2394 | - * @global object $current_user Current user object. |
|
| 2395 | - * @global object $post The current post object. |
|
| 2396 | - * @param int $user_id The user ID. |
|
| 2397 | - * @param int $post_id The post ID. |
|
| 2398 | - */ |
|
| 2399 | - function geodir_favourite_html($user_id, $post_id) |
|
| 2400 | - {
|
|
| 2401 | - |
|
| 2402 | - global $current_user, $post; |
|
| 2403 | - |
|
| 2404 | - /** |
|
| 2405 | - * Filter to modify "Add to Favorites" text |
|
| 2406 | - * |
|
| 2407 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2408 | - * |
|
| 2409 | - * @since 1.0.0 |
|
| 2410 | - * @package GeoDirectory |
|
| 2411 | - */ |
|
| 2412 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2413 | - |
|
| 2414 | - /** |
|
| 2415 | - * Filter to modify "Favourite" text |
|
| 2416 | - * |
|
| 2417 | - * You can use this filter to rename "Favourite" text to something else. |
|
| 2418 | - * |
|
| 2419 | - * @since 1.0.0 |
|
| 2420 | - * @package GeoDirectory |
|
| 2421 | - */ |
|
| 2422 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2423 | - |
|
| 2424 | - /** |
|
| 2425 | - * Filter to modify "Unfavorite" text |
|
| 2426 | - * |
|
| 2427 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2428 | - * |
|
| 2429 | - * @since 1.0.0 |
|
| 2430 | - * @package GeoDirectory |
|
| 2431 | - */ |
|
| 2432 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2433 | - |
|
| 2434 | - /** |
|
| 2435 | - * Filter to modify "Remove from Favorites" text |
|
| 2436 | - * |
|
| 2437 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2438 | - * |
|
| 2439 | - * @since 1.0.0 |
|
| 2440 | - * @package GeoDirectory |
|
| 2441 | - */ |
|
| 2442 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2443 | - |
|
| 2444 | - /** |
|
| 2445 | - * Filter to modify "fa fa-heart" icon |
|
| 2446 | - * |
|
| 2447 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2448 | - * |
|
| 2449 | - * @since 1.0.0 |
|
| 2450 | - * @package GeoDirectory |
|
| 2451 | - */ |
|
| 2452 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2453 | - |
|
| 2454 | - /** |
|
| 2455 | - * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
| 2456 | - * |
|
| 2457 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2458 | - * |
|
| 2459 | - * @since 1.0.0 |
|
| 2460 | - * @package GeoDirectory |
|
| 2461 | - */ |
|
| 2462 | - $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
|
| 2463 | - |
|
| 2464 | - $user_meta_data = ''; |
|
| 2465 | - if (isset($current_user->data->ID)) |
|
| 2466 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2467 | - |
|
| 2468 | - if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
|
| 2469 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2389 | + /** |
|
| 2390 | + * This function would display the html content for add to favorite or remove from favorite. |
|
| 2391 | + * |
|
| 2392 | + * @since 1.0.0 |
|
| 2393 | + * @package GeoDirectory |
|
| 2394 | + * @global object $current_user Current user object. |
|
| 2395 | + * @global object $post The current post object. |
|
| 2396 | + * @param int $user_id The user ID. |
|
| 2397 | + * @param int $post_id The post ID. |
|
| 2398 | + */ |
|
| 2399 | + function geodir_favourite_html($user_id, $post_id) |
|
| 2400 | + {
|
|
| 2401 | + |
|
| 2402 | + global $current_user, $post; |
|
| 2403 | + |
|
| 2404 | + /** |
|
| 2405 | + * Filter to modify "Add to Favorites" text |
|
| 2406 | + * |
|
| 2407 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2408 | + * |
|
| 2409 | + * @since 1.0.0 |
|
| 2410 | + * @package GeoDirectory |
|
| 2411 | + */ |
|
| 2412 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2413 | + |
|
| 2414 | + /** |
|
| 2415 | + * Filter to modify "Favourite" text |
|
| 2416 | + * |
|
| 2417 | + * You can use this filter to rename "Favourite" text to something else. |
|
| 2418 | + * |
|
| 2419 | + * @since 1.0.0 |
|
| 2420 | + * @package GeoDirectory |
|
| 2421 | + */ |
|
| 2422 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2423 | + |
|
| 2424 | + /** |
|
| 2425 | + * Filter to modify "Unfavorite" text |
|
| 2426 | + * |
|
| 2427 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2428 | + * |
|
| 2429 | + * @since 1.0.0 |
|
| 2430 | + * @package GeoDirectory |
|
| 2431 | + */ |
|
| 2432 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2433 | + |
|
| 2434 | + /** |
|
| 2435 | + * Filter to modify "Remove from Favorites" text |
|
| 2436 | + * |
|
| 2437 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2438 | + * |
|
| 2439 | + * @since 1.0.0 |
|
| 2440 | + * @package GeoDirectory |
|
| 2441 | + */ |
|
| 2442 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2443 | + |
|
| 2444 | + /** |
|
| 2445 | + * Filter to modify "fa fa-heart" icon |
|
| 2446 | + * |
|
| 2447 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2448 | + * |
|
| 2449 | + * @since 1.0.0 |
|
| 2450 | + * @package GeoDirectory |
|
| 2451 | + */ |
|
| 2452 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2453 | + |
|
| 2454 | + /** |
|
| 2455 | + * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
| 2456 | + * |
|
| 2457 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2458 | + * |
|
| 2459 | + * @since 1.0.0 |
|
| 2460 | + * @package GeoDirectory |
|
| 2461 | + */ |
|
| 2462 | + $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
|
| 2463 | + |
|
| 2464 | + $user_meta_data = ''; |
|
| 2465 | + if (isset($current_user->data->ID)) |
|
| 2466 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2467 | + |
|
| 2468 | + if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
|
| 2469 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2470 | 2470 | class="geodir-removetofav-icon" href="javascript:void(0);" |
| 2471 | 2471 | onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
| 2472 | 2472 | title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
| 2473 | 2473 | </a> </span><?php |
| 2474 | 2474 | |
| 2475 | - } else {
|
|
| 2475 | + } else {
|
|
| 2476 | 2476 | |
| 2477 | - if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
|
| 2478 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2479 | - } else |
|
| 2480 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2477 | + if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
|
| 2478 | + $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2479 | + } else |
|
| 2480 | + $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2481 | 2481 | |
| 2482 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2482 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2483 | 2483 | href="javascript:void(0);" |
| 2484 | 2484 | onclick="<?php echo $script_text;?>" |
| 2485 | 2485 | title="<?php echo $add_favourite_text;?>"><i |
| 2486 | 2486 | class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
| 2487 | 2487 | <?php } |
| 2488 | - } |
|
| 2488 | + } |
|
| 2489 | 2489 | } |
| 2490 | 2490 | |
| 2491 | 2491 | |
@@ -2502,54 +2502,54 @@ discard block |
||
| 2502 | 2502 | function geodir_get_cat_postcount($term = array()) |
| 2503 | 2503 | {
|
| 2504 | 2504 | |
| 2505 | - if (!empty($term)) {
|
|
| 2505 | + if (!empty($term)) {
|
|
| 2506 | 2506 | |
| 2507 | - global $wpdb, $plugin_prefix; |
|
| 2507 | + global $wpdb, $plugin_prefix; |
|
| 2508 | 2508 | |
| 2509 | - $where = ''; |
|
| 2510 | - $join = ''; |
|
| 2511 | - if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
|
|
| 2512 | - $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
| 2509 | + $where = ''; |
|
| 2510 | + $join = ''; |
|
| 2511 | + if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
|
|
| 2512 | + $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
| 2513 | 2513 | |
| 2514 | - $post_type = $taxonomy_obj->object_type[0]; |
|
| 2514 | + $post_type = $taxonomy_obj->object_type[0]; |
|
| 2515 | 2515 | |
| 2516 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2516 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2517 | 2517 | |
| 2518 | - /** |
|
| 2519 | - * Filter to modify the 'join' query |
|
| 2520 | - * |
|
| 2521 | - * @since 1.0.0 |
|
| 2522 | - * @package GeoDirectory |
|
| 2523 | - * @param object|array $term category / term object that need to be processed. |
|
| 2524 | - * @param string $join The join query. |
|
| 2525 | - */ |
|
| 2526 | - $join = apply_filters('geodir_cat_post_count_join', $join, $term);
|
|
| 2518 | + /** |
|
| 2519 | + * Filter to modify the 'join' query |
|
| 2520 | + * |
|
| 2521 | + * @since 1.0.0 |
|
| 2522 | + * @package GeoDirectory |
|
| 2523 | + * @param object|array $term category / term object that need to be processed. |
|
| 2524 | + * @param string $join The join query. |
|
| 2525 | + */ |
|
| 2526 | + $join = apply_filters('geodir_cat_post_count_join', $join, $term);
|
|
| 2527 | 2527 | |
| 2528 | - /** |
|
| 2529 | - * Filter to modify the 'where' query |
|
| 2530 | - * |
|
| 2531 | - * @since 1.0.0 |
|
| 2532 | - * @package GeoDirectory |
|
| 2533 | - * @param object|array $term category / term object that need to be processed. |
|
| 2534 | - * @param string $where The where query. |
|
| 2535 | - */ |
|
| 2536 | - $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
|
| 2528 | + /** |
|
| 2529 | + * Filter to modify the 'where' query |
|
| 2530 | + * |
|
| 2531 | + * @since 1.0.0 |
|
| 2532 | + * @package GeoDirectory |
|
| 2533 | + * @param object|array $term category / term object that need to be processed. |
|
| 2534 | + * @param string $where The where query. |
|
| 2535 | + */ |
|
| 2536 | + $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
|
| 2537 | 2537 | |
| 2538 | - $count_query = "SELECT count(post_id) FROM |
|
| 2538 | + $count_query = "SELECT count(post_id) FROM |
|
| 2539 | 2539 | " . $table . " as pd " . $join . " |
| 2540 | 2540 | WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
| 2541 | 2541 | |
| 2542 | - $cat_post_count = $wpdb->get_var($count_query); |
|
| 2543 | - if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2544 | - $cat_post_count = 0; |
|
| 2542 | + $cat_post_count = $wpdb->get_var($count_query); |
|
| 2543 | + if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2544 | + $cat_post_count = 0; |
|
| 2545 | 2545 | |
| 2546 | - return $cat_post_count; |
|
| 2546 | + return $cat_post_count; |
|
| 2547 | 2547 | |
| 2548 | - } else |
|
| 2548 | + } else |
|
| 2549 | 2549 | |
| 2550 | - return $term->count; |
|
| 2551 | - } |
|
| 2552 | - return false; |
|
| 2550 | + return $term->count; |
|
| 2551 | + } |
|
| 2552 | + return false; |
|
| 2553 | 2553 | |
| 2554 | 2554 | } |
| 2555 | 2555 | |
@@ -2562,17 +2562,17 @@ discard block |
||
| 2562 | 2562 | */ |
| 2563 | 2563 | function geodir_allow_post_type_frontend() |
| 2564 | 2564 | {
|
| 2565 | - $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 2565 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 2566 | 2566 | |
| 2567 | - if (!is_admin() && isset($_REQUEST['listing_type']) |
|
| 2568 | - && !empty($geodir_allow_posttype_frontend) |
|
| 2569 | - && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
| 2570 | - ) {
|
|
| 2567 | + if (!is_admin() && isset($_REQUEST['listing_type']) |
|
| 2568 | + && !empty($geodir_allow_posttype_frontend) |
|
| 2569 | + && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
| 2570 | + ) {
|
|
| 2571 | 2571 | |
| 2572 | - wp_redirect(home_url()); |
|
| 2573 | - exit; |
|
| 2572 | + wp_redirect(home_url()); |
|
| 2573 | + exit; |
|
| 2574 | 2574 | |
| 2575 | - } |
|
| 2575 | + } |
|
| 2576 | 2576 | |
| 2577 | 2577 | } |
| 2578 | 2578 | |
@@ -2589,20 +2589,20 @@ discard block |
||
| 2589 | 2589 | */ |
| 2590 | 2590 | function geodir_excerpt_length($length) |
| 2591 | 2591 | {
|
| 2592 | - global $wp_query, $geodir_is_widget_listing; |
|
| 2592 | + global $wp_query, $geodir_is_widget_listing; |
|
| 2593 | 2593 | if ($geodir_is_widget_listing) {
|
| 2594 | 2594 | return $length; |
| 2595 | 2595 | } |
| 2596 | 2596 | |
| 2597 | - if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2598 | - $length = get_option('geodir_desc_word_limit');
|
|
| 2599 | - elseif (get_query_var('excerpt_length'))
|
|
| 2600 | - $length = get_query_var('excerpt_length');
|
|
| 2597 | + if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2598 | + $length = get_option('geodir_desc_word_limit');
|
|
| 2599 | + elseif (get_query_var('excerpt_length'))
|
|
| 2600 | + $length = get_query_var('excerpt_length');
|
|
| 2601 | 2601 | |
| 2602 | - if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2603 | - $length = get_option('geodir_author_desc_word_limit');
|
|
| 2602 | + if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2603 | + $length = get_option('geodir_author_desc_word_limit');
|
|
| 2604 | 2604 | |
| 2605 | - return $length; |
|
| 2605 | + return $length; |
|
| 2606 | 2606 | } |
| 2607 | 2607 | |
| 2608 | 2608 | /** |
@@ -2617,13 +2617,13 @@ discard block |
||
| 2617 | 2617 | */ |
| 2618 | 2618 | function geodir_excerpt_more($more) |
| 2619 | 2619 | {
|
| 2620 | - global $post; |
|
| 2621 | - $all_postypes = geodir_get_posttypes(); |
|
| 2622 | - if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 2623 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2624 | - } |
|
| 2620 | + global $post; |
|
| 2621 | + $all_postypes = geodir_get_posttypes(); |
|
| 2622 | + if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 2623 | + return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2624 | + } |
|
| 2625 | 2625 | |
| 2626 | - return $more; |
|
| 2626 | + return $more; |
|
| 2627 | 2627 | } |
| 2628 | 2628 | |
| 2629 | 2629 | |
@@ -2640,63 +2640,63 @@ discard block |
||
| 2640 | 2640 | */ |
| 2641 | 2641 | function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy) |
| 2642 | 2642 | {
|
| 2643 | - global $plugin_prefix, $wpdb; |
|
| 2643 | + global $plugin_prefix, $wpdb; |
|
| 2644 | 2644 | |
| 2645 | - $gd_taxonomies = geodir_get_taxonomies(); |
|
| 2645 | + $gd_taxonomies = geodir_get_taxonomies(); |
|
| 2646 | 2646 | |
| 2647 | - if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
|
| 2647 | + if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
|
| 2648 | 2648 | |
| 2649 | - $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
| 2650 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2649 | + $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
| 2650 | + $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2651 | 2651 | |
| 2652 | - $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
| 2653 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2652 | + $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
| 2653 | + $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2654 | 2654 | |
| 2655 | - $posts = $wpdb->get_results( |
|
| 2656 | - $wpdb->prepare( |
|
| 2657 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2658 | - array($term_id, $taxonomy) |
|
| 2659 | - ) |
|
| 2660 | - ); |
|
| 2655 | + $posts = $wpdb->get_results( |
|
| 2656 | + $wpdb->prepare( |
|
| 2657 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2658 | + array($term_id, $taxonomy) |
|
| 2659 | + ) |
|
| 2660 | + ); |
|
| 2661 | 2661 | |
| 2662 | - if (!empty($posts)): |
|
| 2663 | - foreach ($posts as $post_obj) {
|
|
| 2662 | + if (!empty($posts)): |
|
| 2663 | + foreach ($posts as $post_obj) {
|
|
| 2664 | 2664 | |
| 2665 | - $lat = $post_obj->post_latitude; |
|
| 2666 | - $lng = $post_obj->post_longitude; |
|
| 2665 | + $lat = $post_obj->post_latitude; |
|
| 2666 | + $lng = $post_obj->post_longitude; |
|
| 2667 | 2667 | |
| 2668 | - $json = '{';
|
|
| 2669 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2670 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2671 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 2672 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2673 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 2674 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2675 | - $json .= '}'; |
|
| 2668 | + $json = '{';
|
|
| 2669 | + $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2670 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2671 | + $json .= '"long_pos": "' . $lng . '",'; |
|
| 2672 | + $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2673 | + $json .= '"icon":"' . $term_icon . '",'; |
|
| 2674 | + $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2675 | + $json .= '}'; |
|
| 2676 | 2676 | |
| 2677 | - if ($post_obj->default_category == $term_id) {
|
|
| 2677 | + if ($post_obj->default_category == $term_id) {
|
|
| 2678 | 2678 | |
| 2679 | - $wpdb->query( |
|
| 2680 | - $wpdb->prepare( |
|
| 2681 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2682 | - array($json, $post_obj->post_id) |
|
| 2683 | - ) |
|
| 2684 | - ); |
|
| 2685 | - } |
|
| 2679 | + $wpdb->query( |
|
| 2680 | + $wpdb->prepare( |
|
| 2681 | + "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2682 | + array($json, $post_obj->post_id) |
|
| 2683 | + ) |
|
| 2684 | + ); |
|
| 2685 | + } |
|
| 2686 | 2686 | |
| 2687 | - $wpdb->query( |
|
| 2688 | - $wpdb->prepare( |
|
| 2689 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2690 | - array($json, $post_obj->post_id, $term_id) |
|
| 2691 | - ) |
|
| 2692 | - ); |
|
| 2687 | + $wpdb->query( |
|
| 2688 | + $wpdb->prepare( |
|
| 2689 | + "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2690 | + array($json, $post_obj->post_id, $term_id) |
|
| 2691 | + ) |
|
| 2692 | + ); |
|
| 2693 | 2693 | |
| 2694 | - } |
|
| 2694 | + } |
|
| 2695 | 2695 | |
| 2696 | 2696 | |
| 2697 | - endif; |
|
| 2697 | + endif; |
|
| 2698 | 2698 | |
| 2699 | - } |
|
| 2699 | + } |
|
| 2700 | 2700 | |
| 2701 | 2701 | } |
| 2702 | 2702 | |
@@ -2710,14 +2710,14 @@ discard block |
||
| 2710 | 2710 | */ |
| 2711 | 2711 | function geodir_get_listing_author($listing_id = '') |
| 2712 | 2712 | {
|
| 2713 | - if ($listing_id == '') {
|
|
| 2714 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 2715 | - $listing_id = $_REQUEST['pid']; |
|
| 2716 | - } |
|
| 2717 | - } |
|
| 2718 | - $listing = get_post(strip_tags($listing_id)); |
|
| 2719 | - $listing_author_id = $listing->post_author; |
|
| 2720 | - return $listing_author_id; |
|
| 2713 | + if ($listing_id == '') {
|
|
| 2714 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 2715 | + $listing_id = $_REQUEST['pid']; |
|
| 2716 | + } |
|
| 2717 | + } |
|
| 2718 | + $listing = get_post(strip_tags($listing_id)); |
|
| 2719 | + $listing_author_id = $listing->post_author; |
|
| 2720 | + return $listing_author_id; |
|
| 2721 | 2721 | } |
| 2722 | 2722 | |
| 2723 | 2723 | |
@@ -2732,11 +2732,11 @@ discard block |
||
| 2732 | 2732 | */ |
| 2733 | 2733 | function geodir_lisiting_belong_to_user($listing_id, $user_id) |
| 2734 | 2734 | {
|
| 2735 | - $listing_author_id = geodir_get_listing_author($listing_id); |
|
| 2736 | - if ($listing_author_id == $user_id) |
|
| 2737 | - return true; |
|
| 2738 | - else |
|
| 2739 | - return false; |
|
| 2735 | + $listing_author_id = geodir_get_listing_author($listing_id); |
|
| 2736 | + if ($listing_author_id == $user_id) |
|
| 2737 | + return true; |
|
| 2738 | + else |
|
| 2739 | + return false; |
|
| 2740 | 2740 | |
| 2741 | 2741 | } |
| 2742 | 2742 | |
@@ -2752,17 +2752,17 @@ discard block |
||
| 2752 | 2752 | */ |
| 2753 | 2753 | function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true) |
| 2754 | 2754 | {
|
| 2755 | - global $current_user; |
|
| 2756 | - if ($exclude_admin) {
|
|
| 2757 | - foreach ($current_user->caps as $key => $caps) {
|
|
| 2758 | - if (geodir_strtolower($key) == 'administrator') {
|
|
| 2759 | - return true; |
|
| 2760 | - break; |
|
| 2761 | - } |
|
| 2762 | - } |
|
| 2763 | - } |
|
| 2764 | - |
|
| 2765 | - return geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
| 2755 | + global $current_user; |
|
| 2756 | + if ($exclude_admin) {
|
|
| 2757 | + foreach ($current_user->caps as $key => $caps) {
|
|
| 2758 | + if (geodir_strtolower($key) == 'administrator') {
|
|
| 2759 | + return true; |
|
| 2760 | + break; |
|
| 2761 | + } |
|
| 2762 | + } |
|
| 2763 | + } |
|
| 2764 | + |
|
| 2765 | + return geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
| 2766 | 2766 | } |
| 2767 | 2767 | |
| 2768 | 2768 | |
@@ -2778,17 +2778,17 @@ discard block |
||
| 2778 | 2778 | function geodir_only_supportable_attachments_remove($file) |
| 2779 | 2779 | {
|
| 2780 | 2780 | |
| 2781 | - global $wpdb; |
|
| 2781 | + global $wpdb; |
|
| 2782 | 2782 | |
| 2783 | - $matches = array(); |
|
| 2783 | + $matches = array(); |
|
| 2784 | 2784 | |
| 2785 | - $pattern = '/-\d+x\d+\./'; |
|
| 2786 | - preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
| 2785 | + $pattern = '/-\d+x\d+\./'; |
|
| 2786 | + preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
| 2787 | 2787 | |
| 2788 | - if (empty($matches)) |
|
| 2789 | - return ''; |
|
| 2790 | - else |
|
| 2791 | - return $file; |
|
| 2788 | + if (empty($matches)) |
|
| 2789 | + return ''; |
|
| 2790 | + else |
|
| 2791 | + return $file; |
|
| 2792 | 2792 | |
| 2793 | 2793 | } |
| 2794 | 2794 | |
@@ -2805,78 +2805,78 @@ discard block |
||
| 2805 | 2805 | function geodir_set_wp_featured_image($post_id) |
| 2806 | 2806 | {
|
| 2807 | 2807 | |
| 2808 | - global $wpdb, $plugin_prefix; |
|
| 2809 | - $uploads = wp_upload_dir(); |
|
| 2808 | + global $wpdb, $plugin_prefix; |
|
| 2809 | + $uploads = wp_upload_dir(); |
|
| 2810 | 2810 | // print_r($uploads ) ; |
| 2811 | - $post_first_image = $wpdb->get_results( |
|
| 2812 | - $wpdb->prepare( |
|
| 2813 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2814 | - ) |
|
| 2815 | - ); |
|
| 2816 | - |
|
| 2817 | - $old_attachment_name = ''; |
|
| 2818 | - $post_thumbnail_id = ''; |
|
| 2819 | - if (has_post_thumbnail($post_id)) {
|
|
| 2811 | + $post_first_image = $wpdb->get_results( |
|
| 2812 | + $wpdb->prepare( |
|
| 2813 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2814 | + ) |
|
| 2815 | + ); |
|
| 2820 | 2816 | |
| 2821 | - if (has_post_thumbnail($post_id)) {
|
|
| 2817 | + $old_attachment_name = ''; |
|
| 2818 | + $post_thumbnail_id = ''; |
|
| 2819 | + if (has_post_thumbnail($post_id)) {
|
|
| 2822 | 2820 | |
| 2823 | - $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2821 | + if (has_post_thumbnail($post_id)) {
|
|
| 2824 | 2822 | |
| 2825 | - $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
| 2823 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2826 | 2824 | |
| 2827 | - } |
|
| 2828 | - } |
|
| 2825 | + $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
| 2829 | 2826 | |
| 2830 | - if (!empty($post_first_image)) {
|
|
| 2827 | + } |
|
| 2828 | + } |
|
| 2831 | 2829 | |
| 2832 | - $post_type = get_post_type($post_id); |
|
| 2830 | + if (!empty($post_first_image)) {
|
|
| 2833 | 2831 | |
| 2834 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2832 | + $post_type = get_post_type($post_id); |
|
| 2835 | 2833 | |
| 2836 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2834 | + $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2837 | 2835 | |
| 2838 | - $new_attachment_name = basename($post_first_image[0]->file); |
|
| 2836 | + $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2839 | 2837 | |
| 2840 | - if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
|
|
| 2838 | + $new_attachment_name = basename($post_first_image[0]->file); |
|
| 2841 | 2839 | |
| 2842 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
|
|
| 2840 | + if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
|
|
| 2843 | 2841 | |
| 2844 | - add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
|
|
| 2842 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
|
|
| 2845 | 2843 | |
| 2846 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2844 | + add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
|
|
| 2847 | 2845 | |
| 2848 | - } |
|
| 2849 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2846 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2850 | 2847 | |
| 2851 | - $attachment = array( |
|
| 2852 | - 'post_mime_type' => $post_first_image[0]->mime_type, |
|
| 2853 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2854 | - 'post_parent' => $post_id, |
|
| 2855 | - 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
|
| 2856 | - 'post_content' => '' |
|
| 2857 | - ); |
|
| 2848 | + } |
|
| 2849 | + $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2850 | + |
|
| 2851 | + $attachment = array( |
|
| 2852 | + 'post_mime_type' => $post_first_image[0]->mime_type, |
|
| 2853 | + 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2854 | + 'post_parent' => $post_id, |
|
| 2855 | + 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
|
| 2856 | + 'post_content' => '' |
|
| 2857 | + ); |
|
| 2858 | 2858 | |
| 2859 | 2859 | |
| 2860 | - $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
| 2860 | + $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
| 2861 | 2861 | |
| 2862 | - if (!is_wp_error($id)) {
|
|
| 2862 | + if (!is_wp_error($id)) {
|
|
| 2863 | 2863 | |
| 2864 | - set_post_thumbnail($post_id, $id); |
|
| 2864 | + set_post_thumbnail($post_id, $id); |
|
| 2865 | 2865 | |
| 2866 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2867 | - wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
| 2866 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2867 | + wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
| 2868 | 2868 | |
| 2869 | - } |
|
| 2869 | + } |
|
| 2870 | 2870 | |
| 2871 | - } |
|
| 2871 | + } |
|
| 2872 | 2872 | |
| 2873 | - } else {
|
|
| 2874 | - //set_post_thumbnail($post_id,-1); |
|
| 2873 | + } else {
|
|
| 2874 | + //set_post_thumbnail($post_id,-1); |
|
| 2875 | 2875 | |
| 2876 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2877 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2876 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2877 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2878 | 2878 | |
| 2879 | - } |
|
| 2879 | + } |
|
| 2880 | 2880 | } |
| 2881 | 2881 | |
| 2882 | 2882 | |
@@ -2891,53 +2891,53 @@ discard block |
||
| 2891 | 2891 | */ |
| 2892 | 2892 | function gd_copy_original_translation() |
| 2893 | 2893 | {
|
| 2894 | - if (function_exists('icl_object_id')) {
|
|
| 2895 | - global $wpdb, $table_prefix, $plugin_prefix; |
|
| 2896 | - $post_id = absint($_POST['post_id']); |
|
| 2897 | - $upload_dir = wp_upload_dir(); |
|
| 2898 | - $post_type = get_post_type($_POST['post_id']); |
|
| 2899 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2900 | - |
|
| 2901 | - $post_arr = $wpdb->get_results($wpdb->prepare( |
|
| 2902 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2903 | - array($post_id) |
|
| 2904 | - ) |
|
| 2905 | - , ARRAY_A); |
|
| 2906 | - |
|
| 2907 | - $arrImages = $wpdb->get_results( |
|
| 2908 | - $wpdb->prepare( |
|
| 2909 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2910 | - array('%image%', $post_id)
|
|
| 2911 | - ) |
|
| 2912 | - ); |
|
| 2913 | - if ($arrImages) {
|
|
| 2914 | - $image_arr = array(); |
|
| 2915 | - foreach ($arrImages as $img) {
|
|
| 2916 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2917 | - } |
|
| 2918 | - $comma_separated = implode(",", $image_arr);
|
|
| 2919 | - $post_arr[0]['post_images'] = $comma_separated; |
|
| 2920 | - } |
|
| 2921 | - |
|
| 2922 | - |
|
| 2923 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2924 | - $cat_arr = array_filter(explode(",", $cats));
|
|
| 2925 | - $trans_cat = array(); |
|
| 2926 | - foreach ($cat_arr as $cat) {
|
|
| 2927 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2928 | - } |
|
| 2929 | - |
|
| 2930 | - |
|
| 2931 | - $post_arr[0]['categories'] = array_filter($trans_cat); |
|
| 2894 | + if (function_exists('icl_object_id')) {
|
|
| 2895 | + global $wpdb, $table_prefix, $plugin_prefix; |
|
| 2896 | + $post_id = absint($_POST['post_id']); |
|
| 2897 | + $upload_dir = wp_upload_dir(); |
|
| 2898 | + $post_type = get_post_type($_POST['post_id']); |
|
| 2899 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2900 | + |
|
| 2901 | + $post_arr = $wpdb->get_results($wpdb->prepare( |
|
| 2902 | + "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2903 | + array($post_id) |
|
| 2904 | + ) |
|
| 2905 | + , ARRAY_A); |
|
| 2906 | + |
|
| 2907 | + $arrImages = $wpdb->get_results( |
|
| 2908 | + $wpdb->prepare( |
|
| 2909 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2910 | + array('%image%', $post_id)
|
|
| 2911 | + ) |
|
| 2912 | + ); |
|
| 2913 | + if ($arrImages) {
|
|
| 2914 | + $image_arr = array(); |
|
| 2915 | + foreach ($arrImages as $img) {
|
|
| 2916 | + $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2917 | + } |
|
| 2918 | + $comma_separated = implode(",", $image_arr);
|
|
| 2919 | + $post_arr[0]['post_images'] = $comma_separated; |
|
| 2920 | + } |
|
| 2921 | + |
|
| 2922 | + |
|
| 2923 | + $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2924 | + $cat_arr = array_filter(explode(",", $cats));
|
|
| 2925 | + $trans_cat = array(); |
|
| 2926 | + foreach ($cat_arr as $cat) {
|
|
| 2927 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2928 | + } |
|
| 2929 | + |
|
| 2930 | + |
|
| 2931 | + $post_arr[0]['categories'] = array_filter($trans_cat); |
|
| 2932 | 2932 | //print_r($image_arr); |
| 2933 | - //print_r($arrImages); |
|
| 2934 | - //echo $_REQUEST['lang']; |
|
| 2933 | + //print_r($arrImages); |
|
| 2934 | + //echo $_REQUEST['lang']; |
|
| 2935 | 2935 | //print_r($post_arr); |
| 2936 | 2936 | //print_r($trans_cat); |
| 2937 | - echo json_encode($post_arr[0]); |
|
| 2937 | + echo json_encode($post_arr[0]); |
|
| 2938 | 2938 | |
| 2939 | - } |
|
| 2940 | - die(); |
|
| 2939 | + } |
|
| 2940 | + die(); |
|
| 2941 | 2941 | } |
| 2942 | 2942 | |
| 2943 | 2943 | |
@@ -2957,54 +2957,54 @@ discard block |
||
| 2957 | 2957 | function geodir_get_custom_fields_type($listing_type = '') |
| 2958 | 2958 | {
|
| 2959 | 2959 | |
| 2960 | - global $wpdb; |
|
| 2960 | + global $wpdb; |
|
| 2961 | 2961 | |
| 2962 | - if ($listing_type == '') |
|
| 2963 | - $listing_type = 'gd_place'; |
|
| 2962 | + if ($listing_type == '') |
|
| 2963 | + $listing_type = 'gd_place'; |
|
| 2964 | 2964 | |
| 2965 | - $fields_info = array(); |
|
| 2965 | + $fields_info = array(); |
|
| 2966 | 2966 | |
| 2967 | - $get_data = $wpdb->get_results( |
|
| 2968 | - $wpdb->prepare( |
|
| 2969 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2970 | - array($listing_type) |
|
| 2971 | - ) |
|
| 2972 | - ); |
|
| 2967 | + $get_data = $wpdb->get_results( |
|
| 2968 | + $wpdb->prepare( |
|
| 2969 | + "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2970 | + array($listing_type) |
|
| 2971 | + ) |
|
| 2972 | + ); |
|
| 2973 | 2973 | |
| 2974 | - if (!empty($get_data)) {
|
|
| 2974 | + if (!empty($get_data)) {
|
|
| 2975 | 2975 | |
| 2976 | - foreach ($get_data as $data) {
|
|
| 2976 | + foreach ($get_data as $data) {
|
|
| 2977 | 2977 | |
| 2978 | - if ($data->field_type == 'address') {
|
|
| 2978 | + if ($data->field_type == 'address') {
|
|
| 2979 | 2979 | |
| 2980 | - $extra_fields = unserialize($data->extra_fields); |
|
| 2980 | + $extra_fields = unserialize($data->extra_fields); |
|
| 2981 | 2981 | |
| 2982 | - $prefix = $data->htmlvar_name . '_'; |
|
| 2982 | + $prefix = $data->htmlvar_name . '_'; |
|
| 2983 | 2983 | |
| 2984 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2984 | + $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2985 | 2985 | |
| 2986 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2987 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2986 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2987 | + $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2988 | 2988 | |
| 2989 | - } else {
|
|
| 2989 | + } else {
|
|
| 2990 | 2990 | |
| 2991 | - $fields_info[$data->htmlvar_name] = $data->field_type; |
|
| 2991 | + $fields_info[$data->htmlvar_name] = $data->field_type; |
|
| 2992 | 2992 | |
| 2993 | - } |
|
| 2993 | + } |
|
| 2994 | 2994 | |
| 2995 | - } |
|
| 2995 | + } |
|
| 2996 | 2996 | |
| 2997 | - } |
|
| 2997 | + } |
|
| 2998 | 2998 | |
| 2999 | - /** |
|
| 3000 | - * Filter to modify custom fields info using listing post type. |
|
| 3001 | - * |
|
| 3002 | - * @since 1.0.0 |
|
| 3003 | - * @package GeoDirectory |
|
| 3004 | - * @return array $fields_info Custom fields info. |
|
| 3005 | - * @param string $listing_type The listing post type. |
|
| 3006 | - */ |
|
| 3007 | - return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
|
|
| 2999 | + /** |
|
| 3000 | + * Filter to modify custom fields info using listing post type. |
|
| 3001 | + * |
|
| 3002 | + * @since 1.0.0 |
|
| 3003 | + * @package GeoDirectory |
|
| 3004 | + * @return array $fields_info Custom fields info. |
|
| 3005 | + * @param string $listing_type The listing post type. |
|
| 3006 | + */ |
|
| 3007 | + return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
|
|
| 3008 | 3008 | } |
| 3009 | 3009 | |
| 3010 | 3010 | |
@@ -3019,58 +3019,58 @@ discard block |
||
| 3019 | 3019 | */ |
| 3020 | 3020 | function geodir_function_post_updated($post_ID, $post_after, $post_before) |
| 3021 | 3021 | {
|
| 3022 | - $post_type = get_post_type($post_ID); |
|
| 3022 | + $post_type = get_post_type($post_ID); |
|
| 3023 | 3023 | |
| 3024 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
|
|
| 3025 | - // send notification to client when post moves from draft to publish |
|
| 3026 | - 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')) {
|
|
| 3027 | - $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
| 3028 | - $post_author_data = get_userdata($post_author_id); |
|
| 3024 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
|
|
| 3025 | + // send notification to client when post moves from draft to publish |
|
| 3026 | + 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')) {
|
|
| 3027 | + $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
| 3028 | + $post_author_data = get_userdata($post_author_id); |
|
| 3029 | 3029 | |
| 3030 | - $to_name = geodir_get_client_name($post_author_id); |
|
| 3030 | + $to_name = geodir_get_client_name($post_author_id); |
|
| 3031 | 3031 | |
| 3032 | - $from_email = geodir_get_site_email_id(); |
|
| 3033 | - $from_name = get_site_emailName(); |
|
| 3034 | - $to_email = $post_author_data->user_email; |
|
| 3032 | + $from_email = geodir_get_site_email_id(); |
|
| 3033 | + $from_name = get_site_emailName(); |
|
| 3034 | + $to_email = $post_author_data->user_email; |
|
| 3035 | 3035 | |
| 3036 | - if (!is_email($to_email) && !empty($post_author_data->user_email)) {
|
|
| 3037 | - $to_email = $post_author_data->user_email; |
|
| 3038 | - } |
|
| 3036 | + if (!is_email($to_email) && !empty($post_author_data->user_email)) {
|
|
| 3037 | + $to_email = $post_author_data->user_email; |
|
| 3038 | + } |
|
| 3039 | 3039 | |
| 3040 | - $message_type = 'listing_published'; |
|
| 3040 | + $message_type = 'listing_published'; |
|
| 3041 | 3041 | |
| 3042 | - if (get_option('geodir_post_published_email_subject') == '') {
|
|
| 3043 | - update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
|
|
| 3044 | - } |
|
| 3042 | + if (get_option('geodir_post_published_email_subject') == '') {
|
|
| 3043 | + update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
|
|
| 3044 | + } |
|
| 3045 | 3045 | |
| 3046 | - if (get_option('geodir_post_published_email_content') == '') {
|
|
| 3047 | - 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'));
|
|
| 3048 | - } |
|
| 3046 | + if (get_option('geodir_post_published_email_content') == '') {
|
|
| 3047 | + 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'));
|
|
| 3048 | + } |
|
| 3049 | 3049 | |
| 3050 | - /** |
|
| 3051 | - * Called before sending the email when listing gets published. |
|
| 3052 | - * |
|
| 3053 | - * @since 1.0.0 |
|
| 3054 | - * @package GeoDirectory |
|
| 3055 | - * @param object $post_after The post object after update. |
|
| 3056 | - * @param object $post_before The post object before update. |
|
| 3057 | - */ |
|
| 3058 | - do_action('geodir_before_listing_published_email', $post_after, $post_before);
|
|
| 3059 | - if (is_email($to_email)) {
|
|
| 3060 | - geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 3061 | - } |
|
| 3050 | + /** |
|
| 3051 | + * Called before sending the email when listing gets published. |
|
| 3052 | + * |
|
| 3053 | + * @since 1.0.0 |
|
| 3054 | + * @package GeoDirectory |
|
| 3055 | + * @param object $post_after The post object after update. |
|
| 3056 | + * @param object $post_before The post object before update. |
|
| 3057 | + */ |
|
| 3058 | + do_action('geodir_before_listing_published_email', $post_after, $post_before);
|
|
| 3059 | + if (is_email($to_email)) {
|
|
| 3060 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 3061 | + } |
|
| 3062 | 3062 | |
| 3063 | - /** |
|
| 3064 | - * Called after sending the email when listing gets published. |
|
| 3065 | - * |
|
| 3066 | - * @since 1.0.0 |
|
| 3067 | - * @package GeoDirectory |
|
| 3068 | - * @param object $post_after The post object after update. |
|
| 3069 | - * @param object $post_before The post object before update. |
|
| 3070 | - */ |
|
| 3071 | - do_action('geodir_after_listing_published_email', $post_after, $post_before);
|
|
| 3072 | - } |
|
| 3073 | - } |
|
| 3063 | + /** |
|
| 3064 | + * Called after sending the email when listing gets published. |
|
| 3065 | + * |
|
| 3066 | + * @since 1.0.0 |
|
| 3067 | + * @package GeoDirectory |
|
| 3068 | + * @param object $post_after The post object after update. |
|
| 3069 | + * @param object $post_before The post object before update. |
|
| 3070 | + */ |
|
| 3071 | + do_action('geodir_after_listing_published_email', $post_after, $post_before);
|
|
| 3072 | + } |
|
| 3073 | + } |
|
| 3074 | 3074 | } |
| 3075 | 3075 | |
| 3076 | 3076 | add_action('wp_head', 'geodir_fb_like_thumbnail');
|
@@ -3084,14 +3084,14 @@ discard block |
||
| 3084 | 3084 | */ |
| 3085 | 3085 | function geodir_fb_like_thumbnail(){
|
| 3086 | 3086 | |
| 3087 | - // return if not a single post |
|
| 3088 | - if(!is_single()){return;}
|
|
| 3087 | + // return if not a single post |
|
| 3088 | + if(!is_single()){return;}
|
|
| 3089 | 3089 | |
| 3090 | - global $post; |
|
| 3091 | - if(isset($post->featured_image) && $post->featured_image){
|
|
| 3092 | - $upload_dir = wp_upload_dir(); |
|
| 3093 | - $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3094 | - echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
| 3090 | + global $post; |
|
| 3091 | + if(isset($post->featured_image) && $post->featured_image){
|
|
| 3092 | + $upload_dir = wp_upload_dir(); |
|
| 3093 | + $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3094 | + echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
| 3095 | 3095 | |
| 3096 | - } |
|
| 3096 | + } |
|
| 3097 | 3097 | } |
| 3098 | 3098 | \ 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 | |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | |
| 145 | 145 | $gd_post = $post; |
| 146 | 146 | if (!empty($gd_post) && is_array($gd_post)) {
|
| 147 | - $gd_post = (object)$post; |
|
| 147 | + $gd_post = (object) $post; |
|
| 148 | 148 | |
| 149 | 149 | // Fix WPML duplicate. |
| 150 | 150 | if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
|
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | $send_post_submit_mail = false; |
| 239 | 239 | |
| 240 | 240 | // unhook this function so it doesn't loop infinitely |
| 241 | - remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 241 | + remove_action('save_post', 'geodir_post_information_save', 10, 2);
|
|
| 242 | 242 | |
| 243 | 243 | if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
| 244 | 244 | $post['ID'] = $request_info['pid']; |
@@ -262,13 +262,13 @@ discard block |
||
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | // re-hook this function |
| 265 | - add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 265 | + add_action('save_post', 'geodir_post_information_save', 10, 2);
|
|
| 266 | 266 | |
| 267 | 267 | $post_tags = ''; |
| 268 | 268 | if (!isset($request_info['post_tags'])) {
|
| 269 | 269 | |
| 270 | 270 | $post_type = $request_info['listing_type']; |
| 271 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 271 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names')));
|
|
| 272 | 272 | |
| 273 | 273 | } |
| 274 | 274 | |
@@ -286,13 +286,13 @@ discard block |
||
| 286 | 286 | $payment_info = array(); |
| 287 | 287 | $package_info = array(); |
| 288 | 288 | |
| 289 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 289 | + $package_info = (array) geodir_post_package_info($package_info, $post); |
|
| 290 | 290 | |
| 291 | 291 | $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
| 292 | 292 | |
| 293 | 293 | if (!empty($package_info) && !$post_package_id) {
|
| 294 | 294 | if (isset($package_info['days']) && $package_info['days'] != 0) {
|
| 295 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 295 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days"));
|
|
| 296 | 296 | } else {
|
| 297 | 297 | $payment_info['expire_date'] = 'Never'; |
| 298 | 298 | } |
@@ -313,8 +313,8 @@ discard block |
||
| 313 | 313 | $extrafields = $val['extra_fields']; |
| 314 | 314 | |
| 315 | 315 | if (trim($type) == 'address') {
|
| 316 | - $prefix = $name . '_'; |
|
| 317 | - $address = $prefix . 'address'; |
|
| 316 | + $prefix = $name.'_'; |
|
| 317 | + $address = $prefix.'address'; |
|
| 318 | 318 | |
| 319 | 319 | if (isset($request_info[$address]) && $request_info[$address] != '') {
|
| 320 | 320 | $gd_post_info[$address] = wp_slash($request_info[$address]); |
@@ -324,59 +324,59 @@ discard block |
||
| 324 | 324 | $extrafields = unserialize($extrafields); |
| 325 | 325 | |
| 326 | 326 | |
| 327 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 327 | + if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') {
|
|
| 328 | 328 | |
| 329 | 329 | $location_result = geodir_get_default_location(); |
| 330 | 330 | |
| 331 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 332 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 333 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 331 | + $gd_post_info[$prefix.'city'] = $location_result->city; |
|
| 332 | + $gd_post_info[$prefix.'region'] = $location_result->region; |
|
| 333 | + $gd_post_info[$prefix.'country'] = $location_result->country; |
|
| 334 | 334 | |
| 335 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 335 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
| 336 | 336 | |
| 337 | 337 | } else {
|
| 338 | 338 | |
| 339 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 340 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 341 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 339 | + $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city']; |
|
| 340 | + $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region']; |
|
| 341 | + $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country']; |
|
| 342 | 342 | |
| 343 | 343 | //----------set post locations when import dummy data------- |
| 344 | 344 | $location_result = geodir_get_default_location(); |
| 345 | 345 | |
| 346 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 346 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
| 347 | 347 | //----------------------------------------------------------------- |
| 348 | 348 | |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | 351 | |
| 352 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 353 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 352 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) {
|
|
| 353 | + $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip']; |
|
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | |
| 357 | 357 | if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
| 358 | 358 | |
| 359 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 360 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 359 | + if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') {
|
|
| 360 | + $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude']; |
|
| 361 | 361 | } |
| 362 | 362 | |
| 363 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 364 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 363 | + if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') {
|
|
| 364 | + $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude']; |
|
| 365 | 365 | } |
| 366 | 366 | |
| 367 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 368 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 367 | + if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') {
|
|
| 368 | + $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview']; |
|
| 369 | 369 | } |
| 370 | 370 | |
| 371 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 372 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 371 | + if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') {
|
|
| 372 | + $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom']; |
|
| 373 | 373 | } |
| 374 | 374 | |
| 375 | 375 | } |
| 376 | 376 | |
| 377 | 377 | // show lat lng |
| 378 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 379 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 378 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) {
|
|
| 379 | + $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng']; |
|
| 380 | 380 | } |
| 381 | 381 | } |
| 382 | 382 | |
@@ -401,16 +401,16 @@ discard block |
||
| 401 | 401 | |
| 402 | 402 | // check if we need to change the format or not |
| 403 | 403 | $date_format_len = strlen(str_replace(' ', '', $date_format));
|
| 404 | - if($date_format_len>5){// if greater then 5 then it's the old style format.
|
|
| 404 | + if ($date_format_len > 5) {// if greater then 5 then it's the old style format.
|
|
| 405 | 405 | |
| 406 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
|
|
| 407 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format
|
|
| 406 | + $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
|
|
| 407 | + $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
|
|
| 408 | 408 | |
| 409 | 409 | $date_format = str_replace($search, $replace, $date_format); |
| 410 | 410 | |
| 411 | 411 | $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
|
| 412 | 412 | |
| 413 | - }else{
|
|
| 413 | + } else {
|
|
| 414 | 414 | $post_htmlvar_value = $request_info[$name]; |
| 415 | 415 | } |
| 416 | 416 | |
@@ -425,7 +425,7 @@ discard block |
||
| 425 | 425 | if (isset($request_info[$name])) {
|
| 426 | 426 | $gd_post_info[$name] = $request_info[$name]; |
| 427 | 427 | } else {
|
| 428 | - if (isset($request_info['gd_field_' . $name])) {
|
|
| 428 | + if (isset($request_info['gd_field_'.$name])) {
|
|
| 429 | 429 | $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
| 430 | 430 | } |
| 431 | 431 | } |
@@ -485,7 +485,7 @@ discard block |
||
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | if (is_array($post_tags)) {
|
| 488 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 488 | + $taxonomy = $request_info['listing_type'].'_tags'; |
|
| 489 | 489 | wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
| 490 | 490 | } |
| 491 | 491 | |
@@ -497,7 +497,7 @@ discard block |
||
| 497 | 497 | $tmpimgArr = trim($request_info['post_images'], ","); |
| 498 | 498 | $tmpimgArr = explode(",", $tmpimgArr);
|
| 499 | 499 | geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
| 500 | - } else{
|
|
| 500 | + } else {
|
|
| 501 | 501 | geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
| 502 | 502 | } |
| 503 | 503 | |
@@ -578,7 +578,7 @@ discard block |
||
| 578 | 578 | if (!in_array($post_type, $all_postypes)) |
| 579 | 579 | return false; |
| 580 | 580 | |
| 581 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 581 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 582 | 582 | |
| 583 | 583 | /** |
| 584 | 584 | * Apply Filter to change Post info |
@@ -588,7 +588,7 @@ discard block |
||
| 588 | 588 | * @since 1.0.0 |
| 589 | 589 | * @package GeoDirectory |
| 590 | 590 | */ |
| 591 | - $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 591 | + $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd
|
|
| 592 | 592 | WHERE p.ID = pd.post_id |
| 593 | 593 | AND post_id = " . $post_id); |
| 594 | 594 | |
@@ -651,7 +651,7 @@ discard block |
||
| 651 | 651 | |
| 652 | 652 | $post_type = get_post_type($post_id); |
| 653 | 653 | |
| 654 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 654 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 655 | 655 | |
| 656 | 656 | /** |
| 657 | 657 | * Filter to change Post info |
@@ -672,7 +672,7 @@ discard block |
||
| 672 | 672 | |
| 673 | 673 | $columns = $wpdb->get_col("show columns from $table");
|
| 674 | 674 | foreach ($postmeta as $mkey => $mval) {
|
| 675 | - if(in_array($mkey,$columns)) {
|
|
| 675 | + if (in_array($mkey, $columns)) {
|
|
| 676 | 676 | if (is_array($mval)) {
|
| 677 | 677 | $mval = implode(",", $mval);
|
| 678 | 678 | } |
@@ -701,12 +701,12 @@ discard block |
||
| 701 | 701 | */ |
| 702 | 702 | do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
| 703 | 703 | |
| 704 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 704 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 705 | 705 | |
| 706 | 706 | $query_string_array[] = $post_id; |
| 707 | 707 | $wpdb->query( |
| 708 | 708 | $wpdb->prepare( |
| 709 | - "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d", |
|
| 709 | + "UPDATE ".$table." SET ".$query_string_escaped." where post_id =%d", |
|
| 710 | 710 | $query_string_array |
| 711 | 711 | ) |
| 712 | 712 | ); |
@@ -717,7 +717,7 @@ discard block |
||
| 717 | 717 | array_unshift($query_string_array, $post_id); |
| 718 | 718 | $wpdb->query( |
| 719 | 719 | $wpdb->prepare( |
| 720 | - "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped, |
|
| 720 | + "INSERT INTO ".$table." SET post_id = %d,".$query_string_escaped, |
|
| 721 | 721 | $query_string_array |
| 722 | 722 | ) |
| 723 | 723 | ); |
@@ -763,7 +763,7 @@ discard block |
||
| 763 | 763 | |
| 764 | 764 | $post_type = get_post_type($post_id); |
| 765 | 765 | |
| 766 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 766 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 767 | 767 | |
| 768 | 768 | if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
| 769 | 769 | |
@@ -771,11 +771,11 @@ discard block |
||
| 771 | 771 | $meta_value = implode(",", $meta_value);
|
| 772 | 772 | } |
| 773 | 773 | |
| 774 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 774 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 775 | 775 | |
| 776 | 776 | $wpdb->query( |
| 777 | 777 | $wpdb->prepare( |
| 778 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 778 | + "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d", |
|
| 779 | 779 | array($post_id) |
| 780 | 780 | ) |
| 781 | 781 | ); |
@@ -784,7 +784,7 @@ discard block |
||
| 784 | 784 | |
| 785 | 785 | $wpdb->query( |
| 786 | 786 | $wpdb->prepare( |
| 787 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 787 | + "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'", |
|
| 788 | 788 | array($post_id) |
| 789 | 789 | ) |
| 790 | 790 | ); |
@@ -817,14 +817,14 @@ discard block |
||
| 817 | 817 | |
| 818 | 818 | $post_type = get_post_type($post_id); |
| 819 | 819 | |
| 820 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 820 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 821 | 821 | |
| 822 | 822 | if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
| 823 | 823 | $post_meta_set_query = ''; |
| 824 | 824 | |
| 825 | 825 | foreach ($postmeta as $mkey) {
|
| 826 | 826 | if ($mval != '') |
| 827 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 827 | + $post_meta_set_query .= $mkey." = '', "; |
|
| 828 | 828 | } |
| 829 | 829 | |
| 830 | 830 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
@@ -833,11 +833,11 @@ discard block |
||
| 833 | 833 | return false; |
| 834 | 834 | } |
| 835 | 835 | |
| 836 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 836 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
|
|
| 837 | 837 | |
| 838 | 838 | $wpdb->query( |
| 839 | 839 | $wpdb->prepare( |
| 840 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 840 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d", |
|
| 841 | 841 | array($post_id) |
| 842 | 842 | ) |
| 843 | 843 | ); |
@@ -846,11 +846,11 @@ discard block |
||
| 846 | 846 | } |
| 847 | 847 | |
| 848 | 848 | } elseif ($postmeta != '' && $post_id) {
|
| 849 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 849 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
|
|
| 850 | 850 | |
| 851 | 851 | $wpdb->query( |
| 852 | 852 | $wpdb->prepare( |
| 853 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 853 | + "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d", |
|
| 854 | 854 | array($post_id) |
| 855 | 855 | ) |
| 856 | 856 | ); |
@@ -892,10 +892,10 @@ discard block |
||
| 892 | 892 | if (!in_array($post_type, $all_postypes)) |
| 893 | 893 | return false; |
| 894 | 894 | |
| 895 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 895 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 896 | 896 | |
| 897 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 898 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 897 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') {
|
|
| 898 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id)));
|
|
| 899 | 899 | if ($meta_value && $meta_value !== '') {
|
| 900 | 900 | return maybe_serialize($meta_value); |
| 901 | 901 | } else |
@@ -928,13 +928,13 @@ discard block |
||
| 928 | 928 | |
| 929 | 929 | $post_type = get_post_type($post_id); |
| 930 | 930 | |
| 931 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 931 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 932 | 932 | |
| 933 | 933 | $post_images = geodir_get_images($post_id); |
| 934 | 934 | |
| 935 | 935 | $wpdb->query( |
| 936 | 936 | $wpdb->prepare( |
| 937 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 937 | + "UPDATE ".$table." SET featured_image = '' where post_id =%d", |
|
| 938 | 938 | array($post_id) |
| 939 | 939 | ) |
| 940 | 940 | ); |
@@ -964,12 +964,12 @@ discard block |
||
| 964 | 964 | $file_path = ''; |
| 965 | 965 | /* --------- start ------- */ |
| 966 | 966 | |
| 967 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 967 | + $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m]));
|
|
| 968 | 968 | |
| 969 | 969 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
| 970 | 970 | |
| 971 | 971 | |
| 972 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 972 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM ".GEODIR_ATTACHMENT_TABLE." WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 973 | 973 | |
| 974 | 974 | /* --------- end ------- */ |
| 975 | 975 | $curr_img_url = $post_image[$m]; |
@@ -1013,7 +1013,7 @@ discard block |
||
| 1013 | 1013 | // If the uploaded file is the right format |
| 1014 | 1014 | if (in_array($uploaded_file_type, $allowed_file_types)) {
|
| 1015 | 1015 | if (!function_exists('wp_handle_upload')) {
|
| 1016 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1016 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
| 1017 | 1017 | } |
| 1018 | 1018 | |
| 1019 | 1019 | if (!is_dir($geodir_uploadpath)) {
|
@@ -1021,41 +1021,41 @@ discard block |
||
| 1021 | 1021 | } |
| 1022 | 1022 | |
| 1023 | 1023 | $external_img = false; |
| 1024 | - if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
|
|
| 1024 | + if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) {
|
|
| 1025 | 1025 | } else {
|
| 1026 | 1026 | $external_img = true; |
| 1027 | 1027 | } |
| 1028 | 1028 | |
| 1029 | 1029 | if ($dummy || $external_img) {
|
| 1030 | 1030 | $uploaded_file = array(); |
| 1031 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 1031 | + $uploaded = (array) fetch_remote_file($curr_img_url); |
|
| 1032 | 1032 | |
| 1033 | 1033 | if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
| 1034 | 1034 | $new_name = basename($uploaded['file']); |
| 1035 | 1035 | $uploaded_file = $uploaded; |
| 1036 | - }else{
|
|
| 1037 | - print_r($uploaded);exit; |
|
| 1036 | + } else {
|
|
| 1037 | + print_r($uploaded); exit; |
|
| 1038 | 1038 | } |
| 1039 | 1039 | $external_img = false; |
| 1040 | 1040 | } else {
|
| 1041 | - $new_name = $post_id . '_' . $file_name; |
|
| 1041 | + $new_name = $post_id.'_'.$file_name; |
|
| 1042 | 1042 | |
| 1043 | 1043 | if ($curr_img_dir == $sub_dir) {
|
| 1044 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1045 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1044 | + $img_path = $geodir_uploadpath.'/'.$filename; |
|
| 1045 | + $img_url = $geodir_uploadurl.'/'.$filename; |
|
| 1046 | 1046 | } else {
|
| 1047 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1048 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1047 | + $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
| 1048 | + $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename; |
|
| 1049 | 1049 | } |
| 1050 | 1050 | |
| 1051 | 1051 | $uploaded_file = ''; |
| 1052 | 1052 | |
| 1053 | 1053 | if (file_exists($img_path)) {
|
| 1054 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1054 | + $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name); |
|
| 1055 | 1055 | $file_path = ''; |
| 1056 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1056 | + } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) {
|
|
| 1057 | 1057 | $uploaded_file = true; |
| 1058 | - $file_path = $curr_img_dir . '/' . $filename; |
|
| 1058 | + $file_path = $curr_img_dir.'/'.$filename; |
|
| 1059 | 1059 | } |
| 1060 | 1060 | |
| 1061 | 1061 | if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
@@ -1064,14 +1064,14 @@ discard block |
||
| 1064 | 1064 | |
| 1065 | 1065 | if (!empty($uploaded_file)) {
|
| 1066 | 1066 | if (!isset($file_path) || !$file_path) {
|
| 1067 | - $file_path = $sub_dir . '/' . $new_name; |
|
| 1067 | + $file_path = $sub_dir.'/'.$new_name; |
|
| 1068 | 1068 | } |
| 1069 | 1069 | |
| 1070 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1070 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path);
|
|
| 1071 | 1071 | |
| 1072 | 1072 | if ($menu_order == 1) {
|
| 1073 | 1073 | |
| 1074 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1074 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1075 | 1075 | |
| 1076 | 1076 | } |
| 1077 | 1077 | |
@@ -1089,12 +1089,12 @@ discard block |
||
| 1089 | 1089 | |
| 1090 | 1090 | foreach ($attachment as $key => $val) {
|
| 1091 | 1091 | if ($val != '') |
| 1092 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1092 | + $attachment_set .= $key." = '".$val."', "; |
|
| 1093 | 1093 | } |
| 1094 | 1094 | |
| 1095 | 1095 | $attachment_set = trim($attachment_set, ", "); |
| 1096 | 1096 | |
| 1097 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1097 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
|
|
| 1098 | 1098 | |
| 1099 | 1099 | $valid_file_ids[] = $wpdb->insert_id; |
| 1100 | 1100 | } |
@@ -1105,17 +1105,17 @@ discard block |
||
| 1105 | 1105 | } else {
|
| 1106 | 1106 | $valid_file_ids[] = $find_image; |
| 1107 | 1107 | |
| 1108 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1108 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]);
|
|
| 1109 | 1109 | |
| 1110 | 1110 | $wpdb->query( |
| 1111 | 1111 | $wpdb->prepare( |
| 1112 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1112 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1113 | 1113 | array($menu_order, $split_img_path[1], $post_id) |
| 1114 | 1114 | ) |
| 1115 | 1115 | ); |
| 1116 | 1116 | |
| 1117 | 1117 | if ($menu_order == 1) |
| 1118 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1118 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1119 | 1119 | |
| 1120 | 1120 | } |
| 1121 | 1121 | |
@@ -1139,9 +1139,9 @@ discard block |
||
| 1139 | 1139 | |
| 1140 | 1140 | foreach ($post_images as $img) {
|
| 1141 | 1141 | |
| 1142 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1142 | + if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) {
|
|
| 1143 | 1143 | |
| 1144 | - $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1144 | + $invalid_files[] = (object) array('src' => $img->src);
|
|
| 1145 | 1145 | |
| 1146 | 1146 | } |
| 1147 | 1147 | |
@@ -1149,12 +1149,12 @@ discard block |
||
| 1149 | 1149 | |
| 1150 | 1150 | } |
| 1151 | 1151 | |
| 1152 | - $invalid_files = (object)$invalid_files; |
|
| 1152 | + $invalid_files = (object) $invalid_files; |
|
| 1153 | 1153 | } |
| 1154 | 1154 | |
| 1155 | 1155 | $remove_files[] = $post_id; |
| 1156 | 1156 | |
| 1157 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1157 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files));
|
|
| 1158 | 1158 | |
| 1159 | 1159 | if (!empty($invalid_files)) |
| 1160 | 1160 | geodir_remove_attachments($invalid_files); |
@@ -1194,7 +1194,7 @@ discard block |
||
| 1194 | 1194 | rmdir($dirPath); |
| 1195 | 1195 | } */ |
| 1196 | 1196 | |
| 1197 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1197 | + $dirname = $uploads_dir.'/temp_'.$current_user->ID; |
|
| 1198 | 1198 | geodir_delete_directory($dirname); |
| 1199 | 1199 | } |
| 1200 | 1200 | |
@@ -1216,10 +1216,10 @@ discard block |
||
| 1216 | 1216 | return false; |
| 1217 | 1217 | while ($file = readdir($dir_handle)) {
|
| 1218 | 1218 | if ($file != "." && $file != "..") {
|
| 1219 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1220 | - unlink($dirname . "/" . $file); |
|
| 1219 | + if (!is_dir($dirname."/".$file)) |
|
| 1220 | + unlink($dirname."/".$file); |
|
| 1221 | 1221 | else |
| 1222 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1222 | + geodir_delete_directory($dirname.'/'.$file); |
|
| 1223 | 1223 | } |
| 1224 | 1224 | } |
| 1225 | 1225 | closedir($dir_handle); |
@@ -1248,8 +1248,8 @@ discard block |
||
| 1248 | 1248 | foreach ($postcurr_images as $postimg) {
|
| 1249 | 1249 | $image_name_arr = explode('/', $postimg->src);
|
| 1250 | 1250 | $filename = end($image_name_arr); |
| 1251 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1252 | - unlink($uploads_dir . '/' . $filename); |
|
| 1251 | + if (file_exists($uploads_dir.'/'.$filename)) |
|
| 1252 | + unlink($uploads_dir.'/'.$filename); |
|
| 1253 | 1253 | } |
| 1254 | 1254 | |
| 1255 | 1255 | } // endif |
@@ -1290,16 +1290,16 @@ discard block |
||
| 1290 | 1290 | } |
| 1291 | 1291 | |
| 1292 | 1292 | if (!in_array($post_type, geodir_get_posttypes())) {
|
| 1293 | - return false;// if not a GD CPT return; |
|
| 1293 | + return false; // if not a GD CPT return; |
|
| 1294 | 1294 | } |
| 1295 | 1295 | |
| 1296 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1296 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 1297 | 1297 | |
| 1298 | 1298 | if (!$file) {
|
| 1299 | 1299 | if (isset($post->featured_image)) {
|
| 1300 | 1300 | $file = $post->featured_image; |
| 1301 | 1301 | } else {
|
| 1302 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1302 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id)));
|
|
| 1303 | 1303 | } |
| 1304 | 1304 | } |
| 1305 | 1305 | |
@@ -1317,7 +1317,7 @@ discard block |
||
| 1317 | 1317 | |
| 1318 | 1318 | $file_name = $file_info['basename']; |
| 1319 | 1319 | |
| 1320 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1320 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
| 1321 | 1321 | /* |
| 1322 | 1322 | * Allows the filter of image src for such things as CDN change. |
| 1323 | 1323 | * |
@@ -1327,8 +1327,8 @@ discard block |
||
| 1327 | 1327 | * @param string $uploads_url The server upload directory url. |
| 1328 | 1328 | * @param string $uploads_baseurl The uploads dir base url. |
| 1329 | 1329 | */ |
| 1330 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1331 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1330 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
|
|
| 1331 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1332 | 1332 | $width = 0; |
| 1333 | 1333 | $height = 0; |
| 1334 | 1334 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
@@ -1371,7 +1371,7 @@ discard block |
||
| 1371 | 1371 | $file_name = $file_info['basename']; |
| 1372 | 1372 | |
| 1373 | 1373 | $img_arr['src'] = $default_img; |
| 1374 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1374 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1375 | 1375 | |
| 1376 | 1376 | $width = 0; |
| 1377 | 1377 | $height = 0; |
@@ -1388,7 +1388,7 @@ discard block |
||
| 1388 | 1388 | } |
| 1389 | 1389 | |
| 1390 | 1390 | if (!empty($img_arr)) |
| 1391 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1391 | + return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1392 | 1392 | else |
| 1393 | 1393 | return false; |
| 1394 | 1394 | } |
@@ -1451,7 +1451,7 @@ discard block |
||
| 1451 | 1451 | |
| 1452 | 1452 | $arrImages = $wpdb->get_results( |
| 1453 | 1453 | $wpdb->prepare( |
| 1454 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1454 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d".$not_featured." ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1455 | 1455 | array('%image%', $post_id)
|
| 1456 | 1456 | ) |
| 1457 | 1457 | ); |
@@ -1477,7 +1477,7 @@ discard block |
||
| 1477 | 1477 | |
| 1478 | 1478 | $file_name = $file_info['basename']; |
| 1479 | 1479 | |
| 1480 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1480 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
| 1481 | 1481 | /* |
| 1482 | 1482 | * Allows the filter of image src for such things as CDN change. |
| 1483 | 1483 | * |
@@ -1487,8 +1487,8 @@ discard block |
||
| 1487 | 1487 | * @param string $uploads_url The server upload directory url. |
| 1488 | 1488 | * @param string $uploads_baseurl The uploads dir base url. |
| 1489 | 1489 | */ |
| 1490 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1491 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1490 | + $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
|
|
| 1491 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1492 | 1492 | $width = 0; |
| 1493 | 1493 | $height = 0; |
| 1494 | 1494 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
@@ -1505,11 +1505,11 @@ discard block |
||
| 1505 | 1505 | $img_arr['content'] = $attechment->content; // add the description to the array |
| 1506 | 1506 | $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
| 1507 | 1507 | |
| 1508 | - $return_arr[] = (object)$img_arr; |
|
| 1508 | + $return_arr[] = (object) $img_arr; |
|
| 1509 | 1509 | |
| 1510 | 1510 | $counter++; |
| 1511 | 1511 | } |
| 1512 | - return (object)$return_arr; |
|
| 1512 | + return (object) $return_arr; |
|
| 1513 | 1513 | } else if ($no_images) {
|
| 1514 | 1514 | $default_img = ''; |
| 1515 | 1515 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
@@ -1548,7 +1548,7 @@ discard block |
||
| 1548 | 1548 | $img_arr['title'] = $file_info['filename']; // add the title to the array |
| 1549 | 1549 | $img_arr['content'] = $file_info['filename']; // add the description to the array |
| 1550 | 1550 | |
| 1551 | - $return_arr[] = (object)$img_arr; |
|
| 1551 | + $return_arr[] = (object) $img_arr; |
|
| 1552 | 1552 | |
| 1553 | 1553 | return $return_arr; |
| 1554 | 1554 | } else |
@@ -1575,8 +1575,8 @@ discard block |
||
| 1575 | 1575 | |
| 1576 | 1576 | $html = ''; |
| 1577 | 1577 | if (!empty($request)) {
|
| 1578 | - if (!is_object($request)){
|
|
| 1579 | - $request = (object)$request; |
|
| 1578 | + if (!is_object($request)) {
|
|
| 1579 | + $request = (object) $request; |
|
| 1580 | 1580 | } |
| 1581 | 1581 | |
| 1582 | 1582 | if (isset($request->src) && !isset($request->path)) {
|
@@ -1590,7 +1590,7 @@ discard block |
||
| 1590 | 1590 | $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
| 1591 | 1591 | $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
| 1592 | 1592 | if (strpos($img_no_http, $upload_no_http) !== false) {
|
| 1593 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1593 | + $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path); |
|
| 1594 | 1594 | } |
| 1595 | 1595 | |
| 1596 | 1596 | $width = 0; |
@@ -1605,7 +1605,7 @@ discard block |
||
| 1605 | 1605 | $image->width = $width; |
| 1606 | 1606 | $image->height = $height; |
| 1607 | 1607 | |
| 1608 | - $max_size = (object)geodir_get_imagesize($size); |
|
| 1608 | + $max_size = (object) geodir_get_imagesize($size); |
|
| 1609 | 1609 | |
| 1610 | 1610 | if (!is_wp_error($max_size)) {
|
| 1611 | 1611 | if ($image->width) {
|
@@ -1617,15 +1617,15 @@ discard block |
||
| 1617 | 1617 | $width_per = 100; |
| 1618 | 1618 | } |
| 1619 | 1619 | |
| 1620 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1621 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1620 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])) {
|
|
| 1621 | + $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'" /></div>'; |
|
| 1622 | 1622 | } else {
|
| 1623 | - if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
|
|
| 1624 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1625 | - }else{
|
|
| 1623 | + if ($size == 'widget-thumb' || !get_option('geodir_lazy_load', 1)) {
|
|
| 1624 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');"></div>'; |
|
| 1625 | + } else {
|
|
| 1626 | 1626 | //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
| 1627 | 1627 | //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>'; |
| 1628 | - $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
|
|
| 1628 | + $html = '<div data-src="'.str_replace(' ', '%20', $image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
|
|
| 1629 | 1629 | |
| 1630 | 1630 | } |
| 1631 | 1631 | |
@@ -1661,15 +1661,15 @@ discard block |
||
| 1661 | 1661 | |
| 1662 | 1662 | $post_type = get_post_type($post_id); |
| 1663 | 1663 | |
| 1664 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1664 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 1665 | 1665 | |
| 1666 | 1666 | if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
| 1667 | 1667 | |
| 1668 | - if ($taxonomy == $post_type . '_tags') {
|
|
| 1668 | + if ($taxonomy == $post_type.'_tags') {
|
|
| 1669 | 1669 | if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
| 1670 | 1670 | geodir_save_post_meta($post_id, 'post_tags', $terms); |
| 1671 | 1671 | } |
| 1672 | - } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1672 | + } elseif ($taxonomy == $post_type.'category') {
|
|
| 1673 | 1673 | $srcharr = array('"', '\\');
|
| 1674 | 1674 | $replarr = array(""", '');
|
| 1675 | 1675 | |
@@ -1691,7 +1691,7 @@ discard block |
||
| 1691 | 1691 | |
| 1692 | 1692 | $wpdb->get_var( |
| 1693 | 1693 | $wpdb->prepare( |
| 1694 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1694 | + "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1695 | 1695 | $cat_ids_array_del |
| 1696 | 1696 | ) |
| 1697 | 1697 | ); |
@@ -1699,7 +1699,7 @@ discard block |
||
| 1699 | 1699 | |
| 1700 | 1700 | $post_term = $wpdb->get_col( |
| 1701 | 1701 | $wpdb->prepare( |
| 1702 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1702 | + "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1703 | 1703 | $cat_ids_array |
| 1704 | 1704 | ) |
| 1705 | 1705 | ); |
@@ -1721,16 +1721,16 @@ discard block |
||
| 1721 | 1721 | $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
| 1722 | 1722 | $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
| 1723 | 1723 | |
| 1724 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1725 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1724 | + $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1725 | + $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1726 | 1726 | |
| 1727 | 1727 | $json = '{';
|
| 1728 | - $json .= '"id":"' . $post_id . '",'; |
|
| 1729 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1730 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 1731 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1732 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 1733 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1728 | + $json .= '"id":"'.$post_id.'",'; |
|
| 1729 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
| 1730 | + $json .= '"long_pos": "'.$lng.'",'; |
|
| 1731 | + $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",'; |
|
| 1732 | + $json .= '"icon":"'.$term_icon.'",'; |
|
| 1733 | + $json .= '"group":"catgroup'.$cat_id.'"'; |
|
| 1734 | 1734 | $json .= '}'; |
| 1735 | 1735 | |
| 1736 | 1736 | |
@@ -1738,9 +1738,9 @@ discard block |
||
| 1738 | 1738 | $post_marker_json = $json; |
| 1739 | 1739 | |
| 1740 | 1740 | |
| 1741 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1741 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".GEODIR_ICON_TABLE." WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1742 | 1742 | |
| 1743 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1743 | + $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET
|
|
| 1744 | 1744 | post_title = %s, |
| 1745 | 1745 | json = %s |
| 1746 | 1746 | WHERE post_id = %d AND cat_id = %d ", |
@@ -1748,7 +1748,7 @@ discard block |
||
| 1748 | 1748 | |
| 1749 | 1749 | } else {
|
| 1750 | 1750 | |
| 1751 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1751 | + $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET
|
|
| 1752 | 1752 | post_id = %d, |
| 1753 | 1753 | post_title = %s, |
| 1754 | 1754 | cat_id = %d, |
@@ -1766,17 +1766,17 @@ discard block |
||
| 1766 | 1766 | if (!empty($post_term) && is_array($post_term)) {
|
| 1767 | 1767 | $categories = implode(',', $post_term);
|
| 1768 | 1768 | |
| 1769 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1769 | + if ($categories != '' && $categories != 0) $categories = ','.$categories.','; |
|
| 1770 | 1770 | |
| 1771 | 1771 | if (empty($post_marker_json)) |
| 1772 | 1772 | $post_marker_json = isset($json) ? $json : ''; |
| 1773 | 1773 | |
| 1774 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1774 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 1775 | 1775 | |
| 1776 | 1776 | $wpdb->query( |
| 1777 | 1777 | $wpdb->prepare( |
| 1778 | - "UPDATE " . $table . " SET |
|
| 1779 | - " . $taxonomy . " = %s, |
|
| 1778 | + "UPDATE ".$table." SET |
|
| 1779 | + " . $taxonomy." = %s, |
|
| 1780 | 1780 | marker_json = %s |
| 1781 | 1781 | where post_id = %d", |
| 1782 | 1782 | array($categories, $post_marker_json, $post_id) |
@@ -1797,7 +1797,7 @@ discard block |
||
| 1797 | 1797 | |
| 1798 | 1798 | $wpdb->query( |
| 1799 | 1799 | $wpdb->prepare( |
| 1800 | - "UPDATE " . $table . " SET |
|
| 1800 | + "UPDATE ".$table." SET |
|
| 1801 | 1801 | default_category = %s |
| 1802 | 1802 | where post_id = %d", |
| 1803 | 1803 | array($categories[0], $post_id) |
@@ -1822,9 +1822,9 @@ discard block |
||
| 1822 | 1822 | |
| 1823 | 1823 | $wpdb->query( |
| 1824 | 1824 | $wpdb->prepare( |
| 1825 | - "INSERT INTO " . $table . " SET |
|
| 1825 | + "INSERT INTO ".$table." SET |
|
| 1826 | 1826 | post_id = %d, |
| 1827 | - " . $taxonomy . " = %s, |
|
| 1827 | + " . $taxonomy." = %s, |
|
| 1828 | 1828 | marker_json = %s ", |
| 1829 | 1829 | |
| 1830 | 1830 | array($post_id, $categories, $post_marker_json) |
@@ -1950,7 +1950,7 @@ discard block |
||
| 1950 | 1950 | } ?>"><img alt="bubble image" style="max-height:50px;" |
| 1951 | 1951 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1952 | 1952 | <?php |
| 1953 | - }else{
|
|
| 1953 | + } else {
|
|
| 1954 | 1954 | echo '<div class="geodir-bubble_image"></div>'; |
| 1955 | 1955 | } |
| 1956 | 1956 | } else {
|
@@ -1958,7 +1958,7 @@ discard block |
||
| 1958 | 1958 | ?> |
| 1959 | 1959 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1960 | 1960 | <?php |
| 1961 | - }else{
|
|
| 1961 | + } else {
|
|
| 1962 | 1962 | echo '<div class="geodir-bubble_image"></div>'; |
| 1963 | 1963 | } |
| 1964 | 1964 | } |
@@ -1988,7 +1988,7 @@ discard block |
||
| 1988 | 1988 | * @param object $postinfo_obj The posts info as an object. |
| 1989 | 1989 | * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
| 1990 | 1990 | */ |
| 1991 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1991 | + do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview);
|
|
| 1992 | 1992 | ?> |
| 1993 | 1993 | </div> |
| 1994 | 1994 | <?php |
@@ -1998,9 +1998,9 @@ discard block |
||
| 1998 | 1998 | <div class="geodir-bubble-meta-fade"></div> |
| 1999 | 1999 | <div class="geodir-bubble-meta-bottom"> |
| 2000 | 2000 | <?php if ($rating_star != '') { ?>
|
| 2001 | - <span class="geodir-bubble-rating"><?php echo $rating_star;?></span> |
|
| 2001 | + <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span> |
|
| 2002 | 2002 | <?php } ?> |
| 2003 | - <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span> |
|
| 2003 | + <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span> |
|
| 2004 | 2004 | <span class="geodir-bubble-reviews"> |
| 2005 | 2005 | <a href="<?php echo get_comments_link($ID); ?>" class="geodir-pcomments"><i class="fa fa-comments"></i> <?php echo get_comments_number($ID); ?></a> |
| 2006 | 2006 | </span> |
@@ -2062,11 +2062,11 @@ discard block |
||
| 2062 | 2062 | |
| 2063 | 2063 | $post_type = get_post_type($post_id); |
| 2064 | 2064 | |
| 2065 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2065 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2066 | 2066 | |
| 2067 | 2067 | $wpdb->query( |
| 2068 | 2068 | $wpdb->prepare( |
| 2069 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2069 | + "UPDATE ".$table." SET post_status=%s WHERE post_id=%d", |
|
| 2070 | 2070 | array($status, $post_id) |
| 2071 | 2071 | ) |
| 2072 | 2072 | ); |
@@ -2138,18 +2138,18 @@ discard block |
||
| 2138 | 2138 | |
| 2139 | 2139 | $post_type = get_post_type($post_id); |
| 2140 | 2140 | |
| 2141 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2141 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2142 | 2142 | |
| 2143 | 2143 | $wpdb->query( |
| 2144 | 2144 | $wpdb->prepare( |
| 2145 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2145 | + "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2146 | 2146 | array($updatingpost, $temppost) |
| 2147 | 2147 | ) |
| 2148 | 2148 | ); |
| 2149 | 2149 | |
| 2150 | 2150 | $wpdb->query( |
| 2151 | 2151 | $wpdb->prepare( |
| 2152 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2152 | + "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2153 | 2153 | array($updatingpost, $temppost) |
| 2154 | 2154 | ) |
| 2155 | 2155 | ); |
@@ -2158,7 +2158,7 @@ discard block |
||
| 2158 | 2158 | |
| 2159 | 2159 | $wpdb->query( |
| 2160 | 2160 | $wpdb->prepare( |
| 2161 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2161 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2162 | 2162 | array($updatingpost, $temppost) |
| 2163 | 2163 | ) |
| 2164 | 2164 | ); |
@@ -2196,12 +2196,12 @@ discard block |
||
| 2196 | 2196 | if (!in_array($post_type, $all_postypes)) |
| 2197 | 2197 | return false; |
| 2198 | 2198 | |
| 2199 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2199 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2200 | 2200 | |
| 2201 | 2201 | /* Delete custom post meta*/ |
| 2202 | 2202 | $wpdb->query( |
| 2203 | 2203 | $wpdb->prepare( |
| 2204 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2204 | + "DELETE FROM ".$table." WHERE `post_id` = %d", |
|
| 2205 | 2205 | array($deleted_postid) |
| 2206 | 2206 | ) |
| 2207 | 2207 | ); |
@@ -2210,7 +2210,7 @@ discard block |
||
| 2210 | 2210 | |
| 2211 | 2211 | $wpdb->query( |
| 2212 | 2212 | $wpdb->prepare( |
| 2213 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2213 | + "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d", |
|
| 2214 | 2214 | array($deleted_postid) |
| 2215 | 2215 | ) |
| 2216 | 2216 | ); |
@@ -2220,7 +2220,7 @@ discard block |
||
| 2220 | 2220 | |
| 2221 | 2221 | $wpdb->query( |
| 2222 | 2222 | $wpdb->prepare( |
| 2223 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2223 | + "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d", |
|
| 2224 | 2224 | array($deleted_postid) |
| 2225 | 2225 | ) |
| 2226 | 2226 | ); |
@@ -2292,7 +2292,7 @@ discard block |
||
| 2292 | 2292 | */ |
| 2293 | 2293 | do_action('geodir_before_add_from_favorite', $post_id);
|
| 2294 | 2294 | |
| 2295 | - 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>'; |
|
| 2295 | + 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>'; |
|
| 2296 | 2296 | |
| 2297 | 2297 | /** |
| 2298 | 2298 | * Called after adding the post from favourites. |
@@ -2371,7 +2371,7 @@ discard block |
||
| 2371 | 2371 | */ |
| 2372 | 2372 | do_action('geodir_before_remove_from_favorite', $post_id);
|
| 2373 | 2373 | |
| 2374 | - 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>'; |
|
| 2374 | + 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>'; |
|
| 2375 | 2375 | |
| 2376 | 2376 | /** |
| 2377 | 2377 | * Called after removing the post from favourites. |
@@ -2466,24 +2466,24 @@ discard block |
||
| 2466 | 2466 | $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
| 2467 | 2467 | |
| 2468 | 2468 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
| 2469 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2469 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>" ><a |
|
| 2470 | 2470 | class="geodir-removetofav-icon" href="javascript:void(0);" |
| 2471 | - onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
|
| 2472 | - title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
|
| 2471 | + onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');" |
|
| 2472 | + title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?> |
|
| 2473 | 2473 | </a> </span><?php |
| 2474 | 2474 | |
| 2475 | 2475 | } else {
|
| 2476 | 2476 | |
| 2477 | 2477 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
| 2478 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2478 | + $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\''; |
|
| 2479 | 2479 | } else |
| 2480 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2480 | + $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')';
|
|
| 2481 | 2481 | |
| 2482 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2482 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon" |
|
| 2483 | 2483 | href="javascript:void(0);" |
| 2484 | - onclick="<?php echo $script_text;?>" |
|
| 2485 | - title="<?php echo $add_favourite_text;?>"><i |
|
| 2486 | - class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
|
| 2484 | + onclick="<?php echo $script_text; ?>" |
|
| 2485 | + title="<?php echo $add_favourite_text; ?>"><i |
|
| 2486 | + class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span> |
|
| 2487 | 2487 | <?php } |
| 2488 | 2488 | } |
| 2489 | 2489 | } |
@@ -2513,7 +2513,7 @@ discard block |
||
| 2513 | 2513 | |
| 2514 | 2514 | $post_type = $taxonomy_obj->object_type[0]; |
| 2515 | 2515 | |
| 2516 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2516 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2517 | 2517 | |
| 2518 | 2518 | /** |
| 2519 | 2519 | * Filter to modify the 'join' query |
@@ -2536,8 +2536,8 @@ discard block |
||
| 2536 | 2536 | $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
| 2537 | 2537 | |
| 2538 | 2538 | $count_query = "SELECT count(post_id) FROM |
| 2539 | - " . $table . " as pd " . $join . " |
|
| 2540 | - WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
|
| 2539 | + " . $table." as pd ".$join." |
|
| 2540 | + WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where;
|
|
| 2541 | 2541 | |
| 2542 | 2542 | $cat_post_count = $wpdb->get_var($count_query); |
| 2543 | 2543 | if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
@@ -2620,7 +2620,7 @@ discard block |
||
| 2620 | 2620 | global $post; |
| 2621 | 2621 | $all_postypes = geodir_get_posttypes(); |
| 2622 | 2622 | if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
| 2623 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2623 | + return ' <a href="'.get_permalink($post->ID).'">'.READ_MORE_TXT.'</a>'; |
|
| 2624 | 2624 | } |
| 2625 | 2625 | |
| 2626 | 2626 | return $more; |
@@ -2647,14 +2647,14 @@ discard block |
||
| 2647 | 2647 | if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
| 2648 | 2648 | |
| 2649 | 2649 | $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
| 2650 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2650 | + $table = $plugin_prefix.$geodir_post_type.'_detail'; |
|
| 2651 | 2651 | |
| 2652 | 2652 | $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
| 2653 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2653 | + $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png'; |
|
| 2654 | 2654 | |
| 2655 | 2655 | $posts = $wpdb->get_results( |
| 2656 | 2656 | $wpdb->prepare( |
| 2657 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2657 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2658 | 2658 | array($term_id, $taxonomy) |
| 2659 | 2659 | ) |
| 2660 | 2660 | ); |
@@ -2666,19 +2666,19 @@ discard block |
||
| 2666 | 2666 | $lng = $post_obj->post_longitude; |
| 2667 | 2667 | |
| 2668 | 2668 | $json = '{';
|
| 2669 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2670 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2671 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 2672 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2673 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 2674 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2669 | + $json .= '"id":"'.$post_obj->post_id.'",'; |
|
| 2670 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
| 2671 | + $json .= '"long_pos": "'.$lng.'",'; |
|
| 2672 | + $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",'; |
|
| 2673 | + $json .= '"icon":"'.$term_icon.'",'; |
|
| 2674 | + $json .= '"group":"catgroup'.$term_id.'"'; |
|
| 2675 | 2675 | $json .= '}'; |
| 2676 | 2676 | |
| 2677 | 2677 | if ($post_obj->default_category == $term_id) {
|
| 2678 | 2678 | |
| 2679 | 2679 | $wpdb->query( |
| 2680 | 2680 | $wpdb->prepare( |
| 2681 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2681 | + "UPDATE ".$table." SET marker_json = %s where post_id = %d", |
|
| 2682 | 2682 | array($json, $post_obj->post_id) |
| 2683 | 2683 | ) |
| 2684 | 2684 | ); |
@@ -2686,7 +2686,7 @@ discard block |
||
| 2686 | 2686 | |
| 2687 | 2687 | $wpdb->query( |
| 2688 | 2688 | $wpdb->prepare( |
| 2689 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2689 | + "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2690 | 2690 | array($json, $post_obj->post_id, $term_id) |
| 2691 | 2691 | ) |
| 2692 | 2692 | ); |
@@ -2810,7 +2810,7 @@ discard block |
||
| 2810 | 2810 | // print_r($uploads ) ; |
| 2811 | 2811 | $post_first_image = $wpdb->get_results( |
| 2812 | 2812 | $wpdb->prepare( |
| 2813 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2813 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2814 | 2814 | ) |
| 2815 | 2815 | ); |
| 2816 | 2816 | |
@@ -2831,9 +2831,9 @@ discard block |
||
| 2831 | 2831 | |
| 2832 | 2832 | $post_type = get_post_type($post_id); |
| 2833 | 2833 | |
| 2834 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2834 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
| 2835 | 2835 | |
| 2836 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2836 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id);
|
|
| 2837 | 2837 | |
| 2838 | 2838 | $new_attachment_name = basename($post_first_image[0]->file); |
| 2839 | 2839 | |
@@ -2846,11 +2846,11 @@ discard block |
||
| 2846 | 2846 | wp_delete_attachment($post_thumbnail_id); |
| 2847 | 2847 | |
| 2848 | 2848 | } |
| 2849 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2849 | + $filename = $uploads['basedir'].$post_first_image[0]->file; |
|
| 2850 | 2850 | |
| 2851 | 2851 | $attachment = array( |
| 2852 | 2852 | 'post_mime_type' => $post_first_image[0]->mime_type, |
| 2853 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2853 | + 'guid' => $uploads['baseurl'].$post_first_image[0]->file, |
|
| 2854 | 2854 | 'post_parent' => $post_id, |
| 2855 | 2855 | 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
| 2856 | 2856 | 'post_content' => '' |
@@ -2863,7 +2863,7 @@ discard block |
||
| 2863 | 2863 | |
| 2864 | 2864 | set_post_thumbnail($post_id, $id); |
| 2865 | 2865 | |
| 2866 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2866 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 2867 | 2867 | wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
| 2868 | 2868 | |
| 2869 | 2869 | } |
@@ -2896,35 +2896,35 @@ discard block |
||
| 2896 | 2896 | $post_id = absint($_POST['post_id']); |
| 2897 | 2897 | $upload_dir = wp_upload_dir(); |
| 2898 | 2898 | $post_type = get_post_type($_POST['post_id']); |
| 2899 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2899 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2900 | 2900 | |
| 2901 | 2901 | $post_arr = $wpdb->get_results($wpdb->prepare( |
| 2902 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2902 | + "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2903 | 2903 | array($post_id) |
| 2904 | 2904 | ) |
| 2905 | 2905 | , ARRAY_A); |
| 2906 | 2906 | |
| 2907 | 2907 | $arrImages = $wpdb->get_results( |
| 2908 | 2908 | $wpdb->prepare( |
| 2909 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2909 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2910 | 2910 | array('%image%', $post_id)
|
| 2911 | 2911 | ) |
| 2912 | 2912 | ); |
| 2913 | 2913 | if ($arrImages) {
|
| 2914 | 2914 | $image_arr = array(); |
| 2915 | 2915 | foreach ($arrImages as $img) {
|
| 2916 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2916 | + $image_arr[] = $upload_dir['baseurl'].$img->file; |
|
| 2917 | 2917 | } |
| 2918 | 2918 | $comma_separated = implode(",", $image_arr);
|
| 2919 | 2919 | $post_arr[0]['post_images'] = $comma_separated; |
| 2920 | 2920 | } |
| 2921 | 2921 | |
| 2922 | 2922 | |
| 2923 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2923 | + $cats = $post_arr[0][$post_arr[0]['post_type'].'category']; |
|
| 2924 | 2924 | $cat_arr = array_filter(explode(",", $cats));
|
| 2925 | 2925 | $trans_cat = array(); |
| 2926 | 2926 | foreach ($cat_arr as $cat) {
|
| 2927 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2927 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'].'category', false); |
|
| 2928 | 2928 | } |
| 2929 | 2929 | |
| 2930 | 2930 | |
@@ -2966,7 +2966,7 @@ discard block |
||
| 2966 | 2966 | |
| 2967 | 2967 | $get_data = $wpdb->get_results( |
| 2968 | 2968 | $wpdb->prepare( |
| 2969 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2969 | + "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'", |
|
| 2970 | 2970 | array($listing_type) |
| 2971 | 2971 | ) |
| 2972 | 2972 | ); |
@@ -2979,12 +2979,12 @@ discard block |
||
| 2979 | 2979 | |
| 2980 | 2980 | $extra_fields = unserialize($data->extra_fields); |
| 2981 | 2981 | |
| 2982 | - $prefix = $data->htmlvar_name . '_'; |
|
| 2982 | + $prefix = $data->htmlvar_name.'_'; |
|
| 2983 | 2983 | |
| 2984 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2984 | + $fields_info[$prefix.'address'] = $data->field_type; |
|
| 2985 | 2985 | |
| 2986 | 2986 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
| 2987 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2987 | + $fields_info[$prefix.'zip'] = $data->field_type; |
|
| 2988 | 2988 | |
| 2989 | 2989 | } else {
|
| 2990 | 2990 | |
@@ -3082,13 +3082,13 @@ discard block |
||
| 3082 | 3082 | * @since 1.4.9 |
| 3083 | 3083 | * @package GeoDirectory |
| 3084 | 3084 | */ |
| 3085 | -function geodir_fb_like_thumbnail(){
|
|
| 3085 | +function geodir_fb_like_thumbnail() {
|
|
| 3086 | 3086 | |
| 3087 | 3087 | // return if not a single post |
| 3088 | - if(!is_single()){return;}
|
|
| 3088 | + if (!is_single()) {return; }
|
|
| 3089 | 3089 | |
| 3090 | 3090 | global $post; |
| 3091 | - if(isset($post->featured_image) && $post->featured_image){
|
|
| 3091 | + if (isset($post->featured_image) && $post->featured_image) {
|
|
| 3092 | 3092 | $upload_dir = wp_upload_dir(); |
| 3093 | 3093 | $thumb = $upload_dir['baseurl'].$post->featured_image; |
| 3094 | 3094 | echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
@@ -31,13 +31,13 @@ discard block |
||
| 31 | 31 | */ |
| 32 | 32 | function geodir_comment_meta_row_action($a) |
| 33 | 33 | {
|
| 34 | - global $comment; |
|
| 34 | + global $comment; |
|
| 35 | 35 | |
| 36 | - $rating = geodir_get_commentoverall($comment->comment_ID); |
|
| 37 | - if ($rating != 0) {
|
|
| 38 | - echo geodir_get_rating_stars($rating, $comment->comment_ID); |
|
| 39 | - } |
|
| 40 | - return $a; |
|
| 36 | + $rating = geodir_get_commentoverall($comment->comment_ID); |
|
| 37 | + if ($rating != 0) {
|
|
| 38 | + echo geodir_get_rating_stars($rating, $comment->comment_ID); |
|
| 39 | + } |
|
| 40 | + return $a; |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | add_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
|
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | */ |
| 53 | 53 | function geodir_comment_add_meta_box($comment) |
| 54 | 54 | {
|
| 55 | - add_meta_box('gd-comment-rating', __('Comment Rating', 'geodirectory'), 'geodir_comment_rating_meta', 'comment', 'normal', 'high');
|
|
| 55 | + add_meta_box('gd-comment-rating', __('Comment Rating', 'geodirectory'), 'geodir_comment_rating_meta', 'comment', 'normal', 'high');
|
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * @param object $comment The comment object. |
| 67 | 67 | */ |
| 68 | 68 | function geodir_comment_rating_meta($comment) {
|
| 69 | - $post_type = get_post_type($comment->comment_post_ID); |
|
| 69 | + $post_type = get_post_type($comment->comment_post_ID); |
|
| 70 | 70 | if (in_array($post_type, (array)geodir_get_posttypes()) && (int)$comment->comment_parent == 0 && !(!empty($post_type) && geodir_cpt_has_rating_disabled($post_type))) {
|
| 71 | 71 | $rating = geodir_get_commentoverall($comment->comment_ID); |
| 72 | 72 | |
@@ -107,30 +107,30 @@ discard block |
||
| 107 | 107 | */ |
| 108 | 108 | function geodir_comment_rating_fields() |
| 109 | 109 | {
|
| 110 | - global $post; |
|
| 110 | + global $post; |
|
| 111 | 111 | |
| 112 | - $post_types = geodir_get_posttypes(); |
|
| 112 | + $post_types = geodir_get_posttypes(); |
|
| 113 | 113 | |
| 114 | - if (in_array($post->post_type, $post_types)) {
|
|
| 115 | - if (!empty($geodir_post_type) && geodir_cpt_has_rating_disabled($geodir_post_type)) {
|
|
| 116 | - ?> |
|
| 114 | + if (in_array($post->post_type, $post_types)) {
|
|
| 115 | + if (!empty($geodir_post_type) && geodir_cpt_has_rating_disabled($geodir_post_type)) {
|
|
| 116 | + ?> |
|
| 117 | 117 | <input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" /> |
| 118 | 118 | <?php |
| 119 | - } else {
|
|
| 120 | - $star_texts = array(); |
|
| 121 | - $star_texts[] = __('Terrible', 'geodirectory');
|
|
| 122 | - $star_texts[] = __('Poor', 'geodirectory');
|
|
| 123 | - $star_texts[] = __('Average', 'geodirectory');
|
|
| 124 | - $star_texts[] = __('Very Good', 'geodirectory');
|
|
| 125 | - $star_texts[] = __('Excellent', 'geodirectory');
|
|
| 119 | + } else {
|
|
| 120 | + $star_texts = array(); |
|
| 121 | + $star_texts[] = __('Terrible', 'geodirectory');
|
|
| 122 | + $star_texts[] = __('Poor', 'geodirectory');
|
|
| 123 | + $star_texts[] = __('Average', 'geodirectory');
|
|
| 124 | + $star_texts[] = __('Very Good', 'geodirectory');
|
|
| 125 | + $star_texts[] = __('Excellent', 'geodirectory');
|
|
| 126 | 126 | |
| 127 | - $gd_rating_html = apply_filters('gd_rating_form_html', '<div class="gd_rating" data-average="0" data-id="5"></div>', $star_texts);
|
|
| 128 | - echo $gd_rating_html; |
|
| 129 | - ?> |
|
| 127 | + $gd_rating_html = apply_filters('gd_rating_form_html', '<div class="gd_rating" data-average="0" data-id="5"></div>', $star_texts);
|
|
| 128 | + echo $gd_rating_html; |
|
| 129 | + ?> |
|
| 130 | 130 | <input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="0"/> |
| 131 | 131 | <?php |
| 132 | - } |
|
| 133 | - } |
|
| 132 | + } |
|
| 133 | + } |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | add_filter('comment_reply_link', 'geodir_comment_replaylink');
|
@@ -145,9 +145,9 @@ discard block |
||
| 145 | 145 | function geodir_comment_replaylink($link) |
| 146 | 146 | {
|
| 147 | 147 | |
| 148 | - $link = '<div class="gd_comment_replaylink">' . $link . '</div>'; |
|
| 148 | + $link = '<div class="gd_comment_replaylink">' . $link . '</div>'; |
|
| 149 | 149 | |
| 150 | - return $link; |
|
| 150 | + return $link; |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | add_filter('cancel_comment_reply_link', 'geodir_cancle_replaylink');
|
@@ -162,9 +162,9 @@ discard block |
||
| 162 | 162 | function geodir_cancle_replaylink($link) |
| 163 | 163 | {
|
| 164 | 164 | |
| 165 | - $link = '<span class="gd-cancel-replaylink">' . $link . '</span>'; |
|
| 165 | + $link = '<span class="gd-cancel-replaylink">' . $link . '</span>'; |
|
| 166 | 166 | |
| 167 | - return $link; |
|
| 167 | + return $link; |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | add_action('comment_post', 'geodir_save_rating');
|
@@ -180,32 +180,32 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | function geodir_save_rating($comment = 0) |
| 182 | 182 | {
|
| 183 | - global $wpdb, $user_ID, $plugin_prefix; |
|
| 183 | + global $wpdb, $user_ID, $plugin_prefix; |
|
| 184 | 184 | |
| 185 | - $comment_info = get_comment($comment); |
|
| 185 | + $comment_info = get_comment($comment); |
|
| 186 | 186 | |
| 187 | - $post_id = $comment_info->comment_post_ID; |
|
| 188 | - $status = $comment_info->comment_approved; |
|
| 189 | - $rating_ip = getenv("REMOTE_ADDR");
|
|
| 187 | + $post_id = $comment_info->comment_post_ID; |
|
| 188 | + $status = $comment_info->comment_approved; |
|
| 189 | + $rating_ip = getenv("REMOTE_ADDR");
|
|
| 190 | 190 | |
| 191 | - $post = geodir_get_post_info($post_id); |
|
| 192 | - if (empty($post)) {
|
|
| 193 | - return; |
|
| 194 | - } |
|
| 195 | - |
|
| 196 | - if ($post->post_status == 'publish') {
|
|
| 197 | - $post_status = '1'; |
|
| 198 | - } else {
|
|
| 199 | - $post_status = '0'; |
|
| 200 | - } |
|
| 191 | + $post = geodir_get_post_info($post_id); |
|
| 192 | + if (empty($post)) {
|
|
| 193 | + return; |
|
| 194 | + } |
|
| 195 | + |
|
| 196 | + if ($post->post_status == 'publish') {
|
|
| 197 | + $post_status = '1'; |
|
| 198 | + } else {
|
|
| 199 | + $post_status = '0'; |
|
| 200 | + } |
|
| 201 | 201 | |
| 202 | - if (isset($_REQUEST['geodir_overallrating'])) {
|
|
| 203 | - $overall_rating = $_REQUEST['geodir_overallrating']; |
|
| 202 | + if (isset($_REQUEST['geodir_overallrating'])) {
|
|
| 203 | + $overall_rating = $_REQUEST['geodir_overallrating']; |
|
| 204 | 204 | |
| 205 | 205 | if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
|
| 206 | - $overall_rating = $overall_rating > 0 ? $overall_rating : '0'; |
|
| 206 | + $overall_rating = $overall_rating > 0 ? $overall_rating : '0'; |
|
| 207 | 207 | |
| 208 | - $sqlqry = $wpdb->prepare("INSERT INTO " . GEODIR_REVIEW_TABLE . " SET
|
|
| 208 | + $sqlqry = $wpdb->prepare("INSERT INTO " . GEODIR_REVIEW_TABLE . " SET
|
|
| 209 | 209 | post_id = %d, |
| 210 | 210 | post_type = %s, |
| 211 | 211 | post_title = %s, |
@@ -223,35 +223,35 @@ discard block |
||
| 223 | 223 | post_latitude = %s, |
| 224 | 224 | comment_content = %s |
| 225 | 225 | ", |
| 226 | - array($post_id, $post->post_type, $post->post_title, $user_ID, $comment, $rating_ip, $overall_rating, $status, $post_status, date_i18n('Y-m-d H:i:s', current_time('timestamp')), $post->post_city, $post->post_region, $post->post_country, $post->post_latitude, $post->post_longitude, $comment_info->comment_content)
|
|
| 227 | - ); |
|
| 228 | - |
|
| 229 | - $wpdb->query($sqlqry); |
|
| 230 | - |
|
| 231 | - /** |
|
| 232 | - * Called after saving the comment. |
|
| 233 | - * |
|
| 234 | - * @since 1.0.0 |
|
| 235 | - * @package GeoDirectory |
|
| 236 | - * @param array $_REQUEST {
|
|
| 237 | - * Attributes of the $_REQUEST variable. |
|
| 238 | - * |
|
| 239 | - * @type string $geodir_overallrating Overall rating. |
|
| 240 | - * @type string $comment Comment text. |
|
| 241 | - * @type string $submit Submit button text. |
|
| 242 | - * @type string $comment_post_ID Comment post ID. |
|
| 243 | - * @type string $comment_parent Comment Parent ID. |
|
| 244 | - * @type string $_wp_unfiltered_html_comment Unfiltered html comment string. |
|
| 245 | - * |
|
| 246 | - * } |
|
| 247 | - */ |
|
| 248 | - do_action('geodir_after_save_comment', $_REQUEST, 'Comment Your Post');
|
|
| 249 | - |
|
| 250 | - if ($status) {
|
|
| 251 | - geodir_update_postrating($post_id); |
|
| 252 | - } |
|
| 253 | - } |
|
| 254 | - } |
|
| 226 | + array($post_id, $post->post_type, $post->post_title, $user_ID, $comment, $rating_ip, $overall_rating, $status, $post_status, date_i18n('Y-m-d H:i:s', current_time('timestamp')), $post->post_city, $post->post_region, $post->post_country, $post->post_latitude, $post->post_longitude, $comment_info->comment_content)
|
|
| 227 | + ); |
|
| 228 | + |
|
| 229 | + $wpdb->query($sqlqry); |
|
| 230 | + |
|
| 231 | + /** |
|
| 232 | + * Called after saving the comment. |
|
| 233 | + * |
|
| 234 | + * @since 1.0.0 |
|
| 235 | + * @package GeoDirectory |
|
| 236 | + * @param array $_REQUEST {
|
|
| 237 | + * Attributes of the $_REQUEST variable. |
|
| 238 | + * |
|
| 239 | + * @type string $geodir_overallrating Overall rating. |
|
| 240 | + * @type string $comment Comment text. |
|
| 241 | + * @type string $submit Submit button text. |
|
| 242 | + * @type string $comment_post_ID Comment post ID. |
|
| 243 | + * @type string $comment_parent Comment Parent ID. |
|
| 244 | + * @type string $_wp_unfiltered_html_comment Unfiltered html comment string. |
|
| 245 | + * |
|
| 246 | + * } |
|
| 247 | + */ |
|
| 248 | + do_action('geodir_after_save_comment', $_REQUEST, 'Comment Your Post');
|
|
| 249 | + |
|
| 250 | + if ($status) {
|
|
| 251 | + geodir_update_postrating($post_id); |
|
| 252 | + } |
|
| 253 | + } |
|
| 254 | + } |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | |
@@ -269,51 +269,51 @@ discard block |
||
| 269 | 269 | */ |
| 270 | 270 | function geodir_update_rating_status_change($comment_id, $status) |
| 271 | 271 | {
|
| 272 | - if ($status == 'delete') {
|
|
| 273 | - return; |
|
| 274 | - } |
|
| 275 | - global $wpdb, $plugin_prefix, $user_ID; |
|
| 272 | + if ($status == 'delete') {
|
|
| 273 | + return; |
|
| 274 | + } |
|
| 275 | + global $wpdb, $plugin_prefix, $user_ID; |
|
| 276 | 276 | |
| 277 | - $comment_info = get_comment($comment_id); |
|
| 277 | + $comment_info = get_comment($comment_id); |
|
| 278 | 278 | |
| 279 | - $post_id = isset($comment_info->comment_post_ID) ? $comment_info->comment_post_ID : ''; |
|
| 279 | + $post_id = isset($comment_info->comment_post_ID) ? $comment_info->comment_post_ID : ''; |
|
| 280 | 280 | |
| 281 | - if (!empty($comment_info)) |
|
| 282 | - $status = $comment_info->comment_approved; |
|
| 281 | + if (!empty($comment_info)) |
|
| 282 | + $status = $comment_info->comment_approved; |
|
| 283 | 283 | |
| 284 | - if ($status == 'approve' || $status == 1) {
|
|
| 285 | - $status = 1; |
|
| 286 | - } else {
|
|
| 287 | - $status = 0; |
|
| 288 | - } |
|
| 284 | + if ($status == 'approve' || $status == 1) {
|
|
| 285 | + $status = 1; |
|
| 286 | + } else {
|
|
| 287 | + $status = 0; |
|
| 288 | + } |
|
| 289 | 289 | |
| 290 | - $comment_info_ID = isset($comment_info->comment_ID) ? $comment_info->comment_ID : ''; |
|
| 291 | - $old_rating = geodir_get_commentoverall($comment_info_ID); |
|
| 290 | + $comment_info_ID = isset($comment_info->comment_ID) ? $comment_info->comment_ID : ''; |
|
| 291 | + $old_rating = geodir_get_commentoverall($comment_info_ID); |
|
| 292 | 292 | |
| 293 | - $post_type = get_post_type($post_id); |
|
| 293 | + $post_type = get_post_type($post_id); |
|
| 294 | 294 | |
| 295 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 295 | + $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 296 | 296 | |
| 297 | - if ($comment_id) {
|
|
| 297 | + if ($comment_id) {
|
|
| 298 | 298 | |
| 299 | - $overall_rating = $old_rating; |
|
| 299 | + $overall_rating = $old_rating; |
|
| 300 | 300 | |
| 301 | - if (isset($old_rating)) {
|
|
| 301 | + if (isset($old_rating)) {
|
|
| 302 | 302 | |
| 303 | - $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
|
|
| 303 | + $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
|
|
| 304 | 304 | overall_rating = %f, |
| 305 | 305 | status = %s, |
| 306 | 306 | comment_content = %s |
| 307 | 307 | WHERE comment_id = %d ", array($overall_rating, $status, $comment_info->comment_content, $comment_id)); |
| 308 | 308 | |
| 309 | - $wpdb->query($sqlqry); |
|
| 309 | + $wpdb->query($sqlqry); |
|
| 310 | 310 | |
| 311 | - //update rating |
|
| 312 | - geodir_update_postrating($post_id, $post_type); |
|
| 311 | + //update rating |
|
| 312 | + geodir_update_postrating($post_id, $post_type); |
|
| 313 | 313 | |
| 314 | - } |
|
| 314 | + } |
|
| 315 | 315 | |
| 316 | - } |
|
| 316 | + } |
|
| 317 | 317 | |
| 318 | 318 | } |
| 319 | 319 | |
@@ -332,41 +332,41 @@ discard block |
||
| 332 | 332 | function geodir_update_rating($comment_id = 0) |
| 333 | 333 | {
|
| 334 | 334 | |
| 335 | - global $wpdb, $plugin_prefix, $user_ID; |
|
| 335 | + global $wpdb, $plugin_prefix, $user_ID; |
|
| 336 | 336 | |
| 337 | - $comment_info = get_comment($comment_id); |
|
| 337 | + $comment_info = get_comment($comment_id); |
|
| 338 | 338 | |
| 339 | - $post_id = $comment_info->comment_post_ID; |
|
| 340 | - $status = $comment_info->comment_approved; |
|
| 341 | - $old_rating = geodir_get_commentoverall($comment_info->comment_ID); |
|
| 339 | + $post_id = $comment_info->comment_post_ID; |
|
| 340 | + $status = $comment_info->comment_approved; |
|
| 341 | + $old_rating = geodir_get_commentoverall($comment_info->comment_ID); |
|
| 342 | 342 | |
| 343 | - $post_type = get_post_type($post_id); |
|
| 343 | + $post_type = get_post_type($post_id); |
|
| 344 | 344 | |
| 345 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 345 | + $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 346 | 346 | |
| 347 | - if (isset($_REQUEST['geodir_overallrating'])) {
|
|
| 347 | + if (isset($_REQUEST['geodir_overallrating'])) {
|
|
| 348 | 348 | |
| 349 | - $overall_rating = $_REQUEST['geodir_overallrating']; |
|
| 349 | + $overall_rating = $_REQUEST['geodir_overallrating']; |
|
| 350 | 350 | |
| 351 | - if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
|
|
| 352 | - $overall_rating = $overall_rating > 0 ? $overall_rating : '0'; |
|
| 351 | + if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
|
|
| 352 | + $overall_rating = $overall_rating > 0 ? $overall_rating : '0'; |
|
| 353 | 353 | |
| 354 | - if (isset($old_rating)) {
|
|
| 354 | + if (isset($old_rating)) {
|
|
| 355 | 355 | |
| 356 | - $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
|
|
| 356 | + $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
|
|
| 357 | 357 | overall_rating = %f, |
| 358 | 358 | status = %s, |
| 359 | 359 | comment_content = %s |
| 360 | 360 | WHERE comment_id = %d ", array($overall_rating, $status, $comment_info->comment_content, $comment_id)); |
| 361 | 361 | |
| 362 | - $wpdb->query($sqlqry); |
|
| 362 | + $wpdb->query($sqlqry); |
|
| 363 | 363 | |
| 364 | - //update rating |
|
| 365 | - geodir_update_postrating($post_id, $post_type); |
|
| 364 | + //update rating |
|
| 365 | + geodir_update_postrating($post_id, $post_type); |
|
| 366 | 366 | |
| 367 | - } |
|
| 368 | - } |
|
| 369 | - } |
|
| 367 | + } |
|
| 368 | + } |
|
| 369 | + } |
|
| 370 | 370 | |
| 371 | 371 | |
| 372 | 372 | } |
@@ -382,19 +382,19 @@ discard block |
||
| 382 | 382 | */ |
| 383 | 383 | function geodir_comment_delete_comment($comment_id) |
| 384 | 384 | {
|
| 385 | - global $wpdb; |
|
| 385 | + global $wpdb; |
|
| 386 | 386 | |
| 387 | - $review_info = geodir_get_review($comment_id); |
|
| 388 | - if ($review_info) {
|
|
| 389 | - geodir_update_postrating($review_info->post_id); |
|
| 390 | - } |
|
| 387 | + $review_info = geodir_get_review($comment_id); |
|
| 388 | + if ($review_info) {
|
|
| 389 | + geodir_update_postrating($review_info->post_id); |
|
| 390 | + } |
|
| 391 | 391 | |
| 392 | - $wpdb->query( |
|
| 393 | - $wpdb->prepare( |
|
| 394 | - "DELETE FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d", |
|
| 395 | - array($comment_id) |
|
| 396 | - ) |
|
| 397 | - ); |
|
| 392 | + $wpdb->query( |
|
| 393 | + $wpdb->prepare( |
|
| 394 | + "DELETE FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d", |
|
| 395 | + array($comment_id) |
|
| 396 | + ) |
|
| 397 | + ); |
|
| 398 | 398 | |
| 399 | 399 | } |
| 400 | 400 | |
@@ -410,21 +410,21 @@ discard block |
||
| 410 | 410 | * @return string The comment content. |
| 411 | 411 | */ |
| 412 | 412 | function geodir_wrap_comment_text($content, $comment = '') {
|
| 413 | - if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int)$comment->comment_post_ID)) {
|
|
| 414 | - if (!is_admin()) {
|
|
| 415 | - return '<div class="description">' . $content . '</div>'; |
|
| 416 | - } else {
|
|
| 417 | - return $content; |
|
| 418 | - } |
|
| 419 | - } else {
|
|
| 420 | - $rating = 0; |
|
| 421 | - if (!empty($comment)) |
|
| 422 | - $rating = geodir_get_commentoverall($comment->comment_ID); |
|
| 423 | - if ($rating != 0 && !is_admin()) {
|
|
| 424 | - return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>';
|
|
| 425 | - } else |
|
| 426 | - return $content; |
|
| 427 | - } |
|
| 413 | + if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int)$comment->comment_post_ID)) {
|
|
| 414 | + if (!is_admin()) {
|
|
| 415 | + return '<div class="description">' . $content . '</div>'; |
|
| 416 | + } else {
|
|
| 417 | + return $content; |
|
| 418 | + } |
|
| 419 | + } else {
|
|
| 420 | + $rating = 0; |
|
| 421 | + if (!empty($comment)) |
|
| 422 | + $rating = geodir_get_commentoverall($comment->comment_ID); |
|
| 423 | + if ($rating != 0 && !is_admin()) {
|
|
| 424 | + return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>';
|
|
| 425 | + } else |
|
| 426 | + return $content; |
|
| 427 | + } |
|
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | |
@@ -441,41 +441,41 @@ discard block |
||
| 441 | 441 | */ |
| 442 | 442 | function geodir_update_postrating($post_id = 0, $post_type = '', $delete = false) |
| 443 | 443 | {
|
| 444 | - global $wpdb, $plugin_prefix, $comment; |
|
| 445 | - if (!$post_type) {
|
|
| 446 | - $post_type = get_post_type($post_id); |
|
| 447 | - } |
|
| 448 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 449 | - $post_newrating = geodir_get_post_rating($post_id, 1); |
|
| 450 | - $post_newrating_count = geodir_get_review_count_total($post_id); |
|
| 444 | + global $wpdb, $plugin_prefix, $comment; |
|
| 445 | + if (!$post_type) {
|
|
| 446 | + $post_type = get_post_type($post_id); |
|
| 447 | + } |
|
| 448 | + $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 449 | + $post_newrating = geodir_get_post_rating($post_id, 1); |
|
| 450 | + $post_newrating_count = geodir_get_review_count_total($post_id); |
|
| 451 | 451 | |
| 452 | 452 | |
| 453 | - //$post_newrating = ( (float)$post_oldrating - (float)$old_rating ) + (float)$overall_rating ; |
|
| 453 | + //$post_newrating = ( (float)$post_oldrating - (float)$old_rating ) + (float)$overall_rating ; |
|
| 454 | 454 | |
| 455 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
|
|
| 455 | + if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
|
|
| 456 | 456 | |
| 457 | - $wpdb->query( |
|
| 458 | - $wpdb->prepare( |
|
| 459 | - "UPDATE " . $detail_table . " SET |
|
| 457 | + $wpdb->query( |
|
| 458 | + $wpdb->prepare( |
|
| 459 | + "UPDATE " . $detail_table . " SET |
|
| 460 | 460 | overall_rating = %f, |
| 461 | 461 | rating_count = %f |
| 462 | 462 | where post_id = %d", |
| 463 | - array($post_newrating, $post_newrating_count, $post_id) |
|
| 464 | - ) |
|
| 465 | - ); |
|
| 466 | - |
|
| 467 | - update_post_meta($post_id, 'overall_rating', $post_newrating); |
|
| 468 | - update_post_meta($post_id, 'rating_count', $post_newrating_count); |
|
| 469 | - } |
|
| 470 | - /** |
|
| 471 | - * Called after Updating post overall rating and rating count. |
|
| 472 | - * |
|
| 473 | - * @since 1.0.0 |
|
| 474 | - * @since 1.4.3 Added `$post_id` param. |
|
| 475 | - * @package GeoDirectory |
|
| 476 | - * @param int $post_id The post ID. |
|
| 477 | - */ |
|
| 478 | - do_action('geodir_update_postrating',$post_id);
|
|
| 463 | + array($post_newrating, $post_newrating_count, $post_id) |
|
| 464 | + ) |
|
| 465 | + ); |
|
| 466 | + |
|
| 467 | + update_post_meta($post_id, 'overall_rating', $post_newrating); |
|
| 468 | + update_post_meta($post_id, 'rating_count', $post_newrating_count); |
|
| 469 | + } |
|
| 470 | + /** |
|
| 471 | + * Called after Updating post overall rating and rating count. |
|
| 472 | + * |
|
| 473 | + * @since 1.0.0 |
|
| 474 | + * @since 1.4.3 Added `$post_id` param. |
|
| 475 | + * @package GeoDirectory |
|
| 476 | + * @param int $post_id The post ID. |
|
| 477 | + */ |
|
| 478 | + do_action('geodir_update_postrating',$post_id);
|
|
| 479 | 479 | |
| 480 | 480 | } |
| 481 | 481 | |
@@ -493,29 +493,29 @@ discard block |
||
| 493 | 493 | */ |
| 494 | 494 | function geodir_get_postoverall($post_id = 0) |
| 495 | 495 | {
|
| 496 | - global $wpdb, $plugin_prefix; |
|
| 496 | + global $wpdb, $plugin_prefix; |
|
| 497 | 497 | |
| 498 | - $post_type = get_post_type($post_id); |
|
| 499 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 498 | + $post_type = get_post_type($post_id); |
|
| 499 | + $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 500 | 500 | |
| 501 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
|
|
| 501 | + if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
|
|
| 502 | 502 | |
| 503 | - $post_ratings = $wpdb->get_var( |
|
| 504 | - $wpdb->prepare( |
|
| 505 | - "SELECT overall_rating FROM " . $detail_table . " WHERE post_id = %d", |
|
| 506 | - array($post_id) |
|
| 507 | - ) |
|
| 508 | - ); |
|
| 503 | + $post_ratings = $wpdb->get_var( |
|
| 504 | + $wpdb->prepare( |
|
| 505 | + "SELECT overall_rating FROM " . $detail_table . " WHERE post_id = %d", |
|
| 506 | + array($post_id) |
|
| 507 | + ) |
|
| 508 | + ); |
|
| 509 | 509 | |
| 510 | 510 | |
| 511 | - } else {
|
|
| 512 | - $post_ratings = get_post_meta($post_id, 'overall_rating'); |
|
| 513 | - } |
|
| 511 | + } else {
|
|
| 512 | + $post_ratings = get_post_meta($post_id, 'overall_rating'); |
|
| 513 | + } |
|
| 514 | 514 | |
| 515 | - if ($post_ratings) |
|
| 516 | - return $post_ratings; |
|
| 517 | - else |
|
| 518 | - return false; |
|
| 515 | + if ($post_ratings) |
|
| 516 | + return $post_ratings; |
|
| 517 | + else |
|
| 518 | + return false; |
|
| 519 | 519 | } |
| 520 | 520 | |
| 521 | 521 | |
@@ -532,19 +532,19 @@ discard block |
||
| 532 | 532 | */ |
| 533 | 533 | function geodir_get_review($comment_id = 0) |
| 534 | 534 | {
|
| 535 | - global $wpdb; |
|
| 536 | - |
|
| 537 | - $reatings = $wpdb->get_row( |
|
| 538 | - $wpdb->prepare( |
|
| 539 | - "SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d", |
|
| 540 | - array($comment_id) |
|
| 541 | - ) |
|
| 542 | - ); |
|
| 543 | - |
|
| 544 | - if (!empty($reatings)) |
|
| 545 | - return $reatings; |
|
| 546 | - else |
|
| 547 | - return false; |
|
| 535 | + global $wpdb; |
|
| 536 | + |
|
| 537 | + $reatings = $wpdb->get_row( |
|
| 538 | + $wpdb->prepare( |
|
| 539 | + "SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d", |
|
| 540 | + array($comment_id) |
|
| 541 | + ) |
|
| 542 | + ); |
|
| 543 | + |
|
| 544 | + if (!empty($reatings)) |
|
| 545 | + return $reatings; |
|
| 546 | + else |
|
| 547 | + return false; |
|
| 548 | 548 | } |
| 549 | 549 | |
| 550 | 550 | /** |
@@ -560,19 +560,19 @@ discard block |
||
| 560 | 560 | */ |
| 561 | 561 | function geodir_get_review_total($post_id = 0) |
| 562 | 562 | {
|
| 563 | - global $wpdb; |
|
| 564 | - |
|
| 565 | - $results = $wpdb->get_var( |
|
| 566 | - $wpdb->prepare( |
|
| 567 | - "SELECT SUM(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 568 | - array($post_id) |
|
| 569 | - ) |
|
| 570 | - ); |
|
| 571 | - |
|
| 572 | - if (!empty($results)) |
|
| 573 | - return $results; |
|
| 574 | - else |
|
| 575 | - return false; |
|
| 563 | + global $wpdb; |
|
| 564 | + |
|
| 565 | + $results = $wpdb->get_var( |
|
| 566 | + $wpdb->prepare( |
|
| 567 | + "SELECT SUM(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 568 | + array($post_id) |
|
| 569 | + ) |
|
| 570 | + ); |
|
| 571 | + |
|
| 572 | + if (!empty($results)) |
|
| 573 | + return $results; |
|
| 574 | + else |
|
| 575 | + return false; |
|
| 576 | 576 | } |
| 577 | 577 | |
| 578 | 578 | /** |
@@ -588,18 +588,18 @@ discard block |
||
| 588 | 588 | */ |
| 589 | 589 | function geodir_get_review_count_by_user_id($user_id = 0) |
| 590 | 590 | {
|
| 591 | - global $wpdb; |
|
| 592 | - $results = $wpdb->get_var( |
|
| 593 | - $wpdb->prepare( |
|
| 594 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE user_id = %d AND status=1 AND overall_rating>0", |
|
| 595 | - array($user_id) |
|
| 596 | - ) |
|
| 597 | - ); |
|
| 598 | - |
|
| 599 | - if (!empty($results)) |
|
| 600 | - return $results; |
|
| 601 | - else |
|
| 602 | - return false; |
|
| 591 | + global $wpdb; |
|
| 592 | + $results = $wpdb->get_var( |
|
| 593 | + $wpdb->prepare( |
|
| 594 | + "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE user_id = %d AND status=1 AND overall_rating>0", |
|
| 595 | + array($user_id) |
|
| 596 | + ) |
|
| 597 | + ); |
|
| 598 | + |
|
| 599 | + if (!empty($results)) |
|
| 600 | + return $results; |
|
| 601 | + else |
|
| 602 | + return false; |
|
| 603 | 603 | } |
| 604 | 604 | |
| 605 | 605 | /** |
@@ -617,27 +617,27 @@ discard block |
||
| 617 | 617 | */ |
| 618 | 618 | function geodir_get_post_rating($post_id = 0, $force_query = 0) |
| 619 | 619 | {
|
| 620 | - global $wpdb, $post; |
|
| 621 | - |
|
| 622 | - if (isset($post->ID) && $post->ID == $post_id && !$force_query) {
|
|
| 623 | - if (isset($post->rating_count) && $post->rating_count > 0 && isset($post->overall_rating) && $post->overall_rating > 0) {
|
|
| 624 | - return $post->overall_rating; |
|
| 625 | - } else {
|
|
| 626 | - return 0; |
|
| 627 | - } |
|
| 628 | - } |
|
| 629 | - |
|
| 630 | - $results = $wpdb->get_var( |
|
| 631 | - $wpdb->prepare( |
|
| 632 | - "SELECT COALESCE(avg(overall_rating),0) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 633 | - array($post_id) |
|
| 634 | - ) |
|
| 635 | - ); |
|
| 636 | - |
|
| 637 | - if (!empty($results)) |
|
| 638 | - return $results; |
|
| 639 | - else |
|
| 640 | - return false; |
|
| 620 | + global $wpdb, $post; |
|
| 621 | + |
|
| 622 | + if (isset($post->ID) && $post->ID == $post_id && !$force_query) {
|
|
| 623 | + if (isset($post->rating_count) && $post->rating_count > 0 && isset($post->overall_rating) && $post->overall_rating > 0) {
|
|
| 624 | + return $post->overall_rating; |
|
| 625 | + } else {
|
|
| 626 | + return 0; |
|
| 627 | + } |
|
| 628 | + } |
|
| 629 | + |
|
| 630 | + $results = $wpdb->get_var( |
|
| 631 | + $wpdb->prepare( |
|
| 632 | + "SELECT COALESCE(avg(overall_rating),0) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 633 | + array($post_id) |
|
| 634 | + ) |
|
| 635 | + ); |
|
| 636 | + |
|
| 637 | + if (!empty($results)) |
|
| 638 | + return $results; |
|
| 639 | + else |
|
| 640 | + return false; |
|
| 641 | 641 | } |
| 642 | 642 | |
| 643 | 643 | /** |
@@ -653,19 +653,19 @@ discard block |
||
| 653 | 653 | */ |
| 654 | 654 | function geodir_get_review_count_total($post_id = 0) |
| 655 | 655 | {
|
| 656 | - global $wpdb; |
|
| 657 | - |
|
| 658 | - $results = $wpdb->get_var( |
|
| 659 | - $wpdb->prepare( |
|
| 660 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 661 | - array($post_id) |
|
| 662 | - ) |
|
| 663 | - ); |
|
| 664 | - |
|
| 665 | - if (!empty($results)) |
|
| 666 | - return $results; |
|
| 667 | - else |
|
| 668 | - return false; |
|
| 656 | + global $wpdb; |
|
| 657 | + |
|
| 658 | + $results = $wpdb->get_var( |
|
| 659 | + $wpdb->prepare( |
|
| 660 | + "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 661 | + array($post_id) |
|
| 662 | + ) |
|
| 663 | + ); |
|
| 664 | + |
|
| 665 | + if (!empty($results)) |
|
| 666 | + return $results; |
|
| 667 | + else |
|
| 668 | + return false; |
|
| 669 | 669 | } |
| 670 | 670 | |
| 671 | 671 | /** |
@@ -682,20 +682,20 @@ discard block |
||
| 682 | 682 | */ |
| 683 | 683 | function geodir_get_comments_number($post_id = 0) |
| 684 | 684 | {
|
| 685 | - global $wpdb; |
|
| 685 | + global $wpdb; |
|
| 686 | 686 | |
| 687 | - $results = $wpdb->get_var( |
|
| 688 | - $wpdb->prepare( |
|
| 689 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 690 | - array($post_id) |
|
| 691 | - ) |
|
| 692 | - ); |
|
| 687 | + $results = $wpdb->get_var( |
|
| 688 | + $wpdb->prepare( |
|
| 689 | + "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 690 | + array($post_id) |
|
| 691 | + ) |
|
| 692 | + ); |
|
| 693 | 693 | |
| 694 | 694 | |
| 695 | - if (!empty($results)) |
|
| 696 | - return $results; |
|
| 697 | - else |
|
| 698 | - return false; |
|
| 695 | + if (!empty($results)) |
|
| 696 | + return $results; |
|
| 697 | + else |
|
| 698 | + return false; |
|
| 699 | 699 | } |
| 700 | 700 | |
| 701 | 701 | /** |
@@ -711,19 +711,19 @@ discard block |
||
| 711 | 711 | */ |
| 712 | 712 | function geodir_get_commentoverall($comment_id = 0) |
| 713 | 713 | {
|
| 714 | - global $wpdb; |
|
| 715 | - |
|
| 716 | - $reatings = $wpdb->get_var( |
|
| 717 | - $wpdb->prepare( |
|
| 718 | - "SELECT overall_rating FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d", |
|
| 719 | - array($comment_id) |
|
| 720 | - ) |
|
| 721 | - ); |
|
| 722 | - |
|
| 723 | - if ($reatings) |
|
| 724 | - return $reatings; |
|
| 725 | - else |
|
| 726 | - return false; |
|
| 714 | + global $wpdb; |
|
| 715 | + |
|
| 716 | + $reatings = $wpdb->get_var( |
|
| 717 | + $wpdb->prepare( |
|
| 718 | + "SELECT overall_rating FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d", |
|
| 719 | + array($comment_id) |
|
| 720 | + ) |
|
| 721 | + ); |
|
| 722 | + |
|
| 723 | + if ($reatings) |
|
| 724 | + return $reatings; |
|
| 725 | + else |
|
| 726 | + return false; |
|
| 727 | 727 | } |
| 728 | 728 | |
| 729 | 729 | /** |
@@ -737,7 +737,7 @@ discard block |
||
| 737 | 737 | */ |
| 738 | 738 | function geodir_get_commentoverall_number($post_id = 0) |
| 739 | 739 | {
|
| 740 | - return geodir_get_post_rating($post_id); |
|
| 740 | + return geodir_get_post_rating($post_id); |
|
| 741 | 741 | } |
| 742 | 742 | |
| 743 | 743 | |
@@ -755,98 +755,98 @@ discard block |
||
| 755 | 755 | */ |
| 756 | 756 | function geodir_comment_template($comment_template) |
| 757 | 757 | {
|
| 758 | - global $post; |
|
| 759 | - |
|
| 760 | - $post_types = geodir_get_posttypes(); |
|
| 761 | - |
|
| 762 | - if (!(is_singular() && (have_comments() || (isset($post->comment_status) && 'open' == $post->comment_status)))) {
|
|
| 763 | - return; |
|
| 764 | - } |
|
| 765 | - if (in_array($post->post_type, $post_types)) { // assuming there is a post type called business
|
|
| 766 | - $template = locate_template(array("geodirectory/reviews.php")); // Use theme template if available
|
|
| 767 | - if (!$template) {
|
|
| 768 | - $template = dirname(__FILE__) . '/reviews.php'; |
|
| 769 | - } |
|
| 770 | - return $template; |
|
| 771 | - } |
|
| 758 | + global $post; |
|
| 759 | + |
|
| 760 | + $post_types = geodir_get_posttypes(); |
|
| 761 | + |
|
| 762 | + if (!(is_singular() && (have_comments() || (isset($post->comment_status) && 'open' == $post->comment_status)))) {
|
|
| 763 | + return; |
|
| 764 | + } |
|
| 765 | + if (in_array($post->post_type, $post_types)) { // assuming there is a post type called business
|
|
| 766 | + $template = locate_template(array("geodirectory/reviews.php")); // Use theme template if available
|
|
| 767 | + if (!$template) {
|
|
| 768 | + $template = dirname(__FILE__) . '/reviews.php'; |
|
| 769 | + } |
|
| 770 | + return $template; |
|
| 771 | + } |
|
| 772 | 772 | } |
| 773 | 773 | |
| 774 | 774 | add_filter("comments_template", "geodir_comment_template");
|
| 775 | 775 | |
| 776 | 776 | |
| 777 | 777 | if (!function_exists('geodir_comment')) {
|
| 778 | - /** |
|
| 779 | - * Comment HTML markup. |
|
| 780 | - * |
|
| 781 | - * @since 1.0.0 |
|
| 782 | - * @package GeoDirectory |
|
| 783 | - * @global object $post The current post object. |
|
| 784 | - * @param object $comment The comment object. |
|
| 785 | - * @param string|array $args {
|
|
| 786 | - * Optional. Formatting options. |
|
| 787 | - * |
|
| 788 | - * @type object $walker Instance of a Walker class to list comments. Default null. |
|
| 789 | - * @type int $max_depth The maximum comments depth. Default empty. |
|
| 790 | - * @type string $style The style of list ordering. Default 'ul'. Accepts 'ul', 'ol'. |
|
| 791 | - * @type string $callback Callback function to use. Default null. |
|
| 792 | - * @type string $end-callback Callback function to use at the end. Default null. |
|
| 793 | - * @type string $type Type of comments to list. |
|
| 794 | - * Default 'all'. Accepts 'all', 'comment', 'pingback', 'trackback', 'pings'. |
|
| 795 | - * @type int $page Page ID to list comments for. Default empty. |
|
| 796 | - * @type int $per_page Number of comments to list per page. Default empty. |
|
| 797 | - * @type int $avatar_size Height and width dimensions of the avatar size. Default 32. |
|
| 798 | - * @type string $reverse_top_level Ordering of the listed comments. Default null. Accepts 'desc', 'asc'. |
|
| 799 | - * @type bool $reverse_children Whether to reverse child comments in the list. Default null. |
|
| 800 | - * @type string $format How to format the comments list. |
|
| 801 | - * Default 'html5' if the theme supports it. Accepts 'html5', 'xhtml'. |
|
| 802 | - * @type bool $short_ping Whether to output short pings. Default false. |
|
| 803 | - * @type bool $echo Whether to echo the output or return it. Default true. |
|
| 804 | - * } |
|
| 805 | - * @param int $depth Depth of comment. |
|
| 806 | - */ |
|
| 807 | - function geodir_comment($comment, $args, $depth) |
|
| 808 | - {
|
|
| 809 | - $GLOBALS['comment'] = $comment; |
|
| 810 | - switch ($comment->comment_type) : |
|
| 811 | - case 'pingback' : |
|
| 812 | - case 'trackback' : |
|
| 813 | - // Display trackbacks differently than normal comments. |
|
| 814 | - ?> |
|
| 778 | + /** |
|
| 779 | + * Comment HTML markup. |
|
| 780 | + * |
|
| 781 | + * @since 1.0.0 |
|
| 782 | + * @package GeoDirectory |
|
| 783 | + * @global object $post The current post object. |
|
| 784 | + * @param object $comment The comment object. |
|
| 785 | + * @param string|array $args {
|
|
| 786 | + * Optional. Formatting options. |
|
| 787 | + * |
|
| 788 | + * @type object $walker Instance of a Walker class to list comments. Default null. |
|
| 789 | + * @type int $max_depth The maximum comments depth. Default empty. |
|
| 790 | + * @type string $style The style of list ordering. Default 'ul'. Accepts 'ul', 'ol'. |
|
| 791 | + * @type string $callback Callback function to use. Default null. |
|
| 792 | + * @type string $end-callback Callback function to use at the end. Default null. |
|
| 793 | + * @type string $type Type of comments to list. |
|
| 794 | + * Default 'all'. Accepts 'all', 'comment', 'pingback', 'trackback', 'pings'. |
|
| 795 | + * @type int $page Page ID to list comments for. Default empty. |
|
| 796 | + * @type int $per_page Number of comments to list per page. Default empty. |
|
| 797 | + * @type int $avatar_size Height and width dimensions of the avatar size. Default 32. |
|
| 798 | + * @type string $reverse_top_level Ordering of the listed comments. Default null. Accepts 'desc', 'asc'. |
|
| 799 | + * @type bool $reverse_children Whether to reverse child comments in the list. Default null. |
|
| 800 | + * @type string $format How to format the comments list. |
|
| 801 | + * Default 'html5' if the theme supports it. Accepts 'html5', 'xhtml'. |
|
| 802 | + * @type bool $short_ping Whether to output short pings. Default false. |
|
| 803 | + * @type bool $echo Whether to echo the output or return it. Default true. |
|
| 804 | + * } |
|
| 805 | + * @param int $depth Depth of comment. |
|
| 806 | + */ |
|
| 807 | + function geodir_comment($comment, $args, $depth) |
|
| 808 | + {
|
|
| 809 | + $GLOBALS['comment'] = $comment; |
|
| 810 | + switch ($comment->comment_type) : |
|
| 811 | + case 'pingback' : |
|
| 812 | + case 'trackback' : |
|
| 813 | + // Display trackbacks differently than normal comments. |
|
| 814 | + ?> |
|
| 815 | 815 | <li <?php comment_class('geodir-comment'); ?> id="comment-<?php comment_ID(); ?>">
|
| 816 | 816 | <p><?php _e('Pingback:', 'geodirectory'); ?> <?php comment_author_link(); ?> <?php edit_comment_link(__('(Edit)', 'geodirectory'), '<span class="edit-link">', '</span>'); ?></p>
|
| 817 | 817 | <?php |
| 818 | - break; |
|
| 819 | - default : |
|
| 820 | - // Proceed with normal comments. |
|
| 821 | - global $post; |
|
| 822 | - ?> |
|
| 818 | + break; |
|
| 819 | + default : |
|
| 820 | + // Proceed with normal comments. |
|
| 821 | + global $post; |
|
| 822 | + ?> |
|
| 823 | 823 | <li <?php comment_class('geodir-comment'); ?> id="li-comment-<?php comment_ID(); ?>">
|
| 824 | 824 | <article id="comment-<?php comment_ID(); ?>" class="comment"> |
| 825 | 825 | <header class="comment-meta comment-author vcard"> |
| 826 | 826 | <?php |
| 827 | - /** |
|
| 828 | - * Filter to modify comment avatar size |
|
| 829 | - * |
|
| 830 | - * You can use this filter to change comment avatar size. |
|
| 831 | - * |
|
| 832 | - * @since 1.0.0 |
|
| 833 | - * @package GeoDirectory |
|
| 834 | - */ |
|
| 835 | - $avatar_size = apply_filters('geodir_comment_avatar_size', 44);
|
|
| 836 | - echo get_avatar($comment, $avatar_size); |
|
| 837 | - printf('<cite><b class="reviewer">%1$s</b> %2$s</cite>',
|
|
| 838 | - get_comment_author_link(), |
|
| 839 | - // If current post author is also comment author, make it known visually. |
|
| 840 | - ($comment->user_id === $post->post_author) ? '<span>' . __('Post author', 'geodirectory') . '</span>' : ''
|
|
| 841 | - ); |
|
| 842 | - echo "<span class='item'><small><span class='fn'>$post->post_title</span></small></span>"; |
|
| 843 | - printf('<a href="%1$s"><time datetime="%2$s" class="dtreviewed">%3$s<span class="value-title" title="%2$s"></span></time></a>',
|
|
| 844 | - esc_url(get_comment_link($comment->comment_ID)), |
|
| 845 | - get_comment_time('c'),
|
|
| 846 | - /* translators: 1: date, 2: time */ |
|
| 847 | - sprintf(__('%1$s at %2$s', 'geodirectory'), get_comment_date(), get_comment_time())
|
|
| 848 | - ); |
|
| 849 | - ?> |
|
| 827 | + /** |
|
| 828 | + * Filter to modify comment avatar size |
|
| 829 | + * |
|
| 830 | + * You can use this filter to change comment avatar size. |
|
| 831 | + * |
|
| 832 | + * @since 1.0.0 |
|
| 833 | + * @package GeoDirectory |
|
| 834 | + */ |
|
| 835 | + $avatar_size = apply_filters('geodir_comment_avatar_size', 44);
|
|
| 836 | + echo get_avatar($comment, $avatar_size); |
|
| 837 | + printf('<cite><b class="reviewer">%1$s</b> %2$s</cite>',
|
|
| 838 | + get_comment_author_link(), |
|
| 839 | + // If current post author is also comment author, make it known visually. |
|
| 840 | + ($comment->user_id === $post->post_author) ? '<span>' . __('Post author', 'geodirectory') . '</span>' : ''
|
|
| 841 | + ); |
|
| 842 | + echo "<span class='item'><small><span class='fn'>$post->post_title</span></small></span>"; |
|
| 843 | + printf('<a href="%1$s"><time datetime="%2$s" class="dtreviewed">%3$s<span class="value-title" title="%2$s"></span></time></a>',
|
|
| 844 | + esc_url(get_comment_link($comment->comment_ID)), |
|
| 845 | + get_comment_time('c'),
|
|
| 846 | + /* translators: 1: date, 2: time */ |
|
| 847 | + sprintf(__('%1$s at %2$s', 'geodirectory'), get_comment_date(), get_comment_time())
|
|
| 848 | + ); |
|
| 849 | + ?> |
|
| 850 | 850 | </header> |
| 851 | 851 | <!-- .comment-meta --> |
| 852 | 852 | |
@@ -870,47 +870,47 @@ discard block |
||
| 870 | 870 | </article> |
| 871 | 871 | <!-- #comment-## --> |
| 872 | 872 | <?php |
| 873 | - break; |
|
| 874 | - endswitch; // end comment_type check |
|
| 875 | - } |
|
| 873 | + break; |
|
| 874 | + endswitch; // end comment_type check |
|
| 875 | + } |
|
| 876 | 876 | } |
| 877 | 877 | |
| 878 | 878 | |
| 879 | 879 | add_filter('get_comments_number', 'geodir_fix_comment_count', 10, 2);
|
| 880 | 880 | if (!function_exists('geodir_fix_comment_count')) {
|
| 881 | - /** |
|
| 882 | - * Fix comment count by not listing replies as reviews |
|
| 883 | - * |
|
| 884 | - * @since 1.0.0 |
|
| 885 | - * @package GeoDirectory |
|
| 886 | - * @global object $post The current post object. |
|
| 887 | - * @param int $count The comment count. |
|
| 888 | - * @param int $post_id The post ID. |
|
| 889 | - * @todo $post is unreachable since the function return the count before that variable. |
|
| 890 | - * @return bool|null|string The comment count. |
|
| 891 | - */ |
|
| 892 | - function geodir_fix_comment_count($count, $post_id) |
|
| 893 | - {
|
|
| 894 | - if (!is_admin() || strpos($_SERVER['REQUEST_URI'], 'admin-ajax.php')) {
|
|
| 895 | - global $post; |
|
| 896 | - $post_types = geodir_get_posttypes(); |
|
| 897 | - |
|
| 898 | - if (in_array(get_post_type($post_id), $post_types)) {
|
|
| 899 | - $review_count = geodir_get_review_count_total($post_id); |
|
| 900 | - return $review_count; |
|
| 901 | - |
|
| 902 | - if ($post && isset($post->rating_count)) {
|
|
| 903 | - return $post->rating_count; |
|
| 904 | - } else {
|
|
| 905 | - return geodir_get_comments_number($post_id); |
|
| 906 | - } |
|
| 907 | - } else {
|
|
| 908 | - return $count; |
|
| 909 | - } |
|
| 910 | - } else {
|
|
| 911 | - return $count; |
|
| 912 | - } |
|
| 913 | - } |
|
| 881 | + /** |
|
| 882 | + * Fix comment count by not listing replies as reviews |
|
| 883 | + * |
|
| 884 | + * @since 1.0.0 |
|
| 885 | + * @package GeoDirectory |
|
| 886 | + * @global object $post The current post object. |
|
| 887 | + * @param int $count The comment count. |
|
| 888 | + * @param int $post_id The post ID. |
|
| 889 | + * @todo $post is unreachable since the function return the count before that variable. |
|
| 890 | + * @return bool|null|string The comment count. |
|
| 891 | + */ |
|
| 892 | + function geodir_fix_comment_count($count, $post_id) |
|
| 893 | + {
|
|
| 894 | + if (!is_admin() || strpos($_SERVER['REQUEST_URI'], 'admin-ajax.php')) {
|
|
| 895 | + global $post; |
|
| 896 | + $post_types = geodir_get_posttypes(); |
|
| 897 | + |
|
| 898 | + if (in_array(get_post_type($post_id), $post_types)) {
|
|
| 899 | + $review_count = geodir_get_review_count_total($post_id); |
|
| 900 | + return $review_count; |
|
| 901 | + |
|
| 902 | + if ($post && isset($post->rating_count)) {
|
|
| 903 | + return $post->rating_count; |
|
| 904 | + } else {
|
|
| 905 | + return geodir_get_comments_number($post_id); |
|
| 906 | + } |
|
| 907 | + } else {
|
|
| 908 | + return $count; |
|
| 909 | + } |
|
| 910 | + } else {
|
|
| 911 | + return $count; |
|
| 912 | + } |
|
| 913 | + } |
|
| 914 | 914 | } |
| 915 | 915 | |
| 916 | 916 | /** |
@@ -928,14 +928,14 @@ discard block |
||
| 928 | 928 | */ |
| 929 | 929 | function geodir_get_rating_stars($rating, $post_id, $small = false) |
| 930 | 930 | {
|
| 931 | - if (!empty($post_id) && geodir_cpt_has_rating_disabled((int)$post_id)) {
|
|
| 932 | - return NULL; |
|
| 933 | - } |
|
| 934 | - $a_rating = $rating / 5 * 100; |
|
| 935 | - |
|
| 936 | - if ($small) {
|
|
| 937 | - $r_html = '<div class="rating"><div class="gd_rating_map" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star_small"></div></div></div>'; |
|
| 938 | - } else {
|
|
| 931 | + if (!empty($post_id) && geodir_cpt_has_rating_disabled((int)$post_id)) {
|
|
| 932 | + return NULL; |
|
| 933 | + } |
|
| 934 | + $a_rating = $rating / 5 * 100; |
|
| 935 | + |
|
| 936 | + if ($small) {
|
|
| 937 | + $r_html = '<div class="rating"><div class="gd_rating_map" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star_small"></div></div></div>'; |
|
| 938 | + } else {
|
|
| 939 | 939 | if (function_exists('geodir_reviewrating_draw_overall_rating')) {
|
| 940 | 940 | // Show rating stars from review rating manager |
| 941 | 941 | $r_html = geodir_reviewrating_draw_overall_rating($rating); |
@@ -952,8 +952,8 @@ discard block |
||
| 952 | 952 | } |
| 953 | 953 | $r_html = '<div class="geodir-rating" style="' . $attach_style . '"><div class="gd_rating_show" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingAverage" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star">' . $rating_img . $rating_img . $rating_img . $rating_img . $rating_img . '</div></div></div>'; |
| 954 | 954 | } |
| 955 | - } |
|
| 956 | - return apply_filters('geodir_get_rating_stars_html', $r_html, $rating, 5);
|
|
| 955 | + } |
|
| 956 | + return apply_filters('geodir_get_rating_stars_html', $r_html, $rating, 5);
|
|
| 957 | 957 | } |
| 958 | 958 | |
| 959 | 959 | /** |
@@ -967,23 +967,23 @@ discard block |
||
| 967 | 967 | function geodir_is_reviews_show($pageview = '') |
| 968 | 968 | {
|
| 969 | 969 | |
| 970 | - $active_tabs = get_option('geodir_detail_page_tabs_excluded');
|
|
| 971 | - |
|
| 972 | - $is_display = true; |
|
| 973 | - if (!empty($active_tabs) && in_array('reviews', $active_tabs))
|
|
| 974 | - $is_display = false; |
|
| 975 | - |
|
| 976 | - /** |
|
| 977 | - * Filter to change display value. |
|
| 978 | - * |
|
| 979 | - * You can use this filter to change the is_display value. |
|
| 980 | - * |
|
| 981 | - * @since 1.0.0 |
|
| 982 | - * @package GeoDirectory |
|
| 983 | - * @param bool $is_display Display ratings when set to true. |
|
| 984 | - * @param string $pageview The view template. Ex: listview, gridview etc. |
|
| 985 | - */ |
|
| 986 | - return apply_filters('geodir_is_reviews_show', $is_display, $pageview);
|
|
| 970 | + $active_tabs = get_option('geodir_detail_page_tabs_excluded');
|
|
| 971 | + |
|
| 972 | + $is_display = true; |
|
| 973 | + if (!empty($active_tabs) && in_array('reviews', $active_tabs))
|
|
| 974 | + $is_display = false; |
|
| 975 | + |
|
| 976 | + /** |
|
| 977 | + * Filter to change display value. |
|
| 978 | + * |
|
| 979 | + * You can use this filter to change the is_display value. |
|
| 980 | + * |
|
| 981 | + * @since 1.0.0 |
|
| 982 | + * @package GeoDirectory |
|
| 983 | + * @param bool $is_display Display ratings when set to true. |
|
| 984 | + * @param string $pageview The view template. Ex: listview, gridview etc. |
|
| 985 | + */ |
|
| 986 | + return apply_filters('geodir_is_reviews_show', $is_display, $pageview);
|
|
| 987 | 987 | } |
| 988 | 988 | |
| 989 | 989 | |
@@ -991,9 +991,9 @@ discard block |
||
| 991 | 991 | * If Disqus plugin is active, do some fixes to show on blogs but no on GD post types |
| 992 | 992 | */ |
| 993 | 993 | if(function_exists('dsq_can_replace')) {
|
| 994 | - remove_filter('comments_template', 'dsq_comments_template');
|
|
| 995 | - add_filter('comments_template', 'dsq_comments_template', 100);
|
|
| 996 | - add_filter('pre_option_disqus_active', 'geodir_option_disqus_active',10,1);
|
|
| 994 | + remove_filter('comments_template', 'dsq_comments_template');
|
|
| 995 | + add_filter('comments_template', 'dsq_comments_template', 100);
|
|
| 996 | + add_filter('pre_option_disqus_active', 'geodir_option_disqus_active',10,1);
|
|
| 997 | 997 | } |
| 998 | 998 | |
| 999 | 999 | |
@@ -1007,13 +1007,13 @@ discard block |
||
| 1007 | 1007 | * @return string `1` if active `0` if disabled. |
| 1008 | 1008 | */ |
| 1009 | 1009 | function geodir_option_disqus_active($disqus_active){
|
| 1010 | - global $post; |
|
| 1011 | - $all_postypes = geodir_get_posttypes(); |
|
| 1010 | + global $post; |
|
| 1011 | + $all_postypes = geodir_get_posttypes(); |
|
| 1012 | 1012 | |
| 1013 | - if(isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type,$all_postypes)){
|
|
| 1014 | - $disqus_active = '0'; |
|
| 1015 | - } |
|
| 1013 | + if(isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type,$all_postypes)){
|
|
| 1014 | + $disqus_active = '0'; |
|
| 1015 | + } |
|
| 1016 | 1016 | |
| 1017 | - return $disqus_active; |
|
| 1017 | + return $disqus_active; |
|
| 1018 | 1018 | } |
| 1019 | 1019 | |
@@ -67,10 +67,10 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | function geodir_comment_rating_meta($comment) {
|
| 69 | 69 | $post_type = get_post_type($comment->comment_post_ID); |
| 70 | - if (in_array($post_type, (array)geodir_get_posttypes()) && (int)$comment->comment_parent == 0 && !(!empty($post_type) && geodir_cpt_has_rating_disabled($post_type))) {
|
|
| 70 | + if (in_array($post_type, (array) geodir_get_posttypes()) && (int) $comment->comment_parent == 0 && !(!empty($post_type) && geodir_cpt_has_rating_disabled($post_type))) {
|
|
| 71 | 71 | $rating = geodir_get_commentoverall($comment->comment_ID); |
| 72 | 72 | |
| 73 | - if ((int)get_option('geodir_reviewrating_enable_font_awesome') == 1) {
|
|
| 73 | + if ((int) get_option('geodir_reviewrating_enable_font_awesome') == 1) {
|
|
| 74 | 74 | $star_texts = array(); |
| 75 | 75 | $star_texts[] = __('Terrible', 'geodirectory');
|
| 76 | 76 | $star_texts[] = __('Poor', 'geodirectory');
|
@@ -81,13 +81,13 @@ discard block |
||
| 81 | 81 | echo geodir_font_awesome_rating_form_html('', $star_texts, $rating);
|
| 82 | 82 | } else {
|
| 83 | 83 | if ($rating) {
|
| 84 | - echo '<div class="gd_rating" data-average="' . $rating . '" data-id="5">'; |
|
| 84 | + echo '<div class="gd_rating" data-average="'.$rating.'" data-id="5">'; |
|
| 85 | 85 | |
| 86 | 86 | } else {
|
| 87 | 87 | echo '<div class="gd_rating" data-average="0" data-id="5"></div>'; |
| 88 | 88 | } |
| 89 | 89 | } |
| 90 | - echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="' . $rating . '" />'; |
|
| 90 | + echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="'.$rating.'" />'; |
|
| 91 | 91 | } |
| 92 | 92 | } |
| 93 | 93 | |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | function geodir_comment_replaylink($link) |
| 146 | 146 | {
|
| 147 | 147 | |
| 148 | - $link = '<div class="gd_comment_replaylink">' . $link . '</div>'; |
|
| 148 | + $link = '<div class="gd_comment_replaylink">'.$link.'</div>'; |
|
| 149 | 149 | |
| 150 | 150 | return $link; |
| 151 | 151 | } |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | function geodir_cancle_replaylink($link) |
| 163 | 163 | {
|
| 164 | 164 | |
| 165 | - $link = '<span class="gd-cancel-replaylink">' . $link . '</span>'; |
|
| 165 | + $link = '<span class="gd-cancel-replaylink">'.$link.'</span>'; |
|
| 166 | 166 | |
| 167 | 167 | return $link; |
| 168 | 168 | } |
@@ -202,10 +202,10 @@ discard block |
||
| 202 | 202 | if (isset($_REQUEST['geodir_overallrating'])) {
|
| 203 | 203 | $overall_rating = $_REQUEST['geodir_overallrating']; |
| 204 | 204 | |
| 205 | - if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
|
|
| 205 | + if (isset($comment_info->comment_parent) && (int) $comment_info->comment_parent == 0) {
|
|
| 206 | 206 | $overall_rating = $overall_rating > 0 ? $overall_rating : '0'; |
| 207 | 207 | |
| 208 | - $sqlqry = $wpdb->prepare("INSERT INTO " . GEODIR_REVIEW_TABLE . " SET
|
|
| 208 | + $sqlqry = $wpdb->prepare("INSERT INTO ".GEODIR_REVIEW_TABLE." SET
|
|
| 209 | 209 | post_id = %d, |
| 210 | 210 | post_type = %s, |
| 211 | 211 | post_title = %s, |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | |
| 293 | 293 | $post_type = get_post_type($post_id); |
| 294 | 294 | |
| 295 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 295 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
| 296 | 296 | |
| 297 | 297 | if ($comment_id) {
|
| 298 | 298 | |
@@ -300,7 +300,7 @@ discard block |
||
| 300 | 300 | |
| 301 | 301 | if (isset($old_rating)) {
|
| 302 | 302 | |
| 303 | - $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
|
|
| 303 | + $sqlqry = $wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET
|
|
| 304 | 304 | overall_rating = %f, |
| 305 | 305 | status = %s, |
| 306 | 306 | comment_content = %s |
@@ -342,18 +342,18 @@ discard block |
||
| 342 | 342 | |
| 343 | 343 | $post_type = get_post_type($post_id); |
| 344 | 344 | |
| 345 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 345 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
| 346 | 346 | |
| 347 | 347 | if (isset($_REQUEST['geodir_overallrating'])) {
|
| 348 | 348 | |
| 349 | 349 | $overall_rating = $_REQUEST['geodir_overallrating']; |
| 350 | 350 | |
| 351 | - if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
|
|
| 351 | + if (isset($comment_info->comment_parent) && (int) $comment_info->comment_parent == 0) {
|
|
| 352 | 352 | $overall_rating = $overall_rating > 0 ? $overall_rating : '0'; |
| 353 | 353 | |
| 354 | 354 | if (isset($old_rating)) {
|
| 355 | 355 | |
| 356 | - $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
|
|
| 356 | + $sqlqry = $wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET
|
|
| 357 | 357 | overall_rating = %f, |
| 358 | 358 | status = %s, |
| 359 | 359 | comment_content = %s |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | |
| 392 | 392 | $wpdb->query( |
| 393 | 393 | $wpdb->prepare( |
| 394 | - "DELETE FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d", |
|
| 394 | + "DELETE FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d", |
|
| 395 | 395 | array($comment_id) |
| 396 | 396 | ) |
| 397 | 397 | ); |
@@ -410,9 +410,9 @@ discard block |
||
| 410 | 410 | * @return string The comment content. |
| 411 | 411 | */ |
| 412 | 412 | function geodir_wrap_comment_text($content, $comment = '') {
|
| 413 | - if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int)$comment->comment_post_ID)) {
|
|
| 413 | + if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int) $comment->comment_post_ID)) {
|
|
| 414 | 414 | if (!is_admin()) {
|
| 415 | - return '<div class="description">' . $content . '</div>'; |
|
| 415 | + return '<div class="description">'.$content.'</div>'; |
|
| 416 | 416 | } else {
|
| 417 | 417 | return $content; |
| 418 | 418 | } |
@@ -421,7 +421,7 @@ discard block |
||
| 421 | 421 | if (!empty($comment)) |
| 422 | 422 | $rating = geodir_get_commentoverall($comment->comment_ID); |
| 423 | 423 | if ($rating != 0 && !is_admin()) {
|
| 424 | - return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>';
|
|
| 424 | + return '<div><div class="gd-rating-text">'.__('Overall Rating', 'geodirectory').': <div class="rating">'.$rating.'</div></div>'.geodir_get_rating_stars($rating, $comment->comment_ID).'</div><div class="description">'.$content.'</div>';
|
|
| 425 | 425 | } else |
| 426 | 426 | return $content; |
| 427 | 427 | } |
@@ -445,18 +445,18 @@ discard block |
||
| 445 | 445 | if (!$post_type) {
|
| 446 | 446 | $post_type = get_post_type($post_id); |
| 447 | 447 | } |
| 448 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 448 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
| 449 | 449 | $post_newrating = geodir_get_post_rating($post_id, 1); |
| 450 | 450 | $post_newrating_count = geodir_get_review_count_total($post_id); |
| 451 | 451 | |
| 452 | 452 | |
| 453 | 453 | //$post_newrating = ( (float)$post_oldrating - (float)$old_rating ) + (float)$overall_rating ; |
| 454 | 454 | |
| 455 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
|
|
| 455 | + if ($wpdb->get_var("SHOW TABLES LIKE '".$detail_table."'") == $detail_table) {
|
|
| 456 | 456 | |
| 457 | 457 | $wpdb->query( |
| 458 | 458 | $wpdb->prepare( |
| 459 | - "UPDATE " . $detail_table . " SET |
|
| 459 | + "UPDATE ".$detail_table." SET |
|
| 460 | 460 | overall_rating = %f, |
| 461 | 461 | rating_count = %f |
| 462 | 462 | where post_id = %d", |
@@ -475,7 +475,7 @@ discard block |
||
| 475 | 475 | * @package GeoDirectory |
| 476 | 476 | * @param int $post_id The post ID. |
| 477 | 477 | */ |
| 478 | - do_action('geodir_update_postrating',$post_id);
|
|
| 478 | + do_action('geodir_update_postrating', $post_id);
|
|
| 479 | 479 | |
| 480 | 480 | } |
| 481 | 481 | |
@@ -496,13 +496,13 @@ discard block |
||
| 496 | 496 | global $wpdb, $plugin_prefix; |
| 497 | 497 | |
| 498 | 498 | $post_type = get_post_type($post_id); |
| 499 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 499 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
| 500 | 500 | |
| 501 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
|
|
| 501 | + if ($wpdb->get_var("SHOW TABLES LIKE '".$detail_table."'") == $detail_table) {
|
|
| 502 | 502 | |
| 503 | 503 | $post_ratings = $wpdb->get_var( |
| 504 | 504 | $wpdb->prepare( |
| 505 | - "SELECT overall_rating FROM " . $detail_table . " WHERE post_id = %d", |
|
| 505 | + "SELECT overall_rating FROM ".$detail_table." WHERE post_id = %d", |
|
| 506 | 506 | array($post_id) |
| 507 | 507 | ) |
| 508 | 508 | ); |
@@ -536,7 +536,7 @@ discard block |
||
| 536 | 536 | |
| 537 | 537 | $reatings = $wpdb->get_row( |
| 538 | 538 | $wpdb->prepare( |
| 539 | - "SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d", |
|
| 539 | + "SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id = %d", |
|
| 540 | 540 | array($comment_id) |
| 541 | 541 | ) |
| 542 | 542 | ); |
@@ -564,7 +564,7 @@ discard block |
||
| 564 | 564 | |
| 565 | 565 | $results = $wpdb->get_var( |
| 566 | 566 | $wpdb->prepare( |
| 567 | - "SELECT SUM(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 567 | + "SELECT SUM(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 568 | 568 | array($post_id) |
| 569 | 569 | ) |
| 570 | 570 | ); |
@@ -591,7 +591,7 @@ discard block |
||
| 591 | 591 | global $wpdb; |
| 592 | 592 | $results = $wpdb->get_var( |
| 593 | 593 | $wpdb->prepare( |
| 594 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE user_id = %d AND status=1 AND overall_rating>0", |
|
| 594 | + "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE user_id = %d AND status=1 AND overall_rating>0", |
|
| 595 | 595 | array($user_id) |
| 596 | 596 | ) |
| 597 | 597 | ); |
@@ -629,7 +629,7 @@ discard block |
||
| 629 | 629 | |
| 630 | 630 | $results = $wpdb->get_var( |
| 631 | 631 | $wpdb->prepare( |
| 632 | - "SELECT COALESCE(avg(overall_rating),0) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 632 | + "SELECT COALESCE(avg(overall_rating),0) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 633 | 633 | array($post_id) |
| 634 | 634 | ) |
| 635 | 635 | ); |
@@ -657,7 +657,7 @@ discard block |
||
| 657 | 657 | |
| 658 | 658 | $results = $wpdb->get_var( |
| 659 | 659 | $wpdb->prepare( |
| 660 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 660 | + "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 661 | 661 | array($post_id) |
| 662 | 662 | ) |
| 663 | 663 | ); |
@@ -686,7 +686,7 @@ discard block |
||
| 686 | 686 | |
| 687 | 687 | $results = $wpdb->get_var( |
| 688 | 688 | $wpdb->prepare( |
| 689 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 689 | + "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
| 690 | 690 | array($post_id) |
| 691 | 691 | ) |
| 692 | 692 | ); |
@@ -715,7 +715,7 @@ discard block |
||
| 715 | 715 | |
| 716 | 716 | $reatings = $wpdb->get_var( |
| 717 | 717 | $wpdb->prepare( |
| 718 | - "SELECT overall_rating FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d", |
|
| 718 | + "SELECT overall_rating FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id = %d", |
|
| 719 | 719 | array($comment_id) |
| 720 | 720 | ) |
| 721 | 721 | ); |
@@ -765,7 +765,7 @@ discard block |
||
| 765 | 765 | if (in_array($post->post_type, $post_types)) { // assuming there is a post type called business
|
| 766 | 766 | $template = locate_template(array("geodirectory/reviews.php")); // Use theme template if available
|
| 767 | 767 | if (!$template) {
|
| 768 | - $template = dirname(__FILE__) . '/reviews.php'; |
|
| 768 | + $template = dirname(__FILE__).'/reviews.php'; |
|
| 769 | 769 | } |
| 770 | 770 | return $template; |
| 771 | 771 | } |
@@ -837,7 +837,7 @@ discard block |
||
| 837 | 837 | printf('<cite><b class="reviewer">%1$s</b> %2$s</cite>',
|
| 838 | 838 | get_comment_author_link(), |
| 839 | 839 | // If current post author is also comment author, make it known visually. |
| 840 | - ($comment->user_id === $post->post_author) ? '<span>' . __('Post author', 'geodirectory') . '</span>' : ''
|
|
| 840 | + ($comment->user_id === $post->post_author) ? '<span>'.__('Post author', 'geodirectory').'</span>' : ''
|
|
| 841 | 841 | ); |
| 842 | 842 | echo "<span class='item'><small><span class='fn'>$post->post_title</span></small></span>"; |
| 843 | 843 | printf('<a href="%1$s"><time datetime="%2$s" class="dtreviewed">%3$s<span class="value-title" title="%2$s"></span></time></a>',
|
@@ -928,29 +928,29 @@ discard block |
||
| 928 | 928 | */ |
| 929 | 929 | function geodir_get_rating_stars($rating, $post_id, $small = false) |
| 930 | 930 | {
|
| 931 | - if (!empty($post_id) && geodir_cpt_has_rating_disabled((int)$post_id)) {
|
|
| 931 | + if (!empty($post_id) && geodir_cpt_has_rating_disabled((int) $post_id)) {
|
|
| 932 | 932 | return NULL; |
| 933 | 933 | } |
| 934 | 934 | $a_rating = $rating / 5 * 100; |
| 935 | 935 | |
| 936 | 936 | if ($small) {
|
| 937 | - $r_html = '<div class="rating"><div class="gd_rating_map" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star_small"></div></div></div>'; |
|
| 937 | + $r_html = '<div class="rating"><div class="gd_rating_map" data-average="'.$rating.'" data-id="'.$post_id.'"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: '.$a_rating.'%;"></div><div class="geodir_Star_small"></div></div></div>'; |
|
| 938 | 938 | } else {
|
| 939 | 939 | if (function_exists('geodir_reviewrating_draw_overall_rating')) {
|
| 940 | 940 | // Show rating stars from review rating manager |
| 941 | 941 | $r_html = geodir_reviewrating_draw_overall_rating($rating); |
| 942 | 942 | } else {
|
| 943 | - $rating_img = '<img alt="rating icon" src="' . get_option('geodir_default_rating_star_icon') . '" />';
|
|
| 943 | + $rating_img = '<img alt="rating icon" src="'.get_option('geodir_default_rating_star_icon').'" />';
|
|
| 944 | 944 | |
| 945 | 945 | /* fix rating star for safari */ |
| 946 | 946 | $star_width = 23 * 5; |
| 947 | 947 | |
| 948 | 948 | if ($star_width > 0) {
|
| 949 | - $attach_style = 'max-width:' . $star_width . 'px'; |
|
| 949 | + $attach_style = 'max-width:'.$star_width.'px'; |
|
| 950 | 950 | } else {
|
| 951 | 951 | $attach_style = ''; |
| 952 | 952 | } |
| 953 | - $r_html = '<div class="geodir-rating" style="' . $attach_style . '"><div class="gd_rating_show" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingAverage" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star">' . $rating_img . $rating_img . $rating_img . $rating_img . $rating_img . '</div></div></div>'; |
|
| 953 | + $r_html = '<div class="geodir-rating" style="'.$attach_style.'"><div class="gd_rating_show" data-average="'.$rating.'" data-id="'.$post_id.'"><div class="geodir_RatingAverage" style="width: '.$a_rating.'%;"></div><div class="geodir_Star">'.$rating_img.$rating_img.$rating_img.$rating_img.$rating_img.'</div></div></div>'; |
|
| 954 | 954 | } |
| 955 | 955 | } |
| 956 | 956 | return apply_filters('geodir_get_rating_stars_html', $r_html, $rating, 5);
|
@@ -990,10 +990,10 @@ discard block |
||
| 990 | 990 | /* |
| 991 | 991 | * If Disqus plugin is active, do some fixes to show on blogs but no on GD post types |
| 992 | 992 | */ |
| 993 | -if(function_exists('dsq_can_replace')) {
|
|
| 993 | +if (function_exists('dsq_can_replace')) {
|
|
| 994 | 994 | remove_filter('comments_template', 'dsq_comments_template');
|
| 995 | 995 | add_filter('comments_template', 'dsq_comments_template', 100);
|
| 996 | - add_filter('pre_option_disqus_active', 'geodir_option_disqus_active',10,1);
|
|
| 996 | + add_filter('pre_option_disqus_active', 'geodir_option_disqus_active', 10, 1);
|
|
| 997 | 997 | } |
| 998 | 998 | |
| 999 | 999 | |
@@ -1006,11 +1006,11 @@ discard block |
||
| 1006 | 1006 | * @param string $disqus_active Hook called before DB call for option so this is empty. |
| 1007 | 1007 | * @return string `1` if active `0` if disabled. |
| 1008 | 1008 | */ |
| 1009 | -function geodir_option_disqus_active($disqus_active){
|
|
| 1009 | +function geodir_option_disqus_active($disqus_active) {
|
|
| 1010 | 1010 | global $post; |
| 1011 | 1011 | $all_postypes = geodir_get_posttypes(); |
| 1012 | 1012 | |
| 1013 | - if(isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type,$all_postypes)){
|
|
| 1013 | + if (isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 1014 | 1014 | $disqus_active = '0'; |
| 1015 | 1015 | } |
| 1016 | 1016 | |
@@ -278,8 +278,9 @@ discard block |
||
| 278 | 278 | |
| 279 | 279 | $post_id = isset($comment_info->comment_post_ID) ? $comment_info->comment_post_ID : ''; |
| 280 | 280 | |
| 281 | - if (!empty($comment_info)) |
|
| 282 | - $status = $comment_info->comment_approved; |
|
| 281 | + if (!empty($comment_info)) { |
|
| 282 | + $status = $comment_info->comment_approved; |
|
| 283 | + } |
|
| 283 | 284 | |
| 284 | 285 | if ($status == 'approve' || $status == 1) {
|
| 285 | 286 | $status = 1; |
@@ -418,12 +419,14 @@ discard block |
||
| 418 | 419 | } |
| 419 | 420 | } else {
|
| 420 | 421 | $rating = 0; |
| 421 | - if (!empty($comment)) |
|
| 422 | - $rating = geodir_get_commentoverall($comment->comment_ID); |
|
| 422 | + if (!empty($comment)) { |
|
| 423 | + $rating = geodir_get_commentoverall($comment->comment_ID); |
|
| 424 | + } |
|
| 423 | 425 | if ($rating != 0 && !is_admin()) {
|
| 424 | 426 | return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>';
|
| 425 | - } else |
|
| 426 | - return $content; |
|
| 427 | + } else { |
|
| 428 | + return $content; |
|
| 429 | + } |
|
| 427 | 430 | } |
| 428 | 431 | } |
| 429 | 432 | |
@@ -512,11 +515,12 @@ discard block |
||
| 512 | 515 | $post_ratings = get_post_meta($post_id, 'overall_rating'); |
| 513 | 516 | } |
| 514 | 517 | |
| 515 | - if ($post_ratings) |
|
| 516 | - return $post_ratings; |
|
| 517 | - else |
|
| 518 | - return false; |
|
| 519 | -} |
|
| 518 | + if ($post_ratings) { |
|
| 519 | + return $post_ratings; |
|
| 520 | + } else { |
|
| 521 | + return false; |
|
| 522 | + } |
|
| 523 | + } |
|
| 520 | 524 | |
| 521 | 525 | |
| 522 | 526 | /** |
@@ -541,11 +545,12 @@ discard block |
||
| 541 | 545 | ) |
| 542 | 546 | ); |
| 543 | 547 | |
| 544 | - if (!empty($reatings)) |
|
| 545 | - return $reatings; |
|
| 546 | - else |
|
| 547 | - return false; |
|
| 548 | -} |
|
| 548 | + if (!empty($reatings)) { |
|
| 549 | + return $reatings; |
|
| 550 | + } else { |
|
| 551 | + return false; |
|
| 552 | + } |
|
| 553 | + } |
|
| 549 | 554 | |
| 550 | 555 | /** |
| 551 | 556 | * Get review total of a Post. |
@@ -569,11 +574,12 @@ discard block |
||
| 569 | 574 | ) |
| 570 | 575 | ); |
| 571 | 576 | |
| 572 | - if (!empty($results)) |
|
| 573 | - return $results; |
|
| 574 | - else |
|
| 575 | - return false; |
|
| 576 | -} |
|
| 577 | + if (!empty($results)) { |
|
| 578 | + return $results; |
|
| 579 | + } else { |
|
| 580 | + return false; |
|
| 581 | + } |
|
| 582 | + } |
|
| 577 | 583 | |
| 578 | 584 | /** |
| 579 | 585 | * Get review count by user ID. |
@@ -596,11 +602,12 @@ discard block |
||
| 596 | 602 | ) |
| 597 | 603 | ); |
| 598 | 604 | |
| 599 | - if (!empty($results)) |
|
| 600 | - return $results; |
|
| 601 | - else |
|
| 602 | - return false; |
|
| 603 | -} |
|
| 605 | + if (!empty($results)) { |
|
| 606 | + return $results; |
|
| 607 | + } else { |
|
| 608 | + return false; |
|
| 609 | + } |
|
| 610 | + } |
|
| 604 | 611 | |
| 605 | 612 | /** |
| 606 | 613 | * Get average overall rating of a Post. |
@@ -634,11 +641,12 @@ discard block |
||
| 634 | 641 | ) |
| 635 | 642 | ); |
| 636 | 643 | |
| 637 | - if (!empty($results)) |
|
| 638 | - return $results; |
|
| 639 | - else |
|
| 640 | - return false; |
|
| 641 | -} |
|
| 644 | + if (!empty($results)) { |
|
| 645 | + return $results; |
|
| 646 | + } else { |
|
| 647 | + return false; |
|
| 648 | + } |
|
| 649 | + } |
|
| 642 | 650 | |
| 643 | 651 | /** |
| 644 | 652 | * Get review count of a Post. |
@@ -662,11 +670,12 @@ discard block |
||
| 662 | 670 | ) |
| 663 | 671 | ); |
| 664 | 672 | |
| 665 | - if (!empty($results)) |
|
| 666 | - return $results; |
|
| 667 | - else |
|
| 668 | - return false; |
|
| 669 | -} |
|
| 673 | + if (!empty($results)) { |
|
| 674 | + return $results; |
|
| 675 | + } else { |
|
| 676 | + return false; |
|
| 677 | + } |
|
| 678 | + } |
|
| 670 | 679 | |
| 671 | 680 | /** |
| 672 | 681 | * Get comments count of a Post. |
@@ -692,11 +701,12 @@ discard block |
||
| 692 | 701 | ); |
| 693 | 702 | |
| 694 | 703 | |
| 695 | - if (!empty($results)) |
|
| 696 | - return $results; |
|
| 697 | - else |
|
| 698 | - return false; |
|
| 699 | -} |
|
| 704 | + if (!empty($results)) { |
|
| 705 | + return $results; |
|
| 706 | + } else { |
|
| 707 | + return false; |
|
| 708 | + } |
|
| 709 | + } |
|
| 700 | 710 | |
| 701 | 711 | /** |
| 702 | 712 | * Get overall rating of a comment. |
@@ -720,11 +730,12 @@ discard block |
||
| 720 | 730 | ) |
| 721 | 731 | ); |
| 722 | 732 | |
| 723 | - if ($reatings) |
|
| 724 | - return $reatings; |
|
| 725 | - else |
|
| 726 | - return false; |
|
| 727 | -} |
|
| 733 | + if ($reatings) { |
|
| 734 | + return $reatings; |
|
| 735 | + } else { |
|
| 736 | + return false; |
|
| 737 | + } |
|
| 738 | + } |
|
| 728 | 739 | |
| 729 | 740 | /** |
| 730 | 741 | * Returns average overall rating of a Post. Depreciated since ver 1.3.6. |
@@ -970,8 +981,9 @@ discard block |
||
| 970 | 981 | $active_tabs = get_option('geodir_detail_page_tabs_excluded');
|
| 971 | 982 | |
| 972 | 983 | $is_display = true; |
| 973 | - if (!empty($active_tabs) && in_array('reviews', $active_tabs))
|
|
| 974 | - $is_display = false; |
|
| 984 | + if (!empty($active_tabs) && in_array('reviews', $active_tabs)) { |
|
| 985 | + $is_display = false; |
|
| 986 | + } |
|
| 975 | 987 | |
| 976 | 988 | /** |
| 977 | 989 | * Filter to change display value. |