@@ -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_html_class(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_html_class(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 | |
@@ -833,92 +833,92 @@ discard block |
||
| 833 | 833 | */ |
| 834 | 834 | function geodir_cf_select($html,$location,$cf,$p=''){ |
| 835 | 835 | |
| 836 | - // check we have the post value |
|
| 837 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 838 | - else{ global $post;} |
|
| 839 | - |
|
| 840 | - if(!is_array($cf) && $cf!=''){ |
|
| 841 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 842 | - if(!$cf){return NULL;} |
|
| 843 | - } |
|
| 844 | - |
|
| 845 | - $html_var = $cf['htmlvar_name']; |
|
| 846 | - |
|
| 847 | - // Check if there is a location specific filter. |
|
| 848 | - if(has_filter("geodir_custom_field_output_select_loc_{$location}")){ |
|
| 849 | - /** |
|
| 850 | - * Filter the select html by location. |
|
| 851 | - * |
|
| 852 | - * @param string $html The html to filter. |
|
| 853 | - * @param array $cf The custom field array. |
|
| 854 | - * @since 1.6.6 |
|
| 855 | - */ |
|
| 856 | - $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf); |
|
| 857 | - } |
|
| 858 | - |
|
| 859 | - // Check if there is a custom field specific filter. |
|
| 860 | - if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){ |
|
| 861 | - /** |
|
| 862 | - * Filter the select html by individual custom field. |
|
| 863 | - * |
|
| 864 | - * @param string $html The html to filter. |
|
| 865 | - * @param string $location The location to output the html. |
|
| 866 | - * @param array $cf The custom field array. |
|
| 867 | - * @since 1.6.6 |
|
| 868 | - */ |
|
| 869 | - $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf); |
|
| 870 | - } |
|
| 871 | - |
|
| 872 | - // Check if there is a custom field key specific filter. |
|
| 873 | - if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){ |
|
| 874 | - /** |
|
| 875 | - * Filter the select html by field type key. |
|
| 876 | - * |
|
| 877 | - * @param string $html The html to filter. |
|
| 878 | - * @param string $location The location to output the html. |
|
| 879 | - * @param array $cf The custom field array. |
|
| 880 | - * @since 1.6.6 |
|
| 881 | - */ |
|
| 882 | - $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 883 | - } |
|
| 884 | - |
|
| 885 | - // If not html then we run the standard output. |
|
| 886 | - if(empty($html)){ |
|
| 887 | - |
|
| 888 | - if ($post->{$cf['htmlvar_name']}): |
|
| 889 | - $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 890 | - |
|
| 891 | - if (!empty($cf['option_values'])) { |
|
| 892 | - $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 893 | - |
|
| 894 | - if (!empty($cf_option_values)) { |
|
| 895 | - foreach ($cf_option_values as $cf_option_value) { |
|
| 896 | - if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 897 | - $field_value = $cf_option_value['label']; // no longer needed here. Removed comment because it displays number instead of label if option vales set like "Good/1,Fair/2". |
|
| 898 | - } |
|
| 899 | - } |
|
| 900 | - } |
|
| 901 | - } |
|
| 902 | - |
|
| 903 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 904 | - if (strpos($field_icon, 'http') !== false) { |
|
| 905 | - $field_icon_af = ''; |
|
| 906 | - } elseif ($field_icon == '') { |
|
| 907 | - $field_icon_af = ''; |
|
| 908 | - } else { |
|
| 909 | - $field_icon_af = $field_icon; |
|
| 910 | - $field_icon = ''; |
|
| 911 | - } |
|
| 912 | - |
|
| 913 | - |
|
| 914 | - $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; |
|
| 915 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 916 | - $html .= '</span>' . $field_value . '</div>'; |
|
| 917 | - endif; |
|
| 918 | - |
|
| 919 | - } |
|
| 920 | - |
|
| 921 | - return $html; |
|
| 836 | + // check we have the post value |
|
| 837 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 838 | + else{ global $post;} |
|
| 839 | + |
|
| 840 | + if(!is_array($cf) && $cf!=''){ |
|
| 841 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 842 | + if(!$cf){return NULL;} |
|
| 843 | + } |
|
| 844 | + |
|
| 845 | + $html_var = $cf['htmlvar_name']; |
|
| 846 | + |
|
| 847 | + // Check if there is a location specific filter. |
|
| 848 | + if(has_filter("geodir_custom_field_output_select_loc_{$location}")){ |
|
| 849 | + /** |
|
| 850 | + * Filter the select html by location. |
|
| 851 | + * |
|
| 852 | + * @param string $html The html to filter. |
|
| 853 | + * @param array $cf The custom field array. |
|
| 854 | + * @since 1.6.6 |
|
| 855 | + */ |
|
| 856 | + $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf); |
|
| 857 | + } |
|
| 858 | + |
|
| 859 | + // Check if there is a custom field specific filter. |
|
| 860 | + if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){ |
|
| 861 | + /** |
|
| 862 | + * Filter the select html by individual custom field. |
|
| 863 | + * |
|
| 864 | + * @param string $html The html to filter. |
|
| 865 | + * @param string $location The location to output the html. |
|
| 866 | + * @param array $cf The custom field array. |
|
| 867 | + * @since 1.6.6 |
|
| 868 | + */ |
|
| 869 | + $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf); |
|
| 870 | + } |
|
| 871 | + |
|
| 872 | + // Check if there is a custom field key specific filter. |
|
| 873 | + if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){ |
|
| 874 | + /** |
|
| 875 | + * Filter the select html by field type key. |
|
| 876 | + * |
|
| 877 | + * @param string $html The html to filter. |
|
| 878 | + * @param string $location The location to output the html. |
|
| 879 | + * @param array $cf The custom field array. |
|
| 880 | + * @since 1.6.6 |
|
| 881 | + */ |
|
| 882 | + $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 883 | + } |
|
| 884 | + |
|
| 885 | + // If not html then we run the standard output. |
|
| 886 | + if(empty($html)){ |
|
| 887 | + |
|
| 888 | + if ($post->{$cf['htmlvar_name']}): |
|
| 889 | + $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 890 | + |
|
| 891 | + if (!empty($cf['option_values'])) { |
|
| 892 | + $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 893 | + |
|
| 894 | + if (!empty($cf_option_values)) { |
|
| 895 | + foreach ($cf_option_values as $cf_option_value) { |
|
| 896 | + if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 897 | + $field_value = $cf_option_value['label']; // no longer needed here. Removed comment because it displays number instead of label if option vales set like "Good/1,Fair/2". |
|
| 898 | + } |
|
| 899 | + } |
|
| 900 | + } |
|
| 901 | + } |
|
| 902 | + |
|
| 903 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 904 | + if (strpos($field_icon, 'http') !== false) { |
|
| 905 | + $field_icon_af = ''; |
|
| 906 | + } elseif ($field_icon == '') { |
|
| 907 | + $field_icon_af = ''; |
|
| 908 | + } else { |
|
| 909 | + $field_icon_af = $field_icon; |
|
| 910 | + $field_icon = ''; |
|
| 911 | + } |
|
| 912 | + |
|
| 913 | + |
|
| 914 | + $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; |
|
| 915 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 916 | + $html .= '</span>' . $field_value . '</div>'; |
|
| 917 | + endif; |
|
| 918 | + |
|
| 919 | + } |
|
| 920 | + |
|
| 921 | + return $html; |
|
| 922 | 922 | } |
| 923 | 923 | add_filter('geodir_custom_field_output_select','geodir_cf_select',10,3); |
| 924 | 924 | |
@@ -935,117 +935,117 @@ discard block |
||
| 935 | 935 | */ |
| 936 | 936 | function geodir_cf_multiselect($html,$location,$cf,$p=''){ |
| 937 | 937 | |
| 938 | - // check we have the post value |
|
| 939 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 940 | - else{ global $post;} |
|
| 941 | - |
|
| 942 | - if(!is_array($cf) && $cf!=''){ |
|
| 943 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 944 | - if(!$cf){return NULL;} |
|
| 945 | - } |
|
| 946 | - |
|
| 947 | - $html_var = $cf['htmlvar_name']; |
|
| 948 | - |
|
| 949 | - // Check if there is a location specific filter. |
|
| 950 | - if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){ |
|
| 951 | - /** |
|
| 952 | - * Filter the multiselect html by location. |
|
| 953 | - * |
|
| 954 | - * @param string $html The html to filter. |
|
| 955 | - * @param array $cf The custom field array. |
|
| 956 | - * @since 1.6.6 |
|
| 957 | - */ |
|
| 958 | - $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf); |
|
| 959 | - } |
|
| 960 | - |
|
| 961 | - // Check if there is a custom field specific filter. |
|
| 962 | - if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){ |
|
| 963 | - /** |
|
| 964 | - * Filter the multiselect html by individual custom field. |
|
| 965 | - * |
|
| 966 | - * @param string $html The html to filter. |
|
| 967 | - * @param string $location The location to output the html. |
|
| 968 | - * @param array $cf The custom field array. |
|
| 969 | - * @since 1.6.6 |
|
| 970 | - */ |
|
| 971 | - $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf); |
|
| 972 | - } |
|
| 973 | - |
|
| 974 | - // Check if there is a custom field key specific filter. |
|
| 975 | - if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){ |
|
| 976 | - /** |
|
| 977 | - * Filter the multiselect html by field type key. |
|
| 978 | - * |
|
| 979 | - * @param string $html The html to filter. |
|
| 980 | - * @param string $location The location to output the html. |
|
| 981 | - * @param array $cf The custom field array. |
|
| 982 | - * @since 1.6.6 |
|
| 983 | - */ |
|
| 984 | - $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 985 | - } |
|
| 986 | - |
|
| 987 | - // If not html then we run the standard output. |
|
| 988 | - if(empty($html)){ |
|
| 989 | - |
|
| 990 | - |
|
| 991 | - if (!empty($post->{$cf['htmlvar_name']})): |
|
| 992 | - |
|
| 993 | - if (is_array($post->{$cf['htmlvar_name']})) { |
|
| 994 | - $post->{$cf['htmlvar_name']} = implode(', ', $post->{$cf['htmlvar_name']}); |
|
| 995 | - } |
|
| 996 | - |
|
| 997 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 998 | - if (strpos($field_icon, 'http') !== false) { |
|
| 999 | - $field_icon_af = ''; |
|
| 1000 | - } elseif ($field_icon == '') { |
|
| 1001 | - $field_icon_af = ''; |
|
| 1002 | - } else { |
|
| 1003 | - $field_icon_af = $field_icon; |
|
| 1004 | - $field_icon = ''; |
|
| 1005 | - } |
|
| 1006 | - |
|
| 1007 | - $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ",")); |
|
| 1008 | - |
|
| 1009 | - if(is_array($field_values)){ |
|
| 1010 | - $field_values = array_map('trim', $field_values); |
|
| 1011 | - } |
|
| 1012 | - |
|
| 1013 | - $option_values = array(); |
|
| 1014 | - if (!empty($cf['option_values'])) { |
|
| 1015 | - $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 1016 | - |
|
| 1017 | - if (!empty($cf_option_values)) { |
|
| 1018 | - foreach ($cf_option_values as $cf_option_value) { |
|
| 1019 | - if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) { |
|
| 1020 | - $option_values[] = $cf_option_value['label']; |
|
| 1021 | - } |
|
| 1022 | - } |
|
| 1023 | - } |
|
| 1024 | - } |
|
| 1025 | - |
|
| 1026 | - |
|
| 1027 | - $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; |
|
| 1028 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1029 | - $html .= '</span>'; |
|
| 1030 | - |
|
| 1031 | - if (count($option_values) > 1) { |
|
| 1032 | - $html .= '<ul>'; |
|
| 1033 | - |
|
| 1034 | - foreach ($option_values as $val) { |
|
| 1035 | - $html .= '<li>' . $val . '</li>'; |
|
| 1036 | - } |
|
| 1037 | - |
|
| 1038 | - $html .= '</ul>'; |
|
| 1039 | - } else { |
|
| 1040 | - $html .= __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 1041 | - } |
|
| 1042 | - |
|
| 1043 | - $html .= '</div>'; |
|
| 1044 | - endif; |
|
| 1045 | - |
|
| 1046 | - } |
|
| 1047 | - |
|
| 1048 | - return $html; |
|
| 938 | + // check we have the post value |
|
| 939 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 940 | + else{ global $post;} |
|
| 941 | + |
|
| 942 | + if(!is_array($cf) && $cf!=''){ |
|
| 943 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 944 | + if(!$cf){return NULL;} |
|
| 945 | + } |
|
| 946 | + |
|
| 947 | + $html_var = $cf['htmlvar_name']; |
|
| 948 | + |
|
| 949 | + // Check if there is a location specific filter. |
|
| 950 | + if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){ |
|
| 951 | + /** |
|
| 952 | + * Filter the multiselect html by location. |
|
| 953 | + * |
|
| 954 | + * @param string $html The html to filter. |
|
| 955 | + * @param array $cf The custom field array. |
|
| 956 | + * @since 1.6.6 |
|
| 957 | + */ |
|
| 958 | + $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf); |
|
| 959 | + } |
|
| 960 | + |
|
| 961 | + // Check if there is a custom field specific filter. |
|
| 962 | + if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){ |
|
| 963 | + /** |
|
| 964 | + * Filter the multiselect html by individual custom field. |
|
| 965 | + * |
|
| 966 | + * @param string $html The html to filter. |
|
| 967 | + * @param string $location The location to output the html. |
|
| 968 | + * @param array $cf The custom field array. |
|
| 969 | + * @since 1.6.6 |
|
| 970 | + */ |
|
| 971 | + $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf); |
|
| 972 | + } |
|
| 973 | + |
|
| 974 | + // Check if there is a custom field key specific filter. |
|
| 975 | + if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){ |
|
| 976 | + /** |
|
| 977 | + * Filter the multiselect html by field type key. |
|
| 978 | + * |
|
| 979 | + * @param string $html The html to filter. |
|
| 980 | + * @param string $location The location to output the html. |
|
| 981 | + * @param array $cf The custom field array. |
|
| 982 | + * @since 1.6.6 |
|
| 983 | + */ |
|
| 984 | + $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 985 | + } |
|
| 986 | + |
|
| 987 | + // If not html then we run the standard output. |
|
| 988 | + if(empty($html)){ |
|
| 989 | + |
|
| 990 | + |
|
| 991 | + if (!empty($post->{$cf['htmlvar_name']})): |
|
| 992 | + |
|
| 993 | + if (is_array($post->{$cf['htmlvar_name']})) { |
|
| 994 | + $post->{$cf['htmlvar_name']} = implode(', ', $post->{$cf['htmlvar_name']}); |
|
| 995 | + } |
|
| 996 | + |
|
| 997 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 998 | + if (strpos($field_icon, 'http') !== false) { |
|
| 999 | + $field_icon_af = ''; |
|
| 1000 | + } elseif ($field_icon == '') { |
|
| 1001 | + $field_icon_af = ''; |
|
| 1002 | + } else { |
|
| 1003 | + $field_icon_af = $field_icon; |
|
| 1004 | + $field_icon = ''; |
|
| 1005 | + } |
|
| 1006 | + |
|
| 1007 | + $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ",")); |
|
| 1008 | + |
|
| 1009 | + if(is_array($field_values)){ |
|
| 1010 | + $field_values = array_map('trim', $field_values); |
|
| 1011 | + } |
|
| 1012 | + |
|
| 1013 | + $option_values = array(); |
|
| 1014 | + if (!empty($cf['option_values'])) { |
|
| 1015 | + $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 1016 | + |
|
| 1017 | + if (!empty($cf_option_values)) { |
|
| 1018 | + foreach ($cf_option_values as $cf_option_value) { |
|
| 1019 | + if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) { |
|
| 1020 | + $option_values[] = $cf_option_value['label']; |
|
| 1021 | + } |
|
| 1022 | + } |
|
| 1023 | + } |
|
| 1024 | + } |
|
| 1025 | + |
|
| 1026 | + |
|
| 1027 | + $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; |
|
| 1028 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1029 | + $html .= '</span>'; |
|
| 1030 | + |
|
| 1031 | + if (count($option_values) > 1) { |
|
| 1032 | + $html .= '<ul>'; |
|
| 1033 | + |
|
| 1034 | + foreach ($option_values as $val) { |
|
| 1035 | + $html .= '<li>' . $val . '</li>'; |
|
| 1036 | + } |
|
| 1037 | + |
|
| 1038 | + $html .= '</ul>'; |
|
| 1039 | + } else { |
|
| 1040 | + $html .= __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 1041 | + } |
|
| 1042 | + |
|
| 1043 | + $html .= '</div>'; |
|
| 1044 | + endif; |
|
| 1045 | + |
|
| 1046 | + } |
|
| 1047 | + |
|
| 1048 | + return $html; |
|
| 1049 | 1049 | } |
| 1050 | 1050 | add_filter('geodir_custom_field_output_multiselect','geodir_cf_multiselect',10,3); |
| 1051 | 1051 | |
@@ -1062,148 +1062,148 @@ discard block |
||
| 1062 | 1062 | */ |
| 1063 | 1063 | function geodir_cf_email($html,$location,$cf,$p=''){ |
| 1064 | 1064 | |
| 1065 | - // check we have the post value |
|
| 1066 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1067 | - else{ global $post;} |
|
| 1068 | - |
|
| 1069 | - if(!is_array($cf) && $cf!=''){ |
|
| 1070 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1071 | - if(!$cf){return NULL;} |
|
| 1072 | - } |
|
| 1073 | - |
|
| 1074 | - $html_var = $cf['htmlvar_name']; |
|
| 1075 | - |
|
| 1076 | - // Check if there is a location specific filter. |
|
| 1077 | - if(has_filter("geodir_custom_field_output_email_loc_{$location}")){ |
|
| 1078 | - /** |
|
| 1079 | - * Filter the email html by location. |
|
| 1080 | - * |
|
| 1081 | - * @param string $html The html to filter. |
|
| 1082 | - * @param array $cf The custom field array. |
|
| 1083 | - * @since 1.6.6 |
|
| 1084 | - */ |
|
| 1085 | - $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf); |
|
| 1086 | - } |
|
| 1087 | - |
|
| 1088 | - // Check if there is a custom field specific filter. |
|
| 1089 | - if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){ |
|
| 1090 | - /** |
|
| 1091 | - * Filter the email html by individual custom field. |
|
| 1092 | - * |
|
| 1093 | - * @param string $html The html to filter. |
|
| 1094 | - * @param string $location The location to output the html. |
|
| 1095 | - * @param array $cf The custom field array. |
|
| 1096 | - * @since 1.6.6 |
|
| 1097 | - */ |
|
| 1098 | - $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf); |
|
| 1099 | - } |
|
| 1100 | - |
|
| 1101 | - // Check if there is a custom field key specific filter. |
|
| 1102 | - if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){ |
|
| 1103 | - /** |
|
| 1104 | - * Filter the email html by field type key. |
|
| 1105 | - * |
|
| 1106 | - * @param string $html The html to filter. |
|
| 1107 | - * @param string $location The location to output the html. |
|
| 1108 | - * @param array $cf The custom field array. |
|
| 1109 | - * @since 1.6.6 |
|
| 1110 | - */ |
|
| 1111 | - $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1112 | - } |
|
| 1113 | - |
|
| 1114 | - // If not html then we run the standard output. |
|
| 1115 | - if(empty($html)){ |
|
| 1116 | - |
|
| 1117 | - global $preview; |
|
| 1118 | - if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) { |
|
| 1119 | - return ''; // Remove Send Enquiry from listings page |
|
| 1120 | - } |
|
| 1121 | - |
|
| 1122 | - $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1123 | - |
|
| 1124 | - if ($cf['htmlvar_name'] == 'geodir_email' && $post->{$cf['htmlvar_name']}) { |
|
| 1125 | - $b_send_inquiry = ''; |
|
| 1126 | - |
|
| 1127 | - $html = ''; |
|
| 1128 | - if (!$preview) { |
|
| 1129 | - $b_send_inquiry = 'b_send_inquiry'; |
|
| 1130 | - $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1131 | - } |
|
| 1132 | - |
|
| 1133 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1134 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1135 | - $field_icon_af = ''; |
|
| 1136 | - } elseif ($field_icon == '') { |
|
| 1137 | - $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1138 | - } else { |
|
| 1139 | - $field_icon_af = $field_icon; |
|
| 1140 | - $field_icon = ''; |
|
| 1141 | - } |
|
| 1142 | - |
|
| 1143 | - $html .= '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1144 | - $seperator = ''; |
|
| 1145 | - if ($post->{$cf['htmlvar_name']}) { |
|
| 1146 | - $b_send_inquiry_url = apply_filters('b_send_inquiry_url', 'javascript:void(0);'); |
|
| 1147 | - $html .= '<a href="'.$b_send_inquiry_url.'" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>'; |
|
| 1148 | - } |
|
| 1149 | - |
|
| 1150 | - $html .= '</span></div>'; |
|
| 1151 | - |
|
| 1152 | - |
|
| 1153 | - if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') { |
|
| 1154 | - $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>'; |
|
| 1155 | - } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') { |
|
| 1156 | - $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>'; |
|
| 1157 | - } |
|
| 1158 | - |
|
| 1159 | - /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/ |
|
| 1160 | - |
|
| 1161 | - } else { |
|
| 1162 | - |
|
| 1163 | - if ($post->{$cf['htmlvar_name']}) { |
|
| 1164 | - |
|
| 1165 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1166 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1167 | - $field_icon_af = ''; |
|
| 1168 | - } elseif ($field_icon == '') { |
|
| 1169 | - $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1170 | - } else { |
|
| 1171 | - $field_icon_af = $field_icon; |
|
| 1172 | - $field_icon = ''; |
|
| 1173 | - } |
|
| 1174 | - |
|
| 1175 | - |
|
| 1176 | - $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; |
|
| 1177 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1178 | - $html .= '</span><span class="geodir-email-address-output">'; |
|
| 1179 | - $email = $post->{$cf['htmlvar_name']} ; |
|
| 1180 | - if($e_split = explode('@',$email)){ |
|
| 1181 | - /** |
|
| 1182 | - * Filter email custom field name output. |
|
| 1183 | - * |
|
| 1184 | - * @since 1.5.3 |
|
| 1185 | - * |
|
| 1186 | - * @param string $email The email string being output. |
|
| 1187 | - * @param array $cf Custom field variables array. |
|
| 1188 | - */ |
|
| 1189 | - $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
|
| 1190 | - if($location=='mapbubble'){ |
|
| 1191 | - $html .= "<a href=\"mailto:$email\">$email_name</a>"; |
|
| 1192 | - }else{ |
|
| 1193 | - $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1194 | - } |
|
| 1195 | - |
|
| 1196 | - }else{ |
|
| 1197 | - $html .= $email; |
|
| 1198 | - } |
|
| 1199 | - $html .= '</span></div>'; |
|
| 1200 | - } |
|
| 1201 | - |
|
| 1202 | - } |
|
| 1203 | - |
|
| 1204 | - } |
|
| 1205 | - |
|
| 1206 | - return $html; |
|
| 1065 | + // check we have the post value |
|
| 1066 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1067 | + else{ global $post;} |
|
| 1068 | + |
|
| 1069 | + if(!is_array($cf) && $cf!=''){ |
|
| 1070 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1071 | + if(!$cf){return NULL;} |
|
| 1072 | + } |
|
| 1073 | + |
|
| 1074 | + $html_var = $cf['htmlvar_name']; |
|
| 1075 | + |
|
| 1076 | + // Check if there is a location specific filter. |
|
| 1077 | + if(has_filter("geodir_custom_field_output_email_loc_{$location}")){ |
|
| 1078 | + /** |
|
| 1079 | + * Filter the email html by location. |
|
| 1080 | + * |
|
| 1081 | + * @param string $html The html to filter. |
|
| 1082 | + * @param array $cf The custom field array. |
|
| 1083 | + * @since 1.6.6 |
|
| 1084 | + */ |
|
| 1085 | + $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf); |
|
| 1086 | + } |
|
| 1087 | + |
|
| 1088 | + // Check if there is a custom field specific filter. |
|
| 1089 | + if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){ |
|
| 1090 | + /** |
|
| 1091 | + * Filter the email html by individual custom field. |
|
| 1092 | + * |
|
| 1093 | + * @param string $html The html to filter. |
|
| 1094 | + * @param string $location The location to output the html. |
|
| 1095 | + * @param array $cf The custom field array. |
|
| 1096 | + * @since 1.6.6 |
|
| 1097 | + */ |
|
| 1098 | + $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf); |
|
| 1099 | + } |
|
| 1100 | + |
|
| 1101 | + // Check if there is a custom field key specific filter. |
|
| 1102 | + if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){ |
|
| 1103 | + /** |
|
| 1104 | + * Filter the email html by field type key. |
|
| 1105 | + * |
|
| 1106 | + * @param string $html The html to filter. |
|
| 1107 | + * @param string $location The location to output the html. |
|
| 1108 | + * @param array $cf The custom field array. |
|
| 1109 | + * @since 1.6.6 |
|
| 1110 | + */ |
|
| 1111 | + $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1112 | + } |
|
| 1113 | + |
|
| 1114 | + // If not html then we run the standard output. |
|
| 1115 | + if(empty($html)){ |
|
| 1116 | + |
|
| 1117 | + global $preview; |
|
| 1118 | + if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) { |
|
| 1119 | + return ''; // Remove Send Enquiry from listings page |
|
| 1120 | + } |
|
| 1121 | + |
|
| 1122 | + $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1123 | + |
|
| 1124 | + if ($cf['htmlvar_name'] == 'geodir_email' && $post->{$cf['htmlvar_name']}) { |
|
| 1125 | + $b_send_inquiry = ''; |
|
| 1126 | + |
|
| 1127 | + $html = ''; |
|
| 1128 | + if (!$preview) { |
|
| 1129 | + $b_send_inquiry = 'b_send_inquiry'; |
|
| 1130 | + $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1131 | + } |
|
| 1132 | + |
|
| 1133 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1134 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1135 | + $field_icon_af = ''; |
|
| 1136 | + } elseif ($field_icon == '') { |
|
| 1137 | + $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1138 | + } else { |
|
| 1139 | + $field_icon_af = $field_icon; |
|
| 1140 | + $field_icon = ''; |
|
| 1141 | + } |
|
| 1142 | + |
|
| 1143 | + $html .= '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1144 | + $seperator = ''; |
|
| 1145 | + if ($post->{$cf['htmlvar_name']}) { |
|
| 1146 | + $b_send_inquiry_url = apply_filters('b_send_inquiry_url', 'javascript:void(0);'); |
|
| 1147 | + $html .= '<a href="'.$b_send_inquiry_url.'" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>'; |
|
| 1148 | + } |
|
| 1149 | + |
|
| 1150 | + $html .= '</span></div>'; |
|
| 1151 | + |
|
| 1152 | + |
|
| 1153 | + if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') { |
|
| 1154 | + $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>'; |
|
| 1155 | + } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') { |
|
| 1156 | + $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>'; |
|
| 1157 | + } |
|
| 1158 | + |
|
| 1159 | + /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/ |
|
| 1160 | + |
|
| 1161 | + } else { |
|
| 1162 | + |
|
| 1163 | + if ($post->{$cf['htmlvar_name']}) { |
|
| 1164 | + |
|
| 1165 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1166 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1167 | + $field_icon_af = ''; |
|
| 1168 | + } elseif ($field_icon == '') { |
|
| 1169 | + $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1170 | + } else { |
|
| 1171 | + $field_icon_af = $field_icon; |
|
| 1172 | + $field_icon = ''; |
|
| 1173 | + } |
|
| 1174 | + |
|
| 1175 | + |
|
| 1176 | + $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; |
|
| 1177 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1178 | + $html .= '</span><span class="geodir-email-address-output">'; |
|
| 1179 | + $email = $post->{$cf['htmlvar_name']} ; |
|
| 1180 | + if($e_split = explode('@',$email)){ |
|
| 1181 | + /** |
|
| 1182 | + * Filter email custom field name output. |
|
| 1183 | + * |
|
| 1184 | + * @since 1.5.3 |
|
| 1185 | + * |
|
| 1186 | + * @param string $email The email string being output. |
|
| 1187 | + * @param array $cf Custom field variables array. |
|
| 1188 | + */ |
|
| 1189 | + $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
|
| 1190 | + if($location=='mapbubble'){ |
|
| 1191 | + $html .= "<a href=\"mailto:$email\">$email_name</a>"; |
|
| 1192 | + }else{ |
|
| 1193 | + $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1194 | + } |
|
| 1195 | + |
|
| 1196 | + }else{ |
|
| 1197 | + $html .= $email; |
|
| 1198 | + } |
|
| 1199 | + $html .= '</span></div>'; |
|
| 1200 | + } |
|
| 1201 | + |
|
| 1202 | + } |
|
| 1203 | + |
|
| 1204 | + } |
|
| 1205 | + |
|
| 1206 | + return $html; |
|
| 1207 | 1207 | } |
| 1208 | 1208 | add_filter('geodir_custom_field_output_email','geodir_cf_email',10,3); |
| 1209 | 1209 | |
@@ -1220,136 +1220,136 @@ discard block |
||
| 1220 | 1220 | */ |
| 1221 | 1221 | function geodir_cf_file($html,$location,$cf,$p=''){ |
| 1222 | 1222 | |
| 1223 | - // check we have the post value |
|
| 1224 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1225 | - else{ global $post;} |
|
| 1226 | - |
|
| 1227 | - if(!is_array($cf) && $cf!=''){ |
|
| 1228 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1229 | - if(!$cf){return NULL;} |
|
| 1230 | - } |
|
| 1231 | - |
|
| 1232 | - $html_var = $cf['htmlvar_name']; |
|
| 1233 | - |
|
| 1234 | - // Check if there is a location specific filter. |
|
| 1235 | - if(has_filter("geodir_custom_field_output_file_loc_{$location}")){ |
|
| 1236 | - /** |
|
| 1237 | - * Filter the file html by location. |
|
| 1238 | - * |
|
| 1239 | - * @param string $html The html to filter. |
|
| 1240 | - * @param array $cf The custom field array. |
|
| 1241 | - * @since 1.6.6 |
|
| 1242 | - */ |
|
| 1243 | - $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf); |
|
| 1244 | - } |
|
| 1245 | - |
|
| 1246 | - // Check if there is a custom field specific filter. |
|
| 1247 | - if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){ |
|
| 1248 | - /** |
|
| 1249 | - * Filter the file html by individual custom field. |
|
| 1250 | - * |
|
| 1251 | - * @param string $html The html to filter. |
|
| 1252 | - * @param string $location The location to output the html. |
|
| 1253 | - * @param array $cf The custom field array. |
|
| 1254 | - * @since 1.6.6 |
|
| 1255 | - */ |
|
| 1256 | - $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf); |
|
| 1257 | - } |
|
| 1258 | - |
|
| 1259 | - // Check if there is a custom field key specific filter. |
|
| 1260 | - if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){ |
|
| 1261 | - /** |
|
| 1262 | - * Filter the file html by field type key. |
|
| 1263 | - * |
|
| 1264 | - * @param string $html The html to filter. |
|
| 1265 | - * @param string $location The location to output the html. |
|
| 1266 | - * @param array $cf The custom field array. |
|
| 1267 | - * @since 1.6.6 |
|
| 1268 | - */ |
|
| 1269 | - $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1270 | - } |
|
| 1271 | - |
|
| 1272 | - // If not html then we run the standard output. |
|
| 1273 | - if(empty($html)){ |
|
| 1274 | - |
|
| 1275 | - if (!empty($post->{$cf['htmlvar_name']})): |
|
| 1276 | - |
|
| 1277 | - $files = explode(",", $post->{$cf['htmlvar_name']}); |
|
| 1278 | - if (!empty($files)): |
|
| 1279 | - |
|
| 1280 | - $extra_fields = !empty($cf['extra_fields']) ? stripslashes_deep(maybe_unserialize($cf['extra_fields'])) : NULL; |
|
| 1281 | - $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'] : ''; |
|
| 1282 | - |
|
| 1283 | - $file_paths = ''; |
|
| 1284 | - foreach ($files as $file) { |
|
| 1285 | - if (!empty($file)) { |
|
| 1286 | - |
|
| 1287 | - // $filetype = wp_check_filetype($file); |
|
| 1288 | - |
|
| 1289 | - $image_name_arr = explode('/', $file); |
|
| 1290 | - $curr_img_dir = $image_name_arr[count($image_name_arr) - 2]; |
|
| 1291 | - $filename = end($image_name_arr); |
|
| 1292 | - $img_name_arr = explode('.', $filename); |
|
| 1293 | - |
|
| 1294 | - $arr_file_type = wp_check_filetype($filename); |
|
| 1295 | - if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) { |
|
| 1296 | - continue; |
|
| 1297 | - } |
|
| 1298 | - |
|
| 1299 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 1300 | - $uploaded_file_ext = $arr_file_type['ext']; |
|
| 1301 | - |
|
| 1302 | - if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) { |
|
| 1303 | - continue; // Invalid file type. |
|
| 1304 | - } |
|
| 1305 | - |
|
| 1306 | - //$allowed_file_types = array('application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain'); |
|
| 1307 | - $image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon'); |
|
| 1308 | - $audio_file_types = array('audio/mpeg', 'audio/ogg', 'audio/mp4', 'audio/vnd.wav', 'audio/basic', 'audio/mid'); |
|
| 1309 | - |
|
| 1310 | - // If the uploaded file is image |
|
| 1311 | - if (in_array($uploaded_file_type, $image_file_types)) { |
|
| 1312 | - $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">'; |
|
| 1313 | - $file_paths .= '<a href="'.$file.'">'; |
|
| 1314 | - $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false); |
|
| 1315 | - $file_paths .= '</a>'; |
|
| 1316 | - //$file_paths .= '<img src="'.$file.'" />'; |
|
| 1317 | - $file_paths .= '</div>'; |
|
| 1318 | - }elseif (in_array($uploaded_file_type, $audio_file_types)) {// if audio |
|
| 1319 | - $ext_path = '_' . $html_var . '_'; |
|
| 1320 | - $filename = explode($ext_path, $filename); |
|
| 1321 | - $file_paths .= '<span class="gd-audio-name">'.$filename[count($filename) - 1].'</span>'; |
|
| 1322 | - $file_paths .= do_shortcode('[audio src="'.$file.'" ]'); |
|
| 1323 | - } else { |
|
| 1324 | - $ext_path = '_' . $html_var . '_'; |
|
| 1325 | - $filename = explode($ext_path, $filename); |
|
| 1326 | - $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>'; |
|
| 1327 | - } |
|
| 1328 | - } |
|
| 1329 | - } |
|
| 1330 | - |
|
| 1331 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1332 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1333 | - $field_icon_af = ''; |
|
| 1334 | - } elseif ($field_icon == '') { |
|
| 1335 | - $field_icon_af = ''; |
|
| 1336 | - } else { |
|
| 1337 | - $field_icon_af = $field_icon; |
|
| 1338 | - $field_icon = ''; |
|
| 1339 | - } |
|
| 1340 | - |
|
| 1341 | - $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; |
|
| 1342 | - $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">'; |
|
| 1343 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1344 | - $html .= '</span>'; |
|
| 1345 | - $html .= $file_paths . '</div></div>'; |
|
| 1346 | - |
|
| 1347 | - endif; |
|
| 1348 | - endif; |
|
| 1349 | - |
|
| 1350 | - } |
|
| 1351 | - |
|
| 1352 | - return $html; |
|
| 1223 | + // check we have the post value |
|
| 1224 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1225 | + else{ global $post;} |
|
| 1226 | + |
|
| 1227 | + if(!is_array($cf) && $cf!=''){ |
|
| 1228 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1229 | + if(!$cf){return NULL;} |
|
| 1230 | + } |
|
| 1231 | + |
|
| 1232 | + $html_var = $cf['htmlvar_name']; |
|
| 1233 | + |
|
| 1234 | + // Check if there is a location specific filter. |
|
| 1235 | + if(has_filter("geodir_custom_field_output_file_loc_{$location}")){ |
|
| 1236 | + /** |
|
| 1237 | + * Filter the file html by location. |
|
| 1238 | + * |
|
| 1239 | + * @param string $html The html to filter. |
|
| 1240 | + * @param array $cf The custom field array. |
|
| 1241 | + * @since 1.6.6 |
|
| 1242 | + */ |
|
| 1243 | + $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf); |
|
| 1244 | + } |
|
| 1245 | + |
|
| 1246 | + // Check if there is a custom field specific filter. |
|
| 1247 | + if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){ |
|
| 1248 | + /** |
|
| 1249 | + * Filter the file html by individual custom field. |
|
| 1250 | + * |
|
| 1251 | + * @param string $html The html to filter. |
|
| 1252 | + * @param string $location The location to output the html. |
|
| 1253 | + * @param array $cf The custom field array. |
|
| 1254 | + * @since 1.6.6 |
|
| 1255 | + */ |
|
| 1256 | + $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf); |
|
| 1257 | + } |
|
| 1258 | + |
|
| 1259 | + // Check if there is a custom field key specific filter. |
|
| 1260 | + if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){ |
|
| 1261 | + /** |
|
| 1262 | + * Filter the file html by field type key. |
|
| 1263 | + * |
|
| 1264 | + * @param string $html The html to filter. |
|
| 1265 | + * @param string $location The location to output the html. |
|
| 1266 | + * @param array $cf The custom field array. |
|
| 1267 | + * @since 1.6.6 |
|
| 1268 | + */ |
|
| 1269 | + $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1270 | + } |
|
| 1271 | + |
|
| 1272 | + // If not html then we run the standard output. |
|
| 1273 | + if(empty($html)){ |
|
| 1274 | + |
|
| 1275 | + if (!empty($post->{$cf['htmlvar_name']})): |
|
| 1276 | + |
|
| 1277 | + $files = explode(",", $post->{$cf['htmlvar_name']}); |
|
| 1278 | + if (!empty($files)): |
|
| 1279 | + |
|
| 1280 | + $extra_fields = !empty($cf['extra_fields']) ? stripslashes_deep(maybe_unserialize($cf['extra_fields'])) : NULL; |
|
| 1281 | + $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'] : ''; |
|
| 1282 | + |
|
| 1283 | + $file_paths = ''; |
|
| 1284 | + foreach ($files as $file) { |
|
| 1285 | + if (!empty($file)) { |
|
| 1286 | + |
|
| 1287 | + // $filetype = wp_check_filetype($file); |
|
| 1288 | + |
|
| 1289 | + $image_name_arr = explode('/', $file); |
|
| 1290 | + $curr_img_dir = $image_name_arr[count($image_name_arr) - 2]; |
|
| 1291 | + $filename = end($image_name_arr); |
|
| 1292 | + $img_name_arr = explode('.', $filename); |
|
| 1293 | + |
|
| 1294 | + $arr_file_type = wp_check_filetype($filename); |
|
| 1295 | + if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) { |
|
| 1296 | + continue; |
|
| 1297 | + } |
|
| 1298 | + |
|
| 1299 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 1300 | + $uploaded_file_ext = $arr_file_type['ext']; |
|
| 1301 | + |
|
| 1302 | + if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) { |
|
| 1303 | + continue; // Invalid file type. |
|
| 1304 | + } |
|
| 1305 | + |
|
| 1306 | + //$allowed_file_types = array('application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain'); |
|
| 1307 | + $image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon'); |
|
| 1308 | + $audio_file_types = array('audio/mpeg', 'audio/ogg', 'audio/mp4', 'audio/vnd.wav', 'audio/basic', 'audio/mid'); |
|
| 1309 | + |
|
| 1310 | + // If the uploaded file is image |
|
| 1311 | + if (in_array($uploaded_file_type, $image_file_types)) { |
|
| 1312 | + $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">'; |
|
| 1313 | + $file_paths .= '<a href="'.$file.'">'; |
|
| 1314 | + $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false); |
|
| 1315 | + $file_paths .= '</a>'; |
|
| 1316 | + //$file_paths .= '<img src="'.$file.'" />'; |
|
| 1317 | + $file_paths .= '</div>'; |
|
| 1318 | + }elseif (in_array($uploaded_file_type, $audio_file_types)) {// if audio |
|
| 1319 | + $ext_path = '_' . $html_var . '_'; |
|
| 1320 | + $filename = explode($ext_path, $filename); |
|
| 1321 | + $file_paths .= '<span class="gd-audio-name">'.$filename[count($filename) - 1].'</span>'; |
|
| 1322 | + $file_paths .= do_shortcode('[audio src="'.$file.'" ]'); |
|
| 1323 | + } else { |
|
| 1324 | + $ext_path = '_' . $html_var . '_'; |
|
| 1325 | + $filename = explode($ext_path, $filename); |
|
| 1326 | + $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>'; |
|
| 1327 | + } |
|
| 1328 | + } |
|
| 1329 | + } |
|
| 1330 | + |
|
| 1331 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1332 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1333 | + $field_icon_af = ''; |
|
| 1334 | + } elseif ($field_icon == '') { |
|
| 1335 | + $field_icon_af = ''; |
|
| 1336 | + } else { |
|
| 1337 | + $field_icon_af = $field_icon; |
|
| 1338 | + $field_icon = ''; |
|
| 1339 | + } |
|
| 1340 | + |
|
| 1341 | + $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; |
|
| 1342 | + $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">'; |
|
| 1343 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1344 | + $html .= '</span>'; |
|
| 1345 | + $html .= $file_paths . '</div></div>'; |
|
| 1346 | + |
|
| 1347 | + endif; |
|
| 1348 | + endif; |
|
| 1349 | + |
|
| 1350 | + } |
|
| 1351 | + |
|
| 1352 | + return $html; |
|
| 1353 | 1353 | } |
| 1354 | 1354 | add_filter('geodir_custom_field_output_file','geodir_cf_file',10,3); |
| 1355 | 1355 | |
@@ -1367,80 +1367,80 @@ discard block |
||
| 1367 | 1367 | */ |
| 1368 | 1368 | function geodir_cf_textarea($html,$location,$cf,$p=''){ |
| 1369 | 1369 | |
| 1370 | - // check we have the post value |
|
| 1371 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1372 | - else{ global $post;} |
|
| 1373 | - |
|
| 1374 | - if(!is_array($cf) && $cf!=''){ |
|
| 1375 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1376 | - if(!$cf){return NULL;} |
|
| 1377 | - } |
|
| 1378 | - |
|
| 1379 | - $html_var = $cf['htmlvar_name']; |
|
| 1380 | - |
|
| 1381 | - // Check if there is a location specific filter. |
|
| 1382 | - if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){ |
|
| 1383 | - /** |
|
| 1384 | - * Filter the textarea html by location. |
|
| 1385 | - * |
|
| 1386 | - * @param string $html The html to filter. |
|
| 1387 | - * @param array $cf The custom field array. |
|
| 1388 | - * @since 1.6.6 |
|
| 1389 | - */ |
|
| 1390 | - $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf); |
|
| 1391 | - } |
|
| 1392 | - |
|
| 1393 | - // Check if there is a custom field specific filter. |
|
| 1394 | - if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){ |
|
| 1395 | - /** |
|
| 1396 | - * Filter the textarea html by individual custom field. |
|
| 1397 | - * |
|
| 1398 | - * @param string $html The html to filter. |
|
| 1399 | - * @param string $location The location to output the html. |
|
| 1400 | - * @param array $cf The custom field array. |
|
| 1401 | - * @since 1.6.6 |
|
| 1402 | - */ |
|
| 1403 | - $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf); |
|
| 1404 | - } |
|
| 1405 | - |
|
| 1406 | - // Check if there is a custom field key specific filter. |
|
| 1407 | - if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){ |
|
| 1408 | - /** |
|
| 1409 | - * Filter the textarea html by field type key. |
|
| 1410 | - * |
|
| 1411 | - * @param string $html The html to filter. |
|
| 1412 | - * @param string $location The location to output the html. |
|
| 1413 | - * @param array $cf The custom field array. |
|
| 1414 | - * @since 1.6.6 |
|
| 1415 | - */ |
|
| 1416 | - $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1417 | - } |
|
| 1418 | - |
|
| 1419 | - // If not html then we run the standard output. |
|
| 1420 | - if(empty($html)){ |
|
| 1421 | - |
|
| 1422 | - if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1423 | - |
|
| 1424 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1425 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1426 | - $field_icon_af = ''; |
|
| 1427 | - } elseif ($field_icon == '') { |
|
| 1428 | - $field_icon_af = ''; |
|
| 1429 | - } else { |
|
| 1430 | - $field_icon_af = $field_icon; |
|
| 1431 | - $field_icon = ''; |
|
| 1432 | - } |
|
| 1433 | - |
|
| 1434 | - |
|
| 1435 | - $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; |
|
| 1436 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1437 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1438 | - |
|
| 1439 | - } |
|
| 1440 | - |
|
| 1441 | - } |
|
| 1442 | - |
|
| 1443 | - return $html; |
|
| 1370 | + // check we have the post value |
|
| 1371 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1372 | + else{ global $post;} |
|
| 1373 | + |
|
| 1374 | + if(!is_array($cf) && $cf!=''){ |
|
| 1375 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1376 | + if(!$cf){return NULL;} |
|
| 1377 | + } |
|
| 1378 | + |
|
| 1379 | + $html_var = $cf['htmlvar_name']; |
|
| 1380 | + |
|
| 1381 | + // Check if there is a location specific filter. |
|
| 1382 | + if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){ |
|
| 1383 | + /** |
|
| 1384 | + * Filter the textarea html by location. |
|
| 1385 | + * |
|
| 1386 | + * @param string $html The html to filter. |
|
| 1387 | + * @param array $cf The custom field array. |
|
| 1388 | + * @since 1.6.6 |
|
| 1389 | + */ |
|
| 1390 | + $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf); |
|
| 1391 | + } |
|
| 1392 | + |
|
| 1393 | + // Check if there is a custom field specific filter. |
|
| 1394 | + if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){ |
|
| 1395 | + /** |
|
| 1396 | + * Filter the textarea html by individual custom field. |
|
| 1397 | + * |
|
| 1398 | + * @param string $html The html to filter. |
|
| 1399 | + * @param string $location The location to output the html. |
|
| 1400 | + * @param array $cf The custom field array. |
|
| 1401 | + * @since 1.6.6 |
|
| 1402 | + */ |
|
| 1403 | + $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf); |
|
| 1404 | + } |
|
| 1405 | + |
|
| 1406 | + // Check if there is a custom field key specific filter. |
|
| 1407 | + if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){ |
|
| 1408 | + /** |
|
| 1409 | + * Filter the textarea html by field type key. |
|
| 1410 | + * |
|
| 1411 | + * @param string $html The html to filter. |
|
| 1412 | + * @param string $location The location to output the html. |
|
| 1413 | + * @param array $cf The custom field array. |
|
| 1414 | + * @since 1.6.6 |
|
| 1415 | + */ |
|
| 1416 | + $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1417 | + } |
|
| 1418 | + |
|
| 1419 | + // If not html then we run the standard output. |
|
| 1420 | + if(empty($html)){ |
|
| 1421 | + |
|
| 1422 | + if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1423 | + |
|
| 1424 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1425 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1426 | + $field_icon_af = ''; |
|
| 1427 | + } elseif ($field_icon == '') { |
|
| 1428 | + $field_icon_af = ''; |
|
| 1429 | + } else { |
|
| 1430 | + $field_icon_af = $field_icon; |
|
| 1431 | + $field_icon = ''; |
|
| 1432 | + } |
|
| 1433 | + |
|
| 1434 | + |
|
| 1435 | + $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; |
|
| 1436 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1437 | + $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1438 | + |
|
| 1439 | + } |
|
| 1440 | + |
|
| 1441 | + } |
|
| 1442 | + |
|
| 1443 | + return $html; |
|
| 1444 | 1444 | } |
| 1445 | 1445 | add_filter('geodir_custom_field_output_textarea','geodir_cf_textarea',10,3); |
| 1446 | 1446 | |
@@ -1458,79 +1458,79 @@ discard block |
||
| 1458 | 1458 | */ |
| 1459 | 1459 | function geodir_cf_html($html,$location,$cf,$p=''){ |
| 1460 | 1460 | |
| 1461 | - // check we have the post value |
|
| 1462 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1463 | - else{ global $post;} |
|
| 1464 | - |
|
| 1465 | - if(!is_array($cf) && $cf!=''){ |
|
| 1466 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1467 | - if(!$cf){return NULL;} |
|
| 1468 | - } |
|
| 1469 | - |
|
| 1470 | - $html_var = $cf['htmlvar_name']; |
|
| 1471 | - |
|
| 1472 | - // Check if there is a location specific filter. |
|
| 1473 | - if(has_filter("geodir_custom_field_output_html_loc_{$location}")){ |
|
| 1474 | - /** |
|
| 1475 | - * Filter the html html by location. |
|
| 1476 | - * |
|
| 1477 | - * @param string $html The html to filter. |
|
| 1478 | - * @param array $cf The custom field array. |
|
| 1479 | - * @since 1.6.6 |
|
| 1480 | - */ |
|
| 1481 | - $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf); |
|
| 1482 | - } |
|
| 1483 | - |
|
| 1484 | - // Check if there is a custom field specific filter. |
|
| 1485 | - if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){ |
|
| 1486 | - /** |
|
| 1487 | - * Filter the html html by individual custom field. |
|
| 1488 | - * |
|
| 1489 | - * @param string $html The html to filter. |
|
| 1490 | - * @param string $location The location to output the html. |
|
| 1491 | - * @param array $cf The custom field array. |
|
| 1492 | - * @since 1.6.6 |
|
| 1493 | - */ |
|
| 1494 | - $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf); |
|
| 1495 | - } |
|
| 1496 | - |
|
| 1497 | - // Check if there is a custom field key specific filter. |
|
| 1498 | - if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){ |
|
| 1499 | - /** |
|
| 1500 | - * Filter the html html by field type key. |
|
| 1501 | - * |
|
| 1502 | - * @param string $html The html to filter. |
|
| 1503 | - * @param string $location The location to output the html. |
|
| 1504 | - * @param array $cf The custom field array. |
|
| 1505 | - * @since 1.6.6 |
|
| 1506 | - */ |
|
| 1507 | - $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1508 | - } |
|
| 1509 | - |
|
| 1510 | - // If not html then we run the standard output. |
|
| 1511 | - if(empty($html)){ |
|
| 1512 | - |
|
| 1513 | - if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1514 | - |
|
| 1515 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1516 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1517 | - $field_icon_af = ''; |
|
| 1518 | - } elseif ($field_icon == '') { |
|
| 1519 | - $field_icon_af = ''; |
|
| 1520 | - } else { |
|
| 1521 | - $field_icon_af = $field_icon; |
|
| 1522 | - $field_icon = ''; |
|
| 1523 | - } |
|
| 1524 | - |
|
| 1525 | - $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; |
|
| 1526 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1527 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1528 | - |
|
| 1529 | - } |
|
| 1530 | - |
|
| 1531 | - } |
|
| 1532 | - |
|
| 1533 | - return $html; |
|
| 1461 | + // check we have the post value |
|
| 1462 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1463 | + else{ global $post;} |
|
| 1464 | + |
|
| 1465 | + if(!is_array($cf) && $cf!=''){ |
|
| 1466 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1467 | + if(!$cf){return NULL;} |
|
| 1468 | + } |
|
| 1469 | + |
|
| 1470 | + $html_var = $cf['htmlvar_name']; |
|
| 1471 | + |
|
| 1472 | + // Check if there is a location specific filter. |
|
| 1473 | + if(has_filter("geodir_custom_field_output_html_loc_{$location}")){ |
|
| 1474 | + /** |
|
| 1475 | + * Filter the html html by location. |
|
| 1476 | + * |
|
| 1477 | + * @param string $html The html to filter. |
|
| 1478 | + * @param array $cf The custom field array. |
|
| 1479 | + * @since 1.6.6 |
|
| 1480 | + */ |
|
| 1481 | + $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf); |
|
| 1482 | + } |
|
| 1483 | + |
|
| 1484 | + // Check if there is a custom field specific filter. |
|
| 1485 | + if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){ |
|
| 1486 | + /** |
|
| 1487 | + * Filter the html html by individual custom field. |
|
| 1488 | + * |
|
| 1489 | + * @param string $html The html to filter. |
|
| 1490 | + * @param string $location The location to output the html. |
|
| 1491 | + * @param array $cf The custom field array. |
|
| 1492 | + * @since 1.6.6 |
|
| 1493 | + */ |
|
| 1494 | + $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf); |
|
| 1495 | + } |
|
| 1496 | + |
|
| 1497 | + // Check if there is a custom field key specific filter. |
|
| 1498 | + if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){ |
|
| 1499 | + /** |
|
| 1500 | + * Filter the html html by field type key. |
|
| 1501 | + * |
|
| 1502 | + * @param string $html The html to filter. |
|
| 1503 | + * @param string $location The location to output the html. |
|
| 1504 | + * @param array $cf The custom field array. |
|
| 1505 | + * @since 1.6.6 |
|
| 1506 | + */ |
|
| 1507 | + $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1508 | + } |
|
| 1509 | + |
|
| 1510 | + // If not html then we run the standard output. |
|
| 1511 | + if(empty($html)){ |
|
| 1512 | + |
|
| 1513 | + if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1514 | + |
|
| 1515 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1516 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1517 | + $field_icon_af = ''; |
|
| 1518 | + } elseif ($field_icon == '') { |
|
| 1519 | + $field_icon_af = ''; |
|
| 1520 | + } else { |
|
| 1521 | + $field_icon_af = $field_icon; |
|
| 1522 | + $field_icon = ''; |
|
| 1523 | + } |
|
| 1524 | + |
|
| 1525 | + $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; |
|
| 1526 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1527 | + $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1528 | + |
|
| 1529 | + } |
|
| 1530 | + |
|
| 1531 | + } |
|
| 1532 | + |
|
| 1533 | + return $html; |
|
| 1534 | 1534 | } |
| 1535 | 1535 | add_filter('geodir_custom_field_output_html','geodir_cf_html',10,3); |
| 1536 | 1536 | |
@@ -1548,113 +1548,113 @@ discard block |
||
| 1548 | 1548 | */ |
| 1549 | 1549 | function geodir_cf_taxonomy($html,$location,$cf,$p=''){ |
| 1550 | 1550 | |
| 1551 | - // check we have the post value |
|
| 1552 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1553 | - else{ global $post;} |
|
| 1554 | - |
|
| 1555 | - if(!is_array($cf) && $cf!=''){ |
|
| 1556 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1557 | - if(!$cf){return NULL;} |
|
| 1558 | - } |
|
| 1559 | - |
|
| 1560 | - $html_var = $cf['htmlvar_name']; |
|
| 1561 | - |
|
| 1562 | - // Check if there is a location specific filter. |
|
| 1563 | - if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){ |
|
| 1564 | - /** |
|
| 1565 | - * Filter the taxonomy html by location. |
|
| 1566 | - * |
|
| 1567 | - * @param string $html The html to filter. |
|
| 1568 | - * @param array $cf The custom field array. |
|
| 1569 | - * @since 1.6.6 |
|
| 1570 | - */ |
|
| 1571 | - $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf); |
|
| 1572 | - } |
|
| 1573 | - |
|
| 1574 | - // Check if there is a custom field specific filter. |
|
| 1575 | - if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){ |
|
| 1576 | - /** |
|
| 1577 | - * Filter the taxonomy html by individual custom field. |
|
| 1578 | - * |
|
| 1579 | - * @param string $html The html to filter. |
|
| 1580 | - * @param string $location The location to output the html. |
|
| 1581 | - * @param array $cf The custom field array. |
|
| 1582 | - * @since 1.6.6 |
|
| 1583 | - */ |
|
| 1584 | - $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf); |
|
| 1585 | - } |
|
| 1586 | - |
|
| 1587 | - // Check if there is a custom field key specific filter. |
|
| 1588 | - if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){ |
|
| 1589 | - /** |
|
| 1590 | - * Filter the taxonomy html by field type key. |
|
| 1591 | - * |
|
| 1592 | - * @param string $html The html to filter. |
|
| 1593 | - * @param string $location The location to output the html. |
|
| 1594 | - * @param array $cf The custom field array. |
|
| 1595 | - * @since 1.6.6 |
|
| 1596 | - */ |
|
| 1597 | - $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1598 | - } |
|
| 1599 | - |
|
| 1600 | - // If not html then we run the standard output. |
|
| 1601 | - if(empty($html)){ |
|
| 1602 | - |
|
| 1603 | - if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) { |
|
| 1604 | - $post_taxonomy = $post->post_type . 'category'; |
|
| 1605 | - $field_value = $post->{$html_var}; |
|
| 1606 | - $links = array(); |
|
| 1607 | - $terms = array(); |
|
| 1608 | - $termsOrdered = array(); |
|
| 1609 | - if (!is_array($field_value)) { |
|
| 1610 | - $field_value = explode(",", trim($field_value, ",")); |
|
| 1611 | - } |
|
| 1612 | - |
|
| 1613 | - $field_value = array_unique($field_value); |
|
| 1614 | - |
|
| 1615 | - if (!empty($field_value)) { |
|
| 1616 | - foreach ($field_value as $term) { |
|
| 1617 | - $term = trim($term); |
|
| 1618 | - |
|
| 1619 | - if ($term != '') { |
|
| 1620 | - $term = get_term_by('id', $term, $html_var); |
|
| 1621 | - if (is_object($term)) { |
|
| 1622 | - $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>"; |
|
| 1623 | - $terms[] = $term; |
|
| 1624 | - } |
|
| 1625 | - } |
|
| 1626 | - } |
|
| 1627 | - if (!empty($links)) { |
|
| 1628 | - // order alphabetically |
|
| 1629 | - asort($links); |
|
| 1630 | - foreach (array_keys($links) as $key) { |
|
| 1631 | - $termsOrdered[$key] = $terms[$key]; |
|
| 1632 | - } |
|
| 1633 | - $terms = $termsOrdered; |
|
| 1634 | - } |
|
| 1635 | - } |
|
| 1636 | - $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : ''; |
|
| 1637 | - |
|
| 1638 | - if ($html_value != '') { |
|
| 1639 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1640 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1641 | - $field_icon_af = ''; |
|
| 1642 | - } else if ($field_icon == '') { |
|
| 1643 | - $field_icon_af = ''; |
|
| 1644 | - } else { |
|
| 1645 | - $field_icon_af = $field_icon; |
|
| 1646 | - $field_icon = ''; |
|
| 1647 | - } |
|
| 1648 | - |
|
| 1649 | - $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; |
|
| 1650 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1651 | - $html .= '</span> ' . $html_value . '</div>'; |
|
| 1652 | - } |
|
| 1653 | - } |
|
| 1654 | - |
|
| 1655 | - } |
|
| 1656 | - |
|
| 1657 | - return $html; |
|
| 1551 | + // check we have the post value |
|
| 1552 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1553 | + else{ global $post;} |
|
| 1554 | + |
|
| 1555 | + if(!is_array($cf) && $cf!=''){ |
|
| 1556 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1557 | + if(!$cf){return NULL;} |
|
| 1558 | + } |
|
| 1559 | + |
|
| 1560 | + $html_var = $cf['htmlvar_name']; |
|
| 1561 | + |
|
| 1562 | + // Check if there is a location specific filter. |
|
| 1563 | + if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){ |
|
| 1564 | + /** |
|
| 1565 | + * Filter the taxonomy html by location. |
|
| 1566 | + * |
|
| 1567 | + * @param string $html The html to filter. |
|
| 1568 | + * @param array $cf The custom field array. |
|
| 1569 | + * @since 1.6.6 |
|
| 1570 | + */ |
|
| 1571 | + $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf); |
|
| 1572 | + } |
|
| 1573 | + |
|
| 1574 | + // Check if there is a custom field specific filter. |
|
| 1575 | + if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){ |
|
| 1576 | + /** |
|
| 1577 | + * Filter the taxonomy html by individual custom field. |
|
| 1578 | + * |
|
| 1579 | + * @param string $html The html to filter. |
|
| 1580 | + * @param string $location The location to output the html. |
|
| 1581 | + * @param array $cf The custom field array. |
|
| 1582 | + * @since 1.6.6 |
|
| 1583 | + */ |
|
| 1584 | + $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf); |
|
| 1585 | + } |
|
| 1586 | + |
|
| 1587 | + // Check if there is a custom field key specific filter. |
|
| 1588 | + if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){ |
|
| 1589 | + /** |
|
| 1590 | + * Filter the taxonomy html by field type key. |
|
| 1591 | + * |
|
| 1592 | + * @param string $html The html to filter. |
|
| 1593 | + * @param string $location The location to output the html. |
|
| 1594 | + * @param array $cf The custom field array. |
|
| 1595 | + * @since 1.6.6 |
|
| 1596 | + */ |
|
| 1597 | + $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1598 | + } |
|
| 1599 | + |
|
| 1600 | + // If not html then we run the standard output. |
|
| 1601 | + if(empty($html)){ |
|
| 1602 | + |
|
| 1603 | + if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) { |
|
| 1604 | + $post_taxonomy = $post->post_type . 'category'; |
|
| 1605 | + $field_value = $post->{$html_var}; |
|
| 1606 | + $links = array(); |
|
| 1607 | + $terms = array(); |
|
| 1608 | + $termsOrdered = array(); |
|
| 1609 | + if (!is_array($field_value)) { |
|
| 1610 | + $field_value = explode(",", trim($field_value, ",")); |
|
| 1611 | + } |
|
| 1612 | + |
|
| 1613 | + $field_value = array_unique($field_value); |
|
| 1614 | + |
|
| 1615 | + if (!empty($field_value)) { |
|
| 1616 | + foreach ($field_value as $term) { |
|
| 1617 | + $term = trim($term); |
|
| 1618 | + |
|
| 1619 | + if ($term != '') { |
|
| 1620 | + $term = get_term_by('id', $term, $html_var); |
|
| 1621 | + if (is_object($term)) { |
|
| 1622 | + $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>"; |
|
| 1623 | + $terms[] = $term; |
|
| 1624 | + } |
|
| 1625 | + } |
|
| 1626 | + } |
|
| 1627 | + if (!empty($links)) { |
|
| 1628 | + // order alphabetically |
|
| 1629 | + asort($links); |
|
| 1630 | + foreach (array_keys($links) as $key) { |
|
| 1631 | + $termsOrdered[$key] = $terms[$key]; |
|
| 1632 | + } |
|
| 1633 | + $terms = $termsOrdered; |
|
| 1634 | + } |
|
| 1635 | + } |
|
| 1636 | + $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : ''; |
|
| 1637 | + |
|
| 1638 | + if ($html_value != '') { |
|
| 1639 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1640 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1641 | + $field_icon_af = ''; |
|
| 1642 | + } else if ($field_icon == '') { |
|
| 1643 | + $field_icon_af = ''; |
|
| 1644 | + } else { |
|
| 1645 | + $field_icon_af = $field_icon; |
|
| 1646 | + $field_icon = ''; |
|
| 1647 | + } |
|
| 1648 | + |
|
| 1649 | + $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; |
|
| 1650 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1651 | + $html .= '</span> ' . $html_value . '</div>'; |
|
| 1652 | + } |
|
| 1653 | + } |
|
| 1654 | + |
|
| 1655 | + } |
|
| 1656 | + |
|
| 1657 | + return $html; |
|
| 1658 | 1658 | } |
| 1659 | 1659 | add_filter('geodir_custom_field_output_taxonomy','geodir_cf_taxonomy',10,3); |
| 1660 | 1660 | |
@@ -1672,176 +1672,176 @@ discard block |
||
| 1672 | 1672 | */ |
| 1673 | 1673 | function geodir_cf_address($html,$location,$cf,$p=''){ |
| 1674 | 1674 | |
| 1675 | - // check we have the post value |
|
| 1676 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1677 | - else{ global $post;} |
|
| 1678 | - |
|
| 1679 | - if(!is_array($cf) && $cf!=''){ |
|
| 1680 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1681 | - if(!$cf){return NULL;} |
|
| 1682 | - } |
|
| 1683 | - |
|
| 1684 | - $html_var = $cf['htmlvar_name']; |
|
| 1685 | - |
|
| 1686 | - // Check if there is a location specific filter. |
|
| 1687 | - if(has_filter("geodir_custom_field_output_address_loc_{$location}")){ |
|
| 1688 | - /** |
|
| 1689 | - * Filter the address html by location. |
|
| 1690 | - * |
|
| 1691 | - * @param string $html The html to filter. |
|
| 1692 | - * @param array $cf The custom field array. |
|
| 1693 | - * @since 1.6.6 |
|
| 1694 | - */ |
|
| 1695 | - $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf); |
|
| 1696 | - } |
|
| 1697 | - |
|
| 1698 | - // Check if there is a custom field specific filter. |
|
| 1699 | - if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){ |
|
| 1700 | - /** |
|
| 1701 | - * Filter the address html by individual custom field. |
|
| 1702 | - * |
|
| 1703 | - * @param string $html The html to filter. |
|
| 1704 | - * @param string $location The location to output the html. |
|
| 1705 | - * @param array $cf The custom field array. |
|
| 1706 | - * @since 1.6.6 |
|
| 1707 | - */ |
|
| 1708 | - $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf); |
|
| 1709 | - } |
|
| 1710 | - |
|
| 1711 | - // Check if there is a custom field key specific filter. |
|
| 1712 | - if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){ |
|
| 1713 | - /** |
|
| 1714 | - * Filter the address html by field type key. |
|
| 1715 | - * |
|
| 1716 | - * @param string $html The html to filter. |
|
| 1717 | - * @param string $location The location to output the html. |
|
| 1718 | - * @param array $cf The custom field array. |
|
| 1719 | - * @since 1.6.6 |
|
| 1720 | - */ |
|
| 1721 | - $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1722 | - } |
|
| 1723 | - |
|
| 1724 | - // If not html then we run the standard output. |
|
| 1725 | - if(empty($html)){ |
|
| 1726 | - |
|
| 1727 | - global $preview; |
|
| 1728 | - $html_var = $cf['htmlvar_name'] . '_address'; |
|
| 1729 | - |
|
| 1730 | - if ($cf['extra_fields']) { |
|
| 1731 | - |
|
| 1732 | - $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 1733 | - |
|
| 1734 | - $addition_fields = ''; |
|
| 1735 | - |
|
| 1736 | - if (!empty($extra_fields)) { |
|
| 1737 | - |
|
| 1738 | - $show_city_in_address = false; |
|
| 1739 | - if (isset($extra_fields['show_city']) && $extra_fields['show_city']) { |
|
| 1740 | - $show_city_in_address = true; |
|
| 1741 | - } |
|
| 1742 | - /** |
|
| 1743 | - * Filter "show city in address" value. |
|
| 1744 | - * |
|
| 1745 | - * @since 1.0.0 |
|
| 1746 | - */ |
|
| 1747 | - $show_city_in_address = apply_filters('geodir_show_city_in_address', $show_city_in_address); |
|
| 1748 | - |
|
| 1749 | - |
|
| 1750 | - $show_region_in_address = false; |
|
| 1751 | - if (isset($extra_fields['show_region']) && $extra_fields['show_region']) { |
|
| 1752 | - $show_region_in_address = true; |
|
| 1753 | - } |
|
| 1754 | - /** |
|
| 1755 | - * Filter "show region in address" value. |
|
| 1756 | - * |
|
| 1757 | - * @since 1.6.6 |
|
| 1758 | - */ |
|
| 1759 | - $show_region_in_address = apply_filters('geodir_show_region_in_address', $show_region_in_address); |
|
| 1760 | - |
|
| 1761 | - $show_country_in_address = false; |
|
| 1762 | - if (isset($extra_fields['show_country']) && $extra_fields['show_country']) { |
|
| 1763 | - $show_country_in_address = true; |
|
| 1764 | - } |
|
| 1765 | - /** |
|
| 1766 | - * Filter "show country in address" value. |
|
| 1767 | - * |
|
| 1768 | - * @since 1.6.6 |
|
| 1769 | - */ |
|
| 1770 | - $show_country_in_address = apply_filters('geodir_show_country_in_address', $show_country_in_address); |
|
| 1771 | - |
|
| 1772 | - $show_zip_in_address = false; |
|
| 1773 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
| 1774 | - $show_zip_in_address = true; |
|
| 1775 | - } |
|
| 1776 | - /** |
|
| 1777 | - * Filter "show zip in address" value. |
|
| 1778 | - * |
|
| 1779 | - * @since 1.6.6 |
|
| 1780 | - */ |
|
| 1781 | - $show_zip_in_address = apply_filters('geodir_show_zip_in_address', $show_zip_in_address); |
|
| 1782 | - |
|
| 1783 | - |
|
| 1784 | - } |
|
| 1785 | - |
|
| 1786 | - } |
|
| 1787 | - |
|
| 1788 | - |
|
| 1789 | - if ($post->{$html_var}) { |
|
| 1790 | - |
|
| 1791 | - $field_icon = geodir_field_icon_proccess( $cf ); |
|
| 1792 | - if ( strpos( $field_icon, 'http' ) !== false ) { |
|
| 1793 | - $field_icon_af = ''; |
|
| 1794 | - } elseif ( $field_icon == '' ) { |
|
| 1795 | - $field_icon_af = '<i class="fa fa-home"></i>'; |
|
| 1796 | - } else { |
|
| 1797 | - $field_icon_af = $field_icon; |
|
| 1798 | - $field_icon = ''; |
|
| 1799 | - } |
|
| 1675 | + // check we have the post value |
|
| 1676 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1677 | + else{ global $post;} |
|
| 1678 | + |
|
| 1679 | + if(!is_array($cf) && $cf!=''){ |
|
| 1680 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1681 | + if(!$cf){return NULL;} |
|
| 1682 | + } |
|
| 1683 | + |
|
| 1684 | + $html_var = $cf['htmlvar_name']; |
|
| 1685 | + |
|
| 1686 | + // Check if there is a location specific filter. |
|
| 1687 | + if(has_filter("geodir_custom_field_output_address_loc_{$location}")){ |
|
| 1688 | + /** |
|
| 1689 | + * Filter the address html by location. |
|
| 1690 | + * |
|
| 1691 | + * @param string $html The html to filter. |
|
| 1692 | + * @param array $cf The custom field array. |
|
| 1693 | + * @since 1.6.6 |
|
| 1694 | + */ |
|
| 1695 | + $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf); |
|
| 1696 | + } |
|
| 1697 | + |
|
| 1698 | + // Check if there is a custom field specific filter. |
|
| 1699 | + if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){ |
|
| 1700 | + /** |
|
| 1701 | + * Filter the address html by individual custom field. |
|
| 1702 | + * |
|
| 1703 | + * @param string $html The html to filter. |
|
| 1704 | + * @param string $location The location to output the html. |
|
| 1705 | + * @param array $cf The custom field array. |
|
| 1706 | + * @since 1.6.6 |
|
| 1707 | + */ |
|
| 1708 | + $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf); |
|
| 1709 | + } |
|
| 1710 | + |
|
| 1711 | + // Check if there is a custom field key specific filter. |
|
| 1712 | + if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){ |
|
| 1713 | + /** |
|
| 1714 | + * Filter the address html by field type key. |
|
| 1715 | + * |
|
| 1716 | + * @param string $html The html to filter. |
|
| 1717 | + * @param string $location The location to output the html. |
|
| 1718 | + * @param array $cf The custom field array. |
|
| 1719 | + * @since 1.6.6 |
|
| 1720 | + */ |
|
| 1721 | + $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1722 | + } |
|
| 1723 | + |
|
| 1724 | + // If not html then we run the standard output. |
|
| 1725 | + if(empty($html)){ |
|
| 1726 | + |
|
| 1727 | + global $preview; |
|
| 1728 | + $html_var = $cf['htmlvar_name'] . '_address'; |
|
| 1729 | + |
|
| 1730 | + if ($cf['extra_fields']) { |
|
| 1731 | + |
|
| 1732 | + $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 1733 | + |
|
| 1734 | + $addition_fields = ''; |
|
| 1735 | + |
|
| 1736 | + if (!empty($extra_fields)) { |
|
| 1737 | + |
|
| 1738 | + $show_city_in_address = false; |
|
| 1739 | + if (isset($extra_fields['show_city']) && $extra_fields['show_city']) { |
|
| 1740 | + $show_city_in_address = true; |
|
| 1741 | + } |
|
| 1742 | + /** |
|
| 1743 | + * Filter "show city in address" value. |
|
| 1744 | + * |
|
| 1745 | + * @since 1.0.0 |
|
| 1746 | + */ |
|
| 1747 | + $show_city_in_address = apply_filters('geodir_show_city_in_address', $show_city_in_address); |
|
| 1748 | + |
|
| 1749 | + |
|
| 1750 | + $show_region_in_address = false; |
|
| 1751 | + if (isset($extra_fields['show_region']) && $extra_fields['show_region']) { |
|
| 1752 | + $show_region_in_address = true; |
|
| 1753 | + } |
|
| 1754 | + /** |
|
| 1755 | + * Filter "show region in address" value. |
|
| 1756 | + * |
|
| 1757 | + * @since 1.6.6 |
|
| 1758 | + */ |
|
| 1759 | + $show_region_in_address = apply_filters('geodir_show_region_in_address', $show_region_in_address); |
|
| 1760 | + |
|
| 1761 | + $show_country_in_address = false; |
|
| 1762 | + if (isset($extra_fields['show_country']) && $extra_fields['show_country']) { |
|
| 1763 | + $show_country_in_address = true; |
|
| 1764 | + } |
|
| 1765 | + /** |
|
| 1766 | + * Filter "show country in address" value. |
|
| 1767 | + * |
|
| 1768 | + * @since 1.6.6 |
|
| 1769 | + */ |
|
| 1770 | + $show_country_in_address = apply_filters('geodir_show_country_in_address', $show_country_in_address); |
|
| 1771 | + |
|
| 1772 | + $show_zip_in_address = false; |
|
| 1773 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
| 1774 | + $show_zip_in_address = true; |
|
| 1775 | + } |
|
| 1776 | + /** |
|
| 1777 | + * Filter "show zip in address" value. |
|
| 1778 | + * |
|
| 1779 | + * @since 1.6.6 |
|
| 1780 | + */ |
|
| 1781 | + $show_zip_in_address = apply_filters('geodir_show_zip_in_address', $show_zip_in_address); |
|
| 1782 | + |
|
| 1783 | + |
|
| 1784 | + } |
|
| 1785 | + |
|
| 1786 | + } |
|
| 1787 | + |
|
| 1788 | + |
|
| 1789 | + if ($post->{$html_var}) { |
|
| 1790 | + |
|
| 1791 | + $field_icon = geodir_field_icon_proccess( $cf ); |
|
| 1792 | + if ( strpos( $field_icon, 'http' ) !== false ) { |
|
| 1793 | + $field_icon_af = ''; |
|
| 1794 | + } elseif ( $field_icon == '' ) { |
|
| 1795 | + $field_icon_af = '<i class="fa fa-home"></i>'; |
|
| 1796 | + } else { |
|
| 1797 | + $field_icon_af = $field_icon; |
|
| 1798 | + $field_icon = ''; |
|
| 1799 | + } |
|
| 1800 | 1800 | |
| 1801 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1802 | - $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1803 | - $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ' '; |
|
| 1804 | - $html .= '</span>'; |
|
| 1801 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1802 | + $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1803 | + $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ' '; |
|
| 1804 | + $html .= '</span>'; |
|
| 1805 | 1805 | |
| 1806 | - $address_fields = array(); |
|
| 1807 | - |
|
| 1808 | - if ( isset($post->post_address) ) { |
|
| 1809 | - $address_fields['post_address'] = '<span itemprop="streetAddress">' . $post->post_address . '</span>'; |
|
| 1810 | - } |
|
| 1811 | - if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) { |
|
| 1812 | - $address_fields['post_city'] = '<span itemprop="addressLocality">' . $post->post_city . '</span>'; |
|
| 1813 | - } |
|
| 1814 | - if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) { |
|
| 1815 | - $address_fields['post_region'] = '<span itemprop="addressRegion">' . $post->post_region . '</span>'; |
|
| 1816 | - } |
|
| 1817 | - if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) { |
|
| 1818 | - $address_fields['post_zip'] = '<span itemprop="postalCode">' . $post->post_zip . '</span>'; |
|
| 1819 | - } |
|
| 1820 | - if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) { |
|
| 1821 | - $address_fields['post_country'] = '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span>'; |
|
| 1822 | - } |
|
| 1806 | + $address_fields = array(); |
|
| 1807 | + |
|
| 1808 | + if ( isset($post->post_address) ) { |
|
| 1809 | + $address_fields['post_address'] = '<span itemprop="streetAddress">' . $post->post_address . '</span>'; |
|
| 1810 | + } |
|
| 1811 | + if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) { |
|
| 1812 | + $address_fields['post_city'] = '<span itemprop="addressLocality">' . $post->post_city . '</span>'; |
|
| 1813 | + } |
|
| 1814 | + if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) { |
|
| 1815 | + $address_fields['post_region'] = '<span itemprop="addressRegion">' . $post->post_region . '</span>'; |
|
| 1816 | + } |
|
| 1817 | + if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) { |
|
| 1818 | + $address_fields['post_zip'] = '<span itemprop="postalCode">' . $post->post_zip . '</span>'; |
|
| 1819 | + } |
|
| 1820 | + if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) { |
|
| 1821 | + $address_fields['post_country'] = '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span>'; |
|
| 1822 | + } |
|
| 1823 | 1823 | |
| 1824 | - /** |
|
| 1825 | - * Filter the address fields array being displayed. |
|
| 1826 | - * |
|
| 1827 | - * @param array $address_fields The array of address fields. |
|
| 1828 | - * @param object $post The current post object. |
|
| 1829 | - * @param array $cf The custom field array details. |
|
| 1830 | - * @param string $location The location to output the html. |
|
| 1831 | - * |
|
| 1832 | - * @since 1.6.21 |
|
| 1833 | - */ |
|
| 1834 | - $address_fields = apply_filters('geodir_custom_field_output_address_fields', $address_fields, $post, $cf, $location); |
|
| 1824 | + /** |
|
| 1825 | + * Filter the address fields array being displayed. |
|
| 1826 | + * |
|
| 1827 | + * @param array $address_fields The array of address fields. |
|
| 1828 | + * @param object $post The current post object. |
|
| 1829 | + * @param array $cf The custom field array details. |
|
| 1830 | + * @param string $location The location to output the html. |
|
| 1831 | + * |
|
| 1832 | + * @since 1.6.21 |
|
| 1833 | + */ |
|
| 1834 | + $address_fields = apply_filters('geodir_custom_field_output_address_fields', $address_fields, $post, $cf, $location); |
|
| 1835 | 1835 | |
| 1836 | - if (!empty($address_fields) && is_array($address_fields)) { |
|
| 1837 | - $address_fields = array_values($address_fields); |
|
| 1838 | - $html .= implode('<br>', $address_fields); |
|
| 1839 | - } |
|
| 1836 | + if (!empty($address_fields) && is_array($address_fields)) { |
|
| 1837 | + $address_fields = array_values($address_fields); |
|
| 1838 | + $html .= implode('<br>', $address_fields); |
|
| 1839 | + } |
|
| 1840 | 1840 | |
| 1841 | - $html .= '</div>'; |
|
| 1842 | - } |
|
| 1843 | - } |
|
| 1841 | + $html .= '</div>'; |
|
| 1842 | + } |
|
| 1843 | + } |
|
| 1844 | 1844 | |
| 1845 | - return $html; |
|
| 1845 | + return $html; |
|
| 1846 | 1846 | } |
| 1847 | 1847 | add_filter('geodir_custom_field_output_address','geodir_cf_address',10,3); |
| 1848 | 1848 | \ No newline at end of file |
@@ -19,21 +19,21 @@ discard block |
||
| 19 | 19 | * |
| 20 | 20 | * @return string The html to output for the custom field. |
| 21 | 21 | */ |
| 22 | -function geodir_cf_checkbox($html,$location,$cf,$p=''){ |
|
| 22 | +function geodir_cf_checkbox($html, $location, $cf, $p = '') { |
|
| 23 | 23 | |
| 24 | 24 | // check we have the post value |
| 25 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 26 | - else{ global $post;} |
|
| 25 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 26 | + else { global $post; } |
|
| 27 | 27 | |
| 28 | - if(!is_array($cf) && $cf!=''){ |
|
| 28 | + if (!is_array($cf) && $cf != '') { |
|
| 29 | 29 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 30 | - if(!$cf){return NULL;} |
|
| 30 | + if (!$cf) {return NULL; } |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | $html_var = $cf['htmlvar_name']; |
| 34 | 34 | |
| 35 | 35 | // Check if there is a location specific filter. |
| 36 | - if(has_filter("geodir_custom_field_output_checkbox_loc_{$location}")){ |
|
| 36 | + if (has_filter("geodir_custom_field_output_checkbox_loc_{$location}")) { |
|
| 37 | 37 | /** |
| 38 | 38 | * Filter the checkbox html by location. |
| 39 | 39 | * |
@@ -41,11 +41,11 @@ discard block |
||
| 41 | 41 | * @param array $cf The custom field array. |
| 42 | 42 | * @since 1.6.6 |
| 43 | 43 | */ |
| 44 | - $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}",$html,$cf); |
|
| 44 | + $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}", $html, $cf); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | // Check if there is a custom field specific filter. |
| 48 | - if(has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")){ |
|
| 48 | + if (has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")) { |
|
| 49 | 49 | /** |
| 50 | 50 | * Filter the checkbox html by individual custom field. |
| 51 | 51 | * |
@@ -54,11 +54,11 @@ discard block |
||
| 54 | 54 | * @param array $cf The custom field array. |
| 55 | 55 | * @since 1.6.6 |
| 56 | 56 | */ |
| 57 | - $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}",$html,$location,$cf); |
|
| 57 | + $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}", $html, $location, $cf); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 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']}")){ |
|
| 61 | + if (has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")) { |
|
| 62 | 62 | /** |
| 63 | 63 | * Filter the checkbox html by field type key. |
| 64 | 64 | * |
@@ -67,18 +67,18 @@ discard block |
||
| 67 | 67 | * @param array $cf The custom field array. |
| 68 | 68 | * @since 1.6.6 |
| 69 | 69 | */ |
| 70 | - $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 70 | + $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | // If not html then we run the standard output. |
| 74 | - if(empty($html)){ |
|
| 74 | + if (empty($html)) { |
|
| 75 | 75 | |
| 76 | - if ( (int) $post->{$html_var} == 1 ): |
|
| 76 | + if ((int) $post->{$html_var} == 1): |
|
| 77 | 77 | |
| 78 | - if ( $post->{$html_var} == '1' ): |
|
| 79 | - $html_val = __( 'Yes', 'geodirectory' ); |
|
| 78 | + if ($post->{$html_var} == '1'): |
|
| 79 | + $html_val = __('Yes', 'geodirectory'); |
|
| 80 | 80 | else: |
| 81 | - $html_val = __( 'No', 'geodirectory' ); |
|
| 81 | + $html_val = __('No', 'geodirectory'); |
|
| 82 | 82 | endif; |
| 83 | 83 | |
| 84 | 84 | $field_icon = geodir_field_icon_proccess($cf); |
@@ -91,16 +91,16 @@ discard block |
||
| 91 | 91 | $field_icon = ''; |
| 92 | 92 | } |
| 93 | 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>'; |
|
| 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 | 97 | endif; |
| 98 | 98 | |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | return $html; |
| 102 | 102 | } |
| 103 | -add_filter('geodir_custom_field_output_checkbox','geodir_cf_checkbox',10,3); |
|
| 103 | +add_filter('geodir_custom_field_output_checkbox', 'geodir_cf_checkbox', 10, 3); |
|
| 104 | 104 | |
| 105 | 105 | |
| 106 | 106 | /** |
@@ -113,21 +113,21 @@ discard block |
||
| 113 | 113 | * |
| 114 | 114 | * @return string The html to output for the custom field. |
| 115 | 115 | */ |
| 116 | -function geodir_cf_fieldset($html,$location,$cf,$p=''){ |
|
| 116 | +function geodir_cf_fieldset($html, $location, $cf, $p = '') { |
|
| 117 | 117 | |
| 118 | 118 | // check we have the post value |
| 119 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 120 | - else{ global $post;} |
|
| 119 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 120 | + else { global $post; } |
|
| 121 | 121 | |
| 122 | - if(!is_array($cf) && $cf!=''){ |
|
| 122 | + if (!is_array($cf) && $cf != '') { |
|
| 123 | 123 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 124 | - if(!$cf){return NULL;} |
|
| 124 | + if (!$cf) {return NULL; } |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | $html_var = $cf['htmlvar_name']; |
| 128 | 128 | |
| 129 | 129 | // Check if there is a location specific filter. |
| 130 | - if(has_filter("geodir_custom_field_output_fieldset_loc_{$location}")){ |
|
| 130 | + if (has_filter("geodir_custom_field_output_fieldset_loc_{$location}")) { |
|
| 131 | 131 | /** |
| 132 | 132 | * Filter the fieldset html by location. |
| 133 | 133 | * |
@@ -135,11 +135,11 @@ discard block |
||
| 135 | 135 | * @param array $cf The custom field array. |
| 136 | 136 | * @since 1.6.6 |
| 137 | 137 | */ |
| 138 | - $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}",$html,$cf); |
|
| 138 | + $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}", $html, $cf); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | // Check if there is a custom field specific filter. |
| 142 | - if(has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")){ |
|
| 142 | + if (has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")) { |
|
| 143 | 143 | /** |
| 144 | 144 | * Filter the fieldset html by individual custom field. |
| 145 | 145 | * |
@@ -148,11 +148,11 @@ discard block |
||
| 148 | 148 | * @param array $cf The custom field array. |
| 149 | 149 | * @since 1.6.6 |
| 150 | 150 | */ |
| 151 | - $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}",$html,$location,$cf); |
|
| 151 | + $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}", $html, $location, $cf); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 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']}")){ |
|
| 155 | + if (has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")) { |
|
| 156 | 156 | /** |
| 157 | 157 | * Filter the fieldset html by field type key. |
| 158 | 158 | * |
@@ -161,11 +161,11 @@ discard block |
||
| 161 | 161 | * @param array $cf The custom field array. |
| 162 | 162 | * @since 1.6.6 |
| 163 | 163 | */ |
| 164 | - $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 164 | + $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | // If not html then we run the standard output. |
| 168 | - if(empty($html)){ |
|
| 168 | + if (empty($html)) { |
|
| 169 | 169 | |
| 170 | 170 | global $field_set_start; |
| 171 | 171 | $fieldset_class = 'fieldset-'.sanitize_html_class(sanitize_title_with_dashes($cf['site_title'])); |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | if ($field_set_start == 1) { |
| 174 | 174 | $html = ''; |
| 175 | 175 | } else { |
| 176 | - $html = '<h2 class="'.$fieldset_class.'">'. __($cf['site_title'], 'geodirectory') . '</h2>'; |
|
| 176 | + $html = '<h2 class="'.$fieldset_class.'">'.__($cf['site_title'], 'geodirectory').'</h2>'; |
|
| 177 | 177 | //$field_set_start = 1; |
| 178 | 178 | } |
| 179 | 179 | |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | |
| 182 | 182 | return $html; |
| 183 | 183 | } |
| 184 | -add_filter('geodir_custom_field_output_fieldset','geodir_cf_fieldset',10,3); |
|
| 184 | +add_filter('geodir_custom_field_output_fieldset', 'geodir_cf_fieldset', 10, 3); |
|
| 185 | 185 | |
| 186 | 186 | |
| 187 | 187 | /** |
@@ -194,21 +194,21 @@ discard block |
||
| 194 | 194 | * |
| 195 | 195 | * @return string The html to output for the custom field. |
| 196 | 196 | */ |
| 197 | -function geodir_cf_url($html,$location,$cf,$p=''){ |
|
| 197 | +function geodir_cf_url($html, $location, $cf, $p = '') { |
|
| 198 | 198 | |
| 199 | 199 | // check we have the post value |
| 200 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 201 | - else{ global $post;} |
|
| 200 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 201 | + else { global $post; } |
|
| 202 | 202 | |
| 203 | - if(!is_array($cf) && $cf!=''){ |
|
| 203 | + if (!is_array($cf) && $cf != '') { |
|
| 204 | 204 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 205 | - if(!$cf){return NULL;} |
|
| 205 | + if (!$cf) {return NULL; } |
|
| 206 | 206 | } |
| 207 | 207 | |
| 208 | 208 | $html_var = $cf['htmlvar_name']; |
| 209 | 209 | |
| 210 | 210 | // Check if there is a location specific filter. |
| 211 | - if(has_filter("geodir_custom_field_output_url_loc_{$location}")){ |
|
| 211 | + if (has_filter("geodir_custom_field_output_url_loc_{$location}")) { |
|
| 212 | 212 | /** |
| 213 | 213 | * Filter the url html by location. |
| 214 | 214 | * |
@@ -216,11 +216,11 @@ discard block |
||
| 216 | 216 | * @param array $cf The custom field array. |
| 217 | 217 | * @since 1.6.6 |
| 218 | 218 | */ |
| 219 | - $html = apply_filters("geodir_custom_field_output_url_loc_{$location}",$html,$cf); |
|
| 219 | + $html = apply_filters("geodir_custom_field_output_url_loc_{$location}", $html, $cf); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | // Check if there is a custom field specific filter. |
| 223 | - if(has_filter("geodir_custom_field_output_url_var_{$html_var}")){ |
|
| 223 | + if (has_filter("geodir_custom_field_output_url_var_{$html_var}")) { |
|
| 224 | 224 | /** |
| 225 | 225 | * Filter the url html by individual custom field. |
| 226 | 226 | * |
@@ -229,11 +229,11 @@ discard block |
||
| 229 | 229 | * @param array $cf The custom field array. |
| 230 | 230 | * @since 1.6.6 |
| 231 | 231 | */ |
| 232 | - $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}",$html,$location,$cf); |
|
| 232 | + $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}", $html, $location, $cf); |
|
| 233 | 233 | } |
| 234 | 234 | |
| 235 | 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']}")){ |
|
| 236 | + if (has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")) { |
|
| 237 | 237 | /** |
| 238 | 238 | * Filter the url html by field type key. |
| 239 | 239 | * |
@@ -242,11 +242,11 @@ discard block |
||
| 242 | 242 | * @param array $cf The custom field array. |
| 243 | 243 | * @since 1.6.6 |
| 244 | 244 | */ |
| 245 | - $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 245 | + $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 246 | 246 | } |
| 247 | 247 | |
| 248 | 248 | // If not html then we run the standard output. |
| 249 | - if(empty($html)){ |
|
| 249 | + if (empty($html)) { |
|
| 250 | 250 | |
| 251 | 251 | if ($post->{$cf['htmlvar_name']}): |
| 252 | 252 | |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | |
| 274 | 274 | $website = !empty($a_url['url']) ? $a_url['url'] : ''; |
| 275 | 275 | $title = !empty($a_url['label']) ? $a_url['label'] : $cf['site_title']; |
| 276 | - if(!empty($cf['default_value'])){$title = $cf['default_value'];} |
|
| 276 | + if (!empty($cf['default_value'])) {$title = $cf['default_value']; } |
|
| 277 | 277 | $title = $title != '' ? __(stripslashes($title), 'geodirectory') : ''; |
| 278 | 278 | |
| 279 | 279 | |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | * @param string $website Website URL. |
| 290 | 290 | * @param int $post->ID Post ID. |
| 291 | 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>'; |
|
| 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 | 293 | |
| 294 | 294 | endif; |
| 295 | 295 | |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | |
| 298 | 298 | return $html; |
| 299 | 299 | } |
| 300 | -add_filter('geodir_custom_field_output_url','geodir_cf_url',10,3); |
|
| 300 | +add_filter('geodir_custom_field_output_url', 'geodir_cf_url', 10, 3); |
|
| 301 | 301 | |
| 302 | 302 | |
| 303 | 303 | /** |
@@ -310,21 +310,21 @@ discard block |
||
| 310 | 310 | * |
| 311 | 311 | * @return string The html to output for the custom field. |
| 312 | 312 | */ |
| 313 | -function geodir_cf_phone($html,$location,$cf,$p=''){ |
|
| 313 | +function geodir_cf_phone($html, $location, $cf, $p = '') { |
|
| 314 | 314 | |
| 315 | 315 | // check we have the post value |
| 316 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 317 | - else{ global $post;} |
|
| 316 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 317 | + else { global $post; } |
|
| 318 | 318 | |
| 319 | - if(!is_array($cf) && $cf!=''){ |
|
| 319 | + if (!is_array($cf) && $cf != '') { |
|
| 320 | 320 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 321 | - if(!$cf){return NULL;} |
|
| 321 | + if (!$cf) {return NULL; } |
|
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | $html_var = $cf['htmlvar_name']; |
| 325 | 325 | |
| 326 | 326 | // Check if there is a location specific filter. |
| 327 | - if(has_filter("geodir_custom_field_output_phone_loc_{$location}")){ |
|
| 327 | + if (has_filter("geodir_custom_field_output_phone_loc_{$location}")) { |
|
| 328 | 328 | /** |
| 329 | 329 | * Filter the phone html by location. |
| 330 | 330 | * |
@@ -332,11 +332,11 @@ discard block |
||
| 332 | 332 | * @param array $cf The custom field array. |
| 333 | 333 | * @since 1.6.6 |
| 334 | 334 | */ |
| 335 | - $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}",$html,$cf); |
|
| 335 | + $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}", $html, $cf); |
|
| 336 | 336 | } |
| 337 | 337 | |
| 338 | 338 | // Check if there is a custom field specific filter. |
| 339 | - if(has_filter("geodir_custom_field_output_phone_var_{$html_var}")){ |
|
| 339 | + if (has_filter("geodir_custom_field_output_phone_var_{$html_var}")) { |
|
| 340 | 340 | /** |
| 341 | 341 | * Filter the phone html by individual custom field. |
| 342 | 342 | * |
@@ -345,11 +345,11 @@ discard block |
||
| 345 | 345 | * @param array $cf The custom field array. |
| 346 | 346 | * @since 1.6.6 |
| 347 | 347 | */ |
| 348 | - $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}",$html,$location,$cf); |
|
| 348 | + $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}", $html, $location, $cf); |
|
| 349 | 349 | } |
| 350 | 350 | |
| 351 | 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']}")){ |
|
| 352 | + if (has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")) { |
|
| 353 | 353 | /** |
| 354 | 354 | * Filter the phone html by field type key. |
| 355 | 355 | * |
@@ -358,11 +358,11 @@ discard block |
||
| 358 | 358 | * @param array $cf The custom field array. |
| 359 | 359 | * @since 1.6.6 |
| 360 | 360 | */ |
| 361 | - $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 361 | + $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 362 | 362 | } |
| 363 | 363 | |
| 364 | 364 | // If not html then we run the standard output. |
| 365 | - if(empty($html)){ |
|
| 365 | + if (empty($html)) { |
|
| 366 | 366 | |
| 367 | 367 | if ($post->{$cf['htmlvar_name']}): |
| 368 | 368 | |
@@ -377,9 +377,9 @@ discard block |
||
| 377 | 377 | } |
| 378 | 378 | |
| 379 | 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>'; |
|
| 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 | 383 | |
| 384 | 384 | endif; |
| 385 | 385 | |
@@ -387,7 +387,7 @@ discard block |
||
| 387 | 387 | |
| 388 | 388 | return $html; |
| 389 | 389 | } |
| 390 | -add_filter('geodir_custom_field_output_phone','geodir_cf_phone',10,3); |
|
| 390 | +add_filter('geodir_custom_field_output_phone', 'geodir_cf_phone', 10, 3); |
|
| 391 | 391 | |
| 392 | 392 | |
| 393 | 393 | /** |
@@ -400,21 +400,21 @@ discard block |
||
| 400 | 400 | * |
| 401 | 401 | * @return string The html to output for the custom field. |
| 402 | 402 | */ |
| 403 | -function geodir_cf_time($html,$location,$cf,$p=''){ |
|
| 403 | +function geodir_cf_time($html, $location, $cf, $p = '') { |
|
| 404 | 404 | |
| 405 | 405 | // check we have the post value |
| 406 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 407 | - else{ global $post;} |
|
| 406 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 407 | + else { global $post; } |
|
| 408 | 408 | |
| 409 | - if(!is_array($cf) && $cf!=''){ |
|
| 409 | + if (!is_array($cf) && $cf != '') { |
|
| 410 | 410 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 411 | - if(!$cf){return NULL;} |
|
| 411 | + if (!$cf) {return NULL; } |
|
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | $html_var = $cf['htmlvar_name']; |
| 415 | 415 | |
| 416 | 416 | // Check if there is a location specific filter. |
| 417 | - if(has_filter("geodir_custom_field_output_time_loc_{$location}")){ |
|
| 417 | + if (has_filter("geodir_custom_field_output_time_loc_{$location}")) { |
|
| 418 | 418 | /** |
| 419 | 419 | * Filter the time html by location. |
| 420 | 420 | * |
@@ -422,11 +422,11 @@ discard block |
||
| 422 | 422 | * @param array $cf The custom field array. |
| 423 | 423 | * @since 1.6.6 |
| 424 | 424 | */ |
| 425 | - $html = apply_filters("geodir_custom_field_output_time_loc_{$location}",$html,$cf); |
|
| 425 | + $html = apply_filters("geodir_custom_field_output_time_loc_{$location}", $html, $cf); |
|
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | // Check if there is a custom field specific filter. |
| 429 | - if(has_filter("geodir_custom_field_output_time_var_{$html_var}")){ |
|
| 429 | + if (has_filter("geodir_custom_field_output_time_var_{$html_var}")) { |
|
| 430 | 430 | /** |
| 431 | 431 | * Filter the time html by individual custom field. |
| 432 | 432 | * |
@@ -435,11 +435,11 @@ discard block |
||
| 435 | 435 | * @param array $cf The custom field array. |
| 436 | 436 | * @since 1.6.6 |
| 437 | 437 | */ |
| 438 | - $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}",$html,$location,$cf); |
|
| 438 | + $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}", $html, $location, $cf); |
|
| 439 | 439 | } |
| 440 | 440 | |
| 441 | 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']}")){ |
|
| 442 | + if (has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")) { |
|
| 443 | 443 | /** |
| 444 | 444 | * Filter the time html by field type key. |
| 445 | 445 | * |
@@ -448,11 +448,11 @@ discard block |
||
| 448 | 448 | * @param array $cf The custom field array. |
| 449 | 449 | * @since 1.6.6 |
| 450 | 450 | */ |
| 451 | - $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 451 | + $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 452 | 452 | } |
| 453 | 453 | |
| 454 | 454 | // If not html then we run the standard output. |
| 455 | - if(empty($html)){ |
|
| 455 | + if (empty($html)) { |
|
| 456 | 456 | |
| 457 | 457 | if ($post->{$cf['htmlvar_name']}): |
| 458 | 458 | |
@@ -472,9 +472,9 @@ discard block |
||
| 472 | 472 | } |
| 473 | 473 | |
| 474 | 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>'; |
|
| 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 | 478 | |
| 479 | 479 | endif; |
| 480 | 480 | |
@@ -482,7 +482,7 @@ discard block |
||
| 482 | 482 | |
| 483 | 483 | return $html; |
| 484 | 484 | } |
| 485 | -add_filter('geodir_custom_field_output_time','geodir_cf_time',10,3); |
|
| 485 | +add_filter('geodir_custom_field_output_time', 'geodir_cf_time', 10, 3); |
|
| 486 | 486 | |
| 487 | 487 | |
| 488 | 488 | /** |
@@ -495,21 +495,21 @@ discard block |
||
| 495 | 495 | * |
| 496 | 496 | * @return string The html to output for the custom field. |
| 497 | 497 | */ |
| 498 | -function geodir_cf_datepicker($html,$location,$cf,$p=''){ |
|
| 498 | +function geodir_cf_datepicker($html, $location, $cf, $p = '') { |
|
| 499 | 499 | global $preview; |
| 500 | 500 | // check we have the post value |
| 501 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 502 | - else{ global $post;} |
|
| 501 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 502 | + else { global $post; } |
|
| 503 | 503 | |
| 504 | - if(!is_array($cf) && $cf!=''){ |
|
| 504 | + if (!is_array($cf) && $cf != '') { |
|
| 505 | 505 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 506 | - if(!$cf){return NULL;} |
|
| 506 | + if (!$cf) {return NULL; } |
|
| 507 | 507 | } |
| 508 | 508 | |
| 509 | 509 | $html_var = $cf['htmlvar_name']; |
| 510 | 510 | |
| 511 | 511 | // Check if there is a location specific filter. |
| 512 | - if(has_filter("geodir_custom_field_output_datepicker_loc_{$location}")){ |
|
| 512 | + if (has_filter("geodir_custom_field_output_datepicker_loc_{$location}")) { |
|
| 513 | 513 | /** |
| 514 | 514 | * Filter the datepicker html by location. |
| 515 | 515 | * |
@@ -517,11 +517,11 @@ discard block |
||
| 517 | 517 | * @param array $cf The custom field array. |
| 518 | 518 | * @since 1.6.6 |
| 519 | 519 | */ |
| 520 | - $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}",$html,$cf); |
|
| 520 | + $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}", $html, $cf); |
|
| 521 | 521 | } |
| 522 | 522 | |
| 523 | 523 | // Check if there is a custom field specific filter. |
| 524 | - if(has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")){ |
|
| 524 | + if (has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")) { |
|
| 525 | 525 | /** |
| 526 | 526 | * Filter the datepicker html by individual custom field. |
| 527 | 527 | * |
@@ -530,11 +530,11 @@ discard block |
||
| 530 | 530 | * @param array $cf The custom field array. |
| 531 | 531 | * @since 1.6.6 |
| 532 | 532 | */ |
| 533 | - $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}",$html,$location,$cf); |
|
| 533 | + $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}", $html, $location, $cf); |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | 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']}")){ |
|
| 537 | + if (has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")) { |
|
| 538 | 538 | /** |
| 539 | 539 | * Filter the datepicker html by field type key. |
| 540 | 540 | * |
@@ -543,11 +543,11 @@ discard block |
||
| 543 | 543 | * @param array $cf The custom field array. |
| 544 | 544 | * @since 1.6.6 |
| 545 | 545 | */ |
| 546 | - $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 546 | + $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 547 | 547 | } |
| 548 | 548 | |
| 549 | 549 | // If not html then we run the standard output. |
| 550 | - if(empty($html)){ |
|
| 550 | + if (empty($html)) { |
|
| 551 | 551 | |
| 552 | 552 | if ($post->{$cf['htmlvar_name']}): |
| 553 | 553 | |
@@ -558,24 +558,24 @@ discard block |
||
| 558 | 558 | } |
| 559 | 559 | // check if we need to change the format or not |
| 560 | 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. |
|
| 561 | + if ($date_format_len > 5) {// if greater then 4 then it's the old style format. |
|
| 562 | 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 |
|
| 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 | 565 | |
| 566 | 566 | $date_format = str_replace($search, $replace, $date_format); |
| 567 | 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{ |
|
| 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 | 570 | $post_htmlvar_value = $post->{$cf['htmlvar_name']}; |
| 571 | 571 | } |
| 572 | 572 | |
| 573 | - if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") { |
|
| 573 | + if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']} != "0000-00-00") { |
|
| 574 | 574 | $date_format_from = $preview ? $date_format : 'Y-m-d'; |
| 575 | 575 | $value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d |
| 576 | 576 | //$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value; |
| 577 | 577 | //$value = date_i18n($date_format, strtotime($post_htmlvar_value)); |
| 578 | - }else{ |
|
| 578 | + } else { |
|
| 579 | 579 | return ''; |
| 580 | 580 | } |
| 581 | 581 | |
@@ -592,9 +592,9 @@ discard block |
||
| 592 | 592 | |
| 593 | 593 | |
| 594 | 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>'; |
|
| 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 | 598 | |
| 599 | 599 | endif; |
| 600 | 600 | |
@@ -602,7 +602,7 @@ discard block |
||
| 602 | 602 | |
| 603 | 603 | return $html; |
| 604 | 604 | } |
| 605 | -add_filter('geodir_custom_field_output_datepicker','geodir_cf_datepicker',10,3); |
|
| 605 | +add_filter('geodir_custom_field_output_datepicker', 'geodir_cf_datepicker', 10, 3); |
|
| 606 | 606 | |
| 607 | 607 | |
| 608 | 608 | /** |
@@ -615,21 +615,21 @@ discard block |
||
| 615 | 615 | * |
| 616 | 616 | * @return string The html to output for the custom field. |
| 617 | 617 | */ |
| 618 | -function geodir_cf_text($html,$location,$cf,$p=''){ |
|
| 618 | +function geodir_cf_text($html, $location, $cf, $p = '') { |
|
| 619 | 619 | |
| 620 | 620 | // check we have the post value |
| 621 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 622 | - else{ global $post;} |
|
| 621 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 622 | + else { global $post; } |
|
| 623 | 623 | |
| 624 | - if(!is_array($cf) && $cf!=''){ |
|
| 624 | + if (!is_array($cf) && $cf != '') { |
|
| 625 | 625 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 626 | - if(!$cf){return NULL;} |
|
| 626 | + if (!$cf) {return NULL; } |
|
| 627 | 627 | } |
| 628 | 628 | |
| 629 | 629 | $html_var = $cf['htmlvar_name']; |
| 630 | 630 | |
| 631 | 631 | // Check if there is a location specific filter. |
| 632 | - if(has_filter("geodir_custom_field_output_text_loc_{$location}")){ |
|
| 632 | + if (has_filter("geodir_custom_field_output_text_loc_{$location}")) { |
|
| 633 | 633 | /** |
| 634 | 634 | * Filter the text html by location. |
| 635 | 635 | * |
@@ -637,11 +637,11 @@ discard block |
||
| 637 | 637 | * @param array $cf The custom field array. |
| 638 | 638 | * @since 1.6.6 |
| 639 | 639 | */ |
| 640 | - $html = apply_filters("geodir_custom_field_output_text_loc_{$location}",$html,$cf); |
|
| 640 | + $html = apply_filters("geodir_custom_field_output_text_loc_{$location}", $html, $cf); |
|
| 641 | 641 | } |
| 642 | 642 | |
| 643 | 643 | // Check if there is a custom field specific filter. |
| 644 | - if(has_filter("geodir_custom_field_output_text_var_{$html_var}")){ |
|
| 644 | + if (has_filter("geodir_custom_field_output_text_var_{$html_var}")) { |
|
| 645 | 645 | /** |
| 646 | 646 | * Filter the text html by individual custom field. |
| 647 | 647 | * |
@@ -650,11 +650,11 @@ discard block |
||
| 650 | 650 | * @param array $cf The custom field array. |
| 651 | 651 | * @since 1.6.6 |
| 652 | 652 | */ |
| 653 | - $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}",$html,$location,$cf); |
|
| 653 | + $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}", $html, $location, $cf); |
|
| 654 | 654 | } |
| 655 | 655 | |
| 656 | 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']}")){ |
|
| 657 | + if (has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")) { |
|
| 658 | 658 | /** |
| 659 | 659 | * Filter the text html by field type key. |
| 660 | 660 | * |
@@ -663,15 +663,15 @@ discard block |
||
| 663 | 663 | * @param array $cf The custom field array. |
| 664 | 664 | * @since 1.6.6 |
| 665 | 665 | */ |
| 666 | - $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 666 | + $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 667 | 667 | } |
| 668 | 668 | |
| 669 | 669 | |
| 670 | 670 | |
| 671 | 671 | // If not html then we run the standard output. |
| 672 | - if(empty($html)){ |
|
| 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 | 676 | $class = ($cf['htmlvar_name'] == 'geodir_timing') ? "geodir-i-time" : "geodir-i-text"; |
| 677 | 677 | |
@@ -686,16 +686,16 @@ discard block |
||
| 686 | 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') . ': ' : ''; |
|
| 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 | 691 | $html .= '</span>'; |
| 692 | 692 | |
| 693 | 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']){ |
|
| 694 | + if (isset($cf['data_type']) && ($cf['data_type'] == 'INT' || $cf['data_type'] == 'FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']) { |
|
| 695 | 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); |
|
| 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 | 699 | } |
| 700 | 700 | } |
| 701 | 701 | |
@@ -709,7 +709,7 @@ discard block |
||
| 709 | 709 | |
| 710 | 710 | return $html; |
| 711 | 711 | } |
| 712 | -add_filter('geodir_custom_field_output_text','geodir_cf_text',10,3); |
|
| 712 | +add_filter('geodir_custom_field_output_text', 'geodir_cf_text', 10, 3); |
|
| 713 | 713 | |
| 714 | 714 | |
| 715 | 715 | /** |
@@ -722,21 +722,21 @@ discard block |
||
| 722 | 722 | * |
| 723 | 723 | * @return string The html to output for the custom field. |
| 724 | 724 | */ |
| 725 | -function geodir_cf_radio($html,$location,$cf,$p=''){ |
|
| 725 | +function geodir_cf_radio($html, $location, $cf, $p = '') { |
|
| 726 | 726 | |
| 727 | 727 | // check we have the post value |
| 728 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 729 | - else{ global $post;} |
|
| 728 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 729 | + else { global $post; } |
|
| 730 | 730 | |
| 731 | - if(!is_array($cf) && $cf!=''){ |
|
| 731 | + if (!is_array($cf) && $cf != '') { |
|
| 732 | 732 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 733 | - if(!$cf){return NULL;} |
|
| 733 | + if (!$cf) {return NULL; } |
|
| 734 | 734 | } |
| 735 | 735 | |
| 736 | 736 | $html_var = $cf['htmlvar_name']; |
| 737 | 737 | |
| 738 | 738 | // Check if there is a location specific filter. |
| 739 | - if(has_filter("geodir_custom_field_output_radio_loc_{$location}")){ |
|
| 739 | + if (has_filter("geodir_custom_field_output_radio_loc_{$location}")) { |
|
| 740 | 740 | /** |
| 741 | 741 | * Filter the radio html by location. |
| 742 | 742 | * |
@@ -744,11 +744,11 @@ discard block |
||
| 744 | 744 | * @param array $cf The custom field array. |
| 745 | 745 | * @since 1.6.6 |
| 746 | 746 | */ |
| 747 | - $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}",$html,$cf); |
|
| 747 | + $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}", $html, $cf); |
|
| 748 | 748 | } |
| 749 | 749 | |
| 750 | 750 | // Check if there is a custom field specific filter. |
| 751 | - if(has_filter("geodir_custom_field_output_radio_var_{$html_var}")){ |
|
| 751 | + if (has_filter("geodir_custom_field_output_radio_var_{$html_var}")) { |
|
| 752 | 752 | /** |
| 753 | 753 | * Filter the radio html by individual custom field. |
| 754 | 754 | * |
@@ -757,11 +757,11 @@ discard block |
||
| 757 | 757 | * @param array $cf The custom field array. |
| 758 | 758 | * @since 1.6.6 |
| 759 | 759 | */ |
| 760 | - $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}",$html,$location,$cf); |
|
| 760 | + $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}", $html, $location, $cf); |
|
| 761 | 761 | } |
| 762 | 762 | |
| 763 | 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']}")){ |
|
| 764 | + if (has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")) { |
|
| 765 | 765 | /** |
| 766 | 766 | * Filter the radio html by field type key. |
| 767 | 767 | * |
@@ -770,11 +770,11 @@ discard block |
||
| 770 | 770 | * @param array $cf The custom field array. |
| 771 | 771 | * @since 1.6.6 |
| 772 | 772 | */ |
| 773 | - $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 773 | + $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 774 | 774 | } |
| 775 | 775 | |
| 776 | 776 | // If not html then we run the standard output. |
| 777 | - if(empty($html)){ |
|
| 777 | + if (empty($html)) { |
|
| 778 | 778 | |
| 779 | 779 | $html_val = isset($post->{$cf['htmlvar_name']}) ? __($post->{$cf['htmlvar_name']}, 'geodirectory') : ''; |
| 780 | 780 | if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''): |
@@ -808,16 +808,16 @@ discard block |
||
| 808 | 808 | } |
| 809 | 809 | |
| 810 | 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>'; |
|
| 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 | 814 | endif; |
| 815 | 815 | |
| 816 | 816 | } |
| 817 | 817 | |
| 818 | 818 | return $html; |
| 819 | 819 | } |
| 820 | -add_filter('geodir_custom_field_output_radio','geodir_cf_radio',10,3); |
|
| 820 | +add_filter('geodir_custom_field_output_radio', 'geodir_cf_radio', 10, 3); |
|
| 821 | 821 | |
| 822 | 822 | |
| 823 | 823 | /** |
@@ -831,21 +831,21 @@ discard block |
||
| 831 | 831 | * |
| 832 | 832 | * @return string The html to output for the custom field. |
| 833 | 833 | */ |
| 834 | -function geodir_cf_select($html,$location,$cf,$p=''){ |
|
| 834 | +function geodir_cf_select($html, $location, $cf, $p = '') { |
|
| 835 | 835 | |
| 836 | 836 | // check we have the post value |
| 837 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 838 | - else{ global $post;} |
|
| 837 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 838 | + else { global $post; } |
|
| 839 | 839 | |
| 840 | - if(!is_array($cf) && $cf!=''){ |
|
| 840 | + if (!is_array($cf) && $cf != '') { |
|
| 841 | 841 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 842 | - if(!$cf){return NULL;} |
|
| 842 | + if (!$cf) {return NULL; } |
|
| 843 | 843 | } |
| 844 | 844 | |
| 845 | 845 | $html_var = $cf['htmlvar_name']; |
| 846 | 846 | |
| 847 | 847 | // Check if there is a location specific filter. |
| 848 | - if(has_filter("geodir_custom_field_output_select_loc_{$location}")){ |
|
| 848 | + if (has_filter("geodir_custom_field_output_select_loc_{$location}")) { |
|
| 849 | 849 | /** |
| 850 | 850 | * Filter the select html by location. |
| 851 | 851 | * |
@@ -853,11 +853,11 @@ discard block |
||
| 853 | 853 | * @param array $cf The custom field array. |
| 854 | 854 | * @since 1.6.6 |
| 855 | 855 | */ |
| 856 | - $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf); |
|
| 856 | + $html = apply_filters("geodir_custom_field_output_select_loc_{$location}", $html, $cf); |
|
| 857 | 857 | } |
| 858 | 858 | |
| 859 | 859 | // Check if there is a custom field specific filter. |
| 860 | - if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){ |
|
| 860 | + if (has_filter("geodir_custom_field_output_select_var_{$html_var}")) { |
|
| 861 | 861 | /** |
| 862 | 862 | * Filter the select html by individual custom field. |
| 863 | 863 | * |
@@ -866,11 +866,11 @@ discard block |
||
| 866 | 866 | * @param array $cf The custom field array. |
| 867 | 867 | * @since 1.6.6 |
| 868 | 868 | */ |
| 869 | - $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf); |
|
| 869 | + $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}", $html, $location, $cf); |
|
| 870 | 870 | } |
| 871 | 871 | |
| 872 | 872 | // Check if there is a custom field key specific filter. |
| 873 | - if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){ |
|
| 873 | + if (has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")) { |
|
| 874 | 874 | /** |
| 875 | 875 | * Filter the select html by field type key. |
| 876 | 876 | * |
@@ -879,11 +879,11 @@ discard block |
||
| 879 | 879 | * @param array $cf The custom field array. |
| 880 | 880 | * @since 1.6.6 |
| 881 | 881 | */ |
| 882 | - $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 882 | + $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 883 | 883 | } |
| 884 | 884 | |
| 885 | 885 | // If not html then we run the standard output. |
| 886 | - if(empty($html)){ |
|
| 886 | + if (empty($html)) { |
|
| 887 | 887 | |
| 888 | 888 | if ($post->{$cf['htmlvar_name']}): |
| 889 | 889 | $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
@@ -911,16 +911,16 @@ discard block |
||
| 911 | 911 | } |
| 912 | 912 | |
| 913 | 913 | |
| 914 | - $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; |
|
| 915 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 916 | - $html .= '</span>' . $field_value . '</div>'; |
|
| 914 | + $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; |
|
| 915 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 916 | + $html .= '</span>'.$field_value.'</div>'; |
|
| 917 | 917 | endif; |
| 918 | 918 | |
| 919 | 919 | } |
| 920 | 920 | |
| 921 | 921 | return $html; |
| 922 | 922 | } |
| 923 | -add_filter('geodir_custom_field_output_select','geodir_cf_select',10,3); |
|
| 923 | +add_filter('geodir_custom_field_output_select', 'geodir_cf_select', 10, 3); |
|
| 924 | 924 | |
| 925 | 925 | |
| 926 | 926 | /** |
@@ -933,21 +933,21 @@ discard block |
||
| 933 | 933 | * |
| 934 | 934 | * @return string The html to output for the custom field. |
| 935 | 935 | */ |
| 936 | -function geodir_cf_multiselect($html,$location,$cf,$p=''){ |
|
| 936 | +function geodir_cf_multiselect($html, $location, $cf, $p = '') { |
|
| 937 | 937 | |
| 938 | 938 | // check we have the post value |
| 939 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 940 | - else{ global $post;} |
|
| 939 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 940 | + else { global $post; } |
|
| 941 | 941 | |
| 942 | - if(!is_array($cf) && $cf!=''){ |
|
| 942 | + if (!is_array($cf) && $cf != '') { |
|
| 943 | 943 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 944 | - if(!$cf){return NULL;} |
|
| 944 | + if (!$cf) {return NULL; } |
|
| 945 | 945 | } |
| 946 | 946 | |
| 947 | 947 | $html_var = $cf['htmlvar_name']; |
| 948 | 948 | |
| 949 | 949 | // Check if there is a location specific filter. |
| 950 | - if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){ |
|
| 950 | + if (has_filter("geodir_custom_field_output_multiselect_loc_{$location}")) { |
|
| 951 | 951 | /** |
| 952 | 952 | * Filter the multiselect html by location. |
| 953 | 953 | * |
@@ -955,11 +955,11 @@ discard block |
||
| 955 | 955 | * @param array $cf The custom field array. |
| 956 | 956 | * @since 1.6.6 |
| 957 | 957 | */ |
| 958 | - $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf); |
|
| 958 | + $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}", $html, $cf); |
|
| 959 | 959 | } |
| 960 | 960 | |
| 961 | 961 | // Check if there is a custom field specific filter. |
| 962 | - if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){ |
|
| 962 | + if (has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")) { |
|
| 963 | 963 | /** |
| 964 | 964 | * Filter the multiselect html by individual custom field. |
| 965 | 965 | * |
@@ -968,11 +968,11 @@ discard block |
||
| 968 | 968 | * @param array $cf The custom field array. |
| 969 | 969 | * @since 1.6.6 |
| 970 | 970 | */ |
| 971 | - $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf); |
|
| 971 | + $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}", $html, $location, $cf); |
|
| 972 | 972 | } |
| 973 | 973 | |
| 974 | 974 | // Check if there is a custom field key specific filter. |
| 975 | - if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){ |
|
| 975 | + if (has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")) { |
|
| 976 | 976 | /** |
| 977 | 977 | * Filter the multiselect html by field type key. |
| 978 | 978 | * |
@@ -981,11 +981,11 @@ discard block |
||
| 981 | 981 | * @param array $cf The custom field array. |
| 982 | 982 | * @since 1.6.6 |
| 983 | 983 | */ |
| 984 | - $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 984 | + $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 985 | 985 | } |
| 986 | 986 | |
| 987 | 987 | // If not html then we run the standard output. |
| 988 | - if(empty($html)){ |
|
| 988 | + if (empty($html)) { |
|
| 989 | 989 | |
| 990 | 990 | |
| 991 | 991 | if (!empty($post->{$cf['htmlvar_name']})): |
@@ -1006,7 +1006,7 @@ discard block |
||
| 1006 | 1006 | |
| 1007 | 1007 | $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ",")); |
| 1008 | 1008 | |
| 1009 | - if(is_array($field_values)){ |
|
| 1009 | + if (is_array($field_values)) { |
|
| 1010 | 1010 | $field_values = array_map('trim', $field_values); |
| 1011 | 1011 | } |
| 1012 | 1012 | |
@@ -1024,15 +1024,15 @@ discard block |
||
| 1024 | 1024 | } |
| 1025 | 1025 | |
| 1026 | 1026 | |
| 1027 | - $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; |
|
| 1028 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1027 | + $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; |
|
| 1028 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1029 | 1029 | $html .= '</span>'; |
| 1030 | 1030 | |
| 1031 | 1031 | if (count($option_values) > 1) { |
| 1032 | 1032 | $html .= '<ul>'; |
| 1033 | 1033 | |
| 1034 | 1034 | foreach ($option_values as $val) { |
| 1035 | - $html .= '<li>' . $val . '</li>'; |
|
| 1035 | + $html .= '<li>'.$val.'</li>'; |
|
| 1036 | 1036 | } |
| 1037 | 1037 | |
| 1038 | 1038 | $html .= '</ul>'; |
@@ -1047,7 +1047,7 @@ discard block |
||
| 1047 | 1047 | |
| 1048 | 1048 | return $html; |
| 1049 | 1049 | } |
| 1050 | -add_filter('geodir_custom_field_output_multiselect','geodir_cf_multiselect',10,3); |
|
| 1050 | +add_filter('geodir_custom_field_output_multiselect', 'geodir_cf_multiselect', 10, 3); |
|
| 1051 | 1051 | |
| 1052 | 1052 | |
| 1053 | 1053 | /** |
@@ -1060,21 +1060,21 @@ discard block |
||
| 1060 | 1060 | * |
| 1061 | 1061 | * @return string The html to output for the custom field. |
| 1062 | 1062 | */ |
| 1063 | -function geodir_cf_email($html,$location,$cf,$p=''){ |
|
| 1063 | +function geodir_cf_email($html, $location, $cf, $p = '') { |
|
| 1064 | 1064 | |
| 1065 | 1065 | // check we have the post value |
| 1066 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1067 | - else{ global $post;} |
|
| 1066 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1067 | + else { global $post; } |
|
| 1068 | 1068 | |
| 1069 | - if(!is_array($cf) && $cf!=''){ |
|
| 1069 | + if (!is_array($cf) && $cf != '') { |
|
| 1070 | 1070 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1071 | - if(!$cf){return NULL;} |
|
| 1071 | + if (!$cf) {return NULL; } |
|
| 1072 | 1072 | } |
| 1073 | 1073 | |
| 1074 | 1074 | $html_var = $cf['htmlvar_name']; |
| 1075 | 1075 | |
| 1076 | 1076 | // Check if there is a location specific filter. |
| 1077 | - if(has_filter("geodir_custom_field_output_email_loc_{$location}")){ |
|
| 1077 | + if (has_filter("geodir_custom_field_output_email_loc_{$location}")) { |
|
| 1078 | 1078 | /** |
| 1079 | 1079 | * Filter the email html by location. |
| 1080 | 1080 | * |
@@ -1082,11 +1082,11 @@ discard block |
||
| 1082 | 1082 | * @param array $cf The custom field array. |
| 1083 | 1083 | * @since 1.6.6 |
| 1084 | 1084 | */ |
| 1085 | - $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf); |
|
| 1085 | + $html = apply_filters("geodir_custom_field_output_email_loc_{$location}", $html, $cf); |
|
| 1086 | 1086 | } |
| 1087 | 1087 | |
| 1088 | 1088 | // Check if there is a custom field specific filter. |
| 1089 | - if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){ |
|
| 1089 | + if (has_filter("geodir_custom_field_output_email_var_{$html_var}")) { |
|
| 1090 | 1090 | /** |
| 1091 | 1091 | * Filter the email html by individual custom field. |
| 1092 | 1092 | * |
@@ -1095,11 +1095,11 @@ discard block |
||
| 1095 | 1095 | * @param array $cf The custom field array. |
| 1096 | 1096 | * @since 1.6.6 |
| 1097 | 1097 | */ |
| 1098 | - $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf); |
|
| 1098 | + $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}", $html, $location, $cf); |
|
| 1099 | 1099 | } |
| 1100 | 1100 | |
| 1101 | 1101 | // Check if there is a custom field key specific filter. |
| 1102 | - if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){ |
|
| 1102 | + if (has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")) { |
|
| 1103 | 1103 | /** |
| 1104 | 1104 | * Filter the email html by field type key. |
| 1105 | 1105 | * |
@@ -1108,18 +1108,18 @@ discard block |
||
| 1108 | 1108 | * @param array $cf The custom field array. |
| 1109 | 1109 | * @since 1.6.6 |
| 1110 | 1110 | */ |
| 1111 | - $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1111 | + $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1112 | 1112 | } |
| 1113 | 1113 | |
| 1114 | 1114 | // If not html then we run the standard output. |
| 1115 | - if(empty($html)){ |
|
| 1115 | + if (empty($html)) { |
|
| 1116 | 1116 | |
| 1117 | 1117 | global $preview; |
| 1118 | 1118 | if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) { |
| 1119 | 1119 | return ''; // Remove Send Enquiry from listings page |
| 1120 | 1120 | } |
| 1121 | 1121 | |
| 1122 | - $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1122 | + $package_info = (array) geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1123 | 1123 | |
| 1124 | 1124 | if ($cf['htmlvar_name'] == 'geodir_email' && $post->{$cf['htmlvar_name']}) { |
| 1125 | 1125 | $b_send_inquiry = ''; |
@@ -1127,7 +1127,7 @@ discard block |
||
| 1127 | 1127 | $html = ''; |
| 1128 | 1128 | if (!$preview) { |
| 1129 | 1129 | $b_send_inquiry = 'b_send_inquiry'; |
| 1130 | - $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1130 | + $html = '<input type="hidden" name="geodir_popup_post_id" value="'.$post->ID.'" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1131 | 1131 | } |
| 1132 | 1132 | |
| 1133 | 1133 | $field_icon = geodir_field_icon_proccess($cf); |
@@ -1140,20 +1140,20 @@ discard block |
||
| 1140 | 1140 | $field_icon = ''; |
| 1141 | 1141 | } |
| 1142 | 1142 | |
| 1143 | - $html .= '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1143 | + $html .= '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'"><span class="geodir-i-email" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1144 | 1144 | $seperator = ''; |
| 1145 | 1145 | if ($post->{$cf['htmlvar_name']}) { |
| 1146 | 1146 | $b_send_inquiry_url = apply_filters('b_send_inquiry_url', 'javascript:void(0);'); |
| 1147 | - $html .= '<a href="'.$b_send_inquiry_url.'" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>'; |
|
| 1147 | + $html .= '<a href="'.$b_send_inquiry_url.'" class="'.$b_send_inquiry.'" >'.SEND_INQUIRY.'</a>'; |
|
| 1148 | 1148 | } |
| 1149 | 1149 | |
| 1150 | 1150 | $html .= '</span></div>'; |
| 1151 | 1151 | |
| 1152 | 1152 | |
| 1153 | 1153 | if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') { |
| 1154 | - $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>'; |
|
| 1154 | + $html .= '<p class="sucess_msg">'.SEND_INQUIRY_SUCCESS.'</p>'; |
|
| 1155 | 1155 | } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') { |
| 1156 | - $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>'; |
|
| 1156 | + $html .= '<p class="error_msg_fix">'.WRONG_CAPTCH_MSG.'</p>'; |
|
| 1157 | 1157 | } |
| 1158 | 1158 | |
| 1159 | 1159 | /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/ |
@@ -1173,11 +1173,11 @@ discard block |
||
| 1173 | 1173 | } |
| 1174 | 1174 | |
| 1175 | 1175 | |
| 1176 | - $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; |
|
| 1177 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1176 | + $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; |
|
| 1177 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1178 | 1178 | $html .= '</span><span class="geodir-email-address-output">'; |
| 1179 | 1179 | $email = $post->{$cf['htmlvar_name']} ; |
| 1180 | - if($e_split = explode('@',$email)){ |
|
| 1180 | + if ($e_split = explode('@', $email)) { |
|
| 1181 | 1181 | /** |
| 1182 | 1182 | * Filter email custom field name output. |
| 1183 | 1183 | * |
@@ -1186,15 +1186,15 @@ discard block |
||
| 1186 | 1186 | * @param string $email The email string being output. |
| 1187 | 1187 | * @param array $cf Custom field variables array. |
| 1188 | 1188 | */ |
| 1189 | - $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
|
| 1190 | - if($location=='mapbubble'){ |
|
| 1191 | - $html .= "<a href=\"mailto:$email\">$email_name</a>"; |
|
| 1192 | - }else{ |
|
| 1193 | - $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1189 | + $email_name = apply_filters('geodir_email_field_name_output', $email, $cf); |
|
| 1190 | + if ($location == 'mapbubble') { |
|
| 1191 | + $html .= "<a href=\"mailto:$email\">$email_name</a>"; |
|
| 1192 | + } else { |
|
| 1193 | + $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1194 | 1194 | } |
| 1195 | 1195 | |
| 1196 | - }else{ |
|
| 1197 | - $html .= $email; |
|
| 1196 | + } else { |
|
| 1197 | + $html .= $email; |
|
| 1198 | 1198 | } |
| 1199 | 1199 | $html .= '</span></div>'; |
| 1200 | 1200 | } |
@@ -1205,7 +1205,7 @@ discard block |
||
| 1205 | 1205 | |
| 1206 | 1206 | return $html; |
| 1207 | 1207 | } |
| 1208 | -add_filter('geodir_custom_field_output_email','geodir_cf_email',10,3); |
|
| 1208 | +add_filter('geodir_custom_field_output_email', 'geodir_cf_email', 10, 3); |
|
| 1209 | 1209 | |
| 1210 | 1210 | |
| 1211 | 1211 | /** |
@@ -1218,21 +1218,21 @@ discard block |
||
| 1218 | 1218 | * |
| 1219 | 1219 | * @return string The html to output for the custom field. |
| 1220 | 1220 | */ |
| 1221 | -function geodir_cf_file($html,$location,$cf,$p=''){ |
|
| 1221 | +function geodir_cf_file($html, $location, $cf, $p = '') { |
|
| 1222 | 1222 | |
| 1223 | 1223 | // check we have the post value |
| 1224 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1225 | - else{ global $post;} |
|
| 1224 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1225 | + else { global $post; } |
|
| 1226 | 1226 | |
| 1227 | - if(!is_array($cf) && $cf!=''){ |
|
| 1227 | + if (!is_array($cf) && $cf != '') { |
|
| 1228 | 1228 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1229 | - if(!$cf){return NULL;} |
|
| 1229 | + if (!$cf) {return NULL; } |
|
| 1230 | 1230 | } |
| 1231 | 1231 | |
| 1232 | 1232 | $html_var = $cf['htmlvar_name']; |
| 1233 | 1233 | |
| 1234 | 1234 | // Check if there is a location specific filter. |
| 1235 | - if(has_filter("geodir_custom_field_output_file_loc_{$location}")){ |
|
| 1235 | + if (has_filter("geodir_custom_field_output_file_loc_{$location}")) { |
|
| 1236 | 1236 | /** |
| 1237 | 1237 | * Filter the file html by location. |
| 1238 | 1238 | * |
@@ -1240,11 +1240,11 @@ discard block |
||
| 1240 | 1240 | * @param array $cf The custom field array. |
| 1241 | 1241 | * @since 1.6.6 |
| 1242 | 1242 | */ |
| 1243 | - $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf); |
|
| 1243 | + $html = apply_filters("geodir_custom_field_output_file_loc_{$location}", $html, $cf); |
|
| 1244 | 1244 | } |
| 1245 | 1245 | |
| 1246 | 1246 | // Check if there is a custom field specific filter. |
| 1247 | - if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){ |
|
| 1247 | + if (has_filter("geodir_custom_field_output_file_var_{$html_var}")) { |
|
| 1248 | 1248 | /** |
| 1249 | 1249 | * Filter the file html by individual custom field. |
| 1250 | 1250 | * |
@@ -1253,11 +1253,11 @@ discard block |
||
| 1253 | 1253 | * @param array $cf The custom field array. |
| 1254 | 1254 | * @since 1.6.6 |
| 1255 | 1255 | */ |
| 1256 | - $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf); |
|
| 1256 | + $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}", $html, $location, $cf); |
|
| 1257 | 1257 | } |
| 1258 | 1258 | |
| 1259 | 1259 | // Check if there is a custom field key specific filter. |
| 1260 | - if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){ |
|
| 1260 | + if (has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")) { |
|
| 1261 | 1261 | /** |
| 1262 | 1262 | * Filter the file html by field type key. |
| 1263 | 1263 | * |
@@ -1266,11 +1266,11 @@ discard block |
||
| 1266 | 1266 | * @param array $cf The custom field array. |
| 1267 | 1267 | * @since 1.6.6 |
| 1268 | 1268 | */ |
| 1269 | - $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1269 | + $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1270 | 1270 | } |
| 1271 | 1271 | |
| 1272 | 1272 | // If not html then we run the standard output. |
| 1273 | - if(empty($html)){ |
|
| 1273 | + if (empty($html)) { |
|
| 1274 | 1274 | |
| 1275 | 1275 | if (!empty($post->{$cf['htmlvar_name']})): |
| 1276 | 1276 | |
@@ -1278,7 +1278,7 @@ discard block |
||
| 1278 | 1278 | if (!empty($files)): |
| 1279 | 1279 | |
| 1280 | 1280 | $extra_fields = !empty($cf['extra_fields']) ? stripslashes_deep(maybe_unserialize($cf['extra_fields'])) : NULL; |
| 1281 | - $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'] : ''; |
|
| 1281 | + $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'] : ''; |
|
| 1282 | 1282 | |
| 1283 | 1283 | $file_paths = ''; |
| 1284 | 1284 | foreach ($files as $file) { |
@@ -1316,14 +1316,14 @@ discard block |
||
| 1316 | 1316 | //$file_paths .= '<img src="'.$file.'" />'; |
| 1317 | 1317 | $file_paths .= '</div>'; |
| 1318 | 1318 | }elseif (in_array($uploaded_file_type, $audio_file_types)) {// if audio |
| 1319 | - $ext_path = '_' . $html_var . '_'; |
|
| 1319 | + $ext_path = '_'.$html_var.'_'; |
|
| 1320 | 1320 | $filename = explode($ext_path, $filename); |
| 1321 | 1321 | $file_paths .= '<span class="gd-audio-name">'.$filename[count($filename) - 1].'</span>'; |
| 1322 | 1322 | $file_paths .= do_shortcode('[audio src="'.$file.'" ]'); |
| 1323 | 1323 | } else { |
| 1324 | - $ext_path = '_' . $html_var . '_'; |
|
| 1324 | + $ext_path = '_'.$html_var.'_'; |
|
| 1325 | 1325 | $filename = explode($ext_path, $filename); |
| 1326 | - $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>'; |
|
| 1326 | + $file_paths .= '<a href="'.$file.'" target="_blank">'.$filename[count($filename) - 1].'</a>'; |
|
| 1327 | 1327 | } |
| 1328 | 1328 | } |
| 1329 | 1329 | } |
@@ -1338,11 +1338,11 @@ discard block |
||
| 1338 | 1338 | $field_icon = ''; |
| 1339 | 1339 | } |
| 1340 | 1340 | |
| 1341 | - $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; |
|
| 1341 | + $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; |
|
| 1342 | 1342 | $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">'; |
| 1343 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1343 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1344 | 1344 | $html .= '</span>'; |
| 1345 | - $html .= $file_paths . '</div></div>'; |
|
| 1345 | + $html .= $file_paths.'</div></div>'; |
|
| 1346 | 1346 | |
| 1347 | 1347 | endif; |
| 1348 | 1348 | endif; |
@@ -1351,7 +1351,7 @@ discard block |
||
| 1351 | 1351 | |
| 1352 | 1352 | return $html; |
| 1353 | 1353 | } |
| 1354 | -add_filter('geodir_custom_field_output_file','geodir_cf_file',10,3); |
|
| 1354 | +add_filter('geodir_custom_field_output_file', 'geodir_cf_file', 10, 3); |
|
| 1355 | 1355 | |
| 1356 | 1356 | |
| 1357 | 1357 | |
@@ -1365,21 +1365,21 @@ discard block |
||
| 1365 | 1365 | * |
| 1366 | 1366 | * @return string The html to output for the custom field. |
| 1367 | 1367 | */ |
| 1368 | -function geodir_cf_textarea($html,$location,$cf,$p=''){ |
|
| 1368 | +function geodir_cf_textarea($html, $location, $cf, $p = '') { |
|
| 1369 | 1369 | |
| 1370 | 1370 | // check we have the post value |
| 1371 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1372 | - else{ global $post;} |
|
| 1371 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1372 | + else { global $post; } |
|
| 1373 | 1373 | |
| 1374 | - if(!is_array($cf) && $cf!=''){ |
|
| 1374 | + if (!is_array($cf) && $cf != '') { |
|
| 1375 | 1375 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1376 | - if(!$cf){return NULL;} |
|
| 1376 | + if (!$cf) {return NULL; } |
|
| 1377 | 1377 | } |
| 1378 | 1378 | |
| 1379 | 1379 | $html_var = $cf['htmlvar_name']; |
| 1380 | 1380 | |
| 1381 | 1381 | // Check if there is a location specific filter. |
| 1382 | - if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){ |
|
| 1382 | + if (has_filter("geodir_custom_field_output_textarea_loc_{$location}")) { |
|
| 1383 | 1383 | /** |
| 1384 | 1384 | * Filter the textarea html by location. |
| 1385 | 1385 | * |
@@ -1387,11 +1387,11 @@ discard block |
||
| 1387 | 1387 | * @param array $cf The custom field array. |
| 1388 | 1388 | * @since 1.6.6 |
| 1389 | 1389 | */ |
| 1390 | - $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf); |
|
| 1390 | + $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}", $html, $cf); |
|
| 1391 | 1391 | } |
| 1392 | 1392 | |
| 1393 | 1393 | // Check if there is a custom field specific filter. |
| 1394 | - if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){ |
|
| 1394 | + if (has_filter("geodir_custom_field_output_textarea_var_{$html_var}")) { |
|
| 1395 | 1395 | /** |
| 1396 | 1396 | * Filter the textarea html by individual custom field. |
| 1397 | 1397 | * |
@@ -1400,11 +1400,11 @@ discard block |
||
| 1400 | 1400 | * @param array $cf The custom field array. |
| 1401 | 1401 | * @since 1.6.6 |
| 1402 | 1402 | */ |
| 1403 | - $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf); |
|
| 1403 | + $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}", $html, $location, $cf); |
|
| 1404 | 1404 | } |
| 1405 | 1405 | |
| 1406 | 1406 | // Check if there is a custom field key specific filter. |
| 1407 | - if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){ |
|
| 1407 | + if (has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")) { |
|
| 1408 | 1408 | /** |
| 1409 | 1409 | * Filter the textarea html by field type key. |
| 1410 | 1410 | * |
@@ -1413,11 +1413,11 @@ discard block |
||
| 1413 | 1413 | * @param array $cf The custom field array. |
| 1414 | 1414 | * @since 1.6.6 |
| 1415 | 1415 | */ |
| 1416 | - $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1416 | + $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1417 | 1417 | } |
| 1418 | 1418 | |
| 1419 | 1419 | // If not html then we run the standard output. |
| 1420 | - if(empty($html)){ |
|
| 1420 | + if (empty($html)) { |
|
| 1421 | 1421 | |
| 1422 | 1422 | if (!empty($post->{$cf['htmlvar_name']})) { |
| 1423 | 1423 | |
@@ -1432,9 +1432,9 @@ discard block |
||
| 1432 | 1432 | } |
| 1433 | 1433 | |
| 1434 | 1434 | |
| 1435 | - $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; |
|
| 1436 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1437 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1435 | + $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; |
|
| 1436 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1437 | + $html .= '</span>'.wpautop($post->{$cf['htmlvar_name']}).'</div>'; |
|
| 1438 | 1438 | |
| 1439 | 1439 | } |
| 1440 | 1440 | |
@@ -1442,7 +1442,7 @@ discard block |
||
| 1442 | 1442 | |
| 1443 | 1443 | return $html; |
| 1444 | 1444 | } |
| 1445 | -add_filter('geodir_custom_field_output_textarea','geodir_cf_textarea',10,3); |
|
| 1445 | +add_filter('geodir_custom_field_output_textarea', 'geodir_cf_textarea', 10, 3); |
|
| 1446 | 1446 | |
| 1447 | 1447 | |
| 1448 | 1448 | |
@@ -1456,21 +1456,21 @@ discard block |
||
| 1456 | 1456 | * |
| 1457 | 1457 | * @return string The html to output for the custom field. |
| 1458 | 1458 | */ |
| 1459 | -function geodir_cf_html($html,$location,$cf,$p=''){ |
|
| 1459 | +function geodir_cf_html($html, $location, $cf, $p = '') { |
|
| 1460 | 1460 | |
| 1461 | 1461 | // check we have the post value |
| 1462 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1463 | - else{ global $post;} |
|
| 1462 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1463 | + else { global $post; } |
|
| 1464 | 1464 | |
| 1465 | - if(!is_array($cf) && $cf!=''){ |
|
| 1465 | + if (!is_array($cf) && $cf != '') { |
|
| 1466 | 1466 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1467 | - if(!$cf){return NULL;} |
|
| 1467 | + if (!$cf) {return NULL; } |
|
| 1468 | 1468 | } |
| 1469 | 1469 | |
| 1470 | 1470 | $html_var = $cf['htmlvar_name']; |
| 1471 | 1471 | |
| 1472 | 1472 | // Check if there is a location specific filter. |
| 1473 | - if(has_filter("geodir_custom_field_output_html_loc_{$location}")){ |
|
| 1473 | + if (has_filter("geodir_custom_field_output_html_loc_{$location}")) { |
|
| 1474 | 1474 | /** |
| 1475 | 1475 | * Filter the html html by location. |
| 1476 | 1476 | * |
@@ -1478,11 +1478,11 @@ discard block |
||
| 1478 | 1478 | * @param array $cf The custom field array. |
| 1479 | 1479 | * @since 1.6.6 |
| 1480 | 1480 | */ |
| 1481 | - $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf); |
|
| 1481 | + $html = apply_filters("geodir_custom_field_output_html_loc_{$location}", $html, $cf); |
|
| 1482 | 1482 | } |
| 1483 | 1483 | |
| 1484 | 1484 | // Check if there is a custom field specific filter. |
| 1485 | - if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){ |
|
| 1485 | + if (has_filter("geodir_custom_field_output_html_var_{$html_var}")) { |
|
| 1486 | 1486 | /** |
| 1487 | 1487 | * Filter the html html by individual custom field. |
| 1488 | 1488 | * |
@@ -1491,11 +1491,11 @@ discard block |
||
| 1491 | 1491 | * @param array $cf The custom field array. |
| 1492 | 1492 | * @since 1.6.6 |
| 1493 | 1493 | */ |
| 1494 | - $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf); |
|
| 1494 | + $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}", $html, $location, $cf); |
|
| 1495 | 1495 | } |
| 1496 | 1496 | |
| 1497 | 1497 | // Check if there is a custom field key specific filter. |
| 1498 | - if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){ |
|
| 1498 | + if (has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")) { |
|
| 1499 | 1499 | /** |
| 1500 | 1500 | * Filter the html html by field type key. |
| 1501 | 1501 | * |
@@ -1504,11 +1504,11 @@ discard block |
||
| 1504 | 1504 | * @param array $cf The custom field array. |
| 1505 | 1505 | * @since 1.6.6 |
| 1506 | 1506 | */ |
| 1507 | - $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1507 | + $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1508 | 1508 | } |
| 1509 | 1509 | |
| 1510 | 1510 | // If not html then we run the standard output. |
| 1511 | - if(empty($html)){ |
|
| 1511 | + if (empty($html)) { |
|
| 1512 | 1512 | |
| 1513 | 1513 | if (!empty($post->{$cf['htmlvar_name']})) { |
| 1514 | 1514 | |
@@ -1522,9 +1522,9 @@ discard block |
||
| 1522 | 1522 | $field_icon = ''; |
| 1523 | 1523 | } |
| 1524 | 1524 | |
| 1525 | - $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; |
|
| 1526 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1527 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1525 | + $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; |
|
| 1526 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1527 | + $html .= '</span>'.wpautop($post->{$cf['htmlvar_name']}).'</div>'; |
|
| 1528 | 1528 | |
| 1529 | 1529 | } |
| 1530 | 1530 | |
@@ -1532,7 +1532,7 @@ discard block |
||
| 1532 | 1532 | |
| 1533 | 1533 | return $html; |
| 1534 | 1534 | } |
| 1535 | -add_filter('geodir_custom_field_output_html','geodir_cf_html',10,3); |
|
| 1535 | +add_filter('geodir_custom_field_output_html', 'geodir_cf_html', 10, 3); |
|
| 1536 | 1536 | |
| 1537 | 1537 | |
| 1538 | 1538 | |
@@ -1546,21 +1546,21 @@ discard block |
||
| 1546 | 1546 | * |
| 1547 | 1547 | * @return string The html to output for the custom field. |
| 1548 | 1548 | */ |
| 1549 | -function geodir_cf_taxonomy($html,$location,$cf,$p=''){ |
|
| 1549 | +function geodir_cf_taxonomy($html, $location, $cf, $p = '') { |
|
| 1550 | 1550 | |
| 1551 | 1551 | // check we have the post value |
| 1552 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1553 | - else{ global $post;} |
|
| 1552 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1553 | + else { global $post; } |
|
| 1554 | 1554 | |
| 1555 | - if(!is_array($cf) && $cf!=''){ |
|
| 1555 | + if (!is_array($cf) && $cf != '') { |
|
| 1556 | 1556 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1557 | - if(!$cf){return NULL;} |
|
| 1557 | + if (!$cf) {return NULL; } |
|
| 1558 | 1558 | } |
| 1559 | 1559 | |
| 1560 | 1560 | $html_var = $cf['htmlvar_name']; |
| 1561 | 1561 | |
| 1562 | 1562 | // Check if there is a location specific filter. |
| 1563 | - if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){ |
|
| 1563 | + if (has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")) { |
|
| 1564 | 1564 | /** |
| 1565 | 1565 | * Filter the taxonomy html by location. |
| 1566 | 1566 | * |
@@ -1568,11 +1568,11 @@ discard block |
||
| 1568 | 1568 | * @param array $cf The custom field array. |
| 1569 | 1569 | * @since 1.6.6 |
| 1570 | 1570 | */ |
| 1571 | - $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf); |
|
| 1571 | + $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}", $html, $cf); |
|
| 1572 | 1572 | } |
| 1573 | 1573 | |
| 1574 | 1574 | // Check if there is a custom field specific filter. |
| 1575 | - if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){ |
|
| 1575 | + if (has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")) { |
|
| 1576 | 1576 | /** |
| 1577 | 1577 | * Filter the taxonomy html by individual custom field. |
| 1578 | 1578 | * |
@@ -1581,11 +1581,11 @@ discard block |
||
| 1581 | 1581 | * @param array $cf The custom field array. |
| 1582 | 1582 | * @since 1.6.6 |
| 1583 | 1583 | */ |
| 1584 | - $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf); |
|
| 1584 | + $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}", $html, $location, $cf); |
|
| 1585 | 1585 | } |
| 1586 | 1586 | |
| 1587 | 1587 | // Check if there is a custom field key specific filter. |
| 1588 | - if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){ |
|
| 1588 | + if (has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")) { |
|
| 1589 | 1589 | /** |
| 1590 | 1590 | * Filter the taxonomy html by field type key. |
| 1591 | 1591 | * |
@@ -1594,14 +1594,14 @@ discard block |
||
| 1594 | 1594 | * @param array $cf The custom field array. |
| 1595 | 1595 | * @since 1.6.6 |
| 1596 | 1596 | */ |
| 1597 | - $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1597 | + $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1598 | 1598 | } |
| 1599 | 1599 | |
| 1600 | 1600 | // If not html then we run the standard output. |
| 1601 | - if(empty($html)){ |
|
| 1601 | + if (empty($html)) { |
|
| 1602 | 1602 | |
| 1603 | - if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) { |
|
| 1604 | - $post_taxonomy = $post->post_type . 'category'; |
|
| 1603 | + if ($html_var == $post->post_type.'category' && !empty($post->{$html_var})) { |
|
| 1604 | + $post_taxonomy = $post->post_type.'category'; |
|
| 1605 | 1605 | $field_value = $post->{$html_var}; |
| 1606 | 1606 | $links = array(); |
| 1607 | 1607 | $terms = array(); |
@@ -1619,7 +1619,7 @@ discard block |
||
| 1619 | 1619 | if ($term != '') { |
| 1620 | 1620 | $term = get_term_by('id', $term, $html_var); |
| 1621 | 1621 | if (is_object($term)) { |
| 1622 | - $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>"; |
|
| 1622 | + $links[] = "<a href='".esc_attr(get_term_link($term, $post_taxonomy))."'>".$term->name."</a>"; |
|
| 1623 | 1623 | $terms[] = $term; |
| 1624 | 1624 | } |
| 1625 | 1625 | } |
@@ -1633,7 +1633,7 @@ discard block |
||
| 1633 | 1633 | $terms = $termsOrdered; |
| 1634 | 1634 | } |
| 1635 | 1635 | } |
| 1636 | - $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : ''; |
|
| 1636 | + $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object) $terms) : ''; |
|
| 1637 | 1637 | |
| 1638 | 1638 | if ($html_value != '') { |
| 1639 | 1639 | $field_icon = geodir_field_icon_proccess($cf); |
@@ -1646,9 +1646,9 @@ discard block |
||
| 1646 | 1646 | $field_icon = ''; |
| 1647 | 1647 | } |
| 1648 | 1648 | |
| 1649 | - $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; |
|
| 1650 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1651 | - $html .= '</span> ' . $html_value . '</div>'; |
|
| 1649 | + $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; |
|
| 1650 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1651 | + $html .= '</span> '.$html_value.'</div>'; |
|
| 1652 | 1652 | } |
| 1653 | 1653 | } |
| 1654 | 1654 | |
@@ -1656,7 +1656,7 @@ discard block |
||
| 1656 | 1656 | |
| 1657 | 1657 | return $html; |
| 1658 | 1658 | } |
| 1659 | -add_filter('geodir_custom_field_output_taxonomy','geodir_cf_taxonomy',10,3); |
|
| 1659 | +add_filter('geodir_custom_field_output_taxonomy', 'geodir_cf_taxonomy', 10, 3); |
|
| 1660 | 1660 | |
| 1661 | 1661 | |
| 1662 | 1662 | /** |
@@ -1670,21 +1670,21 @@ discard block |
||
| 1670 | 1670 | * |
| 1671 | 1671 | * @return string The html to output for the custom field. |
| 1672 | 1672 | */ |
| 1673 | -function geodir_cf_address($html,$location,$cf,$p=''){ |
|
| 1673 | +function geodir_cf_address($html, $location, $cf, $p = '') { |
|
| 1674 | 1674 | |
| 1675 | 1675 | // check we have the post value |
| 1676 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1677 | - else{ global $post;} |
|
| 1676 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1677 | + else { global $post; } |
|
| 1678 | 1678 | |
| 1679 | - if(!is_array($cf) && $cf!=''){ |
|
| 1679 | + if (!is_array($cf) && $cf != '') { |
|
| 1680 | 1680 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1681 | - if(!$cf){return NULL;} |
|
| 1681 | + if (!$cf) {return NULL; } |
|
| 1682 | 1682 | } |
| 1683 | 1683 | |
| 1684 | 1684 | $html_var = $cf['htmlvar_name']; |
| 1685 | 1685 | |
| 1686 | 1686 | // Check if there is a location specific filter. |
| 1687 | - if(has_filter("geodir_custom_field_output_address_loc_{$location}")){ |
|
| 1687 | + if (has_filter("geodir_custom_field_output_address_loc_{$location}")) { |
|
| 1688 | 1688 | /** |
| 1689 | 1689 | * Filter the address html by location. |
| 1690 | 1690 | * |
@@ -1692,11 +1692,11 @@ discard block |
||
| 1692 | 1692 | * @param array $cf The custom field array. |
| 1693 | 1693 | * @since 1.6.6 |
| 1694 | 1694 | */ |
| 1695 | - $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf); |
|
| 1695 | + $html = apply_filters("geodir_custom_field_output_address_loc_{$location}", $html, $cf); |
|
| 1696 | 1696 | } |
| 1697 | 1697 | |
| 1698 | 1698 | // Check if there is a custom field specific filter. |
| 1699 | - if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){ |
|
| 1699 | + if (has_filter("geodir_custom_field_output_address_var_{$html_var}")) { |
|
| 1700 | 1700 | /** |
| 1701 | 1701 | * Filter the address html by individual custom field. |
| 1702 | 1702 | * |
@@ -1705,11 +1705,11 @@ discard block |
||
| 1705 | 1705 | * @param array $cf The custom field array. |
| 1706 | 1706 | * @since 1.6.6 |
| 1707 | 1707 | */ |
| 1708 | - $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf); |
|
| 1708 | + $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}", $html, $location, $cf); |
|
| 1709 | 1709 | } |
| 1710 | 1710 | |
| 1711 | 1711 | // Check if there is a custom field key specific filter. |
| 1712 | - if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){ |
|
| 1712 | + if (has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")) { |
|
| 1713 | 1713 | /** |
| 1714 | 1714 | * Filter the address html by field type key. |
| 1715 | 1715 | * |
@@ -1718,14 +1718,14 @@ discard block |
||
| 1718 | 1718 | * @param array $cf The custom field array. |
| 1719 | 1719 | * @since 1.6.6 |
| 1720 | 1720 | */ |
| 1721 | - $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1721 | + $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1722 | 1722 | } |
| 1723 | 1723 | |
| 1724 | 1724 | // If not html then we run the standard output. |
| 1725 | - if(empty($html)){ |
|
| 1725 | + if (empty($html)) { |
|
| 1726 | 1726 | |
| 1727 | 1727 | global $preview; |
| 1728 | - $html_var = $cf['htmlvar_name'] . '_address'; |
|
| 1728 | + $html_var = $cf['htmlvar_name'].'_address'; |
|
| 1729 | 1729 | |
| 1730 | 1730 | if ($cf['extra_fields']) { |
| 1731 | 1731 | |
@@ -1788,37 +1788,37 @@ discard block |
||
| 1788 | 1788 | |
| 1789 | 1789 | if ($post->{$html_var}) { |
| 1790 | 1790 | |
| 1791 | - $field_icon = geodir_field_icon_proccess( $cf ); |
|
| 1792 | - if ( strpos( $field_icon, 'http' ) !== false ) { |
|
| 1791 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1792 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1793 | 1793 | $field_icon_af = ''; |
| 1794 | - } elseif ( $field_icon == '' ) { |
|
| 1794 | + } elseif ($field_icon == '') { |
|
| 1795 | 1795 | $field_icon_af = '<i class="fa fa-home"></i>'; |
| 1796 | 1796 | } else { |
| 1797 | 1797 | $field_icon_af = $field_icon; |
| 1798 | 1798 | $field_icon = ''; |
| 1799 | 1799 | } |
| 1800 | 1800 | |
| 1801 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1802 | - $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1803 | - $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ' '; |
|
| 1801 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$html_var.'" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1802 | + $html .= '<span class="geodir-i-location" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1803 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ' '; |
|
| 1804 | 1804 | $html .= '</span>'; |
| 1805 | 1805 | |
| 1806 | 1806 | $address_fields = array(); |
| 1807 | 1807 | |
| 1808 | - if ( isset($post->post_address) ) { |
|
| 1809 | - $address_fields['post_address'] = '<span itemprop="streetAddress">' . $post->post_address . '</span>'; |
|
| 1808 | + if (isset($post->post_address)) { |
|
| 1809 | + $address_fields['post_address'] = '<span itemprop="streetAddress">'.$post->post_address.'</span>'; |
|
| 1810 | 1810 | } |
| 1811 | - if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) { |
|
| 1812 | - $address_fields['post_city'] = '<span itemprop="addressLocality">' . $post->post_city . '</span>'; |
|
| 1811 | + if ($show_city_in_address && isset($post->post_city) && $post->post_city) { |
|
| 1812 | + $address_fields['post_city'] = '<span itemprop="addressLocality">'.$post->post_city.'</span>'; |
|
| 1813 | 1813 | } |
| 1814 | - if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) { |
|
| 1815 | - $address_fields['post_region'] = '<span itemprop="addressRegion">' . $post->post_region . '</span>'; |
|
| 1814 | + if ($show_region_in_address && isset($post->post_region) && $post->post_region) { |
|
| 1815 | + $address_fields['post_region'] = '<span itemprop="addressRegion">'.$post->post_region.'</span>'; |
|
| 1816 | 1816 | } |
| 1817 | - if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) { |
|
| 1818 | - $address_fields['post_zip'] = '<span itemprop="postalCode">' . $post->post_zip . '</span>'; |
|
| 1817 | + if ($show_zip_in_address && isset($post->post_zip) && $post->post_zip) { |
|
| 1818 | + $address_fields['post_zip'] = '<span itemprop="postalCode">'.$post->post_zip.'</span>'; |
|
| 1819 | 1819 | } |
| 1820 | - if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) { |
|
| 1821 | - $address_fields['post_country'] = '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span>'; |
|
| 1820 | + if ($show_country_in_address && isset($post->post_country) && $post->post_country) { |
|
| 1821 | + $address_fields['post_country'] = '<span itemprop="addressCountry">'.__($post->post_country, 'geodirectory').'</span>'; |
|
| 1822 | 1822 | } |
| 1823 | 1823 | |
| 1824 | 1824 | /** |
@@ -1844,4 +1844,4 @@ discard block |
||
| 1844 | 1844 | |
| 1845 | 1845 | return $html; |
| 1846 | 1846 | } |
| 1847 | -add_filter('geodir_custom_field_output_address','geodir_cf_address',10,3); |
|
| 1848 | 1847 | \ No newline at end of file |
| 1848 | +add_filter('geodir_custom_field_output_address', 'geodir_cf_address', 10, 3); |
|
| 1849 | 1849 | \ No newline at end of file |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | /** |
| 11 | 11 | * Get All Plugin functions from WordPress |
| 12 | 12 | */ |
| 13 | -include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 13 | +include_once(ABSPATH.'wp-admin/includes/plugin.php'); |
|
| 14 | 14 | |
| 15 | 15 | /*-----------------------------------------------------------------------------------*/ |
| 16 | 16 | /* Helper functions */ |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | * @return string example url eg: http://wpgeo.directory/wp-content/plugins/geodirectory |
| 28 | 28 | */ |
| 29 | 29 | function geodir_plugin_url() {
|
| 30 | - return plugins_url( '', dirname( __FILE__ ) ); |
|
| 30 | + return plugins_url('', dirname(__FILE__));
|
|
| 31 | 31 | /* |
| 32 | 32 | if ( is_ssl() ) : |
| 33 | 33 | return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
@@ -47,10 +47,10 @@ discard block |
||
| 47 | 47 | * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory |
| 48 | 48 | */ |
| 49 | 49 | function geodir_plugin_path() {
|
| 50 | - if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
|
|
| 51 | - return dirname( dirname( __FILE__ ) ); |
|
| 50 | + if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
|
|
| 51 | + return dirname(dirname(__FILE__)); |
|
| 52 | 52 | } else {
|
| 53 | - return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
|
| 53 | + return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__))); |
|
| 54 | 54 | } |
| 55 | 55 | } |
| 56 | 56 | |
@@ -65,10 +65,10 @@ discard block |
||
| 65 | 65 | * @return bool true or false. |
| 66 | 66 | * @todo check if this is faster than normal WP check and remove if not. |
| 67 | 67 | */ |
| 68 | -function geodir_is_plugin_active( $plugin ) {
|
|
| 69 | - $active_plugins = get_option( 'active_plugins' ); |
|
| 70 | - foreach ( $active_plugins as $key => $active_plugin ) {
|
|
| 71 | - if ( strstr( $active_plugin, $plugin ) ) {
|
|
| 68 | +function geodir_is_plugin_active($plugin) {
|
|
| 69 | + $active_plugins = get_option('active_plugins');
|
|
| 70 | + foreach ($active_plugins as $key => $active_plugin) {
|
|
| 71 | + if (strstr($active_plugin, $plugin)) {
|
|
| 72 | 72 | return true; |
| 73 | 73 | } |
| 74 | 74 | } |
@@ -90,8 +90,8 @@ discard block |
||
| 90 | 90 | * |
| 91 | 91 | * @return bool|int|string the formatted date. |
| 92 | 92 | */ |
| 93 | -function geodir_get_formated_date( $date ) {
|
|
| 94 | - return mysql2date( get_option( 'date_format' ), $date ); |
|
| 93 | +function geodir_get_formated_date($date) {
|
|
| 94 | + return mysql2date(get_option('date_format'), $date);
|
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |
@@ -107,8 +107,8 @@ discard block |
||
| 107 | 107 | * |
| 108 | 108 | * @return bool|int|string the formatted time. |
| 109 | 109 | */ |
| 110 | -function geodir_get_formated_time( $time ) {
|
|
| 111 | - return mysql2date( get_option( 'time_format' ), $time, $translate = true ); |
|
| 110 | +function geodir_get_formated_time($time) {
|
|
| 111 | + return mysql2date(get_option('time_format'), $time, $translate = true);
|
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | |
@@ -126,35 +126,35 @@ discard block |
||
| 126 | 126 | * |
| 127 | 127 | * @return string Formatted link. |
| 128 | 128 | */ |
| 129 | -function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
|
|
| 130 | - if ( $use_existing_arguments ) {
|
|
| 129 | +function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
|
|
| 130 | + if ($use_existing_arguments) {
|
|
| 131 | 131 | $params = $params + $_GET; |
| 132 | 132 | } |
| 133 | - if ( ! $params ) {
|
|
| 133 | + if (!$params) {
|
|
| 134 | 134 | return $url; |
| 135 | 135 | } |
| 136 | 136 | $link = $url; |
| 137 | - if ( strpos( $link, '?' ) === false ) {
|
|
| 137 | + if (strpos($link, '?') === false) {
|
|
| 138 | 138 | $link .= '?'; |
| 139 | 139 | } //If there is no '?' add one at the end |
| 140 | - elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
|
|
| 140 | + elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
|
|
| 141 | 141 | $link .= '&'; |
| 142 | 142 | } //If there is no '&' at the END, add one. |
| 143 | - elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
|
|
| 143 | + elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
|
|
| 144 | 144 | $link .= '&'; |
| 145 | 145 | } //If there is no '&' at the END, add one. |
| 146 | 146 | |
| 147 | 147 | $params_arr = array(); |
| 148 | - foreach ( $params as $key => $value ) {
|
|
| 149 | - if ( gettype( $value ) == 'array' ) { //Handle array data properly
|
|
| 150 | - foreach ( $value as $val ) {
|
|
| 151 | - $params_arr[] = $key . '[]=' . urlencode( $val ); |
|
| 148 | + foreach ($params as $key => $value) {
|
|
| 149 | + if (gettype($value) == 'array') { //Handle array data properly
|
|
| 150 | + foreach ($value as $val) {
|
|
| 151 | + $params_arr[] = $key.'[]='.urlencode($val); |
|
| 152 | 152 | } |
| 153 | 153 | } else {
|
| 154 | - $params_arr[] = $key . '=' . urlencode( $value ); |
|
| 154 | + $params_arr[] = $key.'='.urlencode($value); |
|
| 155 | 155 | } |
| 156 | 156 | } |
| 157 | - $link .= implode( '&', $params_arr ); |
|
| 157 | + $link .= implode('&', $params_arr);
|
|
| 158 | 158 | |
| 159 | 159 | return $link; |
| 160 | 160 | } |
@@ -171,18 +171,18 @@ discard block |
||
| 171 | 171 | * |
| 172 | 172 | * @return string Listing page url if valid. Otherwise home url will be returned. |
| 173 | 173 | */ |
| 174 | -function geodir_get_addlisting_link( $post_type = '' ) {
|
|
| 174 | +function geodir_get_addlisting_link($post_type = '') {
|
|
| 175 | 175 | global $wpdb; |
| 176 | 176 | |
| 177 | 177 | //$check_pkg = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
|
| 178 | 178 | $check_pkg = 1; |
| 179 | - if ( post_type_exists( $post_type ) && $check_pkg ) {
|
|
| 179 | + if (post_type_exists($post_type) && $check_pkg) {
|
|
| 180 | 180 | |
| 181 | - $add_listing_link = get_page_link( geodir_add_listing_page_id() ); |
|
| 181 | + $add_listing_link = get_page_link(geodir_add_listing_page_id()); |
|
| 182 | 182 | |
| 183 | - return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) ); |
|
| 183 | + return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
|
|
| 184 | 184 | } else {
|
| 185 | - return get_bloginfo( 'url' ); |
|
| 185 | + return get_bloginfo('url');
|
|
| 186 | 186 | } |
| 187 | 187 | } |
| 188 | 188 | |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) {
|
| 211 | 211 | // To build the entire URI we need to prepend the protocol, and the http host |
| 212 | 212 | // to the URI string. |
| 213 | - $pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
| 213 | + $pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; |
|
| 214 | 214 | } else {
|
| 215 | 215 | /* |
| 216 | 216 | * Since we do not have REQUEST_URI to work with, we will assume we are |
@@ -219,11 +219,11 @@ discard block |
||
| 219 | 219 | * |
| 220 | 220 | * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS |
| 221 | 221 | */ |
| 222 | - $pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME']; |
|
| 222 | + $pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME']; |
|
| 223 | 223 | |
| 224 | 224 | // If the query string exists append it to the URI string |
| 225 | 225 | if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
|
| 226 | - $pageURL .= '?' . $_SERVER['QUERY_STRING']; |
|
| 226 | + $pageURL .= '?'.$_SERVER['QUERY_STRING']; |
|
| 227 | 227 | } |
| 228 | 228 | } |
| 229 | 229 | |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | * |
| 235 | 235 | * @param string $pageURL The URL of the current page. |
| 236 | 236 | */ |
| 237 | - return apply_filters( 'geodir_curPageURL', $pageURL ); |
|
| 237 | + return apply_filters('geodir_curPageURL', $pageURL);
|
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | /** |
@@ -249,12 +249,12 @@ discard block |
||
| 249 | 249 | * |
| 250 | 250 | * @return string Cleaned variable. |
| 251 | 251 | */ |
| 252 | -function geodir_clean( $string ) {
|
|
| 252 | +function geodir_clean($string) {
|
|
| 253 | 253 | |
| 254 | - $string = trim( strip_tags( stripslashes( $string ) ) ); |
|
| 255 | - $string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens. |
|
| 256 | - $string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars. |
|
| 257 | - $string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one. |
|
| 254 | + $string = trim(strip_tags(stripslashes($string))); |
|
| 255 | + $string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
|
|
| 256 | + $string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
|
|
| 257 | + $string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
|
|
| 258 | 258 | |
| 259 | 259 | return $string; |
| 260 | 260 | } |
@@ -268,13 +268,13 @@ discard block |
||
| 268 | 268 | */ |
| 269 | 269 | function geodir_get_weekday() {
|
| 270 | 270 | return array( |
| 271 | - __( 'Sunday', 'geodirectory' ), |
|
| 272 | - __( 'Monday', 'geodirectory' ), |
|
| 273 | - __( 'Tuesday', 'geodirectory' ), |
|
| 274 | - __( 'Wednesday', 'geodirectory' ), |
|
| 275 | - __( 'Thursday', 'geodirectory' ), |
|
| 276 | - __( 'Friday', 'geodirectory' ), |
|
| 277 | - __( 'Saturday', 'geodirectory' ) |
|
| 271 | + __('Sunday', 'geodirectory'),
|
|
| 272 | + __('Monday', 'geodirectory'),
|
|
| 273 | + __('Tuesday', 'geodirectory'),
|
|
| 274 | + __('Wednesday', 'geodirectory'),
|
|
| 275 | + __('Thursday', 'geodirectory'),
|
|
| 276 | + __('Friday', 'geodirectory'),
|
|
| 277 | + __('Saturday', 'geodirectory')
|
|
| 278 | 278 | ); |
| 279 | 279 | } |
| 280 | 280 | |
@@ -287,11 +287,11 @@ discard block |
||
| 287 | 287 | */ |
| 288 | 288 | function geodir_get_weeks() {
|
| 289 | 289 | return array( |
| 290 | - __( 'First', 'geodirectory' ), |
|
| 291 | - __( 'Second', 'geodirectory' ), |
|
| 292 | - __( 'Third', 'geodirectory' ), |
|
| 293 | - __( 'Fourth', 'geodirectory' ), |
|
| 294 | - __( 'Last', 'geodirectory' ) |
|
| 290 | + __('First', 'geodirectory'),
|
|
| 291 | + __('Second', 'geodirectory'),
|
|
| 292 | + __('Third', 'geodirectory'),
|
|
| 293 | + __('Fourth', 'geodirectory'),
|
|
| 294 | + __('Last', 'geodirectory')
|
|
| 295 | 295 | ); |
| 296 | 296 | } |
| 297 | 297 | |
@@ -310,112 +310,112 @@ discard block |
||
| 310 | 310 | * |
| 311 | 311 | * @return bool If valid returns true. Otherwise false. |
| 312 | 312 | */ |
| 313 | -function geodir_is_page( $gdpage = '' ) {
|
|
| 313 | +function geodir_is_page($gdpage = '') {
|
|
| 314 | 314 | |
| 315 | 315 | global $wp_query, $post, $wp; |
| 316 | 316 | //if(!is_admin()): |
| 317 | 317 | |
| 318 | - switch ( $gdpage ): |
|
| 318 | + switch ($gdpage): |
|
| 319 | 319 | case 'add-listing': |
| 320 | 320 | |
| 321 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
|
|
| 321 | + if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
|
|
| 322 | 322 | return true; |
| 323 | - } elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
|
|
| 323 | + } elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
|
|
| 324 | 324 | return true; |
| 325 | 325 | } |
| 326 | 326 | |
| 327 | 327 | break; |
| 328 | 328 | case 'preview': |
| 329 | - if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] ) |
|
| 330 | - && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() ) |
|
| 329 | + if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
|
|
| 330 | + && in_array($_REQUEST['listing_type'], geodir_get_posttypes()) |
|
| 331 | 331 | ) {
|
| 332 | 332 | return true; |
| 333 | 333 | } |
| 334 | 334 | break; |
| 335 | 335 | case 'listing-success': |
| 336 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
|
|
| 336 | + if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
|
|
| 337 | 337 | return true; |
| 338 | 338 | } |
| 339 | 339 | break; |
| 340 | 340 | case 'detail': |
| 341 | - $post_type = get_query_var( 'post_type' ); |
|
| 342 | - if ( is_array( $post_type ) ) {
|
|
| 343 | - $post_type = reset( $post_type ); |
|
| 341 | + $post_type = get_query_var('post_type');
|
|
| 342 | + if (is_array($post_type)) {
|
|
| 343 | + $post_type = reset($post_type); |
|
| 344 | 344 | } |
| 345 | - if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
|
|
| 345 | + if (is_single() && in_array($post_type, geodir_get_posttypes())) {
|
|
| 346 | 346 | return true; |
| 347 | 347 | } |
| 348 | 348 | break; |
| 349 | 349 | case 'pt': |
| 350 | - $post_type = get_query_var( 'post_type' ); |
|
| 351 | - if ( is_array( $post_type ) ) {
|
|
| 352 | - $post_type = reset( $post_type ); |
|
| 350 | + $post_type = get_query_var('post_type');
|
|
| 351 | + if (is_array($post_type)) {
|
|
| 352 | + $post_type = reset($post_type); |
|
| 353 | 353 | } |
| 354 | - if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
|
|
| 354 | + if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
|
|
| 355 | 355 | return true; |
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | break; |
| 359 | 359 | case 'listing': |
| 360 | - if ( is_tax() && geodir_get_taxonomy_posttype() ) {
|
|
| 360 | + if (is_tax() && geodir_get_taxonomy_posttype()) {
|
|
| 361 | 361 | global $current_term, $taxonomy, $term; |
| 362 | 362 | |
| 363 | 363 | return true; |
| 364 | 364 | } |
| 365 | - $post_type = get_query_var( 'post_type' ); |
|
| 366 | - if ( is_array( $post_type ) ) {
|
|
| 367 | - $post_type = reset( $post_type ); |
|
| 365 | + $post_type = get_query_var('post_type');
|
|
| 366 | + if (is_array($post_type)) {
|
|
| 367 | + $post_type = reset($post_type); |
|
| 368 | 368 | } |
| 369 | - if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
|
|
| 369 | + if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
|
|
| 370 | 370 | return true; |
| 371 | 371 | } |
| 372 | 372 | |
| 373 | 373 | break; |
| 374 | 374 | case 'home': |
| 375 | 375 | |
| 376 | - if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
|
|
| 376 | + if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
|
|
| 377 | 377 | return true; |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | break; |
| 381 | 381 | case 'location': |
| 382 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
|
|
| 382 | + if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
|
|
| 383 | 383 | return true; |
| 384 | 384 | } |
| 385 | 385 | break; |
| 386 | 386 | case 'author': |
| 387 | - if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
|
|
| 387 | + if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
|
|
| 388 | 388 | return true; |
| 389 | 389 | } |
| 390 | 390 | |
| 391 | - if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
|
|
| 392 | - if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
|
|
| 391 | + if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
|
|
| 392 | + if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
|
|
| 393 | 393 | return true; |
| 394 | 394 | } |
| 395 | 395 | } |
| 396 | 396 | break; |
| 397 | 397 | case 'search': |
| 398 | - if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
|
|
| 398 | + if (is_search() && isset($_REQUEST['geodir_search'])) {
|
|
| 399 | 399 | return true; |
| 400 | 400 | } |
| 401 | 401 | break; |
| 402 | 402 | case 'info': |
| 403 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
|
|
| 403 | + if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
|
|
| 404 | 404 | return true; |
| 405 | 405 | } |
| 406 | 406 | break; |
| 407 | 407 | case 'login': |
| 408 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
|
|
| 408 | + if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
|
|
| 409 | 409 | return true; |
| 410 | 410 | } |
| 411 | 411 | break; |
| 412 | 412 | case 'checkout': |
| 413 | - if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
|
|
| 413 | + if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
|
|
| 414 | 414 | return true; |
| 415 | 415 | } |
| 416 | 416 | break; |
| 417 | 417 | case 'invoices': |
| 418 | - if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
|
|
| 418 | + if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
|
|
| 419 | 419 | return true; |
| 420 | 420 | } |
| 421 | 421 | break; |
@@ -440,25 +440,25 @@ discard block |
||
| 440 | 440 | * |
| 441 | 441 | * @param object $wp WordPress object. |
| 442 | 442 | */ |
| 443 | -function geodir_set_is_geodir_page( $wp ) {
|
|
| 444 | - if ( ! is_admin() ) {
|
|
| 443 | +function geodir_set_is_geodir_page($wp) {
|
|
| 444 | + if (!is_admin()) {
|
|
| 445 | 445 | //$wp->query_vars['gd_is_geodir_page'] = false; |
| 446 | 446 | //print_r() |
| 447 | - if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array( |
|
| 447 | + if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array( |
|
| 448 | 448 | 'preview', |
| 449 | 449 | 'page', |
| 450 | 450 | 'paged', |
| 451 | 451 | 'cpage' |
| 452 | - ) ) |
|
| 452 | + )) |
|
| 453 | 453 | ) {
|
| 454 | - if ( geodir_is_page( 'home' ) ) {
|
|
| 454 | + if (geodir_is_page('home')) {
|
|
| 455 | 455 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 456 | 456 | } |
| 457 | 457 | |
| 458 | 458 | |
| 459 | 459 | } |
| 460 | 460 | |
| 461 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
|
|
| 461 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
|
|
| 462 | 462 | if ( |
| 463 | 463 | $wp->query_vars['page_id'] == geodir_add_listing_page_id() |
| 464 | 464 | || $wp->query_vars['page_id'] == geodir_preview_page_id() |
@@ -467,26 +467,26 @@ discard block |
||
| 467 | 467 | || $wp->query_vars['page_id'] == geodir_home_page_id() |
| 468 | 468 | || $wp->query_vars['page_id'] == geodir_info_page_id() |
| 469 | 469 | || $wp->query_vars['page_id'] == geodir_login_page_id() |
| 470 | - || ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() ) |
|
| 471 | - || ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() ) |
|
| 470 | + || (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
|
|
| 471 | + || (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
|
|
| 472 | 472 | ) {
|
| 473 | 473 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 474 | 474 | } |
| 475 | 475 | } |
| 476 | 476 | |
| 477 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
|
|
| 478 | - $page = get_page_by_path( $wp->query_vars['pagename'] ); |
|
| 477 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
|
|
| 478 | + $page = get_page_by_path($wp->query_vars['pagename']); |
|
| 479 | 479 | |
| 480 | - if ( ! empty( $page ) && ( |
|
| 480 | + if (!empty($page) && ( |
|
| 481 | 481 | $page->ID == geodir_add_listing_page_id() |
| 482 | 482 | || $page->ID == geodir_preview_page_id() |
| 483 | 483 | || $page->ID == geodir_success_page_id() |
| 484 | 484 | || $page->ID == geodir_location_page_id() |
| 485 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() ) |
|
| 486 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() ) |
|
| 487 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() ) |
|
| 488 | - || ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() ) |
|
| 489 | - || ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() ) |
|
| 485 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id()) |
|
| 486 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id()) |
|
| 487 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id()) |
|
| 488 | + || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
|
|
| 489 | + || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
|
|
| 490 | 490 | ) |
| 491 | 491 | ) {
|
| 492 | 492 | $wp->query_vars['gd_is_geodir_page'] = true; |
@@ -494,20 +494,20 @@ discard block |
||
| 494 | 494 | } |
| 495 | 495 | |
| 496 | 496 | |
| 497 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
|
|
| 497 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
|
|
| 498 | 498 | $requested_post_type = $wp->query_vars['post_type']; |
| 499 | 499 | // check if this post type is geodirectory post types |
| 500 | 500 | $post_type_array = geodir_get_posttypes(); |
| 501 | - if ( in_array( $requested_post_type, $post_type_array ) ) {
|
|
| 501 | + if (in_array($requested_post_type, $post_type_array)) {
|
|
| 502 | 502 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 503 | 503 | } |
| 504 | 504 | } |
| 505 | 505 | |
| 506 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
|
|
| 507 | - $geodir_taxonomis = geodir_get_taxonomies( '', true ); |
|
| 508 | - if ( ! empty( $geodir_taxonomis ) ) {
|
|
| 509 | - foreach ( $geodir_taxonomis as $taxonomy ) {
|
|
| 510 | - if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
|
|
| 506 | + if (!isset($wp->query_vars['gd_is_geodir_page'])) {
|
|
| 507 | + $geodir_taxonomis = geodir_get_taxonomies('', true);
|
|
| 508 | + if (!empty($geodir_taxonomis)) {
|
|
| 509 | + foreach ($geodir_taxonomis as $taxonomy) {
|
|
| 510 | + if (array_key_exists($taxonomy, $wp->query_vars)) {
|
|
| 511 | 511 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 512 | 512 | break; |
| 513 | 513 | } |
@@ -516,20 +516,20 @@ discard block |
||
| 516 | 516 | |
| 517 | 517 | } |
| 518 | 518 | |
| 519 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
|
|
| 519 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
|
|
| 520 | 520 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 521 | 521 | } |
| 522 | 522 | |
| 523 | 523 | |
| 524 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
|
|
| 524 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
|
|
| 525 | 525 | $wp->query_vars['gd_is_geodir_page'] = true; |
| 526 | 526 | } |
| 527 | 527 | |
| 528 | 528 | |
| 529 | 529 | //check if homepage |
| 530 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) |
|
| 531 | - && ! isset( $wp->query_vars['page_id'] ) |
|
| 532 | - && ! isset( $wp->query_vars['pagename'] ) |
|
| 530 | + if (!isset($wp->query_vars['gd_is_geodir_page']) |
|
| 531 | + && !isset($wp->query_vars['page_id']) |
|
| 532 | + && !isset($wp->query_vars['pagename']) |
|
| 533 | 533 | && is_page_geodir_home() |
| 534 | 534 | ) {
|
| 535 | 535 | $wp->query_vars['gd_is_geodir_page'] = true; |
@@ -553,14 +553,14 @@ discard block |
||
| 553 | 553 | */ |
| 554 | 554 | function geodir_is_geodir_page() {
|
| 555 | 555 | global $wp; |
| 556 | - if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
|
|
| 556 | + if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
|
|
| 557 | 557 | return true; |
| 558 | 558 | } else {
|
| 559 | 559 | return false; |
| 560 | 560 | } |
| 561 | 561 | } |
| 562 | 562 | |
| 563 | -if ( ! function_exists( 'geodir_get_imagesize' ) ) {
|
|
| 563 | +if (!function_exists('geodir_get_imagesize')) {
|
|
| 564 | 564 | /** |
| 565 | 565 | * Get image size using the size key . |
| 566 | 566 | * |
@@ -571,13 +571,13 @@ discard block |
||
| 571 | 571 | * |
| 572 | 572 | * @return array|mixed|void|WP_Error If valid returns image size. Else returns error. |
| 573 | 573 | */ |
| 574 | - function geodir_get_imagesize( $size = '' ) {
|
|
| 574 | + function geodir_get_imagesize($size = '') {
|
|
| 575 | 575 | |
| 576 | 576 | $imagesizes = array( |
| 577 | - 'list-thumb' => array( 'w' => 283, 'h' => 188 ), |
|
| 578 | - 'thumbnail' => array( 'w' => 125, 'h' => 125 ), |
|
| 579 | - 'widget-thumb' => array( 'w' => 50, 'h' => 50 ), |
|
| 580 | - 'slider-thumb' => array( 'w' => 100, 'h' => 100 ) |
|
| 577 | + 'list-thumb' => array('w' => 283, 'h' => 188),
|
|
| 578 | + 'thumbnail' => array('w' => 125, 'h' => 125),
|
|
| 579 | + 'widget-thumb' => array('w' => 50, 'h' => 50),
|
|
| 580 | + 'slider-thumb' => array('w' => 100, 'h' => 100)
|
|
| 581 | 581 | ); |
| 582 | 582 | |
| 583 | 583 | /** |
@@ -587,9 +587,9 @@ discard block |
||
| 587 | 587 | * |
| 588 | 588 | * @param array $imagesizes Image size array. |
| 589 | 589 | */ |
| 590 | - $imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes ); |
|
| 590 | + $imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
|
|
| 591 | 591 | |
| 592 | - if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
|
|
| 592 | + if (!empty($size) && array_key_exists($size, $imagesizes)) {
|
|
| 593 | 593 | /** |
| 594 | 594 | * Filters image size of the passed key. |
| 595 | 595 | * |
@@ -597,11 +597,11 @@ discard block |
||
| 597 | 597 | * |
| 598 | 598 | * @param array $imagesizes [$size] Image size array of the passed key. |
| 599 | 599 | */ |
| 600 | - return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] ); |
|
| 600 | + return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
|
|
| 601 | 601 | |
| 602 | - } elseif ( ! empty( $size ) ) {
|
|
| 602 | + } elseif (!empty($size)) {
|
|
| 603 | 603 | |
| 604 | - return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) ); |
|
| 604 | + return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
|
|
| 605 | 605 | |
| 606 | 606 | } |
| 607 | 607 | |
@@ -625,7 +625,7 @@ discard block |
||
| 625 | 625 | */ |
| 626 | 626 | |
| 627 | 627 | |
| 628 | -if ( ! function_exists( 'createRandomString' ) ) {
|
|
| 628 | +if (!function_exists('createRandomString')) {
|
|
| 629 | 629 | /** |
| 630 | 630 | * Creates random string. |
| 631 | 631 | * |
@@ -635,21 +635,21 @@ discard block |
||
| 635 | 635 | */ |
| 636 | 636 | function createRandomString() {
|
| 637 | 637 | $chars = "abcdefghijkmlnopqrstuvwxyz1023456789"; |
| 638 | - srand( (double) microtime() * 1000000 ); |
|
| 638 | + srand((double) microtime() * 1000000); |
|
| 639 | 639 | $i = 0; |
| 640 | 640 | $rstring = ''; |
| 641 | - while ( $i <= 25 ) {
|
|
| 641 | + while ($i <= 25) {
|
|
| 642 | 642 | $num = rand() % 33; |
| 643 | - $tmp = substr( $chars, $num, 1 ); |
|
| 644 | - $rstring = $rstring . $tmp; |
|
| 645 | - $i ++; |
|
| 643 | + $tmp = substr($chars, $num, 1); |
|
| 644 | + $rstring = $rstring.$tmp; |
|
| 645 | + $i++; |
|
| 646 | 646 | } |
| 647 | 647 | |
| 648 | 648 | return $rstring; |
| 649 | 649 | } |
| 650 | 650 | } |
| 651 | 651 | |
| 652 | -if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
|
|
| 652 | +if (!function_exists('geodir_getDistanceRadius')) {
|
|
| 653 | 653 | /** |
| 654 | 654 | * Calculates the distance radius. |
| 655 | 655 | * |
@@ -660,9 +660,9 @@ discard block |
||
| 660 | 660 | * |
| 661 | 661 | * @return float The mean radius. |
| 662 | 662 | */ |
| 663 | - function geodir_getDistanceRadius( $uom = 'km' ) {
|
|
| 663 | + function geodir_getDistanceRadius($uom = 'km') {
|
|
| 664 | 664 | // Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude |
| 665 | - switch ( geodir_strtolower( $uom ) ): |
|
| 665 | + switch (geodir_strtolower($uom)): |
|
| 666 | 666 | case 'km' : |
| 667 | 667 | $earthMeanRadius = 6371.009; // km |
| 668 | 668 | break; |
@@ -694,7 +694,7 @@ discard block |
||
| 694 | 694 | } |
| 695 | 695 | |
| 696 | 696 | |
| 697 | -if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
|
|
| 697 | +if (!function_exists('geodir_calculateDistanceFromLatLong')) {
|
|
| 698 | 698 | /** |
| 699 | 699 | * Calculate the great circle distance between two points identified by longitude and latitude. |
| 700 | 700 | * |
@@ -707,17 +707,17 @@ discard block |
||
| 707 | 707 | * |
| 708 | 708 | * @return float The distance. |
| 709 | 709 | */ |
| 710 | - function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
|
|
| 710 | + function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
|
|
| 711 | 711 | // Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude |
| 712 | 712 | |
| 713 | - $earthMeanRadius = geodir_getDistanceRadius( $uom ); |
|
| 713 | + $earthMeanRadius = geodir_getDistanceRadius($uom); |
|
| 714 | 714 | |
| 715 | - $deltaLatitude = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] ); |
|
| 716 | - $deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] ); |
|
| 717 | - $a = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) + |
|
| 718 | - cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) * |
|
| 719 | - sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 ); |
|
| 720 | - $c = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) ); |
|
| 715 | + $deltaLatitude = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']); |
|
| 716 | + $deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']); |
|
| 717 | + $a = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) + |
|
| 718 | + cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) * |
|
| 719 | + sin($deltaLongitude / 2) * sin($deltaLongitude / 2); |
|
| 720 | + $c = 2 * atan2(sqrt($a), sqrt(1 - $a)); |
|
| 721 | 721 | $distance = $earthMeanRadius * $c; |
| 722 | 722 | |
| 723 | 723 | return $distance; |
@@ -726,7 +726,7 @@ discard block |
||
| 726 | 726 | } |
| 727 | 727 | |
| 728 | 728 | |
| 729 | -if ( ! function_exists( 'geodir_sendEmail' ) ) {
|
|
| 729 | +if (!function_exists('geodir_sendEmail')) {
|
|
| 730 | 730 | /** |
| 731 | 731 | * The main function that send transactional emails using the args provided. |
| 732 | 732 | * |
@@ -745,92 +745,92 @@ discard block |
||
| 745 | 745 | * @param string $post_id The post ID. |
| 746 | 746 | * @param string $user_id The user ID. |
| 747 | 747 | */ |
| 748 | - function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
|
|
| 748 | + function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
|
|
| 749 | 749 | $login_details = ''; |
| 750 | 750 | |
| 751 | 751 | // strip slashes from subject & message text |
| 752 | - $to_subject = stripslashes_deep( $to_subject ); |
|
| 753 | - $to_message = stripslashes_deep( $to_message ); |
|
| 752 | + $to_subject = stripslashes_deep($to_subject); |
|
| 753 | + $to_message = stripslashes_deep($to_message); |
|
| 754 | 754 | |
| 755 | - if ( $message_type == 'send_enquiry' ) {
|
|
| 756 | - $subject = get_option( 'geodir_email_enquiry_subject' ); |
|
| 757 | - $message = get_option( 'geodir_email_enquiry_content' ); |
|
| 755 | + if ($message_type == 'send_enquiry') {
|
|
| 756 | + $subject = get_option('geodir_email_enquiry_subject');
|
|
| 757 | + $message = get_option('geodir_email_enquiry_content');
|
|
| 758 | 758 | |
| 759 | 759 | // change to name in some cases |
| 760 | - $post_author = get_post_field( 'post_author', $post_id ); |
|
| 761 | - if(is_super_admin( $post_author )){// if admin probably not the post author so change name
|
|
| 762 | - $toEmailName = __('Business Owner','geodirectory');
|
|
| 763 | - }elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
|
|
| 764 | - $toEmailName = __('Business Owner','geodirectory');
|
|
| 760 | + $post_author = get_post_field('post_author', $post_id);
|
|
| 761 | + if (is_super_admin($post_author)) {// if admin probably not the post author so change name
|
|
| 762 | + $toEmailName = __('Business Owner', 'geodirectory');
|
|
| 763 | + }elseif (defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id, 'claimed') != '1') {// if claim manager installed but listing not claimed
|
|
| 764 | + $toEmailName = __('Business Owner', 'geodirectory');
|
|
| 765 | 765 | } |
| 766 | 766 | |
| 767 | 767 | |
| 768 | - } elseif ( $message_type == 'forgot_password' ) {
|
|
| 769 | - $subject = get_option( 'geodir_forgot_password_subject' ); |
|
| 770 | - $message = get_option( 'geodir_forgot_password_content' ); |
|
| 768 | + } elseif ($message_type == 'forgot_password') {
|
|
| 769 | + $subject = get_option('geodir_forgot_password_subject');
|
|
| 770 | + $message = get_option('geodir_forgot_password_content');
|
|
| 771 | 771 | $login_details = $to_message; |
| 772 | - } elseif ( $message_type == 'registration' ) {
|
|
| 773 | - $subject = get_option( 'geodir_registration_success_email_subject' ); |
|
| 774 | - $message = get_option( 'geodir_registration_success_email_content' ); |
|
| 772 | + } elseif ($message_type == 'registration') {
|
|
| 773 | + $subject = get_option('geodir_registration_success_email_subject');
|
|
| 774 | + $message = get_option('geodir_registration_success_email_content');
|
|
| 775 | 775 | $login_details = $to_message; |
| 776 | - } elseif ( $message_type == 'post_submit' ) {
|
|
| 777 | - $subject = get_option( 'geodir_post_submited_success_email_subject' ); |
|
| 778 | - $message = get_option( 'geodir_post_submited_success_email_content' ); |
|
| 779 | - } elseif ( $message_type == 'listing_published' ) {
|
|
| 780 | - $subject = get_option( 'geodir_post_published_email_subject' ); |
|
| 781 | - $message = get_option( 'geodir_post_published_email_content' ); |
|
| 782 | - } elseif ( $message_type == 'listing_edited' ) {
|
|
| 783 | - $subject = get_option( 'geodir_post_edited_email_subject_admin' ); |
|
| 784 | - $message = get_option( 'geodir_post_edited_email_content_admin' ); |
|
| 776 | + } elseif ($message_type == 'post_submit') {
|
|
| 777 | + $subject = get_option('geodir_post_submited_success_email_subject');
|
|
| 778 | + $message = get_option('geodir_post_submited_success_email_content');
|
|
| 779 | + } elseif ($message_type == 'listing_published') {
|
|
| 780 | + $subject = get_option('geodir_post_published_email_subject');
|
|
| 781 | + $message = get_option('geodir_post_published_email_content');
|
|
| 782 | + } elseif ($message_type == 'listing_edited') {
|
|
| 783 | + $subject = get_option('geodir_post_edited_email_subject_admin');
|
|
| 784 | + $message = get_option('geodir_post_edited_email_content_admin');
|
|
| 785 | 785 | } |
| 786 | 786 | |
| 787 | - if ( ! empty( $subject ) ) {
|
|
| 788 | - $subject = __( stripslashes_deep( $subject ), 'geodirectory' ); |
|
| 787 | + if (!empty($subject)) {
|
|
| 788 | + $subject = __(stripslashes_deep($subject), 'geodirectory'); |
|
| 789 | 789 | } |
| 790 | 790 | |
| 791 | - if ( ! empty( $message ) ) {
|
|
| 792 | - $message = __( stripslashes_deep( $message ), 'geodirectory' ); |
|
| 791 | + if (!empty($message)) {
|
|
| 792 | + $message = __(stripslashes_deep($message), 'geodirectory'); |
|
| 793 | 793 | } |
| 794 | 794 | |
| 795 | - $to_message = nl2br( $to_message ); |
|
| 796 | - $sitefromEmail = get_option( 'site_email' ); |
|
| 795 | + $to_message = nl2br($to_message); |
|
| 796 | + $sitefromEmail = get_option('site_email');
|
|
| 797 | 797 | $sitefromEmailName = get_site_emailName(); |
| 798 | - $productlink = get_permalink( $post_id ); |
|
| 798 | + $productlink = get_permalink($post_id); |
|
| 799 | 799 | |
| 800 | 800 | $user_login = ''; |
| 801 | - if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
|
|
| 801 | + if ($user_id > 0 && $user_info = get_userdata($user_id)) {
|
|
| 802 | 802 | $user_login = $user_info->user_login; |
| 803 | 803 | } |
| 804 | 804 | |
| 805 | 805 | $posted_date = ''; |
| 806 | 806 | $listingLink = ''; |
| 807 | 807 | |
| 808 | - $post_info = get_post( $post_id ); |
|
| 808 | + $post_info = get_post($post_id); |
|
| 809 | 809 | |
| 810 | - if ( $post_info ) {
|
|
| 810 | + if ($post_info) {
|
|
| 811 | 811 | $posted_date = $post_info->post_date; |
| 812 | - $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>'; |
|
| 812 | + $listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>'; |
|
| 813 | 813 | } |
| 814 | 814 | $siteurl = home_url(); |
| 815 | - $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>'; |
|
| 815 | + $siteurl_link = '<a href="'.$siteurl.'">'.$siteurl.'</a>'; |
|
| 816 | 816 | $loginurl = geodir_login_url(); |
| 817 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
| 817 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
| 818 | 818 | |
| 819 | - $post_author_id = ! empty( $post_info ) ? $post_info->post_author : 0; |
|
| 820 | - $post_author_data = $post_author_id ? get_userdata( $post_author_id ) : NULL; |
|
| 821 | - $post_author_name = geodir_get_client_name( $post_author_id ); |
|
| 822 | - $post_author_email = !empty( $post_author_data->user_email ) ? $post_author_data->user_email : ''; |
|
| 823 | - $current_date = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) ); |
|
| 824 | - |
|
| 825 | - if ( $fromEmail == '' ) {
|
|
| 826 | - $fromEmail = get_option( 'site_email' ); |
|
| 819 | + $post_author_id = !empty($post_info) ? $post_info->post_author : 0; |
|
| 820 | + $post_author_data = $post_author_id ? get_userdata($post_author_id) : NULL; |
|
| 821 | + $post_author_name = geodir_get_client_name($post_author_id); |
|
| 822 | + $post_author_email = !empty($post_author_data->user_email) ? $post_author_data->user_email : ''; |
|
| 823 | + $current_date = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
|
|
| 824 | + |
|
| 825 | + if ($fromEmail == '') {
|
|
| 826 | + $fromEmail = get_option('site_email');
|
|
| 827 | 827 | } |
| 828 | 828 | |
| 829 | - if ( $fromEmailName == '' ) {
|
|
| 830 | - $fromEmailName = get_option( 'site_email_name' ); |
|
| 829 | + if ($fromEmailName == '') {
|
|
| 830 | + $fromEmailName = get_option('site_email_name');
|
|
| 831 | 831 | } |
| 832 | 832 | |
| 833 | - $search_array = array( |
|
| 833 | + $search_array = array( |
|
| 834 | 834 | '[#listing_link#]', |
| 835 | 835 | '[#site_name_url#]', |
| 836 | 836 | '[#post_id#]', |
@@ -872,7 +872,7 @@ discard block |
||
| 872 | 872 | $post_author_email, |
| 873 | 873 | $current_date, |
| 874 | 874 | ); |
| 875 | - $message = str_replace( $search_array, $replace_array, $message ); |
|
| 875 | + $message = str_replace($search_array, $replace_array, $message); |
|
| 876 | 876 | |
| 877 | 877 | $search_array = array( |
| 878 | 878 | '[#listing_link#]', |
@@ -910,12 +910,12 @@ discard block |
||
| 910 | 910 | $post_author_email, |
| 911 | 911 | $current_date |
| 912 | 912 | ); |
| 913 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
| 913 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
| 914 | 914 | |
| 915 | - $headers = array(); |
|
| 915 | + $headers = array(); |
|
| 916 | 916 | $headers[] = 'Content-type: text/html; charset=UTF-8'; |
| 917 | - $headers[] = "Reply-To: " . $fromEmail; |
|
| 918 | - $headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>'; |
|
| 917 | + $headers[] = "Reply-To: ".$fromEmail; |
|
| 918 | + $headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>'; |
|
| 919 | 919 | |
| 920 | 920 | $to = $toEmail; |
| 921 | 921 | |
@@ -937,7 +937,7 @@ discard block |
||
| 937 | 937 | * @param string $post_id The post ID. |
| 938 | 938 | * @param string $user_id The user ID. |
| 939 | 939 | */ |
| 940 | - $to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 940 | + $to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 941 | 941 | /** |
| 942 | 942 | * Filter the client email subject. |
| 943 | 943 | * |
@@ -956,7 +956,7 @@ discard block |
||
| 956 | 956 | * @param string $post_id The post ID. |
| 957 | 957 | * @param string $user_id The user ID. |
| 958 | 958 | */ |
| 959 | - $subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 959 | + $subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 960 | 960 | /** |
| 961 | 961 | * Filter the client email message. |
| 962 | 962 | * |
@@ -975,7 +975,7 @@ discard block |
||
| 975 | 975 | * @param string $post_id The post ID. |
| 976 | 976 | * @param string $user_id The user ID. |
| 977 | 977 | */ |
| 978 | - $message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 978 | + $message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 979 | 979 | /** |
| 980 | 980 | * Filter the client email headers. |
| 981 | 981 | * |
@@ -994,39 +994,39 @@ discard block |
||
| 994 | 994 | * @param string $post_id The post ID. |
| 995 | 995 | * @param string $user_id The user ID. |
| 996 | 996 | */ |
| 997 | - $headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 997 | + $headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 998 | 998 | |
| 999 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
| 999 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
| 1000 | 1000 | |
| 1001 | - if ( ! $sent ) {
|
|
| 1002 | - if ( is_array( $to ) ) {
|
|
| 1003 | - $to = implode( ',', $to ); |
|
| 1001 | + if (!$sent) {
|
|
| 1002 | + if (is_array($to)) {
|
|
| 1003 | + $to = implode(',', $to);
|
|
| 1004 | 1004 | } |
| 1005 | 1005 | $log_message = sprintf( |
| 1006 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
| 1006 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
|
|
| 1007 | 1007 | $message_type, |
| 1008 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
| 1008 | + date_i18n('F j Y H:i:s', current_time('timestamp')),
|
|
| 1009 | 1009 | $to, |
| 1010 | 1010 | $subject |
| 1011 | 1011 | ); |
| 1012 | - geodir_error_log( $log_message ); |
|
| 1012 | + geodir_error_log($log_message); |
|
| 1013 | 1013 | } |
| 1014 | 1014 | |
| 1015 | 1015 | ///////// ADMIN BCC EMIALS |
| 1016 | - $adminEmail = get_bloginfo( 'admin_email' ); |
|
| 1016 | + $adminEmail = get_bloginfo('admin_email');
|
|
| 1017 | 1017 | $to = $adminEmail; |
| 1018 | 1018 | |
| 1019 | 1019 | $admin_bcc = false; |
| 1020 | - if ( $message_type == 'registration' ) {
|
|
| 1021 | - $message_raw = explode( __( "Password:", 'geodirectory' ), $message ); |
|
| 1022 | - $message_raw2 = explode( "</p>", $message_raw[1], 2 ); |
|
| 1023 | - $message = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1]; |
|
| 1020 | + if ($message_type == 'registration') {
|
|
| 1021 | + $message_raw = explode(__("Password:", 'geodirectory'), $message);
|
|
| 1022 | + $message_raw2 = explode("</p>", $message_raw[1], 2);
|
|
| 1023 | + $message = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
|
|
| 1024 | 1024 | } |
| 1025 | - if ( $message_type == 'post_submit' && ( get_option( 'geodir_notify_post_submit' ) || get_option( 'geodir_notify_post_submit', '-1' ) == '-1' ) ) {
|
|
| 1026 | - $subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' ); |
|
| 1027 | - $message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' ); |
|
| 1025 | + if ($message_type == 'post_submit' && (get_option('geodir_notify_post_submit') || get_option('geodir_notify_post_submit', '-1') == '-1')) {
|
|
| 1026 | + $subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
|
|
| 1027 | + $message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
|
|
| 1028 | 1028 | |
| 1029 | - $search_array = array( |
|
| 1029 | + $search_array = array( |
|
| 1030 | 1030 | '[#listing_link#]', |
| 1031 | 1031 | '[#site_name_url#]', |
| 1032 | 1032 | '[#post_id#]', |
@@ -1062,7 +1062,7 @@ discard block |
||
| 1062 | 1062 | $user_login, |
| 1063 | 1063 | $post_author_email, |
| 1064 | 1064 | ); |
| 1065 | - $message = str_replace( $search_array, $replace_array, $message ); |
|
| 1065 | + $message = str_replace($search_array, $replace_array, $message); |
|
| 1066 | 1066 | |
| 1067 | 1067 | $search_array = array( |
| 1068 | 1068 | '[#listing_link#]', |
@@ -1094,23 +1094,23 @@ discard block |
||
| 1094 | 1094 | $user_login, |
| 1095 | 1095 | $post_author_email, |
| 1096 | 1096 | ); |
| 1097 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
| 1097 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
| 1098 | 1098 | |
| 1099 | 1099 | $subject .= ' - ADMIN BCC COPY'; |
| 1100 | 1100 | $admin_bcc = true; |
| 1101 | 1101 | |
| 1102 | - } elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
|
|
| 1102 | + } elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
|
|
| 1103 | 1103 | $subject .= ' - ADMIN BCC COPY'; |
| 1104 | 1104 | $admin_bcc = true; |
| 1105 | - } elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
|
|
| 1105 | + } elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
|
|
| 1106 | 1106 | $subject .= ' - ADMIN BCC COPY'; |
| 1107 | 1107 | $admin_bcc = true; |
| 1108 | - } elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
|
|
| 1108 | + } elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
|
|
| 1109 | 1109 | $subject .= ' - ADMIN BCC COPY'; |
| 1110 | 1110 | $admin_bcc = true; |
| 1111 | 1111 | } |
| 1112 | 1112 | |
| 1113 | - if ( $admin_bcc === true ) {
|
|
| 1113 | + if ($admin_bcc === true) {
|
|
| 1114 | 1114 | |
| 1115 | 1115 | /** |
| 1116 | 1116 | * Filter the client email subject. |
@@ -1130,7 +1130,7 @@ discard block |
||
| 1130 | 1130 | * @param string $post_id The post ID. |
| 1131 | 1131 | * @param string $user_id The user ID. |
| 1132 | 1132 | */ |
| 1133 | - $subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 1133 | + $subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 1134 | 1134 | /** |
| 1135 | 1135 | * Filter the client email message. |
| 1136 | 1136 | * |
@@ -1149,23 +1149,23 @@ discard block |
||
| 1149 | 1149 | * @param string $post_id The post ID. |
| 1150 | 1150 | * @param string $user_id The user ID. |
| 1151 | 1151 | */ |
| 1152 | - $message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
| 1152 | + $message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
|
|
| 1153 | 1153 | |
| 1154 | 1154 | |
| 1155 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
| 1155 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
| 1156 | 1156 | |
| 1157 | - if ( ! $sent ) {
|
|
| 1158 | - if ( is_array( $to ) ) {
|
|
| 1159 | - $to = implode( ',', $to ); |
|
| 1157 | + if (!$sent) {
|
|
| 1158 | + if (is_array($to)) {
|
|
| 1159 | + $to = implode(',', $to);
|
|
| 1160 | 1160 | } |
| 1161 | 1161 | $log_message = sprintf( |
| 1162 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
| 1162 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
|
|
| 1163 | 1163 | $message_type, |
| 1164 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
| 1164 | + date_i18n('F j Y H:i:s', current_time('timestamp')),
|
|
| 1165 | 1165 | $to, |
| 1166 | 1166 | $subject |
| 1167 | 1167 | ); |
| 1168 | - geodir_error_log( $log_message ); |
|
| 1168 | + geodir_error_log($log_message); |
|
| 1169 | 1169 | } |
| 1170 | 1170 | } |
| 1171 | 1171 | |
@@ -1181,51 +1181,51 @@ discard block |
||
| 1181 | 1181 | */ |
| 1182 | 1182 | function geodir_taxonomy_breadcrumb() {
|
| 1183 | 1183 | |
| 1184 | - $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); |
|
| 1184 | + $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
|
|
| 1185 | 1185 | $parent = $term->parent; |
| 1186 | 1186 | |
| 1187 | - while ( $parent ): |
|
| 1187 | + while ($parent): |
|
| 1188 | 1188 | $parents[] = $parent; |
| 1189 | - $new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) ); |
|
| 1189 | + $new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
|
|
| 1190 | 1190 | $parent = $new_parent->parent; |
| 1191 | 1191 | endwhile; |
| 1192 | 1192 | |
| 1193 | - if ( ! empty( $parents ) ): |
|
| 1194 | - $parents = array_reverse( $parents ); |
|
| 1193 | + if (!empty($parents)): |
|
| 1194 | + $parents = array_reverse($parents); |
|
| 1195 | 1195 | |
| 1196 | - foreach ( $parents as $parent ): |
|
| 1197 | - $item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) ); |
|
| 1198 | - $url = get_term_link( $item, get_query_var( 'taxonomy' ) ); |
|
| 1199 | - echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>'; |
|
| 1196 | + foreach ($parents as $parent): |
|
| 1197 | + $item = get_term_by('id', $parent, get_query_var('taxonomy'));
|
|
| 1198 | + $url = get_term_link($item, get_query_var('taxonomy'));
|
|
| 1199 | + echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>'; |
|
| 1200 | 1200 | endforeach; |
| 1201 | 1201 | |
| 1202 | 1202 | endif; |
| 1203 | 1203 | |
| 1204 | - echo '<li> > ' . $term->name . '</li>'; |
|
| 1204 | + echo '<li> > '.$term->name.'</li>'; |
|
| 1205 | 1205 | } |
| 1206 | 1206 | |
| 1207 | -function geodir_wpml_post_type_archive_link($link, $post_type){
|
|
| 1207 | +function geodir_wpml_post_type_archive_link($link, $post_type) {
|
|
| 1208 | 1208 | if (geodir_is_wpml()) {
|
| 1209 | - $post_types = get_option( 'geodir_post_types' ); |
|
| 1209 | + $post_types = get_option('geodir_post_types');
|
|
| 1210 | 1210 | |
| 1211 | - if ( isset( $post_types[ $post_type ] ) ) {
|
|
| 1212 | - $slug = $post_types[ $post_type ]['rewrite']['slug']; |
|
| 1211 | + if (isset($post_types[$post_type])) {
|
|
| 1212 | + $slug = $post_types[$post_type]['rewrite']['slug']; |
|
| 1213 | 1213 | |
| 1214 | 1214 | // Alter the CPT slug if WPML is set to do so |
| 1215 | - if ( geodir_wpml_is_post_type_translated( $post_type ) ) {
|
|
| 1216 | - if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
|
|
| 1215 | + if (geodir_wpml_is_post_type_translated($post_type)) {
|
|
| 1216 | + if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
|
|
| 1217 | 1217 | |
| 1218 | 1218 | $org_slug = $slug; |
| 1219 | - $slug = apply_filters( 'wpml_translate_single_string', |
|
| 1219 | + $slug = apply_filters('wpml_translate_single_string',
|
|
| 1220 | 1220 | $slug, |
| 1221 | 1221 | 'WordPress', |
| 1222 | - 'URL slug: ' . $slug, |
|
| 1223 | - $language_code ); |
|
| 1222 | + 'URL slug: '.$slug, |
|
| 1223 | + $language_code); |
|
| 1224 | 1224 | |
| 1225 | - if ( ! $slug ) {
|
|
| 1225 | + if (!$slug) {
|
|
| 1226 | 1226 | $slug = $org_slug; |
| 1227 | 1227 | } else {
|
| 1228 | - $link = str_replace( $org_slug, $slug, $link ); |
|
| 1228 | + $link = str_replace($org_slug, $slug, $link); |
|
| 1229 | 1229 | } |
| 1230 | 1230 | } |
| 1231 | 1231 | } |
@@ -1234,7 +1234,7 @@ discard block |
||
| 1234 | 1234 | |
| 1235 | 1235 | return $link; |
| 1236 | 1236 | } |
| 1237 | -add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2); |
|
| 1237 | +add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
|
|
| 1238 | 1238 | |
| 1239 | 1239 | /** |
| 1240 | 1240 | * Main function that generates breadcrumb for all pages. |
@@ -1255,9 +1255,9 @@ discard block |
||
| 1255 | 1255 | * |
| 1256 | 1256 | * @since 1.0.0 |
| 1257 | 1257 | */ |
| 1258 | - $separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' ); |
|
| 1258 | + $separator = apply_filters('geodir_breadcrumb_separator', ' > ');
|
|
| 1259 | 1259 | |
| 1260 | - if ( ! geodir_is_page( 'home' ) ) {
|
|
| 1260 | + if (!geodir_is_page('home')) {
|
|
| 1261 | 1261 | $breadcrumb = ''; |
| 1262 | 1262 | $url_categoris = ''; |
| 1263 | 1263 | $breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">'; |
@@ -1266,170 +1266,170 @@ discard block |
||
| 1266 | 1266 | * |
| 1267 | 1267 | * @since 1.0.0 |
| 1268 | 1268 | */ |
| 1269 | - $breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>'; |
|
| 1269 | + $breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
|
|
| 1270 | 1270 | |
| 1271 | 1271 | $gd_post_type = geodir_get_current_posttype(); |
| 1272 | - $post_type_info = get_post_type_object( $gd_post_type ); |
|
| 1272 | + $post_type_info = get_post_type_object($gd_post_type); |
|
| 1273 | 1273 | |
| 1274 | - remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' ); |
|
| 1274 | + remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
|
|
| 1275 | 1275 | |
| 1276 | - $listing_link = get_post_type_archive_link( $gd_post_type ); |
|
| 1276 | + $listing_link = get_post_type_archive_link($gd_post_type); |
|
| 1277 | 1277 | |
| 1278 | - add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 ); |
|
| 1279 | - $listing_link = rtrim( $listing_link, '/' ); |
|
| 1278 | + add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
|
|
| 1279 | + $listing_link = rtrim($listing_link, '/'); |
|
| 1280 | 1280 | $listing_link .= '/'; |
| 1281 | 1281 | |
| 1282 | 1282 | $post_type_for_location_link = $listing_link; |
| 1283 | - $location_terms = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
| 1283 | + $location_terms = geodir_get_current_location_terms('query_vars', $gd_post_type);
|
|
| 1284 | 1284 | |
| 1285 | 1285 | global $wp, $gd_session; |
| 1286 | 1286 | $location_link = $post_type_for_location_link; |
| 1287 | 1287 | |
| 1288 | - if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
|
|
| 1288 | + if (geodir_is_page('detail') || geodir_is_page('listing')) {
|
|
| 1289 | 1289 | global $post, $gd_cache_post; |
| 1290 | - if ( ! empty( $post ) && ! empty( $gd_cache_post ) && geodir_is_page( 'detail' ) && $post->ID == $gd_cache_post->ID && ! isset( $post->country_slug ) && isset( $gd_cache_post->country_slug ) && geodir_disable_yoast_seo_metas() ) {
|
|
| 1290 | + if (!empty($post) && !empty($gd_cache_post) && geodir_is_page('detail') && $post->ID == $gd_cache_post->ID && !isset($post->country_slug) && isset($gd_cache_post->country_slug) && geodir_disable_yoast_seo_metas()) {
|
|
| 1291 | 1291 | $post = $gd_cache_post; |
| 1292 | 1292 | } |
| 1293 | - $location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false; |
|
| 1294 | - $neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false; |
|
| 1293 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
|
|
| 1294 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 1295 | 1295 | |
| 1296 | - if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
|
|
| 1296 | + if (geodir_is_page('detail') && isset($post->country_slug)) {
|
|
| 1297 | 1297 | $location_terms = array( |
| 1298 | 1298 | 'gd_country' => $post->country_slug, |
| 1299 | 1299 | 'gd_region' => $post->region_slug, |
| 1300 | 1300 | 'gd_city' => $post->city_slug |
| 1301 | 1301 | ); |
| 1302 | 1302 | |
| 1303 | - if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
|
|
| 1303 | + if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
|
|
| 1304 | 1304 | $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood; |
| 1305 | 1305 | } |
| 1306 | 1306 | } |
| 1307 | 1307 | |
| 1308 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
| 1308 | + $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 1309 | 1309 | |
| 1310 | 1310 | $hide_url_part = array(); |
| 1311 | - if ( $location_manager ) {
|
|
| 1312 | - $hide_country_part = get_option( 'geodir_location_hide_country_part' ); |
|
| 1313 | - $hide_region_part = get_option( 'geodir_location_hide_region_part' ); |
|
| 1314 | - |
|
| 1315 | - if ( $hide_region_part && $hide_country_part ) {
|
|
| 1316 | - $hide_url_part = array( 'gd_country', 'gd_region' ); |
|
| 1317 | - } else if ( $hide_region_part && ! $hide_country_part ) {
|
|
| 1318 | - $hide_url_part = array( 'gd_region' ); |
|
| 1319 | - } else if ( ! $hide_region_part && $hide_country_part ) {
|
|
| 1320 | - $hide_url_part = array( 'gd_country' ); |
|
| 1311 | + if ($location_manager) {
|
|
| 1312 | + $hide_country_part = get_option('geodir_location_hide_country_part');
|
|
| 1313 | + $hide_region_part = get_option('geodir_location_hide_region_part');
|
|
| 1314 | + |
|
| 1315 | + if ($hide_region_part && $hide_country_part) {
|
|
| 1316 | + $hide_url_part = array('gd_country', 'gd_region');
|
|
| 1317 | + } else if ($hide_region_part && !$hide_country_part) {
|
|
| 1318 | + $hide_url_part = array('gd_region');
|
|
| 1319 | + } else if (!$hide_region_part && $hide_country_part) {
|
|
| 1320 | + $hide_url_part = array('gd_country');
|
|
| 1321 | 1321 | } |
| 1322 | 1322 | } |
| 1323 | 1323 | |
| 1324 | 1324 | $hide_text_part = array(); |
| 1325 | - if ( $geodir_show_location_url == 'country_city' ) {
|
|
| 1326 | - $hide_text_part = array( 'gd_region' ); |
|
| 1325 | + if ($geodir_show_location_url == 'country_city') {
|
|
| 1326 | + $hide_text_part = array('gd_region');
|
|
| 1327 | 1327 | |
| 1328 | - if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
|
|
| 1329 | - unset( $location_terms['gd_region'] ); |
|
| 1328 | + if (isset($location_terms['gd_region']) && !$location_manager) {
|
|
| 1329 | + unset($location_terms['gd_region']); |
|
| 1330 | 1330 | } |
| 1331 | - } else if ( $geodir_show_location_url == 'region_city' ) {
|
|
| 1332 | - $hide_text_part = array( 'gd_country' ); |
|
| 1331 | + } else if ($geodir_show_location_url == 'region_city') {
|
|
| 1332 | + $hide_text_part = array('gd_country');
|
|
| 1333 | 1333 | |
| 1334 | - if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
|
|
| 1335 | - unset( $location_terms['gd_country'] ); |
|
| 1334 | + if (isset($location_terms['gd_country']) && !$location_manager) {
|
|
| 1335 | + unset($location_terms['gd_country']); |
|
| 1336 | 1336 | } |
| 1337 | - } else if ( $geodir_show_location_url == 'city' ) {
|
|
| 1338 | - $hide_text_part = array( 'gd_country', 'gd_region' ); |
|
| 1337 | + } else if ($geodir_show_location_url == 'city') {
|
|
| 1338 | + $hide_text_part = array('gd_country', 'gd_region');
|
|
| 1339 | 1339 | |
| 1340 | - if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
|
|
| 1341 | - unset( $location_terms['gd_country'] ); |
|
| 1340 | + if (isset($location_terms['gd_country']) && !$location_manager) {
|
|
| 1341 | + unset($location_terms['gd_country']); |
|
| 1342 | 1342 | } |
| 1343 | - if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
|
|
| 1344 | - unset( $location_terms['gd_region'] ); |
|
| 1343 | + if (isset($location_terms['gd_region']) && !$location_manager) {
|
|
| 1344 | + unset($location_terms['gd_region']); |
|
| 1345 | 1345 | } |
| 1346 | 1346 | } |
| 1347 | 1347 | |
| 1348 | 1348 | $is_location_last = ''; |
| 1349 | 1349 | $is_taxonomy_last = ''; |
| 1350 | 1350 | $breadcrumb .= '<li>'; |
| 1351 | - if ( get_query_var( $gd_post_type . 'category' ) ) {
|
|
| 1352 | - $gd_taxonomy = $gd_post_type . 'category'; |
|
| 1353 | - } elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
|
|
| 1354 | - $gd_taxonomy = $gd_post_type . '_tags'; |
|
| 1351 | + if (get_query_var($gd_post_type.'category')) {
|
|
| 1352 | + $gd_taxonomy = $gd_post_type.'category'; |
|
| 1353 | + } elseif (get_query_var($gd_post_type.'_tags')) {
|
|
| 1354 | + $gd_taxonomy = $gd_post_type.'_tags'; |
|
| 1355 | 1355 | } |
| 1356 | 1356 | |
| 1357 | - $breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>'; |
|
| 1358 | - if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
|
|
| 1357 | + $breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>'; |
|
| 1358 | + if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
|
|
| 1359 | 1359 | $is_location_last = false; |
| 1360 | 1360 | } else {
|
| 1361 | 1361 | $is_location_last = true; |
| 1362 | 1362 | } |
| 1363 | 1363 | |
| 1364 | - if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
|
|
| 1364 | + if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
|
|
| 1365 | 1365 | $is_taxonomy_last = true; |
| 1366 | 1366 | } else {
|
| 1367 | 1367 | $is_taxonomy_last = false; |
| 1368 | 1368 | } |
| 1369 | 1369 | |
| 1370 | - if ( ! empty( $location_terms ) ) {
|
|
| 1371 | - $geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false; |
|
| 1370 | + if (!empty($location_terms)) {
|
|
| 1371 | + $geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
|
|
| 1372 | 1372 | |
| 1373 | - foreach ( $location_terms as $key => $location_term ) {
|
|
| 1374 | - if ( $location_term != '' ) {
|
|
| 1375 | - if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
|
|
| 1373 | + foreach ($location_terms as $key => $location_term) {
|
|
| 1374 | + if ($location_term != '') {
|
|
| 1375 | + if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
|
|
| 1376 | 1376 | continue; |
| 1377 | 1377 | } |
| 1378 | 1378 | |
| 1379 | - $gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term ); |
|
| 1380 | - $gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text ); |
|
| 1381 | - $gd_location_link_text = geodir_utf8_ucfirst( $gd_location_link_text ); |
|
| 1379 | + $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
|
|
| 1380 | + $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
|
|
| 1381 | + $gd_location_link_text = geodir_utf8_ucfirst($gd_location_link_text); |
|
| 1382 | 1382 | |
| 1383 | 1383 | $location_term_actual_country = ''; |
| 1384 | 1384 | $location_term_actual_region = ''; |
| 1385 | 1385 | $location_term_actual_city = ''; |
| 1386 | 1386 | $location_term_actual_neighbourhood = ''; |
| 1387 | - if ( $geodir_get_locations ) {
|
|
| 1388 | - if ( $key == 'gd_country' ) {
|
|
| 1389 | - $location_term_actual_country = get_actual_location_name( 'country', $location_term, true ); |
|
| 1390 | - } else if ( $key == 'gd_region' ) {
|
|
| 1391 | - $location_term_actual_region = get_actual_location_name( 'region', $location_term, true ); |
|
| 1392 | - } else if ( $key == 'gd_city' ) {
|
|
| 1393 | - $location_term_actual_city = get_actual_location_name( 'city', $location_term, true ); |
|
| 1394 | - } else if ( $key == 'gd_neighbourhood' ) {
|
|
| 1395 | - $location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true ); |
|
| 1387 | + if ($geodir_get_locations) {
|
|
| 1388 | + if ($key == 'gd_country') {
|
|
| 1389 | + $location_term_actual_country = get_actual_location_name('country', $location_term, true);
|
|
| 1390 | + } else if ($key == 'gd_region') {
|
|
| 1391 | + $location_term_actual_region = get_actual_location_name('region', $location_term, true);
|
|
| 1392 | + } else if ($key == 'gd_city') {
|
|
| 1393 | + $location_term_actual_city = get_actual_location_name('city', $location_term, true);
|
|
| 1394 | + } else if ($key == 'gd_neighbourhood') {
|
|
| 1395 | + $location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
|
|
| 1396 | 1396 | } |
| 1397 | 1397 | } else {
|
| 1398 | 1398 | $location_info = geodir_get_location(); |
| 1399 | 1399 | |
| 1400 | - if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
|
|
| 1401 | - if ( $key == 'gd_country' ) {
|
|
| 1402 | - $location_term_actual_country = __( $location_info->country, 'geodirectory' ); |
|
| 1403 | - } else if ( $key == 'gd_region' ) {
|
|
| 1404 | - $location_term_actual_region = __( $location_info->region, 'geodirectory' ); |
|
| 1405 | - } else if ( $key == 'gd_city' ) {
|
|
| 1406 | - $location_term_actual_city = __( $location_info->city, 'geodirectory' ); |
|
| 1400 | + if (!empty($location_info) && isset($location_info->location_id)) {
|
|
| 1401 | + if ($key == 'gd_country') {
|
|
| 1402 | + $location_term_actual_country = __($location_info->country, 'geodirectory'); |
|
| 1403 | + } else if ($key == 'gd_region') {
|
|
| 1404 | + $location_term_actual_region = __($location_info->region, 'geodirectory'); |
|
| 1405 | + } else if ($key == 'gd_city') {
|
|
| 1406 | + $location_term_actual_city = __($location_info->city, 'geodirectory'); |
|
| 1407 | 1407 | } |
| 1408 | 1408 | } |
| 1409 | 1409 | } |
| 1410 | 1410 | |
| 1411 | - if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
|
|
| 1412 | - $breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text; |
|
| 1413 | - } else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
|
|
| 1414 | - $breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text; |
|
| 1415 | - } else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
|
|
| 1416 | - $breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text; |
|
| 1417 | - } else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
|
|
| 1418 | - $breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text; |
|
| 1411 | + if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
|
|
| 1412 | + $breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text; |
|
| 1413 | + } else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
|
|
| 1414 | + $breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text; |
|
| 1415 | + } else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
|
|
| 1416 | + $breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text; |
|
| 1417 | + } else if ($is_location_last && $key == 'gd_neighbourhood') {
|
|
| 1418 | + $breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text; |
|
| 1419 | 1419 | } else {
|
| 1420 | - if ( get_option( 'permalink_structure' ) != '' ) {
|
|
| 1421 | - $location_link .= $location_term . '/'; |
|
| 1420 | + if (get_option('permalink_structure') != '') {
|
|
| 1421 | + $location_link .= $location_term.'/'; |
|
| 1422 | 1422 | } else {
|
| 1423 | - $location_link .= "&$key=" . $location_term; |
|
| 1423 | + $location_link .= "&$key=".$location_term; |
|
| 1424 | 1424 | } |
| 1425 | 1425 | |
| 1426 | - if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
|
|
| 1426 | + if ($key == 'gd_country' && $location_term_actual_country != '') {
|
|
| 1427 | 1427 | $gd_location_link_text = $location_term_actual_country; |
| 1428 | - } else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
|
|
| 1428 | + } else if ($key == 'gd_region' && $location_term_actual_region != '') {
|
|
| 1429 | 1429 | $gd_location_link_text = $location_term_actual_region; |
| 1430 | - } else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
|
|
| 1430 | + } else if ($key == 'gd_city' && $location_term_actual_city != '') {
|
|
| 1431 | 1431 | $gd_location_link_text = $location_term_actual_city; |
| 1432 | - } else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
|
|
| 1432 | + } else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
|
|
| 1433 | 1433 | $gd_location_link_text = $location_term_actual_neighbourhood; |
| 1434 | 1434 | } |
| 1435 | 1435 | |
@@ -1439,77 +1439,77 @@ discard block |
||
| 1439 | 1439 | } |
| 1440 | 1440 | */ |
| 1441 | 1441 | |
| 1442 | - $breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>'; |
|
| 1442 | + $breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>'; |
|
| 1443 | 1443 | } |
| 1444 | 1444 | } |
| 1445 | 1445 | } |
| 1446 | 1446 | } |
| 1447 | 1447 | |
| 1448 | - if ( ! empty( $gd_taxonomy ) ) {
|
|
| 1448 | + if (!empty($gd_taxonomy)) {
|
|
| 1449 | 1449 | $term_index = 1; |
| 1450 | 1450 | |
| 1451 | 1451 | //if(get_option('geodir_add_categories_url'))
|
| 1452 | 1452 | {
|
| 1453 | - if ( get_query_var( $gd_post_type . '_tags' ) ) {
|
|
| 1454 | - $cat_link = $listing_link . 'tags/'; |
|
| 1453 | + if (get_query_var($gd_post_type.'_tags')) {
|
|
| 1454 | + $cat_link = $listing_link.'tags/'; |
|
| 1455 | 1455 | } else {
|
| 1456 | 1456 | $cat_link = $listing_link; |
| 1457 | 1457 | } |
| 1458 | 1458 | |
| 1459 | - foreach ( $location_terms as $key => $location_term ) {
|
|
| 1460 | - if ( $location_manager && in_array( $key, $hide_url_part ) ) {
|
|
| 1459 | + foreach ($location_terms as $key => $location_term) {
|
|
| 1460 | + if ($location_manager && in_array($key, $hide_url_part)) {
|
|
| 1461 | 1461 | continue; |
| 1462 | 1462 | } |
| 1463 | 1463 | |
| 1464 | - if ( $location_term != '' ) {
|
|
| 1465 | - if ( get_option( 'permalink_structure' ) != '' ) {
|
|
| 1466 | - $cat_link .= $location_term . '/'; |
|
| 1464 | + if ($location_term != '') {
|
|
| 1465 | + if (get_option('permalink_structure') != '') {
|
|
| 1466 | + $cat_link .= $location_term.'/'; |
|
| 1467 | 1467 | } |
| 1468 | 1468 | } |
| 1469 | 1469 | } |
| 1470 | 1470 | |
| 1471 | - $term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) ); |
|
| 1472 | - foreach ( $term_array as $term ) {
|
|
| 1473 | - $term_link_text = preg_replace( '/-(\d+)$/', '', $term ); |
|
| 1474 | - $term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text ); |
|
| 1471 | + $term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
|
|
| 1472 | + foreach ($term_array as $term) {
|
|
| 1473 | + $term_link_text = preg_replace('/-(\d+)$/', '', $term);
|
|
| 1474 | + $term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
|
|
| 1475 | 1475 | |
| 1476 | 1476 | // get term actual name |
| 1477 | - $term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' ); |
|
| 1478 | - if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
|
|
| 1479 | - $term_link_text = urldecode( $term_info['name'] ); |
|
| 1477 | + $term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
|
|
| 1478 | + if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
|
|
| 1479 | + $term_link_text = urldecode($term_info['name']); |
|
| 1480 | 1480 | } else {
|
| 1481 | 1481 | continue; |
| 1482 | 1482 | //$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text))); |
| 1483 | 1483 | } |
| 1484 | 1484 | |
| 1485 | - if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
|
|
| 1486 | - $breadcrumb .= $separator . $term_link_text; |
|
| 1485 | + if ($term_index == count($term_array) && $is_taxonomy_last) {
|
|
| 1486 | + $breadcrumb .= $separator.$term_link_text; |
|
| 1487 | 1487 | } else {
|
| 1488 | - $cat_link .= $term . '/'; |
|
| 1489 | - $breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>'; |
|
| 1488 | + $cat_link .= $term.'/'; |
|
| 1489 | + $breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>'; |
|
| 1490 | 1490 | } |
| 1491 | - $term_index ++; |
|
| 1491 | + $term_index++; |
|
| 1492 | 1492 | } |
| 1493 | 1493 | } |
| 1494 | 1494 | |
| 1495 | 1495 | |
| 1496 | 1496 | } |
| 1497 | 1497 | |
| 1498 | - if ( geodir_is_page( 'detail' ) ) {
|
|
| 1499 | - $breadcrumb .= $separator . get_the_title(); |
|
| 1498 | + if (geodir_is_page('detail')) {
|
|
| 1499 | + $breadcrumb .= $separator.get_the_title(); |
|
| 1500 | 1500 | } |
| 1501 | 1501 | |
| 1502 | 1502 | $breadcrumb .= '</li>'; |
| 1503 | 1503 | |
| 1504 | 1504 | |
| 1505 | - } elseif ( geodir_is_page( 'author' ) ) {
|
|
| 1505 | + } elseif (geodir_is_page('author')) {
|
|
| 1506 | 1506 | $dashboard_post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : $gd_post_type; |
| 1507 | 1507 | $user_id = get_current_user_id(); |
| 1508 | - $author_link = get_author_posts_url( $user_id ); |
|
| 1509 | - $default_author_link = geodir_getlink( $author_link, array( |
|
| 1508 | + $author_link = get_author_posts_url($user_id); |
|
| 1509 | + $default_author_link = geodir_getlink($author_link, array( |
|
| 1510 | 1510 | 'geodir_dashbord' => 'true', |
| 1511 | 1511 | 'stype' => $dashboard_post_type |
| 1512 | - ), false ); |
|
| 1512 | + ), false); |
|
| 1513 | 1513 | |
| 1514 | 1514 | /** |
| 1515 | 1515 | * Filter author page link. |
@@ -1519,16 +1519,16 @@ discard block |
||
| 1519 | 1519 | * @param string $default_author_link Default author link. |
| 1520 | 1520 | * @param int $user_id Author ID. |
| 1521 | 1521 | */ |
| 1522 | - $default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id ); |
|
| 1522 | + $default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
|
|
| 1523 | 1523 | |
| 1524 | 1524 | $breadcrumb .= '<li>'; |
| 1525 | - $breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>'; |
|
| 1525 | + $breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
|
|
| 1526 | 1526 | |
| 1527 | - if ( isset( $_REQUEST['list'] ) ) {
|
|
| 1528 | - $author_link = geodir_getlink( $author_link, array( |
|
| 1527 | + if (isset($_REQUEST['list'])) {
|
|
| 1528 | + $author_link = geodir_getlink($author_link, array( |
|
| 1529 | 1529 | 'geodir_dashbord' => 'true', |
| 1530 | 1530 | 'stype' => $_REQUEST['stype'] |
| 1531 | - ), false ); |
|
| 1531 | + ), false); |
|
| 1532 | 1532 | |
| 1533 | 1533 | /** |
| 1534 | 1534 | * Filter author page link. |
@@ -1539,64 +1539,64 @@ discard block |
||
| 1539 | 1539 | * @param int $user_id Author ID. |
| 1540 | 1540 | * @param string $_REQUEST ['stype'] Post type. |
| 1541 | 1541 | */ |
| 1542 | - $author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] ); |
|
| 1542 | + $author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
|
|
| 1543 | 1543 | |
| 1544 | - $breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>'; |
|
| 1545 | - if($_REQUEST['list']=='favourite'){
|
|
| 1546 | - $breadcrumb .= $separator . MY_FAVOURITE_TEXT; |
|
| 1544 | + $breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>'; |
|
| 1545 | + if ($_REQUEST['list'] == 'favourite') {
|
|
| 1546 | + $breadcrumb .= $separator.MY_FAVOURITE_TEXT; |
|
| 1547 | 1547 | } |
| 1548 | 1548 | |
| 1549 | 1549 | } else {
|
| 1550 | - $breadcrumb .= $separator . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ); |
|
| 1550 | + $breadcrumb .= $separator.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory'); |
|
| 1551 | 1551 | } |
| 1552 | 1552 | |
| 1553 | 1553 | $breadcrumb .= '</li>'; |
| 1554 | - } elseif ( is_category() || is_single() ) {
|
|
| 1554 | + } elseif (is_category() || is_single()) {
|
|
| 1555 | 1555 | $category = get_the_category(); |
| 1556 | - if ( is_category() ) {
|
|
| 1557 | - $breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>'; |
|
| 1556 | + if (is_category()) {
|
|
| 1557 | + $breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>'; |
|
| 1558 | 1558 | } |
| 1559 | - if ( is_single() ) {
|
|
| 1560 | - $breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>'; |
|
| 1561 | - $breadcrumb .= '<li>' . $separator . get_the_title() . '</li>'; |
|
| 1559 | + if (is_single()) {
|
|
| 1560 | + $breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>'; |
|
| 1561 | + $breadcrumb .= '<li>'.$separator.get_the_title().'</li>'; |
|
| 1562 | 1562 | } |
| 1563 | 1563 | /* End of my version ##################################################### */ |
| 1564 | - } else if ( is_page() ) {
|
|
| 1564 | + } else if (is_page()) {
|
|
| 1565 | 1565 | $page_title = get_the_title(); |
| 1566 | 1566 | |
| 1567 | - if ( geodir_is_page( 'location' ) ) {
|
|
| 1567 | + if (geodir_is_page('location')) {
|
|
| 1568 | 1568 | $location_page_id = geodir_location_page_id(); |
| 1569 | - $loc_post = get_post( $location_page_id ); |
|
| 1569 | + $loc_post = get_post($location_page_id); |
|
| 1570 | 1570 | $post_name = $loc_post->post_name; |
| 1571 | - $slug = ucwords( str_replace( '-', ' ', $post_name ) ); |
|
| 1572 | - $page_title = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' ); |
|
| 1571 | + $slug = ucwords(str_replace('-', ' ', $post_name));
|
|
| 1572 | + $page_title = !empty($slug) ? $slug : __('Location', 'geodirectory');
|
|
| 1573 | 1573 | } |
| 1574 | 1574 | |
| 1575 | - $breadcrumb .= '<li>' . $separator; |
|
| 1576 | - $breadcrumb .= stripslashes_deep( $page_title ); |
|
| 1575 | + $breadcrumb .= '<li>'.$separator; |
|
| 1576 | + $breadcrumb .= stripslashes_deep($page_title); |
|
| 1577 | 1577 | $breadcrumb .= '</li>'; |
| 1578 | - } else if ( is_tag() ) {
|
|
| 1579 | - $breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>'; |
|
| 1580 | - } else if ( is_day() ) {
|
|
| 1581 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
| 1582 | - the_time( 'F jS, Y' ); |
|
| 1578 | + } else if (is_tag()) {
|
|
| 1579 | + $breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
|
|
| 1580 | + } else if (is_day()) {
|
|
| 1581 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
|
|
| 1582 | + the_time('F jS, Y');
|
|
| 1583 | 1583 | $breadcrumb .= '</li>'; |
| 1584 | - } else if ( is_month() ) {
|
|
| 1585 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
| 1586 | - the_time( 'F, Y' ); |
|
| 1584 | + } else if (is_month()) {
|
|
| 1585 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
|
|
| 1586 | + the_time('F, Y');
|
|
| 1587 | 1587 | $breadcrumb .= '</li>'; |
| 1588 | - } else if ( is_year() ) {
|
|
| 1589 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
| 1590 | - the_time( 'Y' ); |
|
| 1588 | + } else if (is_year()) {
|
|
| 1589 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
|
|
| 1590 | + the_time('Y');
|
|
| 1591 | 1591 | $breadcrumb .= '</li>'; |
| 1592 | - } else if ( is_author() ) {
|
|
| 1593 | - $breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' ); |
|
| 1592 | + } else if (is_author()) {
|
|
| 1593 | + $breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
|
|
| 1594 | 1594 | $breadcrumb .= '</li>'; |
| 1595 | - } else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
|
|
| 1596 | - $breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' ); |
|
| 1595 | + } else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
|
|
| 1596 | + $breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
|
|
| 1597 | 1597 | $breadcrumb .= '</li>'; |
| 1598 | - } else if ( is_search() ) {
|
|
| 1599 | - $breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' ); |
|
| 1598 | + } else if (is_search()) {
|
|
| 1599 | + $breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
|
|
| 1600 | 1600 | $breadcrumb .= '</li>'; |
| 1601 | 1601 | } |
| 1602 | 1602 | $breadcrumb .= '</ul></div>'; |
@@ -1609,13 +1609,13 @@ discard block |
||
| 1609 | 1609 | * @param string $breadcrumb Breadcrumb HTML. |
| 1610 | 1610 | * @param string $separator Breadcrumb separator. |
| 1611 | 1611 | */ |
| 1612 | - echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator ); |
|
| 1612 | + echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
|
|
| 1613 | 1613 | } |
| 1614 | 1614 | } |
| 1615 | 1615 | |
| 1616 | 1616 | |
| 1617 | -add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin |
|
| 1618 | -if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
|
|
| 1617 | +add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
|
|
| 1618 | +if (!function_exists('geodir_allow_wpadmin')) {
|
|
| 1619 | 1619 | /** |
| 1620 | 1620 | * Allow only admins to access wp-admin. |
| 1621 | 1621 | * |
@@ -1627,12 +1627,12 @@ discard block |
||
| 1627 | 1627 | */ |
| 1628 | 1628 | function geodir_allow_wpadmin() {
|
| 1629 | 1629 | global $wpdb; |
| 1630 | - if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through |
|
| 1630 | + if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
|
|
| 1631 | 1631 | {
|
| 1632 | - if ( current_user_can( 'administrator' ) ) {
|
|
| 1632 | + if (current_user_can('administrator')) {
|
|
| 1633 | 1633 | } else {
|
| 1634 | 1634 | |
| 1635 | - wp_redirect( home_url() ); |
|
| 1635 | + wp_redirect(home_url()); |
|
| 1636 | 1636 | exit; |
| 1637 | 1637 | } |
| 1638 | 1638 | |
@@ -1651,23 +1651,23 @@ discard block |
||
| 1651 | 1651 | * |
| 1652 | 1652 | * @return array|WP_Error The uploaded data as array. When failure returns error. |
| 1653 | 1653 | */ |
| 1654 | -function fetch_remote_file( $url ) {
|
|
| 1654 | +function fetch_remote_file($url) {
|
|
| 1655 | 1655 | // extract the file name and extension from the url |
| 1656 | - require_once( ABSPATH . 'wp-includes/pluggable.php' ); |
|
| 1657 | - $file_name = basename( $url ); |
|
| 1658 | - if ( strpos( $file_name, '?' ) !== false ) {
|
|
| 1659 | - list( $file_name ) = explode( '?', $file_name ); |
|
| 1656 | + require_once(ABSPATH.'wp-includes/pluggable.php'); |
|
| 1657 | + $file_name = basename($url); |
|
| 1658 | + if (strpos($file_name, '?') !== false) {
|
|
| 1659 | + list($file_name) = explode('?', $file_name);
|
|
| 1660 | 1660 | } |
| 1661 | 1661 | $dummy = false; |
| 1662 | 1662 | $add_to_cache = false; |
| 1663 | 1663 | $key = null; |
| 1664 | - if ( strpos( $url, '/dummy/' ) !== false ) {
|
|
| 1664 | + if (strpos($url, '/dummy/') !== false) {
|
|
| 1665 | 1665 | $dummy = true; |
| 1666 | - $key = "dummy_" . str_replace( '.', '_', $file_name ); |
|
| 1667 | - $value = get_transient( 'cached_dummy_images' ); |
|
| 1668 | - if ( $value ) {
|
|
| 1669 | - if ( isset( $value[ $key ] ) ) {
|
|
| 1670 | - return $value[ $key ]; |
|
| 1666 | + $key = "dummy_".str_replace('.', '_', $file_name);
|
|
| 1667 | + $value = get_transient('cached_dummy_images');
|
|
| 1668 | + if ($value) {
|
|
| 1669 | + if (isset($value[$key])) {
|
|
| 1670 | + return $value[$key]; |
|
| 1671 | 1671 | } else {
|
| 1672 | 1672 | $add_to_cache = true; |
| 1673 | 1673 | } |
@@ -1678,62 +1678,62 @@ discard block |
||
| 1678 | 1678 | |
| 1679 | 1679 | // get placeholder file in the upload dir with a unique, sanitized filename |
| 1680 | 1680 | |
| 1681 | - $post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : ''; |
|
| 1681 | + $post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : ''; |
|
| 1682 | 1682 | |
| 1683 | - $upload = wp_upload_bits( $file_name, 0, '', $post_upload_date ); |
|
| 1684 | - if ( $upload['error'] ) {
|
|
| 1685 | - return new WP_Error( 'upload_dir_error', $upload['error'] ); |
|
| 1683 | + $upload = wp_upload_bits($file_name, 0, '', $post_upload_date); |
|
| 1684 | + if ($upload['error']) {
|
|
| 1685 | + return new WP_Error('upload_dir_error', $upload['error']);
|
|
| 1686 | 1686 | } |
| 1687 | 1687 | |
| 1688 | 1688 | |
| 1689 | - sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay |
|
| 1689 | + sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay |
|
| 1690 | 1690 | |
| 1691 | 1691 | // fetch the remote url and write it to the placeholder file |
| 1692 | - $headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) ); |
|
| 1692 | + $headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
|
|
| 1693 | 1693 | |
| 1694 | 1694 | $log_message = ''; |
| 1695 | - if ( is_wp_error( $headers ) ) {
|
|
| 1696 | - echo 'file: ' . $url; |
|
| 1695 | + if (is_wp_error($headers)) {
|
|
| 1696 | + echo 'file: '.$url; |
|
| 1697 | 1697 | |
| 1698 | - return new WP_Error( 'import_file_error', $headers->get_error_message() ); |
|
| 1698 | + return new WP_Error('import_file_error', $headers->get_error_message());
|
|
| 1699 | 1699 | } |
| 1700 | 1700 | |
| 1701 | 1701 | // clear cache to make compat with EWWW Image Optimizer |
| 1702 | - if(defined( 'EWWW_IMAGE_OPTIMIZER_PLUGIN_FILE')){
|
|
| 1702 | + if (defined('EWWW_IMAGE_OPTIMIZER_PLUGIN_FILE')) {
|
|
| 1703 | 1703 | clearstatcache(); |
| 1704 | 1704 | } |
| 1705 | - $filesize = filesize( $upload['file'] ); |
|
| 1705 | + $filesize = filesize($upload['file']); |
|
| 1706 | 1706 | // request failed |
| 1707 | - if ( ! $headers ) {
|
|
| 1708 | - $log_message = __( 'Remote server did not respond', 'geodirectory' ); |
|
| 1707 | + if (!$headers) {
|
|
| 1708 | + $log_message = __('Remote server did not respond', 'geodirectory');
|
|
| 1709 | 1709 | } // make sure the fetch was successful |
| 1710 | - elseif ( $headers['response']['code'] != '200' ) {
|
|
| 1711 | - $log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) ); |
|
| 1712 | - } elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
|
|
| 1713 | - $log_message = __( 'Remote file is incorrect size', 'geodirectory' ); |
|
| 1714 | - } elseif ( 0 == $filesize ) {
|
|
| 1715 | - $log_message = __( 'Zero size file downloaded', 'geodirectory' ); |
|
| 1716 | - } |
|
| 1717 | - |
|
| 1718 | - if ( $log_message ) {
|
|
| 1719 | - $del = unlink( $upload['file'] ); |
|
| 1720 | - if ( ! $del ) {
|
|
| 1721 | - geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) ); |
|
| 1710 | + elseif ($headers['response']['code'] != '200') {
|
|
| 1711 | + $log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
|
|
| 1712 | + } elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
|
|
| 1713 | + $log_message = __('Remote file is incorrect size', 'geodirectory');
|
|
| 1714 | + } elseif (0 == $filesize) {
|
|
| 1715 | + $log_message = __('Zero size file downloaded', 'geodirectory');
|
|
| 1716 | + } |
|
| 1717 | + |
|
| 1718 | + if ($log_message) {
|
|
| 1719 | + $del = unlink($upload['file']); |
|
| 1720 | + if (!$del) {
|
|
| 1721 | + geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
|
|
| 1722 | 1722 | } |
| 1723 | 1723 | |
| 1724 | - return new WP_Error( 'import_file_error', $log_message ); |
|
| 1724 | + return new WP_Error('import_file_error', $log_message);
|
|
| 1725 | 1725 | } |
| 1726 | 1726 | |
| 1727 | - if ( $dummy && $add_to_cache && is_array( $upload ) ) {
|
|
| 1728 | - $images = get_transient( 'cached_dummy_images' ); |
|
| 1729 | - if ( is_array( $images ) ) {
|
|
| 1730 | - $images[ $key ] = $upload; |
|
| 1727 | + if ($dummy && $add_to_cache && is_array($upload)) {
|
|
| 1728 | + $images = get_transient('cached_dummy_images');
|
|
| 1729 | + if (is_array($images)) {
|
|
| 1730 | + $images[$key] = $upload; |
|
| 1731 | 1731 | } else {
|
| 1732 | - $images = array( $key => $upload ); |
|
| 1732 | + $images = array($key => $upload); |
|
| 1733 | 1733 | } |
| 1734 | 1734 | |
| 1735 | 1735 | //setting the cache using the WP Transient API |
| 1736 | - set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache |
|
| 1736 | + set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
|
|
| 1737 | 1737 | } |
| 1738 | 1738 | |
| 1739 | 1739 | return $upload; |
@@ -1747,12 +1747,12 @@ discard block |
||
| 1747 | 1747 | * @return string|void Max upload size. |
| 1748 | 1748 | */ |
| 1749 | 1749 | function geodir_max_upload_size() {
|
| 1750 | - $max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 ); |
|
| 1750 | + $max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
|
|
| 1751 | 1751 | |
| 1752 | - if ( $max_filesize > 0 && $max_filesize < 1 ) {
|
|
| 1753 | - $max_filesize = (int) ( $max_filesize * 1024 ) . 'kb'; |
|
| 1752 | + if ($max_filesize > 0 && $max_filesize < 1) {
|
|
| 1753 | + $max_filesize = (int) ($max_filesize * 1024).'kb'; |
|
| 1754 | 1754 | } else {
|
| 1755 | - $max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb'; |
|
| 1755 | + $max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb'; |
|
| 1756 | 1756 | } |
| 1757 | 1757 | |
| 1758 | 1758 | /** |
@@ -1762,7 +1762,7 @@ discard block |
||
| 1762 | 1762 | * |
| 1763 | 1763 | * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb. |
| 1764 | 1764 | */ |
| 1765 | - return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize ); |
|
| 1765 | + return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
|
|
| 1766 | 1766 | } |
| 1767 | 1767 | |
| 1768 | 1768 | /** |
@@ -1775,8 +1775,8 @@ discard block |
||
| 1775 | 1775 | * @return bool If dummy folder exists returns true, else false. |
| 1776 | 1776 | */ |
| 1777 | 1777 | function geodir_dummy_folder_exists() {
|
| 1778 | - $path = geodir_plugin_path() . '/geodirectory-admin/dummy/'; |
|
| 1779 | - if ( ! is_dir( $path ) ) {
|
|
| 1778 | + $path = geodir_plugin_path().'/geodirectory-admin/dummy/'; |
|
| 1779 | + if (!is_dir($path)) {
|
|
| 1780 | 1780 | return false; |
| 1781 | 1781 | } else {
|
| 1782 | 1782 | return true; |
@@ -1795,17 +1795,17 @@ discard block |
||
| 1795 | 1795 | * |
| 1796 | 1796 | * @return object Author info. |
| 1797 | 1797 | */ |
| 1798 | -function geodir_get_author_info( $aid ) {
|
|
| 1798 | +function geodir_get_author_info($aid) {
|
|
| 1799 | 1799 | global $wpdb; |
| 1800 | 1800 | /*$infosql = "select * from $wpdb->users where ID=$aid";*/ |
| 1801 | - $infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) ); |
|
| 1802 | - $info = $wpdb->get_results( $infosql ); |
|
| 1803 | - if ( $info ) {
|
|
| 1801 | + $infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
|
|
| 1802 | + $info = $wpdb->get_results($infosql); |
|
| 1803 | + if ($info) {
|
|
| 1804 | 1804 | return $info[0]; |
| 1805 | 1805 | } |
| 1806 | 1806 | } |
| 1807 | 1807 | |
| 1808 | -if ( ! function_exists( 'adminEmail' ) ) {
|
|
| 1808 | +if (!function_exists('adminEmail')) {
|
|
| 1809 | 1809 | /** |
| 1810 | 1810 | * Send emails to client on post submission, renew etc. |
| 1811 | 1811 | * |
@@ -1818,67 +1818,67 @@ discard block |
||
| 1818 | 1818 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1819 | 1819 | * @param string $custom_1 Custom data to be sent. |
| 1820 | 1820 | */ |
| 1821 | - function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
|
|
| 1821 | + function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
|
|
| 1822 | 1822 | global $wpdb; |
| 1823 | - if ( $message_type == 'expiration' ) {
|
|
| 1824 | - $subject = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) ); |
|
| 1825 | - $client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) ); |
|
| 1826 | - } elseif ( $message_type == 'post_submited' ) {
|
|
| 1827 | - $subject = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' ); |
|
| 1828 | - $client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' ); |
|
| 1829 | - } elseif ( $message_type == 'renew' ) {
|
|
| 1830 | - $subject = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' ); |
|
| 1831 | - $client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' ); |
|
| 1832 | - } elseif ( $message_type == 'upgrade' ) {
|
|
| 1833 | - $subject = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' ); |
|
| 1834 | - $client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' ); |
|
| 1835 | - } elseif ( $message_type == 'claim_approved' ) {
|
|
| 1836 | - $subject = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' ); |
|
| 1837 | - $client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' ); |
|
| 1838 | - } elseif ( $message_type == 'claim_rejected' ) {
|
|
| 1839 | - $subject = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' ); |
|
| 1840 | - $client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' ); |
|
| 1841 | - } elseif ( $message_type == 'claim_requested' ) {
|
|
| 1842 | - $subject = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' ); |
|
| 1843 | - $client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' ); |
|
| 1844 | - } elseif ( $message_type == 'auto_claim' ) {
|
|
| 1845 | - $subject = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' ); |
|
| 1846 | - $client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' ); |
|
| 1847 | - } elseif ( $message_type == 'payment_success' ) {
|
|
| 1848 | - $subject = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' ); |
|
| 1849 | - $client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' ); |
|
| 1850 | - } elseif ( $message_type == 'payment_fail' ) {
|
|
| 1851 | - $subject = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' ); |
|
| 1852 | - $client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' ); |
|
| 1823 | + if ($message_type == 'expiration') {
|
|
| 1824 | + $subject = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
|
|
| 1825 | + $client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
|
|
| 1826 | + } elseif ($message_type == 'post_submited') {
|
|
| 1827 | + $subject = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
|
|
| 1828 | + $client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
|
|
| 1829 | + } elseif ($message_type == 'renew') {
|
|
| 1830 | + $subject = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
|
|
| 1831 | + $client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
|
|
| 1832 | + } elseif ($message_type == 'upgrade') {
|
|
| 1833 | + $subject = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
|
|
| 1834 | + $client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
|
|
| 1835 | + } elseif ($message_type == 'claim_approved') {
|
|
| 1836 | + $subject = __(get_option('claim_approved_email_subject'), 'geodirectory');
|
|
| 1837 | + $client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
|
|
| 1838 | + } elseif ($message_type == 'claim_rejected') {
|
|
| 1839 | + $subject = __(get_option('claim_rejected_email_subject'), 'geodirectory');
|
|
| 1840 | + $client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
|
|
| 1841 | + } elseif ($message_type == 'claim_requested') {
|
|
| 1842 | + $subject = __(get_option('claim_email_subject_admin'), 'geodirectory');
|
|
| 1843 | + $client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
|
|
| 1844 | + } elseif ($message_type == 'auto_claim') {
|
|
| 1845 | + $subject = __(get_option('auto_claim_email_subject'), 'geodirectory');
|
|
| 1846 | + $client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
|
|
| 1847 | + } elseif ($message_type == 'payment_success') {
|
|
| 1848 | + $subject = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
|
|
| 1849 | + $client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
|
|
| 1850 | + } elseif ($message_type == 'payment_fail') {
|
|
| 1851 | + $subject = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
|
|
| 1852 | + $client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
|
|
| 1853 | 1853 | } |
| 1854 | 1854 | $transaction_details = $custom_1; |
| 1855 | - $fromEmail = get_option( 'site_email' ); |
|
| 1855 | + $fromEmail = get_option('site_email');
|
|
| 1856 | 1856 | $fromEmailName = get_site_emailName(); |
| 1857 | 1857 | //$alivedays = get_post_meta($page_id,'alive_days',true); |
| 1858 | - $pkg_limit = get_property_price_info_listing( $page_id ); |
|
| 1858 | + $pkg_limit = get_property_price_info_listing($page_id); |
|
| 1859 | 1859 | $alivedays = $pkg_limit['days']; |
| 1860 | - $productlink = get_permalink( $page_id ); |
|
| 1861 | - $post_info = get_post( $page_id ); |
|
| 1862 | - $post_date = date( 'dS F,Y', strtotime( $post_info->post_date ) ); |
|
| 1863 | - $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>'; |
|
| 1860 | + $productlink = get_permalink($page_id); |
|
| 1861 | + $post_info = get_post($page_id); |
|
| 1862 | + $post_date = date('dS F,Y', strtotime($post_info->post_date));
|
|
| 1863 | + $listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>'; |
|
| 1864 | 1864 | $loginurl = geodir_login_url(); |
| 1865 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
| 1865 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
| 1866 | 1866 | $siteurl = home_url(); |
| 1867 | - $siteurl_link = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>'; |
|
| 1868 | - $user_info = get_userdata( $user_id ); |
|
| 1867 | + $siteurl_link = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>'; |
|
| 1868 | + $user_info = get_userdata($user_id); |
|
| 1869 | 1869 | $user_email = $user_info->user_email; |
| 1870 | - $display_name = geodir_get_client_name( $user_id ); |
|
| 1870 | + $display_name = geodir_get_client_name($user_id); |
|
| 1871 | 1871 | $user_login = $user_info->user_login; |
| 1872 | - $number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' ); |
|
| 1873 | - if ( $number_of_grace_days == '' ) {
|
|
| 1872 | + $number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
|
|
| 1873 | + if ($number_of_grace_days == '') {
|
|
| 1874 | 1874 | $number_of_grace_days = 1; |
| 1875 | 1875 | } |
| 1876 | - if ( $post_info->post_type == 'event' ) {
|
|
| 1876 | + if ($post_info->post_type == 'event') {
|
|
| 1877 | 1877 | $post_type = 'event'; |
| 1878 | 1878 | } else {
|
| 1879 | 1879 | $post_type = 'listing'; |
| 1880 | 1880 | } |
| 1881 | - $renew_link = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>'; |
|
| 1881 | + $renew_link = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>'; |
|
| 1882 | 1882 | $search_array = array( |
| 1883 | 1883 | '[#client_name#]', |
| 1884 | 1884 | '[#listing_link#]', |
@@ -1894,7 +1894,7 @@ discard block |
||
| 1894 | 1894 | '[#site_name#]', |
| 1895 | 1895 | '[#transaction_details#]' |
| 1896 | 1896 | ); |
| 1897 | - $replace_array = array( |
|
| 1897 | + $replace_array = array( |
|
| 1898 | 1898 | $display_name, |
| 1899 | 1899 | $listingLink, |
| 1900 | 1900 | $post_date, |
@@ -1909,13 +1909,13 @@ discard block |
||
| 1909 | 1909 | $fromEmailName, |
| 1910 | 1910 | $transaction_details |
| 1911 | 1911 | ); |
| 1912 | - $client_message = str_replace( $search_array, $replace_array, $client_message ); |
|
| 1913 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
| 1912 | + $client_message = str_replace($search_array, $replace_array, $client_message); |
|
| 1913 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
| 1914 | 1914 | |
| 1915 | 1915 | |
| 1916 | - $headers = array(); |
|
| 1916 | + $headers = array(); |
|
| 1917 | 1917 | $headers[] = 'Content-type: text/html; charset=UTF-8'; |
| 1918 | - $headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>'; |
|
| 1918 | + $headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>'; |
|
| 1919 | 1919 | |
| 1920 | 1920 | $to = $fromEmail; |
| 1921 | 1921 | $message = $client_message; |
@@ -1933,7 +1933,7 @@ discard block |
||
| 1933 | 1933 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1934 | 1934 | * @param string $custom_1 Custom data to be sent. |
| 1935 | 1935 | */ |
| 1936 | - $to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 ); |
|
| 1936 | + $to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
|
|
| 1937 | 1937 | /** |
| 1938 | 1938 | * Filter the admin email subject. |
| 1939 | 1939 | * |
@@ -1946,7 +1946,7 @@ discard block |
||
| 1946 | 1946 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1947 | 1947 | * @param string $custom_1 Custom data to be sent. |
| 1948 | 1948 | */ |
| 1949 | - $subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 ); |
|
| 1949 | + $subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
|
|
| 1950 | 1950 | /** |
| 1951 | 1951 | * Filter the admin email message. |
| 1952 | 1952 | * |
@@ -1959,7 +1959,7 @@ discard block |
||
| 1959 | 1959 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1960 | 1960 | * @param string $custom_1 Custom data to be sent. |
| 1961 | 1961 | */ |
| 1962 | - $message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 ); |
|
| 1962 | + $message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
|
|
| 1963 | 1963 | /** |
| 1964 | 1964 | * Filter the admin email headers. |
| 1965 | 1965 | * |
@@ -1972,22 +1972,22 @@ discard block |
||
| 1972 | 1972 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
| 1973 | 1973 | * @param string $custom_1 Custom data to be sent. |
| 1974 | 1974 | */ |
| 1975 | - $headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 ); |
|
| 1975 | + $headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
|
|
| 1976 | 1976 | |
| 1977 | 1977 | |
| 1978 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
| 1979 | - if ( ! $sent ) {
|
|
| 1980 | - if ( is_array( $to ) ) {
|
|
| 1981 | - $to = implode( ',', $to ); |
|
| 1978 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
| 1979 | + if (!$sent) {
|
|
| 1980 | + if (is_array($to)) {
|
|
| 1981 | + $to = implode(',', $to);
|
|
| 1982 | 1982 | } |
| 1983 | 1983 | $log_message = sprintf( |
| 1984 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
| 1984 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
|
|
| 1985 | 1985 | $message_type, |
| 1986 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
| 1986 | + date_i18n('F j Y H:i:s', current_time('timestamp')),
|
|
| 1987 | 1987 | $to, |
| 1988 | 1988 | $subject |
| 1989 | 1989 | ); |
| 1990 | - geodir_error_log( $log_message ); |
|
| 1990 | + geodir_error_log($log_message); |
|
| 1991 | 1991 | } |
| 1992 | 1992 | } |
| 1993 | 1993 | } |
@@ -2007,12 +2007,12 @@ discard block |
||
| 2007 | 2007 | * |
| 2008 | 2008 | * @return array Category IDs. |
| 2009 | 2009 | */ |
| 2010 | -function gd_lang_object_ids( $ids_array, $type ) {
|
|
| 2011 | - if ( geodir_is_wpml() ) {
|
|
| 2010 | +function gd_lang_object_ids($ids_array, $type) {
|
|
| 2011 | + if (geodir_is_wpml()) {
|
|
| 2012 | 2012 | $res = array(); |
| 2013 | - foreach ( $ids_array as $id ) {
|
|
| 2014 | - $xlat = geodir_wpml_object_id( $id, $type, false ); |
|
| 2015 | - if ( ! is_null( $xlat ) ) {
|
|
| 2013 | + foreach ($ids_array as $id) {
|
|
| 2014 | + $xlat = geodir_wpml_object_id($id, $type, false); |
|
| 2015 | + if (!is_null($xlat)) {
|
|
| 2016 | 2016 | $res[] = $xlat; |
| 2017 | 2017 | } |
| 2018 | 2018 | } |
@@ -2036,20 +2036,20 @@ discard block |
||
| 2036 | 2036 | * |
| 2037 | 2037 | * @return array Modified Body CSS classes. |
| 2038 | 2038 | */ |
| 2039 | -function geodir_custom_posts_body_class( $classes ) {
|
|
| 2039 | +function geodir_custom_posts_body_class($classes) {
|
|
| 2040 | 2040 | global $wpdb, $wp; |
| 2041 | - $post_types = geodir_get_posttypes( 'object' ); |
|
| 2042 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
|
|
| 2041 | + $post_types = geodir_get_posttypes('object');
|
|
| 2042 | + if (!empty($post_types) && count((array) $post_types) > 1) {
|
|
| 2043 | 2043 | $classes[] = 'geodir_custom_posts'; |
| 2044 | 2044 | } |
| 2045 | 2045 | |
| 2046 | 2046 | // fix body class for signup page |
| 2047 | - if ( geodir_is_page( 'login' ) ) {
|
|
| 2047 | + if (geodir_is_page('login')) {
|
|
| 2048 | 2048 | $new_classes = array(); |
| 2049 | 2049 | $new_classes[] = 'signup page-geodir-signup'; |
| 2050 | - if ( ! empty( $classes ) ) {
|
|
| 2051 | - foreach ( $classes as $class ) {
|
|
| 2052 | - if ( $class && $class != 'home' && $class != 'blog' ) {
|
|
| 2050 | + if (!empty($classes)) {
|
|
| 2051 | + foreach ($classes as $class) {
|
|
| 2052 | + if ($class && $class != 'home' && $class != 'blog') {
|
|
| 2053 | 2053 | $new_classes[] = $class; |
| 2054 | 2054 | } |
| 2055 | 2055 | } |
@@ -2057,14 +2057,14 @@ discard block |
||
| 2057 | 2057 | $classes = $new_classes; |
| 2058 | 2058 | } |
| 2059 | 2059 | |
| 2060 | - if ( geodir_is_geodir_page() ) {
|
|
| 2060 | + if (geodir_is_geodir_page()) {
|
|
| 2061 | 2061 | $classes[] = 'geodir-page'; |
| 2062 | 2062 | } |
| 2063 | 2063 | |
| 2064 | 2064 | return $classes; |
| 2065 | 2065 | } |
| 2066 | 2066 | |
| 2067 | -add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search |
|
| 2067 | +add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search
|
|
| 2068 | 2068 | |
| 2069 | 2069 | |
| 2070 | 2070 | /** |
@@ -2080,7 +2080,7 @@ discard block |
||
| 2080 | 2080 | * |
| 2081 | 2081 | * @since 1.0.0 |
| 2082 | 2082 | */ |
| 2083 | - return apply_filters( 'geodir_map_zoom_level', array( |
|
| 2083 | + return apply_filters('geodir_map_zoom_level', array(
|
|
| 2084 | 2084 | 1, |
| 2085 | 2085 | 2, |
| 2086 | 2086 | 3, |
@@ -2100,7 +2100,7 @@ discard block |
||
| 2100 | 2100 | 17, |
| 2101 | 2101 | 18, |
| 2102 | 2102 | 19 |
| 2103 | - ) ); |
|
| 2103 | + )); |
|
| 2104 | 2104 | |
| 2105 | 2105 | } |
| 2106 | 2106 | |
@@ -2113,12 +2113,12 @@ discard block |
||
| 2113 | 2113 | * |
| 2114 | 2114 | * @param string $geodir_option_name Option key. |
| 2115 | 2115 | */ |
| 2116 | -function geodir_option_version_backup( $geodir_option_name ) {
|
|
| 2116 | +function geodir_option_version_backup($geodir_option_name) {
|
|
| 2117 | 2117 | $version_date = time(); |
| 2118 | - $geodir_option = get_option( $geodir_option_name ); |
|
| 2118 | + $geodir_option = get_option($geodir_option_name); |
|
| 2119 | 2119 | |
| 2120 | - if ( ! empty( $geodir_option ) ) {
|
|
| 2121 | - add_option( $geodir_option_name . '_' . $version_date, $geodir_option ); |
|
| 2120 | + if (!empty($geodir_option)) {
|
|
| 2121 | + add_option($geodir_option_name.'_'.$version_date, $geodir_option); |
|
| 2122 | 2122 | } |
| 2123 | 2123 | } |
| 2124 | 2124 | |
@@ -2132,10 +2132,10 @@ discard block |
||
| 2132 | 2132 | * |
| 2133 | 2133 | * @return int Page ID. |
| 2134 | 2134 | */ |
| 2135 | -function get_page_id_geodir_add_listing_page( $page_id ) {
|
|
| 2136 | - if ( geodir_wpml_multilingual_status() ) {
|
|
| 2135 | +function get_page_id_geodir_add_listing_page($page_id) {
|
|
| 2136 | + if (geodir_wpml_multilingual_status()) {
|
|
| 2137 | 2137 | $post_type = 'post_page'; |
| 2138 | - $page_id = geodir_get_wpml_element_id( $page_id, $post_type ); |
|
| 2138 | + $page_id = geodir_get_wpml_element_id($page_id, $post_type); |
|
| 2139 | 2139 | } |
| 2140 | 2140 | |
| 2141 | 2141 | return $page_id; |
@@ -2149,7 +2149,7 @@ discard block |
||
| 2149 | 2149 | * @return bool Returns true when sitepress multilingual CMS active. else returns false. |
| 2150 | 2150 | */ |
| 2151 | 2151 | function geodir_wpml_multilingual_status() {
|
| 2152 | - if ( geodir_is_wpml() ) {
|
|
| 2152 | + if (geodir_is_wpml()) {
|
|
| 2153 | 2153 | return true; |
| 2154 | 2154 | } |
| 2155 | 2155 | |
@@ -2167,19 +2167,19 @@ discard block |
||
| 2167 | 2167 | * |
| 2168 | 2168 | * @return int Element ID when exists. Else the page id. |
| 2169 | 2169 | */ |
| 2170 | -function geodir_get_wpml_element_id( $page_id, $post_type ) {
|
|
| 2170 | +function geodir_get_wpml_element_id($page_id, $post_type) {
|
|
| 2171 | 2171 | global $sitepress; |
| 2172 | - if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
|
|
| 2173 | - $trid = $sitepress->get_element_trid( $page_id, $post_type ); |
|
| 2172 | + if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
|
|
| 2173 | + $trid = $sitepress->get_element_trid($page_id, $post_type); |
|
| 2174 | 2174 | |
| 2175 | - if ( $trid > 0 ) {
|
|
| 2176 | - $translations = $sitepress->get_element_translations( $trid, $post_type ); |
|
| 2175 | + if ($trid > 0) {
|
|
| 2176 | + $translations = $sitepress->get_element_translations($trid, $post_type); |
|
| 2177 | 2177 | |
| 2178 | 2178 | $lang = $sitepress->get_current_language(); |
| 2179 | 2179 | $lang = $lang ? $lang : $sitepress->get_default_language(); |
| 2180 | 2180 | |
| 2181 | - if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
|
|
| 2182 | - $page_id = $translations[ $lang ]->element_id; |
|
| 2181 | + if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
|
|
| 2182 | + $page_id = $translations[$lang]->element_id; |
|
| 2183 | 2183 | } |
| 2184 | 2184 | } |
| 2185 | 2185 | } |
@@ -2196,15 +2196,15 @@ discard block |
||
| 2196 | 2196 | */ |
| 2197 | 2197 | function geodir_wpml_check_element_id() {
|
| 2198 | 2198 | global $sitepress; |
| 2199 | - if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
|
|
| 2199 | + if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
|
|
| 2200 | 2200 | $el_type = 'post_page'; |
| 2201 | - $el_id = get_option( 'geodir_add_listing_page' ); |
|
| 2201 | + $el_id = get_option('geodir_add_listing_page');
|
|
| 2202 | 2202 | $default_lang = $sitepress->get_default_language(); |
| 2203 | - $el_details = $sitepress->get_element_language_details( $el_id, $el_type ); |
|
| 2203 | + $el_details = $sitepress->get_element_language_details($el_id, $el_type); |
|
| 2204 | 2204 | |
| 2205 | - if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
|
|
| 2206 | - if ( ! $el_details->source_language_code ) {
|
|
| 2207 | - $sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang ); |
|
| 2205 | + if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
|
|
| 2206 | + if (!$el_details->source_language_code) {
|
|
| 2207 | + $sitepress->set_element_language_details($el_id, $el_type, '', $default_lang); |
|
| 2208 | 2208 | $sitepress->icl_translations_cache->clear(); |
| 2209 | 2209 | } |
| 2210 | 2210 | } |
@@ -2224,44 +2224,44 @@ discard block |
||
| 2224 | 2224 | * |
| 2225 | 2225 | * @return string Orderby SQL. |
| 2226 | 2226 | */ |
| 2227 | -function geodir_widget_listings_get_order( $query_args ) {
|
|
| 2227 | +function geodir_widget_listings_get_order($query_args) {
|
|
| 2228 | 2228 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2229 | 2229 | |
| 2230 | 2230 | $query_args = $gd_query_args_widgets; |
| 2231 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2232 | - return $wpdb->posts . ".post_date DESC, "; |
|
| 2231 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2232 | + return $wpdb->posts.".post_date DESC, "; |
|
| 2233 | 2233 | } |
| 2234 | 2234 | |
| 2235 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
| 2236 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2235 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
| 2236 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2237 | 2237 | |
| 2238 | - $sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : ''; |
|
| 2238 | + $sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : ''; |
|
| 2239 | 2239 | |
| 2240 | - switch ( $sort_by ) {
|
|
| 2240 | + switch ($sort_by) {
|
|
| 2241 | 2241 | case 'latest': |
| 2242 | 2242 | case 'newest': |
| 2243 | - $orderby = $wpdb->posts . ".post_date DESC, "; |
|
| 2243 | + $orderby = $wpdb->posts.".post_date DESC, "; |
|
| 2244 | 2244 | break; |
| 2245 | 2245 | case 'featured': |
| 2246 | - $orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, "; |
|
| 2246 | + $orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, "; |
|
| 2247 | 2247 | break; |
| 2248 | 2248 | case 'az': |
| 2249 | - $orderby = $wpdb->posts . ".post_title ASC, "; |
|
| 2249 | + $orderby = $wpdb->posts.".post_title ASC, "; |
|
| 2250 | 2250 | break; |
| 2251 | 2251 | case 'high_review': |
| 2252 | - $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, "; |
|
| 2252 | + $orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, "; |
|
| 2253 | 2253 | break; |
| 2254 | 2254 | case 'high_rating': |
| 2255 | - $orderby = "( " . $table . ".overall_rating ) DESC, "; |
|
| 2255 | + $orderby = "( ".$table.".overall_rating ) DESC, "; |
|
| 2256 | 2256 | break; |
| 2257 | 2257 | case 'random': |
| 2258 | 2258 | $orderby = "RAND(), "; |
| 2259 | 2259 | break; |
| 2260 | 2260 | default: |
| 2261 | - if ( $custom_orderby = geodir_prepare_custom_sorting( $sort_by, $table ) ) {
|
|
| 2262 | - $orderby = $custom_orderby . ", "; |
|
| 2261 | + if ($custom_orderby = geodir_prepare_custom_sorting($sort_by, $table)) {
|
|
| 2262 | + $orderby = $custom_orderby.", "; |
|
| 2263 | 2263 | } else {
|
| 2264 | - $orderby = $wpdb->posts . ".post_title ASC, "; |
|
| 2264 | + $orderby = $wpdb->posts.".post_title ASC, "; |
|
| 2265 | 2265 | } |
| 2266 | 2266 | break; |
| 2267 | 2267 | } |
@@ -2286,16 +2286,16 @@ discard block |
||
| 2286 | 2286 | * |
| 2287 | 2287 | * @return mixed Result object. |
| 2288 | 2288 | */ |
| 2289 | -function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
|
|
| 2289 | +function geodir_get_widget_listings($query_args = array(), $count_only = false) {
|
|
| 2290 | 2290 | global $wpdb, $plugin_prefix, $table_prefix; |
| 2291 | 2291 | $GLOBALS['gd_query_args_widgets'] = $query_args; |
| 2292 | 2292 | $gd_query_args_widgets = $query_args; |
| 2293 | 2293 | |
| 2294 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
| 2295 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2296 | - $supports_wpml = geodir_wpml_is_post_type_translated( $post_type ); |
|
| 2294 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
| 2295 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2296 | + $supports_wpml = geodir_wpml_is_post_type_translated($post_type); |
|
| 2297 | 2297 | |
| 2298 | - $fields = $wpdb->posts . ".*, " . $table . ".*"; |
|
| 2298 | + $fields = $wpdb->posts.".*, ".$table.".*"; |
|
| 2299 | 2299 | /** |
| 2300 | 2300 | * Filter widget listing fields string part that is being used for query. |
| 2301 | 2301 | * |
@@ -2305,17 +2305,17 @@ discard block |
||
| 2305 | 2305 | * @param string $table Table name. |
| 2306 | 2306 | * @param string $post_type Post type. |
| 2307 | 2307 | */ |
| 2308 | - $fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type ); |
|
| 2308 | + $fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
|
|
| 2309 | 2309 | |
| 2310 | - $join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
|
|
| 2310 | + $join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
|
|
| 2311 | 2311 | |
| 2312 | 2312 | ########### WPML ########### |
| 2313 | 2313 | |
| 2314 | - if ( $supports_wpml ) {
|
|
| 2314 | + if ($supports_wpml) {
|
|
| 2315 | 2315 | global $sitepress; |
| 2316 | 2316 | $lang_code = ICL_LANGUAGE_CODE; |
| 2317 | - if ( $lang_code ) {
|
|
| 2318 | - $join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID"; |
|
| 2317 | + if ($lang_code) {
|
|
| 2318 | + $join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID"; |
|
| 2319 | 2319 | } |
| 2320 | 2320 | } |
| 2321 | 2321 | |
@@ -2329,15 +2329,15 @@ discard block |
||
| 2329 | 2329 | * @param string $join Join clause string. |
| 2330 | 2330 | * @param string $post_type Post type. |
| 2331 | 2331 | */ |
| 2332 | - $join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type ); |
|
| 2332 | + $join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
|
|
| 2333 | 2333 | |
| 2334 | - $post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : ''; |
|
| 2334 | + $post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : ''; |
|
| 2335 | 2335 | |
| 2336 | - $where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'"; |
|
| 2336 | + $where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'"; |
|
| 2337 | 2337 | |
| 2338 | 2338 | ########### WPML ########### |
| 2339 | - if ( $supports_wpml ) {
|
|
| 2340 | - if ( $lang_code ) {
|
|
| 2339 | + if ($supports_wpml) {
|
|
| 2340 | + if ($lang_code) {
|
|
| 2341 | 2341 | $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' "; |
| 2342 | 2342 | } |
| 2343 | 2343 | } |
@@ -2350,8 +2350,8 @@ discard block |
||
| 2350 | 2350 | * @param string $where Where clause string. |
| 2351 | 2351 | * @param string $post_type Post type. |
| 2352 | 2352 | */ |
| 2353 | - $where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type ); |
|
| 2354 | - $where = $where != '' ? " WHERE 1=1 " . $where : ''; |
|
| 2353 | + $where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
|
|
| 2354 | + $where = $where != '' ? " WHERE 1=1 ".$where : ''; |
|
| 2355 | 2355 | |
| 2356 | 2356 | $groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster without |
| 2357 | 2357 | /** |
@@ -2362,15 +2362,15 @@ discard block |
||
| 2362 | 2362 | * @param string $groupby Group by clause string. |
| 2363 | 2363 | * @param string $post_type Post type. |
| 2364 | 2364 | */ |
| 2365 | - $groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type ); |
|
| 2365 | + $groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
|
|
| 2366 | 2366 | |
| 2367 | - if ( $count_only ) {
|
|
| 2368 | - $sql = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . " |
|
| 2369 | - " . $join . " |
|
| 2367 | + if ($count_only) {
|
|
| 2368 | + $sql = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts." |
|
| 2369 | + " . $join." |
|
| 2370 | 2370 | " . $where; |
| 2371 | - $rows = (int) $wpdb->get_var( $sql ); |
|
| 2371 | + $rows = (int) $wpdb->get_var($sql); |
|
| 2372 | 2372 | } else {
|
| 2373 | - $orderby = geodir_widget_listings_get_order( $query_args ); |
|
| 2373 | + $orderby = geodir_widget_listings_get_order($query_args); |
|
| 2374 | 2374 | /** |
| 2375 | 2375 | * Filter widget listing orderby clause string part that is being used for query. |
| 2376 | 2376 | * |
@@ -2380,33 +2380,33 @@ discard block |
||
| 2380 | 2380 | * @param string $table Table name. |
| 2381 | 2381 | * @param string $post_type Post type. |
| 2382 | 2382 | */ |
| 2383 | - $orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type ); |
|
| 2383 | + $orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
|
|
| 2384 | 2384 | |
| 2385 | 2385 | $second_orderby = array(); |
| 2386 | - if ( strpos( $orderby, strtolower( $table . ".is_featured" ) ) === false ) {
|
|
| 2387 | - $second_orderby[] = $table . ".is_featured ASC"; |
|
| 2386 | + if (strpos($orderby, strtolower($table.".is_featured")) === false) {
|
|
| 2387 | + $second_orderby[] = $table.".is_featured ASC"; |
|
| 2388 | 2388 | } |
| 2389 | 2389 | |
| 2390 | - if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_date" ) ) === false ) {
|
|
| 2391 | - $second_orderby[] = $wpdb->posts . ".post_date DESC"; |
|
| 2390 | + if (strpos($orderby, strtolower($wpdb->posts.".post_date")) === false) {
|
|
| 2391 | + $second_orderby[] = $wpdb->posts.".post_date DESC"; |
|
| 2392 | 2392 | } |
| 2393 | 2393 | |
| 2394 | - if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_title" ) ) === false ) {
|
|
| 2395 | - $second_orderby[] = $wpdb->posts . ".post_title ASC"; |
|
| 2394 | + if (strpos($orderby, strtolower($wpdb->posts.".post_title")) === false) {
|
|
| 2395 | + $second_orderby[] = $wpdb->posts.".post_title ASC"; |
|
| 2396 | 2396 | } |
| 2397 | 2397 | |
| 2398 | - if ( !empty( $second_orderby ) ) {
|
|
| 2399 | - $orderby .= implode( ', ', $second_orderby ); |
|
| 2398 | + if (!empty($second_orderby)) {
|
|
| 2399 | + $orderby .= implode(', ', $second_orderby);
|
|
| 2400 | 2400 | } |
| 2401 | 2401 | |
| 2402 | - if ( !empty( $orderby ) ) {
|
|
| 2403 | - $orderby = trim( $orderby ); |
|
| 2404 | - $orderby = rtrim( $orderby, "," ); |
|
| 2402 | + if (!empty($orderby)) {
|
|
| 2403 | + $orderby = trim($orderby); |
|
| 2404 | + $orderby = rtrim($orderby, ","); |
|
| 2405 | 2405 | } |
| 2406 | 2406 | |
| 2407 | - $orderby = $orderby != '' ? " ORDER BY " . $orderby : ''; |
|
| 2407 | + $orderby = $orderby != '' ? " ORDER BY ".$orderby : ''; |
|
| 2408 | 2408 | |
| 2409 | - $limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5; |
|
| 2409 | + $limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5; |
|
| 2410 | 2410 | /** |
| 2411 | 2411 | * Filter widget listing limit that is being used for query. |
| 2412 | 2412 | * |
@@ -2415,27 +2415,27 @@ discard block |
||
| 2415 | 2415 | * @param int $limit Query results limit. |
| 2416 | 2416 | * @param string $post_type Post type. |
| 2417 | 2417 | */ |
| 2418 | - $limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type ); |
|
| 2418 | + $limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
|
|
| 2419 | 2419 | |
| 2420 | - $page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1; |
|
| 2421 | - if ( ! $page ) {
|
|
| 2420 | + $page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1; |
|
| 2421 | + if (!$page) {
|
|
| 2422 | 2422 | $page = 1; |
| 2423 | 2423 | } |
| 2424 | 2424 | |
| 2425 | - $limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : ""; |
|
| 2425 | + $limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : ""; |
|
| 2426 | 2426 | |
| 2427 | 2427 | //@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without |
| 2428 | - $sql = "SELECT " . $fields . " FROM " . $wpdb->posts . " |
|
| 2429 | - " . $join . " |
|
| 2430 | - " . $where . " |
|
| 2431 | - " . $groupby . " |
|
| 2432 | - " . $orderby . " |
|
| 2428 | + $sql = "SELECT ".$fields." FROM ".$wpdb->posts." |
|
| 2429 | + " . $join." |
|
| 2430 | + " . $where." |
|
| 2431 | + " . $groupby." |
|
| 2432 | + " . $orderby." |
|
| 2433 | 2433 | " . $limit; |
| 2434 | - $rows = $wpdb->get_results( $sql ); |
|
| 2434 | + $rows = $wpdb->get_results($sql); |
|
| 2435 | 2435 | } |
| 2436 | 2436 | |
| 2437 | - unset( $GLOBALS['gd_query_args_widgets'] ); |
|
| 2438 | - unset( $gd_query_args_widgets ); |
|
| 2437 | + unset($GLOBALS['gd_query_args_widgets']); |
|
| 2438 | + unset($gd_query_args_widgets); |
|
| 2439 | 2439 | |
| 2440 | 2440 | return $rows; |
| 2441 | 2441 | } |
@@ -2452,11 +2452,11 @@ discard block |
||
| 2452 | 2452 | * |
| 2453 | 2453 | * @return string Modified fields SQL. |
| 2454 | 2454 | */ |
| 2455 | -function geodir_function_widget_listings_fields( $fields ) {
|
|
| 2455 | +function geodir_function_widget_listings_fields($fields) {
|
|
| 2456 | 2456 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2457 | 2457 | |
| 2458 | 2458 | $query_args = $gd_query_args_widgets; |
| 2459 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2459 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2460 | 2460 | return $fields; |
| 2461 | 2461 | } |
| 2462 | 2462 | |
@@ -2475,24 +2475,24 @@ discard block |
||
| 2475 | 2475 | * |
| 2476 | 2476 | * @return string Modified join clause SQL. |
| 2477 | 2477 | */ |
| 2478 | -function geodir_function_widget_listings_join( $join ) {
|
|
| 2478 | +function geodir_function_widget_listings_join($join) {
|
|
| 2479 | 2479 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2480 | 2480 | |
| 2481 | 2481 | $query_args = $gd_query_args_widgets; |
| 2482 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2482 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2483 | 2483 | return $join; |
| 2484 | 2484 | } |
| 2485 | 2485 | |
| 2486 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
| 2487 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2486 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
| 2487 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2488 | 2488 | |
| 2489 | - if ( ! empty( $query_args['with_pics_only'] ) ) {
|
|
| 2490 | - $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )"; |
|
| 2489 | + if (!empty($query_args['with_pics_only'])) {
|
|
| 2490 | + $join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )"; |
|
| 2491 | 2491 | } |
| 2492 | 2492 | |
| 2493 | - if ( ! empty( $query_args['tax_query'] ) ) {
|
|
| 2494 | - $tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' ); |
|
| 2495 | - if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
|
|
| 2493 | + if (!empty($query_args['tax_query'])) {
|
|
| 2494 | + $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID'); |
|
| 2495 | + if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
|
|
| 2496 | 2496 | $join .= $tax_queries['join']; |
| 2497 | 2497 | } |
| 2498 | 2498 | } |
@@ -2513,67 +2513,67 @@ discard block |
||
| 2513 | 2513 | * |
| 2514 | 2514 | * @return string Modified where clause SQL. |
| 2515 | 2515 | */ |
| 2516 | -function geodir_function_widget_listings_where( $where ) {
|
|
| 2516 | +function geodir_function_widget_listings_where($where) {
|
|
| 2517 | 2517 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2518 | 2518 | |
| 2519 | 2519 | $query_args = $gd_query_args_widgets; |
| 2520 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2520 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2521 | 2521 | return $where; |
| 2522 | 2522 | } |
| 2523 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
| 2524 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2523 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
| 2524 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2525 | 2525 | |
| 2526 | - if ( ! empty( $query_args ) ) {
|
|
| 2527 | - if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
|
|
| 2528 | - $where = geodir_default_location_where( $where, $table ); |
|
| 2526 | + if (!empty($query_args)) {
|
|
| 2527 | + if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
|
|
| 2528 | + $where = geodir_default_location_where($where, $table); |
|
| 2529 | 2529 | } |
| 2530 | 2530 | |
| 2531 | - if ( ! empty( $query_args['post_author'] ) ) {
|
|
| 2532 | - $where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author']; |
|
| 2531 | + if (!empty($query_args['post_author'])) {
|
|
| 2532 | + $where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author']; |
|
| 2533 | 2533 | } |
| 2534 | 2534 | |
| 2535 | - if ( ! empty( $query_args['show_featured_only'] ) ) {
|
|
| 2536 | - $where .= " AND " . $table . ".is_featured = '1'"; |
|
| 2535 | + if (!empty($query_args['show_featured_only'])) {
|
|
| 2536 | + $where .= " AND ".$table.".is_featured = '1'"; |
|
| 2537 | 2537 | } |
| 2538 | 2538 | |
| 2539 | - if ( ! empty( $query_args['show_special_only'] ) ) {
|
|
| 2540 | - $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )"; |
|
| 2539 | + if (!empty($query_args['show_special_only'])) {
|
|
| 2540 | + $where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )"; |
|
| 2541 | 2541 | } |
| 2542 | 2542 | |
| 2543 | - if ( ! empty( $query_args['with_pics_only'] ) ) {
|
|
| 2544 | - $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL "; |
|
| 2543 | + if (!empty($query_args['with_pics_only'])) {
|
|
| 2544 | + $where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL "; |
|
| 2545 | 2545 | } |
| 2546 | 2546 | |
| 2547 | - if ( ! empty( $query_args['featured_image_only'] ) ) {
|
|
| 2548 | - $where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' "; |
|
| 2547 | + if (!empty($query_args['featured_image_only'])) {
|
|
| 2548 | + $where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' "; |
|
| 2549 | 2549 | } |
| 2550 | 2550 | |
| 2551 | - if ( ! empty( $query_args['with_videos_only'] ) ) {
|
|
| 2552 | - $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )"; |
|
| 2551 | + if (!empty($query_args['with_videos_only'])) {
|
|
| 2552 | + $where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )"; |
|
| 2553 | 2553 | } |
| 2554 | 2554 | |
| 2555 | - if ( ! empty( $query_args['show_favorites_only'] ) ) {
|
|
| 2555 | + if (!empty($query_args['show_favorites_only'])) {
|
|
| 2556 | 2556 | $user_favorites = '-1'; |
| 2557 | 2557 | |
| 2558 | - if ( !empty( $query_args['favorites_by_user'] ) ) {
|
|
| 2558 | + if (!empty($query_args['favorites_by_user'])) {
|
|
| 2559 | 2559 | |
| 2560 | 2560 | $site_id = ''; |
| 2561 | - if ( is_multisite() ) {
|
|
| 2561 | + if (is_multisite()) {
|
|
| 2562 | 2562 | $blog_id = get_current_blog_id(); |
| 2563 | - if($blog_id && $blog_id!='1'){$site_id = '_' . $blog_id ;}
|
|
| 2563 | + if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; }
|
|
| 2564 | 2564 | } |
| 2565 | 2565 | |
| 2566 | - $user_favorites = geodir_get_user_favourites( (int)$query_args['favorites_by_user'] ); |
|
| 2566 | + $user_favorites = geodir_get_user_favourites((int) $query_args['favorites_by_user']); |
|
| 2567 | 2567 | $user_favorites = !empty($user_favorites) && is_array($user_favorites) ? implode("','", $user_favorites) : '-1';
|
| 2568 | 2568 | } |
| 2569 | 2569 | |
| 2570 | - $where .= " AND `" . $wpdb->posts . "`.`ID` IN('" . $user_favorites . "')";
|
|
| 2570 | + $where .= " AND `".$wpdb->posts."`.`ID` IN('".$user_favorites."')";
|
|
| 2571 | 2571 | } |
| 2572 | 2572 | |
| 2573 | - if ( ! empty( $query_args['tax_query'] ) ) {
|
|
| 2574 | - $tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' ); |
|
| 2573 | + if (!empty($query_args['tax_query'])) {
|
|
| 2574 | + $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID'); |
|
| 2575 | 2575 | |
| 2576 | - if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
|
|
| 2576 | + if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
|
|
| 2577 | 2577 | $where .= $tax_queries['where']; |
| 2578 | 2578 | } |
| 2579 | 2579 | } |
@@ -2594,11 +2594,11 @@ discard block |
||
| 2594 | 2594 | * |
| 2595 | 2595 | * @return string Modified orderby clause SQL. |
| 2596 | 2596 | */ |
| 2597 | -function geodir_function_widget_listings_orderby( $orderby ) {
|
|
| 2597 | +function geodir_function_widget_listings_orderby($orderby) {
|
|
| 2598 | 2598 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2599 | 2599 | |
| 2600 | 2600 | $query_args = $gd_query_args_widgets; |
| 2601 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2601 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2602 | 2602 | return $orderby; |
| 2603 | 2603 | } |
| 2604 | 2604 | |
@@ -2617,15 +2617,15 @@ discard block |
||
| 2617 | 2617 | * |
| 2618 | 2618 | * @return int Query limit. |
| 2619 | 2619 | */ |
| 2620 | -function geodir_function_widget_listings_limit( $limit ) {
|
|
| 2620 | +function geodir_function_widget_listings_limit($limit) {
|
|
| 2621 | 2621 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
| 2622 | 2622 | |
| 2623 | 2623 | $query_args = $gd_query_args_widgets; |
| 2624 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
|
|
| 2624 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
|
|
| 2625 | 2625 | return $limit; |
| 2626 | 2626 | } |
| 2627 | 2627 | |
| 2628 | - if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
|
|
| 2628 | + if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
|
|
| 2629 | 2629 | $limit = (int) $query_args['posts_per_page']; |
| 2630 | 2630 | } |
| 2631 | 2631 | |
@@ -2643,12 +2643,12 @@ discard block |
||
| 2643 | 2643 | * |
| 2644 | 2644 | * @return int Large size width. |
| 2645 | 2645 | */ |
| 2646 | -function geodir_media_image_large_width( $default = 800, $params = '' ) {
|
|
| 2647 | - $large_size_w = get_option( 'large_size_w' ); |
|
| 2646 | +function geodir_media_image_large_width($default = 800, $params = '') {
|
|
| 2647 | + $large_size_w = get_option('large_size_w');
|
|
| 2648 | 2648 | $large_size_w = $large_size_w > 0 ? $large_size_w : $default; |
| 2649 | - $large_size_w = absint( $large_size_w ); |
|
| 2649 | + $large_size_w = absint($large_size_w); |
|
| 2650 | 2650 | |
| 2651 | - if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
|
|
| 2651 | + if (!get_option('geodir_use_wp_media_large_size')) {
|
|
| 2652 | 2652 | $large_size_w = 800; |
| 2653 | 2653 | } |
| 2654 | 2654 | |
@@ -2661,7 +2661,7 @@ discard block |
||
| 2661 | 2661 | * @param int $default Default width. |
| 2662 | 2662 | * @param string|array $params Image parameters. |
| 2663 | 2663 | */ |
| 2664 | - $large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params ); |
|
| 2664 | + $large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
|
|
| 2665 | 2665 | |
| 2666 | 2666 | return $large_size_w; |
| 2667 | 2667 | } |
@@ -2677,12 +2677,12 @@ discard block |
||
| 2677 | 2677 | * |
| 2678 | 2678 | * @return int Large size height. |
| 2679 | 2679 | */ |
| 2680 | -function geodir_media_image_large_height( $default = 800, $params = '' ) {
|
|
| 2681 | - $large_size_h = get_option( 'large_size_h' ); |
|
| 2680 | +function geodir_media_image_large_height($default = 800, $params = '') {
|
|
| 2681 | + $large_size_h = get_option('large_size_h');
|
|
| 2682 | 2682 | $large_size_h = $large_size_h > 0 ? $large_size_h : $default; |
| 2683 | - $large_size_h = absint( $large_size_h ); |
|
| 2683 | + $large_size_h = absint($large_size_h); |
|
| 2684 | 2684 | |
| 2685 | - if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
|
|
| 2685 | + if (!get_option('geodir_use_wp_media_large_size')) {
|
|
| 2686 | 2686 | $large_size_h = 800; |
| 2687 | 2687 | } |
| 2688 | 2688 | |
@@ -2695,7 +2695,7 @@ discard block |
||
| 2695 | 2695 | * @param int $default Default height. |
| 2696 | 2696 | * @param string|array $params Image parameters. |
| 2697 | 2697 | */ |
| 2698 | - $large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params ); |
|
| 2698 | + $large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
|
|
| 2699 | 2699 | |
| 2700 | 2700 | return $large_size_h; |
| 2701 | 2701 | } |
@@ -2712,8 +2712,8 @@ discard block |
||
| 2712 | 2712 | * |
| 2713 | 2713 | * @return string Sanitized name. |
| 2714 | 2714 | */ |
| 2715 | -function geodir_sanitize_location_name( $type, $name, $translate = true ) {
|
|
| 2716 | - if ( $name == '' ) {
|
|
| 2715 | +function geodir_sanitize_location_name($type, $name, $translate = true) {
|
|
| 2716 | + if ($name == '') {
|
|
| 2717 | 2717 | return null; |
| 2718 | 2718 | } |
| 2719 | 2719 | |
@@ -2722,13 +2722,13 @@ discard block |
||
| 2722 | 2722 | $type = $type == 'gd_city' ? 'city' : $type; |
| 2723 | 2723 | |
| 2724 | 2724 | $return = $name; |
| 2725 | - if ( function_exists( 'get_actual_location_name' ) ) {
|
|
| 2726 | - $return = get_actual_location_name( $type, $name, $translate ); |
|
| 2725 | + if (function_exists('get_actual_location_name')) {
|
|
| 2726 | + $return = get_actual_location_name($type, $name, $translate); |
|
| 2727 | 2727 | } else {
|
| 2728 | - $return = preg_replace( '/-(\d+)$/', '', $return ); |
|
| 2729 | - $return = preg_replace( '/[_-]/', ' ', $return ); |
|
| 2730 | - $return = geodir_ucwords( $return ); |
|
| 2731 | - $return = $translate ? __( $return, 'geodirectory' ) : $return; |
|
| 2728 | + $return = preg_replace('/-(\d+)$/', '', $return);
|
|
| 2729 | + $return = preg_replace('/[_-]/', ' ', $return);
|
|
| 2730 | + $return = geodir_ucwords($return); |
|
| 2731 | + $return = $translate ? __($return, 'geodirectory') : $return; |
|
| 2732 | 2732 | } |
| 2733 | 2733 | |
| 2734 | 2734 | return $return; |
@@ -2746,26 +2746,26 @@ discard block |
||
| 2746 | 2746 | * |
| 2747 | 2747 | * @param int $number Comments number. |
| 2748 | 2748 | */ |
| 2749 | -function geodir_comments_number( $number ) {
|
|
| 2749 | +function geodir_comments_number($number) {
|
|
| 2750 | 2750 | global $post; |
| 2751 | 2751 | |
| 2752 | - if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) {
|
|
| 2752 | + if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) {
|
|
| 2753 | 2753 | $number = get_comments_number(); |
| 2754 | 2754 | |
| 2755 | - if ( $number > 1 ) {
|
|
| 2756 | - $output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) ); |
|
| 2757 | - } elseif ( $number == 0 || $number == '' ) {
|
|
| 2758 | - $output = __( 'No Comments', 'geodirectory' ); |
|
| 2755 | + if ($number > 1) {
|
|
| 2756 | + $output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory'));
|
|
| 2757 | + } elseif ($number == 0 || $number == '') {
|
|
| 2758 | + $output = __('No Comments', 'geodirectory');
|
|
| 2759 | 2759 | } else { // must be one
|
| 2760 | - $output = __( '1 Comment', 'geodirectory' ); |
|
| 2760 | + $output = __('1 Comment', 'geodirectory');
|
|
| 2761 | 2761 | } |
| 2762 | 2762 | } else {
|
| 2763 | - if ( $number > 1 ) {
|
|
| 2764 | - $output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) ); |
|
| 2765 | - } elseif ( $number == 0 || $number == '' ) {
|
|
| 2766 | - $output = __( 'No Reviews', 'geodirectory' ); |
|
| 2763 | + if ($number > 1) {
|
|
| 2764 | + $output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
|
|
| 2765 | + } elseif ($number == 0 || $number == '') {
|
|
| 2766 | + $output = __('No Reviews', 'geodirectory');
|
|
| 2767 | 2767 | } else { // must be one
|
| 2768 | - $output = __( '1 Review', 'geodirectory' ); |
|
| 2768 | + $output = __('1 Review', 'geodirectory');
|
|
| 2769 | 2769 | } |
| 2770 | 2770 | } |
| 2771 | 2771 | |
@@ -2782,18 +2782,18 @@ discard block |
||
| 2782 | 2782 | */ |
| 2783 | 2783 | function is_page_geodir_home() {
|
| 2784 | 2784 | global $wpdb; |
| 2785 | - $cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() ); |
|
| 2786 | - if ( function_exists( 'geodir_location_geo_home_link' ) ) {
|
|
| 2787 | - remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 ); |
|
| 2785 | + $cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
|
|
| 2786 | + if (function_exists('geodir_location_geo_home_link')) {
|
|
| 2787 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
|
| 2788 | 2788 | } |
| 2789 | - $home_url = home_url( '', 'http' ); |
|
| 2790 | - if ( function_exists( 'geodir_location_geo_home_link' ) ) {
|
|
| 2791 | - add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 ); |
|
| 2789 | + $home_url = home_url('', 'http');
|
|
| 2790 | + if (function_exists('geodir_location_geo_home_link')) {
|
|
| 2791 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
|
|
| 2792 | 2792 | } |
| 2793 | - $home_url = str_replace( "www.", "", $home_url ); |
|
| 2794 | - if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) {
|
|
| 2793 | + $home_url = str_replace("www.", "", $home_url);
|
|
| 2794 | + if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) {
|
|
| 2795 | 2795 | return true; |
| 2796 | - } elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) {
|
|
| 2796 | + } elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) {
|
|
| 2797 | 2797 | return true; |
| 2798 | 2798 | } else {
|
| 2799 | 2799 | return false; |
@@ -2813,18 +2813,18 @@ discard block |
||
| 2813 | 2813 | * |
| 2814 | 2814 | * @return string The canonical URL. |
| 2815 | 2815 | */ |
| 2816 | -function geodir_wpseo_homepage_canonical( $url ) {
|
|
| 2816 | +function geodir_wpseo_homepage_canonical($url) {
|
|
| 2817 | 2817 | global $post; |
| 2818 | 2818 | |
| 2819 | - if ( is_page_geodir_home() ) {
|
|
| 2819 | + if (is_page_geodir_home()) {
|
|
| 2820 | 2820 | return home_url(); |
| 2821 | 2821 | } |
| 2822 | 2822 | |
| 2823 | 2823 | return $url; |
| 2824 | 2824 | } |
| 2825 | 2825 | |
| 2826 | -add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 ); |
|
| 2827 | -add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 ); |
|
| 2826 | +add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
|
|
| 2827 | +add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
|
|
| 2828 | 2828 | |
| 2829 | 2829 | /** |
| 2830 | 2830 | * Add extra fields to google maps script call. |
@@ -2837,20 +2837,20 @@ discard block |
||
| 2837 | 2837 | * |
| 2838 | 2838 | * @return string Modified extra string. |
| 2839 | 2839 | */ |
| 2840 | -function geodir_googlemap_script_extra_details_page( $extra ) {
|
|
| 2840 | +function geodir_googlemap_script_extra_details_page($extra) {
|
|
| 2841 | 2841 | global $post; |
| 2842 | 2842 | $add_google_places_api = false; |
| 2843 | - if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
|
|
| 2843 | + if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
|
|
| 2844 | 2844 | $add_google_places_api = true; |
| 2845 | 2845 | } |
| 2846 | - if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
|
|
| 2846 | + if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
|
|
| 2847 | 2847 | $extra .= "&libraries=places"; |
| 2848 | 2848 | } |
| 2849 | 2849 | |
| 2850 | 2850 | return $extra; |
| 2851 | 2851 | } |
| 2852 | 2852 | |
| 2853 | -add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 ); |
|
| 2853 | +add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
|
|
| 2854 | 2854 | |
| 2855 | 2855 | |
| 2856 | 2856 | /** |
@@ -2869,122 +2869,122 @@ discard block |
||
| 2869 | 2869 | * after_widget. |
| 2870 | 2870 | * @param array|string $instance The settings for the particular instance of the widget. |
| 2871 | 2871 | */ |
| 2872 | -function geodir_popular_post_category_output( $args = '', $instance = '' ) {
|
|
| 2872 | +function geodir_popular_post_category_output($args = '', $instance = '') {
|
|
| 2873 | 2873 | // prints the widget |
| 2874 | 2874 | global $wpdb, $plugin_prefix, $geodir_post_category_str; |
| 2875 | - extract( $args, EXTR_SKIP ); |
|
| 2875 | + extract($args, EXTR_SKIP); |
|
| 2876 | 2876 | |
| 2877 | 2877 | echo $before_widget; |
| 2878 | 2878 | |
| 2879 | 2879 | /** This filter is documented in geodirectory_widgets.php */ |
| 2880 | - $title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
| 2880 | + $title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
|
|
| 2881 | 2881 | |
| 2882 | 2882 | $gd_post_type = geodir_get_current_posttype(); |
| 2883 | 2883 | |
| 2884 | - $category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15; |
|
| 2884 | + $category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15; |
|
| 2885 | 2885 | if (!isset($category_restrict)) {
|
| 2886 | 2886 | $category_restrict = false; |
| 2887 | 2887 | } |
| 2888 | - if ( ! empty( $gd_post_type ) ) {
|
|
| 2888 | + if (!empty($gd_post_type)) {
|
|
| 2889 | 2889 | $default_post_type = $gd_post_type; |
| 2890 | - } elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
|
|
| 2890 | + } elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
|
|
| 2891 | 2891 | $default_post_type = $instance['default_post_type']; |
| 2892 | 2892 | } else {
|
| 2893 | 2893 | $all_gd_post_type = geodir_get_posttypes(); |
| 2894 | - $default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : ''; |
|
| 2894 | + $default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : ''; |
|
| 2895 | 2895 | } |
| 2896 | - $parent_only = !empty( $instance['parent_only'] ) ? true : false; |
|
| 2896 | + $parent_only = !empty($instance['parent_only']) ? true : false; |
|
| 2897 | 2897 | |
| 2898 | 2898 | $taxonomy = array(); |
| 2899 | - if ( ! empty( $gd_post_type ) ) {
|
|
| 2900 | - $taxonomy[] = $gd_post_type . "category"; |
|
| 2899 | + if (!empty($gd_post_type)) {
|
|
| 2900 | + $taxonomy[] = $gd_post_type."category"; |
|
| 2901 | 2901 | } else {
|
| 2902 | - $taxonomy = geodir_get_taxonomies( $gd_post_type ); |
|
| 2902 | + $taxonomy = geodir_get_taxonomies($gd_post_type); |
|
| 2903 | 2903 | } |
| 2904 | 2904 | |
| 2905 | 2905 | $taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
|
| 2906 | 2906 | |
| 2907 | - $term_args = array( 'taxonomy' => $taxonomy ); |
|
| 2908 | - if ( $parent_only ) {
|
|
| 2907 | + $term_args = array('taxonomy' => $taxonomy);
|
|
| 2908 | + if ($parent_only) {
|
|
| 2909 | 2909 | $term_args['parent'] = 0; |
| 2910 | 2910 | } |
| 2911 | 2911 | |
| 2912 | - $terms = get_terms( $term_args ); |
|
| 2912 | + $terms = get_terms($term_args); |
|
| 2913 | 2913 | $a_terms = array(); |
| 2914 | 2914 | $b_terms = array(); |
| 2915 | 2915 | |
| 2916 | - foreach ( $terms as $term ) {
|
|
| 2917 | - if ( $term->count > 0 ) {
|
|
| 2918 | - $a_terms[ $term->taxonomy ][] = $term; |
|
| 2916 | + foreach ($terms as $term) {
|
|
| 2917 | + if ($term->count > 0) {
|
|
| 2918 | + $a_terms[$term->taxonomy][] = $term; |
|
| 2919 | 2919 | } |
| 2920 | 2920 | } |
| 2921 | 2921 | |
| 2922 | - if ( ! empty( $a_terms ) ) {
|
|
| 2922 | + if (!empty($a_terms)) {
|
|
| 2923 | 2923 | // Sort CPT taxonomies in categories widget. |
| 2924 | - if ( !empty( $taxonomy ) && is_array( $taxonomy ) && count( $taxonomy ) > 1 ) {
|
|
| 2924 | + if (!empty($taxonomy) && is_array($taxonomy) && count($taxonomy) > 1) {
|
|
| 2925 | 2925 | $gd_post_types = geodir_get_posttypes(); |
| 2926 | 2926 | $sort_taxonomies = array(); |
| 2927 | 2927 | |
| 2928 | - foreach ( $gd_post_types as $gd_post_type ) {
|
|
| 2929 | - $taxonomy_name = $gd_post_type . 'category'; |
|
| 2928 | + foreach ($gd_post_types as $gd_post_type) {
|
|
| 2929 | + $taxonomy_name = $gd_post_type.'category'; |
|
| 2930 | 2930 | |
| 2931 | - if ( !empty( $a_terms[$taxonomy_name] ) ) {
|
|
| 2931 | + if (!empty($a_terms[$taxonomy_name])) {
|
|
| 2932 | 2932 | $sort_taxonomies[$taxonomy_name] = $a_terms[$taxonomy_name]; |
| 2933 | 2933 | } |
| 2934 | 2934 | } |
| 2935 | - $a_terms = !empty( $sort_taxonomies ) ? $sort_taxonomies : $a_terms; |
|
| 2935 | + $a_terms = !empty($sort_taxonomies) ? $sort_taxonomies : $a_terms; |
|
| 2936 | 2936 | } |
| 2937 | 2937 | |
| 2938 | 2938 | $sort_by = apply_filters('geodir_pp_category_sort', 'count');
|
| 2939 | - foreach ( $a_terms as $b_key => $b_val ) {
|
|
| 2940 | - $b_terms[ $b_key ] = geodir_sort_terms( $b_val, $sort_by ); |
|
| 2939 | + foreach ($a_terms as $b_key => $b_val) {
|
|
| 2940 | + $b_terms[$b_key] = geodir_sort_terms($b_val, $sort_by); |
|
| 2941 | 2941 | } |
| 2942 | 2942 | |
| 2943 | - $default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : ''; |
|
| 2943 | + $default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : ''; |
|
| 2944 | 2944 | |
| 2945 | 2945 | $tax_change_output = ''; |
| 2946 | - if ( count( $b_terms ) > 1 ) {
|
|
| 2947 | - $tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax' onchange='geodir_get_post_term(this);'>"; |
|
| 2948 | - foreach ( $b_terms as $key => $val ) {
|
|
| 2949 | - $ptype = get_post_type_object( str_replace( "category", "", $key ) ); |
|
| 2950 | - $cpt_name = __( $ptype->labels->singular_name, 'geodirectory' ); |
|
| 2951 | - $tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>"; |
|
| 2946 | + if (count($b_terms) > 1) {
|
|
| 2947 | + $tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax' onchange='geodir_get_post_term(this);'>"; |
|
| 2948 | + foreach ($b_terms as $key => $val) {
|
|
| 2949 | + $ptype = get_post_type_object(str_replace("category", "", $key));
|
|
| 2950 | + $cpt_name = __($ptype->labels->singular_name, 'geodirectory'); |
|
| 2951 | + $tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
|
|
| 2952 | 2952 | } |
| 2953 | 2953 | $tax_change_output .= "</select>"; |
| 2954 | 2954 | } |
| 2955 | 2955 | |
| 2956 | - if ( ! empty( $b_terms ) ) {
|
|
| 2957 | - $terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array |
|
| 2958 | - global $cat_count;//make global so we can change via function |
|
| 2956 | + if (!empty($b_terms)) {
|
|
| 2957 | + $terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array |
|
| 2958 | + global $cat_count; //make global so we can change via function |
|
| 2959 | 2959 | $cat_count = 0; |
| 2960 | 2960 | ?> |
| 2961 | 2961 | <div class="geodir-category-list-in clearfix"> |
| 2962 | 2962 | <div class="geodir-cat-list clearfix"> |
| 2963 | 2963 | <?php |
| 2964 | - echo $before_title . __( $title ) . $after_title; |
|
| 2964 | + echo $before_title.__($title).$after_title; |
|
| 2965 | 2965 | |
| 2966 | 2966 | echo $tax_change_output; |
| 2967 | 2967 | |
| 2968 | 2968 | echo '<ul class="geodir-popular-cat-list">'; |
| 2969 | 2969 | |
| 2970 | - geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict); |
|
| 2970 | + geodir_helper_cat_list_output($terms, $category_limit, $category_restrict); |
|
| 2971 | 2971 | |
| 2972 | 2972 | echo '</ul>'; |
| 2973 | 2973 | ?> |
| 2974 | 2974 | </div> |
| 2975 | 2975 | <?php |
| 2976 | - if ( empty( $category_restrict ) ) {
|
|
| 2976 | + if (empty($category_restrict)) {
|
|
| 2977 | 2977 | $hide = ''; |
| 2978 | - if ( $cat_count < $category_limit ) {
|
|
| 2978 | + if ($cat_count < $category_limit) {
|
|
| 2979 | 2979 | $hide = 'style="display:none;"'; |
| 2980 | 2980 | } |
| 2981 | 2981 | echo "<div class='geodir-cat-list-more' $hide >"; |
| 2982 | - echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>'; |
|
| 2983 | - echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>'; |
|
| 2982 | + echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
|
|
| 2983 | + echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
|
|
| 2984 | 2984 | echo "</div>"; |
| 2985 | 2985 | } |
| 2986 | 2986 | /* add scripts */ |
| 2987 | - add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 ); |
|
| 2987 | + add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
|
|
| 2988 | 2988 | ?> |
| 2989 | 2989 | </div> |
| 2990 | 2990 | <?php |
@@ -3004,28 +3004,28 @@ discard block |
||
| 3004 | 3004 | * @param int $category_limit Number of categories to display by default. |
| 3005 | 3005 | * @param bool $category_restrict If the cat limit should be hidden or not shown. |
| 3006 | 3006 | */ |
| 3007 | -function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
|
|
| 3007 | +function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
|
|
| 3008 | 3008 | global $geodir_post_category_str, $cat_count; |
| 3009 | 3009 | $term_icons = geodir_get_term_icon(); |
| 3010 | 3010 | |
| 3011 | 3011 | $geodir_post_category_str = array(); |
| 3012 | 3012 | |
| 3013 | 3013 | |
| 3014 | - foreach ( $terms as $cat ) {
|
|
| 3015 | - $post_type = str_replace( "category", "", $cat->taxonomy ); |
|
| 3016 | - $term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : ''; |
|
| 3014 | + foreach ($terms as $cat) {
|
|
| 3015 | + $post_type = str_replace("category", "", $cat->taxonomy);
|
|
| 3016 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : ''; |
|
| 3017 | 3017 | |
| 3018 | - $cat_count ++; |
|
| 3018 | + $cat_count++; |
|
| 3019 | 3019 | |
| 3020 | - $geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id ); |
|
| 3020 | + $geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
|
|
| 3021 | 3021 | |
| 3022 | - $class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show'; |
|
| 3023 | - if($category_restrict && $cat_count > $category_limit ){
|
|
| 3022 | + $class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show'; |
|
| 3023 | + if ($category_restrict && $cat_count > $category_limit) {
|
|
| 3024 | 3024 | continue; |
| 3025 | 3025 | } |
| 3026 | 3026 | $total_post = $cat->count; |
| 3027 | 3027 | |
| 3028 | - $term_link = get_term_link( $cat, $cat->taxonomy ); |
|
| 3028 | + $term_link = get_term_link($cat, $cat->taxonomy); |
|
| 3029 | 3029 | /** |
| 3030 | 3030 | * Filer the category term link. |
| 3031 | 3031 | * |
@@ -3035,11 +3035,11 @@ discard block |
||
| 3035 | 3035 | * @param int $cat ->term_id The term id. |
| 3036 | 3036 | * @param string $post_type Wordpress post type. |
| 3037 | 3037 | */ |
| 3038 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type ); |
|
| 3038 | + $term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
|
|
| 3039 | 3039 | |
| 3040 | - echo '<li class="' . $class_row . '"><a href="' . $term_link . '">'; |
|
| 3041 | - echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">'; |
|
| 3042 | - echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
|
|
| 3040 | + echo '<li class="'.$class_row.'"><a href="'.$term_link.'">'; |
|
| 3041 | + echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">'; |
|
| 3042 | + echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
|
|
| 3043 | 3043 | echo '</a></li>'; |
| 3044 | 3044 | } |
| 3045 | 3045 | } |
@@ -3054,14 +3054,14 @@ discard block |
||
| 3054 | 3054 | * @param array|string $args Display arguments including before_title, after_title, before_widget, and after_widget. |
| 3055 | 3055 | * @param array|string $instance The settings for the particular instance of the widget. |
| 3056 | 3056 | */ |
| 3057 | -function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
|
|
| 3057 | +function geodir_listing_slider_widget_output($args = '', $instance = '') {
|
|
| 3058 | 3058 | // prints the widget |
| 3059 | - extract( $args, EXTR_SKIP ); |
|
| 3059 | + extract($args, EXTR_SKIP); |
|
| 3060 | 3060 | |
| 3061 | 3061 | echo $before_widget; |
| 3062 | 3062 | |
| 3063 | 3063 | /** This filter is documented in geodirectory_widgets.php */ |
| 3064 | - $title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
| 3064 | + $title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
|
|
| 3065 | 3065 | /** |
| 3066 | 3066 | * Filter the widget post type. |
| 3067 | 3067 | * |
@@ -3069,7 +3069,7 @@ discard block |
||
| 3069 | 3069 | * |
| 3070 | 3070 | * @param string $instance ['post_type'] Post type of listing. |
| 3071 | 3071 | */ |
| 3072 | - $post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] ); |
|
| 3072 | + $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
|
|
| 3073 | 3073 | /** |
| 3074 | 3074 | * Filter the widget's term. |
| 3075 | 3075 | * |
@@ -3077,7 +3077,7 @@ discard block |
||
| 3077 | 3077 | * |
| 3078 | 3078 | * @param string $instance ['category'] Filter by term. Can be any valid term. |
| 3079 | 3079 | */ |
| 3080 | - $category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] ); |
|
| 3080 | + $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
|
|
| 3081 | 3081 | /** |
| 3082 | 3082 | * Filter widget's "add_location_filter" value. |
| 3083 | 3083 | * |
@@ -3085,7 +3085,7 @@ discard block |
||
| 3085 | 3085 | * |
| 3086 | 3086 | * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0. |
| 3087 | 3087 | */ |
| 3088 | - $add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] ); |
|
| 3088 | + $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
|
|
| 3089 | 3089 | /** |
| 3090 | 3090 | * Filter the widget listings limit. |
| 3091 | 3091 | * |
@@ -3093,7 +3093,7 @@ discard block |
||
| 3093 | 3093 | * |
| 3094 | 3094 | * @param string $instance ['post_number'] Number of listings to display. |
| 3095 | 3095 | */ |
| 3096 | - $post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] ); |
|
| 3096 | + $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
|
|
| 3097 | 3097 | /** |
| 3098 | 3098 | * Filter the widget listings limit shown at one time. |
| 3099 | 3099 | * |
@@ -3101,7 +3101,7 @@ discard block |
||
| 3101 | 3101 | * |
| 3102 | 3102 | * @param string $instance ['max_show'] Number of listings to display on screen. |
| 3103 | 3103 | */ |
| 3104 | - $max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] ); |
|
| 3104 | + $max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
|
|
| 3105 | 3105 | /** |
| 3106 | 3106 | * Filter the widget slide width. |
| 3107 | 3107 | * |
@@ -3109,7 +3109,7 @@ discard block |
||
| 3109 | 3109 | * |
| 3110 | 3110 | * @param string $instance ['slide_width'] Width of the slides shown. |
| 3111 | 3111 | */ |
| 3112 | - $slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] ); |
|
| 3112 | + $slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
|
|
| 3113 | 3113 | /** |
| 3114 | 3114 | * Filter widget's "show title" value. |
| 3115 | 3115 | * |
@@ -3117,7 +3117,7 @@ discard block |
||
| 3117 | 3117 | * |
| 3118 | 3118 | * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0. |
| 3119 | 3119 | */ |
| 3120 | - $show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] ); |
|
| 3120 | + $show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
|
|
| 3121 | 3121 | /** |
| 3122 | 3122 | * Filter widget's "slideshow" value. |
| 3123 | 3123 | * |
@@ -3125,7 +3125,7 @@ discard block |
||
| 3125 | 3125 | * |
| 3126 | 3126 | * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically. |
| 3127 | 3127 | */ |
| 3128 | - $slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] ); |
|
| 3128 | + $slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
|
|
| 3129 | 3129 | /** |
| 3130 | 3130 | * Filter widget's "animationLoop" value. |
| 3131 | 3131 | * |
@@ -3133,7 +3133,7 @@ discard block |
||
| 3133 | 3133 | * |
| 3134 | 3134 | * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop. |
| 3135 | 3135 | */ |
| 3136 | - $animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] ); |
|
| 3136 | + $animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
|
|
| 3137 | 3137 | /** |
| 3138 | 3138 | * Filter widget's "directionNav" value. |
| 3139 | 3139 | * |
@@ -3141,7 +3141,7 @@ discard block |
||
| 3141 | 3141 | * |
| 3142 | 3142 | * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0. |
| 3143 | 3143 | */ |
| 3144 | - $directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] ); |
|
| 3144 | + $directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
|
|
| 3145 | 3145 | /** |
| 3146 | 3146 | * Filter widget's "slideshowSpeed" value. |
| 3147 | 3147 | * |
@@ -3149,7 +3149,7 @@ discard block |
||
| 3149 | 3149 | * |
| 3150 | 3150 | * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds. |
| 3151 | 3151 | */ |
| 3152 | - $slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] ); |
|
| 3152 | + $slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
|
|
| 3153 | 3153 | /** |
| 3154 | 3154 | * Filter widget's "animationSpeed" value. |
| 3155 | 3155 | * |
@@ -3157,7 +3157,7 @@ discard block |
||
| 3157 | 3157 | * |
| 3158 | 3158 | * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds. |
| 3159 | 3159 | */ |
| 3160 | - $animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] ); |
|
| 3160 | + $animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
|
|
| 3161 | 3161 | /** |
| 3162 | 3162 | * Filter widget's "animation" value. |
| 3163 | 3163 | * |
@@ -3165,7 +3165,7 @@ discard block |
||
| 3165 | 3165 | * |
| 3166 | 3166 | * @param string $instance ['animation'] Controls the animation type, "fade" or "slide". |
| 3167 | 3167 | */ |
| 3168 | - $animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] ); |
|
| 3168 | + $animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
|
|
| 3169 | 3169 | /** |
| 3170 | 3170 | * Filter widget's "list_sort" type. |
| 3171 | 3171 | * |
@@ -3173,10 +3173,10 @@ discard block |
||
| 3173 | 3173 | * |
| 3174 | 3174 | * @param string $instance ['list_sort'] Listing sort by type. |
| 3175 | 3175 | */ |
| 3176 | - $list_sort = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] ); |
|
| 3177 | - $show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null; |
|
| 3176 | + $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
|
|
| 3177 | + $show_featured_only = !empty($instance['show_featured_only']) ? 1 : null; |
|
| 3178 | 3178 | |
| 3179 | - wp_enqueue_script( 'geodirectory-jquery-flexslider-js' ); |
|
| 3179 | + wp_enqueue_script('geodirectory-jquery-flexslider-js');
|
|
| 3180 | 3180 | ?> |
| 3181 | 3181 | <script type="text/javascript"> |
| 3182 | 3182 | jQuery(window).load(function () {
|
@@ -3195,7 +3195,7 @@ discard block |
||
| 3195 | 3195 | itemWidth: 75, |
| 3196 | 3196 | itemMargin: 5, |
| 3197 | 3197 | asNavFor: '#geodir_widget_slider', |
| 3198 | - rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>, |
|
| 3198 | + rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>, |
|
| 3199 | 3199 | start: function (slider) {
|
| 3200 | 3200 | // chrome 53 introduced a bug, so we need to repaint the slider when shown. |
| 3201 | 3201 | jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl');
|
@@ -3203,19 +3203,19 @@ discard block |
||
| 3203 | 3203 | }); |
| 3204 | 3204 | |
| 3205 | 3205 | jQuery('#geodir_widget_slider').flexslider({
|
| 3206 | - animation: "<?php echo $animation;?>", |
|
| 3206 | + animation: "<?php echo $animation; ?>", |
|
| 3207 | 3207 | selector: ".geodir-slides > li", |
| 3208 | 3208 | namespace: "geodir-", |
| 3209 | 3209 | controlNav: true, |
| 3210 | - animationLoop: <?php echo $animationLoop;?>, |
|
| 3211 | - slideshow: <?php echo $slideshow;?>, |
|
| 3212 | - slideshowSpeed: <?php echo $slideshowSpeed;?>, |
|
| 3213 | - animationSpeed: <?php echo $animationSpeed;?>, |
|
| 3214 | - directionNav: <?php echo $directionNav;?>, |
|
| 3215 | - maxItems: <?php echo $max_show;?>, |
|
| 3210 | + animationLoop: <?php echo $animationLoop; ?>, |
|
| 3211 | + slideshow: <?php echo $slideshow; ?>, |
|
| 3212 | + slideshowSpeed: <?php echo $slideshowSpeed; ?>, |
|
| 3213 | + animationSpeed: <?php echo $animationSpeed; ?>, |
|
| 3214 | + directionNav: <?php echo $directionNav; ?>, |
|
| 3215 | + maxItems: <?php echo $max_show; ?>, |
|
| 3216 | 3216 | move: 1, |
| 3217 | - <?php if ( $slide_width ) {
|
|
| 3218 | - echo "itemWidth: " . $slide_width . ","; |
|
| 3217 | + <?php if ($slide_width) {
|
|
| 3218 | + echo "itemWidth: ".$slide_width.","; |
|
| 3219 | 3219 | }?> |
| 3220 | 3220 | sync: "#geodir_widget_carousel", |
| 3221 | 3221 | start: function (slider) {
|
@@ -3226,7 +3226,7 @@ discard block |
||
| 3226 | 3226 | jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
|
| 3227 | 3227 | jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
|
| 3228 | 3228 | }, |
| 3229 | - rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?> |
|
| 3229 | + rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?> |
|
| 3230 | 3230 | }); |
| 3231 | 3231 | }); |
| 3232 | 3232 | </script> |
@@ -3239,62 +3239,62 @@ discard block |
||
| 3239 | 3239 | 'order_by' => $list_sort |
| 3240 | 3240 | ); |
| 3241 | 3241 | |
| 3242 | - if ( $show_featured_only ) {
|
|
| 3242 | + if ($show_featured_only) {
|
|
| 3243 | 3243 | $query_args['show_featured_only'] = 1; |
| 3244 | 3244 | } |
| 3245 | 3245 | |
| 3246 | - if ( $category != 0 || $category != '' ) {
|
|
| 3247 | - $category_taxonomy = geodir_get_taxonomies( $post_type ); |
|
| 3246 | + if ($category != 0 || $category != '') {
|
|
| 3247 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
| 3248 | 3248 | $tax_query = array( |
| 3249 | 3249 | 'taxonomy' => $category_taxonomy[0], |
| 3250 | 3250 | 'field' => 'id', |
| 3251 | 3251 | 'terms' => $category |
| 3252 | 3252 | ); |
| 3253 | 3253 | |
| 3254 | - $query_args['tax_query'] = array( $tax_query ); |
|
| 3254 | + $query_args['tax_query'] = array($tax_query); |
|
| 3255 | 3255 | } |
| 3256 | 3256 | |
| 3257 | 3257 | // we want listings with featured image only |
| 3258 | 3258 | $query_args['featured_image_only'] = 1; |
| 3259 | 3259 | |
| 3260 | - if ( $post_type == 'gd_event' ) {
|
|
| 3260 | + if ($post_type == 'gd_event') {
|
|
| 3261 | 3261 | $query_args['gedir_event_listing_filter'] = 'upcoming'; |
| 3262 | 3262 | }// show only upcoming events |
| 3263 | 3263 | |
| 3264 | - $widget_listings = geodir_get_widget_listings( $query_args ); |
|
| 3265 | - if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
|
|
| 3266 | - if ( $title ) {
|
|
| 3267 | - echo $before_title . $title . $after_title; |
|
| 3264 | + $widget_listings = geodir_get_widget_listings($query_args); |
|
| 3265 | + if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
|
|
| 3266 | + if ($title) {
|
|
| 3267 | + echo $before_title.$title.$after_title; |
|
| 3268 | 3268 | } |
| 3269 | 3269 | |
| 3270 | 3270 | global $post; |
| 3271 | 3271 | |
| 3272 | - $current_post = $post;// keep current post info |
|
| 3272 | + $current_post = $post; // keep current post info |
|
| 3273 | 3273 | |
| 3274 | 3274 | $widget_main_slides = ''; |
| 3275 | 3275 | $nav_slides = ''; |
| 3276 | 3276 | $widget_slides = 0; |
| 3277 | 3277 | |
| 3278 | - foreach ( $widget_listings as $widget_listing ) {
|
|
| 3278 | + foreach ($widget_listings as $widget_listing) {
|
|
| 3279 | 3279 | global $gd_widget_listing_type; |
| 3280 | 3280 | $post = $widget_listing; |
| 3281 | - $widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) ); |
|
| 3281 | + $widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
|
|
| 3282 | 3282 | |
| 3283 | - if ( ! empty( $widget_image ) ) {
|
|
| 3284 | - if ( $widget_image->height >= 200 ) {
|
|
| 3283 | + if (!empty($widget_image)) {
|
|
| 3284 | + if ($widget_image->height >= 200) {
|
|
| 3285 | 3285 | $widget_spacer_height = 0; |
| 3286 | 3286 | } else {
|
| 3287 | - $widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 ); |
|
| 3287 | + $widget_spacer_height = ((200 - $widget_image->height) / 2); |
|
| 3288 | 3288 | } |
| 3289 | 3289 | |
| 3290 | - $widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />'; |
|
| 3290 | + $widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />'; |
|
| 3291 | 3291 | |
| 3292 | 3292 | $title = ''; |
| 3293 | - if ( $show_title ) {
|
|
| 3294 | - $title_html = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>'; |
|
| 3293 | + if ($show_title) {
|
|
| 3294 | + $title_html = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>'; |
|
| 3295 | 3295 | $post_id = $post->ID; |
| 3296 | - $post_permalink = get_permalink( $post->ID ); |
|
| 3297 | - $post_title = get_the_title( $post->ID ); |
|
| 3296 | + $post_permalink = get_permalink($post->ID); |
|
| 3297 | + $post_title = get_the_title($post->ID); |
|
| 3298 | 3298 | /** |
| 3299 | 3299 | * Filter the listing slider widget title. |
| 3300 | 3300 | * |
@@ -3305,12 +3305,12 @@ discard block |
||
| 3305 | 3305 | * @param string $post_permalink The post permalink url. |
| 3306 | 3306 | * @param string $post_title The post title text. |
| 3307 | 3307 | */ |
| 3308 | - $title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title ); |
|
| 3308 | + $title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
|
|
| 3309 | 3309 | } |
| 3310 | 3310 | |
| 3311 | - $widget_main_slides .= $title . '<a href="' . get_permalink( $post->ID ) . '"><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></a></li>'; |
|
| 3312 | - $nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>'; |
|
| 3313 | - $widget_slides ++; |
|
| 3311 | + $widget_main_slides .= $title.'<a href="'.get_permalink($post->ID).'"><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></a></li>'; |
|
| 3312 | + $nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>'; |
|
| 3313 | + $widget_slides++; |
|
| 3314 | 3314 | } |
| 3315 | 3315 | } |
| 3316 | 3316 | ?> |
@@ -3319,7 +3319,7 @@ discard block |
||
| 3319 | 3319 | <div id="geodir_widget_slider" class="geodir_flexslider"> |
| 3320 | 3320 | <ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul> |
| 3321 | 3321 | </div> |
| 3322 | - <?php if ( $widget_slides > 1 ) { ?>
|
|
| 3322 | + <?php if ($widget_slides > 1) { ?>
|
|
| 3323 | 3323 | <div id="geodir_widget_carousel" class="geodir_flexslider"> |
| 3324 | 3324 | <ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul> |
| 3325 | 3325 | </div> |
@@ -3327,7 +3327,7 @@ discard block |
||
| 3327 | 3327 | </div> |
| 3328 | 3328 | <?php |
| 3329 | 3329 | $GLOBALS['post'] = $current_post; |
| 3330 | - setup_postdata( $current_post ); |
|
| 3330 | + setup_postdata($current_post); |
|
| 3331 | 3331 | } |
| 3332 | 3332 | echo $after_widget; |
| 3333 | 3333 | } |
@@ -3343,50 +3343,50 @@ discard block |
||
| 3343 | 3343 | * @param array|string $args Display arguments including before_title, after_title, before_widget, and after_widget. |
| 3344 | 3344 | * @param array|string $instance The settings for the particular instance of the widget. |
| 3345 | 3345 | */ |
| 3346 | -function geodir_loginwidget_output( $args = '', $instance = '' ) {
|
|
| 3346 | +function geodir_loginwidget_output($args = '', $instance = '') {
|
|
| 3347 | 3347 | //print_r($args); |
| 3348 | 3348 | //print_r($instance); |
| 3349 | 3349 | // prints the widget |
| 3350 | - extract( $args, EXTR_SKIP ); |
|
| 3350 | + extract($args, EXTR_SKIP); |
|
| 3351 | 3351 | |
| 3352 | 3352 | /** This filter is documented in geodirectory_widgets.php */ |
| 3353 | - $title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
| 3353 | + $title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
|
|
| 3354 | 3354 | |
| 3355 | 3355 | echo $before_widget; |
| 3356 | - echo $before_title . $title . $after_title; |
|
| 3356 | + echo $before_title.$title.$after_title; |
|
| 3357 | 3357 | |
| 3358 | 3358 | // global $gd_session; |
| 3359 | 3359 | // print_r($gd_session); |
| 3360 | 3360 | // print_r($_SESSION); |
| 3361 | 3361 | |
| 3362 | - if ( is_user_logged_in() ) {
|
|
| 3362 | + if (is_user_logged_in()) {
|
|
| 3363 | 3363 | global $current_user; |
| 3364 | 3364 | |
| 3365 | - $author_link = get_author_posts_url( $current_user->data->ID ); |
|
| 3366 | - $author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false ); |
|
| 3365 | + $author_link = get_author_posts_url($current_user->data->ID); |
|
| 3366 | + $author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
|
|
| 3367 | 3367 | |
| 3368 | 3368 | echo '<ul class="geodir-loginbox-list">'; |
| 3369 | 3369 | ob_start(); |
| 3370 | 3370 | ?> |
| 3371 | 3371 | <li><a class="signin" |
| 3372 | - href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li> |
|
| 3372 | + href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
|
|
| 3373 | 3373 | <?php |
| 3374 | - $post_types = geodir_get_posttypes( 'object' ); |
|
| 3375 | - $show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' ); |
|
| 3376 | - $geodir_allow_posttype_frontend = get_option( 'geodir_allow_posttype_frontend' ); |
|
| 3374 | + $post_types = geodir_get_posttypes('object');
|
|
| 3375 | + $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
|
|
| 3376 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 3377 | 3377 | |
| 3378 | - if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
|
|
| 3378 | + if (!empty($show_add_listing_post_types_main_nav)) {
|
|
| 3379 | 3379 | $addlisting_links = ''; |
| 3380 | - foreach ( $post_types as $key => $postobj ) {
|
|
| 3380 | + foreach ($post_types as $key => $postobj) {
|
|
| 3381 | 3381 | |
| 3382 | - if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
|
|
| 3382 | + if (in_array($key, $show_add_listing_post_types_main_nav)) {
|
|
| 3383 | 3383 | |
| 3384 | - if ( $add_link = geodir_get_addlisting_link( $key ) ) {
|
|
| 3384 | + if ($add_link = geodir_get_addlisting_link($key)) {
|
|
| 3385 | 3385 | |
| 3386 | 3386 | $name = $postobj->labels->name; |
| 3387 | 3387 | |
| 3388 | 3388 | $selected = ''; |
| 3389 | - if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
|
|
| 3389 | + if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
|
|
| 3390 | 3390 | $selected = 'selected="selected"'; |
| 3391 | 3391 | } |
| 3392 | 3392 | |
@@ -3399,23 +3399,23 @@ discard block |
||
| 3399 | 3399 | * @param string $key Add listing array key. |
| 3400 | 3400 | * @param int $current_user ->ID Current user ID. |
| 3401 | 3401 | */ |
| 3402 | - $add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID ); |
|
| 3403 | - $name = apply_filters( 'geodir_dashboard_label_add_listing', $name, $key, $current_user->ID ); |
|
| 3402 | + $add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
|
|
| 3403 | + $name = apply_filters('geodir_dashboard_label_add_listing', $name, $key, $current_user->ID);
|
|
| 3404 | 3404 | |
| 3405 | - $addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
| 3405 | + $addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>'; |
|
| 3406 | 3406 | |
| 3407 | 3407 | } |
| 3408 | 3408 | } |
| 3409 | 3409 | |
| 3410 | 3410 | } |
| 3411 | 3411 | |
| 3412 | - if ( $addlisting_links != '' ) { ?>
|
|
| 3412 | + if ($addlisting_links != '') { ?>
|
|
| 3413 | 3413 | |
| 3414 | 3414 | <li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value" |
| 3415 | 3415 | option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false" |
| 3416 | - data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>"> |
|
| 3416 | + data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
|
|
| 3417 | 3417 | <option value="" disabled="disabled" selected="selected" |
| 3418 | - style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option> |
|
| 3418 | + style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
|
|
| 3419 | 3419 | <?php echo $addlisting_links; ?> |
| 3420 | 3420 | </select></li> <?php |
| 3421 | 3421 | |
@@ -3423,24 +3423,24 @@ discard block |
||
| 3423 | 3423 | |
| 3424 | 3424 | } |
| 3425 | 3425 | // My Favourites in Dashboard |
| 3426 | - $show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' ); |
|
| 3426 | + $show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
|
|
| 3427 | 3427 | $user_favourite = geodir_user_favourite_listing_count(); |
| 3428 | 3428 | |
| 3429 | - if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
|
|
| 3429 | + if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
|
|
| 3430 | 3430 | $favourite_links = ''; |
| 3431 | 3431 | |
| 3432 | - foreach ( $post_types as $key => $postobj ) {
|
|
| 3433 | - if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
|
|
| 3432 | + foreach ($post_types as $key => $postobj) {
|
|
| 3433 | + if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
|
|
| 3434 | 3434 | $name = $postobj->labels->name; |
| 3435 | 3435 | $fav_author_link = apply_filters('gd_dash_fav_author_link', $author_link, $current_user->data->ID);
|
| 3436 | - $post_type_link = geodir_getlink( $fav_author_link, array( |
|
| 3436 | + $post_type_link = geodir_getlink($fav_author_link, array( |
|
| 3437 | 3437 | 'stype' => $key, |
| 3438 | 3438 | 'list' => 'favourite' |
| 3439 | - ), false ); |
|
| 3439 | + ), false); |
|
| 3440 | 3440 | |
| 3441 | 3441 | $selected = ''; |
| 3442 | 3442 | |
| 3443 | - if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
|
|
| 3443 | + if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
|
|
| 3444 | 3444 | $selected = 'selected="selected"'; |
| 3445 | 3445 | } |
| 3446 | 3446 | /** |
@@ -3452,20 +3452,20 @@ discard block |
||
| 3452 | 3452 | * @param string $key Favorite listing array key. |
| 3453 | 3453 | * @param int $current_user ->ID Current user ID. |
| 3454 | 3454 | */ |
| 3455 | - $post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID ); |
|
| 3455 | + $post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
|
|
| 3456 | 3456 | |
| 3457 | - $favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
| 3457 | + $favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>'; |
|
| 3458 | 3458 | } |
| 3459 | 3459 | } |
| 3460 | 3460 | |
| 3461 | - if ( $favourite_links != '' ) {
|
|
| 3461 | + if ($favourite_links != '') {
|
|
| 3462 | 3462 | ?> |
| 3463 | 3463 | <li> |
| 3464 | 3464 | <select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value" |
| 3465 | 3465 | option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false" |
| 3466 | - data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>"> |
|
| 3466 | + data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
|
|
| 3467 | 3467 | <option value="" disabled="disabled" selected="selected" |
| 3468 | - style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option> |
|
| 3468 | + style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
|
|
| 3469 | 3469 | <?php echo $favourite_links; ?> |
| 3470 | 3470 | </select> |
| 3471 | 3471 | </li> |
@@ -3474,20 +3474,20 @@ discard block |
||
| 3474 | 3474 | } |
| 3475 | 3475 | |
| 3476 | 3476 | |
| 3477 | - $show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' ); |
|
| 3477 | + $show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
|
|
| 3478 | 3478 | $user_listing = geodir_user_post_listing_count(); |
| 3479 | 3479 | |
| 3480 | - if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
|
|
| 3480 | + if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
|
|
| 3481 | 3481 | $listing_links = ''; |
| 3482 | 3482 | |
| 3483 | - foreach ( $post_types as $key => $postobj ) {
|
|
| 3484 | - if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
|
|
| 3483 | + foreach ($post_types as $key => $postobj) {
|
|
| 3484 | + if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
|
|
| 3485 | 3485 | $name = $postobj->labels->name; |
| 3486 | 3486 | $listing_author_link = apply_filters('gd_dash_listing_author_link', $author_link, $current_user->data->ID);
|
| 3487 | - $listing_link = geodir_getlink( $listing_author_link, array( 'stype' => $key ), false ); |
|
| 3487 | + $listing_link = geodir_getlink($listing_author_link, array('stype' => $key), false);
|
|
| 3488 | 3488 | |
| 3489 | 3489 | $selected = ''; |
| 3490 | - if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
|
|
| 3490 | + if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
|
|
| 3491 | 3491 | $selected = 'selected="selected"'; |
| 3492 | 3492 | } |
| 3493 | 3493 | |
@@ -3500,20 +3500,20 @@ discard block |
||
| 3500 | 3500 | * @param string $key My listing array key. |
| 3501 | 3501 | * @param int $current_user ->ID Current user ID. |
| 3502 | 3502 | */ |
| 3503 | - $listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID ); |
|
| 3503 | + $listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
|
|
| 3504 | 3504 | |
| 3505 | - $listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
| 3505 | + $listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>'; |
|
| 3506 | 3506 | } |
| 3507 | 3507 | } |
| 3508 | 3508 | |
| 3509 | - if ( $listing_links != '' ) {
|
|
| 3509 | + if ($listing_links != '') {
|
|
| 3510 | 3510 | ?> |
| 3511 | 3511 | <li> |
| 3512 | 3512 | <select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value" |
| 3513 | 3513 | option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false" |
| 3514 | - data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>"> |
|
| 3514 | + data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
|
|
| 3515 | 3515 | <option value="" disabled="disabled" selected="selected" |
| 3516 | - style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option> |
|
| 3516 | + style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
|
|
| 3517 | 3517 | <?php echo $listing_links; ?> |
| 3518 | 3518 | </select> |
| 3519 | 3519 | </li> |
@@ -3529,7 +3529,7 @@ discard block |
||
| 3529 | 3529 | * |
| 3530 | 3530 | * @param string $dashboard_link Dashboard links HTML. |
| 3531 | 3531 | */ |
| 3532 | - echo apply_filters( 'geodir_dashboard_links', $dashboard_link ); |
|
| 3532 | + echo apply_filters('geodir_dashboard_links', $dashboard_link);
|
|
| 3533 | 3533 | echo '</ul>'; |
| 3534 | 3534 | |
| 3535 | 3535 | /** |
@@ -3537,7 +3537,7 @@ discard block |
||
| 3537 | 3537 | * |
| 3538 | 3538 | * @since 1.6.6 |
| 3539 | 3539 | */ |
| 3540 | - do_action( 'geodir_after_loginwidget_form_logged_in' ); |
|
| 3540 | + do_action('geodir_after_loginwidget_form_logged_in');
|
|
| 3541 | 3541 | |
| 3542 | 3542 | |
| 3543 | 3543 | } else {
|
@@ -3552,18 +3552,18 @@ discard block |
||
| 3552 | 3552 | <form name="loginform" class="loginform1" |
| 3553 | 3553 | action="<?php echo geodir_login_url(); ?>" |
| 3554 | 3554 | method="post"> |
| 3555 | - <div class="geodir_form_row"><input placeholder="<?php echo apply_filters('gd_login_wid_login_placeholder', __( 'Email', 'geodirectory' )); ?>" name="<?php echo apply_filters('gd_login_wid_login_name', 'log'); ?>"
|
|
| 3555 | + <div class="geodir_form_row"><input placeholder="<?php echo apply_filters('gd_login_wid_login_placeholder', __('Email', 'geodirectory')); ?>" name="<?php echo apply_filters('gd_login_wid_login_name', 'log'); ?>"
|
|
| 3556 | 3556 | type="text" class="textfield user_login1"/> <span |
| 3557 | 3557 | class="user_loginInfo"></span></div> |
| 3558 | - <div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>" |
|
| 3558 | + <div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
|
|
| 3559 | 3559 | name="<?php echo apply_filters('gd_login_wid_login_pwd', 'pwd'); ?>" type="password"
|
| 3560 | 3560 | class="textfield user_pass1 input-text"/><span |
| 3561 | 3561 | class="user_passInfo"></span></div> |
| 3562 | 3562 | |
| 3563 | - <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/> |
|
| 3563 | + <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/> |
|
| 3564 | 3564 | <input type="hidden" name="testcookie" value="1"/> |
| 3565 | 3565 | |
| 3566 | - <?php do_action( 'login_form' ); ?> |
|
| 3566 | + <?php do_action('login_form'); ?>
|
|
| 3567 | 3567 | |
| 3568 | 3568 | <div class="geodir_form_row clearfix"><input type="submit" name="submit" |
| 3569 | 3569 | value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/> |
@@ -3575,11 +3575,11 @@ discard block |
||
| 3575 | 3575 | * |
| 3576 | 3576 | * @since 1.0.0 |
| 3577 | 3577 | */ |
| 3578 | - $is_enable_signup = get_option( 'users_can_register' ); |
|
| 3578 | + $is_enable_signup = get_option('users_can_register');
|
|
| 3579 | 3579 | |
| 3580 | - if ( $is_enable_signup ) {
|
|
| 3580 | + if ($is_enable_signup) {
|
|
| 3581 | 3581 | ?> |
| 3582 | - <a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>" |
|
| 3582 | + <a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
|
|
| 3583 | 3583 | class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a> |
| 3584 | 3584 | |
| 3585 | 3585 | <?php |
@@ -3590,7 +3590,7 @@ discard block |
||
| 3590 | 3590 | * @since 1.0.0 |
| 3591 | 3591 | */ |
| 3592 | 3592 | ?> |
| 3593 | - <a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>" |
|
| 3593 | + <a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
|
|
| 3594 | 3594 | class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div> |
| 3595 | 3595 | </form> |
| 3596 | 3596 | <?php |
@@ -3599,7 +3599,7 @@ discard block |
||
| 3599 | 3599 | * |
| 3600 | 3600 | * @since 1.6.6 |
| 3601 | 3601 | */ |
| 3602 | - do_action( 'geodir_after_loginwidget_form_logged_out' ); |
|
| 3602 | + do_action('geodir_after_loginwidget_form_logged_out');
|
|
| 3603 | 3603 | } |
| 3604 | 3604 | |
| 3605 | 3605 | echo $after_widget; |
@@ -3622,13 +3622,13 @@ discard block |
||
| 3622 | 3622 | * after_widget. |
| 3623 | 3623 | * @param array|string $instance The settings for the particular instance of the widget. |
| 3624 | 3624 | */ |
| 3625 | -function geodir_popular_postview_output( $args = '', $instance = '' ) {
|
|
| 3625 | +function geodir_popular_postview_output($args = '', $instance = '') {
|
|
| 3626 | 3626 | global $gd_session; |
| 3627 | 3627 | |
| 3628 | 3628 | // prints the widget |
| 3629 | - extract( $args, EXTR_SKIP ); |
|
| 3629 | + extract($args, EXTR_SKIP); |
|
| 3630 | 3630 | /** This filter is documented in geodirectory_widgets.php */ |
| 3631 | - $title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
| 3631 | + $title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
|
|
| 3632 | 3632 | /** |
| 3633 | 3633 | * Filter the widget post type. |
| 3634 | 3634 | * |
@@ -3636,7 +3636,7 @@ discard block |
||
| 3636 | 3636 | * |
| 3637 | 3637 | * @param string $instance ['post_type'] Post type of listing. |
| 3638 | 3638 | */ |
| 3639 | - $post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] ); |
|
| 3639 | + $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
|
|
| 3640 | 3640 | /** |
| 3641 | 3641 | * Filter the widget's term. |
| 3642 | 3642 | * |
@@ -3644,7 +3644,7 @@ discard block |
||
| 3644 | 3644 | * |
| 3645 | 3645 | * @param string $instance ['category'] Filter by term. Can be any valid term. |
| 3646 | 3646 | */ |
| 3647 | - $category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] ); |
|
| 3647 | + $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
|
|
| 3648 | 3648 | /** |
| 3649 | 3649 | * Filter the widget listings limit. |
| 3650 | 3650 | * |
@@ -3652,7 +3652,7 @@ discard block |
||
| 3652 | 3652 | * |
| 3653 | 3653 | * @param string $instance ['post_number'] Number of listings to display. |
| 3654 | 3654 | */ |
| 3655 | - $post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] ); |
|
| 3655 | + $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
|
|
| 3656 | 3656 | /** |
| 3657 | 3657 | * Filter widget's "layout" type. |
| 3658 | 3658 | * |
@@ -3660,7 +3660,7 @@ discard block |
||
| 3660 | 3660 | * |
| 3661 | 3661 | * @param string $instance ['layout'] Widget layout type. |
| 3662 | 3662 | */ |
| 3663 | - $layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] ); |
|
| 3663 | + $layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
|
|
| 3664 | 3664 | /** |
| 3665 | 3665 | * Filter widget's "add_location_filter" value. |
| 3666 | 3666 | * |
@@ -3668,7 +3668,7 @@ discard block |
||
| 3668 | 3668 | * |
| 3669 | 3669 | * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0. |
| 3670 | 3670 | */ |
| 3671 | - $add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] ); |
|
| 3671 | + $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
|
|
| 3672 | 3672 | /** |
| 3673 | 3673 | * Filter widget's listing width. |
| 3674 | 3674 | * |
@@ -3676,7 +3676,7 @@ discard block |
||
| 3676 | 3676 | * |
| 3677 | 3677 | * @param string $instance ['listing_width'] Listing width. |
| 3678 | 3678 | */ |
| 3679 | - $listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] ); |
|
| 3679 | + $listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
|
|
| 3680 | 3680 | /** |
| 3681 | 3681 | * Filter widget's "list_sort" type. |
| 3682 | 3682 | * |
@@ -3684,7 +3684,7 @@ discard block |
||
| 3684 | 3684 | * |
| 3685 | 3685 | * @param string $instance ['list_sort'] Listing sort by type. |
| 3686 | 3686 | */ |
| 3687 | - $list_sort = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] ); |
|
| 3687 | + $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
|
|
| 3688 | 3688 | /** |
| 3689 | 3689 | * Filter widget's "title_tag" type. |
| 3690 | 3690 | * |
@@ -3692,36 +3692,36 @@ discard block |
||
| 3692 | 3692 | * |
| 3693 | 3693 | * @param string $instance ['title_tag'] Listing title tag. |
| 3694 | 3694 | */ |
| 3695 | - $title_tag = empty( $instance['title_tag'] ) ? 'h3' : apply_filters( 'widget_title_tag', $instance['title_tag'] ); |
|
| 3696 | - $use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false; |
|
| 3695 | + $title_tag = empty($instance['title_tag']) ? 'h3' : apply_filters('widget_title_tag', $instance['title_tag']);
|
|
| 3696 | + $use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false; |
|
| 3697 | 3697 | |
| 3698 | 3698 | // set post type to current viewing post type |
| 3699 | - if ( $use_viewing_post_type ) {
|
|
| 3699 | + if ($use_viewing_post_type) {
|
|
| 3700 | 3700 | $current_post_type = geodir_get_current_posttype(); |
| 3701 | - if ( $current_post_type != '' && $current_post_type != $post_type ) {
|
|
| 3701 | + if ($current_post_type != '' && $current_post_type != $post_type) {
|
|
| 3702 | 3702 | $post_type = $current_post_type; |
| 3703 | 3703 | $category = array(); // old post type category will not work for current changed post type |
| 3704 | 3704 | } |
| 3705 | 3705 | } |
| 3706 | 3706 | // replace widget title dynamically |
| 3707 | - $posttype_plural_label = __( get_post_type_plural_label( $post_type ), 'geodirectory' ); |
|
| 3708 | - $posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' ); |
|
| 3707 | + $posttype_plural_label = __(get_post_type_plural_label($post_type), 'geodirectory'); |
|
| 3708 | + $posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory'); |
|
| 3709 | 3709 | |
| 3710 | - $title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title ); |
|
| 3711 | - $title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title ); |
|
| 3710 | + $title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
|
|
| 3711 | + $title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
|
|
| 3712 | 3712 | |
| 3713 | 3713 | $categories = $category; |
| 3714 | - if ( ! empty( $category ) && $category[0] != '0' ) {
|
|
| 3715 | - $category_taxonomy = geodir_get_taxonomies( $post_type ); |
|
| 3714 | + if (!empty($category) && $category[0] != '0') {
|
|
| 3715 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
| 3716 | 3716 | |
| 3717 | 3717 | ######### WPML ######### |
| 3718 | - if ( geodir_wpml_is_taxonomy_translated( $category_taxonomy[0] ) ) {
|
|
| 3719 | - $category = gd_lang_object_ids( $category, $category_taxonomy[0] ); |
|
| 3718 | + if (geodir_wpml_is_taxonomy_translated($category_taxonomy[0])) {
|
|
| 3719 | + $category = gd_lang_object_ids($category, $category_taxonomy[0]); |
|
| 3720 | 3720 | } |
| 3721 | 3721 | ######### WPML ######### |
| 3722 | 3722 | } |
| 3723 | 3723 | |
| 3724 | - if ( isset( $instance['character_count'] ) ) {
|
|
| 3724 | + if (isset($instance['character_count'])) {
|
|
| 3725 | 3725 | /** |
| 3726 | 3726 | * Filter the widget's excerpt character count. |
| 3727 | 3727 | * |
@@ -3729,38 +3729,38 @@ discard block |
||
| 3729 | 3729 | * |
| 3730 | 3730 | * @param int $instance ['character_count'] Excerpt character count. |
| 3731 | 3731 | */ |
| 3732 | - $character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] ); |
|
| 3732 | + $character_count = apply_filters('widget_list_character_count', $instance['character_count']);
|
|
| 3733 | 3733 | } else {
|
| 3734 | 3734 | $character_count = ''; |
| 3735 | 3735 | } |
| 3736 | 3736 | |
| 3737 | - if ( empty( $title ) || $title == 'All' ) {
|
|
| 3738 | - $post_type_name = __( get_post_type_plural_label( $post_type ), 'geodirectory' ); |
|
| 3739 | - $title = !empty( $title ) ? wp_sprintf( __( 'All %s', 'geodirectory' ), $post_type_name ) : $post_type_name; |
|
| 3737 | + if (empty($title) || $title == 'All') {
|
|
| 3738 | + $post_type_name = __(get_post_type_plural_label($post_type), 'geodirectory'); |
|
| 3739 | + $title = !empty($title) ? wp_sprintf(__('All %s', 'geodirectory'), $post_type_name) : $post_type_name;
|
|
| 3740 | 3740 | } |
| 3741 | 3741 | |
| 3742 | 3742 | $location_url = array(); |
| 3743 | - $city = get_query_var( 'gd_city' ); |
|
| 3744 | - if ( ! empty( $city ) ) {
|
|
| 3745 | - $country = get_query_var( 'gd_country' ); |
|
| 3746 | - $region = get_query_var( 'gd_region' ); |
|
| 3743 | + $city = get_query_var('gd_city');
|
|
| 3744 | + if (!empty($city)) {
|
|
| 3745 | + $country = get_query_var('gd_country');
|
|
| 3746 | + $region = get_query_var('gd_region');
|
|
| 3747 | 3747 | |
| 3748 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
| 3748 | + $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 3749 | 3749 | |
| 3750 | - if ( $geodir_show_location_url == 'all' ) {
|
|
| 3751 | - if ( $country != '' ) {
|
|
| 3750 | + if ($geodir_show_location_url == 'all') {
|
|
| 3751 | + if ($country != '') {
|
|
| 3752 | 3752 | $location_url[] = $country; |
| 3753 | 3753 | } |
| 3754 | 3754 | |
| 3755 | - if ( $region != '' ) {
|
|
| 3755 | + if ($region != '') {
|
|
| 3756 | 3756 | $location_url[] = $region; |
| 3757 | 3757 | } |
| 3758 | - } else if ( $geodir_show_location_url == 'country_city' ) {
|
|
| 3759 | - if ( $country != '' ) {
|
|
| 3758 | + } else if ($geodir_show_location_url == 'country_city') {
|
|
| 3759 | + if ($country != '') {
|
|
| 3760 | 3760 | $location_url[] = $country; |
| 3761 | 3761 | } |
| 3762 | - } else if ( $geodir_show_location_url == 'region_city' ) {
|
|
| 3763 | - if ( $region != '' ) {
|
|
| 3762 | + } else if ($geodir_show_location_url == 'region_city') {
|
|
| 3763 | + if ($region != '') {
|
|
| 3764 | 3764 | $location_url[] = $region; |
| 3765 | 3765 | } |
| 3766 | 3766 | } |
@@ -3768,54 +3768,54 @@ discard block |
||
| 3768 | 3768 | $location_url[] = $city; |
| 3769 | 3769 | } |
| 3770 | 3770 | |
| 3771 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 3772 | - $location_url = implode( '/', $location_url ); |
|
| 3771 | + $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
|
|
| 3772 | + $location_url = implode('/', $location_url);
|
|
| 3773 | 3773 | $skip_location = false; |
| 3774 | - if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
|
|
| 3774 | + if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
|
|
| 3775 | 3775 | $skip_location = true; |
| 3776 | - $gd_session->un_set( 'gd_multi_location' ); |
|
| 3776 | + $gd_session->un_set('gd_multi_location');
|
|
| 3777 | 3777 | } |
| 3778 | 3778 | |
| 3779 | - if ( $location_allowed && $add_location_filter && $gd_session->get( 'all_near_me' ) && geodir_is_page( 'location' ) ) {
|
|
| 3780 | - $viewall_url = add_query_arg( array( |
|
| 3779 | + if ($location_allowed && $add_location_filter && $gd_session->get('all_near_me') && geodir_is_page('location')) {
|
|
| 3780 | + $viewall_url = add_query_arg(array( |
|
| 3781 | 3781 | 'geodir_search' => 1, |
| 3782 | 3782 | 'stype' => $post_type, |
| 3783 | 3783 | 's' => '', |
| 3784 | - 'snear' => __( 'Near:', 'geodiradvancesearch' ) . ' ' . __( 'Me', 'geodiradvancesearch' ), |
|
| 3785 | - 'sgeo_lat' => $gd_session->get( 'user_lat' ), |
|
| 3786 | - 'sgeo_lon' => $gd_session->get( 'user_lon' ) |
|
| 3787 | - ), geodir_search_page_base_url() ); |
|
| 3784 | + 'snear' => __('Near:', 'geodiradvancesearch').' '.__('Me', 'geodiradvancesearch'),
|
|
| 3785 | + 'sgeo_lat' => $gd_session->get('user_lat'),
|
|
| 3786 | + 'sgeo_lon' => $gd_session->get('user_lon')
|
|
| 3787 | + ), geodir_search_page_base_url()); |
|
| 3788 | 3788 | |
| 3789 | - if ( ! empty( $category ) && !in_array( '0', $category ) ) {
|
|
| 3790 | - $viewall_url = add_query_arg( array( 's' . $post_type . 'category' => $category ), $viewall_url ); |
|
| 3789 | + if (!empty($category) && !in_array('0', $category)) {
|
|
| 3790 | + $viewall_url = add_query_arg(array('s'.$post_type.'category' => $category), $viewall_url);
|
|
| 3791 | 3791 | } |
| 3792 | 3792 | } else {
|
| 3793 | - if ( get_option( 'permalink_structure' ) ) {
|
|
| 3794 | - $viewall_url = get_post_type_archive_link( $post_type ); |
|
| 3793 | + if (get_option('permalink_structure')) {
|
|
| 3794 | + $viewall_url = get_post_type_archive_link($post_type); |
|
| 3795 | 3795 | } else {
|
| 3796 | - $viewall_url = get_post_type_archive_link( $post_type ); |
|
| 3796 | + $viewall_url = get_post_type_archive_link($post_type); |
|
| 3797 | 3797 | } |
| 3798 | 3798 | |
| 3799 | - if ( ! empty( $category ) && $category[0] != '0' ) {
|
|
| 3799 | + if (!empty($category) && $category[0] != '0') {
|
|
| 3800 | 3800 | global $geodir_add_location_url; |
| 3801 | 3801 | |
| 3802 | 3802 | $geodir_add_location_url = '0'; |
| 3803 | 3803 | |
| 3804 | - if ( $add_location_filter != '0' ) {
|
|
| 3804 | + if ($add_location_filter != '0') {
|
|
| 3805 | 3805 | $geodir_add_location_url = '1'; |
| 3806 | 3806 | } |
| 3807 | 3807 | |
| 3808 | - $viewall_url = get_term_link( (int) $category[0], $post_type . 'category' ); |
|
| 3808 | + $viewall_url = get_term_link((int) $category[0], $post_type.'category'); |
|
| 3809 | 3809 | |
| 3810 | 3810 | $geodir_add_location_url = null; |
| 3811 | 3811 | } |
| 3812 | 3812 | } |
| 3813 | 3813 | |
| 3814 | - if ( $skip_location ) {
|
|
| 3815 | - $gd_session->set( 'gd_multi_location', 1 ); |
|
| 3814 | + if ($skip_location) {
|
|
| 3815 | + $gd_session->set('gd_multi_location', 1);
|
|
| 3816 | 3816 | } |
| 3817 | 3817 | |
| 3818 | - if ( is_wp_error( $viewall_url ) ) {
|
|
| 3818 | + if (is_wp_error($viewall_url)) {
|
|
| 3819 | 3819 | $viewall_url = ''; |
| 3820 | 3820 | } |
| 3821 | 3821 | |
@@ -3827,43 +3827,43 @@ discard block |
||
| 3827 | 3827 | 'order_by' => $list_sort |
| 3828 | 3828 | ); |
| 3829 | 3829 | |
| 3830 | - if ( $character_count ) {
|
|
| 3830 | + if ($character_count) {
|
|
| 3831 | 3831 | $query_args['excerpt_length'] = $character_count; |
| 3832 | 3832 | } |
| 3833 | 3833 | |
| 3834 | - if ( ! empty( $instance['show_featured_only'] ) ) {
|
|
| 3834 | + if (!empty($instance['show_featured_only'])) {
|
|
| 3835 | 3835 | $query_args['show_featured_only'] = 1; |
| 3836 | 3836 | } |
| 3837 | 3837 | |
| 3838 | - if ( ! empty( $instance['show_special_only'] ) ) {
|
|
| 3838 | + if (!empty($instance['show_special_only'])) {
|
|
| 3839 | 3839 | $query_args['show_special_only'] = 1; |
| 3840 | 3840 | } |
| 3841 | 3841 | |
| 3842 | - if ( ! empty( $instance['with_pics_only'] ) ) {
|
|
| 3842 | + if (!empty($instance['with_pics_only'])) {
|
|
| 3843 | 3843 | $query_args['with_pics_only'] = 0; |
| 3844 | 3844 | $query_args['featured_image_only'] = 1; |
| 3845 | 3845 | } |
| 3846 | 3846 | |
| 3847 | - if ( ! empty( $instance['with_videos_only'] ) ) {
|
|
| 3847 | + if (!empty($instance['with_videos_only'])) {
|
|
| 3848 | 3848 | $query_args['with_videos_only'] = 1; |
| 3849 | 3849 | } |
| 3850 | - $hide_if_empty = ! empty( $instance['hide_if_empty'] ) ? true : false; |
|
| 3850 | + $hide_if_empty = !empty($instance['hide_if_empty']) ? true : false; |
|
| 3851 | 3851 | |
| 3852 | - if ( ! empty( $categories ) && $categories[0] != '0' && !empty( $category_taxonomy ) ) {
|
|
| 3852 | + if (!empty($categories) && $categories[0] != '0' && !empty($category_taxonomy)) {
|
|
| 3853 | 3853 | $tax_query = array( |
| 3854 | 3854 | 'taxonomy' => $category_taxonomy[0], |
| 3855 | 3855 | 'field' => 'id', |
| 3856 | 3856 | 'terms' => $category |
| 3857 | 3857 | ); |
| 3858 | 3858 | |
| 3859 | - $query_args['tax_query'] = array( $tax_query ); |
|
| 3859 | + $query_args['tax_query'] = array($tax_query); |
|
| 3860 | 3860 | } |
| 3861 | 3861 | |
| 3862 | 3862 | global $gridview_columns_widget, $geodir_is_widget_listing; |
| 3863 | 3863 | |
| 3864 | - $widget_listings = geodir_get_widget_listings( $query_args ); |
|
| 3864 | + $widget_listings = geodir_get_widget_listings($query_args); |
|
| 3865 | 3865 | |
| 3866 | - if ( $hide_if_empty && empty( $widget_listings ) ) {
|
|
| 3866 | + if ($hide_if_empty && empty($widget_listings)) {
|
|
| 3867 | 3867 | return; |
| 3868 | 3868 | } |
| 3869 | 3869 | |
@@ -3878,11 +3878,11 @@ discard block |
||
| 3878 | 3878 | * |
| 3879 | 3879 | * @since 1.0.0 |
| 3880 | 3880 | */ |
| 3881 | - do_action( 'geodir_before_view_all_link_in_widget' ); ?> |
|
| 3881 | + do_action('geodir_before_view_all_link_in_widget'); ?>
|
|
| 3882 | 3882 | <div class="geodir_list_heading clearfix"> |
| 3883 | - <?php echo $before_title . $title . $after_title; ?> |
|
| 3883 | + <?php echo $before_title.$title.$after_title; ?> |
|
| 3884 | 3884 | <a href="<?php echo $viewall_url; ?>" |
| 3885 | - class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a> |
|
| 3885 | + class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
|
|
| 3886 | 3886 | </div> |
| 3887 | 3887 | <?php |
| 3888 | 3888 | /** |
@@ -3890,10 +3890,10 @@ discard block |
||
| 3890 | 3890 | * |
| 3891 | 3891 | * @since 1.0.0 |
| 3892 | 3892 | */ |
| 3893 | - do_action( 'geodir_after_view_all_link_in_widget' ); ?> |
|
| 3893 | + do_action('geodir_after_view_all_link_in_widget'); ?>
|
|
| 3894 | 3894 | <?php |
| 3895 | - if ( strstr( $layout, 'gridview' ) ) {
|
|
| 3896 | - $listing_view_exp = explode( '_', $layout ); |
|
| 3895 | + if (strstr($layout, 'gridview')) {
|
|
| 3896 | + $listing_view_exp = explode('_', $layout);
|
|
| 3897 | 3897 | $gridview_columns_widget = $layout; |
| 3898 | 3898 | $layout = $listing_view_exp[0]; |
| 3899 | 3899 | } else {
|
@@ -3904,8 +3904,8 @@ discard block |
||
| 3904 | 3904 | * |
| 3905 | 3905 | * @since 1.0.0 |
| 3906 | 3906 | */ |
| 3907 | - $template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) ); |
|
| 3908 | - if ( ! isset( $character_count ) ) {
|
|
| 3907 | + $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
|
|
| 3908 | + if (!isset($character_count)) {
|
|
| 3909 | 3909 | /** |
| 3910 | 3910 | * Filter the widget's excerpt character count. |
| 3911 | 3911 | * |
@@ -3913,7 +3913,7 @@ discard block |
||
| 3913 | 3913 | * |
| 3914 | 3914 | * @param int $instance ['character_count'] Excerpt character count. |
| 3915 | 3915 | */ |
| 3916 | - $character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count ); |
|
| 3916 | + $character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
|
|
| 3917 | 3917 | } |
| 3918 | 3918 | |
| 3919 | 3919 | global $post, $map_jason, $map_canvas_arr; |
@@ -3928,13 +3928,13 @@ discard block |
||
| 3928 | 3928 | * |
| 3929 | 3929 | * @since 1.0.0 |
| 3930 | 3930 | */ |
| 3931 | - include( $template ); |
|
| 3931 | + include($template); |
|
| 3932 | 3932 | |
| 3933 | 3933 | $geodir_is_widget_listing = false; |
| 3934 | 3934 | |
| 3935 | 3935 | $GLOBALS['post'] = $current_post; |
| 3936 | - if ( ! empty( $current_post ) ) {
|
|
| 3937 | - setup_postdata( $current_post ); |
|
| 3936 | + if (!empty($current_post)) {
|
|
| 3937 | + setup_postdata($current_post); |
|
| 3938 | 3938 | } |
| 3939 | 3939 | $map_jason = $current_map_jason; |
| 3940 | 3940 | $map_canvas_arr = $current_map_canvas_arr; |
@@ -3963,12 +3963,12 @@ discard block |
||
| 3963 | 3963 | * |
| 3964 | 3964 | * @return int Reviews count. |
| 3965 | 3965 | */ |
| 3966 | -function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
|
|
| 3966 | +function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
|
|
| 3967 | 3967 | global $wpdb, $plugin_prefix; |
| 3968 | 3968 | |
| 3969 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
| 3969 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
| 3970 | 3970 | |
| 3971 | - $sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")";
|
|
| 3971 | + $sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")";
|
|
| 3972 | 3972 | |
| 3973 | 3973 | /** |
| 3974 | 3974 | * Filter count review sql query. |
@@ -3980,9 +3980,9 @@ discard block |
||
| 3980 | 3980 | * @param int $taxonomy The taxonomy Id. |
| 3981 | 3981 | * @param string $post_type The post type. |
| 3982 | 3982 | */ |
| 3983 | - $sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type ); |
|
| 3983 | + $sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
|
|
| 3984 | 3984 | |
| 3985 | - $count = $wpdb->get_var( $sql ); |
|
| 3985 | + $count = $wpdb->get_var($sql); |
|
| 3986 | 3986 | |
| 3987 | 3987 | return $count; |
| 3988 | 3988 | } |
@@ -4000,7 +4000,7 @@ discard block |
||
| 4000 | 4000 | * |
| 4001 | 4001 | * @return array Term array data. |
| 4002 | 4002 | */ |
| 4003 | -function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
|
|
| 4003 | +function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
|
|
| 4004 | 4004 | /** |
| 4005 | 4005 | * Filter review count option data. |
| 4006 | 4006 | * |
@@ -4010,78 +4010,78 @@ discard block |
||
| 4010 | 4010 | * @param bool $force_update Force update option value?. Default.false. |
| 4011 | 4011 | * @param int $post_ID The post id to update if any. |
| 4012 | 4012 | */ |
| 4013 | - $option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID ); |
|
| 4014 | - if ( ! empty( $option_data ) ) {
|
|
| 4013 | + $option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
|
|
| 4014 | + if (!empty($option_data)) {
|
|
| 4015 | 4015 | return $option_data; |
| 4016 | 4016 | } |
| 4017 | 4017 | |
| 4018 | - $option_data = get_option( 'geodir_global_review_count' ); |
|
| 4018 | + $option_data = get_option('geodir_global_review_count');
|
|
| 4019 | 4019 | |
| 4020 | - if ( ! $option_data || $force_update ) {
|
|
| 4021 | - if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
|
|
| 4020 | + if (!$option_data || $force_update) {
|
|
| 4021 | + if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
|
|
| 4022 | 4022 | global $gd_session; |
| 4023 | 4023 | $term_array = (array) $option_data; |
| 4024 | - $post_type = get_post_type( $post_ID ); |
|
| 4025 | - $taxonomy = $post_type . 'category'; |
|
| 4026 | - $terms = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) ); |
|
| 4027 | - |
|
| 4028 | - if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
|
|
| 4029 | - foreach ( $terms as $term_id ) {
|
|
| 4030 | - $count = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ); |
|
| 4031 | - $children = get_term_children( $term_id, $taxonomy ); |
|
| 4032 | - $term_array[ $term_id ] = $count; |
|
| 4024 | + $post_type = get_post_type($post_ID); |
|
| 4025 | + $taxonomy = $post_type.'category'; |
|
| 4026 | + $terms = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
|
|
| 4027 | + |
|
| 4028 | + if (!empty($terms) && !is_wp_error($terms)) {
|
|
| 4029 | + foreach ($terms as $term_id) {
|
|
| 4030 | + $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type); |
|
| 4031 | + $children = get_term_children($term_id, $taxonomy); |
|
| 4032 | + $term_array[$term_id] = $count; |
|
| 4033 | 4033 | } |
| 4034 | 4034 | } |
| 4035 | 4035 | |
| 4036 | - $session_listing = $gd_session->get( 'listing' ); |
|
| 4036 | + $session_listing = $gd_session->get('listing');
|
|
| 4037 | 4037 | |
| 4038 | 4038 | $terms = array(); |
| 4039 | - if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
|
|
| 4040 | - $terms = (array) $_POST['post_category'][ $taxonomy ]; |
|
| 4041 | - } else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
|
|
| 4042 | - $terms = (array) $session_listing['post_category'][ $taxonomy ]; |
|
| 4039 | + if (isset($_POST['post_category'][$taxonomy])) {
|
|
| 4040 | + $terms = (array) $_POST['post_category'][$taxonomy]; |
|
| 4041 | + } else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
|
|
| 4042 | + $terms = (array) $session_listing['post_category'][$taxonomy]; |
|
| 4043 | 4043 | } |
| 4044 | 4044 | |
| 4045 | - if ( ! empty( $terms ) ) {
|
|
| 4046 | - foreach ( $terms as $term_id ) {
|
|
| 4047 | - if ( $term_id > 0 ) {
|
|
| 4048 | - $count = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ); |
|
| 4049 | - $children = get_term_children( $term_id, $taxonomy ); |
|
| 4050 | - $term_array[ $term_id ] = $count; |
|
| 4045 | + if (!empty($terms)) {
|
|
| 4046 | + foreach ($terms as $term_id) {
|
|
| 4047 | + if ($term_id > 0) {
|
|
| 4048 | + $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type); |
|
| 4049 | + $children = get_term_children($term_id, $taxonomy); |
|
| 4050 | + $term_array[$term_id] = $count; |
|
| 4051 | 4051 | } |
| 4052 | 4052 | } |
| 4053 | 4053 | } |
| 4054 | 4054 | } else { // Update reviews count for all post categories.
|
| 4055 | 4055 | $term_array = array(); |
| 4056 | 4056 | $post_types = geodir_get_posttypes(); |
| 4057 | - foreach ( $post_types as $post_type ) {
|
|
| 4057 | + foreach ($post_types as $post_type) {
|
|
| 4058 | 4058 | |
| 4059 | - $taxonomy = geodir_get_taxonomies( $post_type ); |
|
| 4059 | + $taxonomy = geodir_get_taxonomies($post_type); |
|
| 4060 | 4060 | $taxonomy = $taxonomy[0]; |
| 4061 | 4061 | |
| 4062 | 4062 | $args = array( |
| 4063 | 4063 | 'hide_empty' => false |
| 4064 | 4064 | ); |
| 4065 | 4065 | |
| 4066 | - $terms = get_terms( $taxonomy, $args ); |
|
| 4066 | + $terms = get_terms($taxonomy, $args); |
|
| 4067 | 4067 | |
| 4068 | - foreach ( $terms as $term ) {
|
|
| 4069 | - $count = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type ); |
|
| 4070 | - $children = get_term_children( $term->term_id, $taxonomy ); |
|
| 4068 | + foreach ($terms as $term) {
|
|
| 4069 | + $count = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type); |
|
| 4070 | + $children = get_term_children($term->term_id, $taxonomy); |
|
| 4071 | 4071 | /*if ( is_array( $children ) ) {
|
| 4072 | 4072 | foreach ( $children as $child_id ) {
|
| 4073 | 4073 | $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type); |
| 4074 | 4074 | $count = $count + $child_count; |
| 4075 | 4075 | } |
| 4076 | 4076 | }*/ |
| 4077 | - $term_array[ $term->term_id ] = $count; |
|
| 4077 | + $term_array[$term->term_id] = $count; |
|
| 4078 | 4078 | } |
| 4079 | 4079 | } |
| 4080 | 4080 | } |
| 4081 | 4081 | |
| 4082 | - update_option( 'geodir_global_review_count', $term_array ); |
|
| 4082 | + update_option('geodir_global_review_count', $term_array);
|
|
| 4083 | 4083 | //clear cache |
| 4084 | - wp_cache_delete( 'geodir_global_review_count' ); |
|
| 4084 | + wp_cache_delete('geodir_global_review_count');
|
|
| 4085 | 4085 | |
| 4086 | 4086 | return $term_array; |
| 4087 | 4087 | } else {
|
@@ -4097,39 +4097,39 @@ discard block |
||
| 4097 | 4097 | * @package GeoDirectory |
| 4098 | 4098 | * @return bool |
| 4099 | 4099 | */ |
| 4100 | -function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
|
|
| 4101 | - if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
|
|
| 4100 | +function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
|
|
| 4101 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
|
|
| 4102 | 4102 | return; // do not run if importing listings |
| 4103 | 4103 | } |
| 4104 | 4104 | |
| 4105 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
|
|
| 4105 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
|
|
| 4106 | 4106 | return; |
| 4107 | 4107 | } |
| 4108 | 4108 | |
| 4109 | 4109 | $post_ID = 0; |
| 4110 | - if ( ! empty( $post ) ) {
|
|
| 4111 | - if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
|
|
| 4110 | + if (!empty($post)) {
|
|
| 4111 | + if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
|
|
| 4112 | 4112 | return; |
| 4113 | 4113 | } |
| 4114 | 4114 | |
| 4115 | - if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
|
|
| 4115 | + if ($new_status == 'auto-draft' && $old_status == 'new') {
|
|
| 4116 | 4116 | return; |
| 4117 | 4117 | } |
| 4118 | 4118 | |
| 4119 | - if ( ! empty( $post->ID ) ) {
|
|
| 4119 | + if (!empty($post->ID)) {
|
|
| 4120 | 4120 | $post_ID = $post->ID; |
| 4121 | 4121 | } |
| 4122 | 4122 | } |
| 4123 | 4123 | |
| 4124 | - if ( $new_status != $old_status ) {
|
|
| 4125 | - geodir_count_reviews_by_terms( true, $post_ID ); |
|
| 4124 | + if ($new_status != $old_status) {
|
|
| 4125 | + geodir_count_reviews_by_terms(true, $post_ID); |
|
| 4126 | 4126 | } |
| 4127 | 4127 | |
| 4128 | 4128 | return true; |
| 4129 | 4129 | } |
| 4130 | 4130 | |
| 4131 | -function geodir_term_review_count_force_update_single_post( $post_id ) {
|
|
| 4132 | - geodir_count_reviews_by_terms( true, $post_id ); |
|
| 4131 | +function geodir_term_review_count_force_update_single_post($post_id) {
|
|
| 4132 | + geodir_count_reviews_by_terms(true, $post_id); |
|
| 4133 | 4133 | } |
| 4134 | 4134 | |
| 4135 | 4135 | /*-----------------------------------------------------------------------------------*/ |
@@ -4146,11 +4146,11 @@ discard block |
||
| 4146 | 4146 | * |
| 4147 | 4147 | * @return int Post count. |
| 4148 | 4148 | */ |
| 4149 | -function geodir_count_posts_by_term( $data, $term ) {
|
|
| 4149 | +function geodir_count_posts_by_term($data, $term) {
|
|
| 4150 | 4150 | |
| 4151 | - if ( $data ) {
|
|
| 4152 | - if ( isset( $data[ $term->term_id ] ) ) {
|
|
| 4153 | - return $data[ $term->term_id ]; |
|
| 4151 | + if ($data) {
|
|
| 4152 | + if (isset($data[$term->term_id])) {
|
|
| 4153 | + return $data[$term->term_id]; |
|
| 4154 | 4154 | } else {
|
| 4155 | 4155 | return 0; |
| 4156 | 4156 | } |
@@ -4167,8 +4167,8 @@ discard block |
||
| 4167 | 4167 | * param array $terms An array of term objects. |
| 4168 | 4168 | * @return array Sorted terms array. |
| 4169 | 4169 | */ |
| 4170 | -function geodir_sort_terms_by_count( $terms ) {
|
|
| 4171 | - usort( $terms, "geodir_sort_by_count_obj" ); |
|
| 4170 | +function geodir_sort_terms_by_count($terms) {
|
|
| 4171 | + usort($terms, "geodir_sort_by_count_obj"); |
|
| 4172 | 4172 | |
| 4173 | 4173 | return $terms; |
| 4174 | 4174 | } |
@@ -4183,8 +4183,8 @@ discard block |
||
| 4183 | 4183 | * |
| 4184 | 4184 | * @return array Sorted terms array. |
| 4185 | 4185 | */ |
| 4186 | -function geodir_sort_terms_by_review_count( $terms ) {
|
|
| 4187 | - usort( $terms, "geodir_sort_by_review_count_obj" ); |
|
| 4186 | +function geodir_sort_terms_by_review_count($terms) {
|
|
| 4187 | + usort($terms, "geodir_sort_by_review_count_obj"); |
|
| 4188 | 4188 | |
| 4189 | 4189 | return $terms; |
| 4190 | 4190 | } |
@@ -4200,12 +4200,12 @@ discard block |
||
| 4200 | 4200 | * |
| 4201 | 4201 | * @return array Sorted terms array. |
| 4202 | 4202 | */ |
| 4203 | -function geodir_sort_terms( $terms, $sort = 'count' ) {
|
|
| 4204 | - if ( $sort == 'count' ) {
|
|
| 4205 | - return geodir_sort_terms_by_count( $terms ); |
|
| 4203 | +function geodir_sort_terms($terms, $sort = 'count') {
|
|
| 4204 | + if ($sort == 'count') {
|
|
| 4205 | + return geodir_sort_terms_by_count($terms); |
|
| 4206 | 4206 | } |
| 4207 | - if ( $sort == 'review_count' ) {
|
|
| 4208 | - return geodir_sort_terms_by_review_count( $terms ); |
|
| 4207 | + if ($sort == 'review_count') {
|
|
| 4208 | + return geodir_sort_terms_by_review_count($terms); |
|
| 4209 | 4209 | } |
| 4210 | 4210 | return $terms; |
| 4211 | 4211 | } |
@@ -4224,7 +4224,7 @@ discard block |
||
| 4224 | 4224 | * |
| 4225 | 4225 | * @return bool |
| 4226 | 4226 | */ |
| 4227 | -function geodir_sort_by_count( $a, $b ) {
|
|
| 4227 | +function geodir_sort_by_count($a, $b) {
|
|
| 4228 | 4228 | return $a['count'] < $b['count']; |
| 4229 | 4229 | } |
| 4230 | 4230 | |
@@ -4239,7 +4239,7 @@ discard block |
||
| 4239 | 4239 | * |
| 4240 | 4240 | * @return bool |
| 4241 | 4241 | */ |
| 4242 | -function geodir_sort_by_count_obj( $a, $b ) {
|
|
| 4242 | +function geodir_sort_by_count_obj($a, $b) {
|
|
| 4243 | 4243 | return $a->count < $b->count; |
| 4244 | 4244 | } |
| 4245 | 4245 | |
@@ -4254,7 +4254,7 @@ discard block |
||
| 4254 | 4254 | * |
| 4255 | 4255 | * @return bool |
| 4256 | 4256 | */ |
| 4257 | -function geodir_sort_by_review_count_obj( $a, $b ) {
|
|
| 4257 | +function geodir_sort_by_review_count_obj($a, $b) {
|
|
| 4258 | 4258 | return $a->review_count < $b->review_count; |
| 4259 | 4259 | } |
| 4260 | 4260 | |
@@ -4271,35 +4271,35 @@ discard block |
||
| 4271 | 4271 | * @since 1.4.2 |
| 4272 | 4272 | * @package GeoDirectory |
| 4273 | 4273 | */ |
| 4274 | - $locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' ); |
|
| 4274 | + $locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
|
|
| 4275 | 4275 | |
| 4276 | - load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' ); |
|
| 4277 | - load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' ); |
|
| 4276 | + load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
|
|
| 4277 | + load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
|
|
| 4278 | 4278 | |
| 4279 | 4279 | /** |
| 4280 | 4280 | * Define language constants. |
| 4281 | 4281 | * |
| 4282 | 4282 | * @since 1.0.0 |
| 4283 | 4283 | */ |
| 4284 | - require_once( geodir_plugin_path() . '/language.php' ); |
|
| 4284 | + require_once(geodir_plugin_path().'/language.php'); |
|
| 4285 | 4285 | |
| 4286 | - $language_file = geodir_plugin_path() . '/db-language.php'; |
|
| 4286 | + $language_file = geodir_plugin_path().'/db-language.php'; |
|
| 4287 | 4287 | |
| 4288 | 4288 | // Load language string file if not created yet |
| 4289 | - if ( ! file_exists( $language_file ) ) {
|
|
| 4289 | + if (!file_exists($language_file)) {
|
|
| 4290 | 4290 | geodirectory_load_db_language(); |
| 4291 | 4291 | } |
| 4292 | 4292 | |
| 4293 | - if ( file_exists( $language_file ) ) {
|
|
| 4293 | + if (file_exists($language_file)) {
|
|
| 4294 | 4294 | /** |
| 4295 | 4295 | * Language strings from database. |
| 4296 | 4296 | * |
| 4297 | 4297 | * @since 1.4.2 |
| 4298 | 4298 | */ |
| 4299 | 4299 | try {
|
| 4300 | - require_once( $language_file ); |
|
| 4301 | - } catch ( Exception $e ) {
|
|
| 4302 | - error_log( 'Language Error: ' . $e->getMessage() ); |
|
| 4300 | + require_once($language_file); |
|
| 4301 | + } catch (Exception $e) {
|
|
| 4302 | + error_log('Language Error: '.$e->getMessage());
|
|
| 4303 | 4303 | } |
| 4304 | 4304 | } |
| 4305 | 4305 | } |
@@ -4316,19 +4316,19 @@ discard block |
||
| 4316 | 4316 | */ |
| 4317 | 4317 | function geodirectory_load_db_language() {
|
| 4318 | 4318 | global $wp_filesystem; |
| 4319 | - if ( empty( $wp_filesystem ) ) {
|
|
| 4320 | - require_once( ABSPATH . '/wp-admin/includes/file.php' ); |
|
| 4319 | + if (empty($wp_filesystem)) {
|
|
| 4320 | + require_once(ABSPATH.'/wp-admin/includes/file.php'); |
|
| 4321 | 4321 | WP_Filesystem(); |
| 4322 | 4322 | global $wp_filesystem; |
| 4323 | 4323 | } |
| 4324 | 4324 | |
| 4325 | - $language_file = geodir_plugin_path() . '/db-language.php'; |
|
| 4325 | + $language_file = geodir_plugin_path().'/db-language.php'; |
|
| 4326 | 4326 | |
| 4327 | - if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
|
|
| 4327 | + if (is_file($language_file) && !is_writable($language_file)) {
|
|
| 4328 | 4328 | return false; |
| 4329 | 4329 | } // Not possible to create. |
| 4330 | 4330 | |
| 4331 | - if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
|
|
| 4331 | + if (!is_file($language_file) && !is_writable(dirname($language_file))) {
|
|
| 4332 | 4332 | return false; |
| 4333 | 4333 | } // Not possible to create. |
| 4334 | 4334 | |
@@ -4342,9 +4342,9 @@ discard block |
||
| 4342 | 4342 | * |
| 4343 | 4343 | * @param array $contents_strings Array of strings. |
| 4344 | 4344 | */ |
| 4345 | - $contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings ); |
|
| 4345 | + $contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
|
|
| 4346 | 4346 | |
| 4347 | - $contents_strings = array_unique( $contents_strings ); |
|
| 4347 | + $contents_strings = array_unique($contents_strings); |
|
| 4348 | 4348 | |
| 4349 | 4349 | $contents_head = array(); |
| 4350 | 4350 | $contents_head[] = "<?php"; |
@@ -4361,21 +4361,21 @@ discard block |
||
| 4361 | 4361 | $contents_foot[] = ""; |
| 4362 | 4362 | $contents_foot[] = ""; |
| 4363 | 4363 | |
| 4364 | - $contents = implode( PHP_EOL, $contents_head ); |
|
| 4364 | + $contents = implode(PHP_EOL, $contents_head); |
|
| 4365 | 4365 | |
| 4366 | - if ( ! empty( $contents_strings ) ) {
|
|
| 4367 | - foreach ( $contents_strings as $string ) {
|
|
| 4368 | - if ( is_scalar( $string ) && $string != '' ) {
|
|
| 4369 | - $string = str_replace( "'", "\'", $string ); |
|
| 4370 | - geodir_wpml_register_string( $string ); |
|
| 4371 | - $contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
|
|
| 4366 | + if (!empty($contents_strings)) {
|
|
| 4367 | + foreach ($contents_strings as $string) {
|
|
| 4368 | + if (is_scalar($string) && $string != '') {
|
|
| 4369 | + $string = str_replace("'", "\'", $string);
|
|
| 4370 | + geodir_wpml_register_string($string); |
|
| 4371 | + $contents .= PHP_EOL."__('".$string."', 'geodirectory');";
|
|
| 4372 | 4372 | } |
| 4373 | 4373 | } |
| 4374 | 4374 | } |
| 4375 | 4375 | |
| 4376 | - $contents .= implode( PHP_EOL, $contents_foot ); |
|
| 4376 | + $contents .= implode(PHP_EOL, $contents_foot); |
|
| 4377 | 4377 | |
| 4378 | - if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
|
|
| 4378 | + if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
|
|
| 4379 | 4379 | return false; |
| 4380 | 4380 | } // Failure; could not write file. |
| 4381 | 4381 | |
@@ -4396,49 +4396,49 @@ discard block |
||
| 4396 | 4396 | * |
| 4397 | 4397 | * @return array Translation texts. |
| 4398 | 4398 | */ |
| 4399 | -function geodir_load_custom_field_translation( $translation_texts = array() ) {
|
|
| 4399 | +function geodir_load_custom_field_translation($translation_texts = array()) {
|
|
| 4400 | 4400 | global $wpdb; |
| 4401 | 4401 | |
| 4402 | 4402 | // Custom fields table |
| 4403 | - $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE; |
|
| 4404 | - $rows = $wpdb->get_results( $sql ); |
|
| 4403 | + $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE; |
|
| 4404 | + $rows = $wpdb->get_results($sql); |
|
| 4405 | 4405 | |
| 4406 | - if ( ! empty( $rows ) ) {
|
|
| 4407 | - foreach ( $rows as $row ) {
|
|
| 4408 | - if ( ! empty( $row->admin_title ) ) {
|
|
| 4409 | - $translation_texts[] = stripslashes_deep( $row->admin_title ); |
|
| 4406 | + if (!empty($rows)) {
|
|
| 4407 | + foreach ($rows as $row) {
|
|
| 4408 | + if (!empty($row->admin_title)) {
|
|
| 4409 | + $translation_texts[] = stripslashes_deep($row->admin_title); |
|
| 4410 | 4410 | } |
| 4411 | 4411 | |
| 4412 | - if ( ! empty( $row->admin_desc ) ) {
|
|
| 4413 | - $translation_texts[] = stripslashes_deep( $row->admin_desc ); |
|
| 4412 | + if (!empty($row->admin_desc)) {
|
|
| 4413 | + $translation_texts[] = stripslashes_deep($row->admin_desc); |
|
| 4414 | 4414 | } |
| 4415 | 4415 | |
| 4416 | - if ( ! empty( $row->site_title ) ) {
|
|
| 4417 | - $translation_texts[] = stripslashes_deep( $row->site_title ); |
|
| 4416 | + if (!empty($row->site_title)) {
|
|
| 4417 | + $translation_texts[] = stripslashes_deep($row->site_title); |
|
| 4418 | 4418 | } |
| 4419 | 4419 | |
| 4420 | - if ( ! empty( $row->clabels ) ) {
|
|
| 4421 | - $translation_texts[] = stripslashes_deep( $row->clabels ); |
|
| 4420 | + if (!empty($row->clabels)) {
|
|
| 4421 | + $translation_texts[] = stripslashes_deep($row->clabels); |
|
| 4422 | 4422 | } |
| 4423 | 4423 | |
| 4424 | - if ( ! empty( $row->required_msg ) ) {
|
|
| 4425 | - $translation_texts[] = stripslashes_deep( $row->required_msg ); |
|
| 4424 | + if (!empty($row->required_msg)) {
|
|
| 4425 | + $translation_texts[] = stripslashes_deep($row->required_msg); |
|
| 4426 | 4426 | } |
| 4427 | 4427 | |
| 4428 | - if ( ! empty( $row->validation_msg ) ) {
|
|
| 4429 | - $translation_texts[] = stripslashes_deep( $row->validation_msg ); |
|
| 4428 | + if (!empty($row->validation_msg)) {
|
|
| 4429 | + $translation_texts[] = stripslashes_deep($row->validation_msg); |
|
| 4430 | 4430 | } |
| 4431 | 4431 | |
| 4432 | - if ( ! empty( $row->default_value ) ) {
|
|
| 4433 | - $translation_texts[] = stripslashes_deep( $row->default_value ); |
|
| 4432 | + if (!empty($row->default_value)) {
|
|
| 4433 | + $translation_texts[] = stripslashes_deep($row->default_value); |
|
| 4434 | 4434 | } |
| 4435 | 4435 | |
| 4436 | - if ( ! empty( $row->option_values ) ) {
|
|
| 4437 | - $option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) ); |
|
| 4436 | + if (!empty($row->option_values)) {
|
|
| 4437 | + $option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values)); |
|
| 4438 | 4438 | |
| 4439 | - if ( ! empty( $option_values ) ) {
|
|
| 4440 | - foreach ( $option_values as $option_value ) {
|
|
| 4441 | - if ( ! empty( $option_value['label'] ) ) {
|
|
| 4439 | + if (!empty($option_values)) {
|
|
| 4440 | + foreach ($option_values as $option_value) {
|
|
| 4441 | + if (!empty($option_value['label'])) {
|
|
| 4442 | 4442 | $translation_texts[] = $option_value['label']; |
| 4443 | 4443 | } |
| 4444 | 4444 | } |
@@ -4448,56 +4448,56 @@ discard block |
||
| 4448 | 4448 | } |
| 4449 | 4449 | |
| 4450 | 4450 | // Custom sorting fields table |
| 4451 | - $sql = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE; |
|
| 4452 | - $rows = $wpdb->get_results( $sql ); |
|
| 4451 | + $sql = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE; |
|
| 4452 | + $rows = $wpdb->get_results($sql); |
|
| 4453 | 4453 | |
| 4454 | - if ( ! empty( $rows ) ) {
|
|
| 4455 | - foreach ( $rows as $row ) {
|
|
| 4456 | - if ( ! empty( $row->site_title ) ) {
|
|
| 4457 | - $translation_texts[] = stripslashes_deep( $row->site_title ); |
|
| 4454 | + if (!empty($rows)) {
|
|
| 4455 | + foreach ($rows as $row) {
|
|
| 4456 | + if (!empty($row->site_title)) {
|
|
| 4457 | + $translation_texts[] = stripslashes_deep($row->site_title); |
|
| 4458 | 4458 | } |
| 4459 | 4459 | |
| 4460 | - if ( ! empty( $row->asc_title ) ) {
|
|
| 4461 | - $translation_texts[] = stripslashes_deep( $row->asc_title ); |
|
| 4460 | + if (!empty($row->asc_title)) {
|
|
| 4461 | + $translation_texts[] = stripslashes_deep($row->asc_title); |
|
| 4462 | 4462 | } |
| 4463 | 4463 | |
| 4464 | - if ( ! empty( $row->desc_title ) ) {
|
|
| 4465 | - $translation_texts[] = stripslashes_deep( $row->desc_title ); |
|
| 4464 | + if (!empty($row->desc_title)) {
|
|
| 4465 | + $translation_texts[] = stripslashes_deep($row->desc_title); |
|
| 4466 | 4466 | } |
| 4467 | 4467 | } |
| 4468 | 4468 | } |
| 4469 | 4469 | |
| 4470 | 4470 | // Advance search filter fields table |
| 4471 | - if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
|
|
| 4472 | - $sql = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE; |
|
| 4473 | - $rows = $wpdb->get_results( $sql ); |
|
| 4474 | - |
|
| 4475 | - if ( ! empty( $rows ) ) {
|
|
| 4476 | - foreach ( $rows as $row ) {
|
|
| 4477 | - if ( ! empty( $row->field_site_name ) ) {
|
|
| 4478 | - $translation_texts[] = stripslashes_deep( $row->field_site_name ); |
|
| 4471 | + if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
|
|
| 4472 | + $sql = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE; |
|
| 4473 | + $rows = $wpdb->get_results($sql); |
|
| 4474 | + |
|
| 4475 | + if (!empty($rows)) {
|
|
| 4476 | + foreach ($rows as $row) {
|
|
| 4477 | + if (!empty($row->field_site_name)) {
|
|
| 4478 | + $translation_texts[] = stripslashes_deep($row->field_site_name); |
|
| 4479 | 4479 | } |
| 4480 | 4480 | |
| 4481 | - if ( ! empty( $row->front_search_title ) ) {
|
|
| 4482 | - $translation_texts[] = stripslashes_deep( $row->front_search_title ); |
|
| 4481 | + if (!empty($row->front_search_title)) {
|
|
| 4482 | + $translation_texts[] = stripslashes_deep($row->front_search_title); |
|
| 4483 | 4483 | } |
| 4484 | 4484 | |
| 4485 | - if ( ! empty( $row->first_search_text ) ) {
|
|
| 4486 | - $translation_texts[] = stripslashes_deep( $row->first_search_text ); |
|
| 4485 | + if (!empty($row->first_search_text)) {
|
|
| 4486 | + $translation_texts[] = stripslashes_deep($row->first_search_text); |
|
| 4487 | 4487 | } |
| 4488 | 4488 | |
| 4489 | - if ( ! empty( $row->last_search_text ) ) {
|
|
| 4490 | - $translation_texts[] = stripslashes_deep( $row->last_search_text ); |
|
| 4489 | + if (!empty($row->last_search_text)) {
|
|
| 4490 | + $translation_texts[] = stripslashes_deep($row->last_search_text); |
|
| 4491 | 4491 | } |
| 4492 | 4492 | |
| 4493 | - if ( ! empty( $row->field_desc ) ) {
|
|
| 4494 | - $translation_texts[] = stripslashes_deep( $row->field_desc ); |
|
| 4493 | + if (!empty($row->field_desc)) {
|
|
| 4494 | + $translation_texts[] = stripslashes_deep($row->field_desc); |
|
| 4495 | 4495 | } |
| 4496 | 4496 | } |
| 4497 | 4497 | } |
| 4498 | 4498 | } |
| 4499 | 4499 | |
| 4500 | - $translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts; |
|
| 4500 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 4501 | 4501 | |
| 4502 | 4502 | return $translation_texts; |
| 4503 | 4503 | } |
@@ -4519,7 +4519,7 @@ discard block |
||
| 4519 | 4519 | * |
| 4520 | 4520 | * @param array $geodir_allowed_mime_types and file extensions. |
| 4521 | 4521 | */ |
| 4522 | - return apply_filters( 'geodir_allowed_mime_types', array( |
|
| 4522 | + return apply_filters('geodir_allowed_mime_types', array(
|
|
| 4523 | 4523 | 'Image' => array( // Image formats. |
| 4524 | 4524 | 'jpg' => 'image/jpeg', |
| 4525 | 4525 | 'jpe' => 'image/jpeg', |
@@ -4588,18 +4588,18 @@ discard block |
||
| 4588 | 4588 | * |
| 4589 | 4589 | * @return string User display name. |
| 4590 | 4590 | */ |
| 4591 | -function geodir_get_client_name( $user_id ) {
|
|
| 4591 | +function geodir_get_client_name($user_id) {
|
|
| 4592 | 4592 | $client_name = ''; |
| 4593 | 4593 | |
| 4594 | - $user_data = get_userdata( $user_id ); |
|
| 4594 | + $user_data = get_userdata($user_id); |
|
| 4595 | 4595 | |
| 4596 | - if ( ! empty( $user_data ) ) {
|
|
| 4597 | - if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
|
|
| 4598 | - $client_name = trim( $user_data->display_name ); |
|
| 4599 | - } else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
|
|
| 4600 | - $client_name = trim( $user_data->user_nicename ); |
|
| 4596 | + if (!empty($user_data)) {
|
|
| 4597 | + if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
|
|
| 4598 | + $client_name = trim($user_data->display_name); |
|
| 4599 | + } else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
|
|
| 4600 | + $client_name = trim($user_data->user_nicename); |
|
| 4601 | 4601 | } else {
|
| 4602 | - $client_name = trim( $user_data->user_login ); |
|
| 4602 | + $client_name = trim($user_data->user_login); |
|
| 4603 | 4603 | } |
| 4604 | 4604 | } |
| 4605 | 4605 | |
@@ -4607,17 +4607,17 @@ discard block |
||
| 4607 | 4607 | } |
| 4608 | 4608 | |
| 4609 | 4609 | |
| 4610 | -add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 ); |
|
| 4610 | +add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
|
|
| 4611 | 4611 | /* |
| 4612 | 4612 | * Add location variables to wpseo replacements. |
| 4613 | 4613 | * |
| 4614 | 4614 | * @since 1.5.4 |
| 4615 | 4615 | */ |
| 4616 | -function geodir_wpseo_replacements( $vars ) {
|
|
| 4616 | +function geodir_wpseo_replacements($vars) {
|
|
| 4617 | 4617 | |
| 4618 | 4618 | // location variables |
| 4619 | 4619 | $gd_post_type = geodir_get_current_posttype(); |
| 4620 | - $location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
| 4620 | + $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
|
|
| 4621 | 4621 | /** |
| 4622 | 4622 | * Filter the title variables location variables array |
| 4623 | 4623 | * |
@@ -4627,7 +4627,7 @@ discard block |
||
| 4627 | 4627 | * @param array $location_array The array of location variables. |
| 4628 | 4628 | * @param array $vars The page title variables. |
| 4629 | 4629 | */ |
| 4630 | - $location_array = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars ); |
|
| 4630 | + $location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
|
|
| 4631 | 4631 | |
| 4632 | 4632 | |
| 4633 | 4633 | $location_replace_vars = geodir_location_replace_vars($location_array, NULL, ''); |
@@ -4642,13 +4642,13 @@ discard block |
||
| 4642 | 4642 | * @param string $vars The title with variables. |
| 4643 | 4643 | * @param array $location_array The array of location variables. |
| 4644 | 4644 | */ |
| 4645 | - return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array ); |
|
| 4645 | + return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
|
|
| 4646 | 4646 | } |
| 4647 | 4647 | |
| 4648 | 4648 | |
| 4649 | -add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 ); |
|
| 4650 | -add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 ); |
|
| 4651 | -add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 ); |
|
| 4649 | +add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
|
|
| 4650 | +add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
|
|
| 4651 | +add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
|
|
| 4652 | 4652 | |
| 4653 | 4653 | /** |
| 4654 | 4654 | * Filter the title variables. |
@@ -4690,14 +4690,14 @@ discard block |
||
| 4690 | 4690 | * |
| 4691 | 4691 | * @return string Title after filtered variables. |
| 4692 | 4692 | */ |
| 4693 | -function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
|
|
| 4693 | +function geodir_filter_title_variables($title, $gd_page, $sep = '') {
|
|
| 4694 | 4694 | global $wp, $post; |
| 4695 | 4695 | |
| 4696 | - if ( ! $gd_page || ! $title ) {
|
|
| 4696 | + if (!$gd_page || !$title) {
|
|
| 4697 | 4697 | return $title; // if no a GD page then bail. |
| 4698 | 4698 | } |
| 4699 | 4699 | |
| 4700 | - if ( $sep == '' ) {
|
|
| 4700 | + if ($sep == '') {
|
|
| 4701 | 4701 | /** |
| 4702 | 4702 | * Filter the page title separator. |
| 4703 | 4703 | * |
@@ -4706,100 +4706,100 @@ discard block |
||
| 4706 | 4706 | * |
| 4707 | 4707 | * @param string $sep The separator, default: `|`. |
| 4708 | 4708 | */ |
| 4709 | - $sep = apply_filters( 'geodir_page_title_separator', '|' ); |
|
| 4709 | + $sep = apply_filters('geodir_page_title_separator', '|');
|
|
| 4710 | 4710 | } |
| 4711 | 4711 | |
| 4712 | - if ( strpos( $title, '%%title%%' ) !== false ) {
|
|
| 4713 | - $title = str_replace( "%%title%%", $post->post_title, $title ); |
|
| 4712 | + if (strpos($title, '%%title%%') !== false) {
|
|
| 4713 | + $title = str_replace("%%title%%", $post->post_title, $title);
|
|
| 4714 | 4714 | } |
| 4715 | 4715 | |
| 4716 | - if ( strpos( $title, '%%sitename%%' ) !== false ) {
|
|
| 4717 | - $title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title ); |
|
| 4716 | + if (strpos($title, '%%sitename%%') !== false) {
|
|
| 4717 | + $title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
|
|
| 4718 | 4718 | } |
| 4719 | 4719 | |
| 4720 | - if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
|
|
| 4721 | - $title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title ); |
|
| 4720 | + if (strpos($title, '%%sitedesc%%') !== false) {
|
|
| 4721 | + $title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
|
|
| 4722 | 4722 | } |
| 4723 | 4723 | |
| 4724 | - if ( strpos( $title, '%%excerpt%%' ) !== false ) {
|
|
| 4725 | - $title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title ); |
|
| 4724 | + if (strpos($title, '%%excerpt%%') !== false) {
|
|
| 4725 | + $title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
|
|
| 4726 | 4726 | } |
| 4727 | 4727 | |
| 4728 | - if ( $gd_page == 'search' || $gd_page == 'author' ) {
|
|
| 4729 | - $post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : ''; |
|
| 4730 | - } else if ( $gd_page == 'add-listing' ) {
|
|
| 4731 | - $post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : ''; |
|
| 4732 | - $post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type; |
|
| 4733 | - } else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
|
|
| 4728 | + if ($gd_page == 'search' || $gd_page == 'author') {
|
|
| 4729 | + $post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : ''; |
|
| 4730 | + } else if ($gd_page == 'add-listing') {
|
|
| 4731 | + $post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : ''; |
|
| 4732 | + $post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type; |
|
| 4733 | + } else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
|
|
| 4734 | 4734 | $post_type = $post->post_type; |
| 4735 | 4735 | } else {
|
| 4736 | - $post_type = get_query_var( 'post_type' ); |
|
| 4736 | + $post_type = get_query_var('post_type');
|
|
| 4737 | 4737 | } |
| 4738 | 4738 | |
| 4739 | - if ( strpos( $title, '%%pt_single%%' ) !== false ) {
|
|
| 4739 | + if (strpos($title, '%%pt_single%%') !== false) {
|
|
| 4740 | 4740 | $singular_name = ''; |
| 4741 | - if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
|
|
| 4742 | - $singular_name = __( $singular_name, 'geodirectory' ); |
|
| 4741 | + if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
|
|
| 4742 | + $singular_name = __($singular_name, 'geodirectory'); |
|
| 4743 | 4743 | } |
| 4744 | 4744 | |
| 4745 | - $title = str_replace( "%%pt_single%%", $singular_name, $title ); |
|
| 4745 | + $title = str_replace("%%pt_single%%", $singular_name, $title);
|
|
| 4746 | 4746 | } |
| 4747 | 4747 | |
| 4748 | - if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
|
|
| 4748 | + if (strpos($title, '%%pt_plural%%') !== false) {
|
|
| 4749 | 4749 | $plural_name = ''; |
| 4750 | - if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
|
|
| 4751 | - $plural_name = __( $plural_name, 'geodirectory' ); |
|
| 4750 | + if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
|
|
| 4751 | + $plural_name = __($plural_name, 'geodirectory'); |
|
| 4752 | 4752 | } |
| 4753 | 4753 | |
| 4754 | - $title = str_replace( "%%pt_plural%%", $plural_name, $title ); |
|
| 4754 | + $title = str_replace("%%pt_plural%%", $plural_name, $title);
|
|
| 4755 | 4755 | } |
| 4756 | 4756 | |
| 4757 | - if ( strpos( $title, '%%category%%' ) !== false ) {
|
|
| 4757 | + if (strpos($title, '%%category%%') !== false) {
|
|
| 4758 | 4758 | $cat_name = ''; |
| 4759 | 4759 | |
| 4760 | - if ( $gd_page == 'detail' ) {
|
|
| 4761 | - if ( $post->default_category ) {
|
|
| 4762 | - $cat = get_term( $post->default_category, $post->post_type . 'category' ); |
|
| 4763 | - $cat_name = ( isset( $cat->name ) ) ? $cat->name : ''; |
|
| 4760 | + if ($gd_page == 'detail') {
|
|
| 4761 | + if ($post->default_category) {
|
|
| 4762 | + $cat = get_term($post->default_category, $post->post_type.'category'); |
|
| 4763 | + $cat_name = (isset($cat->name)) ? $cat->name : ''; |
|
| 4764 | 4764 | } |
| 4765 | - } else if ( $gd_page == 'listing' ) {
|
|
| 4765 | + } else if ($gd_page == 'listing') {
|
|
| 4766 | 4766 | $queried_object = get_queried_object(); |
| 4767 | - if ( isset( $queried_object->name ) ) {
|
|
| 4767 | + if (isset($queried_object->name)) {
|
|
| 4768 | 4768 | $cat_name = $queried_object->name; |
| 4769 | 4769 | } |
| 4770 | 4770 | } |
| 4771 | - $title = str_replace( "%%category%%", $cat_name, $title ); |
|
| 4771 | + $title = str_replace("%%category%%", $cat_name, $title);
|
|
| 4772 | 4772 | } |
| 4773 | 4773 | |
| 4774 | - if ( strpos( $title, '%%tag%%' ) !== false ) {
|
|
| 4774 | + if (strpos($title, '%%tag%%') !== false) {
|
|
| 4775 | 4775 | $cat_name = ''; |
| 4776 | 4776 | |
| 4777 | - if ( $gd_page == 'detail' ) {
|
|
| 4778 | - if ( $post->default_category ) {
|
|
| 4779 | - $cat = get_term( $post->default_category, $post->post_type . 'category' ); |
|
| 4780 | - $cat_name = ( isset( $cat->name ) ) ? $cat->name : ''; |
|
| 4777 | + if ($gd_page == 'detail') {
|
|
| 4778 | + if ($post->default_category) {
|
|
| 4779 | + $cat = get_term($post->default_category, $post->post_type.'category'); |
|
| 4780 | + $cat_name = (isset($cat->name)) ? $cat->name : ''; |
|
| 4781 | 4781 | } |
| 4782 | - } else if ( $gd_page == 'listing' ) {
|
|
| 4782 | + } else if ($gd_page == 'listing') {
|
|
| 4783 | 4783 | $queried_object = get_queried_object(); |
| 4784 | - if ( isset( $queried_object->name ) ) {
|
|
| 4784 | + if (isset($queried_object->name)) {
|
|
| 4785 | 4785 | $cat_name = $queried_object->name; |
| 4786 | 4786 | } |
| 4787 | 4787 | } |
| 4788 | - $title = str_replace( "%%tag%%", $cat_name, $title ); |
|
| 4788 | + $title = str_replace("%%tag%%", $cat_name, $title);
|
|
| 4789 | 4789 | } |
| 4790 | 4790 | |
| 4791 | - if ( strpos( $title, '%%id%%' ) !== false ) {
|
|
| 4792 | - $ID = ( isset( $post->ID ) ) ? $post->ID : ''; |
|
| 4793 | - $title = str_replace( "%%id%%", $ID, $title ); |
|
| 4791 | + if (strpos($title, '%%id%%') !== false) {
|
|
| 4792 | + $ID = (isset($post->ID)) ? $post->ID : ''; |
|
| 4793 | + $title = str_replace("%%id%%", $ID, $title);
|
|
| 4794 | 4794 | } |
| 4795 | 4795 | |
| 4796 | - if ( strpos( $title, '%%sep%%' ) !== false ) {
|
|
| 4797 | - $title = str_replace( "%%sep%%", $sep, $title ); |
|
| 4796 | + if (strpos($title, '%%sep%%') !== false) {
|
|
| 4797 | + $title = str_replace("%%sep%%", $sep, $title);
|
|
| 4798 | 4798 | } |
| 4799 | 4799 | |
| 4800 | 4800 | // location variables |
| 4801 | 4801 | $gd_post_type = geodir_get_current_posttype(); |
| 4802 | - $location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
| 4802 | + $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
|
|
| 4803 | 4803 | |
| 4804 | 4804 | /** |
| 4805 | 4805 | * Filter the title variables location variables array |
@@ -4812,20 +4812,20 @@ discard block |
||
| 4812 | 4812 | * @param string $gd_page The page being filtered. |
| 4813 | 4813 | * @param string $sep The separator, default: `|`. |
| 4814 | 4814 | */ |
| 4815 | - $location_array = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep ); |
|
| 4815 | + $location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
|
|
| 4816 | 4816 | |
| 4817 | - if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
|
|
| 4818 | - if ( get_query_var( 'gd_country_full' ) ) {
|
|
| 4819 | - $location_array['gd_country'] = get_query_var( 'gd_country_full' ); |
|
| 4817 | + if ($gd_page == 'location' && get_query_var('gd_country_full')) {
|
|
| 4818 | + if (get_query_var('gd_country_full')) {
|
|
| 4819 | + $location_array['gd_country'] = get_query_var('gd_country_full');
|
|
| 4820 | 4820 | } |
| 4821 | - if ( get_query_var( 'gd_region_full' ) ) {
|
|
| 4822 | - $location_array['gd_region'] = get_query_var( 'gd_region_full' ); |
|
| 4821 | + if (get_query_var('gd_region_full')) {
|
|
| 4822 | + $location_array['gd_region'] = get_query_var('gd_region_full');
|
|
| 4823 | 4823 | } |
| 4824 | - if ( get_query_var( 'gd_city_full' ) ) {
|
|
| 4825 | - $location_array['gd_city'] = get_query_var( 'gd_city_full' ); |
|
| 4824 | + if (get_query_var('gd_city_full')) {
|
|
| 4825 | + $location_array['gd_city'] = get_query_var('gd_city_full');
|
|
| 4826 | 4826 | } |
| 4827 | - if ( get_query_var( 'gd_neighbourhood_full' ) ) {
|
|
| 4828 | - $location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' ); |
|
| 4827 | + if (get_query_var('gd_neighbourhood_full')) {
|
|
| 4828 | + $location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
|
|
| 4829 | 4829 | } |
| 4830 | 4830 | } |
| 4831 | 4831 | |
@@ -4840,58 +4840,58 @@ discard block |
||
| 4840 | 4840 | * @param string $gd_page The page being filtered. |
| 4841 | 4841 | * @param string $sep The separator, default: `|`. |
| 4842 | 4842 | */ |
| 4843 | - $title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep ); |
|
| 4843 | + $title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
|
|
| 4844 | 4844 | |
| 4845 | - if ( strpos( $title, '%%search_term%%' ) !== false ) {
|
|
| 4845 | + if (strpos($title, '%%search_term%%') !== false) {
|
|
| 4846 | 4846 | $search_term = ''; |
| 4847 | - if ( isset( $_REQUEST['s'] ) ) {
|
|
| 4848 | - $search_term = esc_attr( $_REQUEST['s'] ); |
|
| 4849 | - $search_term = str_replace(array("%E2%80%99","’"),array("%27","'"),$search_term);
|
|
| 4847 | + if (isset($_REQUEST['s'])) {
|
|
| 4848 | + $search_term = esc_attr($_REQUEST['s']); |
|
| 4849 | + $search_term = str_replace(array("%E2%80%99", "’"), array("%27", "'"), $search_term);
|
|
| 4850 | 4850 | } |
| 4851 | - $title = str_replace( "%%search_term%%", $search_term, $title ); |
|
| 4851 | + $title = str_replace("%%search_term%%", $search_term, $title);
|
|
| 4852 | 4852 | } |
| 4853 | 4853 | |
| 4854 | - if ( strpos( $title, '%%search_near%%' ) !== false ) {
|
|
| 4854 | + if (strpos($title, '%%search_near%%') !== false) {
|
|
| 4855 | 4855 | $search_term = ''; |
| 4856 | - if ( isset( $_REQUEST['snear'] ) ) {
|
|
| 4857 | - $search_term = esc_attr( $_REQUEST['snear'] ); |
|
| 4856 | + if (isset($_REQUEST['snear'])) {
|
|
| 4857 | + $search_term = esc_attr($_REQUEST['snear']); |
|
| 4858 | 4858 | } |
| 4859 | - $title = str_replace( "%%search_near%%", $search_term, $title ); |
|
| 4859 | + $title = str_replace("%%search_near%%", $search_term, $title);
|
|
| 4860 | 4860 | } |
| 4861 | 4861 | |
| 4862 | - if ( strpos( $title, '%%name%%' ) !== false ) {
|
|
| 4863 | - if ( is_author() ) {
|
|
| 4864 | - $curauth = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) ); |
|
| 4862 | + if (strpos($title, '%%name%%') !== false) {
|
|
| 4863 | + if (is_author()) {
|
|
| 4864 | + $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
|
|
| 4865 | 4865 | $author_name = $curauth->display_name; |
| 4866 | 4866 | } else {
|
| 4867 | 4867 | $author_name = get_the_author(); |
| 4868 | 4868 | } |
| 4869 | - if ( ! $author_name || $author_name === '' ) {
|
|
| 4869 | + if (!$author_name || $author_name === '') {
|
|
| 4870 | 4870 | $queried_object = get_queried_object(); |
| 4871 | 4871 | |
| 4872 | - if ( isset( $queried_object->data->user_nicename ) ) {
|
|
| 4872 | + if (isset($queried_object->data->user_nicename)) {
|
|
| 4873 | 4873 | $author_name = $queried_object->data->display_name; |
| 4874 | 4874 | } |
| 4875 | 4875 | } |
| 4876 | - $title = str_replace( "%%name%%", $author_name, $title ); |
|
| 4876 | + $title = str_replace("%%name%%", $author_name, $title);
|
|
| 4877 | 4877 | } |
| 4878 | 4878 | |
| 4879 | - if ( strpos( $title, '%%page%%' ) !== false ) {
|
|
| 4880 | - $page = geodir_title_meta_page( $sep ); |
|
| 4881 | - $title = str_replace( "%%page%%", $page, $title ); |
|
| 4879 | + if (strpos($title, '%%page%%') !== false) {
|
|
| 4880 | + $page = geodir_title_meta_page($sep); |
|
| 4881 | + $title = str_replace("%%page%%", $page, $title);
|
|
| 4882 | 4882 | } |
| 4883 | - if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
|
|
| 4883 | + if (strpos($title, '%%pagenumber%%') !== false) {
|
|
| 4884 | 4884 | $pagenumber = geodir_title_meta_pagenumber(); |
| 4885 | - $title = str_replace( "%%pagenumber%%", $pagenumber, $title ); |
|
| 4885 | + $title = str_replace("%%pagenumber%%", $pagenumber, $title);
|
|
| 4886 | 4886 | } |
| 4887 | - if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
|
|
| 4887 | + if (strpos($title, '%%pagetotal%%') !== false) {
|
|
| 4888 | 4888 | $pagetotal = geodir_title_meta_pagetotal(); |
| 4889 | - $title = str_replace( "%%pagetotal%%", $pagetotal, $title ); |
|
| 4889 | + $title = str_replace("%%pagetotal%%", $pagetotal, $title);
|
|
| 4890 | 4890 | } |
| 4891 | 4891 | |
| 4892 | - $title = wptexturize( $title ); |
|
| 4893 | - $title = convert_chars( $title ); |
|
| 4894 | - $title = esc_html( $title ); |
|
| 4892 | + $title = wptexturize($title); |
|
| 4893 | + $title = convert_chars($title); |
|
| 4894 | + $title = esc_html($title); |
|
| 4895 | 4895 | |
| 4896 | 4896 | /** |
| 4897 | 4897 | * Filter the title variables after standard ones have been filtered. |
@@ -4905,7 +4905,7 @@ discard block |
||
| 4905 | 4905 | * @param string $sep The separator, default: `|`. |
| 4906 | 4906 | */ |
| 4907 | 4907 | |
| 4908 | - return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep ); |
|
| 4908 | + return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
|
|
| 4909 | 4909 | } |
| 4910 | 4910 | |
| 4911 | 4911 | /** |
@@ -4918,82 +4918,82 @@ discard block |
||
| 4918 | 4918 | * |
| 4919 | 4919 | * @return array Translation texts. |
| 4920 | 4920 | */ |
| 4921 | -function geodir_load_cpt_text_translation( $translation_texts = array() ) {
|
|
| 4922 | - $gd_post_types = geodir_get_posttypes( 'array' ); |
|
| 4921 | +function geodir_load_cpt_text_translation($translation_texts = array()) {
|
|
| 4922 | + $gd_post_types = geodir_get_posttypes('array');
|
|
| 4923 | 4923 | |
| 4924 | - if ( ! empty( $gd_post_types ) ) {
|
|
| 4925 | - foreach ( $gd_post_types as $post_type => $cpt_info ) {
|
|
| 4926 | - $labels = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : ''; |
|
| 4927 | - $description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : ''; |
|
| 4928 | - $seo = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : ''; |
|
| 4924 | + if (!empty($gd_post_types)) {
|
|
| 4925 | + foreach ($gd_post_types as $post_type => $cpt_info) {
|
|
| 4926 | + $labels = isset($cpt_info['labels']) ? $cpt_info['labels'] : ''; |
|
| 4927 | + $description = isset($cpt_info['description']) ? $cpt_info['description'] : ''; |
|
| 4928 | + $seo = isset($cpt_info['seo']) ? $cpt_info['seo'] : ''; |
|
| 4929 | 4929 | |
| 4930 | - if ( ! empty( $labels ) ) {
|
|
| 4931 | - if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
|
|
| 4930 | + if (!empty($labels)) {
|
|
| 4931 | + if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
|
|
| 4932 | 4932 | $translation_texts[] = $labels['name']; |
| 4933 | 4933 | } |
| 4934 | - if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
|
|
| 4934 | + if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
|
|
| 4935 | 4935 | $translation_texts[] = $labels['singular_name']; |
| 4936 | 4936 | } |
| 4937 | - if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
|
|
| 4937 | + if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
|
|
| 4938 | 4938 | $translation_texts[] = $labels['add_new']; |
| 4939 | 4939 | } |
| 4940 | - if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
|
|
| 4940 | + if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
|
|
| 4941 | 4941 | $translation_texts[] = $labels['add_new_item']; |
| 4942 | 4942 | } |
| 4943 | - if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
|
|
| 4943 | + if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
|
|
| 4944 | 4944 | $translation_texts[] = $labels['edit_item']; |
| 4945 | 4945 | } |
| 4946 | - if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
|
|
| 4946 | + if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
|
|
| 4947 | 4947 | $translation_texts[] = $labels['new_item']; |
| 4948 | 4948 | } |
| 4949 | - if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
|
|
| 4949 | + if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
|
|
| 4950 | 4950 | $translation_texts[] = $labels['view_item']; |
| 4951 | 4951 | } |
| 4952 | - if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
|
|
| 4952 | + if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
|
|
| 4953 | 4953 | $translation_texts[] = $labels['search_items']; |
| 4954 | 4954 | } |
| 4955 | - if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
|
|
| 4955 | + if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
|
|
| 4956 | 4956 | $translation_texts[] = $labels['not_found']; |
| 4957 | 4957 | } |
| 4958 | - if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
|
|
| 4958 | + if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
|
|
| 4959 | 4959 | $translation_texts[] = $labels['not_found_in_trash']; |
| 4960 | 4960 | } |
| 4961 | - if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
|
|
| 4961 | + if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
|
|
| 4962 | 4962 | $translation_texts[] = $labels['label_post_profile']; |
| 4963 | 4963 | } |
| 4964 | - if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
|
|
| 4964 | + if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
|
|
| 4965 | 4965 | $translation_texts[] = $labels['label_post_info']; |
| 4966 | 4966 | } |
| 4967 | - if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
|
|
| 4967 | + if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
|
|
| 4968 | 4968 | $translation_texts[] = $labels['label_post_images']; |
| 4969 | 4969 | } |
| 4970 | - if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
|
|
| 4970 | + if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
|
|
| 4971 | 4971 | $translation_texts[] = $labels['label_post_map']; |
| 4972 | 4972 | } |
| 4973 | - if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
|
|
| 4973 | + if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
|
|
| 4974 | 4974 | $translation_texts[] = $labels['label_reviews']; |
| 4975 | 4975 | } |
| 4976 | - if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
|
|
| 4976 | + if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
|
|
| 4977 | 4977 | $translation_texts[] = $labels['label_related_listing']; |
| 4978 | 4978 | } |
| 4979 | 4979 | } |
| 4980 | 4980 | |
| 4981 | - if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
|
|
| 4982 | - $translation_texts[] = normalize_whitespace( $description ); |
|
| 4981 | + if ($description != '' && !in_array($description, $translation_texts)) {
|
|
| 4982 | + $translation_texts[] = normalize_whitespace($description); |
|
| 4983 | 4983 | } |
| 4984 | 4984 | |
| 4985 | - if ( ! empty( $seo ) ) {
|
|
| 4986 | - if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
|
|
| 4987 | - $translation_texts[] = normalize_whitespace( $seo['meta_keyword'] ); |
|
| 4985 | + if (!empty($seo)) {
|
|
| 4986 | + if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
|
|
| 4987 | + $translation_texts[] = normalize_whitespace($seo['meta_keyword']); |
|
| 4988 | 4988 | } |
| 4989 | 4989 | |
| 4990 | - if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
|
|
| 4991 | - $translation_texts[] = normalize_whitespace( $seo['meta_description'] ); |
|
| 4990 | + if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
|
|
| 4991 | + $translation_texts[] = normalize_whitespace($seo['meta_description']); |
|
| 4992 | 4992 | } |
| 4993 | 4993 | } |
| 4994 | 4994 | } |
| 4995 | 4995 | } |
| 4996 | - $translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts; |
|
| 4996 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 4997 | 4997 | |
| 4998 | 4998 | return $translation_texts; |
| 4999 | 4999 | } |
@@ -5008,27 +5008,27 @@ discard block |
||
| 5008 | 5008 | * |
| 5009 | 5009 | * @return array Location terms. |
| 5010 | 5010 | */ |
| 5011 | -function geodir_remove_location_terms( $location_terms = array() ) {
|
|
| 5012 | - $location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false; |
|
| 5011 | +function geodir_remove_location_terms($location_terms = array()) {
|
|
| 5012 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
|
|
| 5013 | 5013 | |
| 5014 | - if ( ! empty( $location_terms ) && $location_manager ) {
|
|
| 5015 | - $hide_country_part = get_option( 'geodir_location_hide_country_part' ); |
|
| 5016 | - $hide_region_part = get_option( 'geodir_location_hide_region_part' ); |
|
| 5014 | + if (!empty($location_terms) && $location_manager) {
|
|
| 5015 | + $hide_country_part = get_option('geodir_location_hide_country_part');
|
|
| 5016 | + $hide_region_part = get_option('geodir_location_hide_region_part');
|
|
| 5017 | 5017 | |
| 5018 | - if ( $hide_region_part && $hide_country_part ) {
|
|
| 5019 | - if ( isset( $location_terms['gd_country'] ) ) {
|
|
| 5020 | - unset( $location_terms['gd_country'] ); |
|
| 5018 | + if ($hide_region_part && $hide_country_part) {
|
|
| 5019 | + if (isset($location_terms['gd_country'])) {
|
|
| 5020 | + unset($location_terms['gd_country']); |
|
| 5021 | 5021 | } |
| 5022 | - if ( isset( $location_terms['gd_region'] ) ) {
|
|
| 5023 | - unset( $location_terms['gd_region'] ); |
|
| 5022 | + if (isset($location_terms['gd_region'])) {
|
|
| 5023 | + unset($location_terms['gd_region']); |
|
| 5024 | 5024 | } |
| 5025 | - } else if ( $hide_region_part && ! $hide_country_part ) {
|
|
| 5026 | - if ( isset( $location_terms['gd_region'] ) ) {
|
|
| 5027 | - unset( $location_terms['gd_region'] ); |
|
| 5025 | + } else if ($hide_region_part && !$hide_country_part) {
|
|
| 5026 | + if (isset($location_terms['gd_region'])) {
|
|
| 5027 | + unset($location_terms['gd_region']); |
|
| 5028 | 5028 | } |
| 5029 | - } else if ( ! $hide_region_part && $hide_country_part ) {
|
|
| 5030 | - if ( isset( $location_terms['gd_country'] ) ) {
|
|
| 5031 | - unset( $location_terms['gd_country'] ); |
|
| 5029 | + } else if (!$hide_region_part && $hide_country_part) {
|
|
| 5030 | + if (isset($location_terms['gd_country'])) {
|
|
| 5031 | + unset($location_terms['gd_country']); |
|
| 5032 | 5032 | } |
| 5033 | 5033 | } |
| 5034 | 5034 | } |
@@ -5039,7 +5039,7 @@ discard block |
||
| 5039 | 5039 | * @since 1.6.22 |
| 5040 | 5040 | * @param array $location_terms The array of location terms. |
| 5041 | 5041 | */ |
| 5042 | - return apply_filters('geodir_remove_location_terms',$location_terms);
|
|
| 5042 | + return apply_filters('geodir_remove_location_terms', $location_terms);
|
|
| 5043 | 5043 | } |
| 5044 | 5044 | |
| 5045 | 5045 | /** |
@@ -5056,32 +5056,32 @@ discard block |
||
| 5056 | 5056 | * @param WP_Post $post Post object. |
| 5057 | 5057 | * @param bool $update Whether this is an existing listing being updated or not. |
| 5058 | 5058 | */ |
| 5059 | -function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
|
|
| 5059 | +function geodir_on_wp_insert_post($post_ID, $post, $update) {
|
|
| 5060 | 5060 | global $gd_set_listing_edited; |
| 5061 | 5061 | |
| 5062 | - if ( ! $update ) {
|
|
| 5062 | + if (!$update) {
|
|
| 5063 | 5063 | return; |
| 5064 | 5064 | } |
| 5065 | 5065 | |
| 5066 | - $action = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : ''; |
|
| 5067 | - $is_admin = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false; |
|
| 5066 | + $action = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : ''; |
|
| 5067 | + $is_admin = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
|
|
| 5068 | 5068 | $inline_save = $action == 'inline-save' ? true : false; |
| 5069 | 5069 | |
| 5070 | - if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
|
|
| 5070 | + if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
|
|
| 5071 | 5071 | return; |
| 5072 | 5072 | } |
| 5073 | 5073 | |
| 5074 | - if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
|
|
| 5074 | + if ($action != '' && in_array($action, array('geodir_import_export'))) {
|
|
| 5075 | 5075 | return; |
| 5076 | 5076 | } |
| 5077 | 5077 | |
| 5078 | 5078 | $user_id = (int) get_current_user_id(); |
| 5079 | 5079 | |
| 5080 | - if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
|
|
| 5081 | - $author_id = ! empty( $post->post_author ) ? $post->post_author : 0; |
|
| 5080 | + if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
|
|
| 5081 | + $author_id = !empty($post->post_author) ? $post->post_author : 0; |
|
| 5082 | 5082 | |
| 5083 | - if ( $user_id == $author_id && ! is_super_admin() && empty( $gd_set_listing_edited[$post_ID] ) ) {
|
|
| 5084 | - if ( !empty( $gd_set_listing_edited ) ) {
|
|
| 5083 | + if ($user_id == $author_id && !is_super_admin() && empty($gd_set_listing_edited[$post_ID])) {
|
|
| 5084 | + if (!empty($gd_set_listing_edited)) {
|
|
| 5085 | 5085 | $gd_set_listing_edited = array(); |
| 5086 | 5086 | } |
| 5087 | 5087 | $gd_set_listing_edited[$post_ID] = true; |
@@ -5099,14 +5099,14 @@ discard block |
||
| 5099 | 5099 | * |
| 5100 | 5100 | * @return string|null The current page start & end numbering. |
| 5101 | 5101 | */ |
| 5102 | -function geodir_title_meta_page( $sep ) {
|
|
| 5102 | +function geodir_title_meta_page($sep) {
|
|
| 5103 | 5103 | $replacement = null; |
| 5104 | 5104 | |
| 5105 | - $max = geodir_title_meta_pagenumbering( 'max' ); |
|
| 5106 | - $nr = geodir_title_meta_pagenumbering( 'nr' ); |
|
| 5105 | + $max = geodir_title_meta_pagenumbering('max');
|
|
| 5106 | + $nr = geodir_title_meta_pagenumbering('nr');
|
|
| 5107 | 5107 | |
| 5108 | - if ( $max > 1 && $nr > 1 ) {
|
|
| 5109 | - $replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max ); |
|
| 5108 | + if ($max > 1 && $nr > 1) {
|
|
| 5109 | + $replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
|
|
| 5110 | 5110 | } |
| 5111 | 5111 | |
| 5112 | 5112 | return $replacement; |
@@ -5123,8 +5123,8 @@ discard block |
||
| 5123 | 5123 | function geodir_title_meta_pagenumber() {
|
| 5124 | 5124 | $replacement = null; |
| 5125 | 5125 | |
| 5126 | - $nr = geodir_title_meta_pagenumbering( 'nr' ); |
|
| 5127 | - if ( isset( $nr ) && $nr > 0 ) {
|
|
| 5126 | + $nr = geodir_title_meta_pagenumbering('nr');
|
|
| 5127 | + if (isset($nr) && $nr > 0) {
|
|
| 5128 | 5128 | $replacement = (string) $nr; |
| 5129 | 5129 | } |
| 5130 | 5130 | |
@@ -5142,8 +5142,8 @@ discard block |
||
| 5142 | 5142 | function geodir_title_meta_pagetotal() {
|
| 5143 | 5143 | $replacement = null; |
| 5144 | 5144 | |
| 5145 | - $max = geodir_title_meta_pagenumbering( 'max' ); |
|
| 5146 | - if ( isset( $max ) && $max > 0 ) {
|
|
| 5145 | + $max = geodir_title_meta_pagenumbering('max');
|
|
| 5146 | + if (isset($max) && $max > 0) {
|
|
| 5147 | 5147 | $replacement = (string) $max; |
| 5148 | 5148 | } |
| 5149 | 5149 | |
@@ -5163,36 +5163,36 @@ discard block |
||
| 5163 | 5163 | * |
| 5164 | 5164 | * @return int|null The current page numbering. |
| 5165 | 5165 | */ |
| 5166 | -function geodir_title_meta_pagenumbering( $request = 'nr' ) {
|
|
| 5166 | +function geodir_title_meta_pagenumbering($request = 'nr') {
|
|
| 5167 | 5167 | global $wp_query, $post; |
| 5168 | 5168 | $max_num_pages = null; |
| 5169 | 5169 | $page_number = null; |
| 5170 | 5170 | |
| 5171 | 5171 | $max_num_pages = 1; |
| 5172 | 5172 | |
| 5173 | - if ( ! is_singular() ) {
|
|
| 5174 | - $page_number = get_query_var( 'paged' ); |
|
| 5175 | - if ( $page_number === 0 || $page_number === '' ) {
|
|
| 5173 | + if (!is_singular()) {
|
|
| 5174 | + $page_number = get_query_var('paged');
|
|
| 5175 | + if ($page_number === 0 || $page_number === '') {
|
|
| 5176 | 5176 | $page_number = 1; |
| 5177 | 5177 | } |
| 5178 | 5178 | |
| 5179 | - if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
|
|
| 5179 | + if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
|
|
| 5180 | 5180 | $max_num_pages = $wp_query->max_num_pages; |
| 5181 | 5181 | } |
| 5182 | 5182 | } else {
|
| 5183 | - $page_number = get_query_var( 'page' ); |
|
| 5184 | - if ( $page_number === 0 || $page_number === '' ) {
|
|
| 5183 | + $page_number = get_query_var('page');
|
|
| 5184 | + if ($page_number === 0 || $page_number === '') {
|
|
| 5185 | 5185 | $page_number = 1; |
| 5186 | 5186 | } |
| 5187 | 5187 | |
| 5188 | - if ( isset( $post->post_content ) ) {
|
|
| 5189 | - $max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 ); |
|
| 5188 | + if (isset($post->post_content)) {
|
|
| 5189 | + $max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1); |
|
| 5190 | 5190 | } |
| 5191 | 5191 | } |
| 5192 | 5192 | |
| 5193 | 5193 | $return = null; |
| 5194 | 5194 | |
| 5195 | - switch ( $request ) {
|
|
| 5195 | + switch ($request) {
|
|
| 5196 | 5196 | case 'nr': |
| 5197 | 5197 | $return = $page_number; |
| 5198 | 5198 | break; |
@@ -5213,14 +5213,14 @@ discard block |
||
| 5213 | 5213 | * |
| 5214 | 5214 | * @return array Terms. |
| 5215 | 5215 | */ |
| 5216 | -function geodir_filter_empty_terms( $terms ) {
|
|
| 5217 | - if ( empty( $terms ) ) {
|
|
| 5216 | +function geodir_filter_empty_terms($terms) {
|
|
| 5217 | + if (empty($terms)) {
|
|
| 5218 | 5218 | return $terms; |
| 5219 | 5219 | } |
| 5220 | 5220 | |
| 5221 | 5221 | $return = array(); |
| 5222 | - foreach ( $terms as $term ) {
|
|
| 5223 | - if ( isset( $term->count ) && $term->count > 0 ) {
|
|
| 5222 | + foreach ($terms as $term) {
|
|
| 5223 | + if (isset($term->count) && $term->count > 0) {
|
|
| 5224 | 5224 | $return[] = $term; |
| 5225 | 5225 | } else {
|
| 5226 | 5226 | /** |
@@ -5231,7 +5231,7 @@ discard block |
||
| 5231 | 5231 | * @param array $return The array of terms to return. |
| 5232 | 5232 | * @param object $term The term object. |
| 5233 | 5233 | */ |
| 5234 | - $return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term ); |
|
| 5234 | + $return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
|
|
| 5235 | 5235 | } |
| 5236 | 5236 | } |
| 5237 | 5237 | |
@@ -5248,15 +5248,15 @@ discard block |
||
| 5248 | 5248 | * |
| 5249 | 5249 | * @return array |
| 5250 | 5250 | */ |
| 5251 | -function geodir_remove_hentry( $class ) {
|
|
| 5252 | - if ( geodir_is_page( 'detail' ) ) {
|
|
| 5253 | - $class = array_diff( $class, array( 'hentry' ) ); |
|
| 5251 | +function geodir_remove_hentry($class) {
|
|
| 5252 | + if (geodir_is_page('detail')) {
|
|
| 5253 | + $class = array_diff($class, array('hentry'));
|
|
| 5254 | 5254 | } |
| 5255 | 5255 | |
| 5256 | 5256 | return $class; |
| 5257 | 5257 | } |
| 5258 | 5258 | |
| 5259 | -add_filter( 'post_class', 'geodir_remove_hentry' ); |
|
| 5259 | +add_filter('post_class', 'geodir_remove_hentry');
|
|
| 5260 | 5260 | |
| 5261 | 5261 | /** |
| 5262 | 5262 | * Registers a individual text string for WPML translation. |
@@ -5268,8 +5268,8 @@ discard block |
||
| 5268 | 5268 | * @param string $domain The plugin domain. Default geodirectory. |
| 5269 | 5269 | * @param string $name The name of the string which helps to know what's being translated. |
| 5270 | 5270 | */ |
| 5271 | -function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
|
|
| 5272 | - do_action( 'wpml_register_single_string', $domain, $name, $string ); |
|
| 5271 | +function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
|
|
| 5272 | + do_action('wpml_register_single_string', $domain, $name, $string);
|
|
| 5273 | 5273 | } |
| 5274 | 5274 | |
| 5275 | 5275 | /** |
@@ -5284,8 +5284,8 @@ discard block |
||
| 5284 | 5284 | * @param string $language_code Return the translation in this language. Default is NULL which returns the current language. |
| 5285 | 5285 | * @return string The translated string. |
| 5286 | 5286 | */ |
| 5287 | -function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
|
|
| 5288 | - return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code ); |
|
| 5287 | +function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
|
|
| 5288 | + return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
|
|
| 5289 | 5289 | } |
| 5290 | 5290 | |
| 5291 | 5291 | /** |
@@ -5300,19 +5300,19 @@ discard block |
||
| 5300 | 5300 | * @param int $post_ID Post ID. |
| 5301 | 5301 | * @param array $data Post data. |
| 5302 | 5302 | */ |
| 5303 | -function geodir_send_listing_edited_notification( $post_ID, $data ) {
|
|
| 5303 | +function geodir_send_listing_edited_notification($post_ID, $data) {
|
|
| 5304 | 5304 | global $gd_notified_edited, $gd_set_listing_edited; |
| 5305 | 5305 | |
| 5306 | - if ( !empty( $gd_set_listing_edited[ $post_ID ] ) && empty( $gd_notified_edited[ $post_ID ] ) ) {
|
|
| 5307 | - if ( !empty( $gd_notified_edited ) ) {
|
|
| 5306 | + if (!empty($gd_set_listing_edited[$post_ID]) && empty($gd_notified_edited[$post_ID])) {
|
|
| 5307 | + if (!empty($gd_notified_edited)) {
|
|
| 5308 | 5308 | $gd_notified_edited = array(); |
| 5309 | 5309 | } |
| 5310 | - $gd_notified_edited[ $post_ID ] = true; |
|
| 5310 | + $gd_notified_edited[$post_ID] = true; |
|
| 5311 | 5311 | |
| 5312 | - $from_email = get_option( 'site_email' ); |
|
| 5312 | + $from_email = get_option('site_email');
|
|
| 5313 | 5313 | $from_name = get_site_emailName(); |
| 5314 | - $to_email = get_option( 'admin_email' ); |
|
| 5315 | - $to_name = get_option( 'name' ); |
|
| 5314 | + $to_email = get_option('admin_email');
|
|
| 5315 | + $to_name = get_option('name');
|
|
| 5316 | 5316 | $message_type = 'listing_edited'; |
| 5317 | 5317 | |
| 5318 | 5318 | $notify_edited = true; |
@@ -5324,11 +5324,11 @@ discard block |
||
| 5324 | 5324 | * @param bool $notify_edited Notify on listing edited by author? |
| 5325 | 5325 | * @param object $post The current post object. |
| 5326 | 5326 | */ |
| 5327 | - $notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post_ID ); |
|
| 5327 | + $notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post_ID);
|
|
| 5328 | 5328 | |
| 5329 | - if ( $notify_edited ) {
|
|
| 5330 | - geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID ); |
|
| 5329 | + if ($notify_edited) {
|
|
| 5330 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 5331 | 5331 | } |
| 5332 | 5332 | } |
| 5333 | 5333 | } |
| 5334 | -add_action( 'geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2 ); |
|
| 5335 | 5334 | \ No newline at end of file |
| 5335 | +add_action('geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2); |
|
| 5336 | 5336 | \ No newline at end of file |
@@ -33,265 +33,265 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | function geodir_add_nav_menu_items() |
| 35 | 35 | {
|
| 36 | - $items = ''; |
|
| 37 | - // apply filter to add more navigations // -Filter-Location-Manager |
|
| 38 | - |
|
| 39 | - if (get_option('geodir_show_listing_nav')) {
|
|
| 40 | - |
|
| 41 | - $menu_class = ''; |
|
| 42 | - if (geodir_is_page('listing'))
|
|
| 43 | - $menu_class = 'current-menu-item'; |
|
| 44 | - |
|
| 45 | - |
|
| 46 | - //SHOW LISTING OF POST TYPE IN MAIN NAVIGATION |
|
| 47 | - $post_types = geodir_get_posttypes('object');
|
|
| 48 | - $show_post_type_main_nav = get_option('geodir_add_posttype_in_main_nav');
|
|
| 49 | - if (!empty($post_types)) {
|
|
| 50 | - foreach ($post_types as $post_type => $args) {
|
|
| 51 | - if (!empty($show_post_type_main_nav)) {
|
|
| 52 | - if (in_array($post_type, $show_post_type_main_nav)) {
|
|
| 53 | - if (get_post_type_archive_link($post_type)) {
|
|
| 54 | - $menu_class = ''; |
|
| 55 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 56 | - $menu_class = 'current-menu-item'; |
|
| 57 | - /** |
|
| 58 | - * Filter the menu li class. |
|
| 59 | - * |
|
| 60 | - * @since 1.0.0 |
|
| 61 | - * @param string $menu_class The menu HTML class. |
|
| 62 | - */ |
|
| 63 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 64 | - /** |
|
| 65 | - * Filter the menu a class. |
|
| 66 | - * |
|
| 67 | - * @since 1.0.0 |
|
| 68 | - */ |
|
| 69 | - $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 70 | - $items .= '<li class="' . $li_class . '"> |
|
| 36 | + $items = ''; |
|
| 37 | + // apply filter to add more navigations // -Filter-Location-Manager |
|
| 38 | + |
|
| 39 | + if (get_option('geodir_show_listing_nav')) {
|
|
| 40 | + |
|
| 41 | + $menu_class = ''; |
|
| 42 | + if (geodir_is_page('listing'))
|
|
| 43 | + $menu_class = 'current-menu-item'; |
|
| 44 | + |
|
| 45 | + |
|
| 46 | + //SHOW LISTING OF POST TYPE IN MAIN NAVIGATION |
|
| 47 | + $post_types = geodir_get_posttypes('object');
|
|
| 48 | + $show_post_type_main_nav = get_option('geodir_add_posttype_in_main_nav');
|
|
| 49 | + if (!empty($post_types)) {
|
|
| 50 | + foreach ($post_types as $post_type => $args) {
|
|
| 51 | + if (!empty($show_post_type_main_nav)) {
|
|
| 52 | + if (in_array($post_type, $show_post_type_main_nav)) {
|
|
| 53 | + if (get_post_type_archive_link($post_type)) {
|
|
| 54 | + $menu_class = ''; |
|
| 55 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 56 | + $menu_class = 'current-menu-item'; |
|
| 57 | + /** |
|
| 58 | + * Filter the menu li class. |
|
| 59 | + * |
|
| 60 | + * @since 1.0.0 |
|
| 61 | + * @param string $menu_class The menu HTML class. |
|
| 62 | + */ |
|
| 63 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 64 | + /** |
|
| 65 | + * Filter the menu a class. |
|
| 66 | + * |
|
| 67 | + * @since 1.0.0 |
|
| 68 | + */ |
|
| 69 | + $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 70 | + $items .= '<li class="' . $li_class . '"> |
|
| 71 | 71 | <a href="' . get_post_type_archive_link($post_type) . '" class="' . $a_class . '"> |
| 72 | 72 | ' . __(geodir_utf8_ucfirst($args->labels->name),'geodirectory') . ' |
| 73 | 73 | </a> |
| 74 | 74 | </li>'; |
| 75 | - } |
|
| 76 | - } |
|
| 77 | - } |
|
| 78 | - } |
|
| 79 | - } |
|
| 80 | - //END LISTING OF POST TYPE IN MAIN NAVIGATION |
|
| 81 | - |
|
| 82 | - $view_posttype_listing = get_option('geodir_add_posttype_in_listing_nav');
|
|
| 83 | - $is_listing_sub_meny_exists = (!empty($view_posttype_listing)) ? true : false; |
|
| 84 | - if ($is_listing_sub_meny_exists) {
|
|
| 85 | - /** |
|
| 86 | - * Filter the menu li class. |
|
| 87 | - * |
|
| 88 | - * @since 1.0.0 |
|
| 89 | - * @param string $menu_class The menu HTML class. |
|
| 90 | - */ |
|
| 91 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
|
|
| 92 | - /** |
|
| 93 | - * Filter the sub menu li class. |
|
| 94 | - * |
|
| 95 | - * @since 1.0.0 |
|
| 96 | - * @param string $menu_class The menu HTML class. |
|
| 97 | - */ |
|
| 98 | - $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 99 | - /** |
|
| 100 | - * Filter the sub menu ul class. |
|
| 101 | - * |
|
| 102 | - * @since 1.0.0 |
|
| 103 | - */ |
|
| 104 | - $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
|
|
| 105 | - /** |
|
| 106 | - * Filter the menu a class. |
|
| 107 | - * |
|
| 108 | - * @since 1.0.0 |
|
| 109 | - */ |
|
| 110 | - $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 111 | - /** |
|
| 112 | - * Filter the sub menu a class. |
|
| 113 | - * |
|
| 114 | - * @since 1.0.0 |
|
| 115 | - */ |
|
| 116 | - $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
|
| 117 | - $items .= '<li class="' . $li_class . '"> |
|
| 75 | + } |
|
| 76 | + } |
|
| 77 | + } |
|
| 78 | + } |
|
| 79 | + } |
|
| 80 | + //END LISTING OF POST TYPE IN MAIN NAVIGATION |
|
| 81 | + |
|
| 82 | + $view_posttype_listing = get_option('geodir_add_posttype_in_listing_nav');
|
|
| 83 | + $is_listing_sub_meny_exists = (!empty($view_posttype_listing)) ? true : false; |
|
| 84 | + if ($is_listing_sub_meny_exists) {
|
|
| 85 | + /** |
|
| 86 | + * Filter the menu li class. |
|
| 87 | + * |
|
| 88 | + * @since 1.0.0 |
|
| 89 | + * @param string $menu_class The menu HTML class. |
|
| 90 | + */ |
|
| 91 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
|
|
| 92 | + /** |
|
| 93 | + * Filter the sub menu li class. |
|
| 94 | + * |
|
| 95 | + * @since 1.0.0 |
|
| 96 | + * @param string $menu_class The menu HTML class. |
|
| 97 | + */ |
|
| 98 | + $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 99 | + /** |
|
| 100 | + * Filter the sub menu ul class. |
|
| 101 | + * |
|
| 102 | + * @since 1.0.0 |
|
| 103 | + */ |
|
| 104 | + $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
|
|
| 105 | + /** |
|
| 106 | + * Filter the menu a class. |
|
| 107 | + * |
|
| 108 | + * @since 1.0.0 |
|
| 109 | + */ |
|
| 110 | + $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 111 | + /** |
|
| 112 | + * Filter the sub menu a class. |
|
| 113 | + * |
|
| 114 | + * @since 1.0.0 |
|
| 115 | + */ |
|
| 116 | + $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
|
| 117 | + $items .= '<li class="' . $li_class . '"> |
|
| 118 | 118 | <a href="#" class="' . $a_class . '">' . __('Listing', 'geodirectory') . '</a>
|
| 119 | 119 | <ul class="' . $sub_ul_class . '">'; |
| 120 | - $post_types = geodir_get_posttypes('object');
|
|
| 120 | + $post_types = geodir_get_posttypes('object');
|
|
| 121 | 121 | |
| 122 | - $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
|
|
| 122 | + $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
|
|
| 123 | 123 | |
| 124 | - if (!empty($post_types)) {
|
|
| 125 | - global $geodir_add_location_url; |
|
| 126 | - $geodir_add_location_url = true; |
|
| 127 | - foreach ($post_types as $post_type => $args) {
|
|
| 128 | - if (!empty($show_listing_post_types)) {
|
|
| 129 | - if (in_array($post_type, $show_listing_post_types)) {
|
|
| 130 | - if (get_post_type_archive_link($post_type)) {
|
|
| 124 | + if (!empty($post_types)) {
|
|
| 125 | + global $geodir_add_location_url; |
|
| 126 | + $geodir_add_location_url = true; |
|
| 127 | + foreach ($post_types as $post_type => $args) {
|
|
| 128 | + if (!empty($show_listing_post_types)) {
|
|
| 129 | + if (in_array($post_type, $show_listing_post_types)) {
|
|
| 130 | + if (get_post_type_archive_link($post_type)) {
|
|
| 131 | 131 | |
| 132 | - $menu_class = ''; |
|
| 133 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 134 | - $menu_class = 'current-menu-item'; |
|
| 132 | + $menu_class = ''; |
|
| 133 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 134 | + $menu_class = 'current-menu-item'; |
|
| 135 | 135 | |
| 136 | - $items .= '<li class="' . $sub_li_class . '"> |
|
| 136 | + $items .= '<li class="' . $sub_li_class . '"> |
|
| 137 | 137 | <a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '"> |
| 138 | 138 | ' . __(geodir_utf8_ucfirst($args->labels->name),'geodirectory') . ' |
| 139 | 139 | </a> |
| 140 | 140 | </li>'; |
| 141 | - } |
|
| 142 | - } |
|
| 143 | - } |
|
| 144 | - } |
|
| 145 | - $geodir_add_location_url = NULL; |
|
| 146 | - } |
|
| 141 | + } |
|
| 142 | + } |
|
| 143 | + } |
|
| 144 | + } |
|
| 145 | + $geodir_add_location_url = NULL; |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | - $items .= ' </ul> '; |
|
| 149 | - /** |
|
| 150 | - * Filter called after the sub menu closing ul tag for dynamic added menu items. |
|
| 151 | - * |
|
| 152 | - * @since 1.5.9 |
|
| 153 | - */ |
|
| 154 | - $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 155 | - $items .= '</li>'; |
|
| 156 | - } |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - if (get_option('geodir_show_addlisting_nav')) {
|
|
| 160 | - |
|
| 161 | - $menu_class = ''; |
|
| 162 | - if (geodir_is_page('add-listing'))
|
|
| 163 | - $menu_class = 'current-menu-item'; |
|
| 164 | - |
|
| 165 | - //SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
|
| 166 | - $post_types = geodir_get_posttypes('object');
|
|
| 167 | - $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_main_nav');
|
|
| 168 | - $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 169 | - |
|
| 170 | - if (!empty($post_types)) {
|
|
| 171 | - foreach ($post_types as $post_type => $args) {
|
|
| 172 | - if (!empty($geodir_allow_posttype_frontend)) {
|
|
| 173 | - if (in_array($post_type, $geodir_allow_posttype_frontend)) {
|
|
| 174 | - if (!empty($show_add_listing_post_types_main_nav)) {
|
|
| 175 | - if (in_array($post_type, $show_add_listing_post_types_main_nav)) {
|
|
| 176 | - if (geodir_get_addlisting_link($post_type)) {
|
|
| 177 | - |
|
| 178 | - $menu_class = ''; |
|
| 179 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 180 | - $menu_class = 'current-menu-item'; |
|
| 181 | - /** |
|
| 182 | - * Filter the menu li class. |
|
| 183 | - * |
|
| 184 | - * @since 1.0.0 |
|
| 185 | - * @param string $menu_class The menu HTML class. |
|
| 186 | - */ |
|
| 187 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 188 | - /** |
|
| 189 | - * Filter the menu a class. |
|
| 190 | - * |
|
| 191 | - * @since 1.0.0 |
|
| 192 | - */ |
|
| 193 | - $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 194 | - $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
|
| 195 | - $items .= '<li class="' . $li_class . '"> |
|
| 148 | + $items .= ' </ul> '; |
|
| 149 | + /** |
|
| 150 | + * Filter called after the sub menu closing ul tag for dynamic added menu items. |
|
| 151 | + * |
|
| 152 | + * @since 1.5.9 |
|
| 153 | + */ |
|
| 154 | + $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 155 | + $items .= '</li>'; |
|
| 156 | + } |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + if (get_option('geodir_show_addlisting_nav')) {
|
|
| 160 | + |
|
| 161 | + $menu_class = ''; |
|
| 162 | + if (geodir_is_page('add-listing'))
|
|
| 163 | + $menu_class = 'current-menu-item'; |
|
| 164 | + |
|
| 165 | + //SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
|
| 166 | + $post_types = geodir_get_posttypes('object');
|
|
| 167 | + $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_main_nav');
|
|
| 168 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 169 | + |
|
| 170 | + if (!empty($post_types)) {
|
|
| 171 | + foreach ($post_types as $post_type => $args) {
|
|
| 172 | + if (!empty($geodir_allow_posttype_frontend)) {
|
|
| 173 | + if (in_array($post_type, $geodir_allow_posttype_frontend)) {
|
|
| 174 | + if (!empty($show_add_listing_post_types_main_nav)) {
|
|
| 175 | + if (in_array($post_type, $show_add_listing_post_types_main_nav)) {
|
|
| 176 | + if (geodir_get_addlisting_link($post_type)) {
|
|
| 177 | + |
|
| 178 | + $menu_class = ''; |
|
| 179 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 180 | + $menu_class = 'current-menu-item'; |
|
| 181 | + /** |
|
| 182 | + * Filter the menu li class. |
|
| 183 | + * |
|
| 184 | + * @since 1.0.0 |
|
| 185 | + * @param string $menu_class The menu HTML class. |
|
| 186 | + */ |
|
| 187 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 188 | + /** |
|
| 189 | + * Filter the menu a class. |
|
| 190 | + * |
|
| 191 | + * @since 1.0.0 |
|
| 192 | + */ |
|
| 193 | + $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 194 | + $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
|
| 195 | + $items .= '<li class="' . $li_class . '"> |
|
| 196 | 196 | <a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $a_class . '"> |
| 197 | 197 | ' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
|
| 198 | 198 | </a> |
| 199 | 199 | </li>'; |
| 200 | - } |
|
| 201 | - } |
|
| 202 | - } |
|
| 203 | - } |
|
| 204 | - } |
|
| 205 | - } |
|
| 206 | - } |
|
| 207 | - //END SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
|
| 208 | - } |
|
| 209 | - |
|
| 210 | - $view_add_posttype_listing = get_option('geodir_add_listing_link_add_listing_nav');
|
|
| 211 | - $is_add_listing_sub_meny_exists = (!empty($view_add_posttype_listing)) ? true : false; |
|
| 212 | - if ($is_add_listing_sub_meny_exists) {
|
|
| 213 | - |
|
| 214 | - if (get_option('geodir_show_addlisting_nav')) {
|
|
| 215 | - /** |
|
| 216 | - * Filter the menu li class. |
|
| 217 | - * |
|
| 218 | - * @since 1.0.0 |
|
| 219 | - * @param string $menu_class The menu HTML class. |
|
| 220 | - */ |
|
| 221 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
|
|
| 222 | - /** |
|
| 223 | - * Filter the sub menu li class. |
|
| 224 | - * |
|
| 225 | - * @since 1.0.0 |
|
| 226 | - * @param string $menu_class The menu HTML class. |
|
| 227 | - */ |
|
| 228 | - $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 229 | - /** |
|
| 230 | - * Filter the sub menu ul class. |
|
| 231 | - * |
|
| 232 | - * @since 1.0.0 |
|
| 233 | - */ |
|
| 234 | - $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
|
|
| 235 | - /** |
|
| 236 | - * Filter the menu a class. |
|
| 237 | - * |
|
| 238 | - * @since 1.0.0 |
|
| 239 | - */ |
|
| 240 | - $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 241 | - /** |
|
| 242 | - * Filter the sub menu a class. |
|
| 243 | - * |
|
| 244 | - * @since 1.0.0 |
|
| 245 | - */ |
|
| 246 | - $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
|
| 247 | - $items .= '<li class="' . $li_class . '"> |
|
| 200 | + } |
|
| 201 | + } |
|
| 202 | + } |
|
| 203 | + } |
|
| 204 | + } |
|
| 205 | + } |
|
| 206 | + } |
|
| 207 | + //END SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
|
| 208 | + } |
|
| 209 | + |
|
| 210 | + $view_add_posttype_listing = get_option('geodir_add_listing_link_add_listing_nav');
|
|
| 211 | + $is_add_listing_sub_meny_exists = (!empty($view_add_posttype_listing)) ? true : false; |
|
| 212 | + if ($is_add_listing_sub_meny_exists) {
|
|
| 213 | + |
|
| 214 | + if (get_option('geodir_show_addlisting_nav')) {
|
|
| 215 | + /** |
|
| 216 | + * Filter the menu li class. |
|
| 217 | + * |
|
| 218 | + * @since 1.0.0 |
|
| 219 | + * @param string $menu_class The menu HTML class. |
|
| 220 | + */ |
|
| 221 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
|
|
| 222 | + /** |
|
| 223 | + * Filter the sub menu li class. |
|
| 224 | + * |
|
| 225 | + * @since 1.0.0 |
|
| 226 | + * @param string $menu_class The menu HTML class. |
|
| 227 | + */ |
|
| 228 | + $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 229 | + /** |
|
| 230 | + * Filter the sub menu ul class. |
|
| 231 | + * |
|
| 232 | + * @since 1.0.0 |
|
| 233 | + */ |
|
| 234 | + $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
|
|
| 235 | + /** |
|
| 236 | + * Filter the menu a class. |
|
| 237 | + * |
|
| 238 | + * @since 1.0.0 |
|
| 239 | + */ |
|
| 240 | + $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 241 | + /** |
|
| 242 | + * Filter the sub menu a class. |
|
| 243 | + * |
|
| 244 | + * @since 1.0.0 |
|
| 245 | + */ |
|
| 246 | + $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
|
| 247 | + $items .= '<li class="' . $li_class . '"> |
|
| 248 | 248 | <a href="#" class="' . $a_class . '">' . __('Add Listing', 'geodirectory') . '</a>
|
| 249 | 249 | <ul class="' . $sub_ul_class . '">'; |
| 250 | 250 | |
| 251 | - $post_types = geodir_get_posttypes('object');
|
|
| 252 | - |
|
| 253 | - $show_add_listing_post_types = get_option('geodir_add_listing_link_add_listing_nav');
|
|
| 254 | - |
|
| 255 | - if (!empty($post_types)) {
|
|
| 256 | - foreach ($post_types as $post_type => $args) {
|
|
| 257 | - if (!empty($geodir_allow_posttype_frontend)) {
|
|
| 258 | - if (in_array($post_type, $geodir_allow_posttype_frontend)) {
|
|
| 259 | - if (!empty($show_add_listing_post_types)) {
|
|
| 260 | - if (in_array($post_type, $show_add_listing_post_types)) {
|
|
| 261 | - if (geodir_get_addlisting_link($post_type)) {
|
|
| 262 | - |
|
| 263 | - $menu_class = ''; |
|
| 264 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 265 | - $menu_class = 'current-menu-item'; |
|
| 266 | - /** |
|
| 267 | - * Filter the menu li class. |
|
| 268 | - * |
|
| 269 | - * @since 1.0.0 |
|
| 270 | - * @param string $menu_class The menu HTML class. |
|
| 271 | - */ |
|
| 272 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 273 | - $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
|
| 274 | - $items .= '<li class="' . $sub_li_class . '"> |
|
| 251 | + $post_types = geodir_get_posttypes('object');
|
|
| 252 | + |
|
| 253 | + $show_add_listing_post_types = get_option('geodir_add_listing_link_add_listing_nav');
|
|
| 254 | + |
|
| 255 | + if (!empty($post_types)) {
|
|
| 256 | + foreach ($post_types as $post_type => $args) {
|
|
| 257 | + if (!empty($geodir_allow_posttype_frontend)) {
|
|
| 258 | + if (in_array($post_type, $geodir_allow_posttype_frontend)) {
|
|
| 259 | + if (!empty($show_add_listing_post_types)) {
|
|
| 260 | + if (in_array($post_type, $show_add_listing_post_types)) {
|
|
| 261 | + if (geodir_get_addlisting_link($post_type)) {
|
|
| 262 | + |
|
| 263 | + $menu_class = ''; |
|
| 264 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 265 | + $menu_class = 'current-menu-item'; |
|
| 266 | + /** |
|
| 267 | + * Filter the menu li class. |
|
| 268 | + * |
|
| 269 | + * @since 1.0.0 |
|
| 270 | + * @param string $menu_class The menu HTML class. |
|
| 271 | + */ |
|
| 272 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 273 | + $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
|
| 274 | + $items .= '<li class="' . $sub_li_class . '"> |
|
| 275 | 275 | <a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $sub_a_class . '"> |
| 276 | 276 | ' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
|
| 277 | 277 | </a> |
| 278 | 278 | </li>'; |
| 279 | - } |
|
| 280 | - } |
|
| 281 | - } |
|
| 282 | - } |
|
| 283 | - } |
|
| 284 | - } |
|
| 285 | - } |
|
| 279 | + } |
|
| 280 | + } |
|
| 281 | + } |
|
| 282 | + } |
|
| 283 | + } |
|
| 284 | + } |
|
| 285 | + } |
|
| 286 | 286 | |
| 287 | - $items .= ' </ul> '; |
|
| 288 | - $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 289 | - $items .= '</li>'; |
|
| 287 | + $items .= ' </ul> '; |
|
| 288 | + $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 289 | + $items .= '</li>'; |
|
| 290 | 290 | |
| 291 | - } |
|
| 292 | - } |
|
| 293 | - // apply filter to add more navigations // -Filter-Location-Manager |
|
| 294 | - return $items; |
|
| 291 | + } |
|
| 292 | + } |
|
| 293 | + // apply filter to add more navigations // -Filter-Location-Manager |
|
| 294 | + return $items; |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | |
@@ -309,20 +309,20 @@ discard block |
||
| 309 | 309 | */ |
| 310 | 310 | function geodir_pagemenu_items($menu, $args) |
| 311 | 311 | {
|
| 312 | - $locations = get_nav_menu_locations(); |
|
| 313 | - $geodir_theme_location = get_option('geodir_theme_location_nav');
|
|
| 314 | - $geodir_theme_location_nav = array(); |
|
| 315 | - if (empty($locations) && empty($geodir_theme_location)) {
|
|
| 316 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 317 | - $geodir_theme_location_nav[] = $args['theme_location']; |
|
| 318 | - update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
|
|
| 319 | - } |
|
| 320 | - //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet. |
|
| 312 | + $locations = get_nav_menu_locations(); |
|
| 313 | + $geodir_theme_location = get_option('geodir_theme_location_nav');
|
|
| 314 | + $geodir_theme_location_nav = array(); |
|
| 315 | + if (empty($locations) && empty($geodir_theme_location)) {
|
|
| 316 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 317 | + $geodir_theme_location_nav[] = $args['theme_location']; |
|
| 318 | + update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
|
|
| 319 | + } |
|
| 320 | + //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet. |
|
| 321 | 321 | // $menu = str_replace("</ul></div>",geodir_add_nav_menu_items()."</ul></div>",$menu);
|
| 322 | - else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) |
|
| 323 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 322 | + else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) |
|
| 323 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 324 | 324 | |
| 325 | - return $menu; |
|
| 325 | + return $menu; |
|
| 326 | 326 | |
| 327 | 327 | } |
| 328 | 328 | |
@@ -342,18 +342,18 @@ discard block |
||
| 342 | 342 | function geodir_menu_items($items, $args) |
| 343 | 343 | {
|
| 344 | 344 | |
| 345 | - $location = $args->theme_location; |
|
| 345 | + $location = $args->theme_location; |
|
| 346 | 346 | |
| 347 | - $geodir_theme_location = get_option('geodir_theme_location_nav');
|
|
| 347 | + $geodir_theme_location = get_option('geodir_theme_location_nav');
|
|
| 348 | 348 | |
| 349 | - if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
|
|
| 349 | + if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
|
|
| 350 | 350 | |
| 351 | - $items = $items . geodir_add_nav_menu_items(); |
|
| 352 | - return $items; |
|
| 351 | + $items = $items . geodir_add_nav_menu_items(); |
|
| 352 | + return $items; |
|
| 353 | 353 | |
| 354 | - } else {
|
|
| 355 | - return $items; |
|
| 356 | - } |
|
| 354 | + } else {
|
|
| 355 | + return $items; |
|
| 356 | + } |
|
| 357 | 357 | } |
| 358 | 358 | |
| 359 | 359 | /** |
@@ -368,25 +368,25 @@ discard block |
||
| 368 | 368 | */ |
| 369 | 369 | function geodir_get_category_all_array() |
| 370 | 370 | {
|
| 371 | - global $wpdb; |
|
| 372 | - $return_array = array(); |
|
| 373 | - |
|
| 374 | - $taxonomies = geodir_get_taxonomies(); |
|
| 375 | - $taxonomies = implode("','", $taxonomies);
|
|
| 376 | - $taxonomies = "'" . $taxonomies . "'"; |
|
| 377 | - |
|
| 378 | - $pn_categories = $wpdb->get_results( |
|
| 379 | - $wpdb->prepare( |
|
| 380 | - "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy, $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name", |
|
| 381 | - array($wpdb->terms . term_id) |
|
| 382 | - ) |
|
| 383 | - ); |
|
| 384 | - |
|
| 385 | - foreach ($pn_categories as $pn_categories_obj) {
|
|
| 386 | - $return_array[] = array("id" => $pn_categories_obj->cat_ID,
|
|
| 387 | - "title" => $pn_categories_obj->name,); |
|
| 388 | - } |
|
| 389 | - return $return_array; |
|
| 371 | + global $wpdb; |
|
| 372 | + $return_array = array(); |
|
| 373 | + |
|
| 374 | + $taxonomies = geodir_get_taxonomies(); |
|
| 375 | + $taxonomies = implode("','", $taxonomies);
|
|
| 376 | + $taxonomies = "'" . $taxonomies . "'"; |
|
| 377 | + |
|
| 378 | + $pn_categories = $wpdb->get_results( |
|
| 379 | + $wpdb->prepare( |
|
| 380 | + "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy, $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name", |
|
| 381 | + array($wpdb->terms . term_id) |
|
| 382 | + ) |
|
| 383 | + ); |
|
| 384 | + |
|
| 385 | + foreach ($pn_categories as $pn_categories_obj) {
|
|
| 386 | + $return_array[] = array("id" => $pn_categories_obj->cat_ID,
|
|
| 387 | + "title" => $pn_categories_obj->name,); |
|
| 388 | + } |
|
| 389 | + return $return_array; |
|
| 390 | 390 | } |
| 391 | 391 | |
| 392 | 392 | |
@@ -402,49 +402,49 @@ discard block |
||
| 402 | 402 | * @return string The post type. |
| 403 | 403 | */ |
| 404 | 404 | function geodir_get_current_posttype() {
|
| 405 | - global $wp_query, $post, $geodir_post_type; |
|
| 405 | + global $wp_query, $post, $geodir_post_type; |
|
| 406 | 406 | |
| 407 | - $geodir_post_type = get_query_var('post_type');
|
|
| 407 | + $geodir_post_type = get_query_var('post_type');
|
|
| 408 | 408 | |
| 409 | - if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
|
|
| 410 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 411 | - $geodir_post_type = get_post_type((int)$_REQUEST['pid']); |
|
| 412 | - elseif (isset($_REQUEST['listing_type'])) |
|
| 413 | - $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']); |
|
| 414 | - } |
|
| 409 | + if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
|
|
| 410 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 411 | + $geodir_post_type = get_post_type((int)$_REQUEST['pid']); |
|
| 412 | + elseif (isset($_REQUEST['listing_type'])) |
|
| 413 | + $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']); |
|
| 414 | + } |
|
| 415 | 415 | |
| 416 | - if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
|
|
| 417 | - $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 416 | + if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
|
|
| 417 | + $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 418 | 418 | |
| 419 | - if (is_tax()) |
|
| 420 | - $geodir_post_type = geodir_get_taxonomy_posttype(); |
|
| 419 | + if (is_tax()) |
|
| 420 | + $geodir_post_type = geodir_get_taxonomy_posttype(); |
|
| 421 | 421 | |
| 422 | - // Retrive post type for map marker html ajax request on preview page. |
|
| 423 | - if (empty($geodir_post_type) && defined('DOING_AJAX') && !empty($post)) {
|
|
| 424 | - if (!empty($post->post_type)) {
|
|
| 425 | - $geodir_post_type = $post->post_type; |
|
| 426 | - } else if (!empty($post->listing_type)) {
|
|
| 427 | - $geodir_post_type = $post->listing_type; |
|
| 428 | - } |
|
| 429 | - } |
|
| 422 | + // Retrive post type for map marker html ajax request on preview page. |
|
| 423 | + if (empty($geodir_post_type) && defined('DOING_AJAX') && !empty($post)) {
|
|
| 424 | + if (!empty($post->post_type)) {
|
|
| 425 | + $geodir_post_type = $post->post_type; |
|
| 426 | + } else if (!empty($post->listing_type)) {
|
|
| 427 | + $geodir_post_type = $post->listing_type; |
|
| 428 | + } |
|
| 429 | + } |
|
| 430 | 430 | |
| 431 | - $all_postypes = geodir_get_posttypes(); |
|
| 432 | - $all_postypes = stripslashes_deep($all_postypes); |
|
| 431 | + $all_postypes = geodir_get_posttypes(); |
|
| 432 | + $all_postypes = stripslashes_deep($all_postypes); |
|
| 433 | 433 | |
| 434 | - if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) |
|
| 435 | - $geodir_post_type = ''; |
|
| 434 | + if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) |
|
| 435 | + $geodir_post_type = ''; |
|
| 436 | 436 | |
| 437 | - if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
|
|
| 438 | - $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 439 | - } |
|
| 437 | + if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
|
|
| 438 | + $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 439 | + } |
|
| 440 | 440 | |
| 441 | 441 | |
| 442 | - /** |
|
| 443 | - * Filter the default CPT return. |
|
| 444 | - * |
|
| 445 | - * @since 1.6.9 |
|
| 446 | - */ |
|
| 447 | - return apply_filters('geodir_get_current_posttype',$geodir_post_type);
|
|
| 442 | + /** |
|
| 443 | + * Filter the default CPT return. |
|
| 444 | + * |
|
| 445 | + * @since 1.6.9 |
|
| 446 | + */ |
|
| 447 | + return apply_filters('geodir_get_current_posttype',$geodir_post_type);
|
|
| 448 | 448 | } |
| 449 | 449 | |
| 450 | 450 | /** |
@@ -458,22 +458,22 @@ discard block |
||
| 458 | 458 | */ |
| 459 | 459 | function geodir_get_default_posttype() |
| 460 | 460 | {
|
| 461 | - $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) ); |
|
| 462 | - |
|
| 463 | - $stype = false; |
|
| 464 | - foreach ( $post_types as $post_type => $info ) {
|
|
| 465 | - global $wpdb; |
|
| 466 | - $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
| 467 | - if ( $has_posts ) {
|
|
| 468 | - $stype = $post_type; break; |
|
| 469 | - } |
|
| 470 | - } |
|
| 471 | - |
|
| 472 | - if(!$stype){
|
|
| 473 | - $stype = 'gd_place'; |
|
| 474 | - } |
|
| 475 | - |
|
| 476 | - return $stype; |
|
| 461 | + $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) ); |
|
| 462 | + |
|
| 463 | + $stype = false; |
|
| 464 | + foreach ( $post_types as $post_type => $info ) {
|
|
| 465 | + global $wpdb; |
|
| 466 | + $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
| 467 | + if ( $has_posts ) {
|
|
| 468 | + $stype = $post_type; break; |
|
| 469 | + } |
|
| 470 | + } |
|
| 471 | + |
|
| 472 | + if(!$stype){
|
|
| 473 | + $stype = 'gd_place'; |
|
| 474 | + } |
|
| 475 | + |
|
| 476 | + return $stype; |
|
| 477 | 477 | } |
| 478 | 478 | |
| 479 | 479 | /** |
@@ -487,21 +487,21 @@ discard block |
||
| 487 | 487 | */ |
| 488 | 488 | function geodir_get_posttypes($output = 'names') |
| 489 | 489 | {
|
| 490 | - $post_types = array(); |
|
| 491 | - $post_types = get_option('geodir_post_types');
|
|
| 492 | - $post_types = stripslashes_deep($post_types); |
|
| 493 | - if (!empty($post_types)) {
|
|
| 494 | - switch ($output): |
|
| 495 | - case 'object': |
|
| 496 | - case 'Object': |
|
| 497 | - $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types; |
|
| 498 | - break; |
|
| 499 | - case 'array': |
|
| 500 | - case 'Array': |
|
| 501 | - $post_types = (array)$post_types; |
|
| 502 | - break; |
|
| 490 | + $post_types = array(); |
|
| 491 | + $post_types = get_option('geodir_post_types');
|
|
| 492 | + $post_types = stripslashes_deep($post_types); |
|
| 493 | + if (!empty($post_types)) {
|
|
| 494 | + switch ($output): |
|
| 495 | + case 'object': |
|
| 496 | + case 'Object': |
|
| 497 | + $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types; |
|
| 498 | + break; |
|
| 499 | + case 'array': |
|
| 500 | + case 'Array': |
|
| 501 | + $post_types = (array)$post_types; |
|
| 502 | + break; |
|
| 503 | 503 | case 'options': |
| 504 | - $post_types = (array)$post_types; |
|
| 504 | + $post_types = (array)$post_types; |
|
| 505 | 505 | |
| 506 | 506 | $options = array(); |
| 507 | 507 | if (!empty($post_types)) {
|
@@ -510,17 +510,17 @@ discard block |
||
| 510 | 510 | } |
| 511 | 511 | } |
| 512 | 512 | $post_types = $options; |
| 513 | - break; |
|
| 514 | - default: |
|
| 515 | - $post_types = array_keys($post_types); |
|
| 516 | - break; |
|
| 517 | - endswitch; |
|
| 518 | - } |
|
| 519 | - |
|
| 520 | - if (!empty($post_types)) |
|
| 521 | - return $post_types; |
|
| 522 | - else |
|
| 523 | - return array(); |
|
| 513 | + break; |
|
| 514 | + default: |
|
| 515 | + $post_types = array_keys($post_types); |
|
| 516 | + break; |
|
| 517 | + endswitch; |
|
| 518 | + } |
|
| 519 | + |
|
| 520 | + if (!empty($post_types)) |
|
| 521 | + return $post_types; |
|
| 522 | + else |
|
| 523 | + return array(); |
|
| 524 | 524 | } |
| 525 | 525 | |
| 526 | 526 | /** |
@@ -533,104 +533,104 @@ discard block |
||
| 533 | 533 | */ |
| 534 | 534 | function geodir_get_posttype_info($post_type = '') |
| 535 | 535 | {
|
| 536 | - $post_types = array(); |
|
| 537 | - $post_types = get_option('geodir_post_types');
|
|
| 538 | - $post_types = stripslashes_deep($post_types); |
|
| 539 | - if (!empty($post_types) && $post_type != '') {
|
|
| 540 | - return $post_types[$post_type]; |
|
| 541 | - } else |
|
| 542 | - return false; |
|
| 536 | + $post_types = array(); |
|
| 537 | + $post_types = get_option('geodir_post_types');
|
|
| 538 | + $post_types = stripslashes_deep($post_types); |
|
| 539 | + if (!empty($post_types) && $post_type != '') {
|
|
| 540 | + return $post_types[$post_type]; |
|
| 541 | + } else |
|
| 542 | + return false; |
|
| 543 | 543 | } |
| 544 | 544 | |
| 545 | 545 | if (!function_exists('geodir_get_taxonomies')) {
|
| 546 | - /** |
|
| 547 | - * Get all custom taxonomies. |
|
| 548 | - * |
|
| 549 | - * @since 1.0.0 |
|
| 550 | - * @package GeoDirectory |
|
| 551 | - * @param string $post_type The post type. |
|
| 552 | - * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false. |
|
| 553 | - * @return array|bool Taxonomies on success. false on failure. |
|
| 554 | - */ |
|
| 555 | - function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false) {
|
|
| 556 | - $taxonomies = array(); |
|
| 557 | - $gd_taxonomies = array(); |
|
| 558 | - |
|
| 559 | - if ($taxonomies = get_option('geodir_taxonomies')) {
|
|
| 560 | - $gd_taxonomies = array_keys($taxonomies); |
|
| 561 | - |
|
| 562 | - if ($post_type != '') {
|
|
| 563 | - $gd_taxonomies = array(); |
|
| 564 | - } |
|
| 546 | + /** |
|
| 547 | + * Get all custom taxonomies. |
|
| 548 | + * |
|
| 549 | + * @since 1.0.0 |
|
| 550 | + * @package GeoDirectory |
|
| 551 | + * @param string $post_type The post type. |
|
| 552 | + * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false. |
|
| 553 | + * @return array|bool Taxonomies on success. false on failure. |
|
| 554 | + */ |
|
| 555 | + function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false) {
|
|
| 556 | + $taxonomies = array(); |
|
| 557 | + $gd_taxonomies = array(); |
|
| 558 | + |
|
| 559 | + if ($taxonomies = get_option('geodir_taxonomies')) {
|
|
| 560 | + $gd_taxonomies = array_keys($taxonomies); |
|
| 561 | + |
|
| 562 | + if ($post_type != '') {
|
|
| 563 | + $gd_taxonomies = array(); |
|
| 564 | + } |
|
| 565 | 565 | |
| 566 | - $i = 0; |
|
| 567 | - foreach ($taxonomies as $taxonomy => $args) {
|
|
| 568 | - if ($post_type != '' && $args['object_type'] == $post_type) {
|
|
| 569 | - $gd_taxonomies[] = $taxonomy; |
|
| 570 | - } |
|
| 566 | + $i = 0; |
|
| 567 | + foreach ($taxonomies as $taxonomy => $args) {
|
|
| 568 | + if ($post_type != '' && $args['object_type'] == $post_type) {
|
|
| 569 | + $gd_taxonomies[] = $taxonomy; |
|
| 570 | + } |
|
| 571 | 571 | |
| 572 | - if ($tages_taxonomies === false && substr($taxonomy , -5) == '_tags') {
|
|
| 573 | - if (array_search($taxonomy, $gd_taxonomies) !== false) {
|
|
| 574 | - unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]); |
|
| 575 | - } |
|
| 576 | - } |
|
| 577 | - } |
|
| 572 | + if ($tages_taxonomies === false && substr($taxonomy , -5) == '_tags') {
|
|
| 573 | + if (array_search($taxonomy, $gd_taxonomies) !== false) {
|
|
| 574 | + unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]); |
|
| 575 | + } |
|
| 576 | + } |
|
| 577 | + } |
|
| 578 | 578 | |
| 579 | - $gd_taxonomies = array_values($gd_taxonomies); |
|
| 580 | - } |
|
| 581 | - |
|
| 582 | - /** |
|
| 583 | - * Filter the taxonomies. |
|
| 584 | - * |
|
| 585 | - * @since 1.0.0 |
|
| 586 | - * @param array $gd_taxonomies The taxonomy array. |
|
| 587 | - */ |
|
| 588 | - $taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
|
|
| 589 | - |
|
| 590 | - if (!empty($taxonomies)) {
|
|
| 591 | - return $taxonomies; |
|
| 592 | - } else {
|
|
| 593 | - return false; |
|
| 594 | - } |
|
| 595 | - } |
|
| 579 | + $gd_taxonomies = array_values($gd_taxonomies); |
|
| 580 | + } |
|
| 581 | + |
|
| 582 | + /** |
|
| 583 | + * Filter the taxonomies. |
|
| 584 | + * |
|
| 585 | + * @since 1.0.0 |
|
| 586 | + * @param array $gd_taxonomies The taxonomy array. |
|
| 587 | + */ |
|
| 588 | + $taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
|
|
| 589 | + |
|
| 590 | + if (!empty($taxonomies)) {
|
|
| 591 | + return $taxonomies; |
|
| 592 | + } else {
|
|
| 593 | + return false; |
|
| 594 | + } |
|
| 595 | + } |
|
| 596 | 596 | } |
| 597 | 597 | |
| 598 | 598 | if (!function_exists(' geodir_get_categories_dl')) {
|
| 599 | - /** |
|
| 600 | - * Get categories dropdown HTML. |
|
| 601 | - * |
|
| 602 | - * @since 1.0.0 |
|
| 603 | - * @package GeoDirectory |
|
| 604 | - * @param string $post_type The post type. |
|
| 605 | - * @param string $selected The selected value. |
|
| 606 | - * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false. |
|
| 607 | - * @param bool $echo Prints the HTML when set to true. Default: true. |
|
| 608 | - * @return void|string Dropdown HTML. |
|
| 609 | - */ |
|
| 610 | - function geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true) |
|
| 611 | - {
|
|
| 612 | - |
|
| 613 | - $html = ''; |
|
| 614 | - $taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies); |
|
| 615 | - |
|
| 616 | - $categories = get_terms($taxonomies); |
|
| 617 | - |
|
| 618 | - $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
|
|
| 619 | - |
|
| 620 | - foreach ($categories as $category_obj) {
|
|
| 621 | - $select_opt = ''; |
|
| 622 | - if ($selected == $category_obj->term_id) {
|
|
| 623 | - $select_opt = 'selected="selected"'; |
|
| 624 | - } |
|
| 625 | - $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">' |
|
| 626 | - . geodir_utf8_ucfirst($category_obj->name) . '</option>'; |
|
| 627 | - } |
|
| 628 | - |
|
| 629 | - if ($echo) |
|
| 630 | - echo $html; |
|
| 631 | - else |
|
| 632 | - return $html; |
|
| 633 | - } |
|
| 599 | + /** |
|
| 600 | + * Get categories dropdown HTML. |
|
| 601 | + * |
|
| 602 | + * @since 1.0.0 |
|
| 603 | + * @package GeoDirectory |
|
| 604 | + * @param string $post_type The post type. |
|
| 605 | + * @param string $selected The selected value. |
|
| 606 | + * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false. |
|
| 607 | + * @param bool $echo Prints the HTML when set to true. Default: true. |
|
| 608 | + * @return void|string Dropdown HTML. |
|
| 609 | + */ |
|
| 610 | + function geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true) |
|
| 611 | + {
|
|
| 612 | + |
|
| 613 | + $html = ''; |
|
| 614 | + $taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies); |
|
| 615 | + |
|
| 616 | + $categories = get_terms($taxonomies); |
|
| 617 | + |
|
| 618 | + $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
|
|
| 619 | + |
|
| 620 | + foreach ($categories as $category_obj) {
|
|
| 621 | + $select_opt = ''; |
|
| 622 | + if ($selected == $category_obj->term_id) {
|
|
| 623 | + $select_opt = 'selected="selected"'; |
|
| 624 | + } |
|
| 625 | + $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">' |
|
| 626 | + . geodir_utf8_ucfirst($category_obj->name) . '</option>'; |
|
| 627 | + } |
|
| 628 | + |
|
| 629 | + if ($echo) |
|
| 630 | + echo $html; |
|
| 631 | + else |
|
| 632 | + return $html; |
|
| 633 | + } |
|
| 634 | 634 | } |
| 635 | 635 | |
| 636 | 636 | |
@@ -645,28 +645,28 @@ discard block |
||
| 645 | 645 | function geodir_get_listing_slug($object_type = '') |
| 646 | 646 | {
|
| 647 | 647 | |
| 648 | - $listing_slug = ''; |
|
| 648 | + $listing_slug = ''; |
|
| 649 | 649 | |
| 650 | - $post_types = get_option('geodir_post_types');
|
|
| 651 | - $taxonomies = get_option('geodir_taxonomies');
|
|
| 650 | + $post_types = get_option('geodir_post_types');
|
|
| 651 | + $taxonomies = get_option('geodir_taxonomies');
|
|
| 652 | 652 | |
| 653 | 653 | |
| 654 | - if ($object_type != '') {
|
|
| 655 | - if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
|
|
| 654 | + if ($object_type != '') {
|
|
| 655 | + if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
|
|
| 656 | 656 | |
| 657 | - $object_info = $post_types[$object_type]; |
|
| 658 | - $listing_slug = $object_info['listing_slug']; |
|
| 659 | - } elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
|
|
| 660 | - $object_info = $taxonomies[$object_type]; |
|
| 661 | - $listing_slug = $object_info['listing_slug']; |
|
| 662 | - } |
|
| 657 | + $object_info = $post_types[$object_type]; |
|
| 658 | + $listing_slug = $object_info['listing_slug']; |
|
| 659 | + } elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
|
|
| 660 | + $object_info = $taxonomies[$object_type]; |
|
| 661 | + $listing_slug = $object_info['listing_slug']; |
|
| 662 | + } |
|
| 663 | 663 | |
| 664 | - } |
|
| 664 | + } |
|
| 665 | 665 | |
| 666 | - if (!empty($listing_slug)) |
|
| 667 | - return $listing_slug; |
|
| 668 | - else |
|
| 669 | - return false; |
|
| 666 | + if (!empty($listing_slug)) |
|
| 667 | + return $listing_slug; |
|
| 668 | + else |
|
| 669 | + return false; |
|
| 670 | 670 | } |
| 671 | 671 | |
| 672 | 672 | |
@@ -681,212 +681,212 @@ discard block |
||
| 681 | 681 | */ |
| 682 | 682 | function geodir_get_taxonomy_posttype($taxonomy = '') |
| 683 | 683 | {
|
| 684 | - global $wp_query; |
|
| 685 | - |
|
| 686 | - $post_type = array(); |
|
| 687 | - $taxonomies = array(); |
|
| 688 | - |
|
| 689 | - if (!empty($taxonomy)) {
|
|
| 690 | - $taxonomies[] = $taxonomy; |
|
| 691 | - } elseif (isset($wp_query->tax_query->queries)) {
|
|
| 692 | - $tax_arr = $wp_query->tax_query->queries; |
|
| 693 | - //if tax query has 'relation' set then it will break wp_list_pluck so we remove it |
|
| 694 | - if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
|
|
| 695 | - $taxonomies = wp_list_pluck($tax_arr, 'taxonomy'); |
|
| 696 | - } |
|
| 697 | - |
|
| 698 | - if (!empty($taxonomies)) {
|
|
| 699 | - foreach (geodir_get_posttypes() as $pt) {
|
|
| 700 | - $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt); |
|
| 701 | - if (array_intersect($taxonomies, $object_taxonomies)) |
|
| 702 | - $post_type[] = $pt; |
|
| 703 | - } |
|
| 704 | - } |
|
| 705 | - |
|
| 706 | - if (!empty($post_type)) |
|
| 707 | - return $post_type[0]; |
|
| 708 | - else |
|
| 709 | - return false; |
|
| 684 | + global $wp_query; |
|
| 685 | + |
|
| 686 | + $post_type = array(); |
|
| 687 | + $taxonomies = array(); |
|
| 688 | + |
|
| 689 | + if (!empty($taxonomy)) {
|
|
| 690 | + $taxonomies[] = $taxonomy; |
|
| 691 | + } elseif (isset($wp_query->tax_query->queries)) {
|
|
| 692 | + $tax_arr = $wp_query->tax_query->queries; |
|
| 693 | + //if tax query has 'relation' set then it will break wp_list_pluck so we remove it |
|
| 694 | + if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
|
|
| 695 | + $taxonomies = wp_list_pluck($tax_arr, 'taxonomy'); |
|
| 696 | + } |
|
| 697 | + |
|
| 698 | + if (!empty($taxonomies)) {
|
|
| 699 | + foreach (geodir_get_posttypes() as $pt) {
|
|
| 700 | + $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt); |
|
| 701 | + if (array_intersect($taxonomies, $object_taxonomies)) |
|
| 702 | + $post_type[] = $pt; |
|
| 703 | + } |
|
| 704 | + } |
|
| 705 | + |
|
| 706 | + if (!empty($post_type)) |
|
| 707 | + return $post_type[0]; |
|
| 708 | + else |
|
| 709 | + return false; |
|
| 710 | 710 | } |
| 711 | 711 | |
| 712 | 712 | if (!function_exists('geodir_custom_taxonomy_walker')) {
|
| 713 | - /** |
|
| 714 | - * Custom taxonomy walker function. |
|
| 715 | - * |
|
| 716 | - * @since 1.0.0 |
|
| 717 | - * @package GeoDirectory |
|
| 718 | - * @param string $cat_taxonomy The taxonomy name. |
|
| 719 | - * @param int $cat_parent The parent term ID. |
|
| 720 | - * @param bool $hide_empty Hide empty taxonomies? Default: false. |
|
| 721 | - * @param int $pading CSS padding in pixels. |
|
| 722 | - * @return string|void taxonomy HTML. |
|
| 723 | - */ |
|
| 724 | - function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0) |
|
| 725 | - {
|
|
| 726 | - global $cat_display, $post_cat, $exclude_cats; |
|
| 727 | - |
|
| 728 | - $search_terms = trim($post_cat, ","); |
|
| 729 | - |
|
| 730 | - $search_terms = explode(",", $search_terms);
|
|
| 731 | - |
|
| 732 | - $cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
|
|
| 733 | - |
|
| 734 | - $display = ''; |
|
| 735 | - $onchange = ''; |
|
| 736 | - $term_check = ''; |
|
| 737 | - $main_list_class = ''; |
|
| 738 | - $out = ''; |
|
| 739 | - //If there are terms, start displaying |
|
| 740 | - if (count($cat_terms) > 0) {
|
|
| 741 | - //Displaying as a list |
|
| 742 | - $p = $pading * 20; |
|
| 743 | - $pading++; |
|
| 744 | - |
|
| 745 | - |
|
| 746 | - if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
|
|
| 747 | - if ($cat_parent == 0) {
|
|
| 748 | - $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display; |
|
| 749 | - $main_list_class = 'class="main_list_selecter"'; |
|
| 750 | - } else {
|
|
| 751 | - //$display = 'display:none'; |
|
| 752 | - $list_class = 'sub_list gd-sub-cats-list'; |
|
| 753 | - } |
|
| 754 | - } |
|
| 713 | + /** |
|
| 714 | + * Custom taxonomy walker function. |
|
| 715 | + * |
|
| 716 | + * @since 1.0.0 |
|
| 717 | + * @package GeoDirectory |
|
| 718 | + * @param string $cat_taxonomy The taxonomy name. |
|
| 719 | + * @param int $cat_parent The parent term ID. |
|
| 720 | + * @param bool $hide_empty Hide empty taxonomies? Default: false. |
|
| 721 | + * @param int $pading CSS padding in pixels. |
|
| 722 | + * @return string|void taxonomy HTML. |
|
| 723 | + */ |
|
| 724 | + function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0) |
|
| 725 | + {
|
|
| 726 | + global $cat_display, $post_cat, $exclude_cats; |
|
| 727 | + |
|
| 728 | + $search_terms = trim($post_cat, ","); |
|
| 729 | + |
|
| 730 | + $search_terms = explode(",", $search_terms);
|
|
| 731 | + |
|
| 732 | + $cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
|
|
| 733 | + |
|
| 734 | + $display = ''; |
|
| 735 | + $onchange = ''; |
|
| 736 | + $term_check = ''; |
|
| 737 | + $main_list_class = ''; |
|
| 738 | + $out = ''; |
|
| 739 | + //If there are terms, start displaying |
|
| 740 | + if (count($cat_terms) > 0) {
|
|
| 741 | + //Displaying as a list |
|
| 742 | + $p = $pading * 20; |
|
| 743 | + $pading++; |
|
| 744 | + |
|
| 745 | + |
|
| 746 | + if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
|
|
| 747 | + if ($cat_parent == 0) {
|
|
| 748 | + $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display; |
|
| 749 | + $main_list_class = 'class="main_list_selecter"'; |
|
| 750 | + } else {
|
|
| 751 | + //$display = 'display:none'; |
|
| 752 | + $list_class = 'sub_list gd-sub-cats-list'; |
|
| 753 | + } |
|
| 754 | + } |
|
| 755 | 755 | |
| 756 | - if ($cat_display == 'checkbox' || $cat_display == 'radio') {
|
|
| 757 | - $p = 0; |
|
| 758 | - $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">'; |
|
| 759 | - } |
|
| 756 | + if ($cat_display == 'checkbox' || $cat_display == 'radio') {
|
|
| 757 | + $p = 0; |
|
| 758 | + $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">'; |
|
| 759 | + } |
|
| 760 | 760 | |
| 761 | - foreach ($cat_terms as $cat_term) {
|
|
| 761 | + foreach ($cat_terms as $cat_term) {
|
|
| 762 | 762 | |
| 763 | - $checked = ''; |
|
| 763 | + $checked = ''; |
|
| 764 | 764 | |
| 765 | - if (in_array($cat_term->term_id, $search_terms)) {
|
|
| 766 | - if ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 767 | - $checked = 'selected="selected"'; |
|
| 768 | - else |
|
| 769 | - $checked = 'checked="checked"'; |
|
| 770 | - } |
|
| 765 | + if (in_array($cat_term->term_id, $search_terms)) {
|
|
| 766 | + if ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 767 | + $checked = 'selected="selected"'; |
|
| 768 | + else |
|
| 769 | + $checked = 'checked="checked"'; |
|
| 770 | + } |
|
| 771 | 771 | |
| 772 | - if ($cat_display == 'radio') |
|
| 773 | - $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>'; |
|
| 774 | - elseif ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 775 | - $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</option>'; |
|
| 772 | + if ($cat_display == 'radio') |
|
| 773 | + $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>'; |
|
| 774 | + elseif ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 775 | + $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</option>'; |
|
| 776 | 776 | |
| 777 | - else {
|
|
| 778 | - $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>'; |
|
| 779 | - } |
|
| 777 | + else {
|
|
| 778 | + $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>'; |
|
| 779 | + } |
|
| 780 | 780 | |
| 781 | - // Call recurson to print sub cats |
|
| 782 | - $out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading); |
|
| 781 | + // Call recurson to print sub cats |
|
| 782 | + $out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading); |
|
| 783 | 783 | |
| 784 | - } |
|
| 784 | + } |
|
| 785 | 785 | |
| 786 | - if ($cat_display == 'checkbox' || $cat_display == 'radio') |
|
| 787 | - $out .= '</div>'; |
|
| 786 | + if ($cat_display == 'checkbox' || $cat_display == 'radio') |
|
| 787 | + $out .= '</div>'; |
|
| 788 | 788 | |
| 789 | - return $out; |
|
| 790 | - } |
|
| 791 | - return; |
|
| 792 | - } |
|
| 789 | + return $out; |
|
| 790 | + } |
|
| 791 | + return; |
|
| 792 | + } |
|
| 793 | 793 | } |
| 794 | 794 | |
| 795 | 795 | if (!function_exists('geodir_custom_taxonomy_walker2')) {
|
| 796 | - /** |
|
| 797 | - * Custom taxonomy walker function. |
|
| 798 | - * |
|
| 799 | - * @since 1.0.0 |
|
| 800 | - * @package GeoDirectory |
|
| 801 | - * @global object $post WordPress Post object. |
|
| 802 | - * @global object $gd_session GeoDirectory Session object. |
|
| 803 | - * @param string $cat_taxonomy The taxonomy name. |
|
| 804 | - * @param string $cat_limit Number of categories to display. |
|
| 805 | - */ |
|
| 806 | - function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '') |
|
| 807 | - {
|
|
| 808 | - $post_category = ''; |
|
| 809 | - $post_category_str = ''; |
|
| 810 | - global $exclude_cats, $gd_session; |
|
| 811 | - |
|
| 812 | - $cat_exclude = ''; |
|
| 813 | - if (is_array($exclude_cats) && !empty($exclude_cats)) |
|
| 814 | - $cat_exclude = serialize($exclude_cats); |
|
| 815 | - |
|
| 816 | - if (isset($_REQUEST['backandedit'])) {
|
|
| 817 | - $post = (object)$gd_session->get('listing');
|
|
| 818 | - |
|
| 819 | - if (!is_array($post->post_category[$cat_taxonomy])) |
|
| 820 | - $post_category = $post->post_category[$cat_taxonomy]; |
|
| 821 | - |
|
| 822 | - $post_categories = $post->post_category_str; |
|
| 823 | - if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) |
|
| 824 | - $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 825 | - |
|
| 826 | - } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
|
|
| 827 | - global $post; |
|
| 828 | - |
|
| 829 | - $post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true); |
|
| 830 | - if (empty($post_category) && isset($post->{$cat_taxonomy})) {
|
|
| 831 | - $post_category = $post->{$cat_taxonomy};
|
|
| 832 | - } |
|
| 796 | + /** |
|
| 797 | + * Custom taxonomy walker function. |
|
| 798 | + * |
|
| 799 | + * @since 1.0.0 |
|
| 800 | + * @package GeoDirectory |
|
| 801 | + * @global object $post WordPress Post object. |
|
| 802 | + * @global object $gd_session GeoDirectory Session object. |
|
| 803 | + * @param string $cat_taxonomy The taxonomy name. |
|
| 804 | + * @param string $cat_limit Number of categories to display. |
|
| 805 | + */ |
|
| 806 | + function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '') |
|
| 807 | + {
|
|
| 808 | + $post_category = ''; |
|
| 809 | + $post_category_str = ''; |
|
| 810 | + global $exclude_cats, $gd_session; |
|
| 811 | + |
|
| 812 | + $cat_exclude = ''; |
|
| 813 | + if (is_array($exclude_cats) && !empty($exclude_cats)) |
|
| 814 | + $cat_exclude = serialize($exclude_cats); |
|
| 815 | + |
|
| 816 | + if (isset($_REQUEST['backandedit'])) {
|
|
| 817 | + $post = (object)$gd_session->get('listing');
|
|
| 818 | + |
|
| 819 | + if (!is_array($post->post_category[$cat_taxonomy])) |
|
| 820 | + $post_category = $post->post_category[$cat_taxonomy]; |
|
| 821 | + |
|
| 822 | + $post_categories = $post->post_category_str; |
|
| 823 | + if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) |
|
| 824 | + $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 825 | + |
|
| 826 | + } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
|
|
| 827 | + global $post; |
|
| 828 | + |
|
| 829 | + $post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true); |
|
| 830 | + if (empty($post_category) && isset($post->{$cat_taxonomy})) {
|
|
| 831 | + $post_category = $post->{$cat_taxonomy};
|
|
| 832 | + } |
|
| 833 | 833 | |
| 834 | - $post_categories = get_post_meta($post->ID, 'post_categories', true); |
|
| 834 | + $post_categories = get_post_meta($post->ID, 'post_categories', true); |
|
| 835 | 835 | |
| 836 | - if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
|
|
| 837 | - foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
|
|
| 838 | - if (is_numeric($cat_part)) {
|
|
| 839 | - $cat_part_arr[] = $cat_part; |
|
| 840 | - } |
|
| 841 | - } |
|
| 842 | - if (is_array($cat_part_arr)) {
|
|
| 843 | - $post_category = implode(',', $cat_part_arr);
|
|
| 844 | - } |
|
| 845 | - } |
|
| 836 | + if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
|
|
| 837 | + foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
|
|
| 838 | + if (is_numeric($cat_part)) {
|
|
| 839 | + $cat_part_arr[] = $cat_part; |
|
| 840 | + } |
|
| 841 | + } |
|
| 842 | + if (is_array($cat_part_arr)) {
|
|
| 843 | + $post_category = implode(',', $cat_part_arr);
|
|
| 844 | + } |
|
| 845 | + } |
|
| 846 | 846 | |
| 847 | - if (!empty($post_category)) {
|
|
| 848 | - $cat1 = array_filter(explode(',', $post_category));
|
|
| 849 | - $post_category = ',' . implode(',', $cat1) . ',';
|
|
| 847 | + if (!empty($post_category)) {
|
|
| 848 | + $cat1 = array_filter(explode(',', $post_category));
|
|
| 849 | + $post_category = ',' . implode(',', $cat1) . ',';
|
|
| 850 | 850 | |
| 851 | - } |
|
| 851 | + } |
|
| 852 | 852 | |
| 853 | - if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
|
|
| 853 | + if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
|
|
| 854 | 854 | |
| 855 | - $post_category_upd = explode(',', $post_category);
|
|
| 856 | - $post_category_change = ''; |
|
| 857 | - foreach ($post_category_upd as $cat) {
|
|
| 855 | + $post_category_upd = explode(',', $post_category);
|
|
| 856 | + $post_category_change = ''; |
|
| 857 | + foreach ($post_category_upd as $cat) {
|
|
| 858 | 858 | |
| 859 | - if (!in_array($cat, $exclude_cats) && $cat != '') {
|
|
| 860 | - $post_category_change .= ',' . $cat; |
|
| 861 | - } |
|
| 862 | - } |
|
| 863 | - $post_category = $post_category_change; |
|
| 864 | - } |
|
| 859 | + if (!in_array($cat, $exclude_cats) && $cat != '') {
|
|
| 860 | + $post_category_change .= ',' . $cat; |
|
| 861 | + } |
|
| 862 | + } |
|
| 863 | + $post_category = $post_category_change; |
|
| 864 | + } |
|
| 865 | 865 | |
| 866 | 866 | |
| 867 | - if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
|
| 868 | - $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 869 | - } |
|
| 870 | - } |
|
| 867 | + if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
|
| 868 | + $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 869 | + } |
|
| 870 | + } |
|
| 871 | 871 | |
| 872 | - echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']" />'; |
|
| 872 | + echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']" />'; |
|
| 873 | 873 | |
| 874 | - echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']" />'; |
|
| 874 | + echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']" />'; |
|
| 875 | 875 | |
| 876 | - echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']" />'; |
|
| 876 | + echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']" />'; |
|
| 877 | 877 | |
| 878 | 878 | |
| 879 | - ?> |
|
| 879 | + ?> |
|
| 880 | 880 | <div class="cat_sublist"> |
| 881 | 881 | <?php |
| 882 | 882 | |
| 883 | - $post_id = isset($post->ID) ? $post->ID : ''; |
|
| 883 | + $post_id = isset($post->ID) ? $post->ID : ''; |
|
| 884 | 884 | |
| 885 | - if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
|
|
| 885 | + if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
|
|
| 886 | 886 | |
| 887 | - geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories); |
|
| 888 | - } |
|
| 889 | - ?> |
|
| 887 | + geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories); |
|
| 888 | + } |
|
| 889 | + ?> |
|
| 890 | 890 | </div> |
| 891 | 891 | <script type="text/javascript"> |
| 892 | 892 | |
@@ -1009,22 +1009,22 @@ discard block |
||
| 1009 | 1009 | |
| 1010 | 1010 | </script> |
| 1011 | 1011 | <?php |
| 1012 | - if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
|
| 1013 | - $post_cat_str = $post_categories[$cat_taxonomy]; |
|
| 1014 | - $post_cat_array = explode("#", $post_cat_str);
|
|
| 1015 | - if (count($post_cat_array) >= $cat_limit && $cat_limit != 0) |
|
| 1016 | - $style = "display:none;"; |
|
| 1017 | - } |
|
| 1018 | - ?> |
|
| 1012 | + if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
|
| 1013 | + $post_cat_str = $post_categories[$cat_taxonomy]; |
|
| 1014 | + $post_cat_array = explode("#", $post_cat_str);
|
|
| 1015 | + if (count($post_cat_array) >= $cat_limit && $cat_limit != 0) |
|
| 1016 | + $style = "display:none;"; |
|
| 1017 | + } |
|
| 1018 | + ?> |
|
| 1019 | 1019 | <div class="main_cat_list" style=" <?php if (isset($style)) {
|
| 1020 | - echo $style; |
|
| 1021 | - }?> "> |
|
| 1020 | + echo $style; |
|
| 1021 | + }?> "> |
|
| 1022 | 1022 | <?php geodir_get_catlist($cat_taxonomy, 0); // print main categories list |
| 1023 | - ?> |
|
| 1023 | + ?> |
|
| 1024 | 1024 | </div> |
| 1025 | 1025 | <?php |
| 1026 | 1026 | |
| 1027 | - } |
|
| 1027 | + } |
|
| 1028 | 1028 | } |
| 1029 | 1029 | |
| 1030 | 1030 | /** |
@@ -1041,23 +1041,23 @@ discard block |
||
| 1041 | 1041 | */ |
| 1042 | 1042 | function geodir_addpost_categories_html($request_taxonomy, $parrent, $selected = false, $main_selected = true, $default = false, $exclude = '') |
| 1043 | 1043 | {
|
| 1044 | - global $exclude_cats; |
|
| 1044 | + global $exclude_cats; |
|
| 1045 | 1045 | |
| 1046 | - if ($exclude != '') {
|
|
| 1047 | - $exclude_cats = maybe_unserialize(base64_decode($exclude)); |
|
| 1046 | + if ($exclude != '') {
|
|
| 1047 | + $exclude_cats = maybe_unserialize(base64_decode($exclude)); |
|
| 1048 | 1048 | |
| 1049 | - if(is_array( $exclude_cats)){
|
|
| 1050 | - $exclude_cats = array_map( 'intval', $exclude_cats ); |
|
| 1051 | - }else{
|
|
| 1052 | - $exclude_cats = intval($exclude_cats); |
|
| 1053 | - } |
|
| 1049 | + if(is_array( $exclude_cats)){
|
|
| 1050 | + $exclude_cats = array_map( 'intval', $exclude_cats ); |
|
| 1051 | + }else{
|
|
| 1052 | + $exclude_cats = intval($exclude_cats); |
|
| 1053 | + } |
|
| 1054 | 1054 | |
| 1055 | - } |
|
| 1055 | + } |
|
| 1056 | 1056 | |
| 1057 | - if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) || |
|
| 1058 | - (!is_array($exclude_cats) || empty($exclude_cats)) |
|
| 1059 | - ) {
|
|
| 1060 | - ?> |
|
| 1057 | + if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) || |
|
| 1058 | + (!is_array($exclude_cats) || empty($exclude_cats)) |
|
| 1059 | + ) {
|
|
| 1060 | + ?> |
|
| 1061 | 1061 | |
| 1062 | 1062 | <?php $main_cat = get_term($parrent, $request_taxonomy); ?> |
| 1063 | 1063 | |
@@ -1086,8 +1086,8 @@ discard block |
||
| 1086 | 1086 | |
| 1087 | 1087 | <br/> |
| 1088 | 1088 | <?php |
| 1089 | - $cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
|
|
| 1090 | - if (!empty($cat_terms)) { ?>
|
|
| 1089 | + $cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
|
|
| 1090 | + if (!empty($cat_terms)) { ?>
|
|
| 1091 | 1091 | <span> <?php printf(__('Add listing in category', 'geodirectory')); ?></span>
|
| 1092 | 1092 | <?php geodir_get_catlist($request_taxonomy, $parrent, $selected) ?> |
| 1093 | 1093 | <?php } ?> |
@@ -1109,53 +1109,53 @@ discard block |
||
| 1109 | 1109 | function geodir_editpost_categories_html($request_taxonomy, $request_postid, $post_categories) |
| 1110 | 1110 | {
|
| 1111 | 1111 | |
| 1112 | - if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
|
|
| 1113 | - $post_cat_str = $post_categories[$request_taxonomy]; |
|
| 1114 | - $post_cat_array = explode("#", $post_cat_str);
|
|
| 1115 | - if (is_array($post_cat_array)) {
|
|
| 1116 | - $post_cat_array = array_unique( $post_cat_array ); |
|
| 1112 | + if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
|
|
| 1113 | + $post_cat_str = $post_categories[$request_taxonomy]; |
|
| 1114 | + $post_cat_array = explode("#", $post_cat_str);
|
|
| 1115 | + if (is_array($post_cat_array)) {
|
|
| 1116 | + $post_cat_array = array_unique( $post_cat_array ); |
|
| 1117 | 1117 | |
| 1118 | 1118 | foreach ($post_cat_array as $post_cat_html) {
|
| 1119 | 1119 | |
| 1120 | - $post_cat_info = explode(":", $post_cat_html);
|
|
| 1121 | - $post_maincat_str = $post_cat_info[0]; |
|
| 1120 | + $post_cat_info = explode(":", $post_cat_html);
|
|
| 1121 | + $post_maincat_str = $post_cat_info[0]; |
|
| 1122 | 1122 | |
| 1123 | - if (!empty($post_maincat_str)) {
|
|
| 1124 | - $post_maincat_info = explode(",", $post_maincat_str);
|
|
| 1125 | - $post_maincat_id = $post_maincat_info[0]; |
|
| 1126 | - ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false; |
|
| 1127 | - (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false; |
|
| 1128 | - } |
|
| 1129 | - $post_sub_catid = ''; |
|
| 1130 | - if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
|
| 1131 | - $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1132 | - } |
|
| 1123 | + if (!empty($post_maincat_str)) {
|
|
| 1124 | + $post_maincat_info = explode(",", $post_maincat_str);
|
|
| 1125 | + $post_maincat_id = $post_maincat_info[0]; |
|
| 1126 | + ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false; |
|
| 1127 | + (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false; |
|
| 1128 | + } |
|
| 1129 | + $post_sub_catid = ''; |
|
| 1130 | + if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
|
| 1131 | + $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1132 | + } |
|
| 1133 | 1133 | |
| 1134 | - geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
|
| 1134 | + geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
|
| 1135 | 1135 | |
| 1136 | - } |
|
| 1137 | - } else {
|
|
| 1136 | + } |
|
| 1137 | + } else {
|
|
| 1138 | 1138 | |
| 1139 | - $post_cat_info = explode(":", $post_cat_str);
|
|
| 1140 | - $post_maincat_str = $post_cat_info[0]; |
|
| 1139 | + $post_cat_info = explode(":", $post_cat_str);
|
|
| 1140 | + $post_maincat_str = $post_cat_info[0]; |
|
| 1141 | 1141 | |
| 1142 | - $post_sub_catid = ''; |
|
| 1142 | + $post_sub_catid = ''; |
|
| 1143 | 1143 | |
| 1144 | - if (!empty($post_maincat_str)) {
|
|
| 1145 | - $post_maincat_info = explode(",", $post_maincat_str);
|
|
| 1146 | - $post_maincat_id = $post_maincat_info[0]; |
|
| 1147 | - ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false; |
|
| 1148 | - (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false; |
|
| 1149 | - } |
|
| 1144 | + if (!empty($post_maincat_str)) {
|
|
| 1145 | + $post_maincat_info = explode(",", $post_maincat_str);
|
|
| 1146 | + $post_maincat_id = $post_maincat_info[0]; |
|
| 1147 | + ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false; |
|
| 1148 | + (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false; |
|
| 1149 | + } |
|
| 1150 | 1150 | |
| 1151 | - if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
|
| 1152 | - $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1153 | - } |
|
| 1151 | + if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
|
| 1152 | + $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1153 | + } |
|
| 1154 | 1154 | |
| 1155 | - geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
|
| 1155 | + geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
|
| 1156 | 1156 | |
| 1157 | - } |
|
| 1158 | - } |
|
| 1157 | + } |
|
| 1158 | + } |
|
| 1159 | 1159 | } |
| 1160 | 1160 | |
| 1161 | 1161 | /** |
@@ -1169,35 +1169,35 @@ discard block |
||
| 1169 | 1169 | */ |
| 1170 | 1170 | function geodir_get_catlist($cat_taxonomy, $parrent = 0, $selected = false) |
| 1171 | 1171 | {
|
| 1172 | - global $exclude_cats; |
|
| 1172 | + global $exclude_cats; |
|
| 1173 | 1173 | |
| 1174 | - $cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
|
|
| 1174 | + $cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
|
|
| 1175 | 1175 | |
| 1176 | - if (!empty($cat_terms)) {
|
|
| 1177 | - $onchange = ''; |
|
| 1178 | - $onchange = ' onchange="show_subcatlist(this.value, this)" '; |
|
| 1176 | + if (!empty($cat_terms)) {
|
|
| 1177 | + $onchange = ''; |
|
| 1178 | + $onchange = ' onchange="show_subcatlist(this.value, this)" '; |
|
| 1179 | 1179 | |
| 1180 | - $option_selected = ''; |
|
| 1181 | - if (!$selected) |
|
| 1182 | - $option_slected = ' selected="selected" '; |
|
| 1180 | + $option_selected = ''; |
|
| 1181 | + if (!$selected) |
|
| 1182 | + $option_slected = ' selected="selected" '; |
|
| 1183 | 1183 | |
| 1184 | - echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >'; |
|
| 1184 | + echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >'; |
|
| 1185 | 1185 | |
| 1186 | - echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
|
|
| 1186 | + echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
|
|
| 1187 | 1187 | |
| 1188 | - foreach ($cat_terms as $cat_term) {
|
|
| 1189 | - $option_selected = ''; |
|
| 1190 | - if ($selected == $cat_term->term_id) |
|
| 1191 | - $option_selected = ' selected="selected" '; |
|
| 1188 | + foreach ($cat_terms as $cat_term) {
|
|
| 1189 | + $option_selected = ''; |
|
| 1190 | + if ($selected == $cat_term->term_id) |
|
| 1191 | + $option_selected = ' selected="selected" '; |
|
| 1192 | 1192 | |
| 1193 | - // Count child terms |
|
| 1194 | - $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) ); |
|
| 1195 | - $has_child = !empty( $child_terms ) ? 't' : 'f'; |
|
| 1193 | + // Count child terms |
|
| 1194 | + $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) ); |
|
| 1195 | + $has_child = !empty( $child_terms ) ? 't' : 'f'; |
|
| 1196 | 1196 | |
| 1197 | - echo '<option ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . geodir_utf8_ucfirst($cat_term->name) . '</option>'; |
|
| 1198 | - } |
|
| 1199 | - echo '</select>'; |
|
| 1200 | - } |
|
| 1197 | + echo '<option ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . geodir_utf8_ucfirst($cat_term->name) . '</option>'; |
|
| 1198 | + } |
|
| 1199 | + echo '</select>'; |
|
| 1200 | + } |
|
| 1201 | 1201 | } |
| 1202 | 1202 | |
| 1203 | 1203 | /** |
@@ -1213,28 +1213,28 @@ discard block |
||
| 1213 | 1213 | */ |
| 1214 | 1214 | function geodir_custom_update_messages($messages) |
| 1215 | 1215 | {
|
| 1216 | - global $post, $post_ID; |
|
| 1217 | - |
|
| 1218 | - $post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
|
|
| 1219 | - |
|
| 1220 | - foreach ($post_types as $post_type => $post_object) {
|
|
| 1221 | - |
|
| 1222 | - $messages[$post_type] = array( |
|
| 1223 | - 0 => '', // Unused. Messages start at index 1. |
|
| 1224 | - 1 => sprintf(__('%s updated. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1225 | - 2 => __('Custom field updated.', 'geodirectory'),
|
|
| 1226 | - 3 => __('Custom field deleted.', 'geodirectory'),
|
|
| 1227 | - 4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
|
|
| 1228 | - 5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
|
|
| 1229 | - 6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1230 | - 7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
|
|
| 1231 | - 8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
|
| 1232 | - 9 => sprintf(__('%s scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, date_i18n(__('M j, Y @ G:i', 'geodirectory'), strtotime($post->post_date)), esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1233 | - 10 => sprintf(__('%s draft updated. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
|
| 1234 | - ); |
|
| 1235 | - } |
|
| 1236 | - |
|
| 1237 | - return $messages; |
|
| 1216 | + global $post, $post_ID; |
|
| 1217 | + |
|
| 1218 | + $post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
|
|
| 1219 | + |
|
| 1220 | + foreach ($post_types as $post_type => $post_object) {
|
|
| 1221 | + |
|
| 1222 | + $messages[$post_type] = array( |
|
| 1223 | + 0 => '', // Unused. Messages start at index 1. |
|
| 1224 | + 1 => sprintf(__('%s updated. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1225 | + 2 => __('Custom field updated.', 'geodirectory'),
|
|
| 1226 | + 3 => __('Custom field deleted.', 'geodirectory'),
|
|
| 1227 | + 4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
|
|
| 1228 | + 5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
|
|
| 1229 | + 6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1230 | + 7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
|
|
| 1231 | + 8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
|
| 1232 | + 9 => sprintf(__('%s scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, date_i18n(__('M j, Y @ G:i', 'geodirectory'), strtotime($post->post_date)), esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1233 | + 10 => sprintf(__('%s draft updated. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
|
| 1234 | + ); |
|
| 1235 | + } |
|
| 1236 | + |
|
| 1237 | + return $messages; |
|
| 1238 | 1238 | } |
| 1239 | 1239 | |
| 1240 | 1240 | |
@@ -1249,182 +1249,182 @@ discard block |
||
| 1249 | 1249 | function geodir_register_defaults() |
| 1250 | 1250 | {
|
| 1251 | 1251 | |
| 1252 | - global $wpdb; |
|
| 1253 | - |
|
| 1254 | - $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico'; |
|
| 1255 | - |
|
| 1256 | - if (!$listing_slug = get_option('geodir_listing_prefix'))
|
|
| 1257 | - $listing_slug = 'places'; |
|
| 1258 | - |
|
| 1259 | - /** |
|
| 1260 | - * Taxonomies |
|
| 1261 | - **/ |
|
| 1262 | - //if ( ! taxonomy_exists('gd_place_tags') )
|
|
| 1263 | - {
|
|
| 1264 | - |
|
| 1265 | - $gd_placetags = array(); |
|
| 1266 | - $gd_placetags['object_type'] = 'gd_place'; |
|
| 1267 | - $gd_placetags['listing_slug'] = $listing_slug . '/tags'; |
|
| 1268 | - $gd_placetags['args'] = array( |
|
| 1269 | - 'public' => true, |
|
| 1270 | - 'hierarchical' => false, |
|
| 1271 | - 'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
|
|
| 1272 | - 'query_var' => true, |
|
| 1273 | - |
|
| 1274 | - 'labels' => array( |
|
| 1275 | - 'name' => __('Place Tags', 'geodirectory'),
|
|
| 1276 | - 'singular_name' => __('Place Tag', 'geodirectory'),
|
|
| 1277 | - 'search_items' => __('Search Place Tags', 'geodirectory'),
|
|
| 1278 | - 'popular_items' => __('Popular Place Tags', 'geodirectory'),
|
|
| 1279 | - 'all_items' => __('All Place Tags', 'geodirectory'),
|
|
| 1280 | - 'edit_item' => __('Edit Place Tag', 'geodirectory'),
|
|
| 1281 | - 'update_item' => __('Update Place Tag', 'geodirectory'),
|
|
| 1282 | - 'add_new_item' => __('Add New Place Tag', 'geodirectory'),
|
|
| 1283 | - 'new_item_name' => __('New Place Tag Name', 'geodirectory'),
|
|
| 1284 | - 'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
|
|
| 1285 | - 'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
|
|
| 1286 | - 'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
|
|
| 1287 | - ), |
|
| 1288 | - ); |
|
| 1289 | - |
|
| 1290 | - |
|
| 1291 | - $geodir_taxonomies = get_option('geodir_taxonomies');
|
|
| 1292 | - $geodir_taxonomies['gd_place_tags'] = $gd_placetags; |
|
| 1293 | - update_option('geodir_taxonomies', $geodir_taxonomies);
|
|
| 1294 | - |
|
| 1295 | - |
|
| 1296 | - // Update post types and delete tmp options |
|
| 1297 | - flush_rewrite_rules(); |
|
| 1298 | - |
|
| 1299 | - } |
|
| 1300 | - |
|
| 1301 | - //if ( ! taxonomy_exists('gd_placecategory') )
|
|
| 1302 | - {
|
|
| 1303 | - |
|
| 1304 | - $gd_placecategory = array(); |
|
| 1305 | - $gd_placecategory['object_type'] = 'gd_place'; |
|
| 1306 | - $gd_placecategory['listing_slug'] = $listing_slug; |
|
| 1307 | - $gd_placecategory['args'] = array( |
|
| 1308 | - 'public' => true, |
|
| 1309 | - 'hierarchical' => true, |
|
| 1310 | - 'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
|
|
| 1311 | - 'query_var' => true, |
|
| 1312 | - 'labels' => array( |
|
| 1313 | - 'name' => __('Place Categories', 'geodirectory'),
|
|
| 1314 | - 'singular_name' => __('Place Category', 'geodirectory'),
|
|
| 1315 | - 'search_items' => __('Search Place Categories', 'geodirectory'),
|
|
| 1316 | - 'popular_items' => __('Popular Place Categories', 'geodirectory'),
|
|
| 1317 | - 'all_items' => __('All Place Categories', 'geodirectory'),
|
|
| 1318 | - 'edit_item' => __('Edit Place Category', 'geodirectory'),
|
|
| 1319 | - 'update_item' => __('Update Place Category', 'geodirectory'),
|
|
| 1320 | - 'add_new_item' => __('Add New Place Category', 'geodirectory'),
|
|
| 1321 | - 'new_item_name' => __('New Place Category', 'geodirectory'),
|
|
| 1322 | - 'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
|
|
| 1323 | - ), |
|
| 1324 | - ); |
|
| 1325 | - |
|
| 1326 | - |
|
| 1327 | - $geodir_taxonomies = get_option('geodir_taxonomies');
|
|
| 1328 | - $geodir_taxonomies['gd_placecategory'] = $gd_placecategory; |
|
| 1329 | - update_option('geodir_taxonomies', $geodir_taxonomies);
|
|
| 1330 | - |
|
| 1331 | - |
|
| 1332 | - flush_rewrite_rules(); |
|
| 1333 | - } |
|
| 1334 | - |
|
| 1335 | - /** |
|
| 1336 | - * Post Types |
|
| 1337 | - **/ |
|
| 1338 | - |
|
| 1339 | - //if ( ! post_type_exists('gd_place') )
|
|
| 1340 | - {
|
|
| 1341 | - |
|
| 1342 | - $labels = array( |
|
| 1343 | - 'name' => __('Places', 'geodirectory'),
|
|
| 1344 | - 'singular_name' => __('Place', 'geodirectory'),
|
|
| 1345 | - 'add_new' => __('Add New', 'geodirectory'),
|
|
| 1346 | - 'add_new_item' => __('Add New Place', 'geodirectory'),
|
|
| 1347 | - 'edit_item' => __('Edit Place', 'geodirectory'),
|
|
| 1348 | - 'new_item' => __('New Place', 'geodirectory'),
|
|
| 1349 | - 'view_item' => __('View Place', 'geodirectory'),
|
|
| 1350 | - 'search_items' => __('Search Places', 'geodirectory'),
|
|
| 1351 | - 'not_found' => __('No Place Found', 'geodirectory'),
|
|
| 1352 | - 'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
|
|
| 1353 | - |
|
| 1354 | - $place_default = array( |
|
| 1355 | - 'labels' => $labels, |
|
| 1356 | - 'can_export' => true, |
|
| 1357 | - 'capability_type' => 'post', |
|
| 1358 | - 'description' => 'Place post type.', |
|
| 1359 | - 'has_archive' => $listing_slug, |
|
| 1360 | - 'hierarchical' => false, |
|
| 1361 | - 'map_meta_cap' => true, |
|
| 1362 | - 'menu_icon' => $menu_icon, |
|
| 1363 | - 'public' => true, |
|
| 1364 | - 'query_var' => true, |
|
| 1365 | - 'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
|
|
| 1366 | - 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
|
|
| 1367 | - 'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
|
|
| 1368 | - |
|
| 1369 | - //Update custom post types |
|
| 1370 | - $geodir_post_types = get_option('geodir_post_types');
|
|
| 1371 | - $geodir_post_types['gd_place'] = $place_default; |
|
| 1372 | - update_option('geodir_post_types', $geodir_post_types);
|
|
| 1373 | - |
|
| 1374 | - // Update post types and delete tmp options |
|
| 1375 | - flush_rewrite_rules(); |
|
| 1376 | - } |
|
| 1377 | - |
|
| 1378 | - |
|
| 1379 | - geodir_register_taxonomies(); |
|
| 1380 | - geodir_register_post_types(); |
|
| 1381 | - |
|
| 1382 | - //die; |
|
| 1252 | + global $wpdb; |
|
| 1253 | + |
|
| 1254 | + $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico'; |
|
| 1255 | + |
|
| 1256 | + if (!$listing_slug = get_option('geodir_listing_prefix'))
|
|
| 1257 | + $listing_slug = 'places'; |
|
| 1258 | + |
|
| 1259 | + /** |
|
| 1260 | + * Taxonomies |
|
| 1261 | + **/ |
|
| 1262 | + //if ( ! taxonomy_exists('gd_place_tags') )
|
|
| 1263 | + {
|
|
| 1264 | + |
|
| 1265 | + $gd_placetags = array(); |
|
| 1266 | + $gd_placetags['object_type'] = 'gd_place'; |
|
| 1267 | + $gd_placetags['listing_slug'] = $listing_slug . '/tags'; |
|
| 1268 | + $gd_placetags['args'] = array( |
|
| 1269 | + 'public' => true, |
|
| 1270 | + 'hierarchical' => false, |
|
| 1271 | + 'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
|
|
| 1272 | + 'query_var' => true, |
|
| 1273 | + |
|
| 1274 | + 'labels' => array( |
|
| 1275 | + 'name' => __('Place Tags', 'geodirectory'),
|
|
| 1276 | + 'singular_name' => __('Place Tag', 'geodirectory'),
|
|
| 1277 | + 'search_items' => __('Search Place Tags', 'geodirectory'),
|
|
| 1278 | + 'popular_items' => __('Popular Place Tags', 'geodirectory'),
|
|
| 1279 | + 'all_items' => __('All Place Tags', 'geodirectory'),
|
|
| 1280 | + 'edit_item' => __('Edit Place Tag', 'geodirectory'),
|
|
| 1281 | + 'update_item' => __('Update Place Tag', 'geodirectory'),
|
|
| 1282 | + 'add_new_item' => __('Add New Place Tag', 'geodirectory'),
|
|
| 1283 | + 'new_item_name' => __('New Place Tag Name', 'geodirectory'),
|
|
| 1284 | + 'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
|
|
| 1285 | + 'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
|
|
| 1286 | + 'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
|
|
| 1287 | + ), |
|
| 1288 | + ); |
|
| 1289 | + |
|
| 1290 | + |
|
| 1291 | + $geodir_taxonomies = get_option('geodir_taxonomies');
|
|
| 1292 | + $geodir_taxonomies['gd_place_tags'] = $gd_placetags; |
|
| 1293 | + update_option('geodir_taxonomies', $geodir_taxonomies);
|
|
| 1294 | + |
|
| 1295 | + |
|
| 1296 | + // Update post types and delete tmp options |
|
| 1297 | + flush_rewrite_rules(); |
|
| 1298 | + |
|
| 1299 | + } |
|
| 1300 | + |
|
| 1301 | + //if ( ! taxonomy_exists('gd_placecategory') )
|
|
| 1302 | + {
|
|
| 1303 | + |
|
| 1304 | + $gd_placecategory = array(); |
|
| 1305 | + $gd_placecategory['object_type'] = 'gd_place'; |
|
| 1306 | + $gd_placecategory['listing_slug'] = $listing_slug; |
|
| 1307 | + $gd_placecategory['args'] = array( |
|
| 1308 | + 'public' => true, |
|
| 1309 | + 'hierarchical' => true, |
|
| 1310 | + 'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
|
|
| 1311 | + 'query_var' => true, |
|
| 1312 | + 'labels' => array( |
|
| 1313 | + 'name' => __('Place Categories', 'geodirectory'),
|
|
| 1314 | + 'singular_name' => __('Place Category', 'geodirectory'),
|
|
| 1315 | + 'search_items' => __('Search Place Categories', 'geodirectory'),
|
|
| 1316 | + 'popular_items' => __('Popular Place Categories', 'geodirectory'),
|
|
| 1317 | + 'all_items' => __('All Place Categories', 'geodirectory'),
|
|
| 1318 | + 'edit_item' => __('Edit Place Category', 'geodirectory'),
|
|
| 1319 | + 'update_item' => __('Update Place Category', 'geodirectory'),
|
|
| 1320 | + 'add_new_item' => __('Add New Place Category', 'geodirectory'),
|
|
| 1321 | + 'new_item_name' => __('New Place Category', 'geodirectory'),
|
|
| 1322 | + 'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
|
|
| 1323 | + ), |
|
| 1324 | + ); |
|
| 1325 | + |
|
| 1326 | + |
|
| 1327 | + $geodir_taxonomies = get_option('geodir_taxonomies');
|
|
| 1328 | + $geodir_taxonomies['gd_placecategory'] = $gd_placecategory; |
|
| 1329 | + update_option('geodir_taxonomies', $geodir_taxonomies);
|
|
| 1330 | + |
|
| 1331 | + |
|
| 1332 | + flush_rewrite_rules(); |
|
| 1333 | + } |
|
| 1334 | + |
|
| 1335 | + /** |
|
| 1336 | + * Post Types |
|
| 1337 | + **/ |
|
| 1338 | + |
|
| 1339 | + //if ( ! post_type_exists('gd_place') )
|
|
| 1340 | + {
|
|
| 1341 | + |
|
| 1342 | + $labels = array( |
|
| 1343 | + 'name' => __('Places', 'geodirectory'),
|
|
| 1344 | + 'singular_name' => __('Place', 'geodirectory'),
|
|
| 1345 | + 'add_new' => __('Add New', 'geodirectory'),
|
|
| 1346 | + 'add_new_item' => __('Add New Place', 'geodirectory'),
|
|
| 1347 | + 'edit_item' => __('Edit Place', 'geodirectory'),
|
|
| 1348 | + 'new_item' => __('New Place', 'geodirectory'),
|
|
| 1349 | + 'view_item' => __('View Place', 'geodirectory'),
|
|
| 1350 | + 'search_items' => __('Search Places', 'geodirectory'),
|
|
| 1351 | + 'not_found' => __('No Place Found', 'geodirectory'),
|
|
| 1352 | + 'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
|
|
| 1353 | + |
|
| 1354 | + $place_default = array( |
|
| 1355 | + 'labels' => $labels, |
|
| 1356 | + 'can_export' => true, |
|
| 1357 | + 'capability_type' => 'post', |
|
| 1358 | + 'description' => 'Place post type.', |
|
| 1359 | + 'has_archive' => $listing_slug, |
|
| 1360 | + 'hierarchical' => false, |
|
| 1361 | + 'map_meta_cap' => true, |
|
| 1362 | + 'menu_icon' => $menu_icon, |
|
| 1363 | + 'public' => true, |
|
| 1364 | + 'query_var' => true, |
|
| 1365 | + 'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
|
|
| 1366 | + 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
|
|
| 1367 | + 'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
|
|
| 1368 | + |
|
| 1369 | + //Update custom post types |
|
| 1370 | + $geodir_post_types = get_option('geodir_post_types');
|
|
| 1371 | + $geodir_post_types['gd_place'] = $place_default; |
|
| 1372 | + update_option('geodir_post_types', $geodir_post_types);
|
|
| 1373 | + |
|
| 1374 | + // Update post types and delete tmp options |
|
| 1375 | + flush_rewrite_rules(); |
|
| 1376 | + } |
|
| 1377 | + |
|
| 1378 | + |
|
| 1379 | + geodir_register_taxonomies(); |
|
| 1380 | + geodir_register_post_types(); |
|
| 1381 | + |
|
| 1382 | + //die; |
|
| 1383 | 1383 | |
| 1384 | 1384 | } |
| 1385 | 1385 | |
| 1386 | 1386 | $gd_wpml_get_languages = ""; |
| 1387 | 1387 | function gd_wpml_get_lang_from_url($url) {
|
| 1388 | - global $sitepress, $gd_wpml_get_languages; |
|
| 1388 | + global $sitepress, $gd_wpml_get_languages; |
|
| 1389 | 1389 | |
| 1390 | - if (geodir_is_wpml()) {
|
|
| 1391 | - return $sitepress->get_language_from_url($url); |
|
| 1392 | - } |
|
| 1390 | + if (geodir_is_wpml()) {
|
|
| 1391 | + return $sitepress->get_language_from_url($url); |
|
| 1392 | + } |
|
| 1393 | 1393 | |
| 1394 | - if (isset($_REQUEST['lang']) && $_REQUEST['lang']) {
|
|
| 1395 | - return $_REQUEST['lang']; |
|
| 1396 | - } |
|
| 1394 | + if (isset($_REQUEST['lang']) && $_REQUEST['lang']) {
|
|
| 1395 | + return $_REQUEST['lang']; |
|
| 1396 | + } |
|
| 1397 | 1397 | |
| 1398 | - $url = str_replace(array("http://","https://"),"",$url);
|
|
| 1398 | + $url = str_replace(array("http://","https://"),"",$url);
|
|
| 1399 | 1399 | |
| 1400 | - // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
|
|
| 1401 | - $site_url = str_replace(array("http://","https://"),"",site_url());
|
|
| 1400 | + // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
|
|
| 1401 | + $site_url = str_replace(array("http://","https://"),"",site_url());
|
|
| 1402 | 1402 | |
| 1403 | - $url = str_replace($site_url,"",$url); |
|
| 1403 | + $url = str_replace($site_url,"",$url); |
|
| 1404 | 1404 | |
| 1405 | - $segments = explode('/', trim($url, '/'));
|
|
| 1405 | + $segments = explode('/', trim($url, '/'));
|
|
| 1406 | 1406 | |
| 1407 | - if ($gd_wpml_get_languages) {
|
|
| 1408 | - $langs = $gd_wpml_get_languages; |
|
| 1409 | - } else {
|
|
| 1410 | - $gd_wpml_get_languages = $sitepress->get_active_languages(); |
|
| 1411 | - } |
|
| 1407 | + if ($gd_wpml_get_languages) {
|
|
| 1408 | + $langs = $gd_wpml_get_languages; |
|
| 1409 | + } else {
|
|
| 1410 | + $gd_wpml_get_languages = $sitepress->get_active_languages(); |
|
| 1411 | + } |
|
| 1412 | 1412 | |
| 1413 | - if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
|
|
| 1414 | - return $segments[0]; |
|
| 1415 | - } |
|
| 1413 | + if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
|
|
| 1414 | + return $segments[0]; |
|
| 1415 | + } |
|
| 1416 | 1416 | |
| 1417 | - return false; |
|
| 1417 | + return false; |
|
| 1418 | 1418 | } |
| 1419 | 1419 | |
| 1420 | 1420 | function gd_wpml_slug_translation_turned_on($post_type) {
|
| 1421 | 1421 | |
| 1422 | - global $sitepress; |
|
| 1423 | - $settings = $sitepress->get_settings(); |
|
| 1424 | - return isset($settings['posts_slug_translation']['types'][$post_type]) |
|
| 1425 | - && $settings['posts_slug_translation']['types'][$post_type] |
|
| 1426 | - && isset($settings['posts_slug_translation']['on']) |
|
| 1427 | - && $settings['posts_slug_translation']['on']; |
|
| 1422 | + global $sitepress; |
|
| 1423 | + $settings = $sitepress->get_settings(); |
|
| 1424 | + return isset($settings['posts_slug_translation']['types'][$post_type]) |
|
| 1425 | + && $settings['posts_slug_translation']['types'][$post_type] |
|
| 1426 | + && isset($settings['posts_slug_translation']['on']) |
|
| 1427 | + && $settings['posts_slug_translation']['on']; |
|
| 1428 | 1428 | } |
| 1429 | 1429 | |
| 1430 | 1430 | |
@@ -1451,162 +1451,162 @@ discard block |
||
| 1451 | 1451 | */ |
| 1452 | 1452 | function geodir_listing_permalink_structure($post_link, $post_obj, $leavename, $sample) |
| 1453 | 1453 | {
|
| 1454 | - //echo $post_link."<br />".$sample ; |
|
| 1454 | + //echo $post_link."<br />".$sample ; |
|
| 1455 | 1455 | |
| 1456 | 1456 | |
| 1457 | - global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache, $gd_cache_post; |
|
| 1458 | - if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
|
|
| 1459 | - if($post_obj->post_status == 'auto-draft' || $post_obj->post_status == 'draft' || $post_obj->post_status == 'pending'){return $post_link;}
|
|
| 1460 | - } elseif (isset($post_obj->post_status) && ($post_obj->post_status == 'auto-draft' || $post_obj->post_status == 'draft' || $post_obj->post_status == 'pending')) {
|
|
| 1461 | - return $post_link; |
|
| 1462 | - } else {
|
|
| 1463 | - $orig_post = $post; |
|
| 1464 | - $post = $post_obj; |
|
| 1465 | - } |
|
| 1457 | + global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache, $gd_cache_post; |
|
| 1458 | + if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
|
|
| 1459 | + if($post_obj->post_status == 'auto-draft' || $post_obj->post_status == 'draft' || $post_obj->post_status == 'pending'){return $post_link;}
|
|
| 1460 | + } elseif (isset($post_obj->post_status) && ($post_obj->post_status == 'auto-draft' || $post_obj->post_status == 'draft' || $post_obj->post_status == 'pending')) {
|
|
| 1461 | + return $post_link; |
|
| 1462 | + } else {
|
|
| 1463 | + $orig_post = $post; |
|
| 1464 | + $post = $post_obj; |
|
| 1465 | + } |
|
| 1466 | 1466 | |
| 1467 | 1467 | |
| 1468 | 1468 | |
| 1469 | - if (in_array($post->post_type, geodir_get_posttypes())) {//print_r($post );exit;
|
|
| 1469 | + if (in_array($post->post_type, geodir_get_posttypes())) {//print_r($post );exit;
|
|
| 1470 | 1470 | |
| 1471 | 1471 | |
| 1472 | - // if we dont have a GD post then try to grab it |
|
| 1473 | - if(!isset($post->default_category)){
|
|
| 1474 | - $gd_post = geodir_get_post_info($post->ID); |
|
| 1475 | - if(!empty($gd_post)){
|
|
| 1476 | - $post = $gd_post; |
|
| 1477 | - } |
|
| 1478 | - } |
|
| 1472 | + // if we dont have a GD post then try to grab it |
|
| 1473 | + if(!isset($post->default_category)){
|
|
| 1474 | + $gd_post = geodir_get_post_info($post->ID); |
|
| 1475 | + if(!empty($gd_post)){
|
|
| 1476 | + $post = $gd_post; |
|
| 1477 | + } |
|
| 1478 | + } |
|
| 1479 | 1479 | |
| 1480 | 1480 | |
| 1481 | - $post_types = get_option('geodir_post_types');
|
|
| 1482 | - $slug = $post_types[$post->post_type]['rewrite']['slug']; |
|
| 1481 | + $post_types = get_option('geodir_post_types');
|
|
| 1482 | + $slug = $post_types[$post->post_type]['rewrite']['slug']; |
|
| 1483 | 1483 | |
| 1484 | - // Alter the CPT slug if WPML is set to do so |
|
| 1485 | - if(geodir_wpml_is_post_type_translated($post->post_type)){
|
|
| 1486 | - if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
|
|
| 1484 | + // Alter the CPT slug if WPML is set to do so |
|
| 1485 | + if(geodir_wpml_is_post_type_translated($post->post_type)){
|
|
| 1486 | + if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
|
|
| 1487 | 1487 | |
| 1488 | - $org_slug = $slug; |
|
| 1489 | - $slug = apply_filters( 'wpml_translate_single_string', |
|
| 1490 | - $slug, |
|
| 1491 | - 'WordPress', |
|
| 1492 | - 'URL slug: ' . $slug, |
|
| 1493 | - $language_code); |
|
| 1488 | + $org_slug = $slug; |
|
| 1489 | + $slug = apply_filters( 'wpml_translate_single_string', |
|
| 1490 | + $slug, |
|
| 1491 | + 'WordPress', |
|
| 1492 | + 'URL slug: ' . $slug, |
|
| 1493 | + $language_code); |
|
| 1494 | 1494 | |
| 1495 | - if(!$slug){$slug = $org_slug;}
|
|
| 1495 | + if(!$slug){$slug = $org_slug;}
|
|
| 1496 | 1496 | |
| 1497 | - } |
|
| 1498 | - } |
|
| 1497 | + } |
|
| 1498 | + } |
|
| 1499 | 1499 | |
| 1500 | - if (function_exists('geodir_location_geo_home_link')) {
|
|
| 1501 | - remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
|
| 1502 | - } |
|
| 1500 | + if (function_exists('geodir_location_geo_home_link')) {
|
|
| 1501 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
|
| 1502 | + } |
|
| 1503 | 1503 | |
| 1504 | - // Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz. |
|
| 1505 | - $site_url = trailingslashit(get_bloginfo('url'));
|
|
| 1504 | + // Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz. |
|
| 1505 | + $site_url = trailingslashit(get_bloginfo('url'));
|
|
| 1506 | 1506 | |
| 1507 | - if (function_exists('geodir_location_geo_home_link')) {
|
|
| 1508 | - add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
|
|
| 1509 | - } |
|
| 1510 | - |
|
| 1511 | - $fix_url = strpos($post_link, $site_url) === 0 ? true : false; |
|
| 1512 | - if ($fix_url) {
|
|
| 1513 | - $post_link = str_replace($site_url, '', $post_link); |
|
| 1514 | - } |
|
| 1515 | - |
|
| 1516 | - $post_link = trailingslashit( |
|
| 1517 | - preg_replace( "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 ) |
|
| 1518 | - ); |
|
| 1519 | - |
|
| 1520 | - if ($fix_url) {
|
|
| 1521 | - $post_link = $site_url . $post_link; |
|
| 1522 | - } |
|
| 1523 | - |
|
| 1524 | - if (isset($comment_post_cache[$post->ID])) {
|
|
| 1525 | - $post = $comment_post_cache[$post->ID]; |
|
| 1526 | - } |
|
| 1527 | - if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
|
|
| 1528 | - $post_id = $post->ID; |
|
| 1529 | - if (isset($orig_post)) {
|
|
| 1530 | - $post = $orig_post; |
|
| 1531 | - } |
|
| 1532 | - return $gd_permalink_cache[$post_id]; |
|
| 1533 | - } |
|
| 1507 | + if (function_exists('geodir_location_geo_home_link')) {
|
|
| 1508 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
|
|
| 1509 | + } |
|
| 1510 | + |
|
| 1511 | + $fix_url = strpos($post_link, $site_url) === 0 ? true : false; |
|
| 1512 | + if ($fix_url) {
|
|
| 1513 | + $post_link = str_replace($site_url, '', $post_link); |
|
| 1514 | + } |
|
| 1534 | 1515 | |
| 1535 | - if (!isset($post->post_locations)) {
|
|
| 1536 | - $post_type = $post->post_type; |
|
| 1537 | - $ID = $post->ID; |
|
| 1538 | - $post2 = $wpdb->get_row( |
|
| 1539 | - $wpdb->prepare( |
|
| 1540 | - "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1541 | - array($post->ID) |
|
| 1542 | - ) |
|
| 1543 | - ); |
|
| 1516 | + $post_link = trailingslashit( |
|
| 1517 | + preg_replace( "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 ) |
|
| 1518 | + ); |
|
| 1544 | 1519 | |
| 1545 | - $post = (object)array_merge((array)$post, (array)$post2); |
|
| 1520 | + if ($fix_url) {
|
|
| 1521 | + $post_link = $site_url . $post_link; |
|
| 1522 | + } |
|
| 1546 | 1523 | |
| 1547 | - $comment_post_cache[$post->ID] = $post; |
|
| 1548 | - } |
|
| 1524 | + if (isset($comment_post_cache[$post->ID])) {
|
|
| 1525 | + $post = $comment_post_cache[$post->ID]; |
|
| 1526 | + } |
|
| 1527 | + if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
|
|
| 1528 | + $post_id = $post->ID; |
|
| 1529 | + if (isset($orig_post)) {
|
|
| 1530 | + $post = $orig_post; |
|
| 1531 | + } |
|
| 1532 | + return $gd_permalink_cache[$post_id]; |
|
| 1533 | + } |
|
| 1549 | 1534 | |
| 1535 | + if (!isset($post->post_locations)) {
|
|
| 1536 | + $post_type = $post->post_type; |
|
| 1537 | + $ID = $post->ID; |
|
| 1538 | + $post2 = $wpdb->get_row( |
|
| 1539 | + $wpdb->prepare( |
|
| 1540 | + "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1541 | + array($post->ID) |
|
| 1542 | + ) |
|
| 1543 | + ); |
|
| 1550 | 1544 | |
| 1545 | + $post = (object)array_merge((array)$post, (array)$post2); |
|
| 1551 | 1546 | |
| 1552 | - if (false !== strpos($post_link, '%gd_taxonomy%')) {
|
|
| 1547 | + $comment_post_cache[$post->ID] = $post; |
|
| 1548 | + } |
|
| 1553 | 1549 | |
| 1554 | - if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
|
|
| 1555 | - $location_request = ''; |
|
| 1556 | 1550 | |
| 1557 | 1551 | |
| 1558 | - if (!empty($post->post_locations)) {
|
|
| 1559 | - $geodir_arr_locations = explode(',', $post->post_locations);
|
|
| 1560 | - if (count($geodir_arr_locations) == 3) {
|
|
| 1561 | - $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
|
|
| 1562 | - $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1563 | - $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
|
|
| 1564 | - $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1565 | - $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
|
| 1566 | - $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1552 | + if (false !== strpos($post_link, '%gd_taxonomy%')) {
|
|
| 1567 | 1553 | |
| 1568 | - $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1569 | - 'region_slug' => $post->region_slug, |
|
| 1570 | - 'city_slug' => $post->city_slug |
|
| 1571 | - ); |
|
| 1554 | + if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
|
|
| 1555 | + $location_request = ''; |
|
| 1572 | 1556 | |
| 1573 | - } else |
|
| 1574 | - $post_location = geodir_get_location(); |
|
| 1575 | 1557 | |
| 1558 | + if (!empty($post->post_locations)) {
|
|
| 1559 | + $geodir_arr_locations = explode(',', $post->post_locations);
|
|
| 1560 | + if (count($geodir_arr_locations) == 3) {
|
|
| 1561 | + $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
|
|
| 1562 | + $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1563 | + $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
|
|
| 1564 | + $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1565 | + $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
|
| 1566 | + $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1576 | 1567 | |
| 1577 | - } else {
|
|
| 1568 | + $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1569 | + 'region_slug' => $post->region_slug, |
|
| 1570 | + 'city_slug' => $post->city_slug |
|
| 1571 | + ); |
|
| 1578 | 1572 | |
| 1579 | - $post_location_sql = $wpdb->get_results( |
|
| 1580 | - $wpdb->prepare( |
|
| 1581 | - "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1582 | - array($post->ID) |
|
| 1583 | - ) |
|
| 1584 | - ); |
|
| 1585 | - |
|
| 1586 | - if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
|
|
| 1587 | - |
|
| 1588 | - $geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
|
|
| 1589 | - if (count($geodir_arr_locations) == 3) {
|
|
| 1590 | - $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
|
|
| 1591 | - $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1592 | - $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
|
|
| 1593 | - $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1594 | - $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
|
| 1595 | - $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1596 | - |
|
| 1597 | - $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1598 | - 'region_slug' => $post->region_slug, |
|
| 1599 | - 'city_slug' => $post->city_slug |
|
| 1600 | - ); |
|
| 1573 | + } else |
|
| 1574 | + $post_location = geodir_get_location(); |
|
| 1601 | 1575 | |
| 1602 | - } |
|
| 1603 | - } else |
|
| 1604 | - $post_location = geodir_get_location(); |
|
| 1605 | - } |
|
| 1576 | + |
|
| 1577 | + } else {
|
|
| 1578 | + |
|
| 1579 | + $post_location_sql = $wpdb->get_results( |
|
| 1580 | + $wpdb->prepare( |
|
| 1581 | + "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1582 | + array($post->ID) |
|
| 1583 | + ) |
|
| 1584 | + ); |
|
| 1585 | + |
|
| 1586 | + if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
|
|
| 1587 | + |
|
| 1588 | + $geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
|
|
| 1589 | + if (count($geodir_arr_locations) == 3) {
|
|
| 1590 | + $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
|
|
| 1591 | + $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1592 | + $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
|
|
| 1593 | + $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1594 | + $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
|
| 1595 | + $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1596 | + |
|
| 1597 | + $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1598 | + 'region_slug' => $post->region_slug, |
|
| 1599 | + 'city_slug' => $post->city_slug |
|
| 1600 | + ); |
|
| 1601 | + |
|
| 1602 | + } |
|
| 1603 | + } else |
|
| 1604 | + $post_location = geodir_get_location(); |
|
| 1605 | + } |
|
| 1606 | 1606 | |
| 1607 | 1607 | |
| 1608 | - if (!empty($post_location)) {
|
|
| 1609 | - $country_slug = isset($post_location->country_slug) ? $post_location->country_slug : ''; |
|
| 1608 | + if (!empty($post_location)) {
|
|
| 1609 | + $country_slug = isset($post_location->country_slug) ? $post_location->country_slug : ''; |
|
| 1610 | 1610 | $region_slug = isset($post_location->region_slug) ? $post_location->region_slug : ''; |
| 1611 | 1611 | $city_slug = isset($post_location->city_slug) ? $post_location->city_slug : ''; |
| 1612 | 1612 | |
@@ -1624,89 +1624,89 @@ discard block |
||
| 1624 | 1624 | $location_slug[] = $city_slug; |
| 1625 | 1625 | |
| 1626 | 1626 | $location_request .= implode('/', $location_slug) . '/';
|
| 1627 | - } |
|
| 1628 | - } |
|
| 1627 | + } |
|
| 1628 | + } |
|
| 1629 | 1629 | |
| 1630 | - if (get_option('geodir_add_categories_url')) {
|
|
| 1630 | + if (get_option('geodir_add_categories_url')) {
|
|
| 1631 | 1631 | |
| 1632 | - $term_request = ''; |
|
| 1633 | - $taxonomies = geodir_get_taxonomies($post->post_type); |
|
| 1634 | - $taxonomies = !empty($taxonomies) && is_array($taxonomies) ? end($taxonomies) : ''; |
|
| 1632 | + $term_request = ''; |
|
| 1633 | + $taxonomies = geodir_get_taxonomies($post->post_type); |
|
| 1634 | + $taxonomies = !empty($taxonomies) && is_array($taxonomies) ? end($taxonomies) : ''; |
|
| 1635 | 1635 | |
| 1636 | - if (!empty($post->default_category)) {
|
|
| 1637 | - $post_terms = $post->default_category; |
|
| 1638 | - } else {
|
|
| 1639 | - $post_terms = ''; |
|
| 1640 | - |
|
| 1641 | - if(isset($_POST['post_default_category']) && $_POST['post_default_category']){
|
|
| 1642 | - $post_terms = absint($_POST['post_default_category']); |
|
| 1643 | - }elseif(isset($_POST['post_category'][$taxonomies]) && $_POST['post_category'][$taxonomies]) {
|
|
| 1644 | - $post_terms = is_array($_POST['post_category'][$taxonomies]) ? $_POST['post_category'][$taxonomies] : explode(",", trim($_POST['post_category'][$taxonomies], ","));
|
|
| 1645 | - $post_terms = !empty($post_terms) ? absint($post_terms[0]) : 0; |
|
| 1646 | - }elseif (isset($post->{$taxonomies})) {
|
|
| 1647 | - $post_terms = explode(",", trim($post->{$taxonomies}, ","));
|
|
| 1648 | - $post_terms = $post_terms[0]; |
|
| 1649 | - } |
|
| 1636 | + if (!empty($post->default_category)) {
|
|
| 1637 | + $post_terms = $post->default_category; |
|
| 1638 | + } else {
|
|
| 1639 | + $post_terms = ''; |
|
| 1640 | + |
|
| 1641 | + if(isset($_POST['post_default_category']) && $_POST['post_default_category']){
|
|
| 1642 | + $post_terms = absint($_POST['post_default_category']); |
|
| 1643 | + }elseif(isset($_POST['post_category'][$taxonomies]) && $_POST['post_category'][$taxonomies]) {
|
|
| 1644 | + $post_terms = is_array($_POST['post_category'][$taxonomies]) ? $_POST['post_category'][$taxonomies] : explode(",", trim($_POST['post_category'][$taxonomies], ","));
|
|
| 1645 | + $post_terms = !empty($post_terms) ? absint($post_terms[0]) : 0; |
|
| 1646 | + }elseif (isset($post->{$taxonomies})) {
|
|
| 1647 | + $post_terms = explode(",", trim($post->{$taxonomies}, ","));
|
|
| 1648 | + $post_terms = $post_terms[0]; |
|
| 1649 | + } |
|
| 1650 | 1650 | |
| 1651 | - if (!$post_terms) |
|
| 1652 | - $post_terms = geodir_get_post_meta($post->ID, 'default_category', true); |
|
| 1651 | + if (!$post_terms) |
|
| 1652 | + $post_terms = geodir_get_post_meta($post->ID, 'default_category', true); |
|
| 1653 | 1653 | |
| 1654 | - if (!$post_terms) {
|
|
| 1655 | - $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true); |
|
| 1654 | + if (!$post_terms) {
|
|
| 1655 | + $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true); |
|
| 1656 | 1656 | |
| 1657 | - if ($post_terms) {
|
|
| 1658 | - $post_terms = explode(",", trim($post_terms, ","));
|
|
| 1659 | - $post_terms = $post_terms[0]; |
|
| 1660 | - } |
|
| 1661 | - } |
|
| 1662 | - } |
|
| 1657 | + if ($post_terms) {
|
|
| 1658 | + $post_terms = explode(",", trim($post_terms, ","));
|
|
| 1659 | + $post_terms = $post_terms[0]; |
|
| 1660 | + } |
|
| 1661 | + } |
|
| 1662 | + } |
|
| 1663 | 1663 | |
| 1664 | - $term = get_term_by('id', $post_terms, $taxonomies);
|
|
| 1664 | + $term = get_term_by('id', $post_terms, $taxonomies);
|
|
| 1665 | 1665 | |
| 1666 | - if (!empty($term)) |
|
| 1667 | - $term_request = $term->slug; |
|
| 1668 | - //$term_request = $term->slug.'/'; |
|
| 1669 | - } |
|
| 1666 | + if (!empty($term)) |
|
| 1667 | + $term_request = $term->slug; |
|
| 1668 | + //$term_request = $term->slug.'/'; |
|
| 1669 | + } |
|
| 1670 | 1670 | |
| 1671 | - $request_term = ''; |
|
| 1672 | - $listingurl_separator = ''; |
|
| 1673 | - //$detailurl_separator = get_option('geodir_detailurl_separator');
|
|
| 1674 | - $detailurl_separator = ''; |
|
| 1675 | - if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
|
|
| 1676 | - $request_term = $location_request; |
|
| 1677 | - //$listingurl_separator = get_option('geodir_listingurl_separator');
|
|
| 1678 | - //$request_term .= $listingurl_separator.'/'.$term_request; |
|
| 1679 | - $request_term .= $term_request; |
|
| 1671 | + $request_term = ''; |
|
| 1672 | + $listingurl_separator = ''; |
|
| 1673 | + //$detailurl_separator = get_option('geodir_detailurl_separator');
|
|
| 1674 | + $detailurl_separator = ''; |
|
| 1675 | + if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
|
|
| 1676 | + $request_term = $location_request; |
|
| 1677 | + //$listingurl_separator = get_option('geodir_listingurl_separator');
|
|
| 1678 | + //$request_term .= $listingurl_separator.'/'.$term_request; |
|
| 1679 | + $request_term .= $term_request; |
|
| 1680 | 1680 | |
| 1681 | - } else {
|
|
| 1682 | - if (isset($location_request) && $location_request != '') $request_term = $location_request; |
|
| 1681 | + } else {
|
|
| 1682 | + if (isset($location_request) && $location_request != '') $request_term = $location_request; |
|
| 1683 | 1683 | |
| 1684 | - if (isset($term_request) && $term_request != '') $request_term .= $term_request; |
|
| 1685 | - } |
|
| 1686 | - $request_term = trim($request_term, '/'); |
|
| 1684 | + if (isset($term_request) && $term_request != '') $request_term .= $term_request; |
|
| 1685 | + } |
|
| 1686 | + $request_term = trim($request_term, '/'); |
|
| 1687 | 1687 | |
| 1688 | - // Fix with WPML the location terms added twice when CPT slug is translated. |
|
| 1689 | - if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
|
|
| 1690 | - $post_link = str_replace('%gd_taxonomy%/', '', $post_link);
|
|
| 1691 | - } |
|
| 1688 | + // Fix with WPML the location terms added twice when CPT slug is translated. |
|
| 1689 | + if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
|
|
| 1690 | + $post_link = str_replace('%gd_taxonomy%/', '', $post_link);
|
|
| 1691 | + } |
|
| 1692 | 1692 | |
| 1693 | - if (!empty($request_term)) |
|
| 1694 | - $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1695 | - else |
|
| 1696 | - $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1697 | - //echo $post_link ; |
|
| 1698 | - } |
|
| 1699 | - // temp cache the permalink |
|
| 1700 | - if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
|
|
| 1701 | - $gd_permalink_cache[$post->ID] = $post_link; |
|
| 1702 | - } |
|
| 1703 | - } |
|
| 1704 | - if (isset($orig_post)) {
|
|
| 1705 | - $post = $orig_post; |
|
| 1706 | - } |
|
| 1693 | + if (!empty($request_term)) |
|
| 1694 | + $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1695 | + else |
|
| 1696 | + $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1697 | + //echo $post_link ; |
|
| 1698 | + } |
|
| 1699 | + // temp cache the permalink |
|
| 1700 | + if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
|
|
| 1701 | + $gd_permalink_cache[$post->ID] = $post_link; |
|
| 1702 | + } |
|
| 1703 | + } |
|
| 1704 | + if (isset($orig_post)) {
|
|
| 1705 | + $post = $orig_post; |
|
| 1706 | + } |
|
| 1707 | 1707 | $gd_cache_post = $post; |
| 1708 | 1708 | |
| 1709 | - return $post_link; |
|
| 1709 | + return $post_link; |
|
| 1710 | 1710 | } |
| 1711 | 1711 | |
| 1712 | 1712 | /** |
@@ -1722,117 +1722,117 @@ discard block |
||
| 1722 | 1722 | * @return string The term link. |
| 1723 | 1723 | */ |
| 1724 | 1724 | function geodir_term_link($termlink, $term, $taxonomy) {
|
| 1725 | - $geodir_taxonomies = geodir_get_taxonomies('', true);
|
|
| 1725 | + $geodir_taxonomies = geodir_get_taxonomies('', true);
|
|
| 1726 | 1726 | |
| 1727 | - if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
|
|
| 1728 | - global $geodir_add_location_url, $gd_session; |
|
| 1729 | - $include_location = false; |
|
| 1730 | - $request_term = array(); |
|
| 1731 | - $add_location_url = get_option('geodir_add_location_url');
|
|
| 1732 | - $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
|
|
| 1727 | + if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
|
|
| 1728 | + global $geodir_add_location_url, $gd_session; |
|
| 1729 | + $include_location = false; |
|
| 1730 | + $request_term = array(); |
|
| 1731 | + $add_location_url = get_option('geodir_add_location_url');
|
|
| 1732 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
|
|
| 1733 | 1733 | |
| 1734 | - $listing_slug = geodir_get_listing_slug($taxonomy); |
|
| 1734 | + $listing_slug = geodir_get_listing_slug($taxonomy); |
|
| 1735 | 1735 | |
| 1736 | - if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
|
|
| 1737 | - if ($geodir_add_location_url && $add_location_url) {
|
|
| 1738 | - $include_location = true; |
|
| 1739 | - } |
|
| 1740 | - } elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
|
|
| 1741 | - $include_location = true; |
|
| 1742 | - } elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
|
|
| 1743 | - $include_location = true; |
|
| 1744 | - } |
|
| 1745 | - |
|
| 1746 | - if ($include_location) {
|
|
| 1747 | - global $post; |
|
| 1748 | - $location_terms = array(); |
|
| 1736 | + if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
|
|
| 1737 | + if ($geodir_add_location_url && $add_location_url) {
|
|
| 1738 | + $include_location = true; |
|
| 1739 | + } |
|
| 1740 | + } elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
|
|
| 1741 | + $include_location = true; |
|
| 1742 | + } elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
|
|
| 1743 | + $include_location = true; |
|
| 1744 | + } |
|
| 1745 | + |
|
| 1746 | + if ($include_location) {
|
|
| 1747 | + global $post; |
|
| 1748 | + $location_terms = array(); |
|
| 1749 | 1749 | |
| 1750 | - $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 1750 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 1751 | 1751 | |
| 1752 | - if (geodir_is_page('detail')) {
|
|
| 1753 | - if (!isset($post->country_slug) && !empty($post->post_locations)) {
|
|
| 1754 | - $post_locations = explode(',', $post->post_locations);
|
|
| 1755 | - |
|
| 1756 | - if (count($post_locations) == 3) {
|
|
| 1757 | - $post->city_slug = str_replace('[', '', $post_locations[0]);
|
|
| 1758 | - $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1759 | - $post->region_slug = str_replace('[', '', $post_locations[1]);
|
|
| 1760 | - $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1761 | - $post->country_slug = str_replace('[', '', $post_locations[2]);
|
|
| 1762 | - $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1763 | - } |
|
| 1764 | - } |
|
| 1752 | + if (geodir_is_page('detail')) {
|
|
| 1753 | + if (!isset($post->country_slug) && !empty($post->post_locations)) {
|
|
| 1754 | + $post_locations = explode(',', $post->post_locations);
|
|
| 1755 | + |
|
| 1756 | + if (count($post_locations) == 3) {
|
|
| 1757 | + $post->city_slug = str_replace('[', '', $post_locations[0]);
|
|
| 1758 | + $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1759 | + $post->region_slug = str_replace('[', '', $post_locations[1]);
|
|
| 1760 | + $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1761 | + $post->country_slug = str_replace('[', '', $post_locations[2]);
|
|
| 1762 | + $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1763 | + } |
|
| 1764 | + } |
|
| 1765 | 1765 | |
| 1766 | - if (isset($post->country_slug)) {
|
|
| 1767 | - $location_terms = array( |
|
| 1768 | - 'gd_country' => $post->country_slug, |
|
| 1769 | - 'gd_region' => $post->region_slug, |
|
| 1770 | - 'gd_city' => $post->city_slug |
|
| 1771 | - ); |
|
| 1766 | + if (isset($post->country_slug)) {
|
|
| 1767 | + $location_terms = array( |
|
| 1768 | + 'gd_country' => $post->country_slug, |
|
| 1769 | + 'gd_region' => $post->region_slug, |
|
| 1770 | + 'gd_city' => $post->city_slug |
|
| 1771 | + ); |
|
| 1772 | 1772 | |
| 1773 | - if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
|
|
| 1774 | - $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood; |
|
| 1775 | - } |
|
| 1776 | - } |
|
| 1777 | - } |
|
| 1773 | + if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
|
|
| 1774 | + $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood; |
|
| 1775 | + } |
|
| 1776 | + } |
|
| 1777 | + } |
|
| 1778 | 1778 | |
| 1779 | - if (empty($location_terms)) {
|
|
| 1780 | - $location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1781 | - } |
|
| 1779 | + if (empty($location_terms)) {
|
|
| 1780 | + $location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1781 | + } |
|
| 1782 | 1782 | |
| 1783 | - $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 1784 | - $location_terms = geodir_remove_location_terms($location_terms); |
|
| 1783 | + $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 1784 | + $location_terms = geodir_remove_location_terms($location_terms); |
|
| 1785 | 1785 | |
| 1786 | - if (!empty($location_terms)) {
|
|
| 1787 | - $url_separator = ''; |
|
| 1786 | + if (!empty($location_terms)) {
|
|
| 1787 | + $url_separator = ''; |
|
| 1788 | 1788 | |
| 1789 | - if (get_option('permalink_structure') != '') {
|
|
| 1790 | - $old_listing_slug = '/' . $listing_slug . '/'; |
|
| 1791 | - $request_term = implode("/", $location_terms);
|
|
| 1792 | - $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/'; |
|
| 1789 | + if (get_option('permalink_structure') != '') {
|
|
| 1790 | + $old_listing_slug = '/' . $listing_slug . '/'; |
|
| 1791 | + $request_term = implode("/", $location_terms);
|
|
| 1792 | + $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/'; |
|
| 1793 | 1793 | |
| 1794 | - $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug)); |
|
| 1795 | - } else {
|
|
| 1796 | - $termlink = geodir_getlink($termlink, $request_term); |
|
| 1797 | - } |
|
| 1798 | - } |
|
| 1799 | - } |
|
| 1794 | + $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug)); |
|
| 1795 | + } else {
|
|
| 1796 | + $termlink = geodir_getlink($termlink, $request_term); |
|
| 1797 | + } |
|
| 1798 | + } |
|
| 1799 | + } |
|
| 1800 | 1800 | |
| 1801 | - // Alter the CPT slug is WPML is set to do so |
|
| 1802 | - /* we can replace this with the below function |
|
| 1801 | + // Alter the CPT slug is WPML is set to do so |
|
| 1802 | + /* we can replace this with the below function |
|
| 1803 | 1803 | if(geodir_is_wpml()){
|
| 1804 | 1804 | global $sitepress; |
| 1805 | 1805 | $post_type = str_replace("category","",$taxonomy);
|
| 1806 | 1806 | $termlink = $sitepress->post_type_archive_link_filter( $termlink, $post_type); |
| 1807 | 1807 | }*/ |
| 1808 | 1808 | |
| 1809 | - // Alter the CPT slug if WPML is set to do so |
|
| 1810 | - if (geodir_is_wpml()) {
|
|
| 1811 | - $post_types = get_option('geodir_post_types');
|
|
| 1812 | - $post_type = str_replace("category","",$taxonomy);
|
|
| 1813 | - $post_type = str_replace("_tags","",$post_type);
|
|
| 1814 | - $slug = $post_types[$post_type]['rewrite']['slug']; |
|
| 1815 | - if (geodir_wpml_is_post_type_translated($post_type) && gd_wpml_slug_translation_turned_on($post_type)) {
|
|
| 1816 | - global $sitepress; |
|
| 1817 | - $default_lang = $sitepress->get_default_language(); |
|
| 1818 | - $language_code = gd_wpml_get_lang_from_url($termlink); |
|
| 1819 | - if (!$language_code ) {
|
|
| 1820 | - $language_code = $default_lang; |
|
| 1821 | - } |
|
| 1809 | + // Alter the CPT slug if WPML is set to do so |
|
| 1810 | + if (geodir_is_wpml()) {
|
|
| 1811 | + $post_types = get_option('geodir_post_types');
|
|
| 1812 | + $post_type = str_replace("category","",$taxonomy);
|
|
| 1813 | + $post_type = str_replace("_tags","",$post_type);
|
|
| 1814 | + $slug = $post_types[$post_type]['rewrite']['slug']; |
|
| 1815 | + if (geodir_wpml_is_post_type_translated($post_type) && gd_wpml_slug_translation_turned_on($post_type)) {
|
|
| 1816 | + global $sitepress; |
|
| 1817 | + $default_lang = $sitepress->get_default_language(); |
|
| 1818 | + $language_code = gd_wpml_get_lang_from_url($termlink); |
|
| 1819 | + if (!$language_code ) {
|
|
| 1820 | + $language_code = $default_lang; |
|
| 1821 | + } |
|
| 1822 | 1822 | |
| 1823 | - $org_slug = $slug; |
|
| 1824 | - $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
|
|
| 1823 | + $org_slug = $slug; |
|
| 1824 | + $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
|
|
| 1825 | 1825 | |
| 1826 | - if (!$slug) {
|
|
| 1827 | - $slug = $org_slug; |
|
| 1828 | - } |
|
| 1826 | + if (!$slug) {
|
|
| 1827 | + $slug = $org_slug; |
|
| 1828 | + } |
|
| 1829 | 1829 | |
| 1830 | - $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug ,$termlink, 1));
|
|
| 1831 | - } |
|
| 1832 | - } |
|
| 1833 | - } |
|
| 1830 | + $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug ,$termlink, 1));
|
|
| 1831 | + } |
|
| 1832 | + } |
|
| 1833 | + } |
|
| 1834 | 1834 | |
| 1835 | - return $termlink; |
|
| 1835 | + return $termlink; |
|
| 1836 | 1836 | } |
| 1837 | 1837 | |
| 1838 | 1838 | /** |
@@ -1858,14 +1858,14 @@ discard block |
||
| 1858 | 1858 | if (in_array($post_type, geodir_get_posttypes())) {
|
| 1859 | 1859 | if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
|
| 1860 | 1860 | if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
|
| 1861 | - $location_terms = array( |
|
| 1862 | - 'gd_country' => $post->country_slug, |
|
| 1863 | - 'gd_region' => $post->region_slug, |
|
| 1864 | - 'gd_city' => $post->city_slug |
|
| 1865 | - ); |
|
| 1866 | - } else {
|
|
| 1867 | - $location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1868 | - } |
|
| 1861 | + $location_terms = array( |
|
| 1862 | + 'gd_country' => $post->country_slug, |
|
| 1863 | + 'gd_region' => $post->region_slug, |
|
| 1864 | + 'gd_city' => $post->city_slug |
|
| 1865 | + ); |
|
| 1866 | + } else {
|
|
| 1867 | + $location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1868 | + } |
|
| 1869 | 1869 | |
| 1870 | 1870 | $location_terms = geodir_remove_location_terms($location_terms); |
| 1871 | 1871 | |
@@ -1897,17 +1897,17 @@ discard block |
||
| 1897 | 1897 | * @return void|string Label. |
| 1898 | 1898 | */ |
| 1899 | 1899 | function get_post_type_singular_label($post_type, $echo = false, $translate = false) {
|
| 1900 | - $obj_post_type = get_post_type_object($post_type); |
|
| 1901 | - if (!is_object($obj_post_type)) {
|
|
| 1902 | - return; |
|
| 1903 | - } |
|
| 1900 | + $obj_post_type = get_post_type_object($post_type); |
|
| 1901 | + if (!is_object($obj_post_type)) {
|
|
| 1902 | + return; |
|
| 1903 | + } |
|
| 1904 | 1904 | |
| 1905 | - $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name; |
|
| 1905 | + $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name; |
|
| 1906 | 1906 | |
| 1907 | - if ($echo) |
|
| 1908 | - echo $label; |
|
| 1909 | - else |
|
| 1910 | - return $label; |
|
| 1907 | + if ($echo) |
|
| 1908 | + echo $label; |
|
| 1909 | + else |
|
| 1910 | + return $label; |
|
| 1911 | 1911 | } |
| 1912 | 1912 | |
| 1913 | 1913 | /** |
@@ -1922,19 +1922,19 @@ discard block |
||
| 1922 | 1922 | * @return void|string Label. |
| 1923 | 1923 | */ |
| 1924 | 1924 | function get_post_type_plural_label($post_type, $echo = false, $translate = false) {
|
| 1925 | - $all_postypes = geodir_get_posttypes(); |
|
| 1925 | + $all_postypes = geodir_get_posttypes(); |
|
| 1926 | 1926 | |
| 1927 | - if (!in_array($post_type, $all_postypes)) |
|
| 1928 | - return false; |
|
| 1927 | + if (!in_array($post_type, $all_postypes)) |
|
| 1928 | + return false; |
|
| 1929 | 1929 | |
| 1930 | - $obj_post_type = get_post_type_object($post_type); |
|
| 1930 | + $obj_post_type = get_post_type_object($post_type); |
|
| 1931 | 1931 | |
| 1932 | - $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name; |
|
| 1932 | + $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name; |
|
| 1933 | 1933 | |
| 1934 | - if ($echo) |
|
| 1935 | - echo $label; |
|
| 1936 | - else |
|
| 1937 | - return $label; |
|
| 1934 | + if ($echo) |
|
| 1935 | + echo $label; |
|
| 1936 | + else |
|
| 1937 | + return $label; |
|
| 1938 | 1938 | } |
| 1939 | 1939 | |
| 1940 | 1940 | /** |
@@ -1952,51 +1952,51 @@ discard block |
||
| 1952 | 1952 | */ |
| 1953 | 1953 | function geodir_term_exists($term, $taxonomy = '', $parent = 0) |
| 1954 | 1954 | {
|
| 1955 | - global $wpdb; |
|
| 1956 | - |
|
| 1957 | - $select = "SELECT term_id FROM $wpdb->terms as t WHERE "; |
|
| 1958 | - $tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE "; |
|
| 1959 | - |
|
| 1960 | - if (is_int($term)) {
|
|
| 1961 | - if (0 == $term) |
|
| 1962 | - return 0; |
|
| 1963 | - $where = 't.term_id = %d'; |
|
| 1964 | - if (!empty($taxonomy)) |
|
| 1965 | - return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1966 | - else |
|
| 1967 | - return $wpdb->get_var($wpdb->prepare($select . $where, $term)); |
|
| 1968 | - } |
|
| 1955 | + global $wpdb; |
|
| 1956 | + |
|
| 1957 | + $select = "SELECT term_id FROM $wpdb->terms as t WHERE "; |
|
| 1958 | + $tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE "; |
|
| 1959 | + |
|
| 1960 | + if (is_int($term)) {
|
|
| 1961 | + if (0 == $term) |
|
| 1962 | + return 0; |
|
| 1963 | + $where = 't.term_id = %d'; |
|
| 1964 | + if (!empty($taxonomy)) |
|
| 1965 | + return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1966 | + else |
|
| 1967 | + return $wpdb->get_var($wpdb->prepare($select . $where, $term)); |
|
| 1968 | + } |
|
| 1969 | 1969 | |
| 1970 | - $term = trim(wp_unslash($term)); |
|
| 1970 | + $term = trim(wp_unslash($term)); |
|
| 1971 | 1971 | |
| 1972 | - if ('' === $slug = sanitize_title($term))
|
|
| 1973 | - return 0; |
|
| 1972 | + if ('' === $slug = sanitize_title($term))
|
|
| 1973 | + return 0; |
|
| 1974 | 1974 | |
| 1975 | - $where = 't.slug = %s'; |
|
| 1975 | + $where = 't.slug = %s'; |
|
| 1976 | 1976 | |
| 1977 | - $where_fields = array($slug); |
|
| 1978 | - if (!empty($taxonomy)) {
|
|
| 1979 | - $parent = (int)$parent; |
|
| 1980 | - if ($parent > 0) {
|
|
| 1981 | - $where_fields[] = $parent; |
|
| 1982 | - $else_where_fields[] = $parent; |
|
| 1983 | - $where .= ' AND tt.parent = %d'; |
|
| 1977 | + $where_fields = array($slug); |
|
| 1978 | + if (!empty($taxonomy)) {
|
|
| 1979 | + $parent = (int)$parent; |
|
| 1980 | + if ($parent > 0) {
|
|
| 1981 | + $where_fields[] = $parent; |
|
| 1982 | + $else_where_fields[] = $parent; |
|
| 1983 | + $where .= ' AND tt.parent = %d'; |
|
| 1984 | 1984 | |
| 1985 | - } |
|
| 1985 | + } |
|
| 1986 | 1986 | |
| 1987 | - $where_fields[] = $taxonomy; |
|
| 1987 | + $where_fields[] = $taxonomy; |
|
| 1988 | 1988 | |
| 1989 | 1989 | |
| 1990 | - if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
|
|
| 1991 | - return $result; |
|
| 1990 | + if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
|
|
| 1991 | + return $result; |
|
| 1992 | 1992 | |
| 1993 | - return false; |
|
| 1994 | - } |
|
| 1993 | + return false; |
|
| 1994 | + } |
|
| 1995 | 1995 | |
| 1996 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
|
|
| 1997 | - return $result; |
|
| 1996 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
|
|
| 1997 | + return $result; |
|
| 1998 | 1998 | |
| 1999 | - return false; |
|
| 1999 | + return false; |
|
| 2000 | 2000 | } |
| 2001 | 2001 | |
| 2002 | 2002 | /** |
@@ -2008,7 +2008,7 @@ discard block |
||
| 2008 | 2008 | function geodir_get_term_icon_rebuild() |
| 2009 | 2009 | {
|
| 2010 | 2010 | |
| 2011 | - update_option('gd_term_icons', '');
|
|
| 2011 | + update_option('gd_term_icons', '');
|
|
| 2012 | 2012 | |
| 2013 | 2013 | } |
| 2014 | 2014 | |
@@ -2026,61 +2026,61 @@ discard block |
||
| 2026 | 2026 | */ |
| 2027 | 2027 | function geodir_get_term_icon($term_id = false, $rebuild = false) |
| 2028 | 2028 | {
|
| 2029 | - global $wpdb; |
|
| 2030 | - if (!$rebuild) {
|
|
| 2031 | - $terms_icons = get_option('gd_term_icons');
|
|
| 2032 | - } else {
|
|
| 2033 | - $terms_icons = array(); |
|
| 2034 | - } |
|
| 2035 | - |
|
| 2036 | - if (empty($terms_icons)) {
|
|
| 2037 | - $terms_icons = array(); |
|
| 2038 | - $default_icon_url = get_option('geodir_default_marker_icon');
|
|
| 2039 | - $taxonomy = geodir_get_taxonomies(); |
|
| 2040 | - $post_types = geodir_get_posttypes(); |
|
| 2041 | - $tax_arr = array(); |
|
| 2042 | - foreach ($post_types as $post_type) {
|
|
| 2043 | - $tax_arr[] = "'" . $post_type . "category'"; |
|
| 2044 | - } |
|
| 2045 | - $tax_c = implode(',', $tax_arr);
|
|
| 2046 | - $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
|
|
| 2047 | - //$terms = get_terms( $taxonomy ); |
|
| 2048 | - |
|
| 2049 | - if($terms) {
|
|
| 2050 | - foreach ($terms as $term) {
|
|
| 2051 | - $post_type = str_replace("category", "", $term->taxonomy);
|
|
| 2052 | - $a_terms[$post_type][] = $term; |
|
| 2029 | + global $wpdb; |
|
| 2030 | + if (!$rebuild) {
|
|
| 2031 | + $terms_icons = get_option('gd_term_icons');
|
|
| 2032 | + } else {
|
|
| 2033 | + $terms_icons = array(); |
|
| 2034 | + } |
|
| 2053 | 2035 | |
| 2054 | - } |
|
| 2055 | - } |
|
| 2036 | + if (empty($terms_icons)) {
|
|
| 2037 | + $terms_icons = array(); |
|
| 2038 | + $default_icon_url = get_option('geodir_default_marker_icon');
|
|
| 2039 | + $taxonomy = geodir_get_taxonomies(); |
|
| 2040 | + $post_types = geodir_get_posttypes(); |
|
| 2041 | + $tax_arr = array(); |
|
| 2042 | + foreach ($post_types as $post_type) {
|
|
| 2043 | + $tax_arr[] = "'" . $post_type . "category'"; |
|
| 2044 | + } |
|
| 2045 | + $tax_c = implode(',', $tax_arr);
|
|
| 2046 | + $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
|
|
| 2047 | + //$terms = get_terms( $taxonomy ); |
|
| 2056 | 2048 | |
| 2057 | - if($a_terms) {
|
|
| 2058 | - foreach ($a_terms as $pt => $t2) {
|
|
| 2049 | + if($terms) {
|
|
| 2050 | + foreach ($terms as $term) {
|
|
| 2051 | + $post_type = str_replace("category", "", $term->taxonomy);
|
|
| 2052 | + $a_terms[$post_type][] = $term; |
|
| 2059 | 2053 | |
| 2060 | - foreach ($t2 as $term) {
|
|
| 2061 | - $term_icon = geodir_get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt); |
|
| 2062 | - if ($term_icon) {
|
|
| 2063 | - $term_icon_url = $term_icon["src"]; |
|
| 2064 | - } else {
|
|
| 2065 | - $term_icon_url = $default_icon_url; |
|
| 2066 | - } |
|
| 2067 | - $terms_icons[$term->term_id] = $term_icon_url; |
|
| 2068 | - } |
|
| 2069 | - } |
|
| 2070 | - } |
|
| 2054 | + } |
|
| 2055 | + } |
|
| 2056 | + |
|
| 2057 | + if($a_terms) {
|
|
| 2058 | + foreach ($a_terms as $pt => $t2) {
|
|
| 2071 | 2059 | |
| 2072 | - update_option('gd_term_icons', $terms_icons);
|
|
| 2073 | - } |
|
| 2060 | + foreach ($t2 as $term) {
|
|
| 2061 | + $term_icon = geodir_get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt); |
|
| 2062 | + if ($term_icon) {
|
|
| 2063 | + $term_icon_url = $term_icon["src"]; |
|
| 2064 | + } else {
|
|
| 2065 | + $term_icon_url = $default_icon_url; |
|
| 2066 | + } |
|
| 2067 | + $terms_icons[$term->term_id] = $term_icon_url; |
|
| 2068 | + } |
|
| 2069 | + } |
|
| 2070 | + } |
|
| 2074 | 2071 | |
| 2075 | - if ($term_id && isset($terms_icons[$term_id])) {
|
|
| 2076 | - return $terms_icons[$term_id]; |
|
| 2077 | - } elseif ($term_id && !isset($terms_icons[$term_id])) {
|
|
| 2078 | - return get_option('geodir_default_marker_icon');
|
|
| 2079 | - } |
|
| 2072 | + update_option('gd_term_icons', $terms_icons);
|
|
| 2073 | + } |
|
| 2074 | + |
|
| 2075 | + if ($term_id && isset($terms_icons[$term_id])) {
|
|
| 2076 | + return $terms_icons[$term_id]; |
|
| 2077 | + } elseif ($term_id && !isset($terms_icons[$term_id])) {
|
|
| 2078 | + return get_option('geodir_default_marker_icon');
|
|
| 2079 | + } |
|
| 2080 | 2080 | |
| 2081 | - if (is_ssl()) {
|
|
| 2082 | - $terms_icons = str_replace("http:","https:",$terms_icons );
|
|
| 2083 | - } |
|
| 2081 | + if (is_ssl()) {
|
|
| 2082 | + $terms_icons = str_replace("http:","https:",$terms_icons );
|
|
| 2083 | + } |
|
| 2084 | 2084 | |
| 2085 | - return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
|
|
| 2085 | + return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
|
|
| 2086 | 2086 | } |
| 2087 | 2087 | \ No newline at end of file |
@@ -60,16 +60,16 @@ discard block |
||
| 60 | 60 | * @since 1.0.0 |
| 61 | 61 | * @param string $menu_class The menu HTML class. |
| 62 | 62 | */ |
| 63 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 63 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
|
|
| 64 | 64 | /** |
| 65 | 65 | * Filter the menu a class. |
| 66 | 66 | * |
| 67 | 67 | * @since 1.0.0 |
| 68 | 68 | */ |
| 69 | 69 | $a_class = apply_filters('geodir_menu_a_class', '');
|
| 70 | - $items .= '<li class="' . $li_class . '"> |
|
| 71 | - <a href="' . get_post_type_archive_link($post_type) . '" class="' . $a_class . '"> |
|
| 72 | - ' . __(geodir_utf8_ucfirst($args->labels->name),'geodirectory') . ' |
|
| 70 | + $items .= '<li class="'.$li_class.'"> |
|
| 71 | + <a href="' . get_post_type_archive_link($post_type).'" class="'.$a_class.'"> |
|
| 72 | + ' . __(geodir_utf8_ucfirst($args->labels->name), 'geodirectory').' |
|
| 73 | 73 | </a> |
| 74 | 74 | </li>'; |
| 75 | 75 | } |
@@ -88,14 +88,14 @@ discard block |
||
| 88 | 88 | * @since 1.0.0 |
| 89 | 89 | * @param string $menu_class The menu HTML class. |
| 90 | 90 | */ |
| 91 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
|
|
| 91 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings '.$menu_class);
|
|
| 92 | 92 | /** |
| 93 | 93 | * Filter the sub menu li class. |
| 94 | 94 | * |
| 95 | 95 | * @since 1.0.0 |
| 96 | 96 | * @param string $menu_class The menu HTML class. |
| 97 | 97 | */ |
| 98 | - $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 98 | + $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item '.$menu_class);
|
|
| 99 | 99 | /** |
| 100 | 100 | * Filter the sub menu ul class. |
| 101 | 101 | * |
@@ -114,9 +114,9 @@ discard block |
||
| 114 | 114 | * @since 1.0.0 |
| 115 | 115 | */ |
| 116 | 116 | $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
| 117 | - $items .= '<li class="' . $li_class . '"> |
|
| 118 | - <a href="#" class="' . $a_class . '">' . __('Listing', 'geodirectory') . '</a>
|
|
| 119 | - <ul class="' . $sub_ul_class . '">'; |
|
| 117 | + $items .= '<li class="'.$li_class.'"> |
|
| 118 | + <a href="#" class="' . $a_class.'">'.__('Listing', 'geodirectory').'</a>
|
|
| 119 | + <ul class="' . $sub_ul_class.'">'; |
|
| 120 | 120 | $post_types = geodir_get_posttypes('object');
|
| 121 | 121 | |
| 122 | 122 | $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
|
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
| 134 | 134 | $menu_class = 'current-menu-item'; |
| 135 | 135 | |
| 136 | - $items .= '<li class="' . $sub_li_class . '"> |
|
| 137 | - <a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '"> |
|
| 138 | - ' . __(geodir_utf8_ucfirst($args->labels->name),'geodirectory') . ' |
|
| 136 | + $items .= '<li class="'.$sub_li_class.'"> |
|
| 137 | + <a href="' . get_post_type_archive_link($post_type).'" class="'.$sub_a_class.'"> |
|
| 138 | + ' . __(geodir_utf8_ucfirst($args->labels->name), 'geodirectory').' |
|
| 139 | 139 | </a> |
| 140 | 140 | </li>'; |
| 141 | 141 | } |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | * |
| 152 | 152 | * @since 1.5.9 |
| 153 | 153 | */ |
| 154 | - $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 154 | + $items .= apply_filters('geodir_menu_after_sub_ul', '');
|
|
| 155 | 155 | $items .= '</li>'; |
| 156 | 156 | } |
| 157 | 157 | } |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | * @since 1.0.0 |
| 185 | 185 | * @param string $menu_class The menu HTML class. |
| 186 | 186 | */ |
| 187 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 187 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
|
|
| 188 | 188 | /** |
| 189 | 189 | * Filter the menu a class. |
| 190 | 190 | * |
@@ -192,9 +192,9 @@ discard block |
||
| 192 | 192 | */ |
| 193 | 193 | $a_class = apply_filters('geodir_menu_a_class', '');
|
| 194 | 194 | $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
| 195 | - $items .= '<li class="' . $li_class . '"> |
|
| 196 | - <a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $a_class . '"> |
|
| 197 | - ' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
|
|
| 195 | + $items .= '<li class="'.$li_class.'"> |
|
| 196 | + <a href="' . geodir_get_addlisting_link($post_type).'" class="'.$a_class.'"> |
|
| 197 | + ' . sprintf(__('Add %s', 'geodirectory'), $cpt_name).'
|
|
| 198 | 198 | </a> |
| 199 | 199 | </li>'; |
| 200 | 200 | } |
@@ -218,14 +218,14 @@ discard block |
||
| 218 | 218 | * @since 1.0.0 |
| 219 | 219 | * @param string $menu_class The menu HTML class. |
| 220 | 220 | */ |
| 221 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
|
|
| 221 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing '.$menu_class);
|
|
| 222 | 222 | /** |
| 223 | 223 | * Filter the sub menu li class. |
| 224 | 224 | * |
| 225 | 225 | * @since 1.0.0 |
| 226 | 226 | * @param string $menu_class The menu HTML class. |
| 227 | 227 | */ |
| 228 | - $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 228 | + $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item '.$menu_class);
|
|
| 229 | 229 | /** |
| 230 | 230 | * Filter the sub menu ul class. |
| 231 | 231 | * |
@@ -244,9 +244,9 @@ discard block |
||
| 244 | 244 | * @since 1.0.0 |
| 245 | 245 | */ |
| 246 | 246 | $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
| 247 | - $items .= '<li class="' . $li_class . '"> |
|
| 248 | - <a href="#" class="' . $a_class . '">' . __('Add Listing', 'geodirectory') . '</a>
|
|
| 249 | - <ul class="' . $sub_ul_class . '">'; |
|
| 247 | + $items .= '<li class="'.$li_class.'"> |
|
| 248 | + <a href="#" class="' . $a_class.'">'.__('Add Listing', 'geodirectory').'</a>
|
|
| 249 | + <ul class="' . $sub_ul_class.'">'; |
|
| 250 | 250 | |
| 251 | 251 | $post_types = geodir_get_posttypes('object');
|
| 252 | 252 | |
@@ -269,11 +269,11 @@ discard block |
||
| 269 | 269 | * @since 1.0.0 |
| 270 | 270 | * @param string $menu_class The menu HTML class. |
| 271 | 271 | */ |
| 272 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 272 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
|
|
| 273 | 273 | $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
| 274 | - $items .= '<li class="' . $sub_li_class . '"> |
|
| 275 | - <a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $sub_a_class . '"> |
|
| 276 | - ' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
|
|
| 274 | + $items .= '<li class="'.$sub_li_class.'"> |
|
| 275 | + <a href="' . geodir_get_addlisting_link($post_type).'" class="'.$sub_a_class.'"> |
|
| 276 | + ' . sprintf(__('Add %s', 'geodirectory'), $cpt_name).'
|
|
| 277 | 277 | </a> |
| 278 | 278 | </li>'; |
| 279 | 279 | } |
@@ -285,7 +285,7 @@ discard block |
||
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | $items .= ' </ul> '; |
| 288 | - $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 288 | + $items .= apply_filters('geodir_menu_after_sub_ul', '');
|
|
| 289 | 289 | $items .= '</li>'; |
| 290 | 290 | |
| 291 | 291 | } |
@@ -313,14 +313,14 @@ discard block |
||
| 313 | 313 | $geodir_theme_location = get_option('geodir_theme_location_nav');
|
| 314 | 314 | $geodir_theme_location_nav = array(); |
| 315 | 315 | if (empty($locations) && empty($geodir_theme_location)) {
|
| 316 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 316 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items()."</ul></div>", $menu);
|
|
| 317 | 317 | $geodir_theme_location_nav[] = $args['theme_location']; |
| 318 | 318 | update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
|
| 319 | 319 | } |
| 320 | 320 | //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet. |
| 321 | 321 | // $menu = str_replace("</ul></div>",geodir_add_nav_menu_items()."</ul></div>",$menu);
|
| 322 | 322 | else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) |
| 323 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 323 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items()."</ul></div>", $menu);
|
|
| 324 | 324 | |
| 325 | 325 | return $menu; |
| 326 | 326 | |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | |
| 349 | 349 | if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
|
| 350 | 350 | |
| 351 | - $items = $items . geodir_add_nav_menu_items(); |
|
| 351 | + $items = $items.geodir_add_nav_menu_items(); |
|
| 352 | 352 | return $items; |
| 353 | 353 | |
| 354 | 354 | } else {
|
@@ -373,12 +373,12 @@ discard block |
||
| 373 | 373 | |
| 374 | 374 | $taxonomies = geodir_get_taxonomies(); |
| 375 | 375 | $taxonomies = implode("','", $taxonomies);
|
| 376 | - $taxonomies = "'" . $taxonomies . "'"; |
|
| 376 | + $taxonomies = "'".$taxonomies."'"; |
|
| 377 | 377 | |
| 378 | 378 | $pn_categories = $wpdb->get_results( |
| 379 | 379 | $wpdb->prepare( |
| 380 | 380 | "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy, $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name", |
| 381 | - array($wpdb->terms . term_id) |
|
| 381 | + array($wpdb->terms.term_id) |
|
| 382 | 382 | ) |
| 383 | 383 | ); |
| 384 | 384 | |
@@ -408,7 +408,7 @@ discard block |
||
| 408 | 408 | |
| 409 | 409 | if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
|
| 410 | 410 | if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
| 411 | - $geodir_post_type = get_post_type((int)$_REQUEST['pid']); |
|
| 411 | + $geodir_post_type = get_post_type((int) $_REQUEST['pid']); |
|
| 412 | 412 | elseif (isset($_REQUEST['listing_type'])) |
| 413 | 413 | $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']); |
| 414 | 414 | } |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) |
| 435 | 435 | $geodir_post_type = ''; |
| 436 | 436 | |
| 437 | - if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
|
|
| 437 | + if (defined('DOING_AJAX') && isset($_REQUEST['stype'])) {
|
|
| 438 | 438 | $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
| 439 | 439 | } |
| 440 | 440 | |
@@ -444,7 +444,7 @@ discard block |
||
| 444 | 444 | * |
| 445 | 445 | * @since 1.6.9 |
| 446 | 446 | */ |
| 447 | - return apply_filters('geodir_get_current_posttype',$geodir_post_type);
|
|
| 447 | + return apply_filters('geodir_get_current_posttype', $geodir_post_type);
|
|
| 448 | 448 | } |
| 449 | 449 | |
| 450 | 450 | /** |
@@ -458,18 +458,18 @@ discard block |
||
| 458 | 458 | */ |
| 459 | 459 | function geodir_get_default_posttype() |
| 460 | 460 | {
|
| 461 | - $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) ); |
|
| 461 | + $post_types = apply_filters('geodir_get_default_posttype', geodir_get_posttypes('object'));
|
|
| 462 | 462 | |
| 463 | 463 | $stype = false; |
| 464 | - foreach ( $post_types as $post_type => $info ) {
|
|
| 464 | + foreach ($post_types as $post_type => $info) {
|
|
| 465 | 465 | global $wpdb; |
| 466 | - $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
| 467 | - if ( $has_posts ) {
|
|
| 466 | + $has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
|
|
| 467 | + if ($has_posts) {
|
|
| 468 | 468 | $stype = $post_type; break; |
| 469 | 469 | } |
| 470 | 470 | } |
| 471 | 471 | |
| 472 | - if(!$stype){
|
|
| 472 | + if (!$stype) {
|
|
| 473 | 473 | $stype = 'gd_place'; |
| 474 | 474 | } |
| 475 | 475 | |
@@ -494,14 +494,14 @@ discard block |
||
| 494 | 494 | switch ($output): |
| 495 | 495 | case 'object': |
| 496 | 496 | case 'Object': |
| 497 | - $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types; |
|
| 497 | + $post_types = json_decode(json_encode($post_types), FALSE); //(object)$post_types; |
|
| 498 | 498 | break; |
| 499 | 499 | case 'array': |
| 500 | 500 | case 'Array': |
| 501 | - $post_types = (array)$post_types; |
|
| 501 | + $post_types = (array) $post_types; |
|
| 502 | 502 | break; |
| 503 | 503 | case 'options': |
| 504 | - $post_types = (array)$post_types; |
|
| 504 | + $post_types = (array) $post_types; |
|
| 505 | 505 | |
| 506 | 506 | $options = array(); |
| 507 | 507 | if (!empty($post_types)) {
|
@@ -569,7 +569,7 @@ discard block |
||
| 569 | 569 | $gd_taxonomies[] = $taxonomy; |
| 570 | 570 | } |
| 571 | 571 | |
| 572 | - if ($tages_taxonomies === false && substr($taxonomy , -5) == '_tags') {
|
|
| 572 | + if ($tages_taxonomies === false && substr($taxonomy, -5) == '_tags') {
|
|
| 573 | 573 | if (array_search($taxonomy, $gd_taxonomies) !== false) {
|
| 574 | 574 | unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]); |
| 575 | 575 | } |
@@ -615,15 +615,15 @@ discard block |
||
| 615 | 615 | |
| 616 | 616 | $categories = get_terms($taxonomies); |
| 617 | 617 | |
| 618 | - $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
|
|
| 618 | + $html .= '<option value="0">'.__('All', 'geodirectory').'</option>';
|
|
| 619 | 619 | |
| 620 | 620 | foreach ($categories as $category_obj) {
|
| 621 | 621 | $select_opt = ''; |
| 622 | 622 | if ($selected == $category_obj->term_id) {
|
| 623 | 623 | $select_opt = 'selected="selected"'; |
| 624 | 624 | } |
| 625 | - $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">' |
|
| 626 | - . geodir_utf8_ucfirst($category_obj->name) . '</option>'; |
|
| 625 | + $html .= '<option '.$select_opt.' value="'.$category_obj->term_id.'">' |
|
| 626 | + . geodir_utf8_ucfirst($category_obj->name).'</option>'; |
|
| 627 | 627 | } |
| 628 | 628 | |
| 629 | 629 | if ($echo) |
@@ -691,7 +691,7 @@ discard block |
||
| 691 | 691 | } elseif (isset($wp_query->tax_query->queries)) {
|
| 692 | 692 | $tax_arr = $wp_query->tax_query->queries; |
| 693 | 693 | //if tax query has 'relation' set then it will break wp_list_pluck so we remove it |
| 694 | - if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
|
|
| 694 | + if (isset($tax_arr['relation'])) {unset($tax_arr['relation']); }
|
|
| 695 | 695 | $taxonomies = wp_list_pluck($tax_arr, 'taxonomy'); |
| 696 | 696 | } |
| 697 | 697 | |
@@ -745,7 +745,7 @@ discard block |
||
| 745 | 745 | |
| 746 | 746 | if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
|
| 747 | 747 | if ($cat_parent == 0) {
|
| 748 | - $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display; |
|
| 748 | + $list_class = 'main_list gd-parent-cats-list gd-cats-display-'.$cat_display; |
|
| 749 | 749 | $main_list_class = 'class="main_list_selecter"'; |
| 750 | 750 | } else {
|
| 751 | 751 | //$display = 'display:none'; |
@@ -755,7 +755,7 @@ discard block |
||
| 755 | 755 | |
| 756 | 756 | if ($cat_display == 'checkbox' || $cat_display == 'radio') {
|
| 757 | 757 | $p = 0; |
| 758 | - $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">'; |
|
| 758 | + $out = '<div class="'.$list_class.' gd-cat-row-'.$cat_parent.'" style="margin-left:'.$p.'px;'.$display.';">'; |
|
| 759 | 759 | } |
| 760 | 760 | |
| 761 | 761 | foreach ($cat_terms as $cat_term) {
|
@@ -770,12 +770,12 @@ discard block |
||
| 770 | 770 | } |
| 771 | 771 | |
| 772 | 772 | if ($cat_display == 'radio') |
| 773 | - $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>'; |
|
| 773 | + $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category['.$cat_term->taxonomy.'][]" '.$main_list_class.' alt="'.$cat_term->taxonomy.'" title="'.geodir_utf8_ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' id="gd-cat-'.$cat_term->term_id.'" >'.$term_check.geodir_utf8_ucfirst($cat_term->name).'</span>'; |
|
| 774 | 774 | elseif ($cat_display == 'select' || $cat_display == 'multiselect') |
| 775 | - $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</option>'; |
|
| 775 | + $out .= '<option '.$main_list_class.' style="margin-left:'.$p.'px;" alt="'.$cat_term->taxonomy.'" title="'.geodir_utf8_ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' >'.$term_check.geodir_utf8_ucfirst($cat_term->name).'</option>'; |
|
| 776 | 776 | |
| 777 | 777 | else {
|
| 778 | - $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>'; |
|
| 778 | + $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category['.$cat_term->taxonomy.'][]" '.$main_list_class.' alt="'.$cat_term->taxonomy.'" title="'.geodir_utf8_ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' id="gd-cat-'.$cat_term->term_id.'" >'.$term_check.geodir_utf8_ucfirst($cat_term->name).'</span>'; |
|
| 779 | 779 | } |
| 780 | 780 | |
| 781 | 781 | // Call recurson to print sub cats |
@@ -814,7 +814,7 @@ discard block |
||
| 814 | 814 | $cat_exclude = serialize($exclude_cats); |
| 815 | 815 | |
| 816 | 816 | if (isset($_REQUEST['backandedit'])) {
|
| 817 | - $post = (object)$gd_session->get('listing');
|
|
| 817 | + $post = (object) $gd_session->get('listing');
|
|
| 818 | 818 | |
| 819 | 819 | if (!is_array($post->post_category[$cat_taxonomy])) |
| 820 | 820 | $post_category = $post->post_category[$cat_taxonomy]; |
@@ -846,7 +846,7 @@ discard block |
||
| 846 | 846 | |
| 847 | 847 | if (!empty($post_category)) {
|
| 848 | 848 | $cat1 = array_filter(explode(',', $post_category));
|
| 849 | - $post_category = ',' . implode(',', $cat1) . ',';
|
|
| 849 | + $post_category = ','.implode(',', $cat1).',';
|
|
| 850 | 850 | |
| 851 | 851 | } |
| 852 | 852 | |
@@ -857,7 +857,7 @@ discard block |
||
| 857 | 857 | foreach ($post_category_upd as $cat) {
|
| 858 | 858 | |
| 859 | 859 | if (!in_array($cat, $exclude_cats) && $cat != '') {
|
| 860 | - $post_category_change .= ',' . $cat; |
|
| 860 | + $post_category_change .= ','.$cat; |
|
| 861 | 861 | } |
| 862 | 862 | } |
| 863 | 863 | $post_category = $post_category_change; |
@@ -869,11 +869,11 @@ discard block |
||
| 869 | 869 | } |
| 870 | 870 | } |
| 871 | 871 | |
| 872 | - echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']" />'; |
|
| 872 | + echo '<input type="hidden" id="cat_limit" value="'.$cat_limit.'" name="cat_limit['.$cat_taxonomy.']" />'; |
|
| 873 | 873 | |
| 874 | - echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']" />'; |
|
| 874 | + echo '<input type="hidden" id="post_category" value="'.$post_category.'" name="post_category['.$cat_taxonomy.']" />'; |
|
| 875 | 875 | |
| 876 | - echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']" />'; |
|
| 876 | + echo '<input type="hidden" id="post_category_str" value="'.$post_category_str.'" name="post_category_str['.$cat_taxonomy.']" />'; |
|
| 877 | 877 | |
| 878 | 878 | |
| 879 | 879 | ?> |
@@ -892,14 +892,14 @@ discard block |
||
| 892 | 892 | |
| 893 | 893 | function show_subcatlist(main_cat, catObj) {
|
| 894 | 894 | if (main_cat != '') {
|
| 895 | - var url = '<?php echo geodir_get_ajax_url();?>'; |
|
| 896 | - var cat_taxonomy = '<?php echo $cat_taxonomy;?>'; |
|
| 897 | - var cat_exclude = '<?php echo base64_encode($cat_exclude);?>'; |
|
| 895 | + var url = '<?php echo geodir_get_ajax_url(); ?>'; |
|
| 896 | + var cat_taxonomy = '<?php echo $cat_taxonomy; ?>'; |
|
| 897 | + var cat_exclude = '<?php echo base64_encode($cat_exclude); ?>'; |
|
| 898 | 898 | var cat_limit = jQuery('#' + cat_taxonomy).find('#cat_limit').val();
|
| 899 | - <?php if ((int)$cat_limit > 0) { ?>
|
|
| 899 | + <?php if ((int) $cat_limit > 0) { ?>
|
|
| 900 | 900 | var selected = parseInt(jQuery('#' + cat_taxonomy).find('.cat_sublist > div.post_catlist_item').length);
|
| 901 | 901 | if (cat_limit != '' && selected > 0 && selected >= cat_limit && cat_limit != 0) {
|
| 902 | - alert("<?php echo esc_attr(wp_sprintf(__('You have reached category limit of %d categories.', 'geodirectory'), (int)$cat_limit));?>");
|
|
| 902 | + alert("<?php echo esc_attr(wp_sprintf(__('You have reached category limit of %d categories.', 'geodirectory'), (int) $cat_limit)); ?>");
|
|
| 903 | 903 | return false; |
| 904 | 904 | } |
| 905 | 905 | <?php } ?> |
@@ -938,7 +938,7 @@ discard block |
||
| 938 | 938 | } |
| 939 | 939 | |
| 940 | 940 | function update_listing_cat(el) {
|
| 941 | - var cat_taxonomy = '<?php echo $cat_taxonomy;?>'; |
|
| 941 | + var cat_taxonomy = '<?php echo $cat_taxonomy; ?>'; |
|
| 942 | 942 | var cat_ids = ''; |
| 943 | 943 | var main_cat = ''; |
| 944 | 944 | var sub_cat = ''; |
@@ -1019,7 +1019,7 @@ discard block |
||
| 1019 | 1019 | <div class="main_cat_list" style=" <?php if (isset($style)) {
|
| 1020 | 1020 | echo $style; |
| 1021 | 1021 | }?> "> |
| 1022 | - <?php geodir_get_catlist($cat_taxonomy, 0); // print main categories list |
|
| 1022 | + <?php geodir_get_catlist($cat_taxonomy, 0); // print main categories list |
|
| 1023 | 1023 | ?> |
| 1024 | 1024 | </div> |
| 1025 | 1025 | <?php |
@@ -1046,9 +1046,9 @@ discard block |
||
| 1046 | 1046 | if ($exclude != '') {
|
| 1047 | 1047 | $exclude_cats = maybe_unserialize(base64_decode($exclude)); |
| 1048 | 1048 | |
| 1049 | - if(is_array( $exclude_cats)){
|
|
| 1050 | - $exclude_cats = array_map( 'intval', $exclude_cats ); |
|
| 1051 | - }else{
|
|
| 1049 | + if (is_array($exclude_cats)) {
|
|
| 1050 | + $exclude_cats = array_map('intval', $exclude_cats);
|
|
| 1051 | + } else {
|
|
| 1052 | 1052 | $exclude_cats = intval($exclude_cats); |
| 1053 | 1053 | } |
| 1054 | 1054 | |
@@ -1062,25 +1062,25 @@ discard block |
||
| 1062 | 1062 | <?php $main_cat = get_term($parrent, $request_taxonomy); ?> |
| 1063 | 1063 | |
| 1064 | 1064 | <div class="post_catlist_item" style="border:1px solid #CCCCCC; margin:5px auto; padding:5px;"> |
| 1065 | - <img alt="move icon" src="<?php echo geodir_plugin_url() . '/geodirectory-assets/images/move.png';?>" |
|
| 1065 | + <img alt="move icon" src="<?php echo geodir_plugin_url().'/geodirectory-assets/images/move.png'; ?>" |
|
| 1066 | 1066 | onclick="jQuery(this).closest('div').remove();update_listing_cat(this);" align="right"/>
|
| 1067 | 1067 | <?php /* ?> |
| 1068 | 1068 | <img src="<?php echo geodir_plugin_url().'/geodirectory-assets/images/move.png';?>" onclick="jQuery(this).closest('div').remove();show_subcatlist();" align="right" />
|
| 1069 | 1069 | <?php */ ?> |
| 1070 | 1070 | |
| 1071 | - <input type="checkbox" value="<?php echo $main_cat->term_id;?>" class="listing_main_cat" |
|
| 1071 | + <input type="checkbox" value="<?php echo $main_cat->term_id; ?>" class="listing_main_cat" |
|
| 1072 | 1072 | onchange="if(jQuery(this).is(':checked')){jQuery(this).closest('div').find('.post_default_category').prop('checked',false).show();}else{jQuery(this).closest('div').find('.post_default_category').prop('checked',false).hide();};update_listing_cat()"
|
| 1073 | 1073 | checked="checked" disabled="disabled"/> |
| 1074 | 1074 | <span> |
| 1075 | - <?php printf(__('Add listing in %s category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
|
|
| 1075 | + <?php printf(__('Add listing in %s category', 'geodirectory'), geodir_ucwords($main_cat->name)); ?>
|
|
| 1076 | 1076 | </span> |
| 1077 | 1077 | <br/> |
| 1078 | 1078 | |
| 1079 | 1079 | <div class="post_default_category"> |
| 1080 | - <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id;?>" |
|
| 1081 | - onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" ';?> /> |
|
| 1080 | + <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id; ?>" |
|
| 1081 | + onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" '; ?> /> |
|
| 1082 | 1082 | <span> |
| 1083 | - <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
|
|
| 1083 | + <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name)); ?>
|
|
| 1084 | 1084 | </span> |
| 1085 | 1085 | </div> |
| 1086 | 1086 | |
@@ -1113,7 +1113,7 @@ discard block |
||
| 1113 | 1113 | $post_cat_str = $post_categories[$request_taxonomy]; |
| 1114 | 1114 | $post_cat_array = explode("#", $post_cat_str);
|
| 1115 | 1115 | if (is_array($post_cat_array)) {
|
| 1116 | - $post_cat_array = array_unique( $post_cat_array ); |
|
| 1116 | + $post_cat_array = array_unique($post_cat_array); |
|
| 1117 | 1117 | |
| 1118 | 1118 | foreach ($post_cat_array as $post_cat_html) {
|
| 1119 | 1119 | |
@@ -1128,7 +1128,7 @@ discard block |
||
| 1128 | 1128 | } |
| 1129 | 1129 | $post_sub_catid = ''; |
| 1130 | 1130 | if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
| 1131 | - $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1131 | + $post_sub_catid = (int) $post_cat_info[1]; |
|
| 1132 | 1132 | } |
| 1133 | 1133 | |
| 1134 | 1134 | geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
@@ -1149,7 +1149,7 @@ discard block |
||
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | 1151 | if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
| 1152 | - $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1152 | + $post_sub_catid = (int) $post_cat_info[1]; |
|
| 1153 | 1153 | } |
| 1154 | 1154 | |
| 1155 | 1155 | geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
@@ -1181,9 +1181,9 @@ discard block |
||
| 1181 | 1181 | if (!$selected) |
| 1182 | 1182 | $option_slected = ' selected="selected" '; |
| 1183 | 1183 | |
| 1184 | - echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >'; |
|
| 1184 | + echo '<select field_type="select" id="'.sanitize_text_field($cat_taxonomy).'" class="chosen_select" '.$onchange.' option-ajaxChosen="false" >'; |
|
| 1185 | 1185 | |
| 1186 | - echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
|
|
| 1186 | + echo '<option value="" '.$option_selected.' >'.__('Select Category', 'geodirectory').'</option>';
|
|
| 1187 | 1187 | |
| 1188 | 1188 | foreach ($cat_terms as $cat_term) {
|
| 1189 | 1189 | $option_selected = ''; |
@@ -1191,10 +1191,10 @@ discard block |
||
| 1191 | 1191 | $option_selected = ' selected="selected" '; |
| 1192 | 1192 | |
| 1193 | 1193 | // Count child terms |
| 1194 | - $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) ); |
|
| 1195 | - $has_child = !empty( $child_terms ) ? 't' : 'f'; |
|
| 1194 | + $child_terms = get_terms($cat_taxonomy, array('parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1));
|
|
| 1195 | + $has_child = !empty($child_terms) ? 't' : 'f'; |
|
| 1196 | 1196 | |
| 1197 | - echo '<option ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . geodir_utf8_ucfirst($cat_term->name) . '</option>'; |
|
| 1197 | + echo '<option '.$option_selected.' alt="'.$cat_term->taxonomy.'" title="'.geodir_utf8_ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" _hc="'.$has_child.'" >'.geodir_utf8_ucfirst($cat_term->name).'</option>'; |
|
| 1198 | 1198 | } |
| 1199 | 1199 | echo '</select>'; |
| 1200 | 1200 | } |
@@ -1225,7 +1225,7 @@ discard block |
||
| 1225 | 1225 | 2 => __('Custom field updated.', 'geodirectory'),
|
| 1226 | 1226 | 3 => __('Custom field deleted.', 'geodirectory'),
|
| 1227 | 1227 | 4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
|
| 1228 | - 5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
|
|
| 1228 | + 5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int) $_GET['revision'], false)) : false,
|
|
| 1229 | 1229 | 6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
| 1230 | 1230 | 7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
|
| 1231 | 1231 | 8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
@@ -1251,7 +1251,7 @@ discard block |
||
| 1251 | 1251 | |
| 1252 | 1252 | global $wpdb; |
| 1253 | 1253 | |
| 1254 | - $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico'; |
|
| 1254 | + $menu_icon = geodir_plugin_url().'/geodirectory-assets/images/favicon.ico'; |
|
| 1255 | 1255 | |
| 1256 | 1256 | if (!$listing_slug = get_option('geodir_listing_prefix'))
|
| 1257 | 1257 | $listing_slug = 'places'; |
@@ -1264,11 +1264,11 @@ discard block |
||
| 1264 | 1264 | |
| 1265 | 1265 | $gd_placetags = array(); |
| 1266 | 1266 | $gd_placetags['object_type'] = 'gd_place'; |
| 1267 | - $gd_placetags['listing_slug'] = $listing_slug . '/tags'; |
|
| 1267 | + $gd_placetags['listing_slug'] = $listing_slug.'/tags'; |
|
| 1268 | 1268 | $gd_placetags['args'] = array( |
| 1269 | 1269 | 'public' => true, |
| 1270 | 1270 | 'hierarchical' => false, |
| 1271 | - 'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
|
|
| 1271 | + 'rewrite' => array('slug' => $listing_slug.'/tags', 'with_front' => false, 'hierarchical' => true),
|
|
| 1272 | 1272 | 'query_var' => true, |
| 1273 | 1273 | |
| 1274 | 1274 | 'labels' => array( |
@@ -1362,7 +1362,7 @@ discard block |
||
| 1362 | 1362 | 'menu_icon' => $menu_icon, |
| 1363 | 1363 | 'public' => true, |
| 1364 | 1364 | 'query_var' => true, |
| 1365 | - 'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
|
|
| 1365 | + 'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
|
|
| 1366 | 1366 | 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
|
| 1367 | 1367 | 'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
|
| 1368 | 1368 | |
@@ -1395,12 +1395,12 @@ discard block |
||
| 1395 | 1395 | return $_REQUEST['lang']; |
| 1396 | 1396 | } |
| 1397 | 1397 | |
| 1398 | - $url = str_replace(array("http://","https://"),"",$url);
|
|
| 1398 | + $url = str_replace(array("http://", "https://"), "", $url);
|
|
| 1399 | 1399 | |
| 1400 | 1400 | // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
|
| 1401 | - $site_url = str_replace(array("http://","https://"),"",site_url());
|
|
| 1401 | + $site_url = str_replace(array("http://", "https://"), "", site_url());
|
|
| 1402 | 1402 | |
| 1403 | - $url = str_replace($site_url,"",$url); |
|
| 1403 | + $url = str_replace($site_url, "", $url); |
|
| 1404 | 1404 | |
| 1405 | 1405 | $segments = explode('/', trim($url, '/'));
|
| 1406 | 1406 | |
@@ -1456,7 +1456,7 @@ discard block |
||
| 1456 | 1456 | |
| 1457 | 1457 | global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache, $gd_cache_post; |
| 1458 | 1458 | if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
|
| 1459 | - if($post_obj->post_status == 'auto-draft' || $post_obj->post_status == 'draft' || $post_obj->post_status == 'pending'){return $post_link;}
|
|
| 1459 | + if ($post_obj->post_status == 'auto-draft' || $post_obj->post_status == 'draft' || $post_obj->post_status == 'pending') {return $post_link; }
|
|
| 1460 | 1460 | } elseif (isset($post_obj->post_status) && ($post_obj->post_status == 'auto-draft' || $post_obj->post_status == 'draft' || $post_obj->post_status == 'pending')) {
|
| 1461 | 1461 | return $post_link; |
| 1462 | 1462 | } else {
|
@@ -1470,9 +1470,9 @@ discard block |
||
| 1470 | 1470 | |
| 1471 | 1471 | |
| 1472 | 1472 | // if we dont have a GD post then try to grab it |
| 1473 | - if(!isset($post->default_category)){
|
|
| 1473 | + if (!isset($post->default_category)) {
|
|
| 1474 | 1474 | $gd_post = geodir_get_post_info($post->ID); |
| 1475 | - if(!empty($gd_post)){
|
|
| 1475 | + if (!empty($gd_post)) {
|
|
| 1476 | 1476 | $post = $gd_post; |
| 1477 | 1477 | } |
| 1478 | 1478 | } |
@@ -1482,17 +1482,17 @@ discard block |
||
| 1482 | 1482 | $slug = $post_types[$post->post_type]['rewrite']['slug']; |
| 1483 | 1483 | |
| 1484 | 1484 | // Alter the CPT slug if WPML is set to do so |
| 1485 | - if(geodir_wpml_is_post_type_translated($post->post_type)){
|
|
| 1486 | - if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
|
|
| 1485 | + if (geodir_wpml_is_post_type_translated($post->post_type)) {
|
|
| 1486 | + if (gd_wpml_slug_translation_turned_on($post->post_type) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
|
|
| 1487 | 1487 | |
| 1488 | 1488 | $org_slug = $slug; |
| 1489 | - $slug = apply_filters( 'wpml_translate_single_string', |
|
| 1489 | + $slug = apply_filters('wpml_translate_single_string',
|
|
| 1490 | 1490 | $slug, |
| 1491 | 1491 | 'WordPress', |
| 1492 | - 'URL slug: ' . $slug, |
|
| 1492 | + 'URL slug: '.$slug, |
|
| 1493 | 1493 | $language_code); |
| 1494 | 1494 | |
| 1495 | - if(!$slug){$slug = $org_slug;}
|
|
| 1495 | + if (!$slug) {$slug = $org_slug; }
|
|
| 1496 | 1496 | |
| 1497 | 1497 | } |
| 1498 | 1498 | } |
@@ -1514,11 +1514,11 @@ discard block |
||
| 1514 | 1514 | } |
| 1515 | 1515 | |
| 1516 | 1516 | $post_link = trailingslashit( |
| 1517 | - preg_replace( "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 ) |
|
| 1517 | + preg_replace("/".preg_quote($slug, "/")."/", $slug."/%gd_taxonomy%", $post_link, 1)
|
|
| 1518 | 1518 | ); |
| 1519 | 1519 | |
| 1520 | 1520 | if ($fix_url) {
|
| 1521 | - $post_link = $site_url . $post_link; |
|
| 1521 | + $post_link = $site_url.$post_link; |
|
| 1522 | 1522 | } |
| 1523 | 1523 | |
| 1524 | 1524 | if (isset($comment_post_cache[$post->ID])) {
|
@@ -1537,12 +1537,12 @@ discard block |
||
| 1537 | 1537 | $ID = $post->ID; |
| 1538 | 1538 | $post2 = $wpdb->get_row( |
| 1539 | 1539 | $wpdb->prepare( |
| 1540 | - "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1540 | + "SELECT * from ".$plugin_prefix.$post->post_type."_detail WHERE post_id = %d ", |
|
| 1541 | 1541 | array($post->ID) |
| 1542 | 1542 | ) |
| 1543 | 1543 | ); |
| 1544 | 1544 | |
| 1545 | - $post = (object)array_merge((array)$post, (array)$post2); |
|
| 1545 | + $post = (object) array_merge((array) $post, (array) $post2); |
|
| 1546 | 1546 | |
| 1547 | 1547 | $comment_post_cache[$post->ID] = $post; |
| 1548 | 1548 | } |
@@ -1551,7 +1551,7 @@ discard block |
||
| 1551 | 1551 | |
| 1552 | 1552 | if (false !== strpos($post_link, '%gd_taxonomy%')) {
|
| 1553 | 1553 | |
| 1554 | - if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
|
|
| 1554 | + if (apply_filters("geodir_add_location_url_to_url", get_option('geodir_add_location_url'), $post->post_type, $post)) {
|
|
| 1555 | 1555 | $location_request = ''; |
| 1556 | 1556 | |
| 1557 | 1557 | |
@@ -1565,7 +1565,7 @@ discard block |
||
| 1565 | 1565 | $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
| 1566 | 1566 | $post->country_slug = str_replace(']', '', $post->country_slug);
|
| 1567 | 1567 | |
| 1568 | - $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1568 | + $post_location = (object) array('country_slug' => $post->country_slug,
|
|
| 1569 | 1569 | 'region_slug' => $post->region_slug, |
| 1570 | 1570 | 'city_slug' => $post->city_slug |
| 1571 | 1571 | ); |
@@ -1578,7 +1578,7 @@ discard block |
||
| 1578 | 1578 | |
| 1579 | 1579 | $post_location_sql = $wpdb->get_results( |
| 1580 | 1580 | $wpdb->prepare( |
| 1581 | - "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1581 | + "SELECT post_locations from ".$plugin_prefix.$post->post_type."_detail WHERE post_id = %d ", |
|
| 1582 | 1582 | array($post->ID) |
| 1583 | 1583 | ) |
| 1584 | 1584 | ); |
@@ -1594,7 +1594,7 @@ discard block |
||
| 1594 | 1594 | $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
| 1595 | 1595 | $post->country_slug = str_replace(']', '', $post->country_slug);
|
| 1596 | 1596 | |
| 1597 | - $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1597 | + $post_location = (object) array('country_slug' => $post->country_slug,
|
|
| 1598 | 1598 | 'region_slug' => $post->region_slug, |
| 1599 | 1599 | 'city_slug' => $post->city_slug |
| 1600 | 1600 | ); |
@@ -1623,7 +1623,7 @@ discard block |
||
| 1623 | 1623 | } |
| 1624 | 1624 | $location_slug[] = $city_slug; |
| 1625 | 1625 | |
| 1626 | - $location_request .= implode('/', $location_slug) . '/';
|
|
| 1626 | + $location_request .= implode('/', $location_slug).'/';
|
|
| 1627 | 1627 | } |
| 1628 | 1628 | } |
| 1629 | 1629 | |
@@ -1638,9 +1638,9 @@ discard block |
||
| 1638 | 1638 | } else {
|
| 1639 | 1639 | $post_terms = ''; |
| 1640 | 1640 | |
| 1641 | - if(isset($_POST['post_default_category']) && $_POST['post_default_category']){
|
|
| 1641 | + if (isset($_POST['post_default_category']) && $_POST['post_default_category']) {
|
|
| 1642 | 1642 | $post_terms = absint($_POST['post_default_category']); |
| 1643 | - }elseif(isset($_POST['post_category'][$taxonomies]) && $_POST['post_category'][$taxonomies]) {
|
|
| 1643 | + }elseif (isset($_POST['post_category'][$taxonomies]) && $_POST['post_category'][$taxonomies]) {
|
|
| 1644 | 1644 | $post_terms = is_array($_POST['post_category'][$taxonomies]) ? $_POST['post_category'][$taxonomies] : explode(",", trim($_POST['post_category'][$taxonomies], ","));
|
| 1645 | 1645 | $post_terms = !empty($post_terms) ? absint($post_terms[0]) : 0; |
| 1646 | 1646 | }elseif (isset($post->{$taxonomies})) {
|
@@ -1686,14 +1686,14 @@ discard block |
||
| 1686 | 1686 | $request_term = trim($request_term, '/'); |
| 1687 | 1687 | |
| 1688 | 1688 | // Fix with WPML the location terms added twice when CPT slug is translated. |
| 1689 | - if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
|
|
| 1689 | + if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/'.$request_term.$detailurl_separator) !== false) {
|
|
| 1690 | 1690 | $post_link = str_replace('%gd_taxonomy%/', '', $post_link);
|
| 1691 | 1691 | } |
| 1692 | 1692 | |
| 1693 | 1693 | if (!empty($request_term)) |
| 1694 | - $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1694 | + $post_link = str_replace('%gd_taxonomy%', $request_term.$detailurl_separator, $post_link);
|
|
| 1695 | 1695 | else |
| 1696 | - $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1696 | + $post_link = str_replace('/%gd_taxonomy%', $request_term.$detailurl_separator, $post_link);
|
|
| 1697 | 1697 | //echo $post_link ; |
| 1698 | 1698 | } |
| 1699 | 1699 | // temp cache the permalink |
@@ -1787,9 +1787,9 @@ discard block |
||
| 1787 | 1787 | $url_separator = ''; |
| 1788 | 1788 | |
| 1789 | 1789 | if (get_option('permalink_structure') != '') {
|
| 1790 | - $old_listing_slug = '/' . $listing_slug . '/'; |
|
| 1790 | + $old_listing_slug = '/'.$listing_slug.'/'; |
|
| 1791 | 1791 | $request_term = implode("/", $location_terms);
|
| 1792 | - $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/'; |
|
| 1792 | + $new_listing_slug = '/'.$listing_slug.'/'.$request_term.'/'; |
|
| 1793 | 1793 | |
| 1794 | 1794 | $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug)); |
| 1795 | 1795 | } else {
|
@@ -1809,25 +1809,25 @@ discard block |
||
| 1809 | 1809 | // Alter the CPT slug if WPML is set to do so |
| 1810 | 1810 | if (geodir_is_wpml()) {
|
| 1811 | 1811 | $post_types = get_option('geodir_post_types');
|
| 1812 | - $post_type = str_replace("category","",$taxonomy);
|
|
| 1813 | - $post_type = str_replace("_tags","",$post_type);
|
|
| 1812 | + $post_type = str_replace("category", "", $taxonomy);
|
|
| 1813 | + $post_type = str_replace("_tags", "", $post_type);
|
|
| 1814 | 1814 | $slug = $post_types[$post_type]['rewrite']['slug']; |
| 1815 | 1815 | if (geodir_wpml_is_post_type_translated($post_type) && gd_wpml_slug_translation_turned_on($post_type)) {
|
| 1816 | 1816 | global $sitepress; |
| 1817 | 1817 | $default_lang = $sitepress->get_default_language(); |
| 1818 | 1818 | $language_code = gd_wpml_get_lang_from_url($termlink); |
| 1819 | - if (!$language_code ) {
|
|
| 1820 | - $language_code = $default_lang; |
|
| 1819 | + if (!$language_code) {
|
|
| 1820 | + $language_code = $default_lang; |
|
| 1821 | 1821 | } |
| 1822 | 1822 | |
| 1823 | 1823 | $org_slug = $slug; |
| 1824 | - $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
|
|
| 1824 | + $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: '.$slug, $language_code);
|
|
| 1825 | 1825 | |
| 1826 | 1826 | if (!$slug) {
|
| 1827 | 1827 | $slug = $org_slug; |
| 1828 | 1828 | } |
| 1829 | 1829 | |
| 1830 | - $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug ,$termlink, 1));
|
|
| 1830 | + $termlink = trailingslashit(preg_replace("/".preg_quote($org_slug, "/")."/", $slug, $termlink, 1));
|
|
| 1831 | 1831 | } |
| 1832 | 1832 | } |
| 1833 | 1833 | } |
@@ -1857,7 +1857,7 @@ discard block |
||
| 1857 | 1857 | |
| 1858 | 1858 | if (in_array($post_type, geodir_get_posttypes())) {
|
| 1859 | 1859 | if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
|
| 1860 | - if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
|
|
| 1860 | + if (geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
|
|
| 1861 | 1861 | $location_terms = array( |
| 1862 | 1862 | 'gd_country' => $post->country_slug, |
| 1863 | 1863 | 'gd_region' => $post->region_slug, |
@@ -1874,7 +1874,7 @@ discard block |
||
| 1874 | 1874 | $location_terms = implode("/", $location_terms);
|
| 1875 | 1875 | $location_terms = rtrim($location_terms, '/'); |
| 1876 | 1876 | |
| 1877 | - $link .= urldecode($location_terms) . '/'; |
|
| 1877 | + $link .= urldecode($location_terms).'/'; |
|
| 1878 | 1878 | } else {
|
| 1879 | 1879 | $link = geodir_getlink($link, $location_terms); |
| 1880 | 1880 | } |
@@ -1962,9 +1962,9 @@ discard block |
||
| 1962 | 1962 | return 0; |
| 1963 | 1963 | $where = 't.term_id = %d'; |
| 1964 | 1964 | if (!empty($taxonomy)) |
| 1965 | - return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1965 | + return $wpdb->get_row($wpdb->prepare($tax_select.$where." AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1966 | 1966 | else |
| 1967 | - return $wpdb->get_var($wpdb->prepare($select . $where, $term)); |
|
| 1967 | + return $wpdb->get_var($wpdb->prepare($select.$where, $term)); |
|
| 1968 | 1968 | } |
| 1969 | 1969 | |
| 1970 | 1970 | $term = trim(wp_unslash($term)); |
@@ -1976,7 +1976,7 @@ discard block |
||
| 1976 | 1976 | |
| 1977 | 1977 | $where_fields = array($slug); |
| 1978 | 1978 | if (!empty($taxonomy)) {
|
| 1979 | - $parent = (int)$parent; |
|
| 1979 | + $parent = (int) $parent; |
|
| 1980 | 1980 | if ($parent > 0) {
|
| 1981 | 1981 | $where_fields[] = $parent; |
| 1982 | 1982 | $else_where_fields[] = $parent; |
@@ -2040,13 +2040,13 @@ discard block |
||
| 2040 | 2040 | $post_types = geodir_get_posttypes(); |
| 2041 | 2041 | $tax_arr = array(); |
| 2042 | 2042 | foreach ($post_types as $post_type) {
|
| 2043 | - $tax_arr[] = "'" . $post_type . "category'"; |
|
| 2043 | + $tax_arr[] = "'".$post_type."category'"; |
|
| 2044 | 2044 | } |
| 2045 | 2045 | $tax_c = implode(',', $tax_arr);
|
| 2046 | 2046 | $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
|
| 2047 | 2047 | //$terms = get_terms( $taxonomy ); |
| 2048 | 2048 | |
| 2049 | - if($terms) {
|
|
| 2049 | + if ($terms) {
|
|
| 2050 | 2050 | foreach ($terms as $term) {
|
| 2051 | 2051 | $post_type = str_replace("category", "", $term->taxonomy);
|
| 2052 | 2052 | $a_terms[$post_type][] = $term; |
@@ -2054,7 +2054,7 @@ discard block |
||
| 2054 | 2054 | } |
| 2055 | 2055 | } |
| 2056 | 2056 | |
| 2057 | - if($a_terms) {
|
|
| 2057 | + if ($a_terms) {
|
|
| 2058 | 2058 | foreach ($a_terms as $pt => $t2) {
|
| 2059 | 2059 | |
| 2060 | 2060 | foreach ($t2 as $term) {
|
@@ -2079,7 +2079,7 @@ discard block |
||
| 2079 | 2079 | } |
| 2080 | 2080 | |
| 2081 | 2081 | if (is_ssl()) {
|
| 2082 | - $terms_icons = str_replace("http:","https:",$terms_icons );
|
|
| 2082 | + $terms_icons = str_replace("http:", "https:", $terms_icons);
|
|
| 2083 | 2083 | } |
| 2084 | 2084 | |
| 2085 | 2085 | return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
|
@@ -8,8 +8,8 @@ discard block |
||
| 8 | 8 | |
| 9 | 9 | // Enable map cache if set |
| 10 | 10 | if(get_option('geodir_enable_map_cache')){
|
| 11 | - add_filter('geodir_get_markers_cache','geodir_get_map_cache');
|
|
| 12 | - add_filter('geodir_markers_json','geodir_save_map_cache',10);
|
|
| 11 | + add_filter('geodir_get_markers_cache','geodir_get_map_cache');
|
|
| 12 | + add_filter('geodir_markers_json','geodir_save_map_cache',10);
|
|
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | |
@@ -23,59 +23,59 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | function geodir_get_map_cache($cache){
|
| 25 | 25 | |
| 26 | - // if a search is going on then dont even try to check for cache. |
|
| 27 | - if(isset($_REQUEST['search']) && !empty($_REQUEST['search'])){
|
|
| 28 | - return $cache; |
|
| 29 | - } |
|
| 26 | + // if a search is going on then dont even try to check for cache. |
|
| 27 | + if(isset($_REQUEST['search']) && !empty($_REQUEST['search'])){
|
|
| 28 | + return $cache; |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | - $url_params = array(); |
|
| 32 | - $url_params[] = isset($_REQUEST['cat_id']) ? $_REQUEST['cat_id'] : ''; |
|
| 33 | - $url_params[] = isset($_REQUEST['zl']) ? $_REQUEST['zl'] : ''; |
|
| 34 | - $url_params[] = isset($_REQUEST['gd_map_h']) ? $_REQUEST['gd_map_h'] : ''; |
|
| 35 | - $url_params[] = isset($_REQUEST['gd_map_w']) ? $_REQUEST['gd_map_w'] : ''; |
|
| 36 | - $url_params[] = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : ''; |
|
| 37 | - $url_params[] = isset($_REQUEST['lat_ne']) ? $_REQUEST['lat_ne'] : ''; |
|
| 38 | - $url_params[] = isset($_REQUEST['lon_ne']) ? $_REQUEST['lon_ne'] : ''; |
|
| 39 | - $url_params[] = isset($_REQUEST['lat_sw']) ? $_REQUEST['lat_sw'] : ''; |
|
| 40 | - $url_params[] = isset($_REQUEST['lon_sw']) ? $_REQUEST['lon_sw'] : ''; |
|
| 41 | - $url_params[] = isset($_REQUEST['gd_country']) ? $_REQUEST['gd_country'] : ''; |
|
| 42 | - $url_params[] = isset($_REQUEST['gd_region']) ? $_REQUEST['gd_region'] : ''; |
|
| 43 | - $url_params[] = isset($_REQUEST['gd_city']) ? $_REQUEST['gd_city'] : ''; |
|
| 44 | - $url_params[] = isset($_REQUEST['gd_neighbourhood']) ? $_REQUEST['gd_neighbourhood'] : ''; |
|
| 31 | + $url_params = array(); |
|
| 32 | + $url_params[] = isset($_REQUEST['cat_id']) ? $_REQUEST['cat_id'] : ''; |
|
| 33 | + $url_params[] = isset($_REQUEST['zl']) ? $_REQUEST['zl'] : ''; |
|
| 34 | + $url_params[] = isset($_REQUEST['gd_map_h']) ? $_REQUEST['gd_map_h'] : ''; |
|
| 35 | + $url_params[] = isset($_REQUEST['gd_map_w']) ? $_REQUEST['gd_map_w'] : ''; |
|
| 36 | + $url_params[] = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : ''; |
|
| 37 | + $url_params[] = isset($_REQUEST['lat_ne']) ? $_REQUEST['lat_ne'] : ''; |
|
| 38 | + $url_params[] = isset($_REQUEST['lon_ne']) ? $_REQUEST['lon_ne'] : ''; |
|
| 39 | + $url_params[] = isset($_REQUEST['lat_sw']) ? $_REQUEST['lat_sw'] : ''; |
|
| 40 | + $url_params[] = isset($_REQUEST['lon_sw']) ? $_REQUEST['lon_sw'] : ''; |
|
| 41 | + $url_params[] = isset($_REQUEST['gd_country']) ? $_REQUEST['gd_country'] : ''; |
|
| 42 | + $url_params[] = isset($_REQUEST['gd_region']) ? $_REQUEST['gd_region'] : ''; |
|
| 43 | + $url_params[] = isset($_REQUEST['gd_city']) ? $_REQUEST['gd_city'] : ''; |
|
| 44 | + $url_params[] = isset($_REQUEST['gd_neighbourhood']) ? $_REQUEST['gd_neighbourhood'] : ''; |
|
| 45 | 45 | |
| 46 | - $file_name = sanitize_file_name( md5( implode("-",$url_params) ) );
|
|
| 46 | + $file_name = sanitize_file_name( md5( implode("-",$url_params) ) );
|
|
| 47 | 47 | |
| 48 | - $blog_id = get_current_blog_id(); |
|
| 49 | - if($blog_id>1){
|
|
| 50 | - $file_name = $blog_id."_".$file_name; |
|
| 51 | - } |
|
| 48 | + $blog_id = get_current_blog_id(); |
|
| 49 | + if($blog_id>1){
|
|
| 50 | + $file_name = $blog_id."_".$file_name; |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - $file_path = realpath(dirname(__FILE__))."/map-cache/"; |
|
| 53 | + $file_path = realpath(dirname(__FILE__))."/map-cache/"; |
|
| 54 | 54 | |
| 55 | 55 | |
| 56 | - if(file_exists($file_path.$file_name.".json")){
|
|
| 56 | + if(file_exists($file_path.$file_name.".json")){
|
|
| 57 | 57 | |
| 58 | 58 | |
| 59 | - ob_start(); |
|
| 60 | - readfile($file_path.$file_name.".json"); // readfile is quicker then file get contents |
|
| 61 | - $content = ob_get_clean(); |
|
| 59 | + ob_start(); |
|
| 60 | + readfile($file_path.$file_name.".json"); // readfile is quicker then file get contents |
|
| 61 | + $content = ob_get_clean(); |
|
| 62 | 62 | |
| 63 | - // do the cache delete stuff |
|
| 64 | - $cache_time = get_option('geodir_map_cache');
|
|
| 65 | - if(!$cache_time){
|
|
| 66 | - $cache_time = time(); |
|
| 67 | - update_option('geodir_map_cache', $cache_time);
|
|
| 68 | - } |
|
| 63 | + // do the cache delete stuff |
|
| 64 | + $cache_time = get_option('geodir_map_cache');
|
|
| 65 | + if(!$cache_time){
|
|
| 66 | + $cache_time = time(); |
|
| 67 | + update_option('geodir_map_cache', $cache_time);
|
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - if((time() - $cache_time) > 86400){ // delete the cache every 24 hours
|
|
| 71 | - geodir_delete_map_cache(); |
|
| 72 | - } |
|
| 70 | + if((time() - $cache_time) > 86400){ // delete the cache every 24 hours
|
|
| 71 | + geodir_delete_map_cache(); |
|
| 72 | + } |
|
| 73 | 73 | |
| 74 | - return $content; |
|
| 74 | + return $content; |
|
| 75 | 75 | |
| 76 | - } |
|
| 76 | + } |
|
| 77 | 77 | |
| 78 | - return $cache; |
|
| 78 | + return $cache; |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | |
@@ -88,101 +88,101 @@ discard block |
||
| 88 | 88 | */ |
| 89 | 89 | function geodir_save_map_cache($map_json){
|
| 90 | 90 | |
| 91 | - // if a search is going on then dont even try to check for cache. |
|
| 92 | - if(isset($_REQUEST['search']) && !empty($_REQUEST['search'])){
|
|
| 93 | - return $map_json; |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - $url_params = array(); |
|
| 97 | - $url_params[] = isset($_REQUEST['cat_id']) ? $_REQUEST['cat_id'] : ''; |
|
| 98 | - $url_params[] = isset($_REQUEST['zl']) ? $_REQUEST['zl'] : ''; |
|
| 99 | - $url_params[] = isset($_REQUEST['gd_map_h']) ? $_REQUEST['gd_map_h'] : ''; |
|
| 100 | - $url_params[] = isset($_REQUEST['gd_map_w']) ? $_REQUEST['gd_map_w'] : ''; |
|
| 101 | - $url_params[] = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : ''; |
|
| 102 | - $url_params[] = isset($_REQUEST['lat_ne']) ? $_REQUEST['lat_ne'] : ''; |
|
| 103 | - $url_params[] = isset($_REQUEST['lon_ne']) ? $_REQUEST['lon_ne'] : ''; |
|
| 104 | - $url_params[] = isset($_REQUEST['lat_sw']) ? $_REQUEST['lat_sw'] : ''; |
|
| 105 | - $url_params[] = isset($_REQUEST['lon_sw']) ? $_REQUEST['lon_sw'] : ''; |
|
| 106 | - $url_params[] = isset($_REQUEST['gd_country']) ? $_REQUEST['gd_country'] : ''; |
|
| 107 | - $url_params[] = isset($_REQUEST['gd_region']) ? $_REQUEST['gd_region'] : ''; |
|
| 108 | - $url_params[] = isset($_REQUEST['gd_city']) ? $_REQUEST['gd_city'] : ''; |
|
| 109 | - $url_params[] = isset($_REQUEST['gd_neighbourhood']) ? $_REQUEST['gd_neighbourhood'] : ''; |
|
| 110 | - |
|
| 111 | - $file_name = sanitize_file_name( md5( implode("-",$url_params) ) );
|
|
| 112 | - |
|
| 113 | - $blog_id = get_current_blog_id(); |
|
| 114 | - if($blog_id>1){
|
|
| 115 | - $file_name = $blog_id."_".$file_name; |
|
| 116 | - } |
|
| 117 | - |
|
| 118 | - $file_path = realpath(dirname(__FILE__))."/map-cache/"; |
|
| 119 | - |
|
| 120 | - |
|
| 121 | - global $wp_filesystem; |
|
| 122 | - if (empty($wp_filesystem)) {
|
|
| 123 | - require_once (ABSPATH . '/wp-admin/includes/file.php'); |
|
| 124 | - WP_Filesystem(); |
|
| 125 | - } |
|
| 126 | - $wp_filesystem->put_contents( |
|
| 127 | - $file_path.$file_name.".json", |
|
| 128 | - $map_json, |
|
| 129 | - FS_CHMOD_FILE // predefined mode settings for WP files |
|
| 130 | - ); |
|
| 131 | - |
|
| 132 | - |
|
| 133 | - return $map_json; |
|
| 91 | + // if a search is going on then dont even try to check for cache. |
|
| 92 | + if(isset($_REQUEST['search']) && !empty($_REQUEST['search'])){
|
|
| 93 | + return $map_json; |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + $url_params = array(); |
|
| 97 | + $url_params[] = isset($_REQUEST['cat_id']) ? $_REQUEST['cat_id'] : ''; |
|
| 98 | + $url_params[] = isset($_REQUEST['zl']) ? $_REQUEST['zl'] : ''; |
|
| 99 | + $url_params[] = isset($_REQUEST['gd_map_h']) ? $_REQUEST['gd_map_h'] : ''; |
|
| 100 | + $url_params[] = isset($_REQUEST['gd_map_w']) ? $_REQUEST['gd_map_w'] : ''; |
|
| 101 | + $url_params[] = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : ''; |
|
| 102 | + $url_params[] = isset($_REQUEST['lat_ne']) ? $_REQUEST['lat_ne'] : ''; |
|
| 103 | + $url_params[] = isset($_REQUEST['lon_ne']) ? $_REQUEST['lon_ne'] : ''; |
|
| 104 | + $url_params[] = isset($_REQUEST['lat_sw']) ? $_REQUEST['lat_sw'] : ''; |
|
| 105 | + $url_params[] = isset($_REQUEST['lon_sw']) ? $_REQUEST['lon_sw'] : ''; |
|
| 106 | + $url_params[] = isset($_REQUEST['gd_country']) ? $_REQUEST['gd_country'] : ''; |
|
| 107 | + $url_params[] = isset($_REQUEST['gd_region']) ? $_REQUEST['gd_region'] : ''; |
|
| 108 | + $url_params[] = isset($_REQUEST['gd_city']) ? $_REQUEST['gd_city'] : ''; |
|
| 109 | + $url_params[] = isset($_REQUEST['gd_neighbourhood']) ? $_REQUEST['gd_neighbourhood'] : ''; |
|
| 110 | + |
|
| 111 | + $file_name = sanitize_file_name( md5( implode("-",$url_params) ) );
|
|
| 112 | + |
|
| 113 | + $blog_id = get_current_blog_id(); |
|
| 114 | + if($blog_id>1){
|
|
| 115 | + $file_name = $blog_id."_".$file_name; |
|
| 116 | + } |
|
| 117 | + |
|
| 118 | + $file_path = realpath(dirname(__FILE__))."/map-cache/"; |
|
| 119 | + |
|
| 120 | + |
|
| 121 | + global $wp_filesystem; |
|
| 122 | + if (empty($wp_filesystem)) {
|
|
| 123 | + require_once (ABSPATH . '/wp-admin/includes/file.php'); |
|
| 124 | + WP_Filesystem(); |
|
| 125 | + } |
|
| 126 | + $wp_filesystem->put_contents( |
|
| 127 | + $file_path.$file_name.".json", |
|
| 128 | + $map_json, |
|
| 129 | + FS_CHMOD_FILE // predefined mode settings for WP files |
|
| 130 | + ); |
|
| 131 | + |
|
| 132 | + |
|
| 133 | + return $map_json; |
|
| 134 | 134 | |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | |
| 138 | 138 | if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'homemap_catlist') {
|
| 139 | - global $gd_session; |
|
| 140 | - $gd_post_type = sanitize_text_field($_REQUEST['post_type']); |
|
| 141 | - $gd_session->set('homemap_catlist_ptype', $gd_post_type);
|
|
| 142 | - $post_taxonomy = geodir_get_taxonomies($gd_post_type); |
|
| 143 | - $map_canvas_name = sanitize_text_field($_REQUEST['map_canvas']); |
|
| 144 | - $child_collapse = (bool)$_REQUEST['child_collapse']; |
|
| 145 | - echo home_map_taxonomy_walker($post_taxonomy, 0, true, 0, $map_canvas_name, $child_collapse, true); |
|
| 146 | - die; |
|
| 139 | + global $gd_session; |
|
| 140 | + $gd_post_type = sanitize_text_field($_REQUEST['post_type']); |
|
| 141 | + $gd_session->set('homemap_catlist_ptype', $gd_post_type);
|
|
| 142 | + $post_taxonomy = geodir_get_taxonomies($gd_post_type); |
|
| 143 | + $map_canvas_name = sanitize_text_field($_REQUEST['map_canvas']); |
|
| 144 | + $child_collapse = (bool)$_REQUEST['child_collapse']; |
|
| 145 | + echo home_map_taxonomy_walker($post_taxonomy, 0, true, 0, $map_canvas_name, $child_collapse, true); |
|
| 146 | + die; |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | // Send the content-type header with correct encoding |
| 150 | 150 | header("Content-type: text/javascript; charset=utf-8");
|
| 151 | 151 | |
| 152 | 152 | if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'cat') { // Retrives markers data for categories
|
| 153 | - echo get_markers(); |
|
| 154 | - exit; |
|
| 153 | + echo get_markers(); |
|
| 154 | + exit; |
|
| 155 | 155 | } else if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'info') { // Retrives marker info window html
|
| 156 | - /** |
|
| 157 | - * @global object $wpdb WordPress Database object. |
|
| 158 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 159 | - * @global object $gd_session GeoDirectory Session object. |
|
| 160 | - */ |
|
| 161 | - global $wpdb, $plugin_prefix, $gd_session, $sitepress; |
|
| 156 | + /** |
|
| 157 | + * @global object $wpdb WordPress Database object. |
|
| 158 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 159 | + * @global object $gd_session GeoDirectory Session object. |
|
| 160 | + */ |
|
| 161 | + global $wpdb, $plugin_prefix, $gd_session, $sitepress; |
|
| 162 | 162 | |
| 163 | - if ($_REQUEST['m_id'] != '') {
|
|
| 164 | - $pid = (int)$_REQUEST['m_id']; |
|
| 165 | - } else {
|
|
| 166 | - echo __('No marker data found', 'geodirectory');
|
|
| 167 | - exit; |
|
| 168 | - } |
|
| 163 | + if ($_REQUEST['m_id'] != '') {
|
|
| 164 | + $pid = (int)$_REQUEST['m_id']; |
|
| 165 | + } else {
|
|
| 166 | + echo __('No marker data found', 'geodirectory');
|
|
| 167 | + exit; |
|
| 168 | + } |
|
| 169 | 169 | |
| 170 | - if (isset($_REQUEST['post_preview']) && $_REQUEST['post_preview'] != '' && $gd_ses_listing = $gd_session->get('listing')) {
|
|
| 171 | - $post = (object)$gd_ses_listing; |
|
| 172 | - echo geodir_get_infowindow_html($post, $_REQUEST['post_preview']); |
|
| 173 | - } else {
|
|
| 174 | - $geodir_post_type = get_post_type($pid); |
|
| 170 | + if (isset($_REQUEST['post_preview']) && $_REQUEST['post_preview'] != '' && $gd_ses_listing = $gd_session->get('listing')) {
|
|
| 171 | + $post = (object)$gd_ses_listing; |
|
| 172 | + echo geodir_get_infowindow_html($post, $_REQUEST['post_preview']); |
|
| 173 | + } else {
|
|
| 174 | + $geodir_post_type = get_post_type($pid); |
|
| 175 | 175 | |
| 176 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 176 | + $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 177 | 177 | |
| 178 | - $sql = $wpdb->prepare("SELECT * FROM " . $table . " WHERE post_id = %d", array($pid));
|
|
| 178 | + $sql = $wpdb->prepare("SELECT * FROM " . $table . " WHERE post_id = %d", array($pid));
|
|
| 179 | 179 | |
| 180 | - $postinfo = $wpdb->get_results($sql); |
|
| 180 | + $postinfo = $wpdb->get_results($sql); |
|
| 181 | 181 | |
| 182 | - $data_arr = array(); |
|
| 182 | + $data_arr = array(); |
|
| 183 | 183 | |
| 184 | - if ($postinfo) {
|
|
| 185 | - $switch_lang = false; |
|
| 184 | + if ($postinfo) {
|
|
| 185 | + $switch_lang = false; |
|
| 186 | 186 | if ( geodir_is_wpml() && is_post_type_translated( $geodir_post_type ) ) {
|
| 187 | 187 | $post_lang = $sitepress->get_language_for_element( $pid, 'post_' . $geodir_post_type ); |
| 188 | 188 | $current_lang = $sitepress->get_current_language(); |
@@ -193,18 +193,18 @@ discard block |
||
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | $srcharr = array("'", "/", "-", '"', '\\');
|
| 196 | - $replarr = array("′", "⁄", "–", "“", '');
|
|
| 196 | + $replarr = array("′", "⁄", "–", "“", '');
|
|
| 197 | 197 | |
| 198 | - foreach ($postinfo as $postinfo_obj) {
|
|
| 199 | - echo geodir_get_infowindow_html($postinfo_obj); |
|
| 200 | - } |
|
| 198 | + foreach ($postinfo as $postinfo_obj) {
|
|
| 199 | + echo geodir_get_infowindow_html($postinfo_obj); |
|
| 200 | + } |
|
| 201 | 201 | |
| 202 | 202 | if ( $switch_lang !== false ) {
|
| 203 | 203 | $sitepress->switch_lang( $switch_lang, true ); |
| 204 | 204 | } |
| 205 | - } |
|
| 206 | - } |
|
| 207 | - exit; |
|
| 205 | + } |
|
| 206 | + } |
|
| 207 | + exit; |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |
@@ -223,93 +223,93 @@ discard block |
||
| 223 | 223 | */ |
| 224 | 224 | function get_markers() {
|
| 225 | 225 | |
| 226 | - global $wpdb, $plugin_prefix, $geodir_cat_icons, $gd_marker_sizes,$gd_session; |
|
| 226 | + global $wpdb, $plugin_prefix, $geodir_cat_icons, $gd_marker_sizes,$gd_session; |
|
| 227 | 227 | |
| 228 | 228 | |
| 229 | - /** |
|
| 230 | - * Filter to allow for any map caching to be output before queries. |
|
| 231 | - * |
|
| 232 | - * @since 1.6.22 |
|
| 233 | - */ |
|
| 234 | - $map_cache = apply_filters('geodir_get_markers_cache','');
|
|
| 235 | - if($map_cache){
|
|
| 236 | - return $map_cache; |
|
| 237 | - wp_die(); |
|
| 238 | - } |
|
| 229 | + /** |
|
| 230 | + * Filter to allow for any map caching to be output before queries. |
|
| 231 | + * |
|
| 232 | + * @since 1.6.22 |
|
| 233 | + */ |
|
| 234 | + $map_cache = apply_filters('geodir_get_markers_cache','');
|
|
| 235 | + if($map_cache){
|
|
| 236 | + return $map_cache; |
|
| 237 | + wp_die(); |
|
| 238 | + } |
|
| 239 | 239 | |
| 240 | 240 | |
| 241 | 241 | |
| 242 | - $search = ''; |
|
| 242 | + $search = ''; |
|
| 243 | 243 | |
| 244 | - $srcharr = array("'", "/", "-", '"', '\\', ''');
|
|
| 245 | - $replarr = array("′", "⁄", "–", "“", '', "′");
|
|
| 244 | + $srcharr = array("'", "/", "-", '"', '\\', ''');
|
|
| 245 | + $replarr = array("′", "⁄", "–", "“", '', "′");
|
|
| 246 | 246 | |
| 247 | - $post_type = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : 'gd_place'; |
|
| 247 | + $post_type = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : 'gd_place'; |
|
| 248 | 248 | |
| 249 | - $map_cat_ids_array = array('0');
|
|
| 250 | - $cat_find_array = array(" FIND_IN_SET(%d, pd." . $post_type . "category)");
|
|
| 249 | + $map_cat_ids_array = array('0');
|
|
| 250 | + $cat_find_array = array(" FIND_IN_SET(%d, pd." . $post_type . "category)");
|
|
| 251 | 251 | |
| 252 | 252 | |
| 253 | - $field_default_cat = ''; |
|
| 254 | - if (isset($_REQUEST['cat_id']) && $_REQUEST['cat_id'] != '') {
|
|
| 255 | - $map_cat_arr = trim($_REQUEST['cat_id'], ','); |
|
| 253 | + $field_default_cat = ''; |
|
| 254 | + if (isset($_REQUEST['cat_id']) && $_REQUEST['cat_id'] != '') {
|
|
| 255 | + $map_cat_arr = trim($_REQUEST['cat_id'], ','); |
|
| 256 | 256 | |
| 257 | - if (!empty($map_cat_arr)) {
|
|
| 258 | - $field_default_cat .= "WHEN (default_category IN (" . $map_cat_arr . ")) THEN default_category ";
|
|
| 257 | + if (!empty($map_cat_arr)) {
|
|
| 258 | + $field_default_cat .= "WHEN (default_category IN (" . $map_cat_arr . ")) THEN default_category ";
|
|
| 259 | 259 | |
| 260 | - $map_cat_ids_array = explode(',', $map_cat_arr);
|
|
| 261 | - $cat_find_array = array(); |
|
| 262 | - foreach ($map_cat_ids_array as $cat_id) {
|
|
| 263 | - $field_default_cat .= "WHEN (FIND_IN_SET($cat_id, `" . $post_type . "category`) > 0) THEN $cat_id "; |
|
| 264 | - $cat_find_array[] = " FIND_IN_SET(%d, pd." . $post_type . "category)"; |
|
| 265 | - $main_query_array[] = $cat_id; |
|
| 266 | - } |
|
| 260 | + $map_cat_ids_array = explode(',', $map_cat_arr);
|
|
| 261 | + $cat_find_array = array(); |
|
| 262 | + foreach ($map_cat_ids_array as $cat_id) {
|
|
| 263 | + $field_default_cat .= "WHEN (FIND_IN_SET($cat_id, `" . $post_type . "category`) > 0) THEN $cat_id "; |
|
| 264 | + $cat_find_array[] = " FIND_IN_SET(%d, pd." . $post_type . "category)"; |
|
| 265 | + $main_query_array[] = $cat_id; |
|
| 266 | + } |
|
| 267 | 267 | |
| 268 | - } |
|
| 269 | - } |
|
| 268 | + } |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - if (!empty($field_default_cat)) |
|
| 272 | - $field_default_cat = ''; |
|
| 271 | + if (!empty($field_default_cat)) |
|
| 272 | + $field_default_cat = ''; |
|
| 273 | 273 | |
| 274 | - if (!empty($cat_find_array)) |
|
| 275 | - $search .= "AND (" . implode(' OR ', $cat_find_array) . ")";
|
|
| 274 | + if (!empty($cat_find_array)) |
|
| 275 | + $search .= "AND (" . implode(' OR ', $cat_find_array) . ")";
|
|
| 276 | 276 | |
| 277 | - $main_query_array = $map_cat_ids_array; |
|
| 277 | + $main_query_array = $map_cat_ids_array; |
|
| 278 | 278 | |
| 279 | - if (isset($_REQUEST['search']) && !empty($_REQUEST['search']) && $_REQUEST['search'] != __('Title', 'geodirectory')) {
|
|
| 280 | - $search .= " AND p.post_title LIKE %s"; |
|
| 281 | - $main_query_array[] = "%" . $_REQUEST['search'] . "%"; |
|
| 282 | - } |
|
| 283 | - |
|
| 284 | - /** |
|
| 285 | - * Filter the marker query search SQL, values are replaces with %s or %d. |
|
| 286 | - * |
|
| 287 | - * @since 1.5.3 |
|
| 288 | - * |
|
| 289 | - * @param string $search The SQL query for search/where. |
|
| 290 | - */ |
|
| 291 | - $search = apply_filters('geodir_marker_search', $search);
|
|
| 292 | - /** |
|
| 293 | - * Filter the marker query search SQL values %s and %d, this is an array of values. |
|
| 294 | - * |
|
| 295 | - * @since 1.5.3 |
|
| 296 | - * |
|
| 297 | - * @param array $main_query_array The SQL query values for search/where. |
|
| 298 | - */ |
|
| 299 | - $main_query_array = apply_filters('geodir_marker_main_query_array', $main_query_array);
|
|
| 300 | - |
|
| 301 | - $gd_posttype = ''; |
|
| 302 | - if (isset($_REQUEST['gd_posttype']) && $_REQUEST['gd_posttype'] != '') {
|
|
| 303 | - $table = $plugin_prefix . $_REQUEST['gd_posttype'] . '_detail'; |
|
| 304 | - $gd_posttype = " AND p.post_type = %s"; |
|
| 305 | - $main_query_array[] = $_REQUEST['gd_posttype']; |
|
| 306 | - |
|
| 307 | - } else |
|
| 308 | - $table = $plugin_prefix . 'gd_place_detail'; |
|
| 309 | - |
|
| 310 | - $join = ", " . $table . " AS pd "; |
|
| 311 | - |
|
| 312 | - /** |
|
| 279 | + if (isset($_REQUEST['search']) && !empty($_REQUEST['search']) && $_REQUEST['search'] != __('Title', 'geodirectory')) {
|
|
| 280 | + $search .= " AND p.post_title LIKE %s"; |
|
| 281 | + $main_query_array[] = "%" . $_REQUEST['search'] . "%"; |
|
| 282 | + } |
|
| 283 | + |
|
| 284 | + /** |
|
| 285 | + * Filter the marker query search SQL, values are replaces with %s or %d. |
|
| 286 | + * |
|
| 287 | + * @since 1.5.3 |
|
| 288 | + * |
|
| 289 | + * @param string $search The SQL query for search/where. |
|
| 290 | + */ |
|
| 291 | + $search = apply_filters('geodir_marker_search', $search);
|
|
| 292 | + /** |
|
| 293 | + * Filter the marker query search SQL values %s and %d, this is an array of values. |
|
| 294 | + * |
|
| 295 | + * @since 1.5.3 |
|
| 296 | + * |
|
| 297 | + * @param array $main_query_array The SQL query values for search/where. |
|
| 298 | + */ |
|
| 299 | + $main_query_array = apply_filters('geodir_marker_main_query_array', $main_query_array);
|
|
| 300 | + |
|
| 301 | + $gd_posttype = ''; |
|
| 302 | + if (isset($_REQUEST['gd_posttype']) && $_REQUEST['gd_posttype'] != '') {
|
|
| 303 | + $table = $plugin_prefix . $_REQUEST['gd_posttype'] . '_detail'; |
|
| 304 | + $gd_posttype = " AND p.post_type = %s"; |
|
| 305 | + $main_query_array[] = $_REQUEST['gd_posttype']; |
|
| 306 | + |
|
| 307 | + } else |
|
| 308 | + $table = $plugin_prefix . 'gd_place_detail'; |
|
| 309 | + |
|
| 310 | + $join = ", " . $table . " AS pd "; |
|
| 311 | + |
|
| 312 | + /** |
|
| 313 | 313 | * Filter the SQL JOIN clause for the markers data |
| 314 | 314 | * |
| 315 | 315 | * @since 1.0.0 |
@@ -326,16 +326,16 @@ discard block |
||
| 326 | 326 | * @param string $search Row of searched fields to use in WHERE clause. |
| 327 | 327 | */ |
| 328 | 328 | $search = apply_filters('geodir_home_map_listing_where', $search);
|
| 329 | - $search = str_replace(array("'%", "%'"), array("'%%", "%%'"), $search);
|
|
| 330 | - $cat_type = $post_type . 'category'; |
|
| 331 | - if ($post_type == 'gd_event') {
|
|
| 332 | - $event_select = ", pd.recurring_dates, pd.is_recurring"; |
|
| 333 | - } else {
|
|
| 334 | - $event_select = ""; |
|
| 335 | - } |
|
| 336 | - |
|
| 337 | - $sql_select = 'SELECT pd.default_category, pd.' . $cat_type . ', pd.post_title, pd.post_id, pd.post_latitude, pd.post_longitude' . $event_select; |
|
| 338 | - /** |
|
| 329 | + $search = str_replace(array("'%", "%'"), array("'%%", "%%'"), $search);
|
|
| 330 | + $cat_type = $post_type . 'category'; |
|
| 331 | + if ($post_type == 'gd_event') {
|
|
| 332 | + $event_select = ", pd.recurring_dates, pd.is_recurring"; |
|
| 333 | + } else {
|
|
| 334 | + $event_select = ""; |
|
| 335 | + } |
|
| 336 | + |
|
| 337 | + $sql_select = 'SELECT pd.default_category, pd.' . $cat_type . ', pd.post_title, pd.post_id, pd.post_latitude, pd.post_longitude' . $event_select; |
|
| 338 | + /** |
|
| 339 | 339 | * Filter the SQL SELECT clause to retrive fields data |
| 340 | 340 | * |
| 341 | 341 | * @since 1.0.0 |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | */ |
| 355 | 355 | $groupby = apply_filters('geodir_home_map_listing_groupby', $groupby);
|
| 356 | 356 | |
| 357 | - $catsql = $wpdb->prepare("$select $field_default_cat FROM " . $wpdb->posts . " as p" . $join . " WHERE p.ID = pd.post_id AND p.post_status = 'publish' " . $search . $gd_posttype . $groupby , $main_query_array);
|
|
| 357 | + $catsql = $wpdb->prepare("$select $field_default_cat FROM " . $wpdb->posts . " as p" . $join . " WHERE p.ID = pd.post_id AND p.post_status = 'publish' " . $search . $gd_posttype . $groupby , $main_query_array);
|
|
| 358 | 358 | |
| 359 | 359 | /** |
| 360 | 360 | * Filter the SQL query to retrive markers data |
@@ -370,276 +370,276 @@ discard block |
||
| 370 | 370 | // print_r($gd_session); |
| 371 | 371 | // print_r($_SESSION); |
| 372 | 372 | |
| 373 | - $catinfo = $wpdb->get_results($catsql); |
|
| 373 | + $catinfo = $wpdb->get_results($catsql); |
|
| 374 | 374 | |
| 375 | - $cat_content_info = array(); |
|
| 376 | - $content_data = array(); |
|
| 377 | - $post_ids = array(); |
|
| 378 | - |
|
| 379 | - /** |
|
| 380 | - * Called before marker data is processed into JSON. |
|
| 381 | - * |
|
| 382 | - * Called before marker data is processed into JSON, this action can be used to change the format or add/remove markers. |
|
| 383 | - * |
|
| 384 | - * @since 1.5.3 |
|
| 385 | - * @param object $catinfo The posts object containing all marker data. |
|
| 386 | - * @see 'geodir_after_marker_post_process' |
|
| 387 | - */ |
|
| 388 | - $catinfo = apply_filters('geodir_before_marker_post_process', $catinfo);
|
|
| 389 | - |
|
| 390 | - /** |
|
| 391 | - * Called before marker data is processed into JSON. |
|
| 392 | - * |
|
| 393 | - * Called before marker data is processed into JSON, this action can be used to change the format or add/remove markers. |
|
| 394 | - * |
|
| 395 | - * @since 1.4.9 |
|
| 396 | - * @param object $catinfo The posts object containing all marker data. |
|
| 397 | - * @see 'geodir_after_marker_post_process' |
|
| 398 | - */ |
|
| 399 | - do_action('geodir_before_marker_post_process_action', $catinfo);
|
|
| 400 | - |
|
| 401 | - // Sort any posts into a ajax array |
|
| 402 | - if (!empty($catinfo)) {
|
|
| 403 | - $geodir_cat_icons = geodir_get_term_icon(); |
|
| 404 | - global $geodir_date_time_format, $geodir_date_format, $geodir_time_format; |
|
| 405 | - |
|
| 406 | - $today = strtotime(date_i18n('Y-m-d'));
|
|
| 407 | - $show_dates = $post_type == 'gd_event' ? (int)get_option('geodir_event_infowindow_dates_count', 1) : 0;
|
|
| 375 | + $cat_content_info = array(); |
|
| 376 | + $content_data = array(); |
|
| 377 | + $post_ids = array(); |
|
| 378 | + |
|
| 379 | + /** |
|
| 380 | + * Called before marker data is processed into JSON. |
|
| 381 | + * |
|
| 382 | + * Called before marker data is processed into JSON, this action can be used to change the format or add/remove markers. |
|
| 383 | + * |
|
| 384 | + * @since 1.5.3 |
|
| 385 | + * @param object $catinfo The posts object containing all marker data. |
|
| 386 | + * @see 'geodir_after_marker_post_process' |
|
| 387 | + */ |
|
| 388 | + $catinfo = apply_filters('geodir_before_marker_post_process', $catinfo);
|
|
| 389 | + |
|
| 390 | + /** |
|
| 391 | + * Called before marker data is processed into JSON. |
|
| 392 | + * |
|
| 393 | + * Called before marker data is processed into JSON, this action can be used to change the format or add/remove markers. |
|
| 394 | + * |
|
| 395 | + * @since 1.4.9 |
|
| 396 | + * @param object $catinfo The posts object containing all marker data. |
|
| 397 | + * @see 'geodir_after_marker_post_process' |
|
| 398 | + */ |
|
| 399 | + do_action('geodir_before_marker_post_process_action', $catinfo);
|
|
| 400 | + |
|
| 401 | + // Sort any posts into a ajax array |
|
| 402 | + if (!empty($catinfo)) {
|
|
| 403 | + $geodir_cat_icons = geodir_get_term_icon(); |
|
| 404 | + global $geodir_date_time_format, $geodir_date_format, $geodir_time_format; |
|
| 405 | + |
|
| 406 | + $today = strtotime(date_i18n('Y-m-d'));
|
|
| 407 | + $show_dates = $post_type == 'gd_event' ? (int)get_option('geodir_event_infowindow_dates_count', 1) : 0;
|
|
| 408 | 408 | |
| 409 | - foreach ($catinfo as $catinfo_obj) {
|
|
| 410 | - $post_title = $catinfo_obj->post_title; |
|
| 409 | + foreach ($catinfo as $catinfo_obj) {
|
|
| 410 | + $post_title = $catinfo_obj->post_title; |
|
| 411 | 411 | |
| 412 | - if ($post_type == 'gd_event' && !empty($catinfo_obj->recurring_dates) && $show_dates > 0) {
|
|
| 413 | - $event_dates = ''; |
|
| 414 | - $recurring_data = isset($catinfo_obj->recurring_dates) ? maybe_unserialize($catinfo_obj->recurring_dates) : array(); |
|
| 412 | + if ($post_type == 'gd_event' && !empty($catinfo_obj->recurring_dates) && $show_dates > 0) {
|
|
| 413 | + $event_dates = ''; |
|
| 414 | + $recurring_data = isset($catinfo_obj->recurring_dates) ? maybe_unserialize($catinfo_obj->recurring_dates) : array(); |
|
| 415 | 415 | |
| 416 | - $post_info = geodir_get_post_info($catinfo_obj->post_id); |
|
| 416 | + $post_info = geodir_get_post_info($catinfo_obj->post_id); |
|
| 417 | 417 | |
| 418 | - if (!empty($catinfo_obj->is_recurring) && !empty($recurring_data) && !empty($recurring_data['is_recurring']) && geodir_event_recurring_pkg($post_info)) {
|
|
| 419 | - $starttimes = ''; |
|
| 420 | - $endtimes = ''; |
|
| 421 | - $astarttimes = array(); |
|
| 422 | - $aendtimes = array(); |
|
| 423 | - if ( !isset( $recurring_data['repeat_type'] ) ) {
|
|
| 424 | - $recurring_data['repeat_type'] = 'custom'; |
|
| 425 | - } |
|
| 426 | - $repeat_type = isset( $recurring_data['repeat_type'] ) && in_array( $recurring_data['repeat_type'], array( 'day', 'week', 'month', 'year', 'custom' ) ) ? $recurring_data['repeat_type'] : 'year'; // day, week, month, year, custom |
|
| 427 | - $different_times = isset( $recurring_data['different_times'] ) && !empty( $recurring_data['different_times'] ) ? true : false; |
|
| 418 | + if (!empty($catinfo_obj->is_recurring) && !empty($recurring_data) && !empty($recurring_data['is_recurring']) && geodir_event_recurring_pkg($post_info)) {
|
|
| 419 | + $starttimes = ''; |
|
| 420 | + $endtimes = ''; |
|
| 421 | + $astarttimes = array(); |
|
| 422 | + $aendtimes = array(); |
|
| 423 | + if ( !isset( $recurring_data['repeat_type'] ) ) {
|
|
| 424 | + $recurring_data['repeat_type'] = 'custom'; |
|
| 425 | + } |
|
| 426 | + $repeat_type = isset( $recurring_data['repeat_type'] ) && in_array( $recurring_data['repeat_type'], array( 'day', 'week', 'month', 'year', 'custom' ) ) ? $recurring_data['repeat_type'] : 'year'; // day, week, month, year, custom |
|
| 427 | + $different_times = isset( $recurring_data['different_times'] ) && !empty( $recurring_data['different_times'] ) ? true : false; |
|
| 428 | 428 | |
| 429 | - $recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
|
|
| 429 | + $recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
|
|
| 430 | 430 | |
| 431 | - if ( !empty( $recurring_dates ) ) {
|
|
| 432 | - if ( empty( $recurring_data['all_day'] ) ) {
|
|
| 433 | - if ( $repeat_type == 'custom' && $different_times ) {
|
|
| 434 | - $astarttimes = isset( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array(); |
|
| 435 | - $aendtimes = isset( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array(); |
|
| 436 | - } else {
|
|
| 437 | - $starttimes = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : ''; |
|
| 438 | - $endtimes = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : ''; |
|
| 439 | - } |
|
| 440 | - } |
|
| 431 | + if ( !empty( $recurring_dates ) ) {
|
|
| 432 | + if ( empty( $recurring_data['all_day'] ) ) {
|
|
| 433 | + if ( $repeat_type == 'custom' && $different_times ) {
|
|
| 434 | + $astarttimes = isset( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array(); |
|
| 435 | + $aendtimes = isset( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array(); |
|
| 436 | + } else {
|
|
| 437 | + $starttimes = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : ''; |
|
| 438 | + $endtimes = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : ''; |
|
| 439 | + } |
|
| 440 | + } |
|
| 441 | 441 | |
| 442 | - $e = 0; |
|
| 443 | - foreach( $recurring_dates as $key => $date ) {
|
|
| 444 | - if ( $repeat_type == 'custom' && $different_times ) {
|
|
| 445 | - if ( !empty( $astarttimes ) && isset( $astarttimes[$key] ) ) {
|
|
| 446 | - $starttimes = $astarttimes[$key]; |
|
| 447 | - $endtimes = $aendtimes[$key]; |
|
| 448 | - } else {
|
|
| 449 | - $starttimes = ''; |
|
| 450 | - $endtimes = ''; |
|
| 451 | - } |
|
| 452 | - } |
|
| 442 | + $e = 0; |
|
| 443 | + foreach( $recurring_dates as $key => $date ) {
|
|
| 444 | + if ( $repeat_type == 'custom' && $different_times ) {
|
|
| 445 | + if ( !empty( $astarttimes ) && isset( $astarttimes[$key] ) ) {
|
|
| 446 | + $starttimes = $astarttimes[$key]; |
|
| 447 | + $endtimes = $aendtimes[$key]; |
|
| 448 | + } else {
|
|
| 449 | + $starttimes = ''; |
|
| 450 | + $endtimes = ''; |
|
| 451 | + } |
|
| 452 | + } |
|
| 453 | 453 | |
| 454 | - $duration = isset( $recurring_data['duration_x'] ) && (int)$recurring_data['duration_x'] > 0 ? (int)$recurring_data['duration_x'] : 1; |
|
| 455 | - $duration--; |
|
| 456 | - $enddate = date_i18n( 'Y-m-d', strtotime( $date . ' + ' . $duration . ' day' ) ); |
|
| 454 | + $duration = isset( $recurring_data['duration_x'] ) && (int)$recurring_data['duration_x'] > 0 ? (int)$recurring_data['duration_x'] : 1; |
|
| 455 | + $duration--; |
|
| 456 | + $enddate = date_i18n( 'Y-m-d', strtotime( $date . ' + ' . $duration . ' day' ) ); |
|
| 457 | 457 | |
| 458 | - // Hide past dates |
|
| 459 | - if ( strtotime( $enddate ) < $today ) {
|
|
| 460 | - continue; |
|
| 461 | - } |
|
| 458 | + // Hide past dates |
|
| 459 | + if ( strtotime( $enddate ) < $today ) {
|
|
| 460 | + continue; |
|
| 461 | + } |
|
| 462 | 462 | |
| 463 | - $sdate = strtotime( $date . ' ' . $starttimes ); |
|
| 464 | - $edate = strtotime( $enddate . ' ' . $endtimes ); |
|
| 463 | + $sdate = strtotime( $date . ' ' . $starttimes ); |
|
| 464 | + $edate = strtotime( $enddate . ' ' . $endtimes ); |
|
| 465 | 465 | |
| 466 | - $start_date = date_i18n( $geodir_date_time_format, $sdate ); |
|
| 467 | - $end_date = date_i18n( $geodir_date_time_format, $edate ); |
|
| 466 | + $start_date = date_i18n( $geodir_date_time_format, $sdate ); |
|
| 467 | + $end_date = date_i18n( $geodir_date_time_format, $edate ); |
|
| 468 | 468 | |
| 469 | - $same_day = false; |
|
| 470 | - $full_day = false; |
|
| 471 | - $same_datetime = false; |
|
| 469 | + $same_day = false; |
|
| 470 | + $full_day = false; |
|
| 471 | + $same_datetime = false; |
|
| 472 | 472 | |
| 473 | - if ( $starttimes == $endtimes && ( $starttimes == '' || $starttimes == '00:00:00' || $starttimes == '00:00' ) ) {
|
|
| 474 | - $full_day = true; |
|
| 475 | - } |
|
| 473 | + if ( $starttimes == $endtimes && ( $starttimes == '' || $starttimes == '00:00:00' || $starttimes == '00:00' ) ) {
|
|
| 474 | + $full_day = true; |
|
| 475 | + } |
|
| 476 | 476 | |
| 477 | - if ( $start_date == $end_date && $full_day ) {
|
|
| 478 | - $same_datetime = true; |
|
| 479 | - } |
|
| 480 | - |
|
| 481 | - $link_date = date_i18n( 'Y-m-d', $sdate ); |
|
| 482 | - $title_date = date_i18n( $geodir_date_format, $sdate ); |
|
| 483 | - if ( $full_day ) {
|
|
| 484 | - $start_date = $title_date; |
|
| 485 | - $end_date = date_i18n( $geodir_date_format, $edate ); |
|
| 486 | - } |
|
| 477 | + if ( $start_date == $end_date && $full_day ) {
|
|
| 478 | + $same_datetime = true; |
|
| 479 | + } |
|
| 480 | + |
|
| 481 | + $link_date = date_i18n( 'Y-m-d', $sdate ); |
|
| 482 | + $title_date = date_i18n( $geodir_date_format, $sdate ); |
|
| 483 | + if ( $full_day ) {
|
|
| 484 | + $start_date = $title_date; |
|
| 485 | + $end_date = date_i18n( $geodir_date_format, $edate ); |
|
| 486 | + } |
|
| 487 | 487 | |
| 488 | - if ( !$same_datetime && !$full_day && date_i18n( 'Y-m-d', $sdate ) == date_i18n( 'Y-m-d', $edate ) ) {
|
|
| 489 | - $same_day = true; |
|
| 488 | + if ( !$same_datetime && !$full_day && date_i18n( 'Y-m-d', $sdate ) == date_i18n( 'Y-m-d', $edate ) ) {
|
|
| 489 | + $same_day = true; |
|
| 490 | 490 | |
| 491 | - $start_date .= ' - ' . date_i18n( $geodir_time_format, $edate ); |
|
| 492 | - } |
|
| 491 | + $start_date .= ' - ' . date_i18n( $geodir_time_format, $edate ); |
|
| 492 | + } |
|
| 493 | 493 | |
| 494 | - $event_dates .= ' :: ' . $start_date; |
|
| 494 | + $event_dates .= ' :: ' . $start_date; |
|
| 495 | 495 | |
| 496 | - if ( !$same_day && !$same_datetime ) {
|
|
| 497 | - $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date; |
|
| 498 | - } |
|
| 496 | + if ( !$same_day && !$same_datetime ) {
|
|
| 497 | + $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date; |
|
| 498 | + } |
|
| 499 | 499 | |
| 500 | - $e++; |
|
| 500 | + $e++; |
|
| 501 | 501 | |
| 502 | - if ($show_dates > 0 && $e == $show_dates) { // only show 3 event dates
|
|
| 503 | - break; |
|
| 504 | - } |
|
| 505 | - } |
|
| 506 | - } |
|
| 507 | - } else {
|
|
| 508 | - $start_date = isset( $recurring_data['event_start'] ) ? $recurring_data['event_start'] : ''; |
|
| 509 | - $end_date = isset( $recurring_data['event_end'] ) ? $recurring_data['event_end'] : $start_date; |
|
| 510 | - $all_day = isset( $recurring_data['all_day'] ) && !empty( $recurring_data['all_day'] ) ? true : false; |
|
| 511 | - $starttime = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : ''; |
|
| 512 | - $endtime = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : ''; |
|
| 502 | + if ($show_dates > 0 && $e == $show_dates) { // only show 3 event dates
|
|
| 503 | + break; |
|
| 504 | + } |
|
| 505 | + } |
|
| 506 | + } |
|
| 507 | + } else {
|
|
| 508 | + $start_date = isset( $recurring_data['event_start'] ) ? $recurring_data['event_start'] : ''; |
|
| 509 | + $end_date = isset( $recurring_data['event_end'] ) ? $recurring_data['event_end'] : $start_date; |
|
| 510 | + $all_day = isset( $recurring_data['all_day'] ) && !empty( $recurring_data['all_day'] ) ? true : false; |
|
| 511 | + $starttime = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : ''; |
|
| 512 | + $endtime = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : ''; |
|
| 513 | 513 | |
| 514 | - $event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] ); |
|
| 515 | - $starttimes = isset( $recurring_data['starttimes'] ) && !empty( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array(); |
|
| 516 | - $endtimes = isset( $recurring_data['endtimes'] ) && !empty( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array(); |
|
| 514 | + $event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] ); |
|
| 515 | + $starttimes = isset( $recurring_data['starttimes'] ) && !empty( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array(); |
|
| 516 | + $endtimes = isset( $recurring_data['endtimes'] ) && !empty( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array(); |
|
| 517 | 517 | |
| 518 | - if ( !geodir_event_is_date( $start_date ) && !empty( $event_recurring_dates ) ) {
|
|
| 519 | - $start_date = $event_recurring_dates[0]; |
|
| 520 | - } |
|
| 518 | + if ( !geodir_event_is_date( $start_date ) && !empty( $event_recurring_dates ) ) {
|
|
| 519 | + $start_date = $event_recurring_dates[0]; |
|
| 520 | + } |
|
| 521 | 521 | |
| 522 | - if ( strtotime( $end_date ) < strtotime( $start_date ) ) {
|
|
| 523 | - $end_date = $start_date; |
|
| 524 | - } |
|
| 522 | + if ( strtotime( $end_date ) < strtotime( $start_date ) ) {
|
|
| 523 | + $end_date = $start_date; |
|
| 524 | + } |
|
| 525 | 525 | |
| 526 | - if ($end_date != '' && strtotime($end_date) >= $today) {
|
|
| 527 | - if ( $starttime == '' && !empty( $starttimes ) ) {
|
|
| 528 | - $starttime = $starttimes[0]; |
|
| 529 | - $endtime = $endtimes[0]; |
|
| 530 | - } |
|
| 526 | + if ($end_date != '' && strtotime($end_date) >= $today) {
|
|
| 527 | + if ( $starttime == '' && !empty( $starttimes ) ) {
|
|
| 528 | + $starttime = $starttimes[0]; |
|
| 529 | + $endtime = $endtimes[0]; |
|
| 530 | + } |
|
| 531 | 531 | |
| 532 | - $same_day = false; |
|
| 533 | - $one_day = false; |
|
| 534 | - if ( $start_date == $end_date && $all_day ) {
|
|
| 535 | - $one_day = true; |
|
| 536 | - } |
|
| 537 | - |
|
| 538 | - if ( $all_day ) {
|
|
| 539 | - $start_datetime = strtotime( $start_date ); |
|
| 540 | - $end_datetime = strtotime( $end_date ); |
|
| 532 | + $same_day = false; |
|
| 533 | + $one_day = false; |
|
| 534 | + if ( $start_date == $end_date && $all_day ) {
|
|
| 535 | + $one_day = true; |
|
| 536 | + } |
|
| 537 | + |
|
| 538 | + if ( $all_day ) {
|
|
| 539 | + $start_datetime = strtotime( $start_date ); |
|
| 540 | + $end_datetime = strtotime( $end_date ); |
|
| 541 | 541 | |
| 542 | - $start_date = date_i18n( $geodir_date_format, $start_datetime ); |
|
| 543 | - $end_date = date_i18n( $geodir_date_format, $end_datetime ); |
|
| 544 | - if ( $start_date == $end_date ) {
|
|
| 545 | - $one_day = true; |
|
| 546 | - } |
|
| 547 | - } else {
|
|
| 548 | - if ( $start_date == $end_date && $starttime == $endtime ) {
|
|
| 549 | - $end_date = date_i18n( 'Y-m-d', strtotime( $start_date . ' ' . $starttime . ' +1 day' ) ); |
|
| 550 | - $one_day = false; |
|
| 551 | - } |
|
| 552 | - $start_datetime = strtotime( $start_date . ' ' . $starttime ); |
|
| 553 | - $end_datetime = strtotime( $end_date . ' ' . $endtime ); |
|
| 542 | + $start_date = date_i18n( $geodir_date_format, $start_datetime ); |
|
| 543 | + $end_date = date_i18n( $geodir_date_format, $end_datetime ); |
|
| 544 | + if ( $start_date == $end_date ) {
|
|
| 545 | + $one_day = true; |
|
| 546 | + } |
|
| 547 | + } else {
|
|
| 548 | + if ( $start_date == $end_date && $starttime == $endtime ) {
|
|
| 549 | + $end_date = date_i18n( 'Y-m-d', strtotime( $start_date . ' ' . $starttime . ' +1 day' ) ); |
|
| 550 | + $one_day = false; |
|
| 551 | + } |
|
| 552 | + $start_datetime = strtotime( $start_date . ' ' . $starttime ); |
|
| 553 | + $end_datetime = strtotime( $end_date . ' ' . $endtime ); |
|
| 554 | 554 | |
| 555 | - $start_date = date_i18n( $geodir_date_time_format, $start_datetime ); |
|
| 556 | - $end_date = date_i18n( $geodir_date_time_format, $end_datetime ); |
|
| 557 | - } |
|
| 555 | + $start_date = date_i18n( $geodir_date_time_format, $start_datetime ); |
|
| 556 | + $end_date = date_i18n( $geodir_date_time_format, $end_datetime ); |
|
| 557 | + } |
|
| 558 | 558 | |
| 559 | - if ( !$one_day && date_i18n( 'Y-m-d', $start_datetime ) == date_i18n( 'Y-m-d', $end_datetime ) ) {
|
|
| 560 | - $same_day = true; |
|
| 559 | + if ( !$one_day && date_i18n( 'Y-m-d', $start_datetime ) == date_i18n( 'Y-m-d', $end_datetime ) ) {
|
|
| 560 | + $same_day = true; |
|
| 561 | 561 | |
| 562 | - $start_date .= ' - ' . date_i18n( $geodir_time_format, $end_datetime ); |
|
| 563 | - } |
|
| 562 | + $start_date .= ' - ' . date_i18n( $geodir_time_format, $end_datetime ); |
|
| 563 | + } |
|
| 564 | 564 | |
| 565 | - $event_dates .= ' :: ' . $start_date; |
|
| 565 | + $event_dates .= ' :: ' . $start_date; |
|
| 566 | 566 | |
| 567 | - if ( !$same_day && !$one_day ) {
|
|
| 568 | - $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date; |
|
| 569 | - } |
|
| 570 | - } |
|
| 571 | - } |
|
| 572 | - |
|
| 573 | - if (empty($event_dates)) {
|
|
| 574 | - continue; |
|
| 575 | - } |
|
| 567 | + if ( !$same_day && !$one_day ) {
|
|
| 568 | + $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date; |
|
| 569 | + } |
|
| 570 | + } |
|
| 571 | + } |
|
| 572 | + |
|
| 573 | + if (empty($event_dates)) {
|
|
| 574 | + continue; |
|
| 575 | + } |
|
| 576 | 576 | |
| 577 | - $post_title .= $event_dates; |
|
| 578 | - } |
|
| 577 | + $post_title .= $event_dates; |
|
| 578 | + } |
|
| 579 | 579 | |
| 580 | - $map_cat_ids_array; |
|
| 581 | - $default_cat = isset($catinfo_obj->default_category) ? $catinfo_obj->default_category : ''; |
|
| 580 | + $map_cat_ids_array; |
|
| 581 | + $default_cat = isset($catinfo_obj->default_category) ? $catinfo_obj->default_category : ''; |
|
| 582 | 582 | |
| 583 | - // if single cat lets just show that icon |
|
| 584 | - if(is_array($map_cat_ids_array) && count($map_cat_ids_array)==1){
|
|
| 585 | - $default_cat = (int)$map_cat_ids_array[0]; |
|
| 586 | - } |
|
| 583 | + // if single cat lets just show that icon |
|
| 584 | + if(is_array($map_cat_ids_array) && count($map_cat_ids_array)==1){
|
|
| 585 | + $default_cat = (int)$map_cat_ids_array[0]; |
|
| 586 | + } |
|
| 587 | 587 | |
| 588 | - $icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$default_cat]) ? $geodir_cat_icons[$default_cat] : ''; |
|
| 589 | - $mark_extra = (isset($catinfo_obj->marker_extra)) ? $catinfo_obj->marker_extra : ''; |
|
| 590 | - $title = str_replace($srcharr, $replarr, $post_title); |
|
| 588 | + $icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$default_cat]) ? $geodir_cat_icons[$default_cat] : ''; |
|
| 589 | + $mark_extra = (isset($catinfo_obj->marker_extra)) ? $catinfo_obj->marker_extra : ''; |
|
| 590 | + $title = str_replace($srcharr, $replarr, $post_title); |
|
| 591 | 591 | |
| 592 | - if ($icon != '') {
|
|
| 593 | - $gd_marker_sizes = empty($gd_marker_sizes) ? array() : $gd_marker_sizes; |
|
| 592 | + if ($icon != '') {
|
|
| 593 | + $gd_marker_sizes = empty($gd_marker_sizes) ? array() : $gd_marker_sizes; |
|
| 594 | 594 | |
| 595 | - if (isset($gd_marker_sizes[$icon])) {
|
|
| 596 | - $icon_size = $gd_marker_sizes[$icon]; |
|
| 597 | - } else {
|
|
| 598 | - $icon_size = geodir_get_marker_size($icon); |
|
| 599 | - $gd_marker_sizes[$icon] = $icon_size; |
|
| 600 | - } |
|
| 601 | - } else {
|
|
| 602 | - $icon_size = array('w' => 36, 'h' => 45);
|
|
| 603 | - } |
|
| 604 | - |
|
| 605 | - $content_data[] = '{"id":"' . $catinfo_obj->post_id . '","t": "' . $title . '","lt": "' . $catinfo_obj->post_latitude . '","ln": "' . $catinfo_obj->post_longitude . '","mk_id":"' . $catinfo_obj->post_id . '_' . $default_cat . '","i":"' . $icon . '","w":"' . $icon_size['w'] . '","h":"' . $icon_size['h'] . '"'.$mark_extra.'}';
|
|
| 606 | - $post_ids[] = $catinfo_obj->post_id; |
|
| 607 | - } |
|
| 608 | - } |
|
| 609 | - |
|
| 610 | - /** |
|
| 611 | - * Called after marker data is processed into JSON. |
|
| 612 | - * |
|
| 613 | - * Called after marker data is processed into JSON, this action can be used to change the format or add/remove markers. |
|
| 614 | - * |
|
| 615 | - * @since 1.4.9 |
|
| 616 | - * @param array $content_data The array containing all markers in JSON format. |
|
| 617 | - * @param object $catinfo The posts object containing all marker data. |
|
| 618 | - * @see 'geodir_before_marker_post_process' |
|
| 619 | - */ |
|
| 620 | - do_action('geodir_after_marker_post_process', $content_data, $catinfo);
|
|
| 621 | - |
|
| 622 | - if (!empty($content_data)) {
|
|
| 623 | - $cat_content_info[] = implode(',', $content_data);
|
|
| 624 | - } |
|
| 625 | - |
|
| 626 | - $totalcount = count(array_unique($post_ids)); |
|
| 627 | - |
|
| 628 | - if (!empty($cat_content_info)) {
|
|
| 629 | - $map_json = '[{"totalcount":"' . $totalcount . '",' . substr(implode(',', $cat_content_info), 1) . ']';
|
|
| 630 | - } |
|
| 631 | - else {
|
|
| 632 | - $map_json = '[{"totalcount":"0"}]';
|
|
| 633 | - } |
|
| 634 | - |
|
| 635 | - |
|
| 636 | - /** |
|
| 637 | - * Filter the marker json return. |
|
| 638 | - * |
|
| 639 | - * @since 1.6.22 |
|
| 640 | - * @param string $map_json The JSON string of the map markers results. |
|
| 641 | - */ |
|
| 642 | - return apply_filters('geodir_markers_json',$map_json);
|
|
| 595 | + if (isset($gd_marker_sizes[$icon])) {
|
|
| 596 | + $icon_size = $gd_marker_sizes[$icon]; |
|
| 597 | + } else {
|
|
| 598 | + $icon_size = geodir_get_marker_size($icon); |
|
| 599 | + $gd_marker_sizes[$icon] = $icon_size; |
|
| 600 | + } |
|
| 601 | + } else {
|
|
| 602 | + $icon_size = array('w' => 36, 'h' => 45);
|
|
| 603 | + } |
|
| 604 | + |
|
| 605 | + $content_data[] = '{"id":"' . $catinfo_obj->post_id . '","t": "' . $title . '","lt": "' . $catinfo_obj->post_latitude . '","ln": "' . $catinfo_obj->post_longitude . '","mk_id":"' . $catinfo_obj->post_id . '_' . $default_cat . '","i":"' . $icon . '","w":"' . $icon_size['w'] . '","h":"' . $icon_size['h'] . '"'.$mark_extra.'}';
|
|
| 606 | + $post_ids[] = $catinfo_obj->post_id; |
|
| 607 | + } |
|
| 608 | + } |
|
| 609 | + |
|
| 610 | + /** |
|
| 611 | + * Called after marker data is processed into JSON. |
|
| 612 | + * |
|
| 613 | + * Called after marker data is processed into JSON, this action can be used to change the format or add/remove markers. |
|
| 614 | + * |
|
| 615 | + * @since 1.4.9 |
|
| 616 | + * @param array $content_data The array containing all markers in JSON format. |
|
| 617 | + * @param object $catinfo The posts object containing all marker data. |
|
| 618 | + * @see 'geodir_before_marker_post_process' |
|
| 619 | + */ |
|
| 620 | + do_action('geodir_after_marker_post_process', $content_data, $catinfo);
|
|
| 621 | + |
|
| 622 | + if (!empty($content_data)) {
|
|
| 623 | + $cat_content_info[] = implode(',', $content_data);
|
|
| 624 | + } |
|
| 625 | + |
|
| 626 | + $totalcount = count(array_unique($post_ids)); |
|
| 627 | + |
|
| 628 | + if (!empty($cat_content_info)) {
|
|
| 629 | + $map_json = '[{"totalcount":"' . $totalcount . '",' . substr(implode(',', $cat_content_info), 1) . ']';
|
|
| 630 | + } |
|
| 631 | + else {
|
|
| 632 | + $map_json = '[{"totalcount":"0"}]';
|
|
| 633 | + } |
|
| 634 | + |
|
| 635 | + |
|
| 636 | + /** |
|
| 637 | + * Filter the marker json return. |
|
| 638 | + * |
|
| 639 | + * @since 1.6.22 |
|
| 640 | + * @param string $map_json The JSON string of the map markers results. |
|
| 641 | + */ |
|
| 642 | + return apply_filters('geodir_markers_json',$map_json);
|
|
| 643 | 643 | } |
| 644 | 644 | |
| 645 | 645 | |
@@ -7,9 +7,9 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | // Enable map cache if set |
| 10 | -if(get_option('geodir_enable_map_cache')){
|
|
| 11 | - add_filter('geodir_get_markers_cache','geodir_get_map_cache');
|
|
| 12 | - add_filter('geodir_markers_json','geodir_save_map_cache',10);
|
|
| 10 | +if (get_option('geodir_enable_map_cache')) {
|
|
| 11 | + add_filter('geodir_get_markers_cache', 'geodir_get_map_cache');
|
|
| 12 | + add_filter('geodir_markers_json', 'geodir_save_map_cache', 10);
|
|
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | |
@@ -21,10 +21,10 @@ discard block |
||
| 21 | 21 | * @since 1.6.22 |
| 22 | 22 | * @return string |
| 23 | 23 | */ |
| 24 | -function geodir_get_map_cache($cache){
|
|
| 24 | +function geodir_get_map_cache($cache) {
|
|
| 25 | 25 | |
| 26 | 26 | // if a search is going on then dont even try to check for cache. |
| 27 | - if(isset($_REQUEST['search']) && !empty($_REQUEST['search'])){
|
|
| 27 | + if (isset($_REQUEST['search']) && !empty($_REQUEST['search'])) {
|
|
| 28 | 28 | return $cache; |
| 29 | 29 | } |
| 30 | 30 | |
@@ -43,17 +43,17 @@ discard block |
||
| 43 | 43 | $url_params[] = isset($_REQUEST['gd_city']) ? $_REQUEST['gd_city'] : ''; |
| 44 | 44 | $url_params[] = isset($_REQUEST['gd_neighbourhood']) ? $_REQUEST['gd_neighbourhood'] : ''; |
| 45 | 45 | |
| 46 | - $file_name = sanitize_file_name( md5( implode("-",$url_params) ) );
|
|
| 46 | + $file_name = sanitize_file_name(md5(implode("-", $url_params)));
|
|
| 47 | 47 | |
| 48 | 48 | $blog_id = get_current_blog_id(); |
| 49 | - if($blog_id>1){
|
|
| 49 | + if ($blog_id > 1) {
|
|
| 50 | 50 | $file_name = $blog_id."_".$file_name; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | $file_path = realpath(dirname(__FILE__))."/map-cache/"; |
| 54 | 54 | |
| 55 | 55 | |
| 56 | - if(file_exists($file_path.$file_name.".json")){
|
|
| 56 | + if (file_exists($file_path.$file_name.".json")) {
|
|
| 57 | 57 | |
| 58 | 58 | |
| 59 | 59 | ob_start(); |
@@ -62,12 +62,12 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | // do the cache delete stuff |
| 64 | 64 | $cache_time = get_option('geodir_map_cache');
|
| 65 | - if(!$cache_time){
|
|
| 65 | + if (!$cache_time) {
|
|
| 66 | 66 | $cache_time = time(); |
| 67 | 67 | update_option('geodir_map_cache', $cache_time);
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - if((time() - $cache_time) > 86400){ // delete the cache every 24 hours
|
|
| 70 | + if ((time() - $cache_time) > 86400) { // delete the cache every 24 hours
|
|
| 71 | 71 | geodir_delete_map_cache(); |
| 72 | 72 | } |
| 73 | 73 | |
@@ -86,10 +86,10 @@ discard block |
||
| 86 | 86 | * @since 1.6.22 |
| 87 | 87 | * @return mixed |
| 88 | 88 | */ |
| 89 | -function geodir_save_map_cache($map_json){
|
|
| 89 | +function geodir_save_map_cache($map_json) {
|
|
| 90 | 90 | |
| 91 | 91 | // if a search is going on then dont even try to check for cache. |
| 92 | - if(isset($_REQUEST['search']) && !empty($_REQUEST['search'])){
|
|
| 92 | + if (isset($_REQUEST['search']) && !empty($_REQUEST['search'])) {
|
|
| 93 | 93 | return $map_json; |
| 94 | 94 | } |
| 95 | 95 | |
@@ -108,10 +108,10 @@ discard block |
||
| 108 | 108 | $url_params[] = isset($_REQUEST['gd_city']) ? $_REQUEST['gd_city'] : ''; |
| 109 | 109 | $url_params[] = isset($_REQUEST['gd_neighbourhood']) ? $_REQUEST['gd_neighbourhood'] : ''; |
| 110 | 110 | |
| 111 | - $file_name = sanitize_file_name( md5( implode("-",$url_params) ) );
|
|
| 111 | + $file_name = sanitize_file_name(md5(implode("-", $url_params)));
|
|
| 112 | 112 | |
| 113 | 113 | $blog_id = get_current_blog_id(); |
| 114 | - if($blog_id>1){
|
|
| 114 | + if ($blog_id > 1) {
|
|
| 115 | 115 | $file_name = $blog_id."_".$file_name; |
| 116 | 116 | } |
| 117 | 117 | |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | |
| 121 | 121 | global $wp_filesystem; |
| 122 | 122 | if (empty($wp_filesystem)) {
|
| 123 | - require_once (ABSPATH . '/wp-admin/includes/file.php'); |
|
| 123 | + require_once (ABSPATH.'/wp-admin/includes/file.php'); |
|
| 124 | 124 | WP_Filesystem(); |
| 125 | 125 | } |
| 126 | 126 | $wp_filesystem->put_contents( |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | $gd_session->set('homemap_catlist_ptype', $gd_post_type);
|
| 142 | 142 | $post_taxonomy = geodir_get_taxonomies($gd_post_type); |
| 143 | 143 | $map_canvas_name = sanitize_text_field($_REQUEST['map_canvas']); |
| 144 | - $child_collapse = (bool)$_REQUEST['child_collapse']; |
|
| 144 | + $child_collapse = (bool) $_REQUEST['child_collapse']; |
|
| 145 | 145 | echo home_map_taxonomy_walker($post_taxonomy, 0, true, 0, $map_canvas_name, $child_collapse, true); |
| 146 | 146 | die; |
| 147 | 147 | } |
@@ -161,21 +161,21 @@ discard block |
||
| 161 | 161 | global $wpdb, $plugin_prefix, $gd_session, $sitepress; |
| 162 | 162 | |
| 163 | 163 | if ($_REQUEST['m_id'] != '') {
|
| 164 | - $pid = (int)$_REQUEST['m_id']; |
|
| 164 | + $pid = (int) $_REQUEST['m_id']; |
|
| 165 | 165 | } else {
|
| 166 | 166 | echo __('No marker data found', 'geodirectory');
|
| 167 | 167 | exit; |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | if (isset($_REQUEST['post_preview']) && $_REQUEST['post_preview'] != '' && $gd_ses_listing = $gd_session->get('listing')) {
|
| 171 | - $post = (object)$gd_ses_listing; |
|
| 171 | + $post = (object) $gd_ses_listing; |
|
| 172 | 172 | echo geodir_get_infowindow_html($post, $_REQUEST['post_preview']); |
| 173 | 173 | } else {
|
| 174 | 174 | $geodir_post_type = get_post_type($pid); |
| 175 | 175 | |
| 176 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 176 | + $table = $plugin_prefix.$geodir_post_type.'_detail'; |
|
| 177 | 177 | |
| 178 | - $sql = $wpdb->prepare("SELECT * FROM " . $table . " WHERE post_id = %d", array($pid));
|
|
| 178 | + $sql = $wpdb->prepare("SELECT * FROM ".$table." WHERE post_id = %d", array($pid));
|
|
| 179 | 179 | |
| 180 | 180 | $postinfo = $wpdb->get_results($sql); |
| 181 | 181 | |
@@ -183,11 +183,11 @@ discard block |
||
| 183 | 183 | |
| 184 | 184 | if ($postinfo) {
|
| 185 | 185 | $switch_lang = false; |
| 186 | - if ( geodir_is_wpml() && is_post_type_translated( $geodir_post_type ) ) {
|
|
| 187 | - $post_lang = $sitepress->get_language_for_element( $pid, 'post_' . $geodir_post_type ); |
|
| 186 | + if (geodir_is_wpml() && is_post_type_translated($geodir_post_type)) {
|
|
| 187 | + $post_lang = $sitepress->get_language_for_element($pid, 'post_'.$geodir_post_type); |
|
| 188 | 188 | $current_lang = $sitepress->get_current_language(); |
| 189 | - if ( $post_lang !== $current_lang ) {
|
|
| 190 | - $sitepress->switch_lang( $post_lang, true ); |
|
| 189 | + if ($post_lang !== $current_lang) {
|
|
| 190 | + $sitepress->switch_lang($post_lang, true); |
|
| 191 | 191 | $switch_lang = $current_lang; |
| 192 | 192 | } |
| 193 | 193 | } |
@@ -199,8 +199,8 @@ discard block |
||
| 199 | 199 | echo geodir_get_infowindow_html($postinfo_obj); |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - if ( $switch_lang !== false ) {
|
|
| 203 | - $sitepress->switch_lang( $switch_lang, true ); |
|
| 202 | + if ($switch_lang !== false) {
|
|
| 203 | + $sitepress->switch_lang($switch_lang, true); |
|
| 204 | 204 | } |
| 205 | 205 | } |
| 206 | 206 | } |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | */ |
| 224 | 224 | function get_markers() {
|
| 225 | 225 | |
| 226 | - global $wpdb, $plugin_prefix, $geodir_cat_icons, $gd_marker_sizes,$gd_session; |
|
| 226 | + global $wpdb, $plugin_prefix, $geodir_cat_icons, $gd_marker_sizes, $gd_session; |
|
| 227 | 227 | |
| 228 | 228 | |
| 229 | 229 | /** |
@@ -231,8 +231,8 @@ discard block |
||
| 231 | 231 | * |
| 232 | 232 | * @since 1.6.22 |
| 233 | 233 | */ |
| 234 | - $map_cache = apply_filters('geodir_get_markers_cache','');
|
|
| 235 | - if($map_cache){
|
|
| 234 | + $map_cache = apply_filters('geodir_get_markers_cache', '');
|
|
| 235 | + if ($map_cache) {
|
|
| 236 | 236 | return $map_cache; |
| 237 | 237 | wp_die(); |
| 238 | 238 | } |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | $post_type = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : 'gd_place'; |
| 248 | 248 | |
| 249 | 249 | $map_cat_ids_array = array('0');
|
| 250 | - $cat_find_array = array(" FIND_IN_SET(%d, pd." . $post_type . "category)");
|
|
| 250 | + $cat_find_array = array(" FIND_IN_SET(%d, pd.".$post_type."category)");
|
|
| 251 | 251 | |
| 252 | 252 | |
| 253 | 253 | $field_default_cat = ''; |
@@ -255,13 +255,13 @@ discard block |
||
| 255 | 255 | $map_cat_arr = trim($_REQUEST['cat_id'], ','); |
| 256 | 256 | |
| 257 | 257 | if (!empty($map_cat_arr)) {
|
| 258 | - $field_default_cat .= "WHEN (default_category IN (" . $map_cat_arr . ")) THEN default_category ";
|
|
| 258 | + $field_default_cat .= "WHEN (default_category IN (".$map_cat_arr.")) THEN default_category ";
|
|
| 259 | 259 | |
| 260 | 260 | $map_cat_ids_array = explode(',', $map_cat_arr);
|
| 261 | 261 | $cat_find_array = array(); |
| 262 | 262 | foreach ($map_cat_ids_array as $cat_id) {
|
| 263 | - $field_default_cat .= "WHEN (FIND_IN_SET($cat_id, `" . $post_type . "category`) > 0) THEN $cat_id "; |
|
| 264 | - $cat_find_array[] = " FIND_IN_SET(%d, pd." . $post_type . "category)"; |
|
| 263 | + $field_default_cat .= "WHEN (FIND_IN_SET($cat_id, `".$post_type."category`) > 0) THEN $cat_id "; |
|
| 264 | + $cat_find_array[] = " FIND_IN_SET(%d, pd.".$post_type."category)"; |
|
| 265 | 265 | $main_query_array[] = $cat_id; |
| 266 | 266 | } |
| 267 | 267 | |
@@ -272,13 +272,13 @@ discard block |
||
| 272 | 272 | $field_default_cat = ''; |
| 273 | 273 | |
| 274 | 274 | if (!empty($cat_find_array)) |
| 275 | - $search .= "AND (" . implode(' OR ', $cat_find_array) . ")";
|
|
| 275 | + $search .= "AND (".implode(' OR ', $cat_find_array).")";
|
|
| 276 | 276 | |
| 277 | 277 | $main_query_array = $map_cat_ids_array; |
| 278 | 278 | |
| 279 | 279 | if (isset($_REQUEST['search']) && !empty($_REQUEST['search']) && $_REQUEST['search'] != __('Title', 'geodirectory')) {
|
| 280 | 280 | $search .= " AND p.post_title LIKE %s"; |
| 281 | - $main_query_array[] = "%" . $_REQUEST['search'] . "%"; |
|
| 281 | + $main_query_array[] = "%".$_REQUEST['search']."%"; |
|
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | /** |
@@ -300,14 +300,14 @@ discard block |
||
| 300 | 300 | |
| 301 | 301 | $gd_posttype = ''; |
| 302 | 302 | if (isset($_REQUEST['gd_posttype']) && $_REQUEST['gd_posttype'] != '') {
|
| 303 | - $table = $plugin_prefix . $_REQUEST['gd_posttype'] . '_detail'; |
|
| 303 | + $table = $plugin_prefix.$_REQUEST['gd_posttype'].'_detail'; |
|
| 304 | 304 | $gd_posttype = " AND p.post_type = %s"; |
| 305 | 305 | $main_query_array[] = $_REQUEST['gd_posttype']; |
| 306 | 306 | |
| 307 | 307 | } else |
| 308 | - $table = $plugin_prefix . 'gd_place_detail'; |
|
| 308 | + $table = $plugin_prefix.'gd_place_detail'; |
|
| 309 | 309 | |
| 310 | - $join = ", " . $table . " AS pd "; |
|
| 310 | + $join = ", ".$table." AS pd "; |
|
| 311 | 311 | |
| 312 | 312 | /** |
| 313 | 313 | * Filter the SQL JOIN clause for the markers data |
@@ -327,14 +327,14 @@ discard block |
||
| 327 | 327 | */ |
| 328 | 328 | $search = apply_filters('geodir_home_map_listing_where', $search);
|
| 329 | 329 | $search = str_replace(array("'%", "%'"), array("'%%", "%%'"), $search);
|
| 330 | - $cat_type = $post_type . 'category'; |
|
| 330 | + $cat_type = $post_type.'category'; |
|
| 331 | 331 | if ($post_type == 'gd_event') {
|
| 332 | 332 | $event_select = ", pd.recurring_dates, pd.is_recurring"; |
| 333 | 333 | } else {
|
| 334 | 334 | $event_select = ""; |
| 335 | 335 | } |
| 336 | 336 | |
| 337 | - $sql_select = 'SELECT pd.default_category, pd.' . $cat_type . ', pd.post_title, pd.post_id, pd.post_latitude, pd.post_longitude' . $event_select; |
|
| 337 | + $sql_select = 'SELECT pd.default_category, pd.'.$cat_type.', pd.post_title, pd.post_id, pd.post_latitude, pd.post_longitude'.$event_select; |
|
| 338 | 338 | /** |
| 339 | 339 | * Filter the SQL SELECT clause to retrive fields data |
| 340 | 340 | * |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | */ |
| 355 | 355 | $groupby = apply_filters('geodir_home_map_listing_groupby', $groupby);
|
| 356 | 356 | |
| 357 | - $catsql = $wpdb->prepare("$select $field_default_cat FROM " . $wpdb->posts . " as p" . $join . " WHERE p.ID = pd.post_id AND p.post_status = 'publish' " . $search . $gd_posttype . $groupby , $main_query_array);
|
|
| 357 | + $catsql = $wpdb->prepare("$select $field_default_cat FROM ".$wpdb->posts." as p".$join." WHERE p.ID = pd.post_id AND p.post_status = 'publish' ".$search.$gd_posttype.$groupby, $main_query_array);
|
|
| 358 | 358 | |
| 359 | 359 | /** |
| 360 | 360 | * Filter the SQL query to retrive markers data |
@@ -404,7 +404,7 @@ discard block |
||
| 404 | 404 | global $geodir_date_time_format, $geodir_date_format, $geodir_time_format; |
| 405 | 405 | |
| 406 | 406 | $today = strtotime(date_i18n('Y-m-d'));
|
| 407 | - $show_dates = $post_type == 'gd_event' ? (int)get_option('geodir_event_infowindow_dates_count', 1) : 0;
|
|
| 407 | + $show_dates = $post_type == 'gd_event' ? (int) get_option('geodir_event_infowindow_dates_count', 1) : 0;
|
|
| 408 | 408 | |
| 409 | 409 | foreach ($catinfo as $catinfo_obj) {
|
| 410 | 410 | $post_title = $catinfo_obj->post_title; |
@@ -420,29 +420,29 @@ discard block |
||
| 420 | 420 | $endtimes = ''; |
| 421 | 421 | $astarttimes = array(); |
| 422 | 422 | $aendtimes = array(); |
| 423 | - if ( !isset( $recurring_data['repeat_type'] ) ) {
|
|
| 423 | + if (!isset($recurring_data['repeat_type'])) {
|
|
| 424 | 424 | $recurring_data['repeat_type'] = 'custom'; |
| 425 | 425 | } |
| 426 | - $repeat_type = isset( $recurring_data['repeat_type'] ) && in_array( $recurring_data['repeat_type'], array( 'day', 'week', 'month', 'year', 'custom' ) ) ? $recurring_data['repeat_type'] : 'year'; // day, week, month, year, custom |
|
| 427 | - $different_times = isset( $recurring_data['different_times'] ) && !empty( $recurring_data['different_times'] ) ? true : false; |
|
| 426 | + $repeat_type = isset($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'year'; // day, week, month, year, custom
|
|
| 427 | + $different_times = isset($recurring_data['different_times']) && !empty($recurring_data['different_times']) ? true : false; |
|
| 428 | 428 | |
| 429 | 429 | $recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
|
| 430 | 430 | |
| 431 | - if ( !empty( $recurring_dates ) ) {
|
|
| 432 | - if ( empty( $recurring_data['all_day'] ) ) {
|
|
| 433 | - if ( $repeat_type == 'custom' && $different_times ) {
|
|
| 434 | - $astarttimes = isset( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array(); |
|
| 435 | - $aendtimes = isset( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array(); |
|
| 431 | + if (!empty($recurring_dates)) {
|
|
| 432 | + if (empty($recurring_data['all_day'])) {
|
|
| 433 | + if ($repeat_type == 'custom' && $different_times) {
|
|
| 434 | + $astarttimes = isset($recurring_data['starttimes']) ? $recurring_data['starttimes'] : array(); |
|
| 435 | + $aendtimes = isset($recurring_data['endtimes']) ? $recurring_data['endtimes'] : array(); |
|
| 436 | 436 | } else {
|
| 437 | - $starttimes = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : ''; |
|
| 438 | - $endtimes = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : ''; |
|
| 437 | + $starttimes = isset($recurring_data['starttime']) ? $recurring_data['starttime'] : ''; |
|
| 438 | + $endtimes = isset($recurring_data['endtime']) ? $recurring_data['endtime'] : ''; |
|
| 439 | 439 | } |
| 440 | 440 | } |
| 441 | 441 | |
| 442 | 442 | $e = 0; |
| 443 | - foreach( $recurring_dates as $key => $date ) {
|
|
| 444 | - if ( $repeat_type == 'custom' && $different_times ) {
|
|
| 445 | - if ( !empty( $astarttimes ) && isset( $astarttimes[$key] ) ) {
|
|
| 443 | + foreach ($recurring_dates as $key => $date) {
|
|
| 444 | + if ($repeat_type == 'custom' && $different_times) {
|
|
| 445 | + if (!empty($astarttimes) && isset($astarttimes[$key])) {
|
|
| 446 | 446 | $starttimes = $astarttimes[$key]; |
| 447 | 447 | $endtimes = $aendtimes[$key]; |
| 448 | 448 | } else {
|
@@ -451,50 +451,50 @@ discard block |
||
| 451 | 451 | } |
| 452 | 452 | } |
| 453 | 453 | |
| 454 | - $duration = isset( $recurring_data['duration_x'] ) && (int)$recurring_data['duration_x'] > 0 ? (int)$recurring_data['duration_x'] : 1; |
|
| 454 | + $duration = isset($recurring_data['duration_x']) && (int) $recurring_data['duration_x'] > 0 ? (int) $recurring_data['duration_x'] : 1; |
|
| 455 | 455 | $duration--; |
| 456 | - $enddate = date_i18n( 'Y-m-d', strtotime( $date . ' + ' . $duration . ' day' ) ); |
|
| 456 | + $enddate = date_i18n('Y-m-d', strtotime($date.' + '.$duration.' day'));
|
|
| 457 | 457 | |
| 458 | 458 | // Hide past dates |
| 459 | - if ( strtotime( $enddate ) < $today ) {
|
|
| 459 | + if (strtotime($enddate) < $today) {
|
|
| 460 | 460 | continue; |
| 461 | 461 | } |
| 462 | 462 | |
| 463 | - $sdate = strtotime( $date . ' ' . $starttimes ); |
|
| 464 | - $edate = strtotime( $enddate . ' ' . $endtimes ); |
|
| 463 | + $sdate = strtotime($date.' '.$starttimes); |
|
| 464 | + $edate = strtotime($enddate.' '.$endtimes); |
|
| 465 | 465 | |
| 466 | - $start_date = date_i18n( $geodir_date_time_format, $sdate ); |
|
| 467 | - $end_date = date_i18n( $geodir_date_time_format, $edate ); |
|
| 466 | + $start_date = date_i18n($geodir_date_time_format, $sdate); |
|
| 467 | + $end_date = date_i18n($geodir_date_time_format, $edate); |
|
| 468 | 468 | |
| 469 | 469 | $same_day = false; |
| 470 | 470 | $full_day = false; |
| 471 | 471 | $same_datetime = false; |
| 472 | 472 | |
| 473 | - if ( $starttimes == $endtimes && ( $starttimes == '' || $starttimes == '00:00:00' || $starttimes == '00:00' ) ) {
|
|
| 473 | + if ($starttimes == $endtimes && ($starttimes == '' || $starttimes == '00:00:00' || $starttimes == '00:00')) {
|
|
| 474 | 474 | $full_day = true; |
| 475 | 475 | } |
| 476 | 476 | |
| 477 | - if ( $start_date == $end_date && $full_day ) {
|
|
| 477 | + if ($start_date == $end_date && $full_day) {
|
|
| 478 | 478 | $same_datetime = true; |
| 479 | 479 | } |
| 480 | 480 | |
| 481 | - $link_date = date_i18n( 'Y-m-d', $sdate ); |
|
| 482 | - $title_date = date_i18n( $geodir_date_format, $sdate ); |
|
| 483 | - if ( $full_day ) {
|
|
| 481 | + $link_date = date_i18n('Y-m-d', $sdate);
|
|
| 482 | + $title_date = date_i18n($geodir_date_format, $sdate); |
|
| 483 | + if ($full_day) {
|
|
| 484 | 484 | $start_date = $title_date; |
| 485 | - $end_date = date_i18n( $geodir_date_format, $edate ); |
|
| 485 | + $end_date = date_i18n($geodir_date_format, $edate); |
|
| 486 | 486 | } |
| 487 | 487 | |
| 488 | - if ( !$same_datetime && !$full_day && date_i18n( 'Y-m-d', $sdate ) == date_i18n( 'Y-m-d', $edate ) ) {
|
|
| 488 | + if (!$same_datetime && !$full_day && date_i18n('Y-m-d', $sdate) == date_i18n('Y-m-d', $edate)) {
|
|
| 489 | 489 | $same_day = true; |
| 490 | 490 | |
| 491 | - $start_date .= ' - ' . date_i18n( $geodir_time_format, $edate ); |
|
| 491 | + $start_date .= ' - '.date_i18n($geodir_time_format, $edate); |
|
| 492 | 492 | } |
| 493 | 493 | |
| 494 | - $event_dates .= ' :: ' . $start_date; |
|
| 494 | + $event_dates .= ' :: '.$start_date; |
|
| 495 | 495 | |
| 496 | - if ( !$same_day && !$same_datetime ) {
|
|
| 497 | - $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date; |
|
| 496 | + if (!$same_day && !$same_datetime) {
|
|
| 497 | + $event_dates .= ' '.__('to', 'geodirectory').' '.$end_date;
|
|
| 498 | 498 | } |
| 499 | 499 | |
| 500 | 500 | $e++; |
@@ -505,67 +505,67 @@ discard block |
||
| 505 | 505 | } |
| 506 | 506 | } |
| 507 | 507 | } else {
|
| 508 | - $start_date = isset( $recurring_data['event_start'] ) ? $recurring_data['event_start'] : ''; |
|
| 509 | - $end_date = isset( $recurring_data['event_end'] ) ? $recurring_data['event_end'] : $start_date; |
|
| 510 | - $all_day = isset( $recurring_data['all_day'] ) && !empty( $recurring_data['all_day'] ) ? true : false; |
|
| 511 | - $starttime = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : ''; |
|
| 512 | - $endtime = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : ''; |
|
| 508 | + $start_date = isset($recurring_data['event_start']) ? $recurring_data['event_start'] : ''; |
|
| 509 | + $end_date = isset($recurring_data['event_end']) ? $recurring_data['event_end'] : $start_date; |
|
| 510 | + $all_day = isset($recurring_data['all_day']) && !empty($recurring_data['all_day']) ? true : false; |
|
| 511 | + $starttime = isset($recurring_data['starttime']) ? $recurring_data['starttime'] : ''; |
|
| 512 | + $endtime = isset($recurring_data['endtime']) ? $recurring_data['endtime'] : ''; |
|
| 513 | 513 | |
| 514 | - $event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] ); |
|
| 515 | - $starttimes = isset( $recurring_data['starttimes'] ) && !empty( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array(); |
|
| 516 | - $endtimes = isset( $recurring_data['endtimes'] ) && !empty( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array(); |
|
| 514 | + $event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
|
|
| 515 | + $starttimes = isset($recurring_data['starttimes']) && !empty($recurring_data['starttimes']) ? $recurring_data['starttimes'] : array(); |
|
| 516 | + $endtimes = isset($recurring_data['endtimes']) && !empty($recurring_data['endtimes']) ? $recurring_data['endtimes'] : array(); |
|
| 517 | 517 | |
| 518 | - if ( !geodir_event_is_date( $start_date ) && !empty( $event_recurring_dates ) ) {
|
|
| 518 | + if (!geodir_event_is_date($start_date) && !empty($event_recurring_dates)) {
|
|
| 519 | 519 | $start_date = $event_recurring_dates[0]; |
| 520 | 520 | } |
| 521 | 521 | |
| 522 | - if ( strtotime( $end_date ) < strtotime( $start_date ) ) {
|
|
| 522 | + if (strtotime($end_date) < strtotime($start_date)) {
|
|
| 523 | 523 | $end_date = $start_date; |
| 524 | 524 | } |
| 525 | 525 | |
| 526 | 526 | if ($end_date != '' && strtotime($end_date) >= $today) {
|
| 527 | - if ( $starttime == '' && !empty( $starttimes ) ) {
|
|
| 527 | + if ($starttime == '' && !empty($starttimes)) {
|
|
| 528 | 528 | $starttime = $starttimes[0]; |
| 529 | 529 | $endtime = $endtimes[0]; |
| 530 | 530 | } |
| 531 | 531 | |
| 532 | 532 | $same_day = false; |
| 533 | 533 | $one_day = false; |
| 534 | - if ( $start_date == $end_date && $all_day ) {
|
|
| 534 | + if ($start_date == $end_date && $all_day) {
|
|
| 535 | 535 | $one_day = true; |
| 536 | 536 | } |
| 537 | 537 | |
| 538 | - if ( $all_day ) {
|
|
| 539 | - $start_datetime = strtotime( $start_date ); |
|
| 540 | - $end_datetime = strtotime( $end_date ); |
|
| 538 | + if ($all_day) {
|
|
| 539 | + $start_datetime = strtotime($start_date); |
|
| 540 | + $end_datetime = strtotime($end_date); |
|
| 541 | 541 | |
| 542 | - $start_date = date_i18n( $geodir_date_format, $start_datetime ); |
|
| 543 | - $end_date = date_i18n( $geodir_date_format, $end_datetime ); |
|
| 544 | - if ( $start_date == $end_date ) {
|
|
| 542 | + $start_date = date_i18n($geodir_date_format, $start_datetime); |
|
| 543 | + $end_date = date_i18n($geodir_date_format, $end_datetime); |
|
| 544 | + if ($start_date == $end_date) {
|
|
| 545 | 545 | $one_day = true; |
| 546 | 546 | } |
| 547 | 547 | } else {
|
| 548 | - if ( $start_date == $end_date && $starttime == $endtime ) {
|
|
| 549 | - $end_date = date_i18n( 'Y-m-d', strtotime( $start_date . ' ' . $starttime . ' +1 day' ) ); |
|
| 548 | + if ($start_date == $end_date && $starttime == $endtime) {
|
|
| 549 | + $end_date = date_i18n('Y-m-d', strtotime($start_date.' '.$starttime.' +1 day'));
|
|
| 550 | 550 | $one_day = false; |
| 551 | 551 | } |
| 552 | - $start_datetime = strtotime( $start_date . ' ' . $starttime ); |
|
| 553 | - $end_datetime = strtotime( $end_date . ' ' . $endtime ); |
|
| 552 | + $start_datetime = strtotime($start_date.' '.$starttime); |
|
| 553 | + $end_datetime = strtotime($end_date.' '.$endtime); |
|
| 554 | 554 | |
| 555 | - $start_date = date_i18n( $geodir_date_time_format, $start_datetime ); |
|
| 556 | - $end_date = date_i18n( $geodir_date_time_format, $end_datetime ); |
|
| 555 | + $start_date = date_i18n($geodir_date_time_format, $start_datetime); |
|
| 556 | + $end_date = date_i18n($geodir_date_time_format, $end_datetime); |
|
| 557 | 557 | } |
| 558 | 558 | |
| 559 | - if ( !$one_day && date_i18n( 'Y-m-d', $start_datetime ) == date_i18n( 'Y-m-d', $end_datetime ) ) {
|
|
| 559 | + if (!$one_day && date_i18n('Y-m-d', $start_datetime) == date_i18n('Y-m-d', $end_datetime)) {
|
|
| 560 | 560 | $same_day = true; |
| 561 | 561 | |
| 562 | - $start_date .= ' - ' . date_i18n( $geodir_time_format, $end_datetime ); |
|
| 562 | + $start_date .= ' - '.date_i18n($geodir_time_format, $end_datetime); |
|
| 563 | 563 | } |
| 564 | 564 | |
| 565 | - $event_dates .= ' :: ' . $start_date; |
|
| 565 | + $event_dates .= ' :: '.$start_date; |
|
| 566 | 566 | |
| 567 | - if ( !$same_day && !$one_day ) {
|
|
| 568 | - $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date; |
|
| 567 | + if (!$same_day && !$one_day) {
|
|
| 568 | + $event_dates .= ' '.__('to', 'geodirectory').' '.$end_date;
|
|
| 569 | 569 | } |
| 570 | 570 | } |
| 571 | 571 | } |
@@ -581,8 +581,8 @@ discard block |
||
| 581 | 581 | $default_cat = isset($catinfo_obj->default_category) ? $catinfo_obj->default_category : ''; |
| 582 | 582 | |
| 583 | 583 | // if single cat lets just show that icon |
| 584 | - if(is_array($map_cat_ids_array) && count($map_cat_ids_array)==1){
|
|
| 585 | - $default_cat = (int)$map_cat_ids_array[0]; |
|
| 584 | + if (is_array($map_cat_ids_array) && count($map_cat_ids_array) == 1) {
|
|
| 585 | + $default_cat = (int) $map_cat_ids_array[0]; |
|
| 586 | 586 | } |
| 587 | 587 | |
| 588 | 588 | $icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$default_cat]) ? $geodir_cat_icons[$default_cat] : ''; |
@@ -602,7 +602,7 @@ discard block |
||
| 602 | 602 | $icon_size = array('w' => 36, 'h' => 45);
|
| 603 | 603 | } |
| 604 | 604 | |
| 605 | - $content_data[] = '{"id":"' . $catinfo_obj->post_id . '","t": "' . $title . '","lt": "' . $catinfo_obj->post_latitude . '","ln": "' . $catinfo_obj->post_longitude . '","mk_id":"' . $catinfo_obj->post_id . '_' . $default_cat . '","i":"' . $icon . '","w":"' . $icon_size['w'] . '","h":"' . $icon_size['h'] . '"'.$mark_extra.'}';
|
|
| 605 | + $content_data[] = '{"id":"'.$catinfo_obj->post_id.'","t": "'.$title.'","lt": "'.$catinfo_obj->post_latitude.'","ln": "'.$catinfo_obj->post_longitude.'","mk_id":"'.$catinfo_obj->post_id.'_'.$default_cat.'","i":"'.$icon.'","w":"'.$icon_size['w'].'","h":"'.$icon_size['h'].'"'.$mark_extra.'}';
|
|
| 606 | 606 | $post_ids[] = $catinfo_obj->post_id; |
| 607 | 607 | } |
| 608 | 608 | } |
@@ -626,10 +626,10 @@ discard block |
||
| 626 | 626 | $totalcount = count(array_unique($post_ids)); |
| 627 | 627 | |
| 628 | 628 | if (!empty($cat_content_info)) {
|
| 629 | - $map_json = '[{"totalcount":"' . $totalcount . '",' . substr(implode(',', $cat_content_info), 1) . ']';
|
|
| 629 | + $map_json = '[{"totalcount":"'.$totalcount.'",'.substr(implode(',', $cat_content_info), 1).']';
|
|
| 630 | 630 | } |
| 631 | 631 | else {
|
| 632 | - $map_json = '[{"totalcount":"0"}]';
|
|
| 632 | + $map_json = '[{"totalcount":"0"}]';
|
|
| 633 | 633 | } |
| 634 | 634 | |
| 635 | 635 | |
@@ -639,7 +639,7 @@ discard block |
||
| 639 | 639 | * @since 1.6.22 |
| 640 | 640 | * @param string $map_json The JSON string of the map markers results. |
| 641 | 641 | */ |
| 642 | - return apply_filters('geodir_markers_json',$map_json);
|
|
| 642 | + return apply_filters('geodir_markers_json', $map_json);
|
|
| 643 | 643 | } |
| 644 | 644 | |
| 645 | 645 | |
@@ -13,11 +13,11 @@ discard block |
||
| 13 | 13 | * @since 1.4.6 |
| 14 | 14 | * @return int|null Return the page ID if present or null if not. |
| 15 | 15 | */ |
| 16 | -function geodir_add_listing_page_id(){ |
|
| 16 | +function geodir_add_listing_page_id() { |
|
| 17 | 17 | $gd_page_id = get_option('geodir_add_listing_page'); |
| 18 | 18 | |
| 19 | 19 | if (geodir_is_wpml()) { |
| 20 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 20 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | return $gd_page_id; |
@@ -30,11 +30,11 @@ discard block |
||
| 30 | 30 | * @since 1.4.6 |
| 31 | 31 | * @return int|null Return the page ID if present or null if not. |
| 32 | 32 | */ |
| 33 | -function geodir_preview_page_id(){ |
|
| 33 | +function geodir_preview_page_id() { |
|
| 34 | 34 | $gd_page_id = get_option('geodir_preview_page'); |
| 35 | 35 | |
| 36 | 36 | if (geodir_is_wpml()) { |
| 37 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 37 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | return $gd_page_id; |
@@ -47,11 +47,11 @@ discard block |
||
| 47 | 47 | * @since 1.4.6 |
| 48 | 48 | * @return int|null Return the page ID if present or null if not. |
| 49 | 49 | */ |
| 50 | -function geodir_success_page_id(){ |
|
| 50 | +function geodir_success_page_id() { |
|
| 51 | 51 | $gd_page_id = get_option('geodir_success_page'); |
| 52 | 52 | |
| 53 | 53 | if (geodir_is_wpml()) { |
| 54 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 54 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | return $gd_page_id; |
@@ -64,11 +64,11 @@ discard block |
||
| 64 | 64 | * @since 1.4.6 |
| 65 | 65 | * @return int|null Return the page ID if present or null if not. |
| 66 | 66 | */ |
| 67 | -function geodir_location_page_id(){ |
|
| 67 | +function geodir_location_page_id() { |
|
| 68 | 68 | $gd_page_id = get_option('geodir_location_page'); |
| 69 | 69 | |
| 70 | 70 | if (geodir_is_wpml()) { |
| 71 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 71 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | return $gd_page_id; |
@@ -81,11 +81,11 @@ discard block |
||
| 81 | 81 | * @since 1.5.4 |
| 82 | 82 | * @return int|null Return the page ID if present or null if not. |
| 83 | 83 | */ |
| 84 | -function geodir_home_page_id(){ |
|
| 84 | +function geodir_home_page_id() { |
|
| 85 | 85 | $gd_page_id = get_option('geodir_home_page'); |
| 86 | 86 | |
| 87 | 87 | if (geodir_is_wpml()) { |
| 88 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 88 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | return $gd_page_id; |
@@ -98,11 +98,11 @@ discard block |
||
| 98 | 98 | * @since 1.5.3 |
| 99 | 99 | * @return int|null Return the page ID if present or null if not. |
| 100 | 100 | */ |
| 101 | -function geodir_info_page_id(){ |
|
| 101 | +function geodir_info_page_id() { |
|
| 102 | 102 | $gd_page_id = get_option('geodir_info_page'); |
| 103 | 103 | |
| 104 | 104 | if (geodir_is_wpml()) { |
| 105 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 105 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | return $gd_page_id; |
@@ -115,11 +115,11 @@ discard block |
||
| 115 | 115 | * @since 1.5.3 |
| 116 | 116 | * @return int|null Return the page ID if present or null if not. |
| 117 | 117 | */ |
| 118 | -function geodir_login_page_id(){ |
|
| 118 | +function geodir_login_page_id() { |
|
| 119 | 119 | $gd_page_id = get_option('geodir_login_page'); |
| 120 | 120 | |
| 121 | 121 | if (geodir_is_wpml()) { |
| 122 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 122 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | return $gd_page_id; |
@@ -133,20 +133,20 @@ discard block |
||
| 133 | 133 | * @since 1.5.3 |
| 134 | 134 | * @return int|null Return the page ID if present or null if not. |
| 135 | 135 | */ |
| 136 | -function geodir_login_url($args=array()){ |
|
| 136 | +function geodir_login_url($args = array()) { |
|
| 137 | 137 | $gd_page_id = get_option('geodir_login_page'); |
| 138 | 138 | |
| 139 | 139 | if (geodir_is_wpml()) { |
| 140 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 140 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | if (function_exists('geodir_location_geo_home_link')) { |
| 144 | 144 | remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - if (geodir_is_wpml()){ |
|
| 147 | + if (geodir_is_wpml()) { |
|
| 148 | 148 | $home_url = icl_get_home_url(); |
| 149 | - }else{ |
|
| 149 | + } else { |
|
| 150 | 150 | $home_url = home_url(); |
| 151 | 151 | } |
| 152 | 152 | |
@@ -154,17 +154,17 @@ discard block |
||
| 154 | 154 | add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - if($gd_page_id){ |
|
| 157 | + if ($gd_page_id) { |
|
| 158 | 158 | $post = get_post($gd_page_id); |
| 159 | 159 | $slug = $post->post_name; |
| 160 | 160 | //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
| 161 | 161 | $login_url = trailingslashit($home_url)."$slug/"; |
| 162 | - }else{ |
|
| 162 | + } else { |
|
| 163 | 163 | $login_url = trailingslashit($home_url)."?geodir_signup=true"; |
| 164 | 164 | } |
| 165 | 165 | |
| 166 | - if($args){ |
|
| 167 | - $login_url = add_query_arg($args,$login_url ); |
|
| 166 | + if ($args) { |
|
| 167 | + $login_url = add_query_arg($args, $login_url); |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | /** |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | * @param array $args The array of query args used. |
| 179 | 179 | * @param int $gd_page_id The page id of the GD login page. |
| 180 | 180 | */ |
| 181 | - return apply_filters('geodir_login_url',$login_url,$args,$gd_page_id); |
|
| 181 | + return apply_filters('geodir_login_url', $login_url, $args, $gd_page_id); |
|
| 182 | 182 | } |
| 183 | 183 | |
| 184 | 184 | /** |
@@ -189,20 +189,20 @@ discard block |
||
| 189 | 189 | * @since 1.5.16 Added WPML lang code to url. |
| 190 | 190 | * @return string Info page url. |
| 191 | 191 | */ |
| 192 | -function geodir_info_url($args=array()){ |
|
| 192 | +function geodir_info_url($args = array()) { |
|
| 193 | 193 | $gd_page_id = get_option('geodir_info_page'); |
| 194 | 194 | |
| 195 | 195 | if (geodir_is_wpml()) { |
| 196 | - $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 196 | + $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | if (function_exists('geodir_location_geo_home_link')) { |
| 200 | 200 | remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
| 201 | 201 | } |
| 202 | 202 | |
| 203 | - if (geodir_is_wpml()){ |
|
| 203 | + if (geodir_is_wpml()) { |
|
| 204 | 204 | $home_url = icl_get_home_url(); |
| 205 | - }else{ |
|
| 205 | + } else { |
|
| 206 | 206 | $home_url = home_url(); |
| 207 | 207 | } |
| 208 | 208 | |
@@ -210,17 +210,17 @@ discard block |
||
| 210 | 210 | add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - if($gd_page_id){ |
|
| 213 | + if ($gd_page_id) { |
|
| 214 | 214 | $post = get_post($gd_page_id); |
| 215 | 215 | $slug = $post->post_name; |
| 216 | 216 | //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
| 217 | 217 | $info_url = trailingslashit($home_url)."$slug/"; |
| 218 | - }else{ |
|
| 218 | + } else { |
|
| 219 | 219 | $info_url = trailingslashit($home_url); |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - if($args){ |
|
| 223 | - $info_url = add_query_arg($args,$info_url ); |
|
| 222 | + if ($args) { |
|
| 223 | + $info_url = add_query_arg($args, $info_url); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | return $info_url; |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | * @param string $charset Character set to use for conversion. |
| 239 | 239 | * @return string Returns converted string. |
| 240 | 240 | */ |
| 241 | -function geodir_ucwords($string, $charset='UTF-8') { |
|
| 241 | +function geodir_ucwords($string, $charset = 'UTF-8') { |
|
| 242 | 242 | if (function_exists('mb_convert_case')) { |
| 243 | 243 | return mb_convert_case($string, MB_CASE_TITLE, $charset); |
| 244 | 244 | } else { |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | * @param string $charset Character set to use for conversion. |
| 259 | 259 | * @return string Returns converted string. |
| 260 | 260 | */ |
| 261 | -function geodir_strtolower($string, $charset='UTF-8') { |
|
| 261 | +function geodir_strtolower($string, $charset = 'UTF-8') { |
|
| 262 | 262 | if (function_exists('mb_convert_case')) { |
| 263 | 263 | return mb_convert_case($string, MB_CASE_LOWER, $charset); |
| 264 | 264 | } else { |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | * @param string $charset Character set to use for conversion. |
| 279 | 279 | * @return string Returns converted string. |
| 280 | 280 | */ |
| 281 | -function geodir_strtoupper($string, $charset='UTF-8') { |
|
| 281 | +function geodir_strtoupper($string, $charset = 'UTF-8') { |
|
| 282 | 282 | if (function_exists('mb_convert_case')) { |
| 283 | 283 | return mb_convert_case($string, MB_CASE_UPPER, $charset); |
| 284 | 284 | } else { |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | |
| 310 | 310 | $url = trim($parts[0]); |
| 311 | 311 | if ($formatted && $url != '') { |
| 312 | - $url = str_replace( ' ', '%20', $url ); |
|
| 312 | + $url = str_replace(' ', '%20', $url); |
|
| 313 | 313 | $url = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff]|i', '', $url); |
| 314 | 314 | |
| 315 | 315 | if (0 !== stripos($url, 'mailto:')) { |
@@ -319,8 +319,8 @@ discard block |
||
| 319 | 319 | |
| 320 | 320 | $url = str_replace(';//', '://', $url); |
| 321 | 321 | |
| 322 | - if (strpos($url, ':') === false && ! in_array($url[0], array('/', '#', '?')) && !preg_match('/^[a-z0-9-]+?\.php/i', $url)) { |
|
| 323 | - $url = 'http://' . $url; |
|
| 322 | + if (strpos($url, ':') === false && !in_array($url[0], array('/', '#', '?')) && !preg_match('/^[a-z0-9-]+?\.php/i', $url)) { |
|
| 323 | + $url = 'http://'.$url; |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | $url = wp_kses_normalize_entities($url); |
@@ -462,7 +462,7 @@ discard block |
||
| 462 | 462 | * @package GeoDirectory |
| 463 | 463 | */ |
| 464 | 464 | function _gd_die_handler() { |
| 465 | - if ( defined( 'GD_TESTING_MODE' ) ) { |
|
| 465 | + if (defined('GD_TESTING_MODE')) { |
|
| 466 | 466 | return '_gd_die_handler'; |
| 467 | 467 | } else { |
| 468 | 468 | die(); |
@@ -480,10 +480,10 @@ discard block |
||
| 480 | 480 | * @param string $title Optional. Error title. |
| 481 | 481 | * @param int $status Optional. Status code. |
| 482 | 482 | */ |
| 483 | -function gd_die( $message = '', $title = '', $status = 400 ) { |
|
| 484 | - add_filter( 'wp_die_ajax_handler', '_gd_die_handler', 10, 3 ); |
|
| 485 | - add_filter( 'wp_die_handler', '_gd_die_handler', 10, 3 ); |
|
| 486 | - wp_die( $message, $title, array( 'response' => $status )); |
|
| 483 | +function gd_die($message = '', $title = '', $status = 400) { |
|
| 484 | + add_filter('wp_die_ajax_handler', '_gd_die_handler', 10, 3); |
|
| 485 | + add_filter('wp_die_handler', '_gd_die_handler', 10, 3); |
|
| 486 | + wp_die($message, $title, array('response' => $status)); |
|
| 487 | 487 | } |
| 488 | 488 | |
| 489 | 489 | /* |
@@ -493,7 +493,7 @@ discard block |
||
| 493 | 493 | * @param string $php_format The PHP date format. |
| 494 | 494 | * @return string The jQuery format date string. |
| 495 | 495 | */ |
| 496 | -function geodir_date_format_php_to_jqueryui( $php_format ) { |
|
| 496 | +function geodir_date_format_php_to_jqueryui($php_format) { |
|
| 497 | 497 | $symbols = array( |
| 498 | 498 | // Day |
| 499 | 499 | 'd' => 'dd', |
@@ -533,27 +533,27 @@ discard block |
||
| 533 | 533 | $jqueryui_format = ""; |
| 534 | 534 | $escaping = false; |
| 535 | 535 | |
| 536 | - for ( $i = 0; $i < strlen( $php_format ); $i++ ) { |
|
| 536 | + for ($i = 0; $i < strlen($php_format); $i++) { |
|
| 537 | 537 | $char = $php_format[$i]; |
| 538 | 538 | |
| 539 | 539 | // PHP date format escaping character |
| 540 | - if ( $char === '\\' ) { |
|
| 540 | + if ($char === '\\') { |
|
| 541 | 541 | $i++; |
| 542 | 542 | |
| 543 | - if ( $escaping ) { |
|
| 543 | + if ($escaping) { |
|
| 544 | 544 | $jqueryui_format .= $php_format[$i]; |
| 545 | 545 | } else { |
| 546 | - $jqueryui_format .= '\'' . $php_format[$i]; |
|
| 546 | + $jqueryui_format .= '\''.$php_format[$i]; |
|
| 547 | 547 | } |
| 548 | 548 | |
| 549 | 549 | $escaping = true; |
| 550 | 550 | } else { |
| 551 | - if ( $escaping ) { |
|
| 551 | + if ($escaping) { |
|
| 552 | 552 | $jqueryui_format .= "'"; |
| 553 | 553 | $escaping = false; |
| 554 | 554 | } |
| 555 | 555 | |
| 556 | - if ( isset( $symbols[$char] ) ) { |
|
| 556 | + if (isset($symbols[$char])) { |
|
| 557 | 557 | $jqueryui_format .= $symbols[$char]; |
| 558 | 558 | } else { |
| 559 | 559 | $jqueryui_format .= $char; |
@@ -574,81 +574,81 @@ discard block |
||
| 574 | 574 | * @since 1.6.22 Genitive month added. |
| 575 | 575 | * @since 1.6.26 Date translation issue in German language - FIXED. |
| 576 | 576 | */ |
| 577 | -function geodir_maybe_untranslate_date( $date ) { |
|
| 578 | - $date_formated = ' '. $date; |
|
| 577 | +function geodir_maybe_untranslate_date($date) { |
|
| 578 | + $date_formated = ' '.$date; |
|
| 579 | 579 | |
| 580 | 580 | $names = array( |
| 581 | 581 | // The Weekdays |
| 582 | - 'Sunday' => __( 'Sunday' ), |
|
| 583 | - 'Monday' => __( 'Monday' ), |
|
| 584 | - 'Tuesday' => __( 'Tuesday' ), |
|
| 585 | - 'Wednesday' => __( 'Wednesday' ), |
|
| 586 | - 'Thursday' => __( 'Thursday' ), |
|
| 587 | - 'Friday' => __( 'Friday' ), |
|
| 588 | - 'Saturday' => __( 'Saturday' ), |
|
| 582 | + 'Sunday' => __('Sunday'), |
|
| 583 | + 'Monday' => __('Monday'), |
|
| 584 | + 'Tuesday' => __('Tuesday'), |
|
| 585 | + 'Wednesday' => __('Wednesday'), |
|
| 586 | + 'Thursday' => __('Thursday'), |
|
| 587 | + 'Friday' => __('Friday'), |
|
| 588 | + 'Saturday' => __('Saturday'), |
|
| 589 | 589 | |
| 590 | 590 | // The Months |
| 591 | - 'January' => __( 'January' ), |
|
| 592 | - 'February' => __( 'February' ), |
|
| 593 | - 'March' => __( 'March' ), |
|
| 594 | - 'April' => __( 'April' ), |
|
| 595 | - 'May' => __( 'May' ), |
|
| 596 | - 'June' => __( 'June' ), |
|
| 597 | - 'July' => __( 'July' ), |
|
| 598 | - 'August' => __( 'August' ), |
|
| 599 | - 'September' => __( 'September' ), |
|
| 600 | - 'October' => __( 'October' ), |
|
| 601 | - 'November' => __( 'November' ), |
|
| 602 | - 'December' => __( 'December' ), |
|
| 591 | + 'January' => __('January'), |
|
| 592 | + 'February' => __('February'), |
|
| 593 | + 'March' => __('March'), |
|
| 594 | + 'April' => __('April'), |
|
| 595 | + 'May' => __('May'), |
|
| 596 | + 'June' => __('June'), |
|
| 597 | + 'July' => __('July'), |
|
| 598 | + 'August' => __('August'), |
|
| 599 | + 'September' => __('September'), |
|
| 600 | + 'October' => __('October'), |
|
| 601 | + 'November' => __('November'), |
|
| 602 | + 'December' => __('December'), |
|
| 603 | 603 | |
| 604 | 604 | // Abbreviations for each month. |
| 605 | - 'Jan' => _x( 'Jan', 'January abbreviation' ), |
|
| 606 | - 'Feb' => _x( 'Feb', 'February abbreviation' ), |
|
| 607 | - 'Mar' => _x( 'Mar', 'March abbreviation' ), |
|
| 608 | - 'Apr' => _x( 'Apr', 'April abbreviation' ), |
|
| 609 | - 'May' => _x( 'May', 'May abbreviation' ), |
|
| 610 | - 'Jun' => _x( 'Jun', 'June abbreviation' ), |
|
| 611 | - 'Jul' => _x( 'Jul', 'July abbreviation' ), |
|
| 612 | - 'Aug' => _x( 'Aug', 'August abbreviation' ), |
|
| 613 | - 'Sep' => _x( 'Sep', 'September abbreviation' ), |
|
| 614 | - 'Oct' => _x( 'Oct', 'October abbreviation' ), |
|
| 615 | - 'Nov' => _x( 'Nov', 'November abbreviation' ), |
|
| 616 | - 'Dec' => _x( 'Dec', 'December abbreviation' ), |
|
| 605 | + 'Jan' => _x('Jan', 'January abbreviation'), |
|
| 606 | + 'Feb' => _x('Feb', 'February abbreviation'), |
|
| 607 | + 'Mar' => _x('Mar', 'March abbreviation'), |
|
| 608 | + 'Apr' => _x('Apr', 'April abbreviation'), |
|
| 609 | + 'May' => _x('May', 'May abbreviation'), |
|
| 610 | + 'Jun' => _x('Jun', 'June abbreviation'), |
|
| 611 | + 'Jul' => _x('Jul', 'July abbreviation'), |
|
| 612 | + 'Aug' => _x('Aug', 'August abbreviation'), |
|
| 613 | + 'Sep' => _x('Sep', 'September abbreviation'), |
|
| 614 | + 'Oct' => _x('Oct', 'October abbreviation'), |
|
| 615 | + 'Nov' => _x('Nov', 'November abbreviation'), |
|
| 616 | + 'Dec' => _x('Dec', 'December abbreviation'), |
|
| 617 | 617 | |
| 618 | 618 | // Abbreviations for each day. |
| 619 | - 'Sun' => __( 'Sun' ), |
|
| 620 | - 'Mon' => __( 'Mon' ), |
|
| 621 | - 'Tue' => __( 'Tue' ), |
|
| 622 | - 'Wed' => __( 'Wed' ), |
|
| 623 | - 'Thu' => __( 'Thu' ), |
|
| 624 | - 'Fri' => __( 'Fri' ), |
|
| 625 | - 'Sat' => __( 'Sat' ), |
|
| 619 | + 'Sun' => __('Sun'), |
|
| 620 | + 'Mon' => __('Mon'), |
|
| 621 | + 'Tue' => __('Tue'), |
|
| 622 | + 'Wed' => __('Wed'), |
|
| 623 | + 'Thu' => __('Thu'), |
|
| 624 | + 'Fri' => __('Fri'), |
|
| 625 | + 'Sat' => __('Sat'), |
|
| 626 | 626 | |
| 627 | 627 | // The first letter of each day. |
| 628 | - 'S' => _x( 'S', 'Sunday initial' ), |
|
| 629 | - 'M' => _x( 'M', 'Monday initial' ), |
|
| 630 | - 'T' => _x( 'T', 'Tuesday initial' ), |
|
| 631 | - 'W' => _x( 'W', 'Wednesday initial' ), |
|
| 632 | - 'T' => _x( 'T', 'Thursday initial' ), |
|
| 633 | - 'F' => _x( 'F', 'Friday initial' ), |
|
| 634 | - 'S' => _x( 'S', 'Saturday initial' ), |
|
| 628 | + 'S' => _x('S', 'Sunday initial'), |
|
| 629 | + 'M' => _x('M', 'Monday initial'), |
|
| 630 | + 'T' => _x('T', 'Tuesday initial'), |
|
| 631 | + 'W' => _x('W', 'Wednesday initial'), |
|
| 632 | + 'T' => _x('T', 'Thursday initial'), |
|
| 633 | + 'F' => _x('F', 'Friday initial'), |
|
| 634 | + 'S' => _x('S', 'Saturday initial'), |
|
| 635 | 635 | |
| 636 | 636 | // The Meridiems |
| 637 | - 'am' => __( 'am' ), |
|
| 638 | - 'pm' => __( 'pm' ), |
|
| 639 | - 'AM' => __( 'AM' ), |
|
| 640 | - 'PM' => __( 'PM' ) |
|
| 637 | + 'am' => __('am'), |
|
| 638 | + 'pm' => __('pm'), |
|
| 639 | + 'AM' => __('AM'), |
|
| 640 | + 'PM' => __('PM') |
|
| 641 | 641 | ); |
| 642 | 642 | |
| 643 | - foreach ( $names as $name => $translation ) { |
|
| 644 | - if ( $translation && trim( $translation ) != '' ) { |
|
| 645 | - $date_formated = preg_replace( "/([^\\\])" . $name . "/", "\\1" . backslashit( $name ), $date_formated ); |
|
| 646 | - $date_formated = preg_replace( "/([^\\\])" . $translation . "/", "\\1" . backslashit( $name ), $date_formated ); |
|
| 643 | + foreach ($names as $name => $translation) { |
|
| 644 | + if ($translation && trim($translation) != '') { |
|
| 645 | + $date_formated = preg_replace("/([^\\\])".$name."/", "\\1".backslashit($name), $date_formated); |
|
| 646 | + $date_formated = preg_replace("/([^\\\])".$translation."/", "\\1".backslashit($name), $date_formated); |
|
| 647 | 647 | } |
| 648 | 648 | } |
| 649 | 649 | |
| 650 | - $date_formated = substr( $date_formated, 1, strlen( $date_formated ) -1 ); |
|
| 651 | - $date = stripslashes( $date_formated ); |
|
| 650 | + $date_formated = substr($date_formated, 1, strlen($date_formated) - 1); |
|
| 651 | + $date = stripslashes($date_formated); |
|
| 652 | 652 | |
| 653 | 653 | return $date; |
| 654 | 654 | } |
@@ -665,30 +665,30 @@ discard block |
||
| 665 | 665 | * @param bool $locale True to retrieve the date in localized format. Default false. |
| 666 | 666 | * @return string The formatted date. |
| 667 | 667 | */ |
| 668 | -function geodir_date( $date_input, $date_to, $date_from = '', $locale = false ) { |
|
| 669 | - if ( empty( $date_input ) || empty( $date_to ) ) { |
|
| 668 | +function geodir_date($date_input, $date_to, $date_from = '', $locale = false) { |
|
| 669 | + if (empty($date_input) || empty($date_to)) { |
|
| 670 | 670 | return NULL; |
| 671 | 671 | } |
| 672 | 672 | |
| 673 | - $date_input = geodir_maybe_untranslate_date( $date_input ); |
|
| 673 | + $date_input = geodir_maybe_untranslate_date($date_input); |
|
| 674 | 674 | |
| 675 | 675 | $timestamp = 0; |
| 676 | - if (!empty( $date_from ) && function_exists( 'date_create_from_format' ) ) { |
|
| 677 | - $datetime = date_create_from_format( $date_from, $date_input ); |
|
| 678 | - if ( !empty( $datetime ) ) { |
|
| 676 | + if (!empty($date_from) && function_exists('date_create_from_format')) { |
|
| 677 | + $datetime = date_create_from_format($date_from, $date_input); |
|
| 678 | + if (!empty($datetime)) { |
|
| 679 | 679 | $timestamp = $datetime->getTimestamp(); |
| 680 | 680 | } |
| 681 | 681 | } |
| 682 | 682 | |
| 683 | - if ( empty( $timestamp ) ) { |
|
| 684 | - $date = strpos( $date_input, '/' ) !== false ? str_replace( '/', '-', $date_input ) : $date_input; |
|
| 685 | - $timestamp = strtotime( $date ); |
|
| 683 | + if (empty($timestamp)) { |
|
| 684 | + $date = strpos($date_input, '/') !== false ? str_replace('/', '-', $date_input) : $date_input; |
|
| 685 | + $timestamp = strtotime($date); |
|
| 686 | 686 | } |
| 687 | 687 | |
| 688 | - $date = date_i18n( $date_to, $timestamp ); |
|
| 688 | + $date = date_i18n($date_to, $timestamp); |
|
| 689 | 689 | |
| 690 | - if ( !$locale ) { |
|
| 691 | - $date = geodir_maybe_untranslate_date( $date ); |
|
| 690 | + if (!$locale) { |
|
| 691 | + $date = geodir_maybe_untranslate_date($date); |
|
| 692 | 692 | } |
| 693 | 693 | |
| 694 | 694 | /** |
@@ -703,7 +703,7 @@ discard block |
||
| 703 | 703 | * @param string $date_from The source date format. |
| 704 | 704 | * @param bool $locale True to retrieve the date in localized format. |
| 705 | 705 | */ |
| 706 | - return apply_filters( 'geodir_date', $date, $date_input, $date_to, $date_from, $locale ); |
|
| 706 | + return apply_filters('geodir_date', $date, $date_input, $date_to, $date_from, $locale); |
|
| 707 | 707 | } |
| 708 | 708 | |
| 709 | 709 | /** |
@@ -728,7 +728,7 @@ discard block |
||
| 728 | 728 | * @return string Trimmed string. |
| 729 | 729 | */ |
| 730 | 730 | function geodir_excerpt($text, $length = 100, $options = array()) { |
| 731 | - if (!(int)$length > 0) { |
|
| 731 | + if (!(int) $length > 0) { |
|
| 732 | 732 | return $text; |
| 733 | 733 | } |
| 734 | 734 | $default = array( |
@@ -790,7 +790,7 @@ discard block |
||
| 790 | 790 | $length = $truncateLength; |
| 791 | 791 | |
| 792 | 792 | foreach ($openTags as $tag) { |
| 793 | - $suffix .= '</' . $tag . '>'; |
|
| 793 | + $suffix .= '</'.$tag.'>'; |
|
| 794 | 794 | } |
| 795 | 795 | } else { |
| 796 | 796 | if (geodir_strlen($text, $options) <= $length) { |
@@ -812,7 +812,7 @@ discard block |
||
| 812 | 812 | } |
| 813 | 813 | } |
| 814 | 814 | |
| 815 | - return $prefix . $result . $suffix; |
|
| 815 | + return $prefix.$result.$suffix; |
|
| 816 | 816 | } |
| 817 | 817 | |
| 818 | 818 | /** |
@@ -849,7 +849,7 @@ discard block |
||
| 849 | 849 | $pattern = '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i'; |
| 850 | 850 | $replace = preg_replace_callback( |
| 851 | 851 | $pattern, |
| 852 | - function ($match) use ($strlen) { |
|
| 852 | + function($match) use ($strlen) { |
|
| 853 | 853 | $utf8 = html_entity_decode($match[0], ENT_HTML5 | ENT_QUOTES, 'UTF-8'); |
| 854 | 854 | |
| 855 | 855 | return str_repeat(' ', $strlen($utf8, 'UTF-8')); |
@@ -910,7 +910,7 @@ discard block |
||
| 910 | 910 | } |
| 911 | 911 | |
| 912 | 912 | if (empty($options['html'])) { |
| 913 | - return (string)$substr($text, $start, $length); |
|
| 913 | + return (string) $substr($text, $start, $length); |
|
| 914 | 914 | } |
| 915 | 915 | |
| 916 | 916 | $totalOffset = 0; |
@@ -935,7 +935,7 @@ discard block |
||
| 935 | 935 | |
| 936 | 936 | $len = geodir_strlen($part, $options); |
| 937 | 937 | if ($offset !== 0 || $totalLength + $len > $length) { |
| 938 | - if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8') ) { |
|
| 938 | + if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8')) { |
|
| 939 | 939 | // Entities cannot be passed substr. |
| 940 | 940 | continue; |
| 941 | 941 | } |
@@ -981,39 +981,39 @@ discard block |
||
| 981 | 981 | return ''; |
| 982 | 982 | } |
| 983 | 983 | |
| 984 | -function geodir_tool_restore_cpt_from_taxonomies(){ |
|
| 984 | +function geodir_tool_restore_cpt_from_taxonomies() { |
|
| 985 | 985 | |
| 986 | 986 | $cpts = get_option('geodir_post_types'); |
| 987 | 987 | |
| 988 | - if(!empty($cpts)){return;} |
|
| 988 | + if (!empty($cpts)) {return; } |
|
| 989 | 989 | |
| 990 | 990 | $taxonomies = get_option('geodir_taxonomies'); |
| 991 | 991 | |
| 992 | - if(empty($taxonomies)){return;} |
|
| 992 | + if (empty($taxonomies)) {return; } |
|
| 993 | 993 | |
| 994 | 994 | $cpts = array(); |
| 995 | 995 | |
| 996 | - foreach($taxonomies as $key => $val){ |
|
| 996 | + foreach ($taxonomies as $key => $val) { |
|
| 997 | 997 | |
| 998 | - if(strpos($val['listing_slug'], '/') === false) { |
|
| 999 | - $cpts[$val['object_type']] = array('cpt'=>$val['object_type'],'slug'=>$val['listing_slug']); |
|
| 998 | + if (strpos($val['listing_slug'], '/') === false) { |
|
| 999 | + $cpts[$val['object_type']] = array('cpt'=>$val['object_type'], 'slug'=>$val['listing_slug']); |
|
| 1000 | 1000 | } |
| 1001 | 1001 | |
| 1002 | 1002 | } |
| 1003 | 1003 | |
| 1004 | - if(empty($cpts)){return;} |
|
| 1004 | + if (empty($cpts)) {return; } |
|
| 1005 | 1005 | |
| 1006 | 1006 | |
| 1007 | 1007 | $cpts_restore = $cpts; |
| 1008 | 1008 | |
| 1009 | - foreach($cpts as $cpt){ |
|
| 1009 | + foreach ($cpts as $cpt) { |
|
| 1010 | 1010 | |
| 1011 | 1011 | |
| 1012 | - $is_custom = $cpt['cpt']=='gd_place' ? 0 : 1; |
|
| 1012 | + $is_custom = $cpt['cpt'] == 'gd_place' ? 0 : 1; |
|
| 1013 | 1013 | |
| 1014 | - $cpts_restore[$cpt['cpt']] = array ( |
|
| 1014 | + $cpts_restore[$cpt['cpt']] = array( |
|
| 1015 | 1015 | 'labels' => |
| 1016 | - array ( |
|
| 1016 | + array( |
|
| 1017 | 1017 | 'name' => $cpt['slug'], |
| 1018 | 1018 | 'singular_name' => $cpt['slug'], |
| 1019 | 1019 | 'add_new' => 'Add New', |
@@ -1041,14 +1041,14 @@ discard block |
||
| 1041 | 1041 | 'public' => true, |
| 1042 | 1042 | 'query_var' => true, |
| 1043 | 1043 | 'rewrite' => |
| 1044 | - array ( |
|
| 1044 | + array( |
|
| 1045 | 1045 | 'slug' => $cpt['slug'], |
| 1046 | 1046 | 'with_front' => false, |
| 1047 | 1047 | 'hierarchical' => true, |
| 1048 | 1048 | 'feeds' => true, |
| 1049 | 1049 | ), |
| 1050 | 1050 | 'supports' => |
| 1051 | - array ( |
|
| 1051 | + array( |
|
| 1052 | 1052 | 0 => 'title', |
| 1053 | 1053 | 1 => 'editor', |
| 1054 | 1054 | 2 => 'author', |
@@ -1058,14 +1058,14 @@ discard block |
||
| 1058 | 1058 | 6 => 'comments', |
| 1059 | 1059 | ), |
| 1060 | 1060 | 'taxonomies' => |
| 1061 | - array ( |
|
| 1061 | + array( |
|
| 1062 | 1062 | 0 => $cpt['cpt'].'category', |
| 1063 | 1063 | 1 => $cpt['cpt'].'_tags', |
| 1064 | 1064 | ), |
| 1065 | 1065 | 'is_custom' => $is_custom, |
| 1066 | 1066 | 'listing_order' => '1', |
| 1067 | 1067 | 'seo' => |
| 1068 | - array ( |
|
| 1068 | + array( |
|
| 1069 | 1069 | 'meta_keyword' => '', |
| 1070 | 1070 | 'meta_description' => '', |
| 1071 | 1071 | ), |
@@ -1077,7 +1077,7 @@ discard block |
||
| 1077 | 1077 | } |
| 1078 | 1078 | |
| 1079 | 1079 | |
| 1080 | - update_option('geodir_post_types',$cpts_restore); |
|
| 1080 | + update_option('geodir_post_types', $cpts_restore); |
|
| 1081 | 1081 | |
| 1082 | 1082 | } |
| 1083 | 1083 | |
@@ -1095,12 +1095,12 @@ discard block |
||
| 1095 | 1095 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 1096 | 1096 | * @return string |
| 1097 | 1097 | */ |
| 1098 | -function geodir_utf8_strimwidth( $str, $start, $width, $trimmaker = '', $encoding = 'UTF-8' ) { |
|
| 1099 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
| 1100 | - return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding ); |
|
| 1098 | +function geodir_utf8_strimwidth($str, $start, $width, $trimmaker = '', $encoding = 'UTF-8') { |
|
| 1099 | + if (function_exists('mb_strimwidth')) { |
|
| 1100 | + return mb_strimwidth($str, $start, $width, $trimmaker, $encoding); |
|
| 1101 | 1101 | } |
| 1102 | 1102 | |
| 1103 | - return geodir_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker; |
|
| 1103 | + return geodir_utf8_substr($str, $start, $width, $encoding).$trimmaker; |
|
| 1104 | 1104 | } |
| 1105 | 1105 | |
| 1106 | 1106 | /** |
@@ -1113,12 +1113,12 @@ discard block |
||
| 1113 | 1113 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 1114 | 1114 | * @return int Returns the number of characters in string. |
| 1115 | 1115 | */ |
| 1116 | -function geodir_utf8_strlen( $str, $encoding = 'UTF-8' ) { |
|
| 1117 | - if ( function_exists( 'mb_strlen' ) ) { |
|
| 1118 | - return mb_strlen( $str, $encoding ); |
|
| 1116 | +function geodir_utf8_strlen($str, $encoding = 'UTF-8') { |
|
| 1117 | + if (function_exists('mb_strlen')) { |
|
| 1118 | + return mb_strlen($str, $encoding); |
|
| 1119 | 1119 | } |
| 1120 | 1120 | |
| 1121 | - return strlen( $str ); |
|
| 1121 | + return strlen($str); |
|
| 1122 | 1122 | } |
| 1123 | 1123 | |
| 1124 | 1124 | /** |
@@ -1133,12 +1133,12 @@ discard block |
||
| 1133 | 1133 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 1134 | 1134 | * @return int Returns the position of the first occurrence of search in the string. |
| 1135 | 1135 | */ |
| 1136 | -function geodir_utf8_strpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
| 1137 | - if ( function_exists( 'mb_strpos' ) ) { |
|
| 1138 | - return mb_strpos( $str, $find, $offset, $encoding ); |
|
| 1136 | +function geodir_utf8_strpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
| 1137 | + if (function_exists('mb_strpos')) { |
|
| 1138 | + return mb_strpos($str, $find, $offset, $encoding); |
|
| 1139 | 1139 | } |
| 1140 | 1140 | |
| 1141 | - return strpos( $str, $find, $offset ); |
|
| 1141 | + return strpos($str, $find, $offset); |
|
| 1142 | 1142 | } |
| 1143 | 1143 | |
| 1144 | 1144 | /** |
@@ -1153,12 +1153,12 @@ discard block |
||
| 1153 | 1153 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 1154 | 1154 | * @return int Returns the position of the last occurrence of search. |
| 1155 | 1155 | */ |
| 1156 | -function geodir_utf8_strrpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
| 1157 | - if ( function_exists( 'mb_strrpos' ) ) { |
|
| 1158 | - return mb_strrpos( $str, $find, $offset, $encoding ); |
|
| 1156 | +function geodir_utf8_strrpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
| 1157 | + if (function_exists('mb_strrpos')) { |
|
| 1158 | + return mb_strrpos($str, $find, $offset, $encoding); |
|
| 1159 | 1159 | } |
| 1160 | 1160 | |
| 1161 | - return strrpos( $str, $find, $offset ); |
|
| 1161 | + return strrpos($str, $find, $offset); |
|
| 1162 | 1162 | } |
| 1163 | 1163 | |
| 1164 | 1164 | /** |
@@ -1174,16 +1174,16 @@ discard block |
||
| 1174 | 1174 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 1175 | 1175 | * @return string |
| 1176 | 1176 | */ |
| 1177 | -function geodir_utf8_substr( $str, $start, $length = null, $encoding = 'UTF-8' ) { |
|
| 1178 | - if ( function_exists( 'mb_substr' ) ) { |
|
| 1179 | - if ( $length === null ) { |
|
| 1180 | - return mb_substr( $str, $start, geodir_utf8_strlen( $str, $encoding ), $encoding ); |
|
| 1177 | +function geodir_utf8_substr($str, $start, $length = null, $encoding = 'UTF-8') { |
|
| 1178 | + if (function_exists('mb_substr')) { |
|
| 1179 | + if ($length === null) { |
|
| 1180 | + return mb_substr($str, $start, geodir_utf8_strlen($str, $encoding), $encoding); |
|
| 1181 | 1181 | } else { |
| 1182 | - return mb_substr( $str, $start, $length, $encoding ); |
|
| 1182 | + return mb_substr($str, $start, $length, $encoding); |
|
| 1183 | 1183 | } |
| 1184 | 1184 | } |
| 1185 | 1185 | |
| 1186 | - return substr( $str, $start, $length ); |
|
| 1186 | + return substr($str, $start, $length); |
|
| 1187 | 1187 | } |
| 1188 | 1188 | |
| 1189 | 1189 | /** |
@@ -1196,12 +1196,12 @@ discard block |
||
| 1196 | 1196 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 1197 | 1197 | * @return string The width of string. |
| 1198 | 1198 | */ |
| 1199 | -function geodir_utf8_strwidth( $str, $encoding = 'UTF-8' ) { |
|
| 1200 | - if ( function_exists( 'mb_strwidth' ) ) { |
|
| 1201 | - return mb_strwidth( $str, $encoding ); |
|
| 1199 | +function geodir_utf8_strwidth($str, $encoding = 'UTF-8') { |
|
| 1200 | + if (function_exists('mb_strwidth')) { |
|
| 1201 | + return mb_strwidth($str, $encoding); |
|
| 1202 | 1202 | } |
| 1203 | 1203 | |
| 1204 | - return geodir_utf8_strlen( $str, $encoding ); |
|
| 1204 | + return geodir_utf8_strlen($str, $encoding); |
|
| 1205 | 1205 | } |
| 1206 | 1206 | |
| 1207 | 1207 | /** |
@@ -1215,21 +1215,21 @@ discard block |
||
| 1215 | 1215 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 1216 | 1216 | * @return string The resulting string. |
| 1217 | 1217 | */ |
| 1218 | -function geodir_utf8_ucfirst( $str, $lower_str_end = false, $encoding = 'UTF-8' ) { |
|
| 1219 | - if ( function_exists( 'mb_strlen' ) ) { |
|
| 1220 | - $first_letter = geodir_strtoupper( geodir_utf8_substr( $str, 0, 1, $encoding ), $encoding ); |
|
| 1218 | +function geodir_utf8_ucfirst($str, $lower_str_end = false, $encoding = 'UTF-8') { |
|
| 1219 | + if (function_exists('mb_strlen')) { |
|
| 1220 | + $first_letter = geodir_strtoupper(geodir_utf8_substr($str, 0, 1, $encoding), $encoding); |
|
| 1221 | 1221 | $str_end = ""; |
| 1222 | 1222 | |
| 1223 | - if ( $lower_str_end ) { |
|
| 1224 | - $str_end = geodir_strtolower( geodir_utf8_substr( $str, 1, geodir_utf8_strlen( $str, $encoding ), $encoding ), $encoding ); |
|
| 1223 | + if ($lower_str_end) { |
|
| 1224 | + $str_end = geodir_strtolower(geodir_utf8_substr($str, 1, geodir_utf8_strlen($str, $encoding), $encoding), $encoding); |
|
| 1225 | 1225 | } else { |
| 1226 | - $str_end = geodir_utf8_substr( $str, 1, geodir_utf8_strlen( $str, $encoding ), $encoding ); |
|
| 1226 | + $str_end = geodir_utf8_substr($str, 1, geodir_utf8_strlen($str, $encoding), $encoding); |
|
| 1227 | 1227 | } |
| 1228 | 1228 | |
| 1229 | - return $first_letter . $str_end; |
|
| 1229 | + return $first_letter.$str_end; |
|
| 1230 | 1230 | } |
| 1231 | 1231 | |
| 1232 | - return ucfirst( $str ); |
|
| 1232 | + return ucfirst($str); |
|
| 1233 | 1233 | } |
| 1234 | 1234 | |
| 1235 | 1235 | function geodir_total_listings_count($post_type = false) |
@@ -1239,13 +1239,13 @@ discard block |
||
| 1239 | 1239 | $count = 0; |
| 1240 | 1240 | |
| 1241 | 1241 | if ($post_type) { |
| 1242 | - $count = $count + $wpdb->get_var("select count(post_id) from " . $wpdb->prefix . "geodir_" . $post_type . "_detail"); |
|
| 1242 | + $count = $count + $wpdb->get_var("select count(post_id) from ".$wpdb->prefix."geodir_".$post_type."_detail"); |
|
| 1243 | 1243 | } else { |
| 1244 | 1244 | $all_postypes = geodir_get_posttypes(); |
| 1245 | 1245 | |
| 1246 | 1246 | if (!empty($all_postypes)) { |
| 1247 | 1247 | foreach ($all_postypes as $key) { |
| 1248 | - $count = $count + $wpdb->get_var("select count(post_id) from " . $wpdb->prefix . "geodir_" . $key . "_detail"); |
|
| 1248 | + $count = $count + $wpdb->get_var("select count(post_id) from ".$wpdb->prefix."geodir_".$key."_detail"); |
|
| 1249 | 1249 | } |
| 1250 | 1250 | } |
| 1251 | 1251 | } |