@@ -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_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 | /** |
@@ -830,21 +830,21 @@ discard block |
||
| 830 | 830 | * |
| 831 | 831 | * @return string The html to output for the custom field. |
| 832 | 832 | */ |
| 833 | -function geodir_cf_select($html,$location,$cf,$p=''){ |
|
| 833 | +function geodir_cf_select($html, $location, $cf, $p = '') { |
|
| 834 | 834 | |
| 835 | 835 | // check we have the post value |
| 836 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 837 | - else{ global $post;} |
|
| 836 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 837 | + else { global $post; } |
|
| 838 | 838 | |
| 839 | - if(!is_array($cf) && $cf!=''){ |
|
| 839 | + if (!is_array($cf) && $cf != '') { |
|
| 840 | 840 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 841 | - if(!$cf){return NULL;} |
|
| 841 | + if (!$cf) {return NULL; } |
|
| 842 | 842 | } |
| 843 | 843 | |
| 844 | 844 | $html_var = $cf['htmlvar_name']; |
| 845 | 845 | |
| 846 | 846 | // Check if there is a location specific filter. |
| 847 | - if(has_filter("geodir_custom_field_output_select_loc_{$location}")){ |
|
| 847 | + if (has_filter("geodir_custom_field_output_select_loc_{$location}")) { |
|
| 848 | 848 | /** |
| 849 | 849 | * Filter the select html by location. |
| 850 | 850 | * |
@@ -852,11 +852,11 @@ discard block |
||
| 852 | 852 | * @param array $cf The custom field array. |
| 853 | 853 | * @since 1.6.6 |
| 854 | 854 | */ |
| 855 | - $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf); |
|
| 855 | + $html = apply_filters("geodir_custom_field_output_select_loc_{$location}", $html, $cf); |
|
| 856 | 856 | } |
| 857 | 857 | |
| 858 | 858 | // Check if there is a custom field specific filter. |
| 859 | - if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){ |
|
| 859 | + if (has_filter("geodir_custom_field_output_select_var_{$html_var}")) { |
|
| 860 | 860 | /** |
| 861 | 861 | * Filter the select html by individual custom field. |
| 862 | 862 | * |
@@ -865,11 +865,11 @@ discard block |
||
| 865 | 865 | * @param array $cf The custom field array. |
| 866 | 866 | * @since 1.6.6 |
| 867 | 867 | */ |
| 868 | - $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf); |
|
| 868 | + $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}", $html, $location, $cf); |
|
| 869 | 869 | } |
| 870 | 870 | |
| 871 | 871 | // Check if there is a custom field key specific filter. |
| 872 | - if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){ |
|
| 872 | + if (has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")) { |
|
| 873 | 873 | /** |
| 874 | 874 | * Filter the select html by field type key. |
| 875 | 875 | * |
@@ -878,11 +878,11 @@ discard block |
||
| 878 | 878 | * @param array $cf The custom field array. |
| 879 | 879 | * @since 1.6.6 |
| 880 | 880 | */ |
| 881 | - $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 881 | + $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 882 | 882 | } |
| 883 | 883 | |
| 884 | 884 | // If not html then we run the standard output. |
| 885 | - if(empty($html)){ |
|
| 885 | + if (empty($html)) { |
|
| 886 | 886 | |
| 887 | 887 | if ($post->{$cf['htmlvar_name']}): |
| 888 | 888 | $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
@@ -910,16 +910,16 @@ discard block |
||
| 910 | 910 | } |
| 911 | 911 | |
| 912 | 912 | |
| 913 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 914 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 915 | - $html .= '</span>' . $field_value . '</div>'; |
|
| 913 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-select" style="'.$field_icon.'">'.$field_icon_af; |
|
| 914 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 915 | + $html .= '</span>'.$field_value.'</div>'; |
|
| 916 | 916 | endif; |
| 917 | 917 | |
| 918 | 918 | } |
| 919 | 919 | |
| 920 | 920 | return $html; |
| 921 | 921 | } |
| 922 | -add_filter('geodir_custom_field_output_select','geodir_cf_select',10,3); |
|
| 922 | +add_filter('geodir_custom_field_output_select', 'geodir_cf_select', 10, 3); |
|
| 923 | 923 | |
| 924 | 924 | |
| 925 | 925 | /** |
@@ -932,21 +932,21 @@ discard block |
||
| 932 | 932 | * |
| 933 | 933 | * @return string The html to output for the custom field. |
| 934 | 934 | */ |
| 935 | -function geodir_cf_multiselect($html,$location,$cf,$p=''){ |
|
| 935 | +function geodir_cf_multiselect($html, $location, $cf, $p = '') { |
|
| 936 | 936 | |
| 937 | 937 | // check we have the post value |
| 938 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 939 | - else{ global $post;} |
|
| 938 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 939 | + else { global $post; } |
|
| 940 | 940 | |
| 941 | - if(!is_array($cf) && $cf!=''){ |
|
| 941 | + if (!is_array($cf) && $cf != '') { |
|
| 942 | 942 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 943 | - if(!$cf){return NULL;} |
|
| 943 | + if (!$cf) {return NULL; } |
|
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | $html_var = $cf['htmlvar_name']; |
| 947 | 947 | |
| 948 | 948 | // Check if there is a location specific filter. |
| 949 | - if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){ |
|
| 949 | + if (has_filter("geodir_custom_field_output_multiselect_loc_{$location}")) { |
|
| 950 | 950 | /** |
| 951 | 951 | * Filter the multiselect html by location. |
| 952 | 952 | * |
@@ -954,11 +954,11 @@ discard block |
||
| 954 | 954 | * @param array $cf The custom field array. |
| 955 | 955 | * @since 1.6.6 |
| 956 | 956 | */ |
| 957 | - $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf); |
|
| 957 | + $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}", $html, $cf); |
|
| 958 | 958 | } |
| 959 | 959 | |
| 960 | 960 | // Check if there is a custom field specific filter. |
| 961 | - if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){ |
|
| 961 | + if (has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")) { |
|
| 962 | 962 | /** |
| 963 | 963 | * Filter the multiselect html by individual custom field. |
| 964 | 964 | * |
@@ -967,11 +967,11 @@ discard block |
||
| 967 | 967 | * @param array $cf The custom field array. |
| 968 | 968 | * @since 1.6.6 |
| 969 | 969 | */ |
| 970 | - $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf); |
|
| 970 | + $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}", $html, $location, $cf); |
|
| 971 | 971 | } |
| 972 | 972 | |
| 973 | 973 | // Check if there is a custom field key specific filter. |
| 974 | - if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){ |
|
| 974 | + if (has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")) { |
|
| 975 | 975 | /** |
| 976 | 976 | * Filter the multiselect html by field type key. |
| 977 | 977 | * |
@@ -980,11 +980,11 @@ discard block |
||
| 980 | 980 | * @param array $cf The custom field array. |
| 981 | 981 | * @since 1.6.6 |
| 982 | 982 | */ |
| 983 | - $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 983 | + $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 984 | 984 | } |
| 985 | 985 | |
| 986 | 986 | // If not html then we run the standard output. |
| 987 | - if(empty($html)){ |
|
| 987 | + if (empty($html)) { |
|
| 988 | 988 | |
| 989 | 989 | |
| 990 | 990 | if (!empty($post->{$cf['htmlvar_name']})): |
@@ -1005,7 +1005,7 @@ discard block |
||
| 1005 | 1005 | |
| 1006 | 1006 | $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ",")); |
| 1007 | 1007 | |
| 1008 | - if(is_array($field_values)){ |
|
| 1008 | + if (is_array($field_values)) { |
|
| 1009 | 1009 | $field_values = array_map('trim', $field_values); |
| 1010 | 1010 | } |
| 1011 | 1011 | |
@@ -1023,15 +1023,15 @@ discard block |
||
| 1023 | 1023 | } |
| 1024 | 1024 | |
| 1025 | 1025 | |
| 1026 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1027 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1026 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-select" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1027 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1028 | 1028 | $html .= '</span>'; |
| 1029 | 1029 | |
| 1030 | 1030 | if (count($option_values) > 1) { |
| 1031 | 1031 | $html .= '<ul>'; |
| 1032 | 1032 | |
| 1033 | 1033 | foreach ($option_values as $val) { |
| 1034 | - $html .= '<li>' . $val . '</li>'; |
|
| 1034 | + $html .= '<li>'.$val.'</li>'; |
|
| 1035 | 1035 | } |
| 1036 | 1036 | |
| 1037 | 1037 | $html .= '</ul>'; |
@@ -1046,7 +1046,7 @@ discard block |
||
| 1046 | 1046 | |
| 1047 | 1047 | return $html; |
| 1048 | 1048 | } |
| 1049 | -add_filter('geodir_custom_field_output_multiselect','geodir_cf_multiselect',10,3); |
|
| 1049 | +add_filter('geodir_custom_field_output_multiselect', 'geodir_cf_multiselect', 10, 3); |
|
| 1050 | 1050 | |
| 1051 | 1051 | |
| 1052 | 1052 | /** |
@@ -1059,21 +1059,21 @@ discard block |
||
| 1059 | 1059 | * |
| 1060 | 1060 | * @return string The html to output for the custom field. |
| 1061 | 1061 | */ |
| 1062 | -function geodir_cf_email($html,$location,$cf,$p=''){ |
|
| 1062 | +function geodir_cf_email($html, $location, $cf, $p = '') { |
|
| 1063 | 1063 | |
| 1064 | 1064 | // check we have the post value |
| 1065 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1066 | - else{ global $post;} |
|
| 1065 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1066 | + else { global $post; } |
|
| 1067 | 1067 | |
| 1068 | - if(!is_array($cf) && $cf!=''){ |
|
| 1068 | + if (!is_array($cf) && $cf != '') { |
|
| 1069 | 1069 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1070 | - if(!$cf){return NULL;} |
|
| 1070 | + if (!$cf) {return NULL; } |
|
| 1071 | 1071 | } |
| 1072 | 1072 | |
| 1073 | 1073 | $html_var = $cf['htmlvar_name']; |
| 1074 | 1074 | |
| 1075 | 1075 | // Check if there is a location specific filter. |
| 1076 | - if(has_filter("geodir_custom_field_output_email_loc_{$location}")){ |
|
| 1076 | + if (has_filter("geodir_custom_field_output_email_loc_{$location}")) { |
|
| 1077 | 1077 | /** |
| 1078 | 1078 | * Filter the email html by location. |
| 1079 | 1079 | * |
@@ -1081,11 +1081,11 @@ discard block |
||
| 1081 | 1081 | * @param array $cf The custom field array. |
| 1082 | 1082 | * @since 1.6.6 |
| 1083 | 1083 | */ |
| 1084 | - $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf); |
|
| 1084 | + $html = apply_filters("geodir_custom_field_output_email_loc_{$location}", $html, $cf); |
|
| 1085 | 1085 | } |
| 1086 | 1086 | |
| 1087 | 1087 | // Check if there is a custom field specific filter. |
| 1088 | - if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){ |
|
| 1088 | + if (has_filter("geodir_custom_field_output_email_var_{$html_var}")) { |
|
| 1089 | 1089 | /** |
| 1090 | 1090 | * Filter the email html by individual custom field. |
| 1091 | 1091 | * |
@@ -1094,11 +1094,11 @@ discard block |
||
| 1094 | 1094 | * @param array $cf The custom field array. |
| 1095 | 1095 | * @since 1.6.6 |
| 1096 | 1096 | */ |
| 1097 | - $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf); |
|
| 1097 | + $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}", $html, $location, $cf); |
|
| 1098 | 1098 | } |
| 1099 | 1099 | |
| 1100 | 1100 | // Check if there is a custom field key specific filter. |
| 1101 | - if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){ |
|
| 1101 | + if (has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")) { |
|
| 1102 | 1102 | /** |
| 1103 | 1103 | * Filter the email html by field type key. |
| 1104 | 1104 | * |
@@ -1107,18 +1107,18 @@ discard block |
||
| 1107 | 1107 | * @param array $cf The custom field array. |
| 1108 | 1108 | * @since 1.6.6 |
| 1109 | 1109 | */ |
| 1110 | - $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1110 | + $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1111 | 1111 | } |
| 1112 | 1112 | |
| 1113 | 1113 | // If not html then we run the standard output. |
| 1114 | - if(empty($html)){ |
|
| 1114 | + if (empty($html)) { |
|
| 1115 | 1115 | |
| 1116 | 1116 | global $preview; |
| 1117 | 1117 | if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) { |
| 1118 | 1118 | return ''; // Remove Send Enquiry | Send To Friend from listings page |
| 1119 | 1119 | } |
| 1120 | 1120 | |
| 1121 | - $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1121 | + $package_info = (array) geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1122 | 1122 | |
| 1123 | 1123 | if ($cf['htmlvar_name'] == 'geodir_email' && ((isset($package_info['sendtofriend']) && $package_info['sendtofriend']) || $post->{$cf['htmlvar_name']})) { |
| 1124 | 1124 | global $send_to_friend; |
@@ -1130,7 +1130,7 @@ discard block |
||
| 1130 | 1130 | if (!$preview) { |
| 1131 | 1131 | $b_send_inquiry = 'b_send_inquiry'; |
| 1132 | 1132 | $b_sendtofriend = 'b_sendtofriend'; |
| 1133 | - $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1133 | + $html = '<input type="hidden" name="geodir_popup_post_id" value="'.$post->ID.'" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1134 | 1134 | } |
| 1135 | 1135 | |
| 1136 | 1136 | $field_icon = geodir_field_icon_proccess($cf); |
@@ -1143,26 +1143,26 @@ discard block |
||
| 1143 | 1143 | $field_icon = ''; |
| 1144 | 1144 | } |
| 1145 | 1145 | |
| 1146 | - $html .= '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1146 | + $html .= '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'"><span class="geodir-i-email" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1147 | 1147 | $seperator = ''; |
| 1148 | 1148 | if ($post->{$cf['htmlvar_name']}) { |
| 1149 | - $html .= '<a href="javascript:void(0);" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>'; |
|
| 1149 | + $html .= '<a href="javascript:void(0);" class="'.$b_send_inquiry.'" >'.SEND_INQUIRY.'</a>'; |
|
| 1150 | 1150 | $seperator = ' | '; |
| 1151 | 1151 | } |
| 1152 | 1152 | |
| 1153 | 1153 | if (isset($package_info['sendtofriend']) && $package_info['sendtofriend']) { |
| 1154 | - $html .= $seperator . '<a href="javascript:void(0);" class="' . $b_sendtofriend . '">' . SEND_TO_FRIEND . '</a>'; |
|
| 1154 | + $html .= $seperator.'<a href="javascript:void(0);" class="'.$b_sendtofriend.'">'.SEND_TO_FRIEND.'</a>'; |
|
| 1155 | 1155 | } |
| 1156 | 1156 | |
| 1157 | 1157 | $html .= '</span></div>'; |
| 1158 | 1158 | |
| 1159 | 1159 | |
| 1160 | 1160 | if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') { |
| 1161 | - $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>'; |
|
| 1161 | + $html .= '<p class="sucess_msg">'.SEND_INQUIRY_SUCCESS.'</p>'; |
|
| 1162 | 1162 | } elseif (isset($_REQUEST['sendtofrnd']) && $_REQUEST['sendtofrnd'] == 'success') { |
| 1163 | - $html .= '<p class="sucess_msg">' . SEND_FRIEND_SUCCESS . '</p>'; |
|
| 1163 | + $html .= '<p class="sucess_msg">'.SEND_FRIEND_SUCCESS.'</p>'; |
|
| 1164 | 1164 | } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') { |
| 1165 | - $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>'; |
|
| 1165 | + $html .= '<p class="error_msg_fix">'.WRONG_CAPTCH_MSG.'</p>'; |
|
| 1166 | 1166 | } |
| 1167 | 1167 | |
| 1168 | 1168 | /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/ |
@@ -1182,11 +1182,11 @@ discard block |
||
| 1182 | 1182 | } |
| 1183 | 1183 | |
| 1184 | 1184 | |
| 1185 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1186 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1185 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-email" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1186 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1187 | 1187 | $html .= '</span><span class="geodir-email-address-output">'; |
| 1188 | 1188 | $email = $post->{$cf['htmlvar_name']} ; |
| 1189 | - if($e_split = explode('@',$email)){ |
|
| 1189 | + if ($e_split = explode('@', $email)) { |
|
| 1190 | 1190 | /** |
| 1191 | 1191 | * Filter email custom field name output. |
| 1192 | 1192 | * |
@@ -1195,10 +1195,10 @@ discard block |
||
| 1195 | 1195 | * @param string $email The email string being output. |
| 1196 | 1196 | * @param array $cf Custom field variables array. |
| 1197 | 1197 | */ |
| 1198 | - $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
|
| 1199 | - $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1200 | - }else{ |
|
| 1201 | - $html .= $email; |
|
| 1198 | + $email_name = apply_filters('geodir_email_field_name_output', $email, $cf); |
|
| 1199 | + $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1200 | + } else { |
|
| 1201 | + $html .= $email; |
|
| 1202 | 1202 | } |
| 1203 | 1203 | $html .= '</span></div>'; |
| 1204 | 1204 | } |
@@ -1209,7 +1209,7 @@ discard block |
||
| 1209 | 1209 | |
| 1210 | 1210 | return $html; |
| 1211 | 1211 | } |
| 1212 | -add_filter('geodir_custom_field_output_email','geodir_cf_email',10,3); |
|
| 1212 | +add_filter('geodir_custom_field_output_email', 'geodir_cf_email', 10, 3); |
|
| 1213 | 1213 | |
| 1214 | 1214 | |
| 1215 | 1215 | /** |
@@ -1222,21 +1222,21 @@ discard block |
||
| 1222 | 1222 | * |
| 1223 | 1223 | * @return string The html to output for the custom field. |
| 1224 | 1224 | */ |
| 1225 | -function geodir_cf_file($html,$location,$cf,$p=''){ |
|
| 1225 | +function geodir_cf_file($html, $location, $cf, $p = '') { |
|
| 1226 | 1226 | |
| 1227 | 1227 | // check we have the post value |
| 1228 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1229 | - else{ global $post;} |
|
| 1228 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1229 | + else { global $post; } |
|
| 1230 | 1230 | |
| 1231 | - if(!is_array($cf) && $cf!=''){ |
|
| 1231 | + if (!is_array($cf) && $cf != '') { |
|
| 1232 | 1232 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1233 | - if(!$cf){return NULL;} |
|
| 1233 | + if (!$cf) {return NULL; } |
|
| 1234 | 1234 | } |
| 1235 | 1235 | |
| 1236 | 1236 | $html_var = $cf['htmlvar_name']; |
| 1237 | 1237 | |
| 1238 | 1238 | // Check if there is a location specific filter. |
| 1239 | - if(has_filter("geodir_custom_field_output_file_loc_{$location}")){ |
|
| 1239 | + if (has_filter("geodir_custom_field_output_file_loc_{$location}")) { |
|
| 1240 | 1240 | /** |
| 1241 | 1241 | * Filter the file html by location. |
| 1242 | 1242 | * |
@@ -1244,11 +1244,11 @@ discard block |
||
| 1244 | 1244 | * @param array $cf The custom field array. |
| 1245 | 1245 | * @since 1.6.6 |
| 1246 | 1246 | */ |
| 1247 | - $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf); |
|
| 1247 | + $html = apply_filters("geodir_custom_field_output_file_loc_{$location}", $html, $cf); |
|
| 1248 | 1248 | } |
| 1249 | 1249 | |
| 1250 | 1250 | // Check if there is a custom field specific filter. |
| 1251 | - if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){ |
|
| 1251 | + if (has_filter("geodir_custom_field_output_file_var_{$html_var}")) { |
|
| 1252 | 1252 | /** |
| 1253 | 1253 | * Filter the file html by individual custom field. |
| 1254 | 1254 | * |
@@ -1257,11 +1257,11 @@ discard block |
||
| 1257 | 1257 | * @param array $cf The custom field array. |
| 1258 | 1258 | * @since 1.6.6 |
| 1259 | 1259 | */ |
| 1260 | - $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf); |
|
| 1260 | + $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}", $html, $location, $cf); |
|
| 1261 | 1261 | } |
| 1262 | 1262 | |
| 1263 | 1263 | // Check if there is a custom field key specific filter. |
| 1264 | - if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){ |
|
| 1264 | + if (has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")) { |
|
| 1265 | 1265 | /** |
| 1266 | 1266 | * Filter the file html by field type key. |
| 1267 | 1267 | * |
@@ -1270,11 +1270,11 @@ discard block |
||
| 1270 | 1270 | * @param array $cf The custom field array. |
| 1271 | 1271 | * @since 1.6.6 |
| 1272 | 1272 | */ |
| 1273 | - $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1273 | + $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1274 | 1274 | } |
| 1275 | 1275 | |
| 1276 | 1276 | // If not html then we run the standard output. |
| 1277 | - if(empty($html)){ |
|
| 1277 | + if (empty($html)) { |
|
| 1278 | 1278 | |
| 1279 | 1279 | if (!empty($post->{$cf['htmlvar_name']})): |
| 1280 | 1280 | |
@@ -1282,7 +1282,7 @@ discard block |
||
| 1282 | 1282 | if (!empty($files)): |
| 1283 | 1283 | |
| 1284 | 1284 | $extra_fields = !empty($cf['extra_fields']) ? stripslashes_deep(maybe_unserialize($cf['extra_fields'])) : NULL; |
| 1285 | - $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : ''; |
|
| 1285 | + $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types']) ? $extra_fields['gd_file_types'] : ''; |
|
| 1286 | 1286 | |
| 1287 | 1287 | $file_paths = ''; |
| 1288 | 1288 | foreach ($files as $file) { |
@@ -1319,9 +1319,9 @@ discard block |
||
| 1319 | 1319 | //$file_paths .= '<img src="'.$file.'" />'; |
| 1320 | 1320 | $file_paths .= '</div>'; |
| 1321 | 1321 | } else { |
| 1322 | - $ext_path = '_' . $html_var . '_'; |
|
| 1322 | + $ext_path = '_'.$html_var.'_'; |
|
| 1323 | 1323 | $filename = explode($ext_path, $filename); |
| 1324 | - $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>'; |
|
| 1324 | + $file_paths .= '<a href="'.$file.'" target="_blank">'.$filename[count($filename) - 1].'</a>'; |
|
| 1325 | 1325 | } |
| 1326 | 1326 | } |
| 1327 | 1327 | } |
@@ -1336,11 +1336,11 @@ discard block |
||
| 1336 | 1336 | $field_icon = ''; |
| 1337 | 1337 | } |
| 1338 | 1338 | |
| 1339 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' geodir-custom-file-box ' . $cf['htmlvar_name'] . '"><div class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1339 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' geodir-custom-file-box '.$cf['htmlvar_name'].'"><div class="geodir-i-select" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1340 | 1340 | $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">'; |
| 1341 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1341 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1342 | 1342 | $html .= '</span>'; |
| 1343 | - $html .= $file_paths . '</div></div>'; |
|
| 1343 | + $html .= $file_paths.'</div></div>'; |
|
| 1344 | 1344 | |
| 1345 | 1345 | endif; |
| 1346 | 1346 | endif; |
@@ -1349,7 +1349,7 @@ discard block |
||
| 1349 | 1349 | |
| 1350 | 1350 | return $html; |
| 1351 | 1351 | } |
| 1352 | -add_filter('geodir_custom_field_output_file','geodir_cf_file',10,3); |
|
| 1352 | +add_filter('geodir_custom_field_output_file', 'geodir_cf_file', 10, 3); |
|
| 1353 | 1353 | |
| 1354 | 1354 | |
| 1355 | 1355 | |
@@ -1363,21 +1363,21 @@ discard block |
||
| 1363 | 1363 | * |
| 1364 | 1364 | * @return string The html to output for the custom field. |
| 1365 | 1365 | */ |
| 1366 | -function geodir_cf_textarea($html,$location,$cf,$p=''){ |
|
| 1366 | +function geodir_cf_textarea($html, $location, $cf, $p = '') { |
|
| 1367 | 1367 | |
| 1368 | 1368 | // check we have the post value |
| 1369 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1370 | - else{ global $post;} |
|
| 1369 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1370 | + else { global $post; } |
|
| 1371 | 1371 | |
| 1372 | - if(!is_array($cf) && $cf!=''){ |
|
| 1372 | + if (!is_array($cf) && $cf != '') { |
|
| 1373 | 1373 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1374 | - if(!$cf){return NULL;} |
|
| 1374 | + if (!$cf) {return NULL; } |
|
| 1375 | 1375 | } |
| 1376 | 1376 | |
| 1377 | 1377 | $html_var = $cf['htmlvar_name']; |
| 1378 | 1378 | |
| 1379 | 1379 | // Check if there is a location specific filter. |
| 1380 | - if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){ |
|
| 1380 | + if (has_filter("geodir_custom_field_output_textarea_loc_{$location}")) { |
|
| 1381 | 1381 | /** |
| 1382 | 1382 | * Filter the textarea html by location. |
| 1383 | 1383 | * |
@@ -1385,11 +1385,11 @@ discard block |
||
| 1385 | 1385 | * @param array $cf The custom field array. |
| 1386 | 1386 | * @since 1.6.6 |
| 1387 | 1387 | */ |
| 1388 | - $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf); |
|
| 1388 | + $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}", $html, $cf); |
|
| 1389 | 1389 | } |
| 1390 | 1390 | |
| 1391 | 1391 | // Check if there is a custom field specific filter. |
| 1392 | - if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){ |
|
| 1392 | + if (has_filter("geodir_custom_field_output_textarea_var_{$html_var}")) { |
|
| 1393 | 1393 | /** |
| 1394 | 1394 | * Filter the textarea html by individual custom field. |
| 1395 | 1395 | * |
@@ -1398,11 +1398,11 @@ discard block |
||
| 1398 | 1398 | * @param array $cf The custom field array. |
| 1399 | 1399 | * @since 1.6.6 |
| 1400 | 1400 | */ |
| 1401 | - $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf); |
|
| 1401 | + $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}", $html, $location, $cf); |
|
| 1402 | 1402 | } |
| 1403 | 1403 | |
| 1404 | 1404 | // Check if there is a custom field key specific filter. |
| 1405 | - if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){ |
|
| 1405 | + if (has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")) { |
|
| 1406 | 1406 | /** |
| 1407 | 1407 | * Filter the textarea html by field type key. |
| 1408 | 1408 | * |
@@ -1411,11 +1411,11 @@ discard block |
||
| 1411 | 1411 | * @param array $cf The custom field array. |
| 1412 | 1412 | * @since 1.6.6 |
| 1413 | 1413 | */ |
| 1414 | - $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1414 | + $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1415 | 1415 | } |
| 1416 | 1416 | |
| 1417 | 1417 | // If not html then we run the standard output. |
| 1418 | - if(empty($html)){ |
|
| 1418 | + if (empty($html)) { |
|
| 1419 | 1419 | |
| 1420 | 1420 | if (!empty($post->{$cf['htmlvar_name']})) { |
| 1421 | 1421 | |
@@ -1430,9 +1430,9 @@ discard block |
||
| 1430 | 1430 | } |
| 1431 | 1431 | |
| 1432 | 1432 | |
| 1433 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1434 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1435 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1433 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-text" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1434 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1435 | + $html .= '</span>'.wpautop($post->{$cf['htmlvar_name']}).'</div>'; |
|
| 1436 | 1436 | |
| 1437 | 1437 | } |
| 1438 | 1438 | |
@@ -1440,7 +1440,7 @@ discard block |
||
| 1440 | 1440 | |
| 1441 | 1441 | return $html; |
| 1442 | 1442 | } |
| 1443 | -add_filter('geodir_custom_field_output_textarea','geodir_cf_textarea',10,3); |
|
| 1443 | +add_filter('geodir_custom_field_output_textarea', 'geodir_cf_textarea', 10, 3); |
|
| 1444 | 1444 | |
| 1445 | 1445 | |
| 1446 | 1446 | |
@@ -1454,21 +1454,21 @@ discard block |
||
| 1454 | 1454 | * |
| 1455 | 1455 | * @return string The html to output for the custom field. |
| 1456 | 1456 | */ |
| 1457 | -function geodir_cf_html($html,$location,$cf,$p=''){ |
|
| 1457 | +function geodir_cf_html($html, $location, $cf, $p = '') { |
|
| 1458 | 1458 | |
| 1459 | 1459 | // check we have the post value |
| 1460 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1461 | - else{ global $post;} |
|
| 1460 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1461 | + else { global $post; } |
|
| 1462 | 1462 | |
| 1463 | - if(!is_array($cf) && $cf!=''){ |
|
| 1463 | + if (!is_array($cf) && $cf != '') { |
|
| 1464 | 1464 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1465 | - if(!$cf){return NULL;} |
|
| 1465 | + if (!$cf) {return NULL; } |
|
| 1466 | 1466 | } |
| 1467 | 1467 | |
| 1468 | 1468 | $html_var = $cf['htmlvar_name']; |
| 1469 | 1469 | |
| 1470 | 1470 | // Check if there is a location specific filter. |
| 1471 | - if(has_filter("geodir_custom_field_output_html_loc_{$location}")){ |
|
| 1471 | + if (has_filter("geodir_custom_field_output_html_loc_{$location}")) { |
|
| 1472 | 1472 | /** |
| 1473 | 1473 | * Filter the html html by location. |
| 1474 | 1474 | * |
@@ -1476,11 +1476,11 @@ discard block |
||
| 1476 | 1476 | * @param array $cf The custom field array. |
| 1477 | 1477 | * @since 1.6.6 |
| 1478 | 1478 | */ |
| 1479 | - $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf); |
|
| 1479 | + $html = apply_filters("geodir_custom_field_output_html_loc_{$location}", $html, $cf); |
|
| 1480 | 1480 | } |
| 1481 | 1481 | |
| 1482 | 1482 | // Check if there is a custom field specific filter. |
| 1483 | - if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){ |
|
| 1483 | + if (has_filter("geodir_custom_field_output_html_var_{$html_var}")) { |
|
| 1484 | 1484 | /** |
| 1485 | 1485 | * Filter the html html by individual custom field. |
| 1486 | 1486 | * |
@@ -1489,11 +1489,11 @@ discard block |
||
| 1489 | 1489 | * @param array $cf The custom field array. |
| 1490 | 1490 | * @since 1.6.6 |
| 1491 | 1491 | */ |
| 1492 | - $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf); |
|
| 1492 | + $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}", $html, $location, $cf); |
|
| 1493 | 1493 | } |
| 1494 | 1494 | |
| 1495 | 1495 | // Check if there is a custom field key specific filter. |
| 1496 | - if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){ |
|
| 1496 | + if (has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")) { |
|
| 1497 | 1497 | /** |
| 1498 | 1498 | * Filter the html html by field type key. |
| 1499 | 1499 | * |
@@ -1502,11 +1502,11 @@ discard block |
||
| 1502 | 1502 | * @param array $cf The custom field array. |
| 1503 | 1503 | * @since 1.6.6 |
| 1504 | 1504 | */ |
| 1505 | - $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1505 | + $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1506 | 1506 | } |
| 1507 | 1507 | |
| 1508 | 1508 | // If not html then we run the standard output. |
| 1509 | - if(empty($html)){ |
|
| 1509 | + if (empty($html)) { |
|
| 1510 | 1510 | |
| 1511 | 1511 | if (!empty($post->{$cf['htmlvar_name']})) { |
| 1512 | 1512 | |
@@ -1520,9 +1520,9 @@ discard block |
||
| 1520 | 1520 | $field_icon = ''; |
| 1521 | 1521 | } |
| 1522 | 1522 | |
| 1523 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1524 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1525 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1523 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-text" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1524 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1525 | + $html .= '</span>'.wpautop($post->{$cf['htmlvar_name']}).'</div>'; |
|
| 1526 | 1526 | |
| 1527 | 1527 | } |
| 1528 | 1528 | |
@@ -1530,7 +1530,7 @@ discard block |
||
| 1530 | 1530 | |
| 1531 | 1531 | return $html; |
| 1532 | 1532 | } |
| 1533 | -add_filter('geodir_custom_field_output_html','geodir_cf_html',10,3); |
|
| 1533 | +add_filter('geodir_custom_field_output_html', 'geodir_cf_html', 10, 3); |
|
| 1534 | 1534 | |
| 1535 | 1535 | |
| 1536 | 1536 | |
@@ -1544,21 +1544,21 @@ discard block |
||
| 1544 | 1544 | * |
| 1545 | 1545 | * @return string The html to output for the custom field. |
| 1546 | 1546 | */ |
| 1547 | -function geodir_cf_taxonomy($html,$location,$cf,$p=''){ |
|
| 1547 | +function geodir_cf_taxonomy($html, $location, $cf, $p = '') { |
|
| 1548 | 1548 | |
| 1549 | 1549 | // check we have the post value |
| 1550 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1551 | - else{ global $post;} |
|
| 1550 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1551 | + else { global $post; } |
|
| 1552 | 1552 | |
| 1553 | - if(!is_array($cf) && $cf!=''){ |
|
| 1553 | + if (!is_array($cf) && $cf != '') { |
|
| 1554 | 1554 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1555 | - if(!$cf){return NULL;} |
|
| 1555 | + if (!$cf) {return NULL; } |
|
| 1556 | 1556 | } |
| 1557 | 1557 | |
| 1558 | 1558 | $html_var = $cf['htmlvar_name']; |
| 1559 | 1559 | |
| 1560 | 1560 | // Check if there is a location specific filter. |
| 1561 | - if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){ |
|
| 1561 | + if (has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")) { |
|
| 1562 | 1562 | /** |
| 1563 | 1563 | * Filter the taxonomy html by location. |
| 1564 | 1564 | * |
@@ -1566,11 +1566,11 @@ discard block |
||
| 1566 | 1566 | * @param array $cf The custom field array. |
| 1567 | 1567 | * @since 1.6.6 |
| 1568 | 1568 | */ |
| 1569 | - $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf); |
|
| 1569 | + $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}", $html, $cf); |
|
| 1570 | 1570 | } |
| 1571 | 1571 | |
| 1572 | 1572 | // Check if there is a custom field specific filter. |
| 1573 | - if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){ |
|
| 1573 | + if (has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")) { |
|
| 1574 | 1574 | /** |
| 1575 | 1575 | * Filter the taxonomy html by individual custom field. |
| 1576 | 1576 | * |
@@ -1579,11 +1579,11 @@ discard block |
||
| 1579 | 1579 | * @param array $cf The custom field array. |
| 1580 | 1580 | * @since 1.6.6 |
| 1581 | 1581 | */ |
| 1582 | - $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf); |
|
| 1582 | + $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}", $html, $location, $cf); |
|
| 1583 | 1583 | } |
| 1584 | 1584 | |
| 1585 | 1585 | // Check if there is a custom field key specific filter. |
| 1586 | - if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){ |
|
| 1586 | + if (has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")) { |
|
| 1587 | 1587 | /** |
| 1588 | 1588 | * Filter the taxonomy html by field type key. |
| 1589 | 1589 | * |
@@ -1592,14 +1592,14 @@ discard block |
||
| 1592 | 1592 | * @param array $cf The custom field array. |
| 1593 | 1593 | * @since 1.6.6 |
| 1594 | 1594 | */ |
| 1595 | - $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1595 | + $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1596 | 1596 | } |
| 1597 | 1597 | |
| 1598 | 1598 | // If not html then we run the standard output. |
| 1599 | - if(empty($html)){ |
|
| 1599 | + if (empty($html)) { |
|
| 1600 | 1600 | |
| 1601 | - if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) { |
|
| 1602 | - $post_taxonomy = $post->post_type . 'category'; |
|
| 1601 | + if ($html_var == $post->post_type.'category' && !empty($post->{$html_var})) { |
|
| 1602 | + $post_taxonomy = $post->post_type.'category'; |
|
| 1603 | 1603 | $field_value = $post->{$html_var}; |
| 1604 | 1604 | $links = array(); |
| 1605 | 1605 | $terms = array(); |
@@ -1617,7 +1617,7 @@ discard block |
||
| 1617 | 1617 | if ($term != '') { |
| 1618 | 1618 | $term = get_term_by('id', $term, $html_var); |
| 1619 | 1619 | if (is_object($term)) { |
| 1620 | - $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>"; |
|
| 1620 | + $links[] = "<a href='".esc_attr(get_term_link($term, $post_taxonomy))."'>".$term->name."</a>"; |
|
| 1621 | 1621 | $terms[] = $term; |
| 1622 | 1622 | } |
| 1623 | 1623 | } |
@@ -1631,7 +1631,7 @@ discard block |
||
| 1631 | 1631 | $terms = $termsOrdered; |
| 1632 | 1632 | } |
| 1633 | 1633 | } |
| 1634 | - $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : ''; |
|
| 1634 | + $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object) $terms) : ''; |
|
| 1635 | 1635 | |
| 1636 | 1636 | if ($html_value != '') { |
| 1637 | 1637 | $field_icon = geodir_field_icon_proccess($cf); |
@@ -1644,9 +1644,9 @@ discard block |
||
| 1644 | 1644 | $field_icon = ''; |
| 1645 | 1645 | } |
| 1646 | 1646 | |
| 1647 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1648 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1649 | - $html .= '</span> ' . $html_value . '</div>'; |
|
| 1647 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$html_var.'" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1648 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ''; |
|
| 1649 | + $html .= '</span> '.$html_value.'</div>'; |
|
| 1650 | 1650 | } |
| 1651 | 1651 | } |
| 1652 | 1652 | |
@@ -1654,7 +1654,7 @@ discard block |
||
| 1654 | 1654 | |
| 1655 | 1655 | return $html; |
| 1656 | 1656 | } |
| 1657 | -add_filter('geodir_custom_field_output_taxonomy','geodir_cf_taxonomy',10,3); |
|
| 1657 | +add_filter('geodir_custom_field_output_taxonomy', 'geodir_cf_taxonomy', 10, 3); |
|
| 1658 | 1658 | |
| 1659 | 1659 | |
| 1660 | 1660 | /** |
@@ -1667,21 +1667,21 @@ discard block |
||
| 1667 | 1667 | * |
| 1668 | 1668 | * @return string The html to output for the custom field. |
| 1669 | 1669 | */ |
| 1670 | -function geodir_cf_address($html,$location,$cf,$p=''){ |
|
| 1670 | +function geodir_cf_address($html, $location, $cf, $p = '') { |
|
| 1671 | 1671 | |
| 1672 | 1672 | // check we have the post value |
| 1673 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1674 | - else{ global $post;} |
|
| 1673 | + if (is_int($p)) {$post = geodir_get_post_info($p); } |
|
| 1674 | + else { global $post; } |
|
| 1675 | 1675 | |
| 1676 | - if(!is_array($cf) && $cf!=''){ |
|
| 1676 | + if (!is_array($cf) && $cf != '') { |
|
| 1677 | 1677 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
| 1678 | - if(!$cf){return NULL;} |
|
| 1678 | + if (!$cf) {return NULL; } |
|
| 1679 | 1679 | } |
| 1680 | 1680 | |
| 1681 | 1681 | $html_var = $cf['htmlvar_name']; |
| 1682 | 1682 | |
| 1683 | 1683 | // Check if there is a location specific filter. |
| 1684 | - if(has_filter("geodir_custom_field_output_address_loc_{$location}")){ |
|
| 1684 | + if (has_filter("geodir_custom_field_output_address_loc_{$location}")) { |
|
| 1685 | 1685 | /** |
| 1686 | 1686 | * Filter the address html by location. |
| 1687 | 1687 | * |
@@ -1689,11 +1689,11 @@ discard block |
||
| 1689 | 1689 | * @param array $cf The custom field array. |
| 1690 | 1690 | * @since 1.6.6 |
| 1691 | 1691 | */ |
| 1692 | - $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf); |
|
| 1692 | + $html = apply_filters("geodir_custom_field_output_address_loc_{$location}", $html, $cf); |
|
| 1693 | 1693 | } |
| 1694 | 1694 | |
| 1695 | 1695 | // Check if there is a custom field specific filter. |
| 1696 | - if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){ |
|
| 1696 | + if (has_filter("geodir_custom_field_output_address_var_{$html_var}")) { |
|
| 1697 | 1697 | /** |
| 1698 | 1698 | * Filter the address html by individual custom field. |
| 1699 | 1699 | * |
@@ -1702,11 +1702,11 @@ discard block |
||
| 1702 | 1702 | * @param array $cf The custom field array. |
| 1703 | 1703 | * @since 1.6.6 |
| 1704 | 1704 | */ |
| 1705 | - $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf); |
|
| 1705 | + $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}", $html, $location, $cf); |
|
| 1706 | 1706 | } |
| 1707 | 1707 | |
| 1708 | 1708 | // Check if there is a custom field key specific filter. |
| 1709 | - if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){ |
|
| 1709 | + if (has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")) { |
|
| 1710 | 1710 | /** |
| 1711 | 1711 | * Filter the address html by field type key. |
| 1712 | 1712 | * |
@@ -1715,14 +1715,14 @@ discard block |
||
| 1715 | 1715 | * @param array $cf The custom field array. |
| 1716 | 1716 | * @since 1.6.6 |
| 1717 | 1717 | */ |
| 1718 | - $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1718 | + $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}", $html, $location, $cf); |
|
| 1719 | 1719 | } |
| 1720 | 1720 | |
| 1721 | 1721 | // If not html then we run the standard output. |
| 1722 | - if(empty($html)){ |
|
| 1722 | + if (empty($html)) { |
|
| 1723 | 1723 | |
| 1724 | 1724 | global $preview; |
| 1725 | - $html_var = $cf['htmlvar_name'] . '_address'; |
|
| 1725 | + $html_var = $cf['htmlvar_name'].'_address'; |
|
| 1726 | 1726 | |
| 1727 | 1727 | if ($cf['extra_fields']) { |
| 1728 | 1728 | |
@@ -1785,10 +1785,10 @@ discard block |
||
| 1785 | 1785 | |
| 1786 | 1786 | if ($post->{$html_var}) { |
| 1787 | 1787 | |
| 1788 | - $field_icon = geodir_field_icon_proccess( $cf ); |
|
| 1789 | - if ( strpos( $field_icon, 'http' ) !== false ) { |
|
| 1788 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1789 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1790 | 1790 | $field_icon_af = ''; |
| 1791 | - } elseif ( $field_icon == '' ) { |
|
| 1791 | + } elseif ($field_icon == '') { |
|
| 1792 | 1792 | $field_icon_af = '<i class="fa fa-home"></i>'; |
| 1793 | 1793 | } else { |
| 1794 | 1794 | $field_icon_af = $field_icon; |
@@ -1797,25 +1797,25 @@ discard block |
||
| 1797 | 1797 | |
| 1798 | 1798 | |
| 1799 | 1799 | |
| 1800 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1801 | - $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1802 | - $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ' '; |
|
| 1800 | + $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$html_var.'" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1801 | + $html .= '<span class="geodir-i-location" style="'.$field_icon.'">'.$field_icon_af; |
|
| 1802 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : ' '; |
|
| 1803 | 1803 | $html .= '</span>'; |
| 1804 | 1804 | |
| 1805 | - if ( isset($post->post_address) ) { |
|
| 1806 | - $html .= '<span itemprop="streetAddress">' . $post->post_address . '</span><br>'; |
|
| 1805 | + if (isset($post->post_address)) { |
|
| 1806 | + $html .= '<span itemprop="streetAddress">'.$post->post_address.'</span><br>'; |
|
| 1807 | 1807 | } |
| 1808 | - if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) { |
|
| 1809 | - $html .= '<span itemprop="addressLocality">' . $post->post_city . '</span><br>'; |
|
| 1808 | + if ($show_city_in_address && isset($post->post_city) && $post->post_city) { |
|
| 1809 | + $html .= '<span itemprop="addressLocality">'.$post->post_city.'</span><br>'; |
|
| 1810 | 1810 | } |
| 1811 | - if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) { |
|
| 1812 | - $html .= '<span itemprop="addressRegion">' . $post->post_region . '</span><br>'; |
|
| 1811 | + if ($show_region_in_address && isset($post->post_region) && $post->post_region) { |
|
| 1812 | + $html .= '<span itemprop="addressRegion">'.$post->post_region.'</span><br>'; |
|
| 1813 | 1813 | } |
| 1814 | - if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) { |
|
| 1815 | - $html .= '<span itemprop="postalCode">' . $post->post_zip . '</span><br>'; |
|
| 1814 | + if ($show_zip_in_address && isset($post->post_zip) && $post->post_zip) { |
|
| 1815 | + $html .= '<span itemprop="postalCode">'.$post->post_zip.'</span><br>'; |
|
| 1816 | 1816 | } |
| 1817 | - if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) { |
|
| 1818 | - $html .= '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span><br>'; |
|
| 1817 | + if ($show_country_in_address && isset($post->post_country) && $post->post_country) { |
|
| 1818 | + $html .= '<span itemprop="addressCountry">'.__($post->post_country, 'geodirectory').'</span><br>'; |
|
| 1819 | 1819 | } |
| 1820 | 1820 | $html .= '</div>'; |
| 1821 | 1821 | |
@@ -1826,4 +1826,4 @@ discard block |
||
| 1826 | 1826 | |
| 1827 | 1827 | return $html; |
| 1828 | 1828 | } |
| 1829 | -add_filter('geodir_custom_field_output_address','geodir_cf_address',10,3); |
|
| 1830 | 1829 | \ No newline at end of file |
| 1830 | +add_filter('geodir_custom_field_output_address', 'geodir_cf_address', 10, 3); |
|
| 1831 | 1831 | \ No newline at end of file |
@@ -22,8 +22,7 @@ discard block |
||
| 22 | 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);} else{ global $post;} |
|
| 27 | 26 | |
| 28 | 27 | if(!is_array($cf) && $cf!=''){ |
| 29 | 28 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -77,8 +76,10 @@ discard block |
||
| 77 | 76 | |
| 78 | 77 | if ( $post->{$html_var} == '1' ): |
| 79 | 78 | $html_val = __( 'Yes', 'geodirectory' ); |
| 80 | - else: |
|
| 79 | + else { |
|
| 80 | + : |
|
| 81 | 81 | $html_val = __( 'No', 'geodirectory' ); |
| 82 | + } |
|
| 82 | 83 | endif; |
| 83 | 84 | |
| 84 | 85 | $field_icon = geodir_field_icon_proccess($cf); |
@@ -116,8 +117,7 @@ discard block |
||
| 116 | 117 | function geodir_cf_fieldset($html,$location,$cf,$p=''){ |
| 117 | 118 | |
| 118 | 119 | // check we have the post value |
| 119 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 120 | - else{ global $post;} |
|
| 120 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 121 | 121 | |
| 122 | 122 | if(!is_array($cf) && $cf!=''){ |
| 123 | 123 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -197,8 +197,7 @@ discard block |
||
| 197 | 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);} else{ global $post;} |
|
| 202 | 201 | |
| 203 | 202 | if(!is_array($cf) && $cf!=''){ |
| 204 | 203 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -313,8 +312,7 @@ discard block |
||
| 313 | 312 | function geodir_cf_phone($html,$location,$cf,$p=''){ |
| 314 | 313 | |
| 315 | 314 | // check we have the post value |
| 316 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 317 | - else{ global $post;} |
|
| 315 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 318 | 316 | |
| 319 | 317 | if(!is_array($cf) && $cf!=''){ |
| 320 | 318 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -403,8 +401,7 @@ discard block |
||
| 403 | 401 | function geodir_cf_time($html,$location,$cf,$p=''){ |
| 404 | 402 | |
| 405 | 403 | // check we have the post value |
| 406 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 407 | - else{ global $post;} |
|
| 404 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 408 | 405 | |
| 409 | 406 | if(!is_array($cf) && $cf!=''){ |
| 410 | 407 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -457,9 +454,10 @@ discard block |
||
| 457 | 454 | if ($post->{$cf['htmlvar_name']}): |
| 458 | 455 | |
| 459 | 456 | $value = ''; |
| 460 | - if ($post->{$cf['htmlvar_name']} != '') |
|
| 461 | - //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']})); |
|
| 457 | + if ($post->{$cf['htmlvar_name']} != '') { |
|
| 458 | + //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']})); |
|
| 462 | 459 | $value = date(get_option('time_format'), strtotime($post->{$cf['htmlvar_name']})); |
| 460 | + } |
|
| 463 | 461 | |
| 464 | 462 | $field_icon = geodir_field_icon_proccess($cf); |
| 465 | 463 | if (strpos($field_icon, 'http') !== false) { |
@@ -498,8 +496,7 @@ discard block |
||
| 498 | 496 | function geodir_cf_datepicker($html,$location,$cf,$p=''){ |
| 499 | 497 | global $preview; |
| 500 | 498 | // check we have the post value |
| 501 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 502 | - else{ global $post;} |
|
| 499 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 503 | 500 | |
| 504 | 501 | if(!is_array($cf) && $cf!=''){ |
| 505 | 502 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -566,7 +563,7 @@ discard block |
||
| 566 | 563 | $date_format = str_replace($search, $replace, $date_format); |
| 567 | 564 | |
| 568 | 565 | $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{ |
|
| 566 | + } else{ |
|
| 570 | 567 | $post_htmlvar_value = $post->{$cf['htmlvar_name']}; |
| 571 | 568 | } |
| 572 | 569 | |
@@ -575,7 +572,7 @@ discard block |
||
| 575 | 572 | $value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d |
| 576 | 573 | //$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value; |
| 577 | 574 | //$value = date_i18n($date_format, strtotime($post_htmlvar_value)); |
| 578 | - }else{ |
|
| 575 | + } else{ |
|
| 579 | 576 | return ''; |
| 580 | 577 | } |
| 581 | 578 | |
@@ -618,8 +615,7 @@ discard block |
||
| 618 | 615 | function geodir_cf_text($html,$location,$cf,$p=''){ |
| 619 | 616 | |
| 620 | 617 | // check we have the post value |
| 621 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 622 | - else{ global $post;} |
|
| 618 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 623 | 619 | |
| 624 | 620 | if(!is_array($cf) && $cf!=''){ |
| 625 | 621 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -725,8 +721,7 @@ discard block |
||
| 725 | 721 | function geodir_cf_radio($html,$location,$cf,$p=''){ |
| 726 | 722 | |
| 727 | 723 | // check we have the post value |
| 728 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 729 | - else{ global $post;} |
|
| 724 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 730 | 725 | |
| 731 | 726 | if(!is_array($cf) && $cf!=''){ |
| 732 | 727 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -833,8 +828,7 @@ discard block |
||
| 833 | 828 | function geodir_cf_select($html,$location,$cf,$p=''){ |
| 834 | 829 | |
| 835 | 830 | // check we have the post value |
| 836 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 837 | - else{ global $post;} |
|
| 831 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 838 | 832 | |
| 839 | 833 | if(!is_array($cf) && $cf!=''){ |
| 840 | 834 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -935,8 +929,7 @@ discard block |
||
| 935 | 929 | function geodir_cf_multiselect($html,$location,$cf,$p=''){ |
| 936 | 930 | |
| 937 | 931 | // check we have the post value |
| 938 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 939 | - else{ global $post;} |
|
| 932 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 940 | 933 | |
| 941 | 934 | if(!is_array($cf) && $cf!=''){ |
| 942 | 935 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -1062,8 +1055,7 @@ discard block |
||
| 1062 | 1055 | function geodir_cf_email($html,$location,$cf,$p=''){ |
| 1063 | 1056 | |
| 1064 | 1057 | // check we have the post value |
| 1065 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1066 | - else{ global $post;} |
|
| 1058 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 1067 | 1059 | |
| 1068 | 1060 | if(!is_array($cf) && $cf!=''){ |
| 1069 | 1061 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -1197,7 +1189,7 @@ discard block |
||
| 1197 | 1189 | */ |
| 1198 | 1190 | $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
| 1199 | 1191 | $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
| 1200 | - }else{ |
|
| 1192 | + } else{ |
|
| 1201 | 1193 | $html .= $email; |
| 1202 | 1194 | } |
| 1203 | 1195 | $html .= '</span></div>'; |
@@ -1225,8 +1217,7 @@ discard block |
||
| 1225 | 1217 | function geodir_cf_file($html,$location,$cf,$p=''){ |
| 1226 | 1218 | |
| 1227 | 1219 | // check we have the post value |
| 1228 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1229 | - else{ global $post;} |
|
| 1220 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 1230 | 1221 | |
| 1231 | 1222 | if(!is_array($cf) && $cf!=''){ |
| 1232 | 1223 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -1366,8 +1357,7 @@ discard block |
||
| 1366 | 1357 | function geodir_cf_textarea($html,$location,$cf,$p=''){ |
| 1367 | 1358 | |
| 1368 | 1359 | // check we have the post value |
| 1369 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1370 | - else{ global $post;} |
|
| 1360 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 1371 | 1361 | |
| 1372 | 1362 | if(!is_array($cf) && $cf!=''){ |
| 1373 | 1363 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -1457,8 +1447,7 @@ discard block |
||
| 1457 | 1447 | function geodir_cf_html($html,$location,$cf,$p=''){ |
| 1458 | 1448 | |
| 1459 | 1449 | // check we have the post value |
| 1460 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1461 | - else{ global $post;} |
|
| 1450 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 1462 | 1451 | |
| 1463 | 1452 | if(!is_array($cf) && $cf!=''){ |
| 1464 | 1453 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -1547,8 +1536,7 @@ discard block |
||
| 1547 | 1536 | function geodir_cf_taxonomy($html,$location,$cf,$p=''){ |
| 1548 | 1537 | |
| 1549 | 1538 | // check we have the post value |
| 1550 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1551 | - else{ global $post;} |
|
| 1539 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 1552 | 1540 | |
| 1553 | 1541 | if(!is_array($cf) && $cf!=''){ |
| 1554 | 1542 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -1670,8 +1658,7 @@ discard block |
||
| 1670 | 1658 | function geodir_cf_address($html,$location,$cf,$p=''){ |
| 1671 | 1659 | |
| 1672 | 1660 | // check we have the post value |
| 1673 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1674 | - else{ global $post;} |
|
| 1661 | + if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;} |
|
| 1675 | 1662 | |
| 1676 | 1663 | if(!is_array($cf) && $cf!=''){ |
| 1677 | 1664 | $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
@@ -21,84 +21,84 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | function geodir_cf_checkbox($html,$location,$cf,$p=''){ |
| 23 | 23 | |
| 24 | - // check we have the post value |
|
| 25 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 26 | - else{ global $post;} |
|
| 27 | - |
|
| 28 | - if(!is_array($cf) && $cf!=''){ |
|
| 29 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 30 | - if(!$cf){return NULL;} |
|
| 31 | - } |
|
| 32 | - |
|
| 33 | - $html_var = $cf['htmlvar_name']; |
|
| 34 | - |
|
| 35 | - // Check if there is a location specific filter. |
|
| 36 | - if(has_filter("geodir_custom_field_output_checkbox_loc_{$location}")){ |
|
| 37 | - /** |
|
| 38 | - * Filter the checkbox html by location. |
|
| 39 | - * |
|
| 40 | - * @param string $html The html to filter. |
|
| 41 | - * @param array $cf The custom field array. |
|
| 42 | - * @since 1.6.6 |
|
| 43 | - */ |
|
| 44 | - $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}",$html,$cf); |
|
| 45 | - } |
|
| 46 | - |
|
| 47 | - // Check if there is a custom field specific filter. |
|
| 48 | - if(has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")){ |
|
| 49 | - /** |
|
| 50 | - * Filter the checkbox html by individual custom field. |
|
| 51 | - * |
|
| 52 | - * @param string $html The html to filter. |
|
| 53 | - * @param string $location The location to output the html. |
|
| 54 | - * @param array $cf The custom field array. |
|
| 55 | - * @since 1.6.6 |
|
| 56 | - */ |
|
| 57 | - $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}",$html,$location,$cf); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - // Check if there is a custom field key specific filter. |
|
| 61 | - if(has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")){ |
|
| 62 | - /** |
|
| 63 | - * Filter the checkbox html by field type key. |
|
| 64 | - * |
|
| 65 | - * @param string $html The html to filter. |
|
| 66 | - * @param string $location The location to output the html. |
|
| 67 | - * @param array $cf The custom field array. |
|
| 68 | - * @since 1.6.6 |
|
| 69 | - */ |
|
| 70 | - $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 71 | - } |
|
| 72 | - |
|
| 73 | - // If not html then we run the standard output. |
|
| 74 | - if(empty($html)){ |
|
| 75 | - |
|
| 76 | - if ( (int) $post->{$html_var} == 1 ): |
|
| 77 | - |
|
| 78 | - if ( $post->{$html_var} == '1' ): |
|
| 79 | - $html_val = __( 'Yes', 'geodirectory' ); |
|
| 80 | - else: |
|
| 81 | - $html_val = __( 'No', 'geodirectory' ); |
|
| 82 | - endif; |
|
| 83 | - |
|
| 84 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 85 | - if (strpos($field_icon, 'http') !== false) { |
|
| 86 | - $field_icon_af = ''; |
|
| 87 | - } elseif ($field_icon == '') { |
|
| 88 | - $field_icon_af = ''; |
|
| 89 | - } else { |
|
| 90 | - $field_icon_af = $field_icon; |
|
| 91 | - $field_icon = ''; |
|
| 92 | - } |
|
| 93 | - |
|
| 94 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af; |
|
| 95 | - $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ''; |
|
| 96 | - $html .= '</span>' . $html_val . '</div>'; |
|
| 97 | - endif; |
|
| 98 | - |
|
| 99 | - } |
|
| 100 | - |
|
| 101 | - return $html; |
|
| 24 | + // check we have the post value |
|
| 25 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 26 | + else{ global $post;} |
|
| 27 | + |
|
| 28 | + if(!is_array($cf) && $cf!=''){ |
|
| 29 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 30 | + if(!$cf){return NULL;} |
|
| 31 | + } |
|
| 32 | + |
|
| 33 | + $html_var = $cf['htmlvar_name']; |
|
| 34 | + |
|
| 35 | + // Check if there is a location specific filter. |
|
| 36 | + if(has_filter("geodir_custom_field_output_checkbox_loc_{$location}")){ |
|
| 37 | + /** |
|
| 38 | + * Filter the checkbox html by location. |
|
| 39 | + * |
|
| 40 | + * @param string $html The html to filter. |
|
| 41 | + * @param array $cf The custom field array. |
|
| 42 | + * @since 1.6.6 |
|
| 43 | + */ |
|
| 44 | + $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}",$html,$cf); |
|
| 45 | + } |
|
| 46 | + |
|
| 47 | + // Check if there is a custom field specific filter. |
|
| 48 | + if(has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")){ |
|
| 49 | + /** |
|
| 50 | + * Filter the checkbox html by individual custom field. |
|
| 51 | + * |
|
| 52 | + * @param string $html The html to filter. |
|
| 53 | + * @param string $location The location to output the html. |
|
| 54 | + * @param array $cf The custom field array. |
|
| 55 | + * @since 1.6.6 |
|
| 56 | + */ |
|
| 57 | + $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}",$html,$location,$cf); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + // Check if there is a custom field key specific filter. |
|
| 61 | + if(has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")){ |
|
| 62 | + /** |
|
| 63 | + * Filter the checkbox html by field type key. |
|
| 64 | + * |
|
| 65 | + * @param string $html The html to filter. |
|
| 66 | + * @param string $location The location to output the html. |
|
| 67 | + * @param array $cf The custom field array. |
|
| 68 | + * @since 1.6.6 |
|
| 69 | + */ |
|
| 70 | + $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 71 | + } |
|
| 72 | + |
|
| 73 | + // If not html then we run the standard output. |
|
| 74 | + if(empty($html)){ |
|
| 75 | + |
|
| 76 | + if ( (int) $post->{$html_var} == 1 ): |
|
| 77 | + |
|
| 78 | + if ( $post->{$html_var} == '1' ): |
|
| 79 | + $html_val = __( 'Yes', 'geodirectory' ); |
|
| 80 | + else: |
|
| 81 | + $html_val = __( 'No', 'geodirectory' ); |
|
| 82 | + endif; |
|
| 83 | + |
|
| 84 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 85 | + if (strpos($field_icon, 'http') !== false) { |
|
| 86 | + $field_icon_af = ''; |
|
| 87 | + } elseif ($field_icon == '') { |
|
| 88 | + $field_icon_af = ''; |
|
| 89 | + } else { |
|
| 90 | + $field_icon_af = $field_icon; |
|
| 91 | + $field_icon = ''; |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af; |
|
| 95 | + $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ''; |
|
| 96 | + $html .= '</span>' . $html_val . '</div>'; |
|
| 97 | + endif; |
|
| 98 | + |
|
| 99 | + } |
|
| 100 | + |
|
| 101 | + return $html; |
|
| 102 | 102 | } |
| 103 | 103 | add_filter('geodir_custom_field_output_checkbox','geodir_cf_checkbox',10,3); |
| 104 | 104 | |
@@ -115,71 +115,71 @@ discard block |
||
| 115 | 115 | */ |
| 116 | 116 | function geodir_cf_fieldset($html,$location,$cf,$p=''){ |
| 117 | 117 | |
| 118 | - // check we have the post value |
|
| 119 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 120 | - else{ global $post;} |
|
| 121 | - |
|
| 122 | - if(!is_array($cf) && $cf!=''){ |
|
| 123 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 124 | - if(!$cf){return NULL;} |
|
| 125 | - } |
|
| 126 | - |
|
| 127 | - $html_var = $cf['htmlvar_name']; |
|
| 128 | - |
|
| 129 | - // Check if there is a location specific filter. |
|
| 130 | - if(has_filter("geodir_custom_field_output_fieldset_loc_{$location}")){ |
|
| 131 | - /** |
|
| 132 | - * Filter the fieldset html by location. |
|
| 133 | - * |
|
| 134 | - * @param string $html The html to filter. |
|
| 135 | - * @param array $cf The custom field array. |
|
| 136 | - * @since 1.6.6 |
|
| 137 | - */ |
|
| 138 | - $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}",$html,$cf); |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - // Check if there is a custom field specific filter. |
|
| 142 | - if(has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")){ |
|
| 143 | - /** |
|
| 144 | - * Filter the fieldset html by individual custom field. |
|
| 145 | - * |
|
| 146 | - * @param string $html The html to filter. |
|
| 147 | - * @param string $location The location to output the html. |
|
| 148 | - * @param array $cf The custom field array. |
|
| 149 | - * @since 1.6.6 |
|
| 150 | - */ |
|
| 151 | - $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}",$html,$location,$cf); |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - // Check if there is a custom field key specific filter. |
|
| 155 | - if(has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")){ |
|
| 156 | - /** |
|
| 157 | - * Filter the fieldset html by field type key. |
|
| 158 | - * |
|
| 159 | - * @param string $html The html to filter. |
|
| 160 | - * @param string $location The location to output the html. |
|
| 161 | - * @param array $cf The custom field array. |
|
| 162 | - * @since 1.6.6 |
|
| 163 | - */ |
|
| 164 | - $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - // If not html then we run the standard output. |
|
| 168 | - if(empty($html)){ |
|
| 169 | - |
|
| 170 | - global $field_set_start; |
|
| 171 | - $fieldset_class = 'fieldset-'.sanitize_title_with_dashes($cf['site_title']); |
|
| 172 | - |
|
| 173 | - if ($field_set_start == 1) { |
|
| 174 | - $html = ''; |
|
| 175 | - } else { |
|
| 176 | - $html = '<h2 class="'.$fieldset_class.'">'. __($cf['site_title'], 'geodirectory') . '</h2>'; |
|
| 177 | - //$field_set_start = 1; |
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - return $html; |
|
| 118 | + // check we have the post value |
|
| 119 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 120 | + else{ global $post;} |
|
| 121 | + |
|
| 122 | + if(!is_array($cf) && $cf!=''){ |
|
| 123 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 124 | + if(!$cf){return NULL;} |
|
| 125 | + } |
|
| 126 | + |
|
| 127 | + $html_var = $cf['htmlvar_name']; |
|
| 128 | + |
|
| 129 | + // Check if there is a location specific filter. |
|
| 130 | + if(has_filter("geodir_custom_field_output_fieldset_loc_{$location}")){ |
|
| 131 | + /** |
|
| 132 | + * Filter the fieldset html by location. |
|
| 133 | + * |
|
| 134 | + * @param string $html The html to filter. |
|
| 135 | + * @param array $cf The custom field array. |
|
| 136 | + * @since 1.6.6 |
|
| 137 | + */ |
|
| 138 | + $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}",$html,$cf); |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + // Check if there is a custom field specific filter. |
|
| 142 | + if(has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")){ |
|
| 143 | + /** |
|
| 144 | + * Filter the fieldset html by individual custom field. |
|
| 145 | + * |
|
| 146 | + * @param string $html The html to filter. |
|
| 147 | + * @param string $location The location to output the html. |
|
| 148 | + * @param array $cf The custom field array. |
|
| 149 | + * @since 1.6.6 |
|
| 150 | + */ |
|
| 151 | + $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}",$html,$location,$cf); |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + // Check if there is a custom field key specific filter. |
|
| 155 | + if(has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")){ |
|
| 156 | + /** |
|
| 157 | + * Filter the fieldset html by field type key. |
|
| 158 | + * |
|
| 159 | + * @param string $html The html to filter. |
|
| 160 | + * @param string $location The location to output the html. |
|
| 161 | + * @param array $cf The custom field array. |
|
| 162 | + * @since 1.6.6 |
|
| 163 | + */ |
|
| 164 | + $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + // If not html then we run the standard output. |
|
| 168 | + if(empty($html)){ |
|
| 169 | + |
|
| 170 | + global $field_set_start; |
|
| 171 | + $fieldset_class = 'fieldset-'.sanitize_title_with_dashes($cf['site_title']); |
|
| 172 | + |
|
| 173 | + if ($field_set_start == 1) { |
|
| 174 | + $html = ''; |
|
| 175 | + } else { |
|
| 176 | + $html = '<h2 class="'.$fieldset_class.'">'. __($cf['site_title'], 'geodirectory') . '</h2>'; |
|
| 177 | + //$field_set_start = 1; |
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + return $html; |
|
| 183 | 183 | } |
| 184 | 184 | add_filter('geodir_custom_field_output_fieldset','geodir_cf_fieldset',10,3); |
| 185 | 185 | |
@@ -196,106 +196,106 @@ discard block |
||
| 196 | 196 | */ |
| 197 | 197 | function geodir_cf_url($html,$location,$cf,$p=''){ |
| 198 | 198 | |
| 199 | - // check we have the post value |
|
| 200 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 201 | - else{ global $post;} |
|
| 202 | - |
|
| 203 | - if(!is_array($cf) && $cf!=''){ |
|
| 204 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 205 | - if(!$cf){return NULL;} |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - $html_var = $cf['htmlvar_name']; |
|
| 209 | - |
|
| 210 | - // Check if there is a location specific filter. |
|
| 211 | - if(has_filter("geodir_custom_field_output_url_loc_{$location}")){ |
|
| 212 | - /** |
|
| 213 | - * Filter the url html by location. |
|
| 214 | - * |
|
| 215 | - * @param string $html The html to filter. |
|
| 216 | - * @param array $cf The custom field array. |
|
| 217 | - * @since 1.6.6 |
|
| 218 | - */ |
|
| 219 | - $html = apply_filters("geodir_custom_field_output_url_loc_{$location}",$html,$cf); |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - // Check if there is a custom field specific filter. |
|
| 223 | - if(has_filter("geodir_custom_field_output_url_var_{$html_var}")){ |
|
| 224 | - /** |
|
| 225 | - * Filter the url html by individual custom field. |
|
| 226 | - * |
|
| 227 | - * @param string $html The html to filter. |
|
| 228 | - * @param string $location The location to output the html. |
|
| 229 | - * @param array $cf The custom field array. |
|
| 230 | - * @since 1.6.6 |
|
| 231 | - */ |
|
| 232 | - $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}",$html,$location,$cf); |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - // Check if there is a custom field key specific filter. |
|
| 236 | - if(has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")){ |
|
| 237 | - /** |
|
| 238 | - * Filter the url html by field type key. |
|
| 239 | - * |
|
| 240 | - * @param string $html The html to filter. |
|
| 241 | - * @param string $location The location to output the html. |
|
| 242 | - * @param array $cf The custom field array. |
|
| 243 | - * @since 1.6.6 |
|
| 244 | - */ |
|
| 245 | - $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - // If not html then we run the standard output. |
|
| 249 | - if(empty($html)){ |
|
| 250 | - |
|
| 251 | - if ($post->{$cf['htmlvar_name']}): |
|
| 252 | - |
|
| 253 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 254 | - if (strpos($field_icon, 'http') !== false) { |
|
| 255 | - $field_icon_af = ''; |
|
| 256 | - } elseif ($field_icon == '') { |
|
| 257 | - |
|
| 258 | - if ($cf['name'] == 'geodir_facebook') { |
|
| 259 | - $field_icon_af = '<i class="fa fa-facebook-square"></i>'; |
|
| 260 | - } elseif ($cf['name'] == 'geodir_twitter') { |
|
| 261 | - $field_icon_af = '<i class="fa fa-twitter-square"></i>'; |
|
| 262 | - } else { |
|
| 263 | - $field_icon_af = '<i class="fa fa-link"></i>'; |
|
| 264 | - } |
|
| 265 | - |
|
| 266 | - } else { |
|
| 267 | - $field_icon_af = $field_icon; |
|
| 268 | - $field_icon = ''; |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - $a_url = geodir_parse_custom_field_url($post->{$cf['htmlvar_name']}); |
|
| 272 | - |
|
| 273 | - |
|
| 274 | - $website = !empty($a_url['url']) ? $a_url['url'] : ''; |
|
| 275 | - $title = !empty($a_url['label']) ? $a_url['label'] : $cf['site_title']; |
|
| 276 | - if(!empty($cf['default_value'])){$title = $cf['default_value'];} |
|
| 277 | - $title = $title != '' ? __(stripslashes($title), 'geodirectory') : ''; |
|
| 278 | - |
|
| 279 | - |
|
| 280 | - |
|
| 281 | - // all search engines that use the nofollow value exclude links that use it from their ranking calculation |
|
| 282 | - $rel = strpos($website, get_site_url()) !== false ? '' : 'rel="nofollow"'; |
|
| 283 | - /** |
|
| 284 | - * Filter custom field website name. |
|
| 285 | - * |
|
| 286 | - * @since 1.0.0 |
|
| 287 | - * |
|
| 288 | - * @param string $title Website Title. |
|
| 289 | - * @param string $website Website URL. |
|
| 290 | - * @param int $post->ID Post ID. |
|
| 291 | - */ |
|
| 292 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . '<a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' . apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>'; |
|
| 293 | - |
|
| 294 | - endif; |
|
| 295 | - |
|
| 296 | - } |
|
| 297 | - |
|
| 298 | - return $html; |
|
| 199 | + // check we have the post value |
|
| 200 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 201 | + else{ global $post;} |
|
| 202 | + |
|
| 203 | + if(!is_array($cf) && $cf!=''){ |
|
| 204 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 205 | + if(!$cf){return NULL;} |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + $html_var = $cf['htmlvar_name']; |
|
| 209 | + |
|
| 210 | + // Check if there is a location specific filter. |
|
| 211 | + if(has_filter("geodir_custom_field_output_url_loc_{$location}")){ |
|
| 212 | + /** |
|
| 213 | + * Filter the url html by location. |
|
| 214 | + * |
|
| 215 | + * @param string $html The html to filter. |
|
| 216 | + * @param array $cf The custom field array. |
|
| 217 | + * @since 1.6.6 |
|
| 218 | + */ |
|
| 219 | + $html = apply_filters("geodir_custom_field_output_url_loc_{$location}",$html,$cf); |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + // Check if there is a custom field specific filter. |
|
| 223 | + if(has_filter("geodir_custom_field_output_url_var_{$html_var}")){ |
|
| 224 | + /** |
|
| 225 | + * Filter the url html by individual custom field. |
|
| 226 | + * |
|
| 227 | + * @param string $html The html to filter. |
|
| 228 | + * @param string $location The location to output the html. |
|
| 229 | + * @param array $cf The custom field array. |
|
| 230 | + * @since 1.6.6 |
|
| 231 | + */ |
|
| 232 | + $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}",$html,$location,$cf); |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + // Check if there is a custom field key specific filter. |
|
| 236 | + if(has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")){ |
|
| 237 | + /** |
|
| 238 | + * Filter the url html by field type key. |
|
| 239 | + * |
|
| 240 | + * @param string $html The html to filter. |
|
| 241 | + * @param string $location The location to output the html. |
|
| 242 | + * @param array $cf The custom field array. |
|
| 243 | + * @since 1.6.6 |
|
| 244 | + */ |
|
| 245 | + $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + // If not html then we run the standard output. |
|
| 249 | + if(empty($html)){ |
|
| 250 | + |
|
| 251 | + if ($post->{$cf['htmlvar_name']}): |
|
| 252 | + |
|
| 253 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 254 | + if (strpos($field_icon, 'http') !== false) { |
|
| 255 | + $field_icon_af = ''; |
|
| 256 | + } elseif ($field_icon == '') { |
|
| 257 | + |
|
| 258 | + if ($cf['name'] == 'geodir_facebook') { |
|
| 259 | + $field_icon_af = '<i class="fa fa-facebook-square"></i>'; |
|
| 260 | + } elseif ($cf['name'] == 'geodir_twitter') { |
|
| 261 | + $field_icon_af = '<i class="fa fa-twitter-square"></i>'; |
|
| 262 | + } else { |
|
| 263 | + $field_icon_af = '<i class="fa fa-link"></i>'; |
|
| 264 | + } |
|
| 265 | + |
|
| 266 | + } else { |
|
| 267 | + $field_icon_af = $field_icon; |
|
| 268 | + $field_icon = ''; |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + $a_url = geodir_parse_custom_field_url($post->{$cf['htmlvar_name']}); |
|
| 272 | + |
|
| 273 | + |
|
| 274 | + $website = !empty($a_url['url']) ? $a_url['url'] : ''; |
|
| 275 | + $title = !empty($a_url['label']) ? $a_url['label'] : $cf['site_title']; |
|
| 276 | + if(!empty($cf['default_value'])){$title = $cf['default_value'];} |
|
| 277 | + $title = $title != '' ? __(stripslashes($title), 'geodirectory') : ''; |
|
| 278 | + |
|
| 279 | + |
|
| 280 | + |
|
| 281 | + // all search engines that use the nofollow value exclude links that use it from their ranking calculation |
|
| 282 | + $rel = strpos($website, get_site_url()) !== false ? '' : 'rel="nofollow"'; |
|
| 283 | + /** |
|
| 284 | + * Filter custom field website name. |
|
| 285 | + * |
|
| 286 | + * @since 1.0.0 |
|
| 287 | + * |
|
| 288 | + * @param string $title Website Title. |
|
| 289 | + * @param string $website Website URL. |
|
| 290 | + * @param int $post->ID Post ID. |
|
| 291 | + */ |
|
| 292 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . '<a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' . apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>'; |
|
| 293 | + |
|
| 294 | + endif; |
|
| 295 | + |
|
| 296 | + } |
|
| 297 | + |
|
| 298 | + return $html; |
|
| 299 | 299 | } |
| 300 | 300 | add_filter('geodir_custom_field_output_url','geodir_cf_url',10,3); |
| 301 | 301 | |
@@ -312,80 +312,80 @@ discard block |
||
| 312 | 312 | */ |
| 313 | 313 | function geodir_cf_phone($html,$location,$cf,$p=''){ |
| 314 | 314 | |
| 315 | - // check we have the post value |
|
| 316 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 317 | - else{ global $post;} |
|
| 318 | - |
|
| 319 | - if(!is_array($cf) && $cf!=''){ |
|
| 320 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 321 | - if(!$cf){return NULL;} |
|
| 322 | - } |
|
| 323 | - |
|
| 324 | - $html_var = $cf['htmlvar_name']; |
|
| 325 | - |
|
| 326 | - // Check if there is a location specific filter. |
|
| 327 | - if(has_filter("geodir_custom_field_output_phone_loc_{$location}")){ |
|
| 328 | - /** |
|
| 329 | - * Filter the phone html by location. |
|
| 330 | - * |
|
| 331 | - * @param string $html The html to filter. |
|
| 332 | - * @param array $cf The custom field array. |
|
| 333 | - * @since 1.6.6 |
|
| 334 | - */ |
|
| 335 | - $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}",$html,$cf); |
|
| 336 | - } |
|
| 337 | - |
|
| 338 | - // Check if there is a custom field specific filter. |
|
| 339 | - if(has_filter("geodir_custom_field_output_phone_var_{$html_var}")){ |
|
| 340 | - /** |
|
| 341 | - * Filter the phone html by individual custom field. |
|
| 342 | - * |
|
| 343 | - * @param string $html The html to filter. |
|
| 344 | - * @param string $location The location to output the html. |
|
| 345 | - * @param array $cf The custom field array. |
|
| 346 | - * @since 1.6.6 |
|
| 347 | - */ |
|
| 348 | - $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}",$html,$location,$cf); |
|
| 349 | - } |
|
| 350 | - |
|
| 351 | - // Check if there is a custom field key specific filter. |
|
| 352 | - if(has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")){ |
|
| 353 | - /** |
|
| 354 | - * Filter the phone html by field type key. |
|
| 355 | - * |
|
| 356 | - * @param string $html The html to filter. |
|
| 357 | - * @param string $location The location to output the html. |
|
| 358 | - * @param array $cf The custom field array. |
|
| 359 | - * @since 1.6.6 |
|
| 360 | - */ |
|
| 361 | - $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 362 | - } |
|
| 363 | - |
|
| 364 | - // If not html then we run the standard output. |
|
| 365 | - if(empty($html)){ |
|
| 366 | - |
|
| 367 | - if ($post->{$cf['htmlvar_name']}): |
|
| 368 | - |
|
| 369 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 370 | - if (strpos($field_icon, 'http') !== false) { |
|
| 371 | - $field_icon_af = ''; |
|
| 372 | - } elseif ($field_icon == '') { |
|
| 373 | - $field_icon_af = '<i class="fa fa-phone"></i>'; |
|
| 374 | - } else { |
|
| 375 | - $field_icon_af = $field_icon; |
|
| 376 | - $field_icon = ''; |
|
| 377 | - } |
|
| 378 | - |
|
| 379 | - |
|
| 380 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af . |
|
| 381 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ' '; |
|
| 382 | - $html .= '</span><a href="tel:' . preg_replace('/[^0-9+]/', '', $post->{$cf['htmlvar_name']}) . '">' . $post->{$cf['htmlvar_name']} . '</a></div>'; |
|
| 383 | - |
|
| 384 | - endif; |
|
| 385 | - |
|
| 386 | - } |
|
| 387 | - |
|
| 388 | - return $html; |
|
| 315 | + // check we have the post value |
|
| 316 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 317 | + else{ global $post;} |
|
| 318 | + |
|
| 319 | + if(!is_array($cf) && $cf!=''){ |
|
| 320 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 321 | + if(!$cf){return NULL;} |
|
| 322 | + } |
|
| 323 | + |
|
| 324 | + $html_var = $cf['htmlvar_name']; |
|
| 325 | + |
|
| 326 | + // Check if there is a location specific filter. |
|
| 327 | + if(has_filter("geodir_custom_field_output_phone_loc_{$location}")){ |
|
| 328 | + /** |
|
| 329 | + * Filter the phone html by location. |
|
| 330 | + * |
|
| 331 | + * @param string $html The html to filter. |
|
| 332 | + * @param array $cf The custom field array. |
|
| 333 | + * @since 1.6.6 |
|
| 334 | + */ |
|
| 335 | + $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}",$html,$cf); |
|
| 336 | + } |
|
| 337 | + |
|
| 338 | + // Check if there is a custom field specific filter. |
|
| 339 | + if(has_filter("geodir_custom_field_output_phone_var_{$html_var}")){ |
|
| 340 | + /** |
|
| 341 | + * Filter the phone html by individual custom field. |
|
| 342 | + * |
|
| 343 | + * @param string $html The html to filter. |
|
| 344 | + * @param string $location The location to output the html. |
|
| 345 | + * @param array $cf The custom field array. |
|
| 346 | + * @since 1.6.6 |
|
| 347 | + */ |
|
| 348 | + $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}",$html,$location,$cf); |
|
| 349 | + } |
|
| 350 | + |
|
| 351 | + // Check if there is a custom field key specific filter. |
|
| 352 | + if(has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")){ |
|
| 353 | + /** |
|
| 354 | + * Filter the phone html by field type key. |
|
| 355 | + * |
|
| 356 | + * @param string $html The html to filter. |
|
| 357 | + * @param string $location The location to output the html. |
|
| 358 | + * @param array $cf The custom field array. |
|
| 359 | + * @since 1.6.6 |
|
| 360 | + */ |
|
| 361 | + $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 362 | + } |
|
| 363 | + |
|
| 364 | + // If not html then we run the standard output. |
|
| 365 | + if(empty($html)){ |
|
| 366 | + |
|
| 367 | + if ($post->{$cf['htmlvar_name']}): |
|
| 368 | + |
|
| 369 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 370 | + if (strpos($field_icon, 'http') !== false) { |
|
| 371 | + $field_icon_af = ''; |
|
| 372 | + } elseif ($field_icon == '') { |
|
| 373 | + $field_icon_af = '<i class="fa fa-phone"></i>'; |
|
| 374 | + } else { |
|
| 375 | + $field_icon_af = $field_icon; |
|
| 376 | + $field_icon = ''; |
|
| 377 | + } |
|
| 378 | + |
|
| 379 | + |
|
| 380 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af . |
|
| 381 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ' '; |
|
| 382 | + $html .= '</span><a href="tel:' . preg_replace('/[^0-9+]/', '', $post->{$cf['htmlvar_name']}) . '">' . $post->{$cf['htmlvar_name']} . '</a></div>'; |
|
| 383 | + |
|
| 384 | + endif; |
|
| 385 | + |
|
| 386 | + } |
|
| 387 | + |
|
| 388 | + return $html; |
|
| 389 | 389 | } |
| 390 | 390 | add_filter('geodir_custom_field_output_phone','geodir_cf_phone',10,3); |
| 391 | 391 | |
@@ -402,85 +402,85 @@ discard block |
||
| 402 | 402 | */ |
| 403 | 403 | function geodir_cf_time($html,$location,$cf,$p=''){ |
| 404 | 404 | |
| 405 | - // check we have the post value |
|
| 406 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 407 | - else{ global $post;} |
|
| 408 | - |
|
| 409 | - if(!is_array($cf) && $cf!=''){ |
|
| 410 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 411 | - if(!$cf){return NULL;} |
|
| 412 | - } |
|
| 413 | - |
|
| 414 | - $html_var = $cf['htmlvar_name']; |
|
| 415 | - |
|
| 416 | - // Check if there is a location specific filter. |
|
| 417 | - if(has_filter("geodir_custom_field_output_time_loc_{$location}")){ |
|
| 418 | - /** |
|
| 419 | - * Filter the time html by location. |
|
| 420 | - * |
|
| 421 | - * @param string $html The html to filter. |
|
| 422 | - * @param array $cf The custom field array. |
|
| 423 | - * @since 1.6.6 |
|
| 424 | - */ |
|
| 425 | - $html = apply_filters("geodir_custom_field_output_time_loc_{$location}",$html,$cf); |
|
| 426 | - } |
|
| 427 | - |
|
| 428 | - // Check if there is a custom field specific filter. |
|
| 429 | - if(has_filter("geodir_custom_field_output_time_var_{$html_var}")){ |
|
| 430 | - /** |
|
| 431 | - * Filter the time html by individual custom field. |
|
| 432 | - * |
|
| 433 | - * @param string $html The html to filter. |
|
| 434 | - * @param string $location The location to output the html. |
|
| 435 | - * @param array $cf The custom field array. |
|
| 436 | - * @since 1.6.6 |
|
| 437 | - */ |
|
| 438 | - $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}",$html,$location,$cf); |
|
| 439 | - } |
|
| 440 | - |
|
| 441 | - // Check if there is a custom field key specific filter. |
|
| 442 | - if(has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")){ |
|
| 443 | - /** |
|
| 444 | - * Filter the time html by field type key. |
|
| 445 | - * |
|
| 446 | - * @param string $html The html to filter. |
|
| 447 | - * @param string $location The location to output the html. |
|
| 448 | - * @param array $cf The custom field array. |
|
| 449 | - * @since 1.6.6 |
|
| 450 | - */ |
|
| 451 | - $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 452 | - } |
|
| 453 | - |
|
| 454 | - // If not html then we run the standard output. |
|
| 455 | - if(empty($html)){ |
|
| 456 | - |
|
| 457 | - if ($post->{$cf['htmlvar_name']}): |
|
| 458 | - |
|
| 459 | - $value = ''; |
|
| 460 | - if ($post->{$cf['htmlvar_name']} != '') |
|
| 461 | - //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']})); |
|
| 462 | - $value = date(get_option('time_format'), strtotime($post->{$cf['htmlvar_name']})); |
|
| 463 | - |
|
| 464 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 465 | - if (strpos($field_icon, 'http') !== false) { |
|
| 466 | - $field_icon_af = ''; |
|
| 467 | - } elseif ($field_icon == '') { |
|
| 468 | - $field_icon_af = '<i class="fa fa-clock-o"></i>'; |
|
| 469 | - } else { |
|
| 470 | - $field_icon_af = $field_icon; |
|
| 471 | - $field_icon = ''; |
|
| 472 | - } |
|
| 473 | - |
|
| 474 | - |
|
| 475 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af; |
|
| 476 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ' '; |
|
| 477 | - $html .= '</span>' . $value . '</div>'; |
|
| 478 | - |
|
| 479 | - endif; |
|
| 480 | - |
|
| 481 | - } |
|
| 482 | - |
|
| 483 | - return $html; |
|
| 405 | + // check we have the post value |
|
| 406 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 407 | + else{ global $post;} |
|
| 408 | + |
|
| 409 | + if(!is_array($cf) && $cf!=''){ |
|
| 410 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 411 | + if(!$cf){return NULL;} |
|
| 412 | + } |
|
| 413 | + |
|
| 414 | + $html_var = $cf['htmlvar_name']; |
|
| 415 | + |
|
| 416 | + // Check if there is a location specific filter. |
|
| 417 | + if(has_filter("geodir_custom_field_output_time_loc_{$location}")){ |
|
| 418 | + /** |
|
| 419 | + * Filter the time html by location. |
|
| 420 | + * |
|
| 421 | + * @param string $html The html to filter. |
|
| 422 | + * @param array $cf The custom field array. |
|
| 423 | + * @since 1.6.6 |
|
| 424 | + */ |
|
| 425 | + $html = apply_filters("geodir_custom_field_output_time_loc_{$location}",$html,$cf); |
|
| 426 | + } |
|
| 427 | + |
|
| 428 | + // Check if there is a custom field specific filter. |
|
| 429 | + if(has_filter("geodir_custom_field_output_time_var_{$html_var}")){ |
|
| 430 | + /** |
|
| 431 | + * Filter the time html by individual custom field. |
|
| 432 | + * |
|
| 433 | + * @param string $html The html to filter. |
|
| 434 | + * @param string $location The location to output the html. |
|
| 435 | + * @param array $cf The custom field array. |
|
| 436 | + * @since 1.6.6 |
|
| 437 | + */ |
|
| 438 | + $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}",$html,$location,$cf); |
|
| 439 | + } |
|
| 440 | + |
|
| 441 | + // Check if there is a custom field key specific filter. |
|
| 442 | + if(has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")){ |
|
| 443 | + /** |
|
| 444 | + * Filter the time html by field type key. |
|
| 445 | + * |
|
| 446 | + * @param string $html The html to filter. |
|
| 447 | + * @param string $location The location to output the html. |
|
| 448 | + * @param array $cf The custom field array. |
|
| 449 | + * @since 1.6.6 |
|
| 450 | + */ |
|
| 451 | + $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 452 | + } |
|
| 453 | + |
|
| 454 | + // If not html then we run the standard output. |
|
| 455 | + if(empty($html)){ |
|
| 456 | + |
|
| 457 | + if ($post->{$cf['htmlvar_name']}): |
|
| 458 | + |
|
| 459 | + $value = ''; |
|
| 460 | + if ($post->{$cf['htmlvar_name']} != '') |
|
| 461 | + //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']})); |
|
| 462 | + $value = date(get_option('time_format'), strtotime($post->{$cf['htmlvar_name']})); |
|
| 463 | + |
|
| 464 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 465 | + if (strpos($field_icon, 'http') !== false) { |
|
| 466 | + $field_icon_af = ''; |
|
| 467 | + } elseif ($field_icon == '') { |
|
| 468 | + $field_icon_af = '<i class="fa fa-clock-o"></i>'; |
|
| 469 | + } else { |
|
| 470 | + $field_icon_af = $field_icon; |
|
| 471 | + $field_icon = ''; |
|
| 472 | + } |
|
| 473 | + |
|
| 474 | + |
|
| 475 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af; |
|
| 476 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ' '; |
|
| 477 | + $html .= '</span>' . $value . '</div>'; |
|
| 478 | + |
|
| 479 | + endif; |
|
| 480 | + |
|
| 481 | + } |
|
| 482 | + |
|
| 483 | + return $html; |
|
| 484 | 484 | } |
| 485 | 485 | add_filter('geodir_custom_field_output_time','geodir_cf_time',10,3); |
| 486 | 486 | |
@@ -496,111 +496,111 @@ discard block |
||
| 496 | 496 | * @return string The html to output for the custom field. |
| 497 | 497 | */ |
| 498 | 498 | function geodir_cf_datepicker($html,$location,$cf,$p=''){ |
| 499 | - global $preview; |
|
| 500 | - // check we have the post value |
|
| 501 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 502 | - else{ global $post;} |
|
| 503 | - |
|
| 504 | - if(!is_array($cf) && $cf!=''){ |
|
| 505 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 506 | - if(!$cf){return NULL;} |
|
| 507 | - } |
|
| 508 | - |
|
| 509 | - $html_var = $cf['htmlvar_name']; |
|
| 510 | - |
|
| 511 | - // Check if there is a location specific filter. |
|
| 512 | - if(has_filter("geodir_custom_field_output_datepicker_loc_{$location}")){ |
|
| 513 | - /** |
|
| 514 | - * Filter the datepicker html by location. |
|
| 515 | - * |
|
| 516 | - * @param string $html The html to filter. |
|
| 517 | - * @param array $cf The custom field array. |
|
| 518 | - * @since 1.6.6 |
|
| 519 | - */ |
|
| 520 | - $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}",$html,$cf); |
|
| 521 | - } |
|
| 522 | - |
|
| 523 | - // Check if there is a custom field specific filter. |
|
| 524 | - if(has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")){ |
|
| 525 | - /** |
|
| 526 | - * Filter the datepicker html by individual custom field. |
|
| 527 | - * |
|
| 528 | - * @param string $html The html to filter. |
|
| 529 | - * @param string $location The location to output the html. |
|
| 530 | - * @param array $cf The custom field array. |
|
| 531 | - * @since 1.6.6 |
|
| 532 | - */ |
|
| 533 | - $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}",$html,$location,$cf); |
|
| 534 | - } |
|
| 535 | - |
|
| 536 | - // Check if there is a custom field key specific filter. |
|
| 537 | - if(has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")){ |
|
| 538 | - /** |
|
| 539 | - * Filter the datepicker html by field type key. |
|
| 540 | - * |
|
| 541 | - * @param string $html The html to filter. |
|
| 542 | - * @param string $location The location to output the html. |
|
| 543 | - * @param array $cf The custom field array. |
|
| 544 | - * @since 1.6.6 |
|
| 545 | - */ |
|
| 546 | - $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 547 | - } |
|
| 548 | - |
|
| 549 | - // If not html then we run the standard output. |
|
| 550 | - if(empty($html)){ |
|
| 551 | - |
|
| 552 | - if ($post->{$cf['htmlvar_name']}): |
|
| 553 | - |
|
| 554 | - $date_format = geodir_default_date_format(); |
|
| 555 | - if ($cf['extra_fields'] != '') { |
|
| 556 | - $date_format = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 557 | - $date_format = $date_format['date_format']; |
|
| 558 | - } |
|
| 559 | - // check if we need to change the format or not |
|
| 560 | - $date_format_len = strlen(str_replace(' ', '', $date_format)); |
|
| 561 | - if($date_format_len>5){// if greater then 4 then it's the old style format. |
|
| 562 | - |
|
| 563 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
| 564 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
| 565 | - |
|
| 566 | - $date_format = str_replace($search, $replace, $date_format); |
|
| 567 | - |
|
| 568 | - $post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y' ) ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format |
|
| 569 | - }else{ |
|
| 570 | - $post_htmlvar_value = $post->{$cf['htmlvar_name']}; |
|
| 571 | - } |
|
| 572 | - |
|
| 573 | - if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") { |
|
| 574 | - $date_format_from = $preview ? $date_format : 'Y-m-d'; |
|
| 575 | - $value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d |
|
| 576 | - //$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value; |
|
| 577 | - //$value = date_i18n($date_format, strtotime($post_htmlvar_value)); |
|
| 578 | - }else{ |
|
| 579 | - return ''; |
|
| 580 | - } |
|
| 581 | - |
|
| 582 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 583 | - |
|
| 584 | - if (strpos($field_icon, 'http') !== false) { |
|
| 585 | - $field_icon_af = ''; |
|
| 586 | - } elseif ($field_icon == '') { |
|
| 587 | - $field_icon_af = '<i class="fa fa-calendar"></i>'; |
|
| 588 | - } else { |
|
| 589 | - $field_icon_af = $field_icon; |
|
| 590 | - $field_icon = ''; |
|
| 591 | - } |
|
| 592 | - |
|
| 593 | - |
|
| 594 | - |
|
| 595 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af; |
|
| 596 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 597 | - $html .= '</span>' . $value . '</div>'; |
|
| 598 | - |
|
| 599 | - endif; |
|
| 600 | - |
|
| 601 | - } |
|
| 602 | - |
|
| 603 | - return $html; |
|
| 499 | + global $preview; |
|
| 500 | + // check we have the post value |
|
| 501 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 502 | + else{ global $post;} |
|
| 503 | + |
|
| 504 | + if(!is_array($cf) && $cf!=''){ |
|
| 505 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 506 | + if(!$cf){return NULL;} |
|
| 507 | + } |
|
| 508 | + |
|
| 509 | + $html_var = $cf['htmlvar_name']; |
|
| 510 | + |
|
| 511 | + // Check if there is a location specific filter. |
|
| 512 | + if(has_filter("geodir_custom_field_output_datepicker_loc_{$location}")){ |
|
| 513 | + /** |
|
| 514 | + * Filter the datepicker html by location. |
|
| 515 | + * |
|
| 516 | + * @param string $html The html to filter. |
|
| 517 | + * @param array $cf The custom field array. |
|
| 518 | + * @since 1.6.6 |
|
| 519 | + */ |
|
| 520 | + $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}",$html,$cf); |
|
| 521 | + } |
|
| 522 | + |
|
| 523 | + // Check if there is a custom field specific filter. |
|
| 524 | + if(has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")){ |
|
| 525 | + /** |
|
| 526 | + * Filter the datepicker html by individual custom field. |
|
| 527 | + * |
|
| 528 | + * @param string $html The html to filter. |
|
| 529 | + * @param string $location The location to output the html. |
|
| 530 | + * @param array $cf The custom field array. |
|
| 531 | + * @since 1.6.6 |
|
| 532 | + */ |
|
| 533 | + $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}",$html,$location,$cf); |
|
| 534 | + } |
|
| 535 | + |
|
| 536 | + // Check if there is a custom field key specific filter. |
|
| 537 | + if(has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")){ |
|
| 538 | + /** |
|
| 539 | + * Filter the datepicker html by field type key. |
|
| 540 | + * |
|
| 541 | + * @param string $html The html to filter. |
|
| 542 | + * @param string $location The location to output the html. |
|
| 543 | + * @param array $cf The custom field array. |
|
| 544 | + * @since 1.6.6 |
|
| 545 | + */ |
|
| 546 | + $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 547 | + } |
|
| 548 | + |
|
| 549 | + // If not html then we run the standard output. |
|
| 550 | + if(empty($html)){ |
|
| 551 | + |
|
| 552 | + if ($post->{$cf['htmlvar_name']}): |
|
| 553 | + |
|
| 554 | + $date_format = geodir_default_date_format(); |
|
| 555 | + if ($cf['extra_fields'] != '') { |
|
| 556 | + $date_format = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 557 | + $date_format = $date_format['date_format']; |
|
| 558 | + } |
|
| 559 | + // check if we need to change the format or not |
|
| 560 | + $date_format_len = strlen(str_replace(' ', '', $date_format)); |
|
| 561 | + if($date_format_len>5){// if greater then 4 then it's the old style format. |
|
| 562 | + |
|
| 563 | + $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
| 564 | + $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
| 565 | + |
|
| 566 | + $date_format = str_replace($search, $replace, $date_format); |
|
| 567 | + |
|
| 568 | + $post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y' ) ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format |
|
| 569 | + }else{ |
|
| 570 | + $post_htmlvar_value = $post->{$cf['htmlvar_name']}; |
|
| 571 | + } |
|
| 572 | + |
|
| 573 | + if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") { |
|
| 574 | + $date_format_from = $preview ? $date_format : 'Y-m-d'; |
|
| 575 | + $value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d |
|
| 576 | + //$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value; |
|
| 577 | + //$value = date_i18n($date_format, strtotime($post_htmlvar_value)); |
|
| 578 | + }else{ |
|
| 579 | + return ''; |
|
| 580 | + } |
|
| 581 | + |
|
| 582 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 583 | + |
|
| 584 | + if (strpos($field_icon, 'http') !== false) { |
|
| 585 | + $field_icon_af = ''; |
|
| 586 | + } elseif ($field_icon == '') { |
|
| 587 | + $field_icon_af = '<i class="fa fa-calendar"></i>'; |
|
| 588 | + } else { |
|
| 589 | + $field_icon_af = $field_icon; |
|
| 590 | + $field_icon = ''; |
|
| 591 | + } |
|
| 592 | + |
|
| 593 | + |
|
| 594 | + |
|
| 595 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af; |
|
| 596 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 597 | + $html .= '</span>' . $value . '</div>'; |
|
| 598 | + |
|
| 599 | + endif; |
|
| 600 | + |
|
| 601 | + } |
|
| 602 | + |
|
| 603 | + return $html; |
|
| 604 | 604 | } |
| 605 | 605 | add_filter('geodir_custom_field_output_datepicker','geodir_cf_datepicker',10,3); |
| 606 | 606 | |
@@ -617,97 +617,97 @@ discard block |
||
| 617 | 617 | */ |
| 618 | 618 | function geodir_cf_text($html,$location,$cf,$p=''){ |
| 619 | 619 | |
| 620 | - // check we have the post value |
|
| 621 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 622 | - else{ global $post;} |
|
| 623 | - |
|
| 624 | - if(!is_array($cf) && $cf!=''){ |
|
| 625 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 626 | - if(!$cf){return NULL;} |
|
| 627 | - } |
|
| 628 | - |
|
| 629 | - $html_var = $cf['htmlvar_name']; |
|
| 630 | - |
|
| 631 | - // Check if there is a location specific filter. |
|
| 632 | - if(has_filter("geodir_custom_field_output_text_loc_{$location}")){ |
|
| 633 | - /** |
|
| 634 | - * Filter the text html by location. |
|
| 635 | - * |
|
| 636 | - * @param string $html The html to filter. |
|
| 637 | - * @param array $cf The custom field array. |
|
| 638 | - * @since 1.6.6 |
|
| 639 | - */ |
|
| 640 | - $html = apply_filters("geodir_custom_field_output_text_loc_{$location}",$html,$cf); |
|
| 641 | - } |
|
| 642 | - |
|
| 643 | - // Check if there is a custom field specific filter. |
|
| 644 | - if(has_filter("geodir_custom_field_output_text_var_{$html_var}")){ |
|
| 645 | - /** |
|
| 646 | - * Filter the text html by individual custom field. |
|
| 647 | - * |
|
| 648 | - * @param string $html The html to filter. |
|
| 649 | - * @param string $location The location to output the html. |
|
| 650 | - * @param array $cf The custom field array. |
|
| 651 | - * @since 1.6.6 |
|
| 652 | - */ |
|
| 653 | - $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}",$html,$location,$cf); |
|
| 654 | - } |
|
| 655 | - |
|
| 656 | - // Check if there is a custom field key specific filter. |
|
| 657 | - if(has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")){ |
|
| 658 | - /** |
|
| 659 | - * Filter the text html by field type key. |
|
| 660 | - * |
|
| 661 | - * @param string $html The html to filter. |
|
| 662 | - * @param string $location The location to output the html. |
|
| 663 | - * @param array $cf The custom field array. |
|
| 664 | - * @since 1.6.6 |
|
| 665 | - */ |
|
| 666 | - $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 667 | - } |
|
| 620 | + // check we have the post value |
|
| 621 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 622 | + else{ global $post;} |
|
| 623 | + |
|
| 624 | + if(!is_array($cf) && $cf!=''){ |
|
| 625 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 626 | + if(!$cf){return NULL;} |
|
| 627 | + } |
|
| 628 | + |
|
| 629 | + $html_var = $cf['htmlvar_name']; |
|
| 630 | + |
|
| 631 | + // Check if there is a location specific filter. |
|
| 632 | + if(has_filter("geodir_custom_field_output_text_loc_{$location}")){ |
|
| 633 | + /** |
|
| 634 | + * Filter the text html by location. |
|
| 635 | + * |
|
| 636 | + * @param string $html The html to filter. |
|
| 637 | + * @param array $cf The custom field array. |
|
| 638 | + * @since 1.6.6 |
|
| 639 | + */ |
|
| 640 | + $html = apply_filters("geodir_custom_field_output_text_loc_{$location}",$html,$cf); |
|
| 641 | + } |
|
| 642 | + |
|
| 643 | + // Check if there is a custom field specific filter. |
|
| 644 | + if(has_filter("geodir_custom_field_output_text_var_{$html_var}")){ |
|
| 645 | + /** |
|
| 646 | + * Filter the text html by individual custom field. |
|
| 647 | + * |
|
| 648 | + * @param string $html The html to filter. |
|
| 649 | + * @param string $location The location to output the html. |
|
| 650 | + * @param array $cf The custom field array. |
|
| 651 | + * @since 1.6.6 |
|
| 652 | + */ |
|
| 653 | + $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}",$html,$location,$cf); |
|
| 654 | + } |
|
| 655 | + |
|
| 656 | + // Check if there is a custom field key specific filter. |
|
| 657 | + if(has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")){ |
|
| 658 | + /** |
|
| 659 | + * Filter the text html by field type key. |
|
| 660 | + * |
|
| 661 | + * @param string $html The html to filter. |
|
| 662 | + * @param string $location The location to output the html. |
|
| 663 | + * @param array $cf The custom field array. |
|
| 664 | + * @since 1.6.6 |
|
| 665 | + */ |
|
| 666 | + $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 667 | + } |
|
| 668 | 668 | |
| 669 | 669 | |
| 670 | 670 | |
| 671 | - // If not html then we run the standard output. |
|
| 672 | - if(empty($html)){ |
|
| 671 | + // If not html then we run the standard output. |
|
| 672 | + if(empty($html)){ |
|
| 673 | 673 | |
| 674 | - if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != '' ): |
|
| 674 | + if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != '' ): |
|
| 675 | 675 | |
| 676 | - $class = ($cf['htmlvar_name'] == 'geodir_timing') ? "geodir-i-time" : "geodir-i-text"; |
|
| 676 | + $class = ($cf['htmlvar_name'] == 'geodir_timing') ? "geodir-i-time" : "geodir-i-text"; |
|
| 677 | 677 | |
| 678 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 679 | - if (strpos($field_icon, 'http') !== false) { |
|
| 680 | - $field_icon_af = ''; |
|
| 681 | - } elseif ($field_icon == '') { |
|
| 682 | - $field_icon_af = ($cf['htmlvar_name'] == 'geodir_timing') ? '<i class="fa fa-clock-o"></i>' : ""; |
|
| 683 | - } else { |
|
| 684 | - $field_icon_af = $field_icon; |
|
| 685 | - $field_icon = ''; |
|
| 686 | - } |
|
| 678 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 679 | + if (strpos($field_icon, 'http') !== false) { |
|
| 680 | + $field_icon_af = ''; |
|
| 681 | + } elseif ($field_icon == '') { |
|
| 682 | + $field_icon_af = ($cf['htmlvar_name'] == 'geodir_timing') ? '<i class="fa fa-clock-o"></i>' : ""; |
|
| 683 | + } else { |
|
| 684 | + $field_icon_af = $field_icon; |
|
| 685 | + $field_icon = ''; |
|
| 686 | + } |
|
| 687 | 687 | |
| 688 | 688 | |
| 689 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="'.$class.'" style="' . $field_icon . '">' . $field_icon_af; |
|
| 690 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 691 | - $html .= '</span>'; |
|
| 689 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="'.$class.'" style="' . $field_icon . '">' . $field_icon_af; |
|
| 690 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 691 | + $html .= '</span>'; |
|
| 692 | 692 | |
| 693 | - $value = $post->{$cf['htmlvar_name']}; |
|
| 694 | - if(isset($cf['data_type']) && ($cf['data_type']=='INT' || $cf['data_type']=='FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']){ |
|
| 695 | - $extra_fields = stripslashes_deep(maybe_unserialize($cf['extra_fields'])); |
|
| 696 | - if(isset($extra_fields['is_price']) && $extra_fields['is_price']){ |
|
| 697 | - if(!ceil($value) > 0){return '';}// dont output blank prices |
|
| 698 | - $value = geodir_currency_format_number($value,$cf); |
|
| 699 | - } |
|
| 700 | - } |
|
| 693 | + $value = $post->{$cf['htmlvar_name']}; |
|
| 694 | + if(isset($cf['data_type']) && ($cf['data_type']=='INT' || $cf['data_type']=='FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']){ |
|
| 695 | + $extra_fields = stripslashes_deep(maybe_unserialize($cf['extra_fields'])); |
|
| 696 | + if(isset($extra_fields['is_price']) && $extra_fields['is_price']){ |
|
| 697 | + if(!ceil($value) > 0){return '';}// dont output blank prices |
|
| 698 | + $value = geodir_currency_format_number($value,$cf); |
|
| 699 | + } |
|
| 700 | + } |
|
| 701 | 701 | |
| 702 | 702 | |
| 703 | - $html .= $value; |
|
| 704 | - $html .= '</div>'; |
|
| 703 | + $html .= $value; |
|
| 704 | + $html .= '</div>'; |
|
| 705 | 705 | |
| 706 | - endif; |
|
| 706 | + endif; |
|
| 707 | 707 | |
| 708 | - } |
|
| 708 | + } |
|
| 709 | 709 | |
| 710 | - return $html; |
|
| 710 | + return $html; |
|
| 711 | 711 | } |
| 712 | 712 | add_filter('geodir_custom_field_output_text','geodir_cf_text',10,3); |
| 713 | 713 | |
@@ -724,98 +724,98 @@ discard block |
||
| 724 | 724 | */ |
| 725 | 725 | function geodir_cf_radio($html,$location,$cf,$p=''){ |
| 726 | 726 | |
| 727 | - // check we have the post value |
|
| 728 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 729 | - else{ global $post;} |
|
| 730 | - |
|
| 731 | - if(!is_array($cf) && $cf!=''){ |
|
| 732 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 733 | - if(!$cf){return NULL;} |
|
| 734 | - } |
|
| 735 | - |
|
| 736 | - $html_var = $cf['htmlvar_name']; |
|
| 737 | - |
|
| 738 | - // Check if there is a location specific filter. |
|
| 739 | - if(has_filter("geodir_custom_field_output_radio_loc_{$location}")){ |
|
| 740 | - /** |
|
| 741 | - * Filter the radio html by location. |
|
| 742 | - * |
|
| 743 | - * @param string $html The html to filter. |
|
| 744 | - * @param array $cf The custom field array. |
|
| 745 | - * @since 1.6.6 |
|
| 746 | - */ |
|
| 747 | - $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}",$html,$cf); |
|
| 748 | - } |
|
| 749 | - |
|
| 750 | - // Check if there is a custom field specific filter. |
|
| 751 | - if(has_filter("geodir_custom_field_output_radio_var_{$html_var}")){ |
|
| 752 | - /** |
|
| 753 | - * Filter the radio html by individual custom field. |
|
| 754 | - * |
|
| 755 | - * @param string $html The html to filter. |
|
| 756 | - * @param string $location The location to output the html. |
|
| 757 | - * @param array $cf The custom field array. |
|
| 758 | - * @since 1.6.6 |
|
| 759 | - */ |
|
| 760 | - $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}",$html,$location,$cf); |
|
| 761 | - } |
|
| 762 | - |
|
| 763 | - // Check if there is a custom field key specific filter. |
|
| 764 | - if(has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")){ |
|
| 765 | - /** |
|
| 766 | - * Filter the radio html by field type key. |
|
| 767 | - * |
|
| 768 | - * @param string $html The html to filter. |
|
| 769 | - * @param string $location The location to output the html. |
|
| 770 | - * @param array $cf The custom field array. |
|
| 771 | - * @since 1.6.6 |
|
| 772 | - */ |
|
| 773 | - $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 774 | - } |
|
| 775 | - |
|
| 776 | - // If not html then we run the standard output. |
|
| 777 | - if(empty($html)){ |
|
| 778 | - |
|
| 779 | - $html_val = isset($post->{$cf['htmlvar_name']}) ? __($post->{$cf['htmlvar_name']}, 'geodirectory') : ''; |
|
| 780 | - if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''): |
|
| 781 | - |
|
| 782 | - if ($post->{$cf['htmlvar_name']} == 'f' || $post->{$cf['htmlvar_name']} == '0') { |
|
| 783 | - $html_val = __('No', 'geodirectory'); |
|
| 784 | - } else if ($post->{$cf['htmlvar_name']} == 't' || $post->{$cf['htmlvar_name']} == '1') { |
|
| 785 | - $html_val = __('Yes', 'geodirectory'); |
|
| 786 | - } else { |
|
| 787 | - if (!empty($cf['option_values'])) { |
|
| 788 | - $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 789 | - |
|
| 790 | - if (!empty($cf_option_values)) { |
|
| 791 | - foreach ($cf_option_values as $cf_option_value) { |
|
| 792 | - if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 793 | - $html_val = $cf_option_value['label']; |
|
| 794 | - } |
|
| 795 | - } |
|
| 796 | - } |
|
| 797 | - } |
|
| 798 | - } |
|
| 799 | - |
|
| 800 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 801 | - if (strpos($field_icon, 'http') !== false) { |
|
| 802 | - $field_icon_af = ''; |
|
| 803 | - } elseif ($field_icon == '') { |
|
| 804 | - $field_icon_af = ''; |
|
| 805 | - } else { |
|
| 806 | - $field_icon_af = $field_icon; |
|
| 807 | - $field_icon = ''; |
|
| 808 | - } |
|
| 809 | - |
|
| 810 | - |
|
| 811 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af; |
|
| 812 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 813 | - $html .= '</span>' . $html_val . '</div>'; |
|
| 814 | - endif; |
|
| 815 | - |
|
| 816 | - } |
|
| 817 | - |
|
| 818 | - return $html; |
|
| 727 | + // check we have the post value |
|
| 728 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 729 | + else{ global $post;} |
|
| 730 | + |
|
| 731 | + if(!is_array($cf) && $cf!=''){ |
|
| 732 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 733 | + if(!$cf){return NULL;} |
|
| 734 | + } |
|
| 735 | + |
|
| 736 | + $html_var = $cf['htmlvar_name']; |
|
| 737 | + |
|
| 738 | + // Check if there is a location specific filter. |
|
| 739 | + if(has_filter("geodir_custom_field_output_radio_loc_{$location}")){ |
|
| 740 | + /** |
|
| 741 | + * Filter the radio html by location. |
|
| 742 | + * |
|
| 743 | + * @param string $html The html to filter. |
|
| 744 | + * @param array $cf The custom field array. |
|
| 745 | + * @since 1.6.6 |
|
| 746 | + */ |
|
| 747 | + $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}",$html,$cf); |
|
| 748 | + } |
|
| 749 | + |
|
| 750 | + // Check if there is a custom field specific filter. |
|
| 751 | + if(has_filter("geodir_custom_field_output_radio_var_{$html_var}")){ |
|
| 752 | + /** |
|
| 753 | + * Filter the radio html by individual custom field. |
|
| 754 | + * |
|
| 755 | + * @param string $html The html to filter. |
|
| 756 | + * @param string $location The location to output the html. |
|
| 757 | + * @param array $cf The custom field array. |
|
| 758 | + * @since 1.6.6 |
|
| 759 | + */ |
|
| 760 | + $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}",$html,$location,$cf); |
|
| 761 | + } |
|
| 762 | + |
|
| 763 | + // Check if there is a custom field key specific filter. |
|
| 764 | + if(has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")){ |
|
| 765 | + /** |
|
| 766 | + * Filter the radio html by field type key. |
|
| 767 | + * |
|
| 768 | + * @param string $html The html to filter. |
|
| 769 | + * @param string $location The location to output the html. |
|
| 770 | + * @param array $cf The custom field array. |
|
| 771 | + * @since 1.6.6 |
|
| 772 | + */ |
|
| 773 | + $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 774 | + } |
|
| 775 | + |
|
| 776 | + // If not html then we run the standard output. |
|
| 777 | + if(empty($html)){ |
|
| 778 | + |
|
| 779 | + $html_val = isset($post->{$cf['htmlvar_name']}) ? __($post->{$cf['htmlvar_name']}, 'geodirectory') : ''; |
|
| 780 | + if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''): |
|
| 781 | + |
|
| 782 | + if ($post->{$cf['htmlvar_name']} == 'f' || $post->{$cf['htmlvar_name']} == '0') { |
|
| 783 | + $html_val = __('No', 'geodirectory'); |
|
| 784 | + } else if ($post->{$cf['htmlvar_name']} == 't' || $post->{$cf['htmlvar_name']} == '1') { |
|
| 785 | + $html_val = __('Yes', 'geodirectory'); |
|
| 786 | + } else { |
|
| 787 | + if (!empty($cf['option_values'])) { |
|
| 788 | + $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 789 | + |
|
| 790 | + if (!empty($cf_option_values)) { |
|
| 791 | + foreach ($cf_option_values as $cf_option_value) { |
|
| 792 | + if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 793 | + $html_val = $cf_option_value['label']; |
|
| 794 | + } |
|
| 795 | + } |
|
| 796 | + } |
|
| 797 | + } |
|
| 798 | + } |
|
| 799 | + |
|
| 800 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 801 | + if (strpos($field_icon, 'http') !== false) { |
|
| 802 | + $field_icon_af = ''; |
|
| 803 | + } elseif ($field_icon == '') { |
|
| 804 | + $field_icon_af = ''; |
|
| 805 | + } else { |
|
| 806 | + $field_icon_af = $field_icon; |
|
| 807 | + $field_icon = ''; |
|
| 808 | + } |
|
| 809 | + |
|
| 810 | + |
|
| 811 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af; |
|
| 812 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 813 | + $html .= '</span>' . $html_val . '</div>'; |
|
| 814 | + endif; |
|
| 815 | + |
|
| 816 | + } |
|
| 817 | + |
|
| 818 | + return $html; |
|
| 819 | 819 | } |
| 820 | 820 | add_filter('geodir_custom_field_output_radio','geodir_cf_radio',10,3); |
| 821 | 821 | |
@@ -832,92 +832,92 @@ discard block |
||
| 832 | 832 | */ |
| 833 | 833 | function geodir_cf_select($html,$location,$cf,$p=''){ |
| 834 | 834 | |
| 835 | - // check we have the post value |
|
| 836 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 837 | - else{ global $post;} |
|
| 838 | - |
|
| 839 | - if(!is_array($cf) && $cf!=''){ |
|
| 840 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 841 | - if(!$cf){return NULL;} |
|
| 842 | - } |
|
| 843 | - |
|
| 844 | - $html_var = $cf['htmlvar_name']; |
|
| 845 | - |
|
| 846 | - // Check if there is a location specific filter. |
|
| 847 | - if(has_filter("geodir_custom_field_output_select_loc_{$location}")){ |
|
| 848 | - /** |
|
| 849 | - * Filter the select html by location. |
|
| 850 | - * |
|
| 851 | - * @param string $html The html to filter. |
|
| 852 | - * @param array $cf The custom field array. |
|
| 853 | - * @since 1.6.6 |
|
| 854 | - */ |
|
| 855 | - $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf); |
|
| 856 | - } |
|
| 857 | - |
|
| 858 | - // Check if there is a custom field specific filter. |
|
| 859 | - if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){ |
|
| 860 | - /** |
|
| 861 | - * Filter the select html by individual custom field. |
|
| 862 | - * |
|
| 863 | - * @param string $html The html to filter. |
|
| 864 | - * @param string $location The location to output the html. |
|
| 865 | - * @param array $cf The custom field array. |
|
| 866 | - * @since 1.6.6 |
|
| 867 | - */ |
|
| 868 | - $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf); |
|
| 869 | - } |
|
| 870 | - |
|
| 871 | - // Check if there is a custom field key specific filter. |
|
| 872 | - if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){ |
|
| 873 | - /** |
|
| 874 | - * Filter the select html by field type key. |
|
| 875 | - * |
|
| 876 | - * @param string $html The html to filter. |
|
| 877 | - * @param string $location The location to output the html. |
|
| 878 | - * @param array $cf The custom field array. |
|
| 879 | - * @since 1.6.6 |
|
| 880 | - */ |
|
| 881 | - $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 882 | - } |
|
| 883 | - |
|
| 884 | - // If not html then we run the standard output. |
|
| 885 | - if(empty($html)){ |
|
| 886 | - |
|
| 887 | - if ($post->{$cf['htmlvar_name']}): |
|
| 888 | - $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 889 | - |
|
| 890 | - if (!empty($cf['option_values'])) { |
|
| 891 | - $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 892 | - |
|
| 893 | - if (!empty($cf_option_values)) { |
|
| 894 | - foreach ($cf_option_values as $cf_option_value) { |
|
| 895 | - if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 896 | - //$field_value = $cf_option_value['label']; // no longer needed here. |
|
| 897 | - } |
|
| 898 | - } |
|
| 899 | - } |
|
| 900 | - } |
|
| 901 | - |
|
| 902 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 903 | - if (strpos($field_icon, 'http') !== false) { |
|
| 904 | - $field_icon_af = ''; |
|
| 905 | - } elseif ($field_icon == '') { |
|
| 906 | - $field_icon_af = ''; |
|
| 907 | - } else { |
|
| 908 | - $field_icon_af = $field_icon; |
|
| 909 | - $field_icon = ''; |
|
| 910 | - } |
|
| 911 | - |
|
| 912 | - |
|
| 913 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 914 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 915 | - $html .= '</span>' . $field_value . '</div>'; |
|
| 916 | - endif; |
|
| 917 | - |
|
| 918 | - } |
|
| 919 | - |
|
| 920 | - return $html; |
|
| 835 | + // check we have the post value |
|
| 836 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 837 | + else{ global $post;} |
|
| 838 | + |
|
| 839 | + if(!is_array($cf) && $cf!=''){ |
|
| 840 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 841 | + if(!$cf){return NULL;} |
|
| 842 | + } |
|
| 843 | + |
|
| 844 | + $html_var = $cf['htmlvar_name']; |
|
| 845 | + |
|
| 846 | + // Check if there is a location specific filter. |
|
| 847 | + if(has_filter("geodir_custom_field_output_select_loc_{$location}")){ |
|
| 848 | + /** |
|
| 849 | + * Filter the select html by location. |
|
| 850 | + * |
|
| 851 | + * @param string $html The html to filter. |
|
| 852 | + * @param array $cf The custom field array. |
|
| 853 | + * @since 1.6.6 |
|
| 854 | + */ |
|
| 855 | + $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf); |
|
| 856 | + } |
|
| 857 | + |
|
| 858 | + // Check if there is a custom field specific filter. |
|
| 859 | + if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){ |
|
| 860 | + /** |
|
| 861 | + * Filter the select html by individual custom field. |
|
| 862 | + * |
|
| 863 | + * @param string $html The html to filter. |
|
| 864 | + * @param string $location The location to output the html. |
|
| 865 | + * @param array $cf The custom field array. |
|
| 866 | + * @since 1.6.6 |
|
| 867 | + */ |
|
| 868 | + $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf); |
|
| 869 | + } |
|
| 870 | + |
|
| 871 | + // Check if there is a custom field key specific filter. |
|
| 872 | + if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){ |
|
| 873 | + /** |
|
| 874 | + * Filter the select html by field type key. |
|
| 875 | + * |
|
| 876 | + * @param string $html The html to filter. |
|
| 877 | + * @param string $location The location to output the html. |
|
| 878 | + * @param array $cf The custom field array. |
|
| 879 | + * @since 1.6.6 |
|
| 880 | + */ |
|
| 881 | + $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 882 | + } |
|
| 883 | + |
|
| 884 | + // If not html then we run the standard output. |
|
| 885 | + if(empty($html)){ |
|
| 886 | + |
|
| 887 | + if ($post->{$cf['htmlvar_name']}): |
|
| 888 | + $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 889 | + |
|
| 890 | + if (!empty($cf['option_values'])) { |
|
| 891 | + $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 892 | + |
|
| 893 | + if (!empty($cf_option_values)) { |
|
| 894 | + foreach ($cf_option_values as $cf_option_value) { |
|
| 895 | + if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) { |
|
| 896 | + //$field_value = $cf_option_value['label']; // no longer needed here. |
|
| 897 | + } |
|
| 898 | + } |
|
| 899 | + } |
|
| 900 | + } |
|
| 901 | + |
|
| 902 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 903 | + if (strpos($field_icon, 'http') !== false) { |
|
| 904 | + $field_icon_af = ''; |
|
| 905 | + } elseif ($field_icon == '') { |
|
| 906 | + $field_icon_af = ''; |
|
| 907 | + } else { |
|
| 908 | + $field_icon_af = $field_icon; |
|
| 909 | + $field_icon = ''; |
|
| 910 | + } |
|
| 911 | + |
|
| 912 | + |
|
| 913 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 914 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 915 | + $html .= '</span>' . $field_value . '</div>'; |
|
| 916 | + endif; |
|
| 917 | + |
|
| 918 | + } |
|
| 919 | + |
|
| 920 | + return $html; |
|
| 921 | 921 | } |
| 922 | 922 | add_filter('geodir_custom_field_output_select','geodir_cf_select',10,3); |
| 923 | 923 | |
@@ -934,117 +934,117 @@ discard block |
||
| 934 | 934 | */ |
| 935 | 935 | function geodir_cf_multiselect($html,$location,$cf,$p=''){ |
| 936 | 936 | |
| 937 | - // check we have the post value |
|
| 938 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 939 | - else{ global $post;} |
|
| 940 | - |
|
| 941 | - if(!is_array($cf) && $cf!=''){ |
|
| 942 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 943 | - if(!$cf){return NULL;} |
|
| 944 | - } |
|
| 945 | - |
|
| 946 | - $html_var = $cf['htmlvar_name']; |
|
| 947 | - |
|
| 948 | - // Check if there is a location specific filter. |
|
| 949 | - if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){ |
|
| 950 | - /** |
|
| 951 | - * Filter the multiselect html by location. |
|
| 952 | - * |
|
| 953 | - * @param string $html The html to filter. |
|
| 954 | - * @param array $cf The custom field array. |
|
| 955 | - * @since 1.6.6 |
|
| 956 | - */ |
|
| 957 | - $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf); |
|
| 958 | - } |
|
| 959 | - |
|
| 960 | - // Check if there is a custom field specific filter. |
|
| 961 | - if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){ |
|
| 962 | - /** |
|
| 963 | - * Filter the multiselect html by individual custom field. |
|
| 964 | - * |
|
| 965 | - * @param string $html The html to filter. |
|
| 966 | - * @param string $location The location to output the html. |
|
| 967 | - * @param array $cf The custom field array. |
|
| 968 | - * @since 1.6.6 |
|
| 969 | - */ |
|
| 970 | - $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf); |
|
| 971 | - } |
|
| 972 | - |
|
| 973 | - // Check if there is a custom field key specific filter. |
|
| 974 | - if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){ |
|
| 975 | - /** |
|
| 976 | - * Filter the multiselect html by field type key. |
|
| 977 | - * |
|
| 978 | - * @param string $html The html to filter. |
|
| 979 | - * @param string $location The location to output the html. |
|
| 980 | - * @param array $cf The custom field array. |
|
| 981 | - * @since 1.6.6 |
|
| 982 | - */ |
|
| 983 | - $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 984 | - } |
|
| 985 | - |
|
| 986 | - // If not html then we run the standard output. |
|
| 987 | - if(empty($html)){ |
|
| 988 | - |
|
| 989 | - |
|
| 990 | - if (!empty($post->{$cf['htmlvar_name']})): |
|
| 991 | - |
|
| 992 | - if (is_array($post->{$cf['htmlvar_name']})) { |
|
| 993 | - $post->{$cf['htmlvar_name']} = implode(', ', $post->{$cf['htmlvar_name']}); |
|
| 994 | - } |
|
| 995 | - |
|
| 996 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 997 | - if (strpos($field_icon, 'http') !== false) { |
|
| 998 | - $field_icon_af = ''; |
|
| 999 | - } elseif ($field_icon == '') { |
|
| 1000 | - $field_icon_af = ''; |
|
| 1001 | - } else { |
|
| 1002 | - $field_icon_af = $field_icon; |
|
| 1003 | - $field_icon = ''; |
|
| 1004 | - } |
|
| 1005 | - |
|
| 1006 | - $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ",")); |
|
| 1007 | - |
|
| 1008 | - if(is_array($field_values)){ |
|
| 1009 | - $field_values = array_map('trim', $field_values); |
|
| 1010 | - } |
|
| 1011 | - |
|
| 1012 | - $option_values = array(); |
|
| 1013 | - if (!empty($cf['option_values'])) { |
|
| 1014 | - $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 1015 | - |
|
| 1016 | - if (!empty($cf_option_values)) { |
|
| 1017 | - foreach ($cf_option_values as $cf_option_value) { |
|
| 1018 | - if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) { |
|
| 1019 | - $option_values[] = $cf_option_value['label']; |
|
| 1020 | - } |
|
| 1021 | - } |
|
| 1022 | - } |
|
| 1023 | - } |
|
| 1024 | - |
|
| 1025 | - |
|
| 1026 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1027 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1028 | - $html .= '</span>'; |
|
| 1029 | - |
|
| 1030 | - if (count($option_values) > 1) { |
|
| 1031 | - $html .= '<ul>'; |
|
| 1032 | - |
|
| 1033 | - foreach ($option_values as $val) { |
|
| 1034 | - $html .= '<li>' . $val . '</li>'; |
|
| 1035 | - } |
|
| 1036 | - |
|
| 1037 | - $html .= '</ul>'; |
|
| 1038 | - } else { |
|
| 1039 | - $html .= __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 1040 | - } |
|
| 1041 | - |
|
| 1042 | - $html .= '</div>'; |
|
| 1043 | - endif; |
|
| 1044 | - |
|
| 1045 | - } |
|
| 1046 | - |
|
| 1047 | - return $html; |
|
| 937 | + // check we have the post value |
|
| 938 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 939 | + else{ global $post;} |
|
| 940 | + |
|
| 941 | + if(!is_array($cf) && $cf!=''){ |
|
| 942 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 943 | + if(!$cf){return NULL;} |
|
| 944 | + } |
|
| 945 | + |
|
| 946 | + $html_var = $cf['htmlvar_name']; |
|
| 947 | + |
|
| 948 | + // Check if there is a location specific filter. |
|
| 949 | + if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){ |
|
| 950 | + /** |
|
| 951 | + * Filter the multiselect html by location. |
|
| 952 | + * |
|
| 953 | + * @param string $html The html to filter. |
|
| 954 | + * @param array $cf The custom field array. |
|
| 955 | + * @since 1.6.6 |
|
| 956 | + */ |
|
| 957 | + $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf); |
|
| 958 | + } |
|
| 959 | + |
|
| 960 | + // Check if there is a custom field specific filter. |
|
| 961 | + if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){ |
|
| 962 | + /** |
|
| 963 | + * Filter the multiselect html by individual custom field. |
|
| 964 | + * |
|
| 965 | + * @param string $html The html to filter. |
|
| 966 | + * @param string $location The location to output the html. |
|
| 967 | + * @param array $cf The custom field array. |
|
| 968 | + * @since 1.6.6 |
|
| 969 | + */ |
|
| 970 | + $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf); |
|
| 971 | + } |
|
| 972 | + |
|
| 973 | + // Check if there is a custom field key specific filter. |
|
| 974 | + if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){ |
|
| 975 | + /** |
|
| 976 | + * Filter the multiselect html by field type key. |
|
| 977 | + * |
|
| 978 | + * @param string $html The html to filter. |
|
| 979 | + * @param string $location The location to output the html. |
|
| 980 | + * @param array $cf The custom field array. |
|
| 981 | + * @since 1.6.6 |
|
| 982 | + */ |
|
| 983 | + $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 984 | + } |
|
| 985 | + |
|
| 986 | + // If not html then we run the standard output. |
|
| 987 | + if(empty($html)){ |
|
| 988 | + |
|
| 989 | + |
|
| 990 | + if (!empty($post->{$cf['htmlvar_name']})): |
|
| 991 | + |
|
| 992 | + if (is_array($post->{$cf['htmlvar_name']})) { |
|
| 993 | + $post->{$cf['htmlvar_name']} = implode(', ', $post->{$cf['htmlvar_name']}); |
|
| 994 | + } |
|
| 995 | + |
|
| 996 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 997 | + if (strpos($field_icon, 'http') !== false) { |
|
| 998 | + $field_icon_af = ''; |
|
| 999 | + } elseif ($field_icon == '') { |
|
| 1000 | + $field_icon_af = ''; |
|
| 1001 | + } else { |
|
| 1002 | + $field_icon_af = $field_icon; |
|
| 1003 | + $field_icon = ''; |
|
| 1004 | + } |
|
| 1005 | + |
|
| 1006 | + $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ",")); |
|
| 1007 | + |
|
| 1008 | + if(is_array($field_values)){ |
|
| 1009 | + $field_values = array_map('trim', $field_values); |
|
| 1010 | + } |
|
| 1011 | + |
|
| 1012 | + $option_values = array(); |
|
| 1013 | + if (!empty($cf['option_values'])) { |
|
| 1014 | + $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true); |
|
| 1015 | + |
|
| 1016 | + if (!empty($cf_option_values)) { |
|
| 1017 | + foreach ($cf_option_values as $cf_option_value) { |
|
| 1018 | + if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) { |
|
| 1019 | + $option_values[] = $cf_option_value['label']; |
|
| 1020 | + } |
|
| 1021 | + } |
|
| 1022 | + } |
|
| 1023 | + } |
|
| 1024 | + |
|
| 1025 | + |
|
| 1026 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1027 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1028 | + $html .= '</span>'; |
|
| 1029 | + |
|
| 1030 | + if (count($option_values) > 1) { |
|
| 1031 | + $html .= '<ul>'; |
|
| 1032 | + |
|
| 1033 | + foreach ($option_values as $val) { |
|
| 1034 | + $html .= '<li>' . $val . '</li>'; |
|
| 1035 | + } |
|
| 1036 | + |
|
| 1037 | + $html .= '</ul>'; |
|
| 1038 | + } else { |
|
| 1039 | + $html .= __($post->{$cf['htmlvar_name']}, 'geodirectory'); |
|
| 1040 | + } |
|
| 1041 | + |
|
| 1042 | + $html .= '</div>'; |
|
| 1043 | + endif; |
|
| 1044 | + |
|
| 1045 | + } |
|
| 1046 | + |
|
| 1047 | + return $html; |
|
| 1048 | 1048 | } |
| 1049 | 1049 | add_filter('geodir_custom_field_output_multiselect','geodir_cf_multiselect',10,3); |
| 1050 | 1050 | |
@@ -1061,153 +1061,153 @@ discard block |
||
| 1061 | 1061 | */ |
| 1062 | 1062 | function geodir_cf_email($html,$location,$cf,$p=''){ |
| 1063 | 1063 | |
| 1064 | - // check we have the post value |
|
| 1065 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1066 | - else{ global $post;} |
|
| 1067 | - |
|
| 1068 | - if(!is_array($cf) && $cf!=''){ |
|
| 1069 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1070 | - if(!$cf){return NULL;} |
|
| 1071 | - } |
|
| 1072 | - |
|
| 1073 | - $html_var = $cf['htmlvar_name']; |
|
| 1074 | - |
|
| 1075 | - // Check if there is a location specific filter. |
|
| 1076 | - if(has_filter("geodir_custom_field_output_email_loc_{$location}")){ |
|
| 1077 | - /** |
|
| 1078 | - * Filter the email html by location. |
|
| 1079 | - * |
|
| 1080 | - * @param string $html The html to filter. |
|
| 1081 | - * @param array $cf The custom field array. |
|
| 1082 | - * @since 1.6.6 |
|
| 1083 | - */ |
|
| 1084 | - $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf); |
|
| 1085 | - } |
|
| 1086 | - |
|
| 1087 | - // Check if there is a custom field specific filter. |
|
| 1088 | - if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){ |
|
| 1089 | - /** |
|
| 1090 | - * Filter the email html by individual custom field. |
|
| 1091 | - * |
|
| 1092 | - * @param string $html The html to filter. |
|
| 1093 | - * @param string $location The location to output the html. |
|
| 1094 | - * @param array $cf The custom field array. |
|
| 1095 | - * @since 1.6.6 |
|
| 1096 | - */ |
|
| 1097 | - $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf); |
|
| 1098 | - } |
|
| 1099 | - |
|
| 1100 | - // Check if there is a custom field key specific filter. |
|
| 1101 | - if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){ |
|
| 1102 | - /** |
|
| 1103 | - * Filter the email html by field type key. |
|
| 1104 | - * |
|
| 1105 | - * @param string $html The html to filter. |
|
| 1106 | - * @param string $location The location to output the html. |
|
| 1107 | - * @param array $cf The custom field array. |
|
| 1108 | - * @since 1.6.6 |
|
| 1109 | - */ |
|
| 1110 | - $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1111 | - } |
|
| 1112 | - |
|
| 1113 | - // If not html then we run the standard output. |
|
| 1114 | - if(empty($html)){ |
|
| 1115 | - |
|
| 1116 | - global $preview; |
|
| 1117 | - if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) { |
|
| 1118 | - return ''; // Remove Send Enquiry | Send To Friend from listings page |
|
| 1119 | - } |
|
| 1120 | - |
|
| 1121 | - $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1122 | - |
|
| 1123 | - if ($cf['htmlvar_name'] == 'geodir_email' && ((isset($package_info['sendtofriend']) && $package_info['sendtofriend']) || $post->{$cf['htmlvar_name']})) { |
|
| 1124 | - global $send_to_friend; |
|
| 1125 | - $send_to_friend = true; |
|
| 1126 | - $b_send_inquiry = ''; |
|
| 1127 | - $b_sendtofriend = ''; |
|
| 1128 | - |
|
| 1129 | - $html = ''; |
|
| 1130 | - if (!$preview) { |
|
| 1131 | - $b_send_inquiry = 'b_send_inquiry'; |
|
| 1132 | - $b_sendtofriend = 'b_sendtofriend'; |
|
| 1133 | - $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1134 | - } |
|
| 1135 | - |
|
| 1136 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1137 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1138 | - $field_icon_af = ''; |
|
| 1139 | - } elseif ($field_icon == '') { |
|
| 1140 | - $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1141 | - } else { |
|
| 1142 | - $field_icon_af = $field_icon; |
|
| 1143 | - $field_icon = ''; |
|
| 1144 | - } |
|
| 1145 | - |
|
| 1146 | - $html .= '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1147 | - $seperator = ''; |
|
| 1148 | - if ($post->{$cf['htmlvar_name']}) { |
|
| 1149 | - $html .= '<a href="javascript:void(0);" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>'; |
|
| 1150 | - $seperator = ' | '; |
|
| 1151 | - } |
|
| 1152 | - |
|
| 1153 | - if (isset($package_info['sendtofriend']) && $package_info['sendtofriend']) { |
|
| 1154 | - $html .= $seperator . '<a href="javascript:void(0);" class="' . $b_sendtofriend . '">' . SEND_TO_FRIEND . '</a>'; |
|
| 1155 | - } |
|
| 1156 | - |
|
| 1157 | - $html .= '</span></div>'; |
|
| 1158 | - |
|
| 1159 | - |
|
| 1160 | - if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') { |
|
| 1161 | - $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>'; |
|
| 1162 | - } elseif (isset($_REQUEST['sendtofrnd']) && $_REQUEST['sendtofrnd'] == 'success') { |
|
| 1163 | - $html .= '<p class="sucess_msg">' . SEND_FRIEND_SUCCESS . '</p>'; |
|
| 1164 | - } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') { |
|
| 1165 | - $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>'; |
|
| 1166 | - } |
|
| 1167 | - |
|
| 1168 | - /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/ |
|
| 1169 | - |
|
| 1170 | - } else { |
|
| 1171 | - |
|
| 1172 | - if ($post->{$cf['htmlvar_name']}) { |
|
| 1173 | - |
|
| 1174 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1175 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1176 | - $field_icon_af = ''; |
|
| 1177 | - } elseif ($field_icon == '') { |
|
| 1178 | - $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1179 | - } else { |
|
| 1180 | - $field_icon_af = $field_icon; |
|
| 1181 | - $field_icon = ''; |
|
| 1182 | - } |
|
| 1183 | - |
|
| 1184 | - |
|
| 1185 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1186 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1187 | - $html .= '</span><span class="geodir-email-address-output">'; |
|
| 1188 | - $email = $post->{$cf['htmlvar_name']} ; |
|
| 1189 | - if($e_split = explode('@',$email)){ |
|
| 1190 | - /** |
|
| 1191 | - * Filter email custom field name output. |
|
| 1192 | - * |
|
| 1193 | - * @since 1.5.3 |
|
| 1194 | - * |
|
| 1195 | - * @param string $email The email string being output. |
|
| 1196 | - * @param array $cf Custom field variables array. |
|
| 1197 | - */ |
|
| 1198 | - $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
|
| 1199 | - $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1200 | - }else{ |
|
| 1201 | - $html .= $email; |
|
| 1202 | - } |
|
| 1203 | - $html .= '</span></div>'; |
|
| 1204 | - } |
|
| 1205 | - |
|
| 1206 | - } |
|
| 1207 | - |
|
| 1208 | - } |
|
| 1209 | - |
|
| 1210 | - return $html; |
|
| 1064 | + // check we have the post value |
|
| 1065 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1066 | + else{ global $post;} |
|
| 1067 | + |
|
| 1068 | + if(!is_array($cf) && $cf!=''){ |
|
| 1069 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1070 | + if(!$cf){return NULL;} |
|
| 1071 | + } |
|
| 1072 | + |
|
| 1073 | + $html_var = $cf['htmlvar_name']; |
|
| 1074 | + |
|
| 1075 | + // Check if there is a location specific filter. |
|
| 1076 | + if(has_filter("geodir_custom_field_output_email_loc_{$location}")){ |
|
| 1077 | + /** |
|
| 1078 | + * Filter the email html by location. |
|
| 1079 | + * |
|
| 1080 | + * @param string $html The html to filter. |
|
| 1081 | + * @param array $cf The custom field array. |
|
| 1082 | + * @since 1.6.6 |
|
| 1083 | + */ |
|
| 1084 | + $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf); |
|
| 1085 | + } |
|
| 1086 | + |
|
| 1087 | + // Check if there is a custom field specific filter. |
|
| 1088 | + if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){ |
|
| 1089 | + /** |
|
| 1090 | + * Filter the email html by individual custom field. |
|
| 1091 | + * |
|
| 1092 | + * @param string $html The html to filter. |
|
| 1093 | + * @param string $location The location to output the html. |
|
| 1094 | + * @param array $cf The custom field array. |
|
| 1095 | + * @since 1.6.6 |
|
| 1096 | + */ |
|
| 1097 | + $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf); |
|
| 1098 | + } |
|
| 1099 | + |
|
| 1100 | + // Check if there is a custom field key specific filter. |
|
| 1101 | + if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){ |
|
| 1102 | + /** |
|
| 1103 | + * Filter the email html by field type key. |
|
| 1104 | + * |
|
| 1105 | + * @param string $html The html to filter. |
|
| 1106 | + * @param string $location The location to output the html. |
|
| 1107 | + * @param array $cf The custom field array. |
|
| 1108 | + * @since 1.6.6 |
|
| 1109 | + */ |
|
| 1110 | + $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1111 | + } |
|
| 1112 | + |
|
| 1113 | + // If not html then we run the standard output. |
|
| 1114 | + if(empty($html)){ |
|
| 1115 | + |
|
| 1116 | + global $preview; |
|
| 1117 | + if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) { |
|
| 1118 | + return ''; // Remove Send Enquiry | Send To Friend from listings page |
|
| 1119 | + } |
|
| 1120 | + |
|
| 1121 | + $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type); |
|
| 1122 | + |
|
| 1123 | + if ($cf['htmlvar_name'] == 'geodir_email' && ((isset($package_info['sendtofriend']) && $package_info['sendtofriend']) || $post->{$cf['htmlvar_name']})) { |
|
| 1124 | + global $send_to_friend; |
|
| 1125 | + $send_to_friend = true; |
|
| 1126 | + $b_send_inquiry = ''; |
|
| 1127 | + $b_sendtofriend = ''; |
|
| 1128 | + |
|
| 1129 | + $html = ''; |
|
| 1130 | + if (!$preview) { |
|
| 1131 | + $b_send_inquiry = 'b_send_inquiry'; |
|
| 1132 | + $b_sendtofriend = 'b_sendtofriend'; |
|
| 1133 | + $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>'; |
|
| 1134 | + } |
|
| 1135 | + |
|
| 1136 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1137 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1138 | + $field_icon_af = ''; |
|
| 1139 | + } elseif ($field_icon == '') { |
|
| 1140 | + $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1141 | + } else { |
|
| 1142 | + $field_icon_af = $field_icon; |
|
| 1143 | + $field_icon = ''; |
|
| 1144 | + } |
|
| 1145 | + |
|
| 1146 | + $html .= '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1147 | + $seperator = ''; |
|
| 1148 | + if ($post->{$cf['htmlvar_name']}) { |
|
| 1149 | + $html .= '<a href="javascript:void(0);" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>'; |
|
| 1150 | + $seperator = ' | '; |
|
| 1151 | + } |
|
| 1152 | + |
|
| 1153 | + if (isset($package_info['sendtofriend']) && $package_info['sendtofriend']) { |
|
| 1154 | + $html .= $seperator . '<a href="javascript:void(0);" class="' . $b_sendtofriend . '">' . SEND_TO_FRIEND . '</a>'; |
|
| 1155 | + } |
|
| 1156 | + |
|
| 1157 | + $html .= '</span></div>'; |
|
| 1158 | + |
|
| 1159 | + |
|
| 1160 | + if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') { |
|
| 1161 | + $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>'; |
|
| 1162 | + } elseif (isset($_REQUEST['sendtofrnd']) && $_REQUEST['sendtofrnd'] == 'success') { |
|
| 1163 | + $html .= '<p class="sucess_msg">' . SEND_FRIEND_SUCCESS . '</p>'; |
|
| 1164 | + } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') { |
|
| 1165 | + $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>'; |
|
| 1166 | + } |
|
| 1167 | + |
|
| 1168 | + /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/ |
|
| 1169 | + |
|
| 1170 | + } else { |
|
| 1171 | + |
|
| 1172 | + if ($post->{$cf['htmlvar_name']}) { |
|
| 1173 | + |
|
| 1174 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1175 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1176 | + $field_icon_af = ''; |
|
| 1177 | + } elseif ($field_icon == '') { |
|
| 1178 | + $field_icon_af = '<i class="fa fa-envelope"></i>'; |
|
| 1179 | + } else { |
|
| 1180 | + $field_icon_af = $field_icon; |
|
| 1181 | + $field_icon = ''; |
|
| 1182 | + } |
|
| 1183 | + |
|
| 1184 | + |
|
| 1185 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1186 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1187 | + $html .= '</span><span class="geodir-email-address-output">'; |
|
| 1188 | + $email = $post->{$cf['htmlvar_name']} ; |
|
| 1189 | + if($e_split = explode('@',$email)){ |
|
| 1190 | + /** |
|
| 1191 | + * Filter email custom field name output. |
|
| 1192 | + * |
|
| 1193 | + * @since 1.5.3 |
|
| 1194 | + * |
|
| 1195 | + * @param string $email The email string being output. |
|
| 1196 | + * @param array $cf Custom field variables array. |
|
| 1197 | + */ |
|
| 1198 | + $email_name = apply_filters('geodir_email_field_name_output',$email,$cf); |
|
| 1199 | + $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>"; |
|
| 1200 | + }else{ |
|
| 1201 | + $html .= $email; |
|
| 1202 | + } |
|
| 1203 | + $html .= '</span></div>'; |
|
| 1204 | + } |
|
| 1205 | + |
|
| 1206 | + } |
|
| 1207 | + |
|
| 1208 | + } |
|
| 1209 | + |
|
| 1210 | + return $html; |
|
| 1211 | 1211 | } |
| 1212 | 1212 | add_filter('geodir_custom_field_output_email','geodir_cf_email',10,3); |
| 1213 | 1213 | |
@@ -1224,130 +1224,130 @@ discard block |
||
| 1224 | 1224 | */ |
| 1225 | 1225 | function geodir_cf_file($html,$location,$cf,$p=''){ |
| 1226 | 1226 | |
| 1227 | - // check we have the post value |
|
| 1228 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1229 | - else{ global $post;} |
|
| 1230 | - |
|
| 1231 | - if(!is_array($cf) && $cf!=''){ |
|
| 1232 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1233 | - if(!$cf){return NULL;} |
|
| 1234 | - } |
|
| 1235 | - |
|
| 1236 | - $html_var = $cf['htmlvar_name']; |
|
| 1237 | - |
|
| 1238 | - // Check if there is a location specific filter. |
|
| 1239 | - if(has_filter("geodir_custom_field_output_file_loc_{$location}")){ |
|
| 1240 | - /** |
|
| 1241 | - * Filter the file html by location. |
|
| 1242 | - * |
|
| 1243 | - * @param string $html The html to filter. |
|
| 1244 | - * @param array $cf The custom field array. |
|
| 1245 | - * @since 1.6.6 |
|
| 1246 | - */ |
|
| 1247 | - $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf); |
|
| 1248 | - } |
|
| 1249 | - |
|
| 1250 | - // Check if there is a custom field specific filter. |
|
| 1251 | - if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){ |
|
| 1252 | - /** |
|
| 1253 | - * Filter the file html by individual custom field. |
|
| 1254 | - * |
|
| 1255 | - * @param string $html The html to filter. |
|
| 1256 | - * @param string $location The location to output the html. |
|
| 1257 | - * @param array $cf The custom field array. |
|
| 1258 | - * @since 1.6.6 |
|
| 1259 | - */ |
|
| 1260 | - $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf); |
|
| 1261 | - } |
|
| 1262 | - |
|
| 1263 | - // Check if there is a custom field key specific filter. |
|
| 1264 | - if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){ |
|
| 1265 | - /** |
|
| 1266 | - * Filter the file html by field type key. |
|
| 1267 | - * |
|
| 1268 | - * @param string $html The html to filter. |
|
| 1269 | - * @param string $location The location to output the html. |
|
| 1270 | - * @param array $cf The custom field array. |
|
| 1271 | - * @since 1.6.6 |
|
| 1272 | - */ |
|
| 1273 | - $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1274 | - } |
|
| 1275 | - |
|
| 1276 | - // If not html then we run the standard output. |
|
| 1277 | - if(empty($html)){ |
|
| 1278 | - |
|
| 1279 | - if (!empty($post->{$cf['htmlvar_name']})): |
|
| 1280 | - |
|
| 1281 | - $files = explode(",", $post->{$cf['htmlvar_name']}); |
|
| 1282 | - if (!empty($files)): |
|
| 1283 | - |
|
| 1284 | - $extra_fields = !empty($cf['extra_fields']) ? stripslashes_deep(maybe_unserialize($cf['extra_fields'])) : NULL; |
|
| 1285 | - $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : ''; |
|
| 1286 | - |
|
| 1287 | - $file_paths = ''; |
|
| 1288 | - foreach ($files as $file) { |
|
| 1289 | - if (!empty($file)) { |
|
| 1290 | - |
|
| 1291 | - // $filetype = wp_check_filetype($file); |
|
| 1292 | - |
|
| 1293 | - $image_name_arr = explode('/', $file); |
|
| 1294 | - $curr_img_dir = $image_name_arr[count($image_name_arr) - 2]; |
|
| 1295 | - $filename = end($image_name_arr); |
|
| 1296 | - $img_name_arr = explode('.', $filename); |
|
| 1297 | - |
|
| 1298 | - $arr_file_type = wp_check_filetype($filename); |
|
| 1299 | - if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) { |
|
| 1300 | - continue; |
|
| 1301 | - } |
|
| 1302 | - |
|
| 1303 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 1304 | - $uploaded_file_ext = $arr_file_type['ext']; |
|
| 1305 | - |
|
| 1306 | - if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) { |
|
| 1307 | - continue; // Invalid file type. |
|
| 1308 | - } |
|
| 1309 | - |
|
| 1310 | - //$allowed_file_types = array('application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain'); |
|
| 1311 | - $image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon'); |
|
| 1312 | - |
|
| 1313 | - // If the uploaded file is image |
|
| 1314 | - if (in_array($uploaded_file_type, $image_file_types)) { |
|
| 1315 | - $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">'; |
|
| 1316 | - $file_paths .= '<a href="'.$file.'">'; |
|
| 1317 | - $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false); |
|
| 1318 | - $file_paths .= '</a>'; |
|
| 1319 | - //$file_paths .= '<img src="'.$file.'" />'; |
|
| 1320 | - $file_paths .= '</div>'; |
|
| 1321 | - } else { |
|
| 1322 | - $ext_path = '_' . $html_var . '_'; |
|
| 1323 | - $filename = explode($ext_path, $filename); |
|
| 1324 | - $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>'; |
|
| 1325 | - } |
|
| 1326 | - } |
|
| 1327 | - } |
|
| 1328 | - |
|
| 1329 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1330 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1331 | - $field_icon_af = ''; |
|
| 1332 | - } elseif ($field_icon == '') { |
|
| 1333 | - $field_icon_af = ''; |
|
| 1334 | - } else { |
|
| 1335 | - $field_icon_af = $field_icon; |
|
| 1336 | - $field_icon = ''; |
|
| 1337 | - } |
|
| 1338 | - |
|
| 1339 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' geodir-custom-file-box ' . $cf['htmlvar_name'] . '"><div class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1340 | - $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">'; |
|
| 1341 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1342 | - $html .= '</span>'; |
|
| 1343 | - $html .= $file_paths . '</div></div>'; |
|
| 1344 | - |
|
| 1345 | - endif; |
|
| 1346 | - endif; |
|
| 1347 | - |
|
| 1348 | - } |
|
| 1349 | - |
|
| 1350 | - return $html; |
|
| 1227 | + // check we have the post value |
|
| 1228 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1229 | + else{ global $post;} |
|
| 1230 | + |
|
| 1231 | + if(!is_array($cf) && $cf!=''){ |
|
| 1232 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1233 | + if(!$cf){return NULL;} |
|
| 1234 | + } |
|
| 1235 | + |
|
| 1236 | + $html_var = $cf['htmlvar_name']; |
|
| 1237 | + |
|
| 1238 | + // Check if there is a location specific filter. |
|
| 1239 | + if(has_filter("geodir_custom_field_output_file_loc_{$location}")){ |
|
| 1240 | + /** |
|
| 1241 | + * Filter the file html by location. |
|
| 1242 | + * |
|
| 1243 | + * @param string $html The html to filter. |
|
| 1244 | + * @param array $cf The custom field array. |
|
| 1245 | + * @since 1.6.6 |
|
| 1246 | + */ |
|
| 1247 | + $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf); |
|
| 1248 | + } |
|
| 1249 | + |
|
| 1250 | + // Check if there is a custom field specific filter. |
|
| 1251 | + if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){ |
|
| 1252 | + /** |
|
| 1253 | + * Filter the file html by individual custom field. |
|
| 1254 | + * |
|
| 1255 | + * @param string $html The html to filter. |
|
| 1256 | + * @param string $location The location to output the html. |
|
| 1257 | + * @param array $cf The custom field array. |
|
| 1258 | + * @since 1.6.6 |
|
| 1259 | + */ |
|
| 1260 | + $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf); |
|
| 1261 | + } |
|
| 1262 | + |
|
| 1263 | + // Check if there is a custom field key specific filter. |
|
| 1264 | + if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){ |
|
| 1265 | + /** |
|
| 1266 | + * Filter the file html by field type key. |
|
| 1267 | + * |
|
| 1268 | + * @param string $html The html to filter. |
|
| 1269 | + * @param string $location The location to output the html. |
|
| 1270 | + * @param array $cf The custom field array. |
|
| 1271 | + * @since 1.6.6 |
|
| 1272 | + */ |
|
| 1273 | + $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1274 | + } |
|
| 1275 | + |
|
| 1276 | + // If not html then we run the standard output. |
|
| 1277 | + if(empty($html)){ |
|
| 1278 | + |
|
| 1279 | + if (!empty($post->{$cf['htmlvar_name']})): |
|
| 1280 | + |
|
| 1281 | + $files = explode(",", $post->{$cf['htmlvar_name']}); |
|
| 1282 | + if (!empty($files)): |
|
| 1283 | + |
|
| 1284 | + $extra_fields = !empty($cf['extra_fields']) ? stripslashes_deep(maybe_unserialize($cf['extra_fields'])) : NULL; |
|
| 1285 | + $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : ''; |
|
| 1286 | + |
|
| 1287 | + $file_paths = ''; |
|
| 1288 | + foreach ($files as $file) { |
|
| 1289 | + if (!empty($file)) { |
|
| 1290 | + |
|
| 1291 | + // $filetype = wp_check_filetype($file); |
|
| 1292 | + |
|
| 1293 | + $image_name_arr = explode('/', $file); |
|
| 1294 | + $curr_img_dir = $image_name_arr[count($image_name_arr) - 2]; |
|
| 1295 | + $filename = end($image_name_arr); |
|
| 1296 | + $img_name_arr = explode('.', $filename); |
|
| 1297 | + |
|
| 1298 | + $arr_file_type = wp_check_filetype($filename); |
|
| 1299 | + if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) { |
|
| 1300 | + continue; |
|
| 1301 | + } |
|
| 1302 | + |
|
| 1303 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 1304 | + $uploaded_file_ext = $arr_file_type['ext']; |
|
| 1305 | + |
|
| 1306 | + if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) { |
|
| 1307 | + continue; // Invalid file type. |
|
| 1308 | + } |
|
| 1309 | + |
|
| 1310 | + //$allowed_file_types = array('application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain'); |
|
| 1311 | + $image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon'); |
|
| 1312 | + |
|
| 1313 | + // If the uploaded file is image |
|
| 1314 | + if (in_array($uploaded_file_type, $image_file_types)) { |
|
| 1315 | + $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">'; |
|
| 1316 | + $file_paths .= '<a href="'.$file.'">'; |
|
| 1317 | + $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false); |
|
| 1318 | + $file_paths .= '</a>'; |
|
| 1319 | + //$file_paths .= '<img src="'.$file.'" />'; |
|
| 1320 | + $file_paths .= '</div>'; |
|
| 1321 | + } else { |
|
| 1322 | + $ext_path = '_' . $html_var . '_'; |
|
| 1323 | + $filename = explode($ext_path, $filename); |
|
| 1324 | + $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>'; |
|
| 1325 | + } |
|
| 1326 | + } |
|
| 1327 | + } |
|
| 1328 | + |
|
| 1329 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1330 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1331 | + $field_icon_af = ''; |
|
| 1332 | + } elseif ($field_icon == '') { |
|
| 1333 | + $field_icon_af = ''; |
|
| 1334 | + } else { |
|
| 1335 | + $field_icon_af = $field_icon; |
|
| 1336 | + $field_icon = ''; |
|
| 1337 | + } |
|
| 1338 | + |
|
| 1339 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' geodir-custom-file-box ' . $cf['htmlvar_name'] . '"><div class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1340 | + $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">'; |
|
| 1341 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1342 | + $html .= '</span>'; |
|
| 1343 | + $html .= $file_paths . '</div></div>'; |
|
| 1344 | + |
|
| 1345 | + endif; |
|
| 1346 | + endif; |
|
| 1347 | + |
|
| 1348 | + } |
|
| 1349 | + |
|
| 1350 | + return $html; |
|
| 1351 | 1351 | } |
| 1352 | 1352 | add_filter('geodir_custom_field_output_file','geodir_cf_file',10,3); |
| 1353 | 1353 | |
@@ -1365,80 +1365,80 @@ discard block |
||
| 1365 | 1365 | */ |
| 1366 | 1366 | function geodir_cf_textarea($html,$location,$cf,$p=''){ |
| 1367 | 1367 | |
| 1368 | - // check we have the post value |
|
| 1369 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1370 | - else{ global $post;} |
|
| 1371 | - |
|
| 1372 | - if(!is_array($cf) && $cf!=''){ |
|
| 1373 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1374 | - if(!$cf){return NULL;} |
|
| 1375 | - } |
|
| 1376 | - |
|
| 1377 | - $html_var = $cf['htmlvar_name']; |
|
| 1378 | - |
|
| 1379 | - // Check if there is a location specific filter. |
|
| 1380 | - if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){ |
|
| 1381 | - /** |
|
| 1382 | - * Filter the textarea html by location. |
|
| 1383 | - * |
|
| 1384 | - * @param string $html The html to filter. |
|
| 1385 | - * @param array $cf The custom field array. |
|
| 1386 | - * @since 1.6.6 |
|
| 1387 | - */ |
|
| 1388 | - $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf); |
|
| 1389 | - } |
|
| 1390 | - |
|
| 1391 | - // Check if there is a custom field specific filter. |
|
| 1392 | - if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){ |
|
| 1393 | - /** |
|
| 1394 | - * Filter the textarea html by individual custom field. |
|
| 1395 | - * |
|
| 1396 | - * @param string $html The html to filter. |
|
| 1397 | - * @param string $location The location to output the html. |
|
| 1398 | - * @param array $cf The custom field array. |
|
| 1399 | - * @since 1.6.6 |
|
| 1400 | - */ |
|
| 1401 | - $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf); |
|
| 1402 | - } |
|
| 1403 | - |
|
| 1404 | - // Check if there is a custom field key specific filter. |
|
| 1405 | - if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){ |
|
| 1406 | - /** |
|
| 1407 | - * Filter the textarea html by field type key. |
|
| 1408 | - * |
|
| 1409 | - * @param string $html The html to filter. |
|
| 1410 | - * @param string $location The location to output the html. |
|
| 1411 | - * @param array $cf The custom field array. |
|
| 1412 | - * @since 1.6.6 |
|
| 1413 | - */ |
|
| 1414 | - $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1415 | - } |
|
| 1416 | - |
|
| 1417 | - // If not html then we run the standard output. |
|
| 1418 | - if(empty($html)){ |
|
| 1419 | - |
|
| 1420 | - if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1421 | - |
|
| 1422 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1423 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1424 | - $field_icon_af = ''; |
|
| 1425 | - } elseif ($field_icon == '') { |
|
| 1426 | - $field_icon_af = ''; |
|
| 1427 | - } else { |
|
| 1428 | - $field_icon_af = $field_icon; |
|
| 1429 | - $field_icon = ''; |
|
| 1430 | - } |
|
| 1431 | - |
|
| 1432 | - |
|
| 1433 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1434 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1435 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1436 | - |
|
| 1437 | - } |
|
| 1438 | - |
|
| 1439 | - } |
|
| 1440 | - |
|
| 1441 | - return $html; |
|
| 1368 | + // check we have the post value |
|
| 1369 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1370 | + else{ global $post;} |
|
| 1371 | + |
|
| 1372 | + if(!is_array($cf) && $cf!=''){ |
|
| 1373 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1374 | + if(!$cf){return NULL;} |
|
| 1375 | + } |
|
| 1376 | + |
|
| 1377 | + $html_var = $cf['htmlvar_name']; |
|
| 1378 | + |
|
| 1379 | + // Check if there is a location specific filter. |
|
| 1380 | + if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){ |
|
| 1381 | + /** |
|
| 1382 | + * Filter the textarea html by location. |
|
| 1383 | + * |
|
| 1384 | + * @param string $html The html to filter. |
|
| 1385 | + * @param array $cf The custom field array. |
|
| 1386 | + * @since 1.6.6 |
|
| 1387 | + */ |
|
| 1388 | + $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf); |
|
| 1389 | + } |
|
| 1390 | + |
|
| 1391 | + // Check if there is a custom field specific filter. |
|
| 1392 | + if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){ |
|
| 1393 | + /** |
|
| 1394 | + * Filter the textarea html by individual custom field. |
|
| 1395 | + * |
|
| 1396 | + * @param string $html The html to filter. |
|
| 1397 | + * @param string $location The location to output the html. |
|
| 1398 | + * @param array $cf The custom field array. |
|
| 1399 | + * @since 1.6.6 |
|
| 1400 | + */ |
|
| 1401 | + $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf); |
|
| 1402 | + } |
|
| 1403 | + |
|
| 1404 | + // Check if there is a custom field key specific filter. |
|
| 1405 | + if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){ |
|
| 1406 | + /** |
|
| 1407 | + * Filter the textarea html by field type key. |
|
| 1408 | + * |
|
| 1409 | + * @param string $html The html to filter. |
|
| 1410 | + * @param string $location The location to output the html. |
|
| 1411 | + * @param array $cf The custom field array. |
|
| 1412 | + * @since 1.6.6 |
|
| 1413 | + */ |
|
| 1414 | + $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1415 | + } |
|
| 1416 | + |
|
| 1417 | + // If not html then we run the standard output. |
|
| 1418 | + if(empty($html)){ |
|
| 1419 | + |
|
| 1420 | + if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1421 | + |
|
| 1422 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1423 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1424 | + $field_icon_af = ''; |
|
| 1425 | + } elseif ($field_icon == '') { |
|
| 1426 | + $field_icon_af = ''; |
|
| 1427 | + } else { |
|
| 1428 | + $field_icon_af = $field_icon; |
|
| 1429 | + $field_icon = ''; |
|
| 1430 | + } |
|
| 1431 | + |
|
| 1432 | + |
|
| 1433 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1434 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1435 | + $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1436 | + |
|
| 1437 | + } |
|
| 1438 | + |
|
| 1439 | + } |
|
| 1440 | + |
|
| 1441 | + return $html; |
|
| 1442 | 1442 | } |
| 1443 | 1443 | add_filter('geodir_custom_field_output_textarea','geodir_cf_textarea',10,3); |
| 1444 | 1444 | |
@@ -1456,79 +1456,79 @@ discard block |
||
| 1456 | 1456 | */ |
| 1457 | 1457 | function geodir_cf_html($html,$location,$cf,$p=''){ |
| 1458 | 1458 | |
| 1459 | - // check we have the post value |
|
| 1460 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1461 | - else{ global $post;} |
|
| 1462 | - |
|
| 1463 | - if(!is_array($cf) && $cf!=''){ |
|
| 1464 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1465 | - if(!$cf){return NULL;} |
|
| 1466 | - } |
|
| 1467 | - |
|
| 1468 | - $html_var = $cf['htmlvar_name']; |
|
| 1469 | - |
|
| 1470 | - // Check if there is a location specific filter. |
|
| 1471 | - if(has_filter("geodir_custom_field_output_html_loc_{$location}")){ |
|
| 1472 | - /** |
|
| 1473 | - * Filter the html html by location. |
|
| 1474 | - * |
|
| 1475 | - * @param string $html The html to filter. |
|
| 1476 | - * @param array $cf The custom field array. |
|
| 1477 | - * @since 1.6.6 |
|
| 1478 | - */ |
|
| 1479 | - $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf); |
|
| 1480 | - } |
|
| 1481 | - |
|
| 1482 | - // Check if there is a custom field specific filter. |
|
| 1483 | - if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){ |
|
| 1484 | - /** |
|
| 1485 | - * Filter the html html by individual custom field. |
|
| 1486 | - * |
|
| 1487 | - * @param string $html The html to filter. |
|
| 1488 | - * @param string $location The location to output the html. |
|
| 1489 | - * @param array $cf The custom field array. |
|
| 1490 | - * @since 1.6.6 |
|
| 1491 | - */ |
|
| 1492 | - $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf); |
|
| 1493 | - } |
|
| 1494 | - |
|
| 1495 | - // Check if there is a custom field key specific filter. |
|
| 1496 | - if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){ |
|
| 1497 | - /** |
|
| 1498 | - * Filter the html html by field type key. |
|
| 1499 | - * |
|
| 1500 | - * @param string $html The html to filter. |
|
| 1501 | - * @param string $location The location to output the html. |
|
| 1502 | - * @param array $cf The custom field array. |
|
| 1503 | - * @since 1.6.6 |
|
| 1504 | - */ |
|
| 1505 | - $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1506 | - } |
|
| 1507 | - |
|
| 1508 | - // If not html then we run the standard output. |
|
| 1509 | - if(empty($html)){ |
|
| 1510 | - |
|
| 1511 | - if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1512 | - |
|
| 1513 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1514 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1515 | - $field_icon_af = ''; |
|
| 1516 | - } elseif ($field_icon == '') { |
|
| 1517 | - $field_icon_af = ''; |
|
| 1518 | - } else { |
|
| 1519 | - $field_icon_af = $field_icon; |
|
| 1520 | - $field_icon = ''; |
|
| 1521 | - } |
|
| 1522 | - |
|
| 1523 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1524 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1525 | - $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1526 | - |
|
| 1527 | - } |
|
| 1528 | - |
|
| 1529 | - } |
|
| 1530 | - |
|
| 1531 | - return $html; |
|
| 1459 | + // check we have the post value |
|
| 1460 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1461 | + else{ global $post;} |
|
| 1462 | + |
|
| 1463 | + if(!is_array($cf) && $cf!=''){ |
|
| 1464 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1465 | + if(!$cf){return NULL;} |
|
| 1466 | + } |
|
| 1467 | + |
|
| 1468 | + $html_var = $cf['htmlvar_name']; |
|
| 1469 | + |
|
| 1470 | + // Check if there is a location specific filter. |
|
| 1471 | + if(has_filter("geodir_custom_field_output_html_loc_{$location}")){ |
|
| 1472 | + /** |
|
| 1473 | + * Filter the html html by location. |
|
| 1474 | + * |
|
| 1475 | + * @param string $html The html to filter. |
|
| 1476 | + * @param array $cf The custom field array. |
|
| 1477 | + * @since 1.6.6 |
|
| 1478 | + */ |
|
| 1479 | + $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf); |
|
| 1480 | + } |
|
| 1481 | + |
|
| 1482 | + // Check if there is a custom field specific filter. |
|
| 1483 | + if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){ |
|
| 1484 | + /** |
|
| 1485 | + * Filter the html html by individual custom field. |
|
| 1486 | + * |
|
| 1487 | + * @param string $html The html to filter. |
|
| 1488 | + * @param string $location The location to output the html. |
|
| 1489 | + * @param array $cf The custom field array. |
|
| 1490 | + * @since 1.6.6 |
|
| 1491 | + */ |
|
| 1492 | + $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf); |
|
| 1493 | + } |
|
| 1494 | + |
|
| 1495 | + // Check if there is a custom field key specific filter. |
|
| 1496 | + if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){ |
|
| 1497 | + /** |
|
| 1498 | + * Filter the html html by field type key. |
|
| 1499 | + * |
|
| 1500 | + * @param string $html The html to filter. |
|
| 1501 | + * @param string $location The location to output the html. |
|
| 1502 | + * @param array $cf The custom field array. |
|
| 1503 | + * @since 1.6.6 |
|
| 1504 | + */ |
|
| 1505 | + $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1506 | + } |
|
| 1507 | + |
|
| 1508 | + // If not html then we run the standard output. |
|
| 1509 | + if(empty($html)){ |
|
| 1510 | + |
|
| 1511 | + if (!empty($post->{$cf['htmlvar_name']})) { |
|
| 1512 | + |
|
| 1513 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1514 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1515 | + $field_icon_af = ''; |
|
| 1516 | + } elseif ($field_icon == '') { |
|
| 1517 | + $field_icon_af = ''; |
|
| 1518 | + } else { |
|
| 1519 | + $field_icon_af = $field_icon; |
|
| 1520 | + $field_icon = ''; |
|
| 1521 | + } |
|
| 1522 | + |
|
| 1523 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1524 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1525 | + $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>'; |
|
| 1526 | + |
|
| 1527 | + } |
|
| 1528 | + |
|
| 1529 | + } |
|
| 1530 | + |
|
| 1531 | + return $html; |
|
| 1532 | 1532 | } |
| 1533 | 1533 | add_filter('geodir_custom_field_output_html','geodir_cf_html',10,3); |
| 1534 | 1534 | |
@@ -1546,113 +1546,113 @@ discard block |
||
| 1546 | 1546 | */ |
| 1547 | 1547 | function geodir_cf_taxonomy($html,$location,$cf,$p=''){ |
| 1548 | 1548 | |
| 1549 | - // check we have the post value |
|
| 1550 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1551 | - else{ global $post;} |
|
| 1552 | - |
|
| 1553 | - if(!is_array($cf) && $cf!=''){ |
|
| 1554 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1555 | - if(!$cf){return NULL;} |
|
| 1556 | - } |
|
| 1557 | - |
|
| 1558 | - $html_var = $cf['htmlvar_name']; |
|
| 1559 | - |
|
| 1560 | - // Check if there is a location specific filter. |
|
| 1561 | - if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){ |
|
| 1562 | - /** |
|
| 1563 | - * Filter the taxonomy html by location. |
|
| 1564 | - * |
|
| 1565 | - * @param string $html The html to filter. |
|
| 1566 | - * @param array $cf The custom field array. |
|
| 1567 | - * @since 1.6.6 |
|
| 1568 | - */ |
|
| 1569 | - $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf); |
|
| 1570 | - } |
|
| 1571 | - |
|
| 1572 | - // Check if there is a custom field specific filter. |
|
| 1573 | - if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){ |
|
| 1574 | - /** |
|
| 1575 | - * Filter the taxonomy html by individual custom field. |
|
| 1576 | - * |
|
| 1577 | - * @param string $html The html to filter. |
|
| 1578 | - * @param string $location The location to output the html. |
|
| 1579 | - * @param array $cf The custom field array. |
|
| 1580 | - * @since 1.6.6 |
|
| 1581 | - */ |
|
| 1582 | - $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf); |
|
| 1583 | - } |
|
| 1584 | - |
|
| 1585 | - // Check if there is a custom field key specific filter. |
|
| 1586 | - if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){ |
|
| 1587 | - /** |
|
| 1588 | - * Filter the taxonomy html by field type key. |
|
| 1589 | - * |
|
| 1590 | - * @param string $html The html to filter. |
|
| 1591 | - * @param string $location The location to output the html. |
|
| 1592 | - * @param array $cf The custom field array. |
|
| 1593 | - * @since 1.6.6 |
|
| 1594 | - */ |
|
| 1595 | - $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1596 | - } |
|
| 1597 | - |
|
| 1598 | - // If not html then we run the standard output. |
|
| 1599 | - if(empty($html)){ |
|
| 1600 | - |
|
| 1601 | - if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) { |
|
| 1602 | - $post_taxonomy = $post->post_type . 'category'; |
|
| 1603 | - $field_value = $post->{$html_var}; |
|
| 1604 | - $links = array(); |
|
| 1605 | - $terms = array(); |
|
| 1606 | - $termsOrdered = array(); |
|
| 1607 | - if (!is_array($field_value)) { |
|
| 1608 | - $field_value = explode(",", trim($field_value, ",")); |
|
| 1609 | - } |
|
| 1610 | - |
|
| 1611 | - $field_value = array_unique($field_value); |
|
| 1612 | - |
|
| 1613 | - if (!empty($field_value)) { |
|
| 1614 | - foreach ($field_value as $term) { |
|
| 1615 | - $term = trim($term); |
|
| 1616 | - |
|
| 1617 | - if ($term != '') { |
|
| 1618 | - $term = get_term_by('id', $term, $html_var); |
|
| 1619 | - if (is_object($term)) { |
|
| 1620 | - $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>"; |
|
| 1621 | - $terms[] = $term; |
|
| 1622 | - } |
|
| 1623 | - } |
|
| 1624 | - } |
|
| 1625 | - if (!empty($links)) { |
|
| 1626 | - // order alphabetically |
|
| 1627 | - asort($links); |
|
| 1628 | - foreach (array_keys($links) as $key) { |
|
| 1629 | - $termsOrdered[$key] = $terms[$key]; |
|
| 1630 | - } |
|
| 1631 | - $terms = $termsOrdered; |
|
| 1632 | - } |
|
| 1633 | - } |
|
| 1634 | - $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : ''; |
|
| 1635 | - |
|
| 1636 | - if ($html_value != '') { |
|
| 1637 | - $field_icon = geodir_field_icon_proccess($cf); |
|
| 1638 | - if (strpos($field_icon, 'http') !== false) { |
|
| 1639 | - $field_icon_af = ''; |
|
| 1640 | - } else if ($field_icon == '') { |
|
| 1641 | - $field_icon_af = ''; |
|
| 1642 | - } else { |
|
| 1643 | - $field_icon_af = $field_icon; |
|
| 1644 | - $field_icon = ''; |
|
| 1645 | - } |
|
| 1646 | - |
|
| 1647 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1648 | - $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1649 | - $html .= '</span> ' . $html_value . '</div>'; |
|
| 1650 | - } |
|
| 1651 | - } |
|
| 1652 | - |
|
| 1653 | - } |
|
| 1654 | - |
|
| 1655 | - return $html; |
|
| 1549 | + // check we have the post value |
|
| 1550 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1551 | + else{ global $post;} |
|
| 1552 | + |
|
| 1553 | + if(!is_array($cf) && $cf!=''){ |
|
| 1554 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1555 | + if(!$cf){return NULL;} |
|
| 1556 | + } |
|
| 1557 | + |
|
| 1558 | + $html_var = $cf['htmlvar_name']; |
|
| 1559 | + |
|
| 1560 | + // Check if there is a location specific filter. |
|
| 1561 | + if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){ |
|
| 1562 | + /** |
|
| 1563 | + * Filter the taxonomy html by location. |
|
| 1564 | + * |
|
| 1565 | + * @param string $html The html to filter. |
|
| 1566 | + * @param array $cf The custom field array. |
|
| 1567 | + * @since 1.6.6 |
|
| 1568 | + */ |
|
| 1569 | + $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf); |
|
| 1570 | + } |
|
| 1571 | + |
|
| 1572 | + // Check if there is a custom field specific filter. |
|
| 1573 | + if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){ |
|
| 1574 | + /** |
|
| 1575 | + * Filter the taxonomy html by individual custom field. |
|
| 1576 | + * |
|
| 1577 | + * @param string $html The html to filter. |
|
| 1578 | + * @param string $location The location to output the html. |
|
| 1579 | + * @param array $cf The custom field array. |
|
| 1580 | + * @since 1.6.6 |
|
| 1581 | + */ |
|
| 1582 | + $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf); |
|
| 1583 | + } |
|
| 1584 | + |
|
| 1585 | + // Check if there is a custom field key specific filter. |
|
| 1586 | + if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){ |
|
| 1587 | + /** |
|
| 1588 | + * Filter the taxonomy html by field type key. |
|
| 1589 | + * |
|
| 1590 | + * @param string $html The html to filter. |
|
| 1591 | + * @param string $location The location to output the html. |
|
| 1592 | + * @param array $cf The custom field array. |
|
| 1593 | + * @since 1.6.6 |
|
| 1594 | + */ |
|
| 1595 | + $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1596 | + } |
|
| 1597 | + |
|
| 1598 | + // If not html then we run the standard output. |
|
| 1599 | + if(empty($html)){ |
|
| 1600 | + |
|
| 1601 | + if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) { |
|
| 1602 | + $post_taxonomy = $post->post_type . 'category'; |
|
| 1603 | + $field_value = $post->{$html_var}; |
|
| 1604 | + $links = array(); |
|
| 1605 | + $terms = array(); |
|
| 1606 | + $termsOrdered = array(); |
|
| 1607 | + if (!is_array($field_value)) { |
|
| 1608 | + $field_value = explode(",", trim($field_value, ",")); |
|
| 1609 | + } |
|
| 1610 | + |
|
| 1611 | + $field_value = array_unique($field_value); |
|
| 1612 | + |
|
| 1613 | + if (!empty($field_value)) { |
|
| 1614 | + foreach ($field_value as $term) { |
|
| 1615 | + $term = trim($term); |
|
| 1616 | + |
|
| 1617 | + if ($term != '') { |
|
| 1618 | + $term = get_term_by('id', $term, $html_var); |
|
| 1619 | + if (is_object($term)) { |
|
| 1620 | + $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>"; |
|
| 1621 | + $terms[] = $term; |
|
| 1622 | + } |
|
| 1623 | + } |
|
| 1624 | + } |
|
| 1625 | + if (!empty($links)) { |
|
| 1626 | + // order alphabetically |
|
| 1627 | + asort($links); |
|
| 1628 | + foreach (array_keys($links) as $key) { |
|
| 1629 | + $termsOrdered[$key] = $terms[$key]; |
|
| 1630 | + } |
|
| 1631 | + $terms = $termsOrdered; |
|
| 1632 | + } |
|
| 1633 | + } |
|
| 1634 | + $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : ''; |
|
| 1635 | + |
|
| 1636 | + if ($html_value != '') { |
|
| 1637 | + $field_icon = geodir_field_icon_proccess($cf); |
|
| 1638 | + if (strpos($field_icon, 'http') !== false) { |
|
| 1639 | + $field_icon_af = ''; |
|
| 1640 | + } else if ($field_icon == '') { |
|
| 1641 | + $field_icon_af = ''; |
|
| 1642 | + } else { |
|
| 1643 | + $field_icon_af = $field_icon; |
|
| 1644 | + $field_icon = ''; |
|
| 1645 | + } |
|
| 1646 | + |
|
| 1647 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1648 | + $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : ''; |
|
| 1649 | + $html .= '</span> ' . $html_value . '</div>'; |
|
| 1650 | + } |
|
| 1651 | + } |
|
| 1652 | + |
|
| 1653 | + } |
|
| 1654 | + |
|
| 1655 | + return $html; |
|
| 1656 | 1656 | } |
| 1657 | 1657 | add_filter('geodir_custom_field_output_taxonomy','geodir_cf_taxonomy',10,3); |
| 1658 | 1658 | |
@@ -1669,161 +1669,161 @@ discard block |
||
| 1669 | 1669 | */ |
| 1670 | 1670 | function geodir_cf_address($html,$location,$cf,$p=''){ |
| 1671 | 1671 | |
| 1672 | - // check we have the post value |
|
| 1673 | - if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1674 | - else{ global $post;} |
|
| 1675 | - |
|
| 1676 | - if(!is_array($cf) && $cf!=''){ |
|
| 1677 | - $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1678 | - if(!$cf){return NULL;} |
|
| 1679 | - } |
|
| 1680 | - |
|
| 1681 | - $html_var = $cf['htmlvar_name']; |
|
| 1682 | - |
|
| 1683 | - // Check if there is a location specific filter. |
|
| 1684 | - if(has_filter("geodir_custom_field_output_address_loc_{$location}")){ |
|
| 1685 | - /** |
|
| 1686 | - * Filter the address html by location. |
|
| 1687 | - * |
|
| 1688 | - * @param string $html The html to filter. |
|
| 1689 | - * @param array $cf The custom field array. |
|
| 1690 | - * @since 1.6.6 |
|
| 1691 | - */ |
|
| 1692 | - $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf); |
|
| 1693 | - } |
|
| 1694 | - |
|
| 1695 | - // Check if there is a custom field specific filter. |
|
| 1696 | - if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){ |
|
| 1697 | - /** |
|
| 1698 | - * Filter the address html by individual custom field. |
|
| 1699 | - * |
|
| 1700 | - * @param string $html The html to filter. |
|
| 1701 | - * @param string $location The location to output the html. |
|
| 1702 | - * @param array $cf The custom field array. |
|
| 1703 | - * @since 1.6.6 |
|
| 1704 | - */ |
|
| 1705 | - $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf); |
|
| 1706 | - } |
|
| 1707 | - |
|
| 1708 | - // Check if there is a custom field key specific filter. |
|
| 1709 | - if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){ |
|
| 1710 | - /** |
|
| 1711 | - * Filter the address html by field type key. |
|
| 1712 | - * |
|
| 1713 | - * @param string $html The html to filter. |
|
| 1714 | - * @param string $location The location to output the html. |
|
| 1715 | - * @param array $cf The custom field array. |
|
| 1716 | - * @since 1.6.6 |
|
| 1717 | - */ |
|
| 1718 | - $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1719 | - } |
|
| 1720 | - |
|
| 1721 | - // If not html then we run the standard output. |
|
| 1722 | - if(empty($html)){ |
|
| 1723 | - |
|
| 1724 | - global $preview; |
|
| 1725 | - $html_var = $cf['htmlvar_name'] . '_address'; |
|
| 1726 | - |
|
| 1727 | - if ($cf['extra_fields']) { |
|
| 1728 | - |
|
| 1729 | - $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 1730 | - |
|
| 1731 | - $addition_fields = ''; |
|
| 1732 | - |
|
| 1733 | - if (!empty($extra_fields)) { |
|
| 1734 | - |
|
| 1735 | - $show_city_in_address = false; |
|
| 1736 | - if (isset($extra_fields['show_city']) && $extra_fields['show_city']) { |
|
| 1737 | - $show_city_in_address = true; |
|
| 1738 | - } |
|
| 1739 | - /** |
|
| 1740 | - * Filter "show city in address" value. |
|
| 1741 | - * |
|
| 1742 | - * @since 1.0.0 |
|
| 1743 | - */ |
|
| 1744 | - $show_city_in_address = apply_filters('geodir_show_city_in_address', $show_city_in_address); |
|
| 1745 | - |
|
| 1746 | - |
|
| 1747 | - $show_region_in_address = false; |
|
| 1748 | - if (isset($extra_fields['show_region']) && $extra_fields['show_region']) { |
|
| 1749 | - $show_region_in_address = true; |
|
| 1750 | - } |
|
| 1751 | - /** |
|
| 1752 | - * Filter "show region in address" value. |
|
| 1753 | - * |
|
| 1754 | - * @since 1.6.6 |
|
| 1755 | - */ |
|
| 1756 | - $show_region_in_address = apply_filters('geodir_show_region_in_address', $show_region_in_address); |
|
| 1757 | - |
|
| 1758 | - $show_country_in_address = false; |
|
| 1759 | - if (isset($extra_fields['show_country']) && $extra_fields['show_country']) { |
|
| 1760 | - $show_country_in_address = true; |
|
| 1761 | - } |
|
| 1762 | - /** |
|
| 1763 | - * Filter "show country in address" value. |
|
| 1764 | - * |
|
| 1765 | - * @since 1.6.6 |
|
| 1766 | - */ |
|
| 1767 | - $show_country_in_address = apply_filters('geodir_show_country_in_address', $show_country_in_address); |
|
| 1768 | - |
|
| 1769 | - $show_zip_in_address = false; |
|
| 1770 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
| 1771 | - $show_zip_in_address = true; |
|
| 1772 | - } |
|
| 1773 | - /** |
|
| 1774 | - * Filter "show zip in address" value. |
|
| 1775 | - * |
|
| 1776 | - * @since 1.6.6 |
|
| 1777 | - */ |
|
| 1778 | - $show_zip_in_address = apply_filters('geodir_show_zip_in_address', $show_zip_in_address); |
|
| 1779 | - |
|
| 1780 | - |
|
| 1781 | - } |
|
| 1782 | - |
|
| 1783 | - } |
|
| 1784 | - |
|
| 1785 | - |
|
| 1786 | - if ($post->{$html_var}) { |
|
| 1787 | - |
|
| 1788 | - $field_icon = geodir_field_icon_proccess( $cf ); |
|
| 1789 | - if ( strpos( $field_icon, 'http' ) !== false ) { |
|
| 1790 | - $field_icon_af = ''; |
|
| 1791 | - } elseif ( $field_icon == '' ) { |
|
| 1792 | - $field_icon_af = '<i class="fa fa-home"></i>'; |
|
| 1793 | - } else { |
|
| 1794 | - $field_icon_af = $field_icon; |
|
| 1795 | - $field_icon = ''; |
|
| 1796 | - } |
|
| 1672 | + // check we have the post value |
|
| 1673 | + if(is_int($p)){$post = geodir_get_post_info($p);} |
|
| 1674 | + else{ global $post;} |
|
| 1675 | + |
|
| 1676 | + if(!is_array($cf) && $cf!=''){ |
|
| 1677 | + $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type); |
|
| 1678 | + if(!$cf){return NULL;} |
|
| 1679 | + } |
|
| 1680 | + |
|
| 1681 | + $html_var = $cf['htmlvar_name']; |
|
| 1682 | + |
|
| 1683 | + // Check if there is a location specific filter. |
|
| 1684 | + if(has_filter("geodir_custom_field_output_address_loc_{$location}")){ |
|
| 1685 | + /** |
|
| 1686 | + * Filter the address html by location. |
|
| 1687 | + * |
|
| 1688 | + * @param string $html The html to filter. |
|
| 1689 | + * @param array $cf The custom field array. |
|
| 1690 | + * @since 1.6.6 |
|
| 1691 | + */ |
|
| 1692 | + $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf); |
|
| 1693 | + } |
|
| 1694 | + |
|
| 1695 | + // Check if there is a custom field specific filter. |
|
| 1696 | + if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){ |
|
| 1697 | + /** |
|
| 1698 | + * Filter the address html by individual custom field. |
|
| 1699 | + * |
|
| 1700 | + * @param string $html The html to filter. |
|
| 1701 | + * @param string $location The location to output the html. |
|
| 1702 | + * @param array $cf The custom field array. |
|
| 1703 | + * @since 1.6.6 |
|
| 1704 | + */ |
|
| 1705 | + $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf); |
|
| 1706 | + } |
|
| 1707 | + |
|
| 1708 | + // Check if there is a custom field key specific filter. |
|
| 1709 | + if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){ |
|
| 1710 | + /** |
|
| 1711 | + * Filter the address html by field type key. |
|
| 1712 | + * |
|
| 1713 | + * @param string $html The html to filter. |
|
| 1714 | + * @param string $location The location to output the html. |
|
| 1715 | + * @param array $cf The custom field array. |
|
| 1716 | + * @since 1.6.6 |
|
| 1717 | + */ |
|
| 1718 | + $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf); |
|
| 1719 | + } |
|
| 1720 | + |
|
| 1721 | + // If not html then we run the standard output. |
|
| 1722 | + if(empty($html)){ |
|
| 1723 | + |
|
| 1724 | + global $preview; |
|
| 1725 | + $html_var = $cf['htmlvar_name'] . '_address'; |
|
| 1726 | + |
|
| 1727 | + if ($cf['extra_fields']) { |
|
| 1728 | + |
|
| 1729 | + $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 1730 | + |
|
| 1731 | + $addition_fields = ''; |
|
| 1732 | + |
|
| 1733 | + if (!empty($extra_fields)) { |
|
| 1734 | + |
|
| 1735 | + $show_city_in_address = false; |
|
| 1736 | + if (isset($extra_fields['show_city']) && $extra_fields['show_city']) { |
|
| 1737 | + $show_city_in_address = true; |
|
| 1738 | + } |
|
| 1739 | + /** |
|
| 1740 | + * Filter "show city in address" value. |
|
| 1741 | + * |
|
| 1742 | + * @since 1.0.0 |
|
| 1743 | + */ |
|
| 1744 | + $show_city_in_address = apply_filters('geodir_show_city_in_address', $show_city_in_address); |
|
| 1745 | + |
|
| 1746 | + |
|
| 1747 | + $show_region_in_address = false; |
|
| 1748 | + if (isset($extra_fields['show_region']) && $extra_fields['show_region']) { |
|
| 1749 | + $show_region_in_address = true; |
|
| 1750 | + } |
|
| 1751 | + /** |
|
| 1752 | + * Filter "show region in address" value. |
|
| 1753 | + * |
|
| 1754 | + * @since 1.6.6 |
|
| 1755 | + */ |
|
| 1756 | + $show_region_in_address = apply_filters('geodir_show_region_in_address', $show_region_in_address); |
|
| 1757 | + |
|
| 1758 | + $show_country_in_address = false; |
|
| 1759 | + if (isset($extra_fields['show_country']) && $extra_fields['show_country']) { |
|
| 1760 | + $show_country_in_address = true; |
|
| 1761 | + } |
|
| 1762 | + /** |
|
| 1763 | + * Filter "show country in address" value. |
|
| 1764 | + * |
|
| 1765 | + * @since 1.6.6 |
|
| 1766 | + */ |
|
| 1767 | + $show_country_in_address = apply_filters('geodir_show_country_in_address', $show_country_in_address); |
|
| 1768 | + |
|
| 1769 | + $show_zip_in_address = false; |
|
| 1770 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
| 1771 | + $show_zip_in_address = true; |
|
| 1772 | + } |
|
| 1773 | + /** |
|
| 1774 | + * Filter "show zip in address" value. |
|
| 1775 | + * |
|
| 1776 | + * @since 1.6.6 |
|
| 1777 | + */ |
|
| 1778 | + $show_zip_in_address = apply_filters('geodir_show_zip_in_address', $show_zip_in_address); |
|
| 1779 | + |
|
| 1780 | + |
|
| 1781 | + } |
|
| 1782 | + |
|
| 1783 | + } |
|
| 1784 | + |
|
| 1785 | + |
|
| 1786 | + if ($post->{$html_var}) { |
|
| 1787 | + |
|
| 1788 | + $field_icon = geodir_field_icon_proccess( $cf ); |
|
| 1789 | + if ( strpos( $field_icon, 'http' ) !== false ) { |
|
| 1790 | + $field_icon_af = ''; |
|
| 1791 | + } elseif ( $field_icon == '' ) { |
|
| 1792 | + $field_icon_af = '<i class="fa fa-home"></i>'; |
|
| 1793 | + } else { |
|
| 1794 | + $field_icon_af = $field_icon; |
|
| 1795 | + $field_icon = ''; |
|
| 1796 | + } |
|
| 1797 | 1797 | |
| 1798 | 1798 | |
| 1799 | 1799 | |
| 1800 | - $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1801 | - $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1802 | - $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ' '; |
|
| 1803 | - $html .= '</span>'; |
|
| 1800 | + $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;" itemscope itemtype="https://schema.org/PostalAddress">'; |
|
| 1801 | + $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af; |
|
| 1802 | + $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : ' '; |
|
| 1803 | + $html .= '</span>'; |
|
| 1804 | 1804 | |
| 1805 | - if ( isset($post->post_address) ) { |
|
| 1806 | - $html .= '<span itemprop="streetAddress">' . $post->post_address . '</span><br>'; |
|
| 1807 | - } |
|
| 1808 | - if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) { |
|
| 1809 | - $html .= '<span itemprop="addressLocality">' . $post->post_city . '</span><br>'; |
|
| 1810 | - } |
|
| 1811 | - if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) { |
|
| 1812 | - $html .= '<span itemprop="addressRegion">' . $post->post_region . '</span><br>'; |
|
| 1813 | - } |
|
| 1814 | - if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) { |
|
| 1815 | - $html .= '<span itemprop="postalCode">' . $post->post_zip . '</span><br>'; |
|
| 1816 | - } |
|
| 1817 | - if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) { |
|
| 1818 | - $html .= '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span><br>'; |
|
| 1819 | - } |
|
| 1820 | - $html .= '</div>'; |
|
| 1805 | + if ( isset($post->post_address) ) { |
|
| 1806 | + $html .= '<span itemprop="streetAddress">' . $post->post_address . '</span><br>'; |
|
| 1807 | + } |
|
| 1808 | + if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) { |
|
| 1809 | + $html .= '<span itemprop="addressLocality">' . $post->post_city . '</span><br>'; |
|
| 1810 | + } |
|
| 1811 | + if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) { |
|
| 1812 | + $html .= '<span itemprop="addressRegion">' . $post->post_region . '</span><br>'; |
|
| 1813 | + } |
|
| 1814 | + if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) { |
|
| 1815 | + $html .= '<span itemprop="postalCode">' . $post->post_zip . '</span><br>'; |
|
| 1816 | + } |
|
| 1817 | + if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) { |
|
| 1818 | + $html .= '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span><br>'; |
|
| 1819 | + } |
|
| 1820 | + $html .= '</div>'; |
|
| 1821 | 1821 | |
| 1822 | - } |
|
| 1822 | + } |
|
| 1823 | 1823 | |
| 1824 | - } |
|
| 1824 | + } |
|
| 1825 | 1825 | |
| 1826 | 1826 | |
| 1827 | - return $html; |
|
| 1827 | + return $html; |
|
| 1828 | 1828 | } |
| 1829 | 1829 | add_filter('geodir_custom_field_output_address','geodir_cf_address',10,3); |
| 1830 | 1830 | \ No newline at end of file |
@@ -112,10 +112,11 @@ discard block |
||
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
|
| 115 | - if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) |
|
| 116 | - geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
| 117 | - else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) |
|
| 118 | - geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
| 115 | + if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) { |
|
| 116 | + geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
| 117 | + } else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) { |
|
| 118 | + geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
| 119 | + } |
|
| 119 | 120 | } |
| 120 | 121 | |
| 121 | 122 | if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
|
@@ -137,12 +138,13 @@ discard block |
||
| 137 | 138 | if (current_user_can('manage_options')) {
|
| 138 | 139 | switch ($_REQUEST['geodir_autofill']): |
| 139 | 140 | case "geodir_dummy_delete" : |
| 140 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 141 | - return; |
|
| 141 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) { |
|
| 142 | + return; |
|
| 143 | + } |
|
| 142 | 144 | |
| 143 | 145 | $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : ''; |
| 144 | - if (isset($_REQUEST['posttype'])) |
|
| 145 | - /** |
|
| 146 | + if (isset($_REQUEST['posttype'])) { |
|
| 147 | + /** |
|
| 146 | 148 | * Used to delete the dummy post data per post type. |
| 147 | 149 | * |
| 148 | 150 | * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. |
@@ -151,11 +153,13 @@ discard block |
||
| 151 | 153 | * @param string $posttype The post type to insert. |
| 152 | 154 | * @param string $datatype The type of dummy data to insert. |
| 153 | 155 | */ |
| 154 | - do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
|
|
| 156 | + do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype); |
|
| 157 | + } |
|
| 155 | 158 | break; |
| 156 | 159 | case "geodir_dummy_insert" : |
| 157 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 158 | - return; |
|
| 160 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) { |
|
| 161 | + return; |
|
| 162 | + } |
|
| 159 | 163 | |
| 160 | 164 | global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; |
| 161 | 165 | $city_bound_lat1 = $_REQUEST['city_bound_lat1']; |
@@ -254,8 +258,9 @@ discard block |
||
| 254 | 258 | } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
| 255 | 259 | $redirect_to = get_permalink(geodir_add_listing_page_id()); |
| 256 | 260 | $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
| 257 | - } else |
|
| 258 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 261 | + } else { |
|
| 262 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 263 | + } |
|
| 259 | 264 | |
| 260 | 265 | wp_redirect($redirect_to); |
| 261 | 266 | } else {
|
@@ -268,9 +273,9 @@ discard block |
||
| 268 | 273 | |
| 269 | 274 | $gd_session->un_set('listing');
|
| 270 | 275 | |
| 271 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) |
|
| 272 | - wp_redirect(get_permalink($_REQUEST['pid'])); |
|
| 273 | - else {
|
|
| 276 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) { |
|
| 277 | + wp_redirect(get_permalink($_REQUEST['pid'])); |
|
| 278 | + } else {
|
|
| 274 | 279 | geodir_remove_temp_images(); |
| 275 | 280 | wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
|
| 276 | 281 | } |
@@ -298,8 +303,9 @@ discard block |
||
| 298 | 303 | } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
| 299 | 304 | $redirect_to = get_permalink(geodir_add_listing_page_id()); |
| 300 | 305 | $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
| 301 | - } else |
|
| 302 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 306 | + } else { |
|
| 307 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 308 | + } |
|
| 303 | 309 | |
| 304 | 310 | $gd_session->un_set('listing');
|
| 305 | 311 | wp_redirect($redirect_to); |
@@ -320,8 +326,9 @@ discard block |
||
| 320 | 326 | $lastid = wp_delete_post($_REQUEST['pid']); |
| 321 | 327 | } |
| 322 | 328 | |
| 323 | - if ($lastid && !is_wp_error($lastid)) |
|
| 324 | - wp_redirect($_SERVER['HTTP_REFERER']); |
|
| 329 | + if ($lastid && !is_wp_error($lastid)) { |
|
| 330 | + wp_redirect($_SERVER['HTTP_REFERER']); |
|
| 331 | + } |
|
| 325 | 332 | |
| 326 | 333 | //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
|
| 327 | 334 | } |
@@ -16,22 +16,22 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | function geodir_on_wp_loaded() |
| 18 | 18 | {
|
| 19 | - /** |
|
| 20 | - * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms. |
|
| 21 | - * |
|
| 22 | - * @since 1.0.0 |
|
| 23 | - */ |
|
| 24 | - do_action('giodir_handle_request_plugins_loaded');
|
|
| 25 | - global $wpdb; |
|
| 19 | + /** |
|
| 20 | + * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms. |
|
| 21 | + * |
|
| 22 | + * @since 1.0.0 |
|
| 23 | + */ |
|
| 24 | + do_action('giodir_handle_request_plugins_loaded');
|
|
| 25 | + global $wpdb; |
|
| 26 | 26 | |
| 27 | 27 | |
| 28 | - if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') {
|
|
| 29 | - geodir_send_inquiry($_REQUEST); // function in custom_functions.php |
|
| 28 | + if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') {
|
|
| 29 | + geodir_send_inquiry($_REQUEST); // function in custom_functions.php |
|
| 30 | 30 | |
| 31 | - } elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') {
|
|
| 32 | - geodir_send_friend($_REQUEST); // function in custom_functions.php |
|
| 31 | + } elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') {
|
|
| 32 | + geodir_send_friend($_REQUEST); // function in custom_functions.php |
|
| 33 | 33 | |
| 34 | - } |
|
| 34 | + } |
|
| 35 | 35 | |
| 36 | 36 | } |
| 37 | 37 | |
@@ -44,9 +44,9 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | function geodir_on_wp() |
| 46 | 46 | {
|
| 47 | - if(geodir_is_page('login')) {
|
|
| 48 | - geodir_user_signup(); |
|
| 49 | - } |
|
| 47 | + if(geodir_is_page('login')) {
|
|
| 48 | + geodir_user_signup(); |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | 51 | } |
| 52 | 52 | |
@@ -59,32 +59,32 @@ discard block |
||
| 59 | 59 | */ |
| 60 | 60 | function geodir_on_init() |
| 61 | 61 | {
|
| 62 | - /** |
|
| 63 | - * Called on the wp_init WP hook at the start of the geodir_on_init() function. |
|
| 64 | - * |
|
| 65 | - * @since 1.0.0 |
|
| 66 | - */ |
|
| 67 | - do_action('giodir_handle_request');
|
|
| 68 | - global $wpdb; |
|
| 62 | + /** |
|
| 63 | + * Called on the wp_init WP hook at the start of the geodir_on_init() function. |
|
| 64 | + * |
|
| 65 | + * @since 1.0.0 |
|
| 66 | + */ |
|
| 67 | + do_action('giodir_handle_request');
|
|
| 68 | + global $wpdb; |
|
| 69 | 69 | |
| 70 | 70 | |
| 71 | 71 | |
| 72 | 72 | |
| 73 | - if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) {
|
|
| 74 | - show_admin_bar(false); |
|
| 75 | - } |
|
| 73 | + if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) {
|
|
| 74 | + show_admin_bar(false); |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | 77 | |
| 78 | - if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') {
|
|
| 79 | - /** |
|
| 80 | - * Contains map marker functions. |
|
| 81 | - * |
|
| 82 | - * @since 1.0.0 |
|
| 83 | - * @package GeoDirectory |
|
| 84 | - */ |
|
| 85 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 86 | - die; |
|
| 87 | - } |
|
| 78 | + if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') {
|
|
| 79 | + /** |
|
| 80 | + * Contains map marker functions. |
|
| 81 | + * |
|
| 82 | + * @since 1.0.0 |
|
| 83 | + * @package GeoDirectory |
|
| 84 | + */ |
|
| 85 | + include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 86 | + die; |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | 89 | |
| 90 | 90 | |
@@ -104,294 +104,294 @@ discard block |
||
| 104 | 104 | * @todo check if nonce is required here and if so add one. |
| 105 | 105 | */ |
| 106 | 106 | function geodir_ajax_handler() {
|
| 107 | - global $wpdb, $gd_session,$post; |
|
| 107 | + global $wpdb, $gd_session,$post; |
|
| 108 | 108 | |
| 109 | - if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
|
|
| 109 | + if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
|
|
| 110 | 110 | $gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']);
|
| 111 | - echo '1'; |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
|
|
| 115 | - if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) |
|
| 116 | - geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
| 117 | - else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) |
|
| 118 | - geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
|
|
| 122 | - if (current_user_can('manage_options')) {
|
|
| 123 | - /** |
|
| 124 | - * Contains admin ajax handling functions. |
|
| 125 | - * |
|
| 126 | - * @since 1.0.0 |
|
| 127 | - * @package GeoDirectory |
|
| 128 | - */ |
|
| 129 | - include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
| 130 | - } else {
|
|
| 131 | - wp_redirect(geodir_login_url()); |
|
| 132 | - gd_die(); |
|
| 133 | - } |
|
| 134 | - } |
|
| 135 | - |
|
| 136 | - if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) {
|
|
| 137 | - if (current_user_can('manage_options')) {
|
|
| 138 | - switch ($_REQUEST['geodir_autofill']): |
|
| 139 | - case "geodir_dummy_delete" : |
|
| 140 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 141 | - return; |
|
| 142 | - |
|
| 143 | - $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : ''; |
|
| 144 | - if (isset($_REQUEST['posttype'])) |
|
| 145 | - /** |
|
| 146 | - * Used to delete the dummy post data per post type. |
|
| 147 | - * |
|
| 148 | - * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. |
|
| 149 | - * |
|
| 150 | - * @since 1.6.11 |
|
| 151 | - * @param string $posttype The post type to insert. |
|
| 152 | - * @param string $datatype The type of dummy data to insert. |
|
| 153 | - */ |
|
| 154 | - do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
|
|
| 155 | - break; |
|
| 156 | - case "geodir_dummy_insert" : |
|
| 157 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 158 | - return; |
|
| 159 | - |
|
| 160 | - global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; |
|
| 161 | - $city_bound_lat1 = $_REQUEST['city_bound_lat1']; |
|
| 162 | - $city_bound_lng1 = $_REQUEST['city_bound_lng1']; |
|
| 163 | - $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
|
| 164 | - $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
|
| 165 | - |
|
| 166 | - if (isset($_REQUEST['posttype'])){
|
|
| 167 | - /** |
|
| 168 | - * Used to insert the dummy post data per post type. |
|
| 169 | - * |
|
| 170 | - * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype']. |
|
| 171 | - * |
|
| 172 | - * @since 1.6.11 |
|
| 173 | - * @param string $posttype The post type to insert. |
|
| 174 | - * @param string $datatype The type of dummy data to insert. |
|
| 175 | - * @param int $post_index The item number to insert. |
|
| 176 | - */ |
|
| 177 | - do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
|
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - |
|
| 181 | - break; |
|
| 182 | - endswitch; |
|
| 183 | - } else {
|
|
| 184 | - wp_redirect(geodir_login_url()); |
|
| 185 | - exit(); |
|
| 186 | - } |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') {
|
|
| 190 | - |
|
| 191 | - if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
|
|
| 192 | - $template = locate_template(array("geodirectory/popup-forms.php"));
|
|
| 193 | - if (!$template) {
|
|
| 194 | - $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
| 195 | - } |
|
| 196 | - require_once($template); |
|
| 197 | - } |
|
| 198 | - |
|
| 199 | - gd_die(); |
|
| 200 | - } |
|
| 201 | - |
|
| 202 | - /*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){
|
|
| 111 | + echo '1'; |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
|
|
| 115 | + if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) |
|
| 116 | + geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
| 117 | + else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) |
|
| 118 | + geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
|
|
| 122 | + if (current_user_can('manage_options')) {
|
|
| 123 | + /** |
|
| 124 | + * Contains admin ajax handling functions. |
|
| 125 | + * |
|
| 126 | + * @since 1.0.0 |
|
| 127 | + * @package GeoDirectory |
|
| 128 | + */ |
|
| 129 | + include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
| 130 | + } else {
|
|
| 131 | + wp_redirect(geodir_login_url()); |
|
| 132 | + gd_die(); |
|
| 133 | + } |
|
| 134 | + } |
|
| 135 | + |
|
| 136 | + if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) {
|
|
| 137 | + if (current_user_can('manage_options')) {
|
|
| 138 | + switch ($_REQUEST['geodir_autofill']): |
|
| 139 | + case "geodir_dummy_delete" : |
|
| 140 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 141 | + return; |
|
| 142 | + |
|
| 143 | + $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : ''; |
|
| 144 | + if (isset($_REQUEST['posttype'])) |
|
| 145 | + /** |
|
| 146 | + * Used to delete the dummy post data per post type. |
|
| 147 | + * |
|
| 148 | + * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. |
|
| 149 | + * |
|
| 150 | + * @since 1.6.11 |
|
| 151 | + * @param string $posttype The post type to insert. |
|
| 152 | + * @param string $datatype The type of dummy data to insert. |
|
| 153 | + */ |
|
| 154 | + do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
|
|
| 155 | + break; |
|
| 156 | + case "geodir_dummy_insert" : |
|
| 157 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
| 158 | + return; |
|
| 159 | + |
|
| 160 | + global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; |
|
| 161 | + $city_bound_lat1 = $_REQUEST['city_bound_lat1']; |
|
| 162 | + $city_bound_lng1 = $_REQUEST['city_bound_lng1']; |
|
| 163 | + $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
|
| 164 | + $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
|
| 165 | + |
|
| 166 | + if (isset($_REQUEST['posttype'])){
|
|
| 167 | + /** |
|
| 168 | + * Used to insert the dummy post data per post type. |
|
| 169 | + * |
|
| 170 | + * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype']. |
|
| 171 | + * |
|
| 172 | + * @since 1.6.11 |
|
| 173 | + * @param string $posttype The post type to insert. |
|
| 174 | + * @param string $datatype The type of dummy data to insert. |
|
| 175 | + * @param int $post_index The item number to insert. |
|
| 176 | + */ |
|
| 177 | + do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
|
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + |
|
| 181 | + break; |
|
| 182 | + endswitch; |
|
| 183 | + } else {
|
|
| 184 | + wp_redirect(geodir_login_url()); |
|
| 185 | + exit(); |
|
| 186 | + } |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') {
|
|
| 190 | + |
|
| 191 | + if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
|
|
| 192 | + $template = locate_template(array("geodirectory/popup-forms.php"));
|
|
| 193 | + if (!$template) {
|
|
| 194 | + $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
| 195 | + } |
|
| 196 | + require_once($template); |
|
| 197 | + } |
|
| 198 | + |
|
| 199 | + gd_die(); |
|
| 200 | + } |
|
| 201 | + |
|
| 202 | + /*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){
|
|
| 203 | 203 | include_once ( geodir_plugin_path() . '/geodirectory-templates/advance-search-form.php'); |
| 204 | 204 | }*/ |
| 205 | 205 | |
| 206 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') {
|
|
| 207 | - /** |
|
| 208 | - * Contains map marker functions. |
|
| 209 | - * |
|
| 210 | - * @since 1.0.0 |
|
| 211 | - * @package GeoDirectory |
|
| 212 | - */ |
|
| 213 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 214 | - } |
|
| 215 | - |
|
| 216 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
|
|
| 217 | - if (is_user_logged_in()) {
|
|
| 218 | - switch ($_REQUEST['ajax_action']): |
|
| 219 | - case "add" : |
|
| 220 | - geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
| 221 | - break; |
|
| 222 | - case "remove" : |
|
| 223 | - geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
| 224 | - break; |
|
| 225 | - endswitch; |
|
| 226 | - } else {
|
|
| 227 | - wp_redirect(geodir_login_url()); |
|
| 228 | - exit(); |
|
| 229 | - } |
|
| 230 | - } |
|
| 231 | - |
|
| 232 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') {
|
|
| 233 | - |
|
| 234 | - $is_current_user_owner = true; |
|
| 235 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 236 | - $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
| 237 | - } |
|
| 238 | - |
|
| 239 | - $request = $gd_session->get('listing');
|
|
| 240 | - |
|
| 241 | - if (is_user_logged_in() && $is_current_user_owner) {
|
|
| 242 | - |
|
| 243 | - switch ($_REQUEST['ajax_action']): |
|
| 244 | - case "add": |
|
| 245 | - case "update": |
|
| 246 | - |
|
| 247 | - if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
|
|
| 248 | - $last_id = geodir_save_listing(); |
|
| 249 | - |
|
| 250 | - if ($last_id) {
|
|
| 251 | - //$redirect_to = get_permalink( $last_id ); |
|
| 252 | - $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
|
|
| 253 | - |
|
| 254 | - } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 255 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 256 | - $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
|
| 257 | - } else |
|
| 258 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 259 | - |
|
| 260 | - wp_redirect($redirect_to); |
|
| 261 | - } else {
|
|
| 262 | - $gd_session->un_set('listing');
|
|
| 263 | - wp_redirect(home_url()); |
|
| 264 | - } |
|
| 265 | - |
|
| 266 | - break; |
|
| 267 | - case "cancel" : |
|
| 268 | - |
|
| 269 | - $gd_session->un_set('listing');
|
|
| 270 | - |
|
| 271 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) |
|
| 272 | - wp_redirect(get_permalink($_REQUEST['pid'])); |
|
| 273 | - else {
|
|
| 274 | - geodir_remove_temp_images(); |
|
| 275 | - wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
|
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - break; |
|
| 279 | - |
|
| 280 | - case "publish" : |
|
| 281 | - |
|
| 282 | - if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
|
|
| 283 | - |
|
| 284 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 285 | - $new_post = array(); |
|
| 286 | - $new_post['ID'] = $_REQUEST['pid']; |
|
| 287 | - |
|
| 288 | - $lastid = wp_update_post($new_post); |
|
| 289 | - |
|
| 290 | - $gd_session->un_set('listing');
|
|
| 291 | - wp_redirect(get_permalink($lastid)); |
|
| 292 | - } else {
|
|
| 293 | - $last_id = geodir_save_listing(); |
|
| 294 | - |
|
| 295 | - if ($last_id) {
|
|
| 296 | - //$redirect_to = get_permalink( $last_id ); |
|
| 297 | - $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
|
|
| 298 | - } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 299 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 300 | - $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
|
| 301 | - } else |
|
| 302 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 303 | - |
|
| 304 | - $gd_session->un_set('listing');
|
|
| 305 | - wp_redirect($redirect_to); |
|
| 306 | - } |
|
| 307 | - } else {
|
|
| 308 | - $gd_session->un_set('listing');
|
|
| 309 | - wp_redirect(home_url()); |
|
| 310 | - } |
|
| 311 | - |
|
| 312 | - break; |
|
| 313 | - case "delete" : |
|
| 314 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 315 | - global $current_user; |
|
| 316 | - |
|
| 317 | - if (get_option('geodir_disable_perm_delete')) {
|
|
| 318 | - $lastid = wp_trash_post($_REQUEST['pid']); |
|
| 319 | - } else {
|
|
| 320 | - $lastid = wp_delete_post($_REQUEST['pid']); |
|
| 321 | - } |
|
| 322 | - |
|
| 323 | - if ($lastid && !is_wp_error($lastid)) |
|
| 324 | - wp_redirect($_SERVER['HTTP_REFERER']); |
|
| 325 | - |
|
| 326 | - //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
|
|
| 327 | - } |
|
| 328 | - break; |
|
| 329 | - endswitch; |
|
| 330 | - |
|
| 331 | - $gd_session->un_set('listing');
|
|
| 332 | - } else {
|
|
| 333 | - $gd_session->un_set('listing');
|
|
| 334 | - wp_redirect(geodir_login_url()); |
|
| 335 | - exit(); |
|
| 336 | - } |
|
| 337 | - } |
|
| 338 | - |
|
| 339 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') {
|
|
| 340 | - /** |
|
| 341 | - * Contains registration and login functions. |
|
| 342 | - * @todo Fix the file path. |
|
| 343 | - * |
|
| 344 | - * @since 1.0.0 |
|
| 345 | - * @package GeoDirectory |
|
| 346 | - */ |
|
| 347 | - include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
| 348 | - } |
|
| 349 | - |
|
| 350 | - if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
|
|
| 351 | - $args = array('taxonomy' => sanitize_text_field($_REQUEST['term']));
|
|
| 352 | - if (!empty($_REQUEST['parent_only'])) {
|
|
| 353 | - $args['parent'] = 0; |
|
| 354 | - } |
|
| 355 | - $terms_o = get_terms($args); |
|
| 356 | - |
|
| 357 | - // Skip terms which has no listing |
|
| 358 | - if (!empty($terms_o)) {
|
|
| 359 | - $filter_terms = array(); |
|
| 360 | - |
|
| 361 | - foreach ($terms_o as $term) {
|
|
| 362 | - if (isset($term->count) && $term->count > 0) {
|
|
| 363 | - $filter_terms[] = $term; |
|
| 364 | - } |
|
| 365 | - } |
|
| 366 | - $terms_o = $filter_terms; |
|
| 367 | - } |
|
| 368 | - |
|
| 369 | - $terms = geodir_sort_terms($terms_o, 'count'); |
|
| 370 | - geodir_helper_cat_list_output($terms, intval($_REQUEST['limit'])); |
|
| 371 | - exit(); |
|
| 372 | - } |
|
| 373 | - |
|
| 374 | - gd_die(); |
|
| 206 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') {
|
|
| 207 | + /** |
|
| 208 | + * Contains map marker functions. |
|
| 209 | + * |
|
| 210 | + * @since 1.0.0 |
|
| 211 | + * @package GeoDirectory |
|
| 212 | + */ |
|
| 213 | + include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 214 | + } |
|
| 215 | + |
|
| 216 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
|
|
| 217 | + if (is_user_logged_in()) {
|
|
| 218 | + switch ($_REQUEST['ajax_action']): |
|
| 219 | + case "add" : |
|
| 220 | + geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
| 221 | + break; |
|
| 222 | + case "remove" : |
|
| 223 | + geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
| 224 | + break; |
|
| 225 | + endswitch; |
|
| 226 | + } else {
|
|
| 227 | + wp_redirect(geodir_login_url()); |
|
| 228 | + exit(); |
|
| 229 | + } |
|
| 230 | + } |
|
| 231 | + |
|
| 232 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') {
|
|
| 233 | + |
|
| 234 | + $is_current_user_owner = true; |
|
| 235 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 236 | + $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
| 237 | + } |
|
| 238 | + |
|
| 239 | + $request = $gd_session->get('listing');
|
|
| 240 | + |
|
| 241 | + if (is_user_logged_in() && $is_current_user_owner) {
|
|
| 242 | + |
|
| 243 | + switch ($_REQUEST['ajax_action']): |
|
| 244 | + case "add": |
|
| 245 | + case "update": |
|
| 246 | + |
|
| 247 | + if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
|
|
| 248 | + $last_id = geodir_save_listing(); |
|
| 249 | + |
|
| 250 | + if ($last_id) {
|
|
| 251 | + //$redirect_to = get_permalink( $last_id ); |
|
| 252 | + $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
|
|
| 253 | + |
|
| 254 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 255 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 256 | + $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
|
| 257 | + } else |
|
| 258 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 259 | + |
|
| 260 | + wp_redirect($redirect_to); |
|
| 261 | + } else {
|
|
| 262 | + $gd_session->un_set('listing');
|
|
| 263 | + wp_redirect(home_url()); |
|
| 264 | + } |
|
| 265 | + |
|
| 266 | + break; |
|
| 267 | + case "cancel" : |
|
| 268 | + |
|
| 269 | + $gd_session->un_set('listing');
|
|
| 270 | + |
|
| 271 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) |
|
| 272 | + wp_redirect(get_permalink($_REQUEST['pid'])); |
|
| 273 | + else {
|
|
| 274 | + geodir_remove_temp_images(); |
|
| 275 | + wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
|
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + break; |
|
| 279 | + |
|
| 280 | + case "publish" : |
|
| 281 | + |
|
| 282 | + if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
|
|
| 283 | + |
|
| 284 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 285 | + $new_post = array(); |
|
| 286 | + $new_post['ID'] = $_REQUEST['pid']; |
|
| 287 | + |
|
| 288 | + $lastid = wp_update_post($new_post); |
|
| 289 | + |
|
| 290 | + $gd_session->un_set('listing');
|
|
| 291 | + wp_redirect(get_permalink($lastid)); |
|
| 292 | + } else {
|
|
| 293 | + $last_id = geodir_save_listing(); |
|
| 294 | + |
|
| 295 | + if ($last_id) {
|
|
| 296 | + //$redirect_to = get_permalink( $last_id ); |
|
| 297 | + $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
|
|
| 298 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 299 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 300 | + $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
|
|
| 301 | + } else |
|
| 302 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
| 303 | + |
|
| 304 | + $gd_session->un_set('listing');
|
|
| 305 | + wp_redirect($redirect_to); |
|
| 306 | + } |
|
| 307 | + } else {
|
|
| 308 | + $gd_session->un_set('listing');
|
|
| 309 | + wp_redirect(home_url()); |
|
| 310 | + } |
|
| 311 | + |
|
| 312 | + break; |
|
| 313 | + case "delete" : |
|
| 314 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 315 | + global $current_user; |
|
| 316 | + |
|
| 317 | + if (get_option('geodir_disable_perm_delete')) {
|
|
| 318 | + $lastid = wp_trash_post($_REQUEST['pid']); |
|
| 319 | + } else {
|
|
| 320 | + $lastid = wp_delete_post($_REQUEST['pid']); |
|
| 321 | + } |
|
| 322 | + |
|
| 323 | + if ($lastid && !is_wp_error($lastid)) |
|
| 324 | + wp_redirect($_SERVER['HTTP_REFERER']); |
|
| 325 | + |
|
| 326 | + //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
|
|
| 327 | + } |
|
| 328 | + break; |
|
| 329 | + endswitch; |
|
| 330 | + |
|
| 331 | + $gd_session->un_set('listing');
|
|
| 332 | + } else {
|
|
| 333 | + $gd_session->un_set('listing');
|
|
| 334 | + wp_redirect(geodir_login_url()); |
|
| 335 | + exit(); |
|
| 336 | + } |
|
| 337 | + } |
|
| 338 | + |
|
| 339 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') {
|
|
| 340 | + /** |
|
| 341 | + * Contains registration and login functions. |
|
| 342 | + * @todo Fix the file path. |
|
| 343 | + * |
|
| 344 | + * @since 1.0.0 |
|
| 345 | + * @package GeoDirectory |
|
| 346 | + */ |
|
| 347 | + include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
| 348 | + } |
|
| 349 | + |
|
| 350 | + if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
|
|
| 351 | + $args = array('taxonomy' => sanitize_text_field($_REQUEST['term']));
|
|
| 352 | + if (!empty($_REQUEST['parent_only'])) {
|
|
| 353 | + $args['parent'] = 0; |
|
| 354 | + } |
|
| 355 | + $terms_o = get_terms($args); |
|
| 356 | + |
|
| 357 | + // Skip terms which has no listing |
|
| 358 | + if (!empty($terms_o)) {
|
|
| 359 | + $filter_terms = array(); |
|
| 360 | + |
|
| 361 | + foreach ($terms_o as $term) {
|
|
| 362 | + if (isset($term->count) && $term->count > 0) {
|
|
| 363 | + $filter_terms[] = $term; |
|
| 364 | + } |
|
| 365 | + } |
|
| 366 | + $terms_o = $filter_terms; |
|
| 367 | + } |
|
| 368 | + |
|
| 369 | + $terms = geodir_sort_terms($terms_o, 'count'); |
|
| 370 | + geodir_helper_cat_list_output($terms, intval($_REQUEST['limit'])); |
|
| 371 | + exit(); |
|
| 372 | + } |
|
| 373 | + |
|
| 374 | + gd_die(); |
|
| 375 | 375 | } |
| 376 | 376 | |
| 377 | 377 | |
| 378 | 378 | function geodir_show_ga_stats(){
|
| 379 | - if (isset($_REQUEST['ga_start'])) {
|
|
| 380 | - $ga_start = $_REQUEST['ga_start']; |
|
| 381 | - } else {
|
|
| 382 | - $ga_start = ''; |
|
| 383 | - } |
|
| 384 | - if (isset($_REQUEST['ga_end'])) {
|
|
| 385 | - $ga_end = $_REQUEST['ga_end']; |
|
| 386 | - } else {
|
|
| 387 | - $ga_end = ''; |
|
| 388 | - } |
|
| 389 | - try {
|
|
| 390 | - geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
|
| 391 | - } catch (Exception $e) {
|
|
| 392 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 393 | - } |
|
| 394 | - die; |
|
| 379 | + if (isset($_REQUEST['ga_start'])) {
|
|
| 380 | + $ga_start = $_REQUEST['ga_start']; |
|
| 381 | + } else {
|
|
| 382 | + $ga_start = ''; |
|
| 383 | + } |
|
| 384 | + if (isset($_REQUEST['ga_end'])) {
|
|
| 385 | + $ga_end = $_REQUEST['ga_end']; |
|
| 386 | + } else {
|
|
| 387 | + $ga_end = ''; |
|
| 388 | + } |
|
| 389 | + try {
|
|
| 390 | + geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
|
| 391 | + } catch (Exception $e) {
|
|
| 392 | + geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 393 | + } |
|
| 394 | + die; |
|
| 395 | 395 | } |
| 396 | 396 | add_action( 'wp_ajax_gdga', 'geodir_show_ga_stats' ); |
| 397 | 397 | add_action( 'wp_ajax_nopriv_gdga', 'geodir_show_ga_stats' ); |
| 398 | 398 | \ No newline at end of file |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | function geodir_on_wp() |
| 46 | 46 | {
|
| 47 | - if(geodir_is_page('login')) {
|
|
| 47 | + if (geodir_is_page('login')) {
|
|
| 48 | 48 | geodir_user_signup(); |
| 49 | 49 | } |
| 50 | 50 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | * @since 1.0.0 |
| 83 | 83 | * @package GeoDirectory |
| 84 | 84 | */ |
| 85 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 85 | + include_once(geodir_plugin_path().'/geodirectory-functions/map-functions/get_markers.php'); |
|
| 86 | 86 | die; |
| 87 | 87 | } |
| 88 | 88 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | * @todo check if nonce is required here and if so add one. |
| 105 | 105 | */ |
| 106 | 106 | function geodir_ajax_handler() {
|
| 107 | - global $wpdb, $gd_session,$post; |
|
| 107 | + global $wpdb, $gd_session, $post; |
|
| 108 | 108 | |
| 109 | 109 | if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
|
| 110 | 110 | $gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']);
|
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * @since 1.0.0 |
| 127 | 127 | * @package GeoDirectory |
| 128 | 128 | */ |
| 129 | - include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
| 129 | + include_once(geodir_plugin_path().'/geodirectory-admin/geodir_admin_ajax.php'); |
|
| 130 | 130 | } else {
|
| 131 | 131 | wp_redirect(geodir_login_url()); |
| 132 | 132 | gd_die(); |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | * @param string $posttype The post type to insert. |
| 152 | 152 | * @param string $datatype The type of dummy data to insert. |
| 153 | 153 | */ |
| 154 | - do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
|
|
| 154 | + do_action('geodir_delete_dummy_posts', sanitize_key($_REQUEST['posttype']), $datatype);
|
|
| 155 | 155 | break; |
| 156 | 156 | case "geodir_dummy_insert" : |
| 157 | 157 | if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
| 164 | 164 | $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
| 165 | 165 | |
| 166 | - if (isset($_REQUEST['posttype'])){
|
|
| 166 | + if (isset($_REQUEST['posttype'])) {
|
|
| 167 | 167 | /** |
| 168 | 168 | * Used to insert the dummy post data per post type. |
| 169 | 169 | * |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | * @param string $datatype The type of dummy data to insert. |
| 175 | 175 | * @param int $post_index The item number to insert. |
| 176 | 176 | */ |
| 177 | - do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
|
|
| 177 | + do_action('geodir_insert_dummy_posts', sanitize_key($_REQUEST['posttype']), sanitize_key($_REQUEST['datatype']), absint($_REQUEST['insert_dummy_post_index']));
|
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
|
| 192 | 192 | $template = locate_template(array("geodirectory/popup-forms.php"));
|
| 193 | 193 | if (!$template) {
|
| 194 | - $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
| 194 | + $template = geodir_plugin_path().'/geodirectory-templates/popup-forms.php'; |
|
| 195 | 195 | } |
| 196 | 196 | require_once($template); |
| 197 | 197 | } |
@@ -210,17 +210,17 @@ discard block |
||
| 210 | 210 | * @since 1.0.0 |
| 211 | 211 | * @package GeoDirectory |
| 212 | 212 | */ |
| 213 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
| 213 | + include_once(geodir_plugin_path().'/geodirectory-functions/map-functions/get_markers.php'); |
|
| 214 | 214 | } |
| 215 | 215 | |
| 216 | 216 | if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
|
| 217 | 217 | if (is_user_logged_in()) {
|
| 218 | 218 | switch ($_REQUEST['ajax_action']): |
| 219 | 219 | case "add" : |
| 220 | - geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
| 220 | + geodir_add_to_favorite((int) $_REQUEST['pid']); |
|
| 221 | 221 | break; |
| 222 | 222 | case "remove" : |
| 223 | - geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
| 223 | + geodir_remove_from_favorite((int) $_REQUEST['pid']); |
|
| 224 | 224 | break; |
| 225 | 225 | endswitch; |
| 226 | 226 | } else {
|
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | |
| 234 | 234 | $is_current_user_owner = true; |
| 235 | 235 | if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
| 236 | - $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
| 236 | + $is_current_user_owner = geodir_listing_belong_to_current_user((int) $_REQUEST['pid']); |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | $request = $gd_session->get('listing');
|
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | * @since 1.0.0 |
| 345 | 345 | * @package GeoDirectory |
| 346 | 346 | */ |
| 347 | - include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
| 347 | + include_once(geodir_plugin_path().'/geodirectory-functions/geodirectory_reg.php'); |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
|
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | } |
| 376 | 376 | |
| 377 | 377 | |
| 378 | -function geodir_show_ga_stats(){
|
|
| 378 | +function geodir_show_ga_stats() {
|
|
| 379 | 379 | if (isset($_REQUEST['ga_start'])) {
|
| 380 | 380 | $ga_start = $_REQUEST['ga_start']; |
| 381 | 381 | } else {
|
@@ -389,9 +389,9 @@ discard block |
||
| 389 | 389 | try {
|
| 390 | 390 | geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
| 391 | 391 | } catch (Exception $e) {
|
| 392 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 392 | + geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage()));
|
|
| 393 | 393 | } |
| 394 | 394 | die; |
| 395 | 395 | } |
| 396 | -add_action( 'wp_ajax_gdga', 'geodir_show_ga_stats' ); |
|
| 397 | -add_action( 'wp_ajax_nopriv_gdga', 'geodir_show_ga_stats' ); |
|
| 398 | 396 | \ No newline at end of file |
| 397 | +add_action('wp_ajax_gdga', 'geodir_show_ga_stats');
|
|
| 398 | +add_action('wp_ajax_nopriv_gdga', 'geodir_show_ga_stats'); |
|
| 399 | 399 | \ No newline at end of file |
@@ -7,452 +7,452 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | function geodir_property_rent_custom_fields($post_type='gd_place',$package_id=''){ |
| 10 | - $fields = array(); |
|
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | - |
|
| 13 | - // price |
|
| 14 | - $fields[] = array('listing_type' => $post_type, |
|
| 15 | - 'field_type' => 'text', |
|
| 16 | - 'data_type' => 'FLOAT', |
|
| 17 | - 'decimal_point' => '2', |
|
| 18 | - 'admin_title' => __('Price', 'geodirectory'), |
|
| 19 | - 'site_title' => __('Price', 'geodirectory'), |
|
| 20 | - 'admin_desc' => __('Enter the price per calendar month (PCM)in $ (no currency symbol)', 'geodirectory'), |
|
| 21 | - 'htmlvar_name' => 'price', |
|
| 22 | - 'is_active' => true, |
|
| 23 | - 'for_admin_use' => false, |
|
| 24 | - 'default_value' => '', |
|
| 25 | - 'show_in' => '[detail],[listing]', |
|
| 26 | - 'is_required' => false, |
|
| 27 | - 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 28 | - 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | - 'required_msg' => '', |
|
| 30 | - 'field_icon' => 'fa fa-usd', |
|
| 31 | - 'css_class' => '', |
|
| 32 | - 'cat_sort' => true, |
|
| 33 | - 'cat_filter' => true, |
|
| 34 | - 'extra' => array( |
|
| 35 | - 'is_price' => 1, |
|
| 36 | - 'thousand_separator' => 'comma', |
|
| 37 | - 'decimal_separator' => 'period', |
|
| 38 | - 'decimal_display' => 'if', |
|
| 39 | - 'currency_symbol' => '$', |
|
| 40 | - 'currency_symbol_placement' => 'left' |
|
| 41 | - ) |
|
| 42 | - ); |
|
| 43 | - |
|
| 44 | - // property status |
|
| 45 | - $fields[] = array('listing_type' => $post_type, |
|
| 46 | - 'data_type' => 'VARCHAR', |
|
| 47 | - 'field_type' => 'select', |
|
| 48 | - 'field_type_key' => 'property_status', |
|
| 49 | - 'is_active' => 1, |
|
| 50 | - 'for_admin_use' => 0, |
|
| 51 | - 'is_default' => 0, |
|
| 52 | - 'admin_title' => __('Property Status', 'geodirectory'), |
|
| 53 | - 'admin_desc' => __('Enter the status of the property.', 'geodirectory'), |
|
| 54 | - 'site_title' => __('Property Status', 'geodirectory'), |
|
| 55 | - 'htmlvar_name' => 'property_status', |
|
| 56 | - 'default_value' => '', |
|
| 57 | - 'is_required' => '1', |
|
| 58 | - 'required_msg' => '', |
|
| 59 | - 'show_in' => '[detail],[listing]', |
|
| 60 | - 'show_on_pkg' => $package, |
|
| 61 | - 'option_values' => 'Select Status/,For Rent,Let,Under Offer', |
|
| 62 | - 'field_icon' => 'fa fa-home', |
|
| 63 | - 'css_class' => '', |
|
| 64 | - 'cat_sort' => 1, |
|
| 65 | - 'cat_filter' => 1, |
|
| 66 | - ); |
|
| 67 | - |
|
| 68 | - // property furnishing |
|
| 69 | - $fields[] = array('listing_type' => $post_type, |
|
| 70 | - 'field_type' => 'select', |
|
| 71 | - 'data_type' => 'VARCHAR', |
|
| 72 | - 'admin_title' => __('Furnishing', 'geodirectory'), |
|
| 73 | - 'site_title' => __('Furnishing', 'geodirectory'), |
|
| 74 | - 'admin_desc' => __('Enter the furnishing status of the property.', 'geodirectory'), |
|
| 75 | - 'htmlvar_name' => 'property_furnishing', |
|
| 76 | - 'is_active' => true, |
|
| 77 | - 'for_admin_use' => false, |
|
| 78 | - 'default_value' => '', |
|
| 79 | - 'show_in' => '[detail],[listing]', |
|
| 80 | - 'is_required' => true, |
|
| 81 | - 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 82 | - 'validation_pattern' => '', |
|
| 83 | - 'validation_msg' => '', |
|
| 84 | - 'required_msg' => '', |
|
| 85 | - 'field_icon' => 'fa fa-th-large', |
|
| 86 | - 'css_class' => '', |
|
| 87 | - 'cat_sort' => true, |
|
| 88 | - 'cat_filter' => true |
|
| 89 | - ); |
|
| 90 | - |
|
| 91 | - // property type |
|
| 92 | - $fields[] = array('listing_type' => $post_type, |
|
| 93 | - 'field_type' => 'select', |
|
| 94 | - 'data_type' => 'VARCHAR', |
|
| 95 | - 'admin_title' => __('Property Type', 'geodirectory'), |
|
| 96 | - 'site_title' => __('Property Type', 'geodirectory'), |
|
| 97 | - 'admin_desc' => __('Select the property type.', 'geodirectory'), |
|
| 98 | - 'htmlvar_name' => 'property_type', |
|
| 99 | - 'is_active' => true, |
|
| 100 | - 'for_admin_use' => false, |
|
| 101 | - 'default_value' => '', |
|
| 102 | - 'show_in' => '[detail],[listing]', |
|
| 103 | - 'is_required' => true, |
|
| 104 | - 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 105 | - 'validation_pattern' => '', |
|
| 106 | - 'validation_msg' => '', |
|
| 107 | - 'required_msg' => '', |
|
| 108 | - 'field_icon' => 'fa fa-home', |
|
| 109 | - 'css_class' => '', |
|
| 110 | - 'cat_sort' => true, |
|
| 111 | - 'cat_filter' => true |
|
| 112 | - ); |
|
| 113 | - |
|
| 114 | - // property bedrooms |
|
| 115 | - $fields[] = array('listing_type' => $post_type, |
|
| 116 | - 'field_type' => 'select', |
|
| 117 | - 'data_type' => 'VARCHAR', |
|
| 118 | - 'admin_title' => __('Property Bedrooms', 'geodirectory'), |
|
| 119 | - 'site_title' => __('Bedrooms', 'geodirectory'), |
|
| 120 | - 'admin_desc' => __('Select the number of bedrooms', 'geodirectory'), |
|
| 121 | - 'htmlvar_name' => 'property_bedrooms', |
|
| 122 | - 'is_active' => true, |
|
| 123 | - 'for_admin_use' => false, |
|
| 124 | - 'default_value' => '', |
|
| 125 | - 'show_in' => '[detail],[listing]', |
|
| 126 | - 'is_required' => true, |
|
| 127 | - 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 128 | - 'validation_pattern' => '', |
|
| 129 | - 'validation_msg' => '', |
|
| 130 | - 'required_msg' => '', |
|
| 131 | - 'field_icon' => 'fa fa-bed', |
|
| 132 | - 'css_class' => '', |
|
| 133 | - 'cat_sort' => true, |
|
| 134 | - 'cat_filter' => true |
|
| 135 | - ); |
|
| 136 | - |
|
| 137 | - // property bathrooms |
|
| 138 | - $fields[] = array('listing_type' => $post_type, |
|
| 139 | - 'field_type' => 'select', |
|
| 140 | - 'data_type' => 'VARCHAR', |
|
| 141 | - 'admin_title' => __('Property Bathrooms', 'geodirectory'), |
|
| 142 | - 'site_title' => __('Bathrooms', 'geodirectory'), |
|
| 143 | - 'admin_desc' => __('Select the number of bathrooms', 'geodirectory'), |
|
| 144 | - 'htmlvar_name' => 'property_bathrooms', |
|
| 145 | - 'is_active' => true, |
|
| 146 | - 'for_admin_use' => false, |
|
| 147 | - 'default_value' => '', |
|
| 148 | - 'show_in' => '[detail],[listing]', |
|
| 149 | - 'is_required' => true, |
|
| 150 | - 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 151 | - 'validation_pattern' => '', |
|
| 152 | - 'validation_msg' => '', |
|
| 153 | - 'required_msg' => '', |
|
| 154 | - 'field_icon' => 'fa fa-bold', |
|
| 155 | - 'css_class' => '', |
|
| 156 | - 'cat_sort' => true, |
|
| 157 | - 'cat_filter' => true |
|
| 158 | - ); |
|
| 159 | - |
|
| 160 | - // property area |
|
| 161 | - $fields[] = array('listing_type' => $post_type, |
|
| 162 | - 'field_type' => 'text', |
|
| 163 | - 'data_type' => 'INT', |
|
| 164 | - 'admin_title' => __('Property Area', 'geodirectory'), |
|
| 165 | - 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 166 | - 'admin_desc' => __('Enter the Sq Ft value for the property', 'geodirectory'), |
|
| 167 | - 'htmlvar_name' => 'property_area', |
|
| 168 | - 'is_active' => true, |
|
| 169 | - 'for_admin_use' => false, |
|
| 170 | - 'default_value' => '', |
|
| 171 | - 'show_in' => '[detail],[listing]', |
|
| 172 | - 'is_required' => false, |
|
| 173 | - 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 174 | - 'validation_msg' => 'Please enter the property area in numbers only: 1500', |
|
| 175 | - 'required_msg' => '', |
|
| 176 | - 'field_icon' => 'fa fa-area-chart', |
|
| 177 | - 'css_class' => '', |
|
| 178 | - 'cat_sort' => true, |
|
| 179 | - 'cat_filter' => true |
|
| 180 | - ); |
|
| 181 | - |
|
| 182 | - // property features |
|
| 183 | - $fields[] = array('listing_type' => $post_type, |
|
| 184 | - 'field_type' => 'multiselect', |
|
| 185 | - 'data_type' => 'VARCHAR', |
|
| 186 | - 'admin_title' => __('Property Features', 'geodirectory'), |
|
| 187 | - 'site_title' => __('Features', 'geodirectory'), |
|
| 188 | - 'admin_desc' => __('Select the property features.', 'geodirectory'), |
|
| 189 | - 'htmlvar_name' => 'property_features', |
|
| 190 | - 'is_active' => true, |
|
| 191 | - 'for_admin_use' => false, |
|
| 192 | - 'default_value' => '', |
|
| 193 | - 'show_in' => '[detail],[listing]', |
|
| 194 | - 'is_required' => false, |
|
| 195 | - 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 196 | - 'validation_pattern' => '', |
|
| 197 | - 'validation_msg' => '', |
|
| 198 | - 'required_msg' => '', |
|
| 199 | - 'field_icon' => 'fa fa-plus-square', |
|
| 200 | - 'css_class' => 'gd-comma-list', |
|
| 201 | - 'cat_sort' => true, |
|
| 202 | - 'cat_filter' => true |
|
| 203 | - ); |
|
| 204 | - |
|
| 205 | - |
|
| 206 | - |
|
| 207 | - /** |
|
| 208 | - * Filter the array of default custom fields DB table data. |
|
| 209 | - * |
|
| 210 | - * @since 1.6.6 |
|
| 211 | - * @param string $fields The default custom fields as an array. |
|
| 212 | - */ |
|
| 213 | - $fields = apply_filters('geodir_property_rent_custom_fields', $fields); |
|
| 214 | - |
|
| 215 | - return $fields; |
|
| 10 | + $fields = array(); |
|
| 11 | + $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | + |
|
| 13 | + // price |
|
| 14 | + $fields[] = array('listing_type' => $post_type, |
|
| 15 | + 'field_type' => 'text', |
|
| 16 | + 'data_type' => 'FLOAT', |
|
| 17 | + 'decimal_point' => '2', |
|
| 18 | + 'admin_title' => __('Price', 'geodirectory'), |
|
| 19 | + 'site_title' => __('Price', 'geodirectory'), |
|
| 20 | + 'admin_desc' => __('Enter the price per calendar month (PCM)in $ (no currency symbol)', 'geodirectory'), |
|
| 21 | + 'htmlvar_name' => 'price', |
|
| 22 | + 'is_active' => true, |
|
| 23 | + 'for_admin_use' => false, |
|
| 24 | + 'default_value' => '', |
|
| 25 | + 'show_in' => '[detail],[listing]', |
|
| 26 | + 'is_required' => false, |
|
| 27 | + 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 28 | + 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | + 'required_msg' => '', |
|
| 30 | + 'field_icon' => 'fa fa-usd', |
|
| 31 | + 'css_class' => '', |
|
| 32 | + 'cat_sort' => true, |
|
| 33 | + 'cat_filter' => true, |
|
| 34 | + 'extra' => array( |
|
| 35 | + 'is_price' => 1, |
|
| 36 | + 'thousand_separator' => 'comma', |
|
| 37 | + 'decimal_separator' => 'period', |
|
| 38 | + 'decimal_display' => 'if', |
|
| 39 | + 'currency_symbol' => '$', |
|
| 40 | + 'currency_symbol_placement' => 'left' |
|
| 41 | + ) |
|
| 42 | + ); |
|
| 43 | + |
|
| 44 | + // property status |
|
| 45 | + $fields[] = array('listing_type' => $post_type, |
|
| 46 | + 'data_type' => 'VARCHAR', |
|
| 47 | + 'field_type' => 'select', |
|
| 48 | + 'field_type_key' => 'property_status', |
|
| 49 | + 'is_active' => 1, |
|
| 50 | + 'for_admin_use' => 0, |
|
| 51 | + 'is_default' => 0, |
|
| 52 | + 'admin_title' => __('Property Status', 'geodirectory'), |
|
| 53 | + 'admin_desc' => __('Enter the status of the property.', 'geodirectory'), |
|
| 54 | + 'site_title' => __('Property Status', 'geodirectory'), |
|
| 55 | + 'htmlvar_name' => 'property_status', |
|
| 56 | + 'default_value' => '', |
|
| 57 | + 'is_required' => '1', |
|
| 58 | + 'required_msg' => '', |
|
| 59 | + 'show_in' => '[detail],[listing]', |
|
| 60 | + 'show_on_pkg' => $package, |
|
| 61 | + 'option_values' => 'Select Status/,For Rent,Let,Under Offer', |
|
| 62 | + 'field_icon' => 'fa fa-home', |
|
| 63 | + 'css_class' => '', |
|
| 64 | + 'cat_sort' => 1, |
|
| 65 | + 'cat_filter' => 1, |
|
| 66 | + ); |
|
| 67 | + |
|
| 68 | + // property furnishing |
|
| 69 | + $fields[] = array('listing_type' => $post_type, |
|
| 70 | + 'field_type' => 'select', |
|
| 71 | + 'data_type' => 'VARCHAR', |
|
| 72 | + 'admin_title' => __('Furnishing', 'geodirectory'), |
|
| 73 | + 'site_title' => __('Furnishing', 'geodirectory'), |
|
| 74 | + 'admin_desc' => __('Enter the furnishing status of the property.', 'geodirectory'), |
|
| 75 | + 'htmlvar_name' => 'property_furnishing', |
|
| 76 | + 'is_active' => true, |
|
| 77 | + 'for_admin_use' => false, |
|
| 78 | + 'default_value' => '', |
|
| 79 | + 'show_in' => '[detail],[listing]', |
|
| 80 | + 'is_required' => true, |
|
| 81 | + 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 82 | + 'validation_pattern' => '', |
|
| 83 | + 'validation_msg' => '', |
|
| 84 | + 'required_msg' => '', |
|
| 85 | + 'field_icon' => 'fa fa-th-large', |
|
| 86 | + 'css_class' => '', |
|
| 87 | + 'cat_sort' => true, |
|
| 88 | + 'cat_filter' => true |
|
| 89 | + ); |
|
| 90 | + |
|
| 91 | + // property type |
|
| 92 | + $fields[] = array('listing_type' => $post_type, |
|
| 93 | + 'field_type' => 'select', |
|
| 94 | + 'data_type' => 'VARCHAR', |
|
| 95 | + 'admin_title' => __('Property Type', 'geodirectory'), |
|
| 96 | + 'site_title' => __('Property Type', 'geodirectory'), |
|
| 97 | + 'admin_desc' => __('Select the property type.', 'geodirectory'), |
|
| 98 | + 'htmlvar_name' => 'property_type', |
|
| 99 | + 'is_active' => true, |
|
| 100 | + 'for_admin_use' => false, |
|
| 101 | + 'default_value' => '', |
|
| 102 | + 'show_in' => '[detail],[listing]', |
|
| 103 | + 'is_required' => true, |
|
| 104 | + 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 105 | + 'validation_pattern' => '', |
|
| 106 | + 'validation_msg' => '', |
|
| 107 | + 'required_msg' => '', |
|
| 108 | + 'field_icon' => 'fa fa-home', |
|
| 109 | + 'css_class' => '', |
|
| 110 | + 'cat_sort' => true, |
|
| 111 | + 'cat_filter' => true |
|
| 112 | + ); |
|
| 113 | + |
|
| 114 | + // property bedrooms |
|
| 115 | + $fields[] = array('listing_type' => $post_type, |
|
| 116 | + 'field_type' => 'select', |
|
| 117 | + 'data_type' => 'VARCHAR', |
|
| 118 | + 'admin_title' => __('Property Bedrooms', 'geodirectory'), |
|
| 119 | + 'site_title' => __('Bedrooms', 'geodirectory'), |
|
| 120 | + 'admin_desc' => __('Select the number of bedrooms', 'geodirectory'), |
|
| 121 | + 'htmlvar_name' => 'property_bedrooms', |
|
| 122 | + 'is_active' => true, |
|
| 123 | + 'for_admin_use' => false, |
|
| 124 | + 'default_value' => '', |
|
| 125 | + 'show_in' => '[detail],[listing]', |
|
| 126 | + 'is_required' => true, |
|
| 127 | + 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 128 | + 'validation_pattern' => '', |
|
| 129 | + 'validation_msg' => '', |
|
| 130 | + 'required_msg' => '', |
|
| 131 | + 'field_icon' => 'fa fa-bed', |
|
| 132 | + 'css_class' => '', |
|
| 133 | + 'cat_sort' => true, |
|
| 134 | + 'cat_filter' => true |
|
| 135 | + ); |
|
| 136 | + |
|
| 137 | + // property bathrooms |
|
| 138 | + $fields[] = array('listing_type' => $post_type, |
|
| 139 | + 'field_type' => 'select', |
|
| 140 | + 'data_type' => 'VARCHAR', |
|
| 141 | + 'admin_title' => __('Property Bathrooms', 'geodirectory'), |
|
| 142 | + 'site_title' => __('Bathrooms', 'geodirectory'), |
|
| 143 | + 'admin_desc' => __('Select the number of bathrooms', 'geodirectory'), |
|
| 144 | + 'htmlvar_name' => 'property_bathrooms', |
|
| 145 | + 'is_active' => true, |
|
| 146 | + 'for_admin_use' => false, |
|
| 147 | + 'default_value' => '', |
|
| 148 | + 'show_in' => '[detail],[listing]', |
|
| 149 | + 'is_required' => true, |
|
| 150 | + 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 151 | + 'validation_pattern' => '', |
|
| 152 | + 'validation_msg' => '', |
|
| 153 | + 'required_msg' => '', |
|
| 154 | + 'field_icon' => 'fa fa-bold', |
|
| 155 | + 'css_class' => '', |
|
| 156 | + 'cat_sort' => true, |
|
| 157 | + 'cat_filter' => true |
|
| 158 | + ); |
|
| 159 | + |
|
| 160 | + // property area |
|
| 161 | + $fields[] = array('listing_type' => $post_type, |
|
| 162 | + 'field_type' => 'text', |
|
| 163 | + 'data_type' => 'INT', |
|
| 164 | + 'admin_title' => __('Property Area', 'geodirectory'), |
|
| 165 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 166 | + 'admin_desc' => __('Enter the Sq Ft value for the property', 'geodirectory'), |
|
| 167 | + 'htmlvar_name' => 'property_area', |
|
| 168 | + 'is_active' => true, |
|
| 169 | + 'for_admin_use' => false, |
|
| 170 | + 'default_value' => '', |
|
| 171 | + 'show_in' => '[detail],[listing]', |
|
| 172 | + 'is_required' => false, |
|
| 173 | + 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 174 | + 'validation_msg' => 'Please enter the property area in numbers only: 1500', |
|
| 175 | + 'required_msg' => '', |
|
| 176 | + 'field_icon' => 'fa fa-area-chart', |
|
| 177 | + 'css_class' => '', |
|
| 178 | + 'cat_sort' => true, |
|
| 179 | + 'cat_filter' => true |
|
| 180 | + ); |
|
| 181 | + |
|
| 182 | + // property features |
|
| 183 | + $fields[] = array('listing_type' => $post_type, |
|
| 184 | + 'field_type' => 'multiselect', |
|
| 185 | + 'data_type' => 'VARCHAR', |
|
| 186 | + 'admin_title' => __('Property Features', 'geodirectory'), |
|
| 187 | + 'site_title' => __('Features', 'geodirectory'), |
|
| 188 | + 'admin_desc' => __('Select the property features.', 'geodirectory'), |
|
| 189 | + 'htmlvar_name' => 'property_features', |
|
| 190 | + 'is_active' => true, |
|
| 191 | + 'for_admin_use' => false, |
|
| 192 | + 'default_value' => '', |
|
| 193 | + 'show_in' => '[detail],[listing]', |
|
| 194 | + 'is_required' => false, |
|
| 195 | + 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 196 | + 'validation_pattern' => '', |
|
| 197 | + 'validation_msg' => '', |
|
| 198 | + 'required_msg' => '', |
|
| 199 | + 'field_icon' => 'fa fa-plus-square', |
|
| 200 | + 'css_class' => 'gd-comma-list', |
|
| 201 | + 'cat_sort' => true, |
|
| 202 | + 'cat_filter' => true |
|
| 203 | + ); |
|
| 204 | + |
|
| 205 | + |
|
| 206 | + |
|
| 207 | + /** |
|
| 208 | + * Filter the array of default custom fields DB table data. |
|
| 209 | + * |
|
| 210 | + * @since 1.6.6 |
|
| 211 | + * @param string $fields The default custom fields as an array. |
|
| 212 | + */ |
|
| 213 | + $fields = apply_filters('geodir_property_rent_custom_fields', $fields); |
|
| 214 | + |
|
| 215 | + return $fields; |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | function geodir_property_rent_custom_fields_sort($post_type='gd_place') { |
| 219 | 219 | |
| 220 | 220 | |
| 221 | - $fields = array(); |
|
| 222 | - |
|
| 223 | - // price sort |
|
| 224 | - $fields[] = array( |
|
| 225 | - 'create_field' => true, |
|
| 226 | - 'listing_type' => $post_type, |
|
| 227 | - 'field_type' => 'text', |
|
| 228 | - 'data_type' => '', |
|
| 229 | - 'htmlvar_name' => 'geodir_price', |
|
| 230 | - 'site_title' => __('Price','geodirectory'), |
|
| 231 | - 'asc' => 1, |
|
| 232 | - 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 233 | - 'desc' => 1, |
|
| 234 | - 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 235 | - 'is_active' => 1 |
|
| 236 | - ); |
|
| 237 | - |
|
| 238 | - // area sort |
|
| 239 | - $fields[] = array( |
|
| 240 | - 'create_field' => true, |
|
| 241 | - 'listing_type' => $post_type, |
|
| 242 | - 'field_type' => 'text', |
|
| 243 | - 'data_type' => '', |
|
| 244 | - 'htmlvar_name' => 'geodir_property_area', |
|
| 245 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 246 | - 'asc' => 1, |
|
| 247 | - 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 248 | - 'desc' => 1, |
|
| 249 | - 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 250 | - 'is_active' => 1 |
|
| 251 | - ); |
|
| 252 | - |
|
| 253 | - // bedrooms sort |
|
| 254 | - $fields[] = array( |
|
| 255 | - 'create_field' => true, |
|
| 256 | - 'listing_type' => $post_type, |
|
| 257 | - 'field_type' => 'select', |
|
| 258 | - 'data_type' => '', |
|
| 259 | - 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 260 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 261 | - 'asc' => 1, |
|
| 262 | - 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 263 | - 'desc' => 1, |
|
| 264 | - 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 265 | - 'is_active' => 1 |
|
| 266 | - ); |
|
| 267 | - |
|
| 268 | - /** |
|
| 269 | - * Filter the array of advanced search fields DB table data. |
|
| 270 | - * |
|
| 271 | - * @since 1.6.6 |
|
| 272 | - * @param string $fields The default custom fields as an array. |
|
| 273 | - */ |
|
| 274 | - $fields = apply_filters('geodir_property_sale_custom_fields_sort', $fields); |
|
| 275 | - |
|
| 276 | - return $fields; |
|
| 221 | + $fields = array(); |
|
| 222 | + |
|
| 223 | + // price sort |
|
| 224 | + $fields[] = array( |
|
| 225 | + 'create_field' => true, |
|
| 226 | + 'listing_type' => $post_type, |
|
| 227 | + 'field_type' => 'text', |
|
| 228 | + 'data_type' => '', |
|
| 229 | + 'htmlvar_name' => 'geodir_price', |
|
| 230 | + 'site_title' => __('Price','geodirectory'), |
|
| 231 | + 'asc' => 1, |
|
| 232 | + 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 233 | + 'desc' => 1, |
|
| 234 | + 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 235 | + 'is_active' => 1 |
|
| 236 | + ); |
|
| 237 | + |
|
| 238 | + // area sort |
|
| 239 | + $fields[] = array( |
|
| 240 | + 'create_field' => true, |
|
| 241 | + 'listing_type' => $post_type, |
|
| 242 | + 'field_type' => 'text', |
|
| 243 | + 'data_type' => '', |
|
| 244 | + 'htmlvar_name' => 'geodir_property_area', |
|
| 245 | + 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 246 | + 'asc' => 1, |
|
| 247 | + 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 248 | + 'desc' => 1, |
|
| 249 | + 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 250 | + 'is_active' => 1 |
|
| 251 | + ); |
|
| 252 | + |
|
| 253 | + // bedrooms sort |
|
| 254 | + $fields[] = array( |
|
| 255 | + 'create_field' => true, |
|
| 256 | + 'listing_type' => $post_type, |
|
| 257 | + 'field_type' => 'select', |
|
| 258 | + 'data_type' => '', |
|
| 259 | + 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 260 | + 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 261 | + 'asc' => 1, |
|
| 262 | + 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 263 | + 'desc' => 1, |
|
| 264 | + 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 265 | + 'is_active' => 1 |
|
| 266 | + ); |
|
| 267 | + |
|
| 268 | + /** |
|
| 269 | + * Filter the array of advanced search fields DB table data. |
|
| 270 | + * |
|
| 271 | + * @since 1.6.6 |
|
| 272 | + * @param string $fields The default custom fields as an array. |
|
| 273 | + */ |
|
| 274 | + $fields = apply_filters('geodir_property_sale_custom_fields_sort', $fields); |
|
| 275 | + |
|
| 276 | + return $fields; |
|
| 277 | 277 | |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | function geodir_property_rent_custom_fields_advanced_search($post_type='gd_place') { |
| 281 | 281 | |
| 282 | 282 | |
| 283 | - $fields = array(); |
|
| 284 | - |
|
| 285 | - // Price range |
|
| 286 | - $fields[] = array( |
|
| 287 | - 'create_field' => true, |
|
| 288 | - 'listing_type' => $post_type, |
|
| 289 | - 'field_type' => 'text', |
|
| 290 | - 'data_type' => 'RANGE', |
|
| 291 | - 'is_active' => 1, |
|
| 292 | - 'site_field_title' => 'Price', |
|
| 293 | - 'field_data_type' => 'FLOAT', |
|
| 294 | - 'main_search' => 1, |
|
| 295 | - 'main_search_priority' => 15, |
|
| 296 | - 'data_type_change' => 'SELECT', |
|
| 297 | - 'search_condition_select' => 'SINGLE', |
|
| 298 | - 'search_min_value' => '1000', |
|
| 299 | - 'search_max_value' => '10000', |
|
| 300 | - 'search_diff_value' => '1000', |
|
| 301 | - 'first_search_value' => '0', |
|
| 302 | - 'first_search_text' => '', |
|
| 303 | - 'last_search_text' => '', |
|
| 304 | - 'search_condition' => 'SELECT', |
|
| 305 | - 'site_htmlvar_name' => 'geodir_price', |
|
| 306 | - 'htmlvar_name' => 'geodir_price', |
|
| 307 | - 'field_title' => 'geodir_price', |
|
| 308 | - 'expand_custom_value' => '', |
|
| 309 | - 'front_search_title' => 'Price Range pm', |
|
| 310 | - 'field_desc' => '' |
|
| 311 | - ); |
|
| 312 | - |
|
| 313 | - // bedrooms |
|
| 314 | - $fields[] = array( |
|
| 315 | - 'create_field' => true, |
|
| 316 | - 'listing_type' => $post_type, |
|
| 317 | - 'field_type' => 'select', |
|
| 318 | - 'data_type' => 'CHECK', |
|
| 319 | - 'is_active' => 1, |
|
| 320 | - 'site_field_title' => 'Bedrooms', |
|
| 321 | - 'field_data_type' => 'VARCHAR', |
|
| 322 | - 'main_search' => 1, |
|
| 323 | - 'main_search_priority' => 16, |
|
| 324 | - 'search_condition' => 'SINGLE', |
|
| 325 | - 'site_htmlvar_name' => 'geodir_property_bedrooms', |
|
| 326 | - 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 327 | - 'field_title' => 'geodir_property_bedrooms', |
|
| 328 | - 'front_search_title' => 'Bedrooms', |
|
| 329 | - 'field_desc' => '', |
|
| 330 | - 'expand_custom_value' => 5, |
|
| 331 | - 'expand_search' => 1, |
|
| 332 | - 'search_operator' => 'OR' |
|
| 333 | - ); |
|
| 334 | - |
|
| 335 | - // Property type |
|
| 336 | - $fields[] = array( |
|
| 337 | - 'create_field' => true, |
|
| 338 | - 'listing_type' => $post_type, |
|
| 339 | - 'field_type' => 'select', |
|
| 340 | - 'data_type' => 'CHECK', |
|
| 341 | - 'is_active' => 1, |
|
| 342 | - 'site_field_title' => 'Property Type', |
|
| 343 | - 'field_data_type' => 'VARCHAR', |
|
| 344 | - 'main_search' => 0, |
|
| 345 | - //'main_search_priority' => 16, |
|
| 346 | - 'search_condition' => 'SINGLE', |
|
| 347 | - 'site_htmlvar_name' => 'geodir_property_type', |
|
| 348 | - 'htmlvar_name' => 'geodir_property_type', |
|
| 349 | - 'field_title' => 'geodir_property_type', |
|
| 350 | - 'front_search_title' => 'Property Type', |
|
| 351 | - 'field_desc' => '', |
|
| 352 | - 'expand_custom_value' => 5, |
|
| 353 | - 'expand_search' => 1, |
|
| 354 | - 'search_operator' => 'OR' |
|
| 355 | - ); |
|
| 356 | - |
|
| 357 | - // Property Features |
|
| 358 | - $fields[] = array( |
|
| 359 | - 'create_field' => true, |
|
| 360 | - 'listing_type' => $post_type, |
|
| 361 | - 'field_type' => 'multiselect', |
|
| 362 | - 'data_type' => 'CHECK', |
|
| 363 | - 'is_active' => 1, |
|
| 364 | - 'site_field_title' => 'Features', |
|
| 365 | - 'field_data_type' => 'VARCHAR', |
|
| 366 | - 'main_search' => 0, |
|
| 367 | - //'main_search_priority' => 16, |
|
| 368 | - 'search_condition' => 'SINGLE', |
|
| 369 | - 'site_htmlvar_name' => 'geodir_property_features', |
|
| 370 | - 'htmlvar_name' => 'geodir_property_features', |
|
| 371 | - 'field_title' => 'geodir_property_features', |
|
| 372 | - 'front_search_title' => 'Property Features', |
|
| 373 | - 'field_desc' => '', |
|
| 374 | - 'expand_custom_value' => 5, |
|
| 375 | - 'expand_search' => 1, |
|
| 376 | - 'search_operator' => 'AND' |
|
| 377 | - ); |
|
| 378 | - |
|
| 379 | - // Property Bathrooms |
|
| 380 | - $fields[] = array( |
|
| 381 | - 'create_field' => true, |
|
| 382 | - 'listing_type' => $post_type, |
|
| 383 | - 'field_type' => 'select', |
|
| 384 | - 'data_type' => 'CHECK', |
|
| 385 | - 'is_active' => 1, |
|
| 386 | - 'site_field_title' => 'Bathrooms', |
|
| 387 | - 'field_data_type' => 'VARCHAR', |
|
| 388 | - 'main_search' => 0, |
|
| 389 | - //'main_search_priority' => 16, |
|
| 390 | - 'search_condition' => 'SINGLE', |
|
| 391 | - 'site_htmlvar_name' => 'geodir_property_bathrooms', |
|
| 392 | - 'htmlvar_name' => 'geodir_property_bathrooms', |
|
| 393 | - 'field_title' => 'geodir_property_bathrooms', |
|
| 394 | - 'front_search_title' => 'Bathrooms', |
|
| 395 | - 'field_desc' => '', |
|
| 396 | - 'expand_custom_value' => 5, |
|
| 397 | - 'expand_search' => 1, |
|
| 398 | - 'search_operator' => 'OR' |
|
| 399 | - ); |
|
| 400 | - |
|
| 401 | - // Property Furnishing |
|
| 402 | - $fields[] = array( |
|
| 403 | - 'create_field' => true, |
|
| 404 | - 'listing_type' => $post_type, |
|
| 405 | - 'field_type' => 'select', |
|
| 406 | - 'data_type' => 'CHECK', |
|
| 407 | - 'is_active' => 1, |
|
| 408 | - 'site_field_title' => 'Furnishing', |
|
| 409 | - 'field_data_type' => 'VARCHAR', |
|
| 410 | - 'main_search' => 0, |
|
| 411 | - //'main_search_priority' => 16, |
|
| 412 | - 'search_condition' => 'SINGLE', |
|
| 413 | - 'site_htmlvar_name' => 'geodir_property_furnishing', |
|
| 414 | - 'htmlvar_name' => 'geodir_property_furnishing', |
|
| 415 | - 'field_title' => 'geodir_property_furnishing', |
|
| 416 | - 'front_search_title' => 'Furnishing', |
|
| 417 | - 'field_desc' => '', |
|
| 418 | - 'expand_custom_value' => 5, |
|
| 419 | - 'expand_search' => 1, |
|
| 420 | - 'search_operator' => 'OR' |
|
| 421 | - ); |
|
| 422 | - |
|
| 423 | - // Property Status |
|
| 424 | - $fields[] = array( |
|
| 425 | - 'create_field' => true, |
|
| 426 | - 'listing_type' => $post_type, |
|
| 427 | - 'field_type' => 'select', |
|
| 428 | - 'data_type' => 'CHECK', |
|
| 429 | - 'is_active' => 1, |
|
| 430 | - 'site_field_title' => 'Property Status', |
|
| 431 | - 'field_data_type' => 'VARCHAR', |
|
| 432 | - 'main_search' => 0, |
|
| 433 | - //'main_search_priority' => 16, |
|
| 434 | - 'search_condition' => 'SINGLE', |
|
| 435 | - 'site_htmlvar_name' => 'geodir_property_status', |
|
| 436 | - 'htmlvar_name' => 'geodir_property_status', |
|
| 437 | - 'field_title' => 'geodir_property_status', |
|
| 438 | - 'front_search_title' => 'Property Status', |
|
| 439 | - 'field_desc' => '', |
|
| 440 | - 'expand_custom_value' => 5, |
|
| 441 | - 'expand_search' => 1, |
|
| 442 | - 'search_operator' => 'OR' |
|
| 443 | - ); |
|
| 444 | - |
|
| 445 | - |
|
| 446 | - |
|
| 447 | - /** |
|
| 448 | - * Filter the array of advanced search fields DB table data. |
|
| 449 | - * |
|
| 450 | - * @since 1.6.6 |
|
| 451 | - * @param string $fields The default custom fields as an array. |
|
| 452 | - */ |
|
| 453 | - $fields = apply_filters('geodir_property_rent_custom_fields_advanced_search', $fields); |
|
| 454 | - |
|
| 455 | - return $fields; |
|
| 283 | + $fields = array(); |
|
| 284 | + |
|
| 285 | + // Price range |
|
| 286 | + $fields[] = array( |
|
| 287 | + 'create_field' => true, |
|
| 288 | + 'listing_type' => $post_type, |
|
| 289 | + 'field_type' => 'text', |
|
| 290 | + 'data_type' => 'RANGE', |
|
| 291 | + 'is_active' => 1, |
|
| 292 | + 'site_field_title' => 'Price', |
|
| 293 | + 'field_data_type' => 'FLOAT', |
|
| 294 | + 'main_search' => 1, |
|
| 295 | + 'main_search_priority' => 15, |
|
| 296 | + 'data_type_change' => 'SELECT', |
|
| 297 | + 'search_condition_select' => 'SINGLE', |
|
| 298 | + 'search_min_value' => '1000', |
|
| 299 | + 'search_max_value' => '10000', |
|
| 300 | + 'search_diff_value' => '1000', |
|
| 301 | + 'first_search_value' => '0', |
|
| 302 | + 'first_search_text' => '', |
|
| 303 | + 'last_search_text' => '', |
|
| 304 | + 'search_condition' => 'SELECT', |
|
| 305 | + 'site_htmlvar_name' => 'geodir_price', |
|
| 306 | + 'htmlvar_name' => 'geodir_price', |
|
| 307 | + 'field_title' => 'geodir_price', |
|
| 308 | + 'expand_custom_value' => '', |
|
| 309 | + 'front_search_title' => 'Price Range pm', |
|
| 310 | + 'field_desc' => '' |
|
| 311 | + ); |
|
| 312 | + |
|
| 313 | + // bedrooms |
|
| 314 | + $fields[] = array( |
|
| 315 | + 'create_field' => true, |
|
| 316 | + 'listing_type' => $post_type, |
|
| 317 | + 'field_type' => 'select', |
|
| 318 | + 'data_type' => 'CHECK', |
|
| 319 | + 'is_active' => 1, |
|
| 320 | + 'site_field_title' => 'Bedrooms', |
|
| 321 | + 'field_data_type' => 'VARCHAR', |
|
| 322 | + 'main_search' => 1, |
|
| 323 | + 'main_search_priority' => 16, |
|
| 324 | + 'search_condition' => 'SINGLE', |
|
| 325 | + 'site_htmlvar_name' => 'geodir_property_bedrooms', |
|
| 326 | + 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 327 | + 'field_title' => 'geodir_property_bedrooms', |
|
| 328 | + 'front_search_title' => 'Bedrooms', |
|
| 329 | + 'field_desc' => '', |
|
| 330 | + 'expand_custom_value' => 5, |
|
| 331 | + 'expand_search' => 1, |
|
| 332 | + 'search_operator' => 'OR' |
|
| 333 | + ); |
|
| 334 | + |
|
| 335 | + // Property type |
|
| 336 | + $fields[] = array( |
|
| 337 | + 'create_field' => true, |
|
| 338 | + 'listing_type' => $post_type, |
|
| 339 | + 'field_type' => 'select', |
|
| 340 | + 'data_type' => 'CHECK', |
|
| 341 | + 'is_active' => 1, |
|
| 342 | + 'site_field_title' => 'Property Type', |
|
| 343 | + 'field_data_type' => 'VARCHAR', |
|
| 344 | + 'main_search' => 0, |
|
| 345 | + //'main_search_priority' => 16, |
|
| 346 | + 'search_condition' => 'SINGLE', |
|
| 347 | + 'site_htmlvar_name' => 'geodir_property_type', |
|
| 348 | + 'htmlvar_name' => 'geodir_property_type', |
|
| 349 | + 'field_title' => 'geodir_property_type', |
|
| 350 | + 'front_search_title' => 'Property Type', |
|
| 351 | + 'field_desc' => '', |
|
| 352 | + 'expand_custom_value' => 5, |
|
| 353 | + 'expand_search' => 1, |
|
| 354 | + 'search_operator' => 'OR' |
|
| 355 | + ); |
|
| 356 | + |
|
| 357 | + // Property Features |
|
| 358 | + $fields[] = array( |
|
| 359 | + 'create_field' => true, |
|
| 360 | + 'listing_type' => $post_type, |
|
| 361 | + 'field_type' => 'multiselect', |
|
| 362 | + 'data_type' => 'CHECK', |
|
| 363 | + 'is_active' => 1, |
|
| 364 | + 'site_field_title' => 'Features', |
|
| 365 | + 'field_data_type' => 'VARCHAR', |
|
| 366 | + 'main_search' => 0, |
|
| 367 | + //'main_search_priority' => 16, |
|
| 368 | + 'search_condition' => 'SINGLE', |
|
| 369 | + 'site_htmlvar_name' => 'geodir_property_features', |
|
| 370 | + 'htmlvar_name' => 'geodir_property_features', |
|
| 371 | + 'field_title' => 'geodir_property_features', |
|
| 372 | + 'front_search_title' => 'Property Features', |
|
| 373 | + 'field_desc' => '', |
|
| 374 | + 'expand_custom_value' => 5, |
|
| 375 | + 'expand_search' => 1, |
|
| 376 | + 'search_operator' => 'AND' |
|
| 377 | + ); |
|
| 378 | + |
|
| 379 | + // Property Bathrooms |
|
| 380 | + $fields[] = array( |
|
| 381 | + 'create_field' => true, |
|
| 382 | + 'listing_type' => $post_type, |
|
| 383 | + 'field_type' => 'select', |
|
| 384 | + 'data_type' => 'CHECK', |
|
| 385 | + 'is_active' => 1, |
|
| 386 | + 'site_field_title' => 'Bathrooms', |
|
| 387 | + 'field_data_type' => 'VARCHAR', |
|
| 388 | + 'main_search' => 0, |
|
| 389 | + //'main_search_priority' => 16, |
|
| 390 | + 'search_condition' => 'SINGLE', |
|
| 391 | + 'site_htmlvar_name' => 'geodir_property_bathrooms', |
|
| 392 | + 'htmlvar_name' => 'geodir_property_bathrooms', |
|
| 393 | + 'field_title' => 'geodir_property_bathrooms', |
|
| 394 | + 'front_search_title' => 'Bathrooms', |
|
| 395 | + 'field_desc' => '', |
|
| 396 | + 'expand_custom_value' => 5, |
|
| 397 | + 'expand_search' => 1, |
|
| 398 | + 'search_operator' => 'OR' |
|
| 399 | + ); |
|
| 400 | + |
|
| 401 | + // Property Furnishing |
|
| 402 | + $fields[] = array( |
|
| 403 | + 'create_field' => true, |
|
| 404 | + 'listing_type' => $post_type, |
|
| 405 | + 'field_type' => 'select', |
|
| 406 | + 'data_type' => 'CHECK', |
|
| 407 | + 'is_active' => 1, |
|
| 408 | + 'site_field_title' => 'Furnishing', |
|
| 409 | + 'field_data_type' => 'VARCHAR', |
|
| 410 | + 'main_search' => 0, |
|
| 411 | + //'main_search_priority' => 16, |
|
| 412 | + 'search_condition' => 'SINGLE', |
|
| 413 | + 'site_htmlvar_name' => 'geodir_property_furnishing', |
|
| 414 | + 'htmlvar_name' => 'geodir_property_furnishing', |
|
| 415 | + 'field_title' => 'geodir_property_furnishing', |
|
| 416 | + 'front_search_title' => 'Furnishing', |
|
| 417 | + 'field_desc' => '', |
|
| 418 | + 'expand_custom_value' => 5, |
|
| 419 | + 'expand_search' => 1, |
|
| 420 | + 'search_operator' => 'OR' |
|
| 421 | + ); |
|
| 422 | + |
|
| 423 | + // Property Status |
|
| 424 | + $fields[] = array( |
|
| 425 | + 'create_field' => true, |
|
| 426 | + 'listing_type' => $post_type, |
|
| 427 | + 'field_type' => 'select', |
|
| 428 | + 'data_type' => 'CHECK', |
|
| 429 | + 'is_active' => 1, |
|
| 430 | + 'site_field_title' => 'Property Status', |
|
| 431 | + 'field_data_type' => 'VARCHAR', |
|
| 432 | + 'main_search' => 0, |
|
| 433 | + //'main_search_priority' => 16, |
|
| 434 | + 'search_condition' => 'SINGLE', |
|
| 435 | + 'site_htmlvar_name' => 'geodir_property_status', |
|
| 436 | + 'htmlvar_name' => 'geodir_property_status', |
|
| 437 | + 'field_title' => 'geodir_property_status', |
|
| 438 | + 'front_search_title' => 'Property Status', |
|
| 439 | + 'field_desc' => '', |
|
| 440 | + 'expand_custom_value' => 5, |
|
| 441 | + 'expand_search' => 1, |
|
| 442 | + 'search_operator' => 'OR' |
|
| 443 | + ); |
|
| 444 | + |
|
| 445 | + |
|
| 446 | + |
|
| 447 | + /** |
|
| 448 | + * Filter the array of advanced search fields DB table data. |
|
| 449 | + * |
|
| 450 | + * @since 1.6.6 |
|
| 451 | + * @param string $fields The default custom fields as an array. |
|
| 452 | + */ |
|
| 453 | + $fields = apply_filters('geodir_property_rent_custom_fields_advanced_search', $fields); |
|
| 454 | + |
|
| 455 | + return $fields; |
|
| 456 | 456 | } |
| 457 | 457 | |
| 458 | 458 | global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
@@ -462,52 +462,52 @@ discard block |
||
| 462 | 462 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 463 | 463 | |
| 464 | 464 | if($dummy_post_index==1){ |
| 465 | - // add the dummy categories |
|
| 466 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 467 | - |
|
| 468 | - // add the dummy custom fields |
|
| 469 | - $fields = geodir_property_rent_custom_fields($post_type); |
|
| 470 | - geodir_create_dummy_fields($fields); |
|
| 471 | - |
|
| 472 | - // add sort order items |
|
| 473 | - $sort_fields = geodir_property_rent_custom_fields_sort($post_type); |
|
| 474 | - foreach($sort_fields as $sort){ |
|
| 475 | - geodir_custom_sort_field_save($sort); |
|
| 476 | - } |
|
| 477 | - |
|
| 478 | - // update the type currently installed |
|
| 479 | - update_option($post_type.'_dummy_data_type','property_rent'); |
|
| 480 | - |
|
| 481 | - // add the advanced search fields |
|
| 482 | - if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 483 | - $search_fields = geodir_property_rent_custom_fields_advanced_search($post_type); |
|
| 484 | - foreach($search_fields as $sfield){ |
|
| 485 | - geodir_custom_advance_search_field_save( $sfield ); |
|
| 486 | - } |
|
| 487 | - } |
|
| 465 | + // add the dummy categories |
|
| 466 | + geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 467 | + |
|
| 468 | + // add the dummy custom fields |
|
| 469 | + $fields = geodir_property_rent_custom_fields($post_type); |
|
| 470 | + geodir_create_dummy_fields($fields); |
|
| 471 | + |
|
| 472 | + // add sort order items |
|
| 473 | + $sort_fields = geodir_property_rent_custom_fields_sort($post_type); |
|
| 474 | + foreach($sort_fields as $sort){ |
|
| 475 | + geodir_custom_sort_field_save($sort); |
|
| 476 | + } |
|
| 477 | + |
|
| 478 | + // update the type currently installed |
|
| 479 | + update_option($post_type.'_dummy_data_type','property_rent'); |
|
| 480 | + |
|
| 481 | + // add the advanced search fields |
|
| 482 | + if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 483 | + $search_fields = geodir_property_rent_custom_fields_advanced_search($post_type); |
|
| 484 | + foreach($search_fields as $sfield){ |
|
| 485 | + geodir_custom_advance_search_field_save( $sfield ); |
|
| 486 | + } |
|
| 487 | + } |
|
| 488 | 488 | } |
| 489 | 489 | |
| 490 | 490 | if (geodir_dummy_folder_exists()) |
| 491 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 491 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 492 | 492 | else |
| 493 | - $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 493 | + $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 494 | 494 | |
| 495 | 495 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 496 | 496 | |
| 497 | 497 | switch ($dummy_post_index) { |
| 498 | 498 | |
| 499 | - case(1): |
|
| 500 | - $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 501 | - $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 502 | - $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 503 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 504 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 499 | + case(1): |
|
| 500 | + $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 501 | + $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 502 | + $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 503 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 504 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 505 | 505 | |
| 506 | 506 | |
| 507 | - $post_info[] = array( |
|
| 508 | - "listing_type" => $post_type, |
|
| 509 | - "post_title" => 'Eastern Lodge', |
|
| 510 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 507 | + $post_info[] = array( |
|
| 508 | + "listing_type" => $post_type, |
|
| 509 | + "post_title" => 'Eastern Lodge', |
|
| 510 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 511 | 511 | |
| 512 | 512 | Aliquam ut odio ullamcorper, posuere enim sed, venenatis tortor. Donec justo elit, aliquam sed cursus sed, semper eget libero. Mauris consequat lorem sed fringilla tincidunt. Phasellus suscipit velit et elit tristique, ac commodo metus scelerisque. Vivamus finibus ipsum placerat pulvinar aliquet. Maecenas augue orci, blandit at nibh pharetra, condimentum congue ligula. Duis non ante sagittis odio convallis lacinia in quis sapien. |
| 513 | 513 | |
@@ -516,42 +516,42 @@ discard block |
||
| 516 | 516 | Vestibulum tristique quam eget bibendum pulvinar. Mauris sit amet magna ut arcu rutrum pellentesque feugiat et ipsum. Proin porta quam sed risus accumsan pharetra. Nulla quis semper nisl. Nulla facilisi. Nulla facilisi. Pellentesque euismod sollicitudin lacus vel ultricies. Vestibulum ut sem ut nulla ultricies convallis in at mi. Nunc vitae nibh arcu. Maecenas nunc enim, tempus a rhoncus eget, pellentesque ut erat. |
| 517 | 517 | |
| 518 | 518 | Suspendisse interdum accumsan magna et tempor. Suspendisse scelerisque at lorem sit amet faucibus. Aenean quis consectetur enim. Duis aliquet tristique tempus. Suspendisse id ullamcorper mauris. Aliquam in libero eu justo porttitor pulvinar. Nulla semper placerat lectus. Nulla mollis suscipit lacus, a blandit purus cursus non. Maecenas id tellus mi. Pellentesque sollicitudin nibh eget magna scelerisque consequat. Aliquam convallis orci arcu, et euismod dui cursus et. Donec nec pellentesque nulla, ac pretium massa. In gravida bibendum ornare.', |
| 519 | - "post_images" => $image_array, |
|
| 520 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 521 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 522 | - "geodir_video" => '', |
|
| 523 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 524 | - "geodir_contact" => '(111) 677-4444', |
|
| 525 | - "geodir_email" => '[email protected]', |
|
| 526 | - "geodir_website" => 'http://example.com/', |
|
| 527 | - "geodir_twitter" => 'http://example.com/', |
|
| 528 | - "geodir_facebook" => 'http://example.com/', |
|
| 529 | - "geodir_price" => '1750', |
|
| 530 | - "geodir_property_status" => 'For Rent', |
|
| 531 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 532 | - 'geodir_property_type' => 'Detached house', |
|
| 533 | - 'geodir_property_bedrooms' => '3', |
|
| 534 | - 'geodir_property_bathrooms' => '2', |
|
| 535 | - 'geodir_property_area' => '1850', |
|
| 536 | - 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 537 | - "post_dummy" => '1' |
|
| 538 | - ); |
|
| 539 | - |
|
| 540 | - |
|
| 541 | - break; |
|
| 542 | - case 2: |
|
| 543 | - $image_array = array(); |
|
| 544 | - $post_meta = array(); |
|
| 545 | - $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 546 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 547 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 548 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 549 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 550 | - |
|
| 551 | - $post_info[] = array( |
|
| 552 | - "listing_type" => $post_type, |
|
| 553 | - "post_title" => 'Daisy Street', |
|
| 554 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 519 | + "post_images" => $image_array, |
|
| 520 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 521 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 522 | + "geodir_video" => '', |
|
| 523 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 524 | + "geodir_contact" => '(111) 677-4444', |
|
| 525 | + "geodir_email" => '[email protected]', |
|
| 526 | + "geodir_website" => 'http://example.com/', |
|
| 527 | + "geodir_twitter" => 'http://example.com/', |
|
| 528 | + "geodir_facebook" => 'http://example.com/', |
|
| 529 | + "geodir_price" => '1750', |
|
| 530 | + "geodir_property_status" => 'For Rent', |
|
| 531 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 532 | + 'geodir_property_type' => 'Detached house', |
|
| 533 | + 'geodir_property_bedrooms' => '3', |
|
| 534 | + 'geodir_property_bathrooms' => '2', |
|
| 535 | + 'geodir_property_area' => '1850', |
|
| 536 | + 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 537 | + "post_dummy" => '1' |
|
| 538 | + ); |
|
| 539 | + |
|
| 540 | + |
|
| 541 | + break; |
|
| 542 | + case 2: |
|
| 543 | + $image_array = array(); |
|
| 544 | + $post_meta = array(); |
|
| 545 | + $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 546 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 547 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 548 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 549 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 550 | + |
|
| 551 | + $post_info[] = array( |
|
| 552 | + "listing_type" => $post_type, |
|
| 553 | + "post_title" => 'Daisy Street', |
|
| 554 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 555 | 555 | |
| 556 | 556 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 557 | 557 | |
@@ -561,42 +561,42 @@ discard block |
||
| 561 | 561 | |
| 562 | 562 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 563 | 563 | |
| 564 | - "post_images" => $image_array, |
|
| 565 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 566 | - "post_tags" => array('Garage'), |
|
| 567 | - "geodir_video" => '', |
|
| 568 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 569 | - "geodir_contact" => '(222) 777-1111', |
|
| 570 | - "geodir_email" => '[email protected]', |
|
| 571 | - "geodir_website" => 'http://example.com/', |
|
| 572 | - "geodir_twitter" => 'http://example.com/', |
|
| 573 | - "geodir_facebook" => 'http://example.com/', |
|
| 574 | - "geodir_price" => '1150', |
|
| 575 | - "geodir_property_status" => 'Let', |
|
| 576 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 577 | - 'geodir_property_type' => 'Detached house', |
|
| 578 | - 'geodir_property_bedrooms' => '5', |
|
| 579 | - 'geodir_property_bathrooms' => '3', |
|
| 580 | - 'geodir_property_area' => '2650', |
|
| 581 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 582 | - "post_dummy" => '1' |
|
| 583 | - ); |
|
| 584 | - |
|
| 585 | - break; |
|
| 586 | - |
|
| 587 | - case 3: |
|
| 588 | - $image_array = array(); |
|
| 589 | - $post_meta = array(); |
|
| 590 | - $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 591 | - $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 592 | - $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 593 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 594 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 595 | - |
|
| 596 | - $post_info[] = array( |
|
| 597 | - "listing_type" => $post_type, |
|
| 598 | - "post_title" => 'Northbay House', |
|
| 599 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 564 | + "post_images" => $image_array, |
|
| 565 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 566 | + "post_tags" => array('Garage'), |
|
| 567 | + "geodir_video" => '', |
|
| 568 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 569 | + "geodir_contact" => '(222) 777-1111', |
|
| 570 | + "geodir_email" => '[email protected]', |
|
| 571 | + "geodir_website" => 'http://example.com/', |
|
| 572 | + "geodir_twitter" => 'http://example.com/', |
|
| 573 | + "geodir_facebook" => 'http://example.com/', |
|
| 574 | + "geodir_price" => '1150', |
|
| 575 | + "geodir_property_status" => 'Let', |
|
| 576 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 577 | + 'geodir_property_type' => 'Detached house', |
|
| 578 | + 'geodir_property_bedrooms' => '5', |
|
| 579 | + 'geodir_property_bathrooms' => '3', |
|
| 580 | + 'geodir_property_area' => '2650', |
|
| 581 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 582 | + "post_dummy" => '1' |
|
| 583 | + ); |
|
| 584 | + |
|
| 585 | + break; |
|
| 586 | + |
|
| 587 | + case 3: |
|
| 588 | + $image_array = array(); |
|
| 589 | + $post_meta = array(); |
|
| 590 | + $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 591 | + $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 592 | + $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 593 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 594 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 595 | + |
|
| 596 | + $post_info[] = array( |
|
| 597 | + "listing_type" => $post_type, |
|
| 598 | + "post_title" => 'Northbay House', |
|
| 599 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 600 | 600 | |
| 601 | 601 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 602 | 602 | |
@@ -606,43 +606,43 @@ discard block |
||
| 606 | 606 | |
| 607 | 607 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 608 | 608 | |
| 609 | - "post_images" => $image_array, |
|
| 610 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 611 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 612 | - "geodir_video" => '', |
|
| 613 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 614 | - "geodir_contact" => '(222) 777-1111', |
|
| 615 | - "geodir_email" => '[email protected]', |
|
| 616 | - "geodir_website" => 'http://example.com/', |
|
| 617 | - "geodir_twitter" => 'http://example.com/', |
|
| 618 | - "geodir_facebook" => 'http://example.com/', |
|
| 619 | - "geodir_price" => '1300', |
|
| 620 | - "geodir_property_status" => 'Under Offer', |
|
| 621 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 622 | - 'geodir_property_type' => 'Detached house', |
|
| 623 | - 'geodir_property_bedrooms' => '6', |
|
| 624 | - 'geodir_property_bathrooms' => '6', |
|
| 625 | - 'geodir_property_area' => '1650', |
|
| 626 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 627 | - "post_dummy" => '1' |
|
| 628 | - ); |
|
| 629 | - |
|
| 630 | - break; |
|
| 631 | - |
|
| 632 | - |
|
| 633 | - case 4: |
|
| 634 | - $image_array = array(); |
|
| 635 | - $post_meta = array(); |
|
| 636 | - $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 637 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 638 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 639 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 640 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 641 | - |
|
| 642 | - $post_info[] = array( |
|
| 643 | - "listing_type" => $post_type, |
|
| 644 | - "post_title" => 'Jesmond Mansion', |
|
| 645 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 609 | + "post_images" => $image_array, |
|
| 610 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 611 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 612 | + "geodir_video" => '', |
|
| 613 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 614 | + "geodir_contact" => '(222) 777-1111', |
|
| 615 | + "geodir_email" => '[email protected]', |
|
| 616 | + "geodir_website" => 'http://example.com/', |
|
| 617 | + "geodir_twitter" => 'http://example.com/', |
|
| 618 | + "geodir_facebook" => 'http://example.com/', |
|
| 619 | + "geodir_price" => '1300', |
|
| 620 | + "geodir_property_status" => 'Under Offer', |
|
| 621 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 622 | + 'geodir_property_type' => 'Detached house', |
|
| 623 | + 'geodir_property_bedrooms' => '6', |
|
| 624 | + 'geodir_property_bathrooms' => '6', |
|
| 625 | + 'geodir_property_area' => '1650', |
|
| 626 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 627 | + "post_dummy" => '1' |
|
| 628 | + ); |
|
| 629 | + |
|
| 630 | + break; |
|
| 631 | + |
|
| 632 | + |
|
| 633 | + case 4: |
|
| 634 | + $image_array = array(); |
|
| 635 | + $post_meta = array(); |
|
| 636 | + $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 637 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 638 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 639 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 640 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 641 | + |
|
| 642 | + $post_info[] = array( |
|
| 643 | + "listing_type" => $post_type, |
|
| 644 | + "post_title" => 'Jesmond Mansion', |
|
| 645 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 646 | 646 | |
| 647 | 647 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 648 | 648 | |
@@ -652,42 +652,42 @@ discard block |
||
| 652 | 652 | |
| 653 | 653 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 654 | 654 | |
| 655 | - "post_images" => $image_array, |
|
| 656 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 657 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 658 | - "geodir_video" => '', |
|
| 659 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 660 | - "geodir_contact" => '(222) 777-1111', |
|
| 661 | - "geodir_email" => '[email protected]', |
|
| 662 | - "geodir_website" => 'http://example.com/', |
|
| 663 | - "geodir_twitter" => 'http://example.com/', |
|
| 664 | - "geodir_facebook" => 'http://example.com/', |
|
| 665 | - "geodir_price" => '13000', |
|
| 666 | - "geodir_property_status" => 'Under Offer', |
|
| 667 | - 'geodir_property_furnishing' => 'Partially furnished', |
|
| 668 | - 'geodir_property_type' => 'Detached house', |
|
| 669 | - 'geodir_property_bedrooms' => '10', |
|
| 670 | - 'geodir_property_bathrooms' => '7', |
|
| 671 | - 'geodir_property_area' => '6600', |
|
| 672 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 673 | - "post_dummy" => '1' |
|
| 674 | - ); |
|
| 675 | - |
|
| 676 | - break; |
|
| 677 | - |
|
| 678 | - case 5: |
|
| 679 | - $image_array = array(); |
|
| 680 | - $post_meta = array(); |
|
| 681 | - $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 682 | - $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 683 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 684 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 685 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 686 | - |
|
| 687 | - $post_info[] = array( |
|
| 688 | - "listing_type" => $post_type, |
|
| 689 | - "post_title" => 'Springfield Lodge', |
|
| 690 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 655 | + "post_images" => $image_array, |
|
| 656 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 657 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 658 | + "geodir_video" => '', |
|
| 659 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 660 | + "geodir_contact" => '(222) 777-1111', |
|
| 661 | + "geodir_email" => '[email protected]', |
|
| 662 | + "geodir_website" => 'http://example.com/', |
|
| 663 | + "geodir_twitter" => 'http://example.com/', |
|
| 664 | + "geodir_facebook" => 'http://example.com/', |
|
| 665 | + "geodir_price" => '13000', |
|
| 666 | + "geodir_property_status" => 'Under Offer', |
|
| 667 | + 'geodir_property_furnishing' => 'Partially furnished', |
|
| 668 | + 'geodir_property_type' => 'Detached house', |
|
| 669 | + 'geodir_property_bedrooms' => '10', |
|
| 670 | + 'geodir_property_bathrooms' => '7', |
|
| 671 | + 'geodir_property_area' => '6600', |
|
| 672 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 673 | + "post_dummy" => '1' |
|
| 674 | + ); |
|
| 675 | + |
|
| 676 | + break; |
|
| 677 | + |
|
| 678 | + case 5: |
|
| 679 | + $image_array = array(); |
|
| 680 | + $post_meta = array(); |
|
| 681 | + $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 682 | + $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 683 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 684 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 685 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 686 | + |
|
| 687 | + $post_info[] = array( |
|
| 688 | + "listing_type" => $post_type, |
|
| 689 | + "post_title" => 'Springfield Lodge', |
|
| 690 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 691 | 691 | |
| 692 | 692 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 693 | 693 | |
@@ -697,42 +697,42 @@ discard block |
||
| 697 | 697 | |
| 698 | 698 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 699 | 699 | |
| 700 | - "post_images" => $image_array, |
|
| 701 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 702 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 703 | - "geodir_video" => '', |
|
| 704 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 705 | - "geodir_contact" => '(222) 777-1111', |
|
| 706 | - "geodir_email" => '[email protected]', |
|
| 707 | - "geodir_website" => 'http://example.com/', |
|
| 708 | - "geodir_twitter" => 'http://example.com/', |
|
| 709 | - "geodir_facebook" => 'http://example.com/', |
|
| 710 | - "geodir_price" => '1800', |
|
| 711 | - "geodir_property_status" => 'For Rent', |
|
| 712 | - 'geodir_property_furnishing' => 'Optional', |
|
| 713 | - 'geodir_property_type' => 'Detached house', |
|
| 714 | - 'geodir_property_bedrooms' => '4', |
|
| 715 | - 'geodir_property_bathrooms' => '3', |
|
| 716 | - 'geodir_property_area' => '3700', |
|
| 717 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 718 | - "post_dummy" => '1' |
|
| 719 | - ); |
|
| 720 | - |
|
| 721 | - break; |
|
| 722 | - |
|
| 723 | - case 6: |
|
| 724 | - $image_array = array(); |
|
| 725 | - $post_meta = array(); |
|
| 726 | - $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 727 | - $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 728 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 729 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 730 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 731 | - |
|
| 732 | - $post_info[] = array( |
|
| 733 | - "listing_type" => $post_type, |
|
| 734 | - "post_title" => 'Forrest Park', |
|
| 735 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 700 | + "post_images" => $image_array, |
|
| 701 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 702 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 703 | + "geodir_video" => '', |
|
| 704 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 705 | + "geodir_contact" => '(222) 777-1111', |
|
| 706 | + "geodir_email" => '[email protected]', |
|
| 707 | + "geodir_website" => 'http://example.com/', |
|
| 708 | + "geodir_twitter" => 'http://example.com/', |
|
| 709 | + "geodir_facebook" => 'http://example.com/', |
|
| 710 | + "geodir_price" => '1800', |
|
| 711 | + "geodir_property_status" => 'For Rent', |
|
| 712 | + 'geodir_property_furnishing' => 'Optional', |
|
| 713 | + 'geodir_property_type' => 'Detached house', |
|
| 714 | + 'geodir_property_bedrooms' => '4', |
|
| 715 | + 'geodir_property_bathrooms' => '3', |
|
| 716 | + 'geodir_property_area' => '3700', |
|
| 717 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 718 | + "post_dummy" => '1' |
|
| 719 | + ); |
|
| 720 | + |
|
| 721 | + break; |
|
| 722 | + |
|
| 723 | + case 6: |
|
| 724 | + $image_array = array(); |
|
| 725 | + $post_meta = array(); |
|
| 726 | + $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 727 | + $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 728 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 729 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 730 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 731 | + |
|
| 732 | + $post_info[] = array( |
|
| 733 | + "listing_type" => $post_type, |
|
| 734 | + "post_title" => 'Forrest Park', |
|
| 735 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 736 | 736 | |
| 737 | 737 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 738 | 738 | |
@@ -742,42 +742,42 @@ discard block |
||
| 742 | 742 | |
| 743 | 743 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 744 | 744 | |
| 745 | - "post_images" => $image_array, |
|
| 746 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 747 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 748 | - "geodir_video" => '', |
|
| 749 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 750 | - "geodir_contact" => '(222) 777-1111', |
|
| 751 | - "geodir_email" => '[email protected]', |
|
| 752 | - "geodir_website" => 'http://example.com/', |
|
| 753 | - "geodir_twitter" => 'http://example.com/', |
|
| 754 | - "geodir_facebook" => 'http://example.com/', |
|
| 755 | - "geodir_price" => '2700', |
|
| 756 | - "geodir_property_status" => 'For Rent', |
|
| 757 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 758 | - 'geodir_property_type' => 'Detached house', |
|
| 759 | - 'geodir_property_bedrooms' => '5', |
|
| 760 | - 'geodir_property_bathrooms' => '4', |
|
| 761 | - 'geodir_property_area' => '2250', |
|
| 762 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 763 | - "post_dummy" => '1' |
|
| 764 | - ); |
|
| 765 | - |
|
| 766 | - break; |
|
| 767 | - |
|
| 768 | - case 7: |
|
| 769 | - $image_array = array(); |
|
| 770 | - $post_meta = array(); |
|
| 771 | - $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 772 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 773 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 774 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 775 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 776 | - |
|
| 777 | - $post_info[] = array( |
|
| 778 | - "listing_type" => $post_type, |
|
| 779 | - "post_title" => 'Fraser Suites', |
|
| 780 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 745 | + "post_images" => $image_array, |
|
| 746 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 747 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 748 | + "geodir_video" => '', |
|
| 749 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 750 | + "geodir_contact" => '(222) 777-1111', |
|
| 751 | + "geodir_email" => '[email protected]', |
|
| 752 | + "geodir_website" => 'http://example.com/', |
|
| 753 | + "geodir_twitter" => 'http://example.com/', |
|
| 754 | + "geodir_facebook" => 'http://example.com/', |
|
| 755 | + "geodir_price" => '2700', |
|
| 756 | + "geodir_property_status" => 'For Rent', |
|
| 757 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 758 | + 'geodir_property_type' => 'Detached house', |
|
| 759 | + 'geodir_property_bedrooms' => '5', |
|
| 760 | + 'geodir_property_bathrooms' => '4', |
|
| 761 | + 'geodir_property_area' => '2250', |
|
| 762 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 763 | + "post_dummy" => '1' |
|
| 764 | + ); |
|
| 765 | + |
|
| 766 | + break; |
|
| 767 | + |
|
| 768 | + case 7: |
|
| 769 | + $image_array = array(); |
|
| 770 | + $post_meta = array(); |
|
| 771 | + $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 772 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 773 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 774 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 775 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 776 | + |
|
| 777 | + $post_info[] = array( |
|
| 778 | + "listing_type" => $post_type, |
|
| 779 | + "post_title" => 'Fraser Suites', |
|
| 780 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 781 | 781 | |
| 782 | 782 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 783 | 783 | |
@@ -787,42 +787,42 @@ discard block |
||
| 787 | 787 | |
| 788 | 788 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 789 | 789 | |
| 790 | - "post_images" => $image_array, |
|
| 791 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 792 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 793 | - "geodir_video" => '', |
|
| 794 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 795 | - "geodir_contact" => '(222) 777-1111', |
|
| 796 | - "geodir_email" => '[email protected]', |
|
| 797 | - "geodir_website" => 'http://example.com/', |
|
| 798 | - "geodir_twitter" => 'http://example.com/', |
|
| 799 | - "geodir_facebook" => 'http://example.com/', |
|
| 800 | - "geodir_price" => '1450', |
|
| 801 | - "geodir_property_status" => 'For Rent', |
|
| 802 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 803 | - 'geodir_property_type' => 'Apartment', |
|
| 804 | - 'geodir_property_bedrooms' => '3', |
|
| 805 | - 'geodir_property_bathrooms' => '2', |
|
| 806 | - 'geodir_property_area' => '1250', |
|
| 807 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 808 | - "post_dummy" => '1' |
|
| 809 | - ); |
|
| 810 | - |
|
| 811 | - break; |
|
| 812 | - |
|
| 813 | - case 8: |
|
| 814 | - $image_array = array(); |
|
| 815 | - $post_meta = array(); |
|
| 816 | - $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 817 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 818 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 819 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 820 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 821 | - |
|
| 822 | - $post_info[] = array( |
|
| 823 | - "listing_type" => $post_type, |
|
| 824 | - "post_title" => 'Richmore Apartments', |
|
| 825 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 790 | + "post_images" => $image_array, |
|
| 791 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 792 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 793 | + "geodir_video" => '', |
|
| 794 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 795 | + "geodir_contact" => '(222) 777-1111', |
|
| 796 | + "geodir_email" => '[email protected]', |
|
| 797 | + "geodir_website" => 'http://example.com/', |
|
| 798 | + "geodir_twitter" => 'http://example.com/', |
|
| 799 | + "geodir_facebook" => 'http://example.com/', |
|
| 800 | + "geodir_price" => '1450', |
|
| 801 | + "geodir_property_status" => 'For Rent', |
|
| 802 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 803 | + 'geodir_property_type' => 'Apartment', |
|
| 804 | + 'geodir_property_bedrooms' => '3', |
|
| 805 | + 'geodir_property_bathrooms' => '2', |
|
| 806 | + 'geodir_property_area' => '1250', |
|
| 807 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 808 | + "post_dummy" => '1' |
|
| 809 | + ); |
|
| 810 | + |
|
| 811 | + break; |
|
| 812 | + |
|
| 813 | + case 8: |
|
| 814 | + $image_array = array(); |
|
| 815 | + $post_meta = array(); |
|
| 816 | + $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 817 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 818 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 819 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 820 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 821 | + |
|
| 822 | + $post_info[] = array( |
|
| 823 | + "listing_type" => $post_type, |
|
| 824 | + "post_title" => 'Richmore Apartments', |
|
| 825 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 826 | 826 | |
| 827 | 827 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 828 | 828 | |
@@ -832,43 +832,43 @@ discard block |
||
| 832 | 832 | |
| 833 | 833 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 834 | 834 | |
| 835 | - "post_images" => $image_array, |
|
| 836 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 837 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 838 | - "geodir_video" => '', |
|
| 839 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 840 | - "geodir_contact" => '(222) 777-1111', |
|
| 841 | - "geodir_email" => '[email protected]', |
|
| 842 | - "geodir_website" => 'http://example.com/', |
|
| 843 | - "geodir_twitter" => 'http://example.com/', |
|
| 844 | - "geodir_facebook" => 'http://example.com/', |
|
| 845 | - "geodir_price" => '2000', |
|
| 846 | - "geodir_property_status" => 'For Rent', |
|
| 847 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 848 | - 'geodir_property_type' => 'Apartment', |
|
| 849 | - 'geodir_property_bedrooms' => '2', |
|
| 850 | - 'geodir_property_bathrooms' => '2', |
|
| 851 | - 'geodir_property_area' => '1750', |
|
| 852 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 853 | - "post_dummy" => '1' |
|
| 854 | - ); |
|
| 855 | - |
|
| 856 | - break; |
|
| 857 | - |
|
| 858 | - |
|
| 859 | - case 9: |
|
| 860 | - $image_array = array(); |
|
| 861 | - $post_meta = array(); |
|
| 862 | - $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 863 | - $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 864 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 865 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 866 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 867 | - |
|
| 868 | - $post_info[] = array( |
|
| 869 | - "listing_type" => $post_type, |
|
| 870 | - "post_title" => 'Hotel Alpina', |
|
| 871 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 835 | + "post_images" => $image_array, |
|
| 836 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 837 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 838 | + "geodir_video" => '', |
|
| 839 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 840 | + "geodir_contact" => '(222) 777-1111', |
|
| 841 | + "geodir_email" => '[email protected]', |
|
| 842 | + "geodir_website" => 'http://example.com/', |
|
| 843 | + "geodir_twitter" => 'http://example.com/', |
|
| 844 | + "geodir_facebook" => 'http://example.com/', |
|
| 845 | + "geodir_price" => '2000', |
|
| 846 | + "geodir_property_status" => 'For Rent', |
|
| 847 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 848 | + 'geodir_property_type' => 'Apartment', |
|
| 849 | + 'geodir_property_bedrooms' => '2', |
|
| 850 | + 'geodir_property_bathrooms' => '2', |
|
| 851 | + 'geodir_property_area' => '1750', |
|
| 852 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 853 | + "post_dummy" => '1' |
|
| 854 | + ); |
|
| 855 | + |
|
| 856 | + break; |
|
| 857 | + |
|
| 858 | + |
|
| 859 | + case 9: |
|
| 860 | + $image_array = array(); |
|
| 861 | + $post_meta = array(); |
|
| 862 | + $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 863 | + $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 864 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 865 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 866 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 867 | + |
|
| 868 | + $post_info[] = array( |
|
| 869 | + "listing_type" => $post_type, |
|
| 870 | + "post_title" => 'Hotel Alpina', |
|
| 871 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 872 | 872 | |
| 873 | 873 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 874 | 874 | |
@@ -878,39 +878,39 @@ discard block |
||
| 878 | 878 | |
| 879 | 879 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 880 | 880 | |
| 881 | - "post_images" => $image_array, |
|
| 882 | - "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 883 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 884 | - "geodir_video" => '', |
|
| 885 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 886 | - "geodir_contact" => '(222) 777-1111', |
|
| 887 | - "geodir_email" => '[email protected]', |
|
| 888 | - "geodir_website" => 'http://example.com/', |
|
| 889 | - "geodir_twitter" => 'http://example.com/', |
|
| 890 | - "geodir_facebook" => 'http://example.com/', |
|
| 891 | - "geodir_price" => '60000', |
|
| 892 | - "geodir_property_status" => 'For Rent', |
|
| 893 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 894 | - 'geodir_property_type' => 'Hotel', |
|
| 895 | - 'geodir_property_bedrooms' => '120', |
|
| 896 | - 'geodir_property_bathrooms' => '133', |
|
| 897 | - 'geodir_property_area' => '35000', |
|
| 898 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 899 | - "post_dummy" => '1' |
|
| 900 | - ); |
|
| 901 | - |
|
| 902 | - break; |
|
| 903 | - |
|
| 904 | - case 10: |
|
| 905 | - $image_array = array(); |
|
| 906 | - $post_meta = array(); |
|
| 907 | - $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 908 | - $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 909 | - |
|
| 910 | - $post_info[] = array( |
|
| 911 | - "listing_type" => $post_type, |
|
| 912 | - "post_title" => 'Development Land', |
|
| 913 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 881 | + "post_images" => $image_array, |
|
| 882 | + "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 883 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 884 | + "geodir_video" => '', |
|
| 885 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 886 | + "geodir_contact" => '(222) 777-1111', |
|
| 887 | + "geodir_email" => '[email protected]', |
|
| 888 | + "geodir_website" => 'http://example.com/', |
|
| 889 | + "geodir_twitter" => 'http://example.com/', |
|
| 890 | + "geodir_facebook" => 'http://example.com/', |
|
| 891 | + "geodir_price" => '60000', |
|
| 892 | + "geodir_property_status" => 'For Rent', |
|
| 893 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 894 | + 'geodir_property_type' => 'Hotel', |
|
| 895 | + 'geodir_property_bedrooms' => '120', |
|
| 896 | + 'geodir_property_bathrooms' => '133', |
|
| 897 | + 'geodir_property_area' => '35000', |
|
| 898 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 899 | + "post_dummy" => '1' |
|
| 900 | + ); |
|
| 901 | + |
|
| 902 | + break; |
|
| 903 | + |
|
| 904 | + case 10: |
|
| 905 | + $image_array = array(); |
|
| 906 | + $post_meta = array(); |
|
| 907 | + $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 908 | + $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 909 | + |
|
| 910 | + $post_info[] = array( |
|
| 911 | + "listing_type" => $post_type, |
|
| 912 | + "post_title" => 'Development Land', |
|
| 913 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 914 | 914 | |
| 915 | 915 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 916 | 916 | |
@@ -920,93 +920,93 @@ discard block |
||
| 920 | 920 | |
| 921 | 921 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 922 | 922 | |
| 923 | - "post_images" => $image_array, |
|
| 924 | - "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 925 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 926 | - "geodir_video" => '', |
|
| 927 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 928 | - "geodir_contact" => '(222) 777-1111', |
|
| 929 | - "geodir_email" => '[email protected]', |
|
| 930 | - "geodir_website" => 'http://example.com/', |
|
| 931 | - "geodir_twitter" => 'http://example.com/', |
|
| 932 | - "geodir_facebook" => 'http://example.com/', |
|
| 933 | - "geodir_price" => '800', |
|
| 934 | - "geodir_property_status" => 'For Rent', |
|
| 935 | - 'geodir_property_furnishing' => '', |
|
| 936 | - 'geodir_property_type' => 'Land', |
|
| 937 | - 'geodir_property_bedrooms' => '', |
|
| 938 | - 'geodir_property_bathrooms' => '', |
|
| 939 | - 'geodir_property_area' => '250000', |
|
| 940 | - 'geodir_property_features' => '', |
|
| 941 | - "post_dummy" => '1' |
|
| 942 | - ); |
|
| 943 | - |
|
| 944 | - break; |
|
| 923 | + "post_images" => $image_array, |
|
| 924 | + "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 925 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 926 | + "geodir_video" => '', |
|
| 927 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 928 | + "geodir_contact" => '(222) 777-1111', |
|
| 929 | + "geodir_email" => '[email protected]', |
|
| 930 | + "geodir_website" => 'http://example.com/', |
|
| 931 | + "geodir_twitter" => 'http://example.com/', |
|
| 932 | + "geodir_facebook" => 'http://example.com/', |
|
| 933 | + "geodir_price" => '800', |
|
| 934 | + "geodir_property_status" => 'For Rent', |
|
| 935 | + 'geodir_property_furnishing' => '', |
|
| 936 | + 'geodir_property_type' => 'Land', |
|
| 937 | + 'geodir_property_bedrooms' => '', |
|
| 938 | + 'geodir_property_bathrooms' => '', |
|
| 939 | + 'geodir_property_area' => '250000', |
|
| 940 | + 'geodir_property_features' => '', |
|
| 941 | + "post_dummy" => '1' |
|
| 942 | + ); |
|
| 943 | + |
|
| 944 | + break; |
|
| 945 | 945 | |
| 946 | 946 | } // end of switch |
| 947 | 947 | |
| 948 | 948 | foreach ($post_info as $post_info) { |
| 949 | - $default_location = geodir_get_default_location(); |
|
| 950 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 951 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 952 | - else |
|
| 953 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 949 | + $default_location = geodir_get_default_location(); |
|
| 950 | + if ($city_bound_lat1 > $city_bound_lat2) |
|
| 951 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 952 | + else |
|
| 953 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 954 | 954 | |
| 955 | 955 | |
| 956 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 957 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 958 | - else |
|
| 959 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 956 | + if ($city_bound_lng1 > $city_bound_lng2) |
|
| 957 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 958 | + else |
|
| 959 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 960 | 960 | |
| 961 | - $load_map = get_option('geodir_load_map'); |
|
| 961 | + $load_map = get_option('geodir_load_map'); |
|
| 962 | 962 | |
| 963 | - if ($load_map == 'osm') { |
|
| 964 | - $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 965 | - } else { |
|
| 966 | - $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 967 | - } |
|
| 968 | - |
|
| 969 | - $postal_code = ''; |
|
| 970 | - if (!empty($post_address)) { |
|
| 971 | - if ($load_map == 'osm') { |
|
| 972 | - $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 973 | - $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 974 | - } else { |
|
| 975 | - $addresses = array(); |
|
| 976 | - $addresses_default = array(); |
|
| 963 | + if ($load_map == 'osm') { |
|
| 964 | + $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 965 | + } else { |
|
| 966 | + $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 967 | + } |
|
| 968 | + |
|
| 969 | + $postal_code = ''; |
|
| 970 | + if (!empty($post_address)) { |
|
| 971 | + if ($load_map == 'osm') { |
|
| 972 | + $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 973 | + $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 974 | + } else { |
|
| 975 | + $addresses = array(); |
|
| 976 | + $addresses_default = array(); |
|
| 977 | 977 | |
| 978 | - foreach ($post_address as $add_key => $add_value) { |
|
| 979 | - if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 980 | - $addresses_default[] = $add_value->long_name; |
|
| 981 | - } |
|
| 982 | - if ($add_value->types[0] == 'postal_code') { |
|
| 983 | - $postal_code = $add_value->long_name; |
|
| 984 | - } |
|
| 985 | - if ($add_value->types[0] == 'street_number') { |
|
| 986 | - $addresses[] = $add_value->long_name; |
|
| 987 | - } |
|
| 988 | - if ($add_value->types[0] == 'route') { |
|
| 989 | - $addresses[] = $add_value->long_name; |
|
| 990 | - } |
|
| 991 | - if ($add_value->types[0] == 'neighborhood') { |
|
| 992 | - $addresses[] = $add_value->long_name; |
|
| 993 | - } |
|
| 994 | - if ($add_value->types[0] == 'sublocality') { |
|
| 995 | - $addresses[] = $add_value->long_name; |
|
| 996 | - } |
|
| 997 | - } |
|
| 998 | - $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 999 | - } |
|
| 1000 | - |
|
| 1001 | - $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1002 | - $post_info['post_city'] = $default_location->city; |
|
| 1003 | - $post_info['post_region'] = $default_location->region; |
|
| 1004 | - $post_info['post_country'] = $default_location->country; |
|
| 1005 | - $post_info['post_zip'] = $postal_code; |
|
| 1006 | - $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1007 | - $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1008 | - } |
|
| 978 | + foreach ($post_address as $add_key => $add_value) { |
|
| 979 | + if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 980 | + $addresses_default[] = $add_value->long_name; |
|
| 981 | + } |
|
| 982 | + if ($add_value->types[0] == 'postal_code') { |
|
| 983 | + $postal_code = $add_value->long_name; |
|
| 984 | + } |
|
| 985 | + if ($add_value->types[0] == 'street_number') { |
|
| 986 | + $addresses[] = $add_value->long_name; |
|
| 987 | + } |
|
| 988 | + if ($add_value->types[0] == 'route') { |
|
| 989 | + $addresses[] = $add_value->long_name; |
|
| 990 | + } |
|
| 991 | + if ($add_value->types[0] == 'neighborhood') { |
|
| 992 | + $addresses[] = $add_value->long_name; |
|
| 993 | + } |
|
| 994 | + if ($add_value->types[0] == 'sublocality') { |
|
| 995 | + $addresses[] = $add_value->long_name; |
|
| 996 | + } |
|
| 997 | + } |
|
| 998 | + $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 999 | + } |
|
| 1000 | + |
|
| 1001 | + $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1002 | + $post_info['post_city'] = $default_location->city; |
|
| 1003 | + $post_info['post_region'] = $default_location->region; |
|
| 1004 | + $post_info['post_country'] = $default_location->country; |
|
| 1005 | + $post_info['post_zip'] = $postal_code; |
|
| 1006 | + $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1007 | + $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1008 | + } |
|
| 1009 | 1009 | |
| 1010 | - geodir_save_listing($post_info, true); |
|
| 1011 | - echo 1; |
|
| 1010 | + geodir_save_listing($post_info, true); |
|
| 1011 | + echo 1; |
|
| 1012 | 1012 | } |
@@ -6,9 +6,9 @@ discard block |
||
| 6 | 6 | * @package GeoDirectory |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -function geodir_property_rent_custom_fields($post_type='gd_place',$package_id=''){ |
|
| 9 | +function geodir_property_rent_custom_fields($post_type = 'gd_place', $package_id = '') { |
|
| 10 | 10 | $fields = array(); |
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 11 | + $package = ($package_id == '') ? '' : array($package_id); |
|
| 12 | 12 | |
| 13 | 13 | // price |
| 14 | 14 | $fields[] = array('listing_type' => $post_type, |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | 'default_value' => '', |
| 79 | 79 | 'show_in' => '[detail],[listing]', |
| 80 | 80 | 'is_required' => true, |
| 81 | - 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 81 | + 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional', 'geodirectory'), |
|
| 82 | 82 | 'validation_pattern' => '', |
| 83 | 83 | 'validation_msg' => '', |
| 84 | 84 | 'required_msg' => '', |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | 'default_value' => '', |
| 102 | 102 | 'show_in' => '[detail],[listing]', |
| 103 | 103 | 'is_required' => true, |
| 104 | - 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 104 | + 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land', 'geodirectory'), |
|
| 105 | 105 | 'validation_pattern' => '', |
| 106 | 106 | 'validation_msg' => '', |
| 107 | 107 | 'required_msg' => '', |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | 'default_value' => '', |
| 125 | 125 | 'show_in' => '[detail],[listing]', |
| 126 | 126 | 'is_required' => true, |
| 127 | - 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 127 | + 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10', 'geodirectory'), |
|
| 128 | 128 | 'validation_pattern' => '', |
| 129 | 129 | 'validation_msg' => '', |
| 130 | 130 | 'required_msg' => '', |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | 'default_value' => '', |
| 148 | 148 | 'show_in' => '[detail],[listing]', |
| 149 | 149 | 'is_required' => true, |
| 150 | - 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 150 | + 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10', 'geodirectory'), |
|
| 151 | 151 | 'validation_pattern' => '', |
| 152 | 152 | 'validation_msg' => '', |
| 153 | 153 | 'required_msg' => '', |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | 'default_value' => '', |
| 193 | 193 | 'show_in' => '[detail],[listing]', |
| 194 | 194 | 'is_required' => false, |
| 195 | - 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 195 | + 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace', 'geodirectory'), |
|
| 196 | 196 | 'validation_pattern' => '', |
| 197 | 197 | 'validation_msg' => '', |
| 198 | 198 | 'required_msg' => '', |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | return $fields; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | -function geodir_property_rent_custom_fields_sort($post_type='gd_place') { |
|
| 218 | +function geodir_property_rent_custom_fields_sort($post_type = 'gd_place') { |
|
| 219 | 219 | |
| 220 | 220 | |
| 221 | 221 | $fields = array(); |
@@ -227,11 +227,11 @@ discard block |
||
| 227 | 227 | 'field_type' => 'text', |
| 228 | 228 | 'data_type' => '', |
| 229 | 229 | 'htmlvar_name' => 'geodir_price', |
| 230 | - 'site_title' => __('Price','geodirectory'), |
|
| 230 | + 'site_title' => __('Price', 'geodirectory'), |
|
| 231 | 231 | 'asc' => 1, |
| 232 | - 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 232 | + 'asc_title' => __('Price (lowest first)', 'geodirectory'), |
|
| 233 | 233 | 'desc' => 1, |
| 234 | - 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 234 | + 'desc_title' => __('Price (highest first)', 'geodirectory'), |
|
| 235 | 235 | 'is_active' => 1 |
| 236 | 236 | ); |
| 237 | 237 | |
@@ -242,11 +242,11 @@ discard block |
||
| 242 | 242 | 'field_type' => 'text', |
| 243 | 243 | 'data_type' => '', |
| 244 | 244 | 'htmlvar_name' => 'geodir_property_area', |
| 245 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 245 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 246 | 246 | 'asc' => 1, |
| 247 | - 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 247 | + 'asc_title' => __('Area (smallest first)', 'geodirectory'), |
|
| 248 | 248 | 'desc' => 1, |
| 249 | - 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 249 | + 'desc_title' => __('Area (largest first)', 'geodirectory'), |
|
| 250 | 250 | 'is_active' => 1 |
| 251 | 251 | ); |
| 252 | 252 | |
@@ -257,11 +257,11 @@ discard block |
||
| 257 | 257 | 'field_type' => 'select', |
| 258 | 258 | 'data_type' => '', |
| 259 | 259 | 'htmlvar_name' => 'geodir_property_bedrooms', |
| 260 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 260 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 261 | 261 | 'asc' => 1, |
| 262 | - 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 262 | + 'asc_title' => __('Bedrooms (least)', 'geodirectory'), |
|
| 263 | 263 | 'desc' => 1, |
| 264 | - 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 264 | + 'desc_title' => __('Bedrooms (most)', 'geodirectory'), |
|
| 265 | 265 | 'is_active' => 1 |
| 266 | 266 | ); |
| 267 | 267 | |
@@ -277,7 +277,7 @@ discard block |
||
| 277 | 277 | |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | -function geodir_property_rent_custom_fields_advanced_search($post_type='gd_place') { |
|
| 280 | +function geodir_property_rent_custom_fields_advanced_search($post_type = 'gd_place') { |
|
| 281 | 281 | |
| 282 | 282 | |
| 283 | 283 | $fields = array(); |
@@ -455,15 +455,15 @@ discard block |
||
| 455 | 455 | return $fields; |
| 456 | 456 | } |
| 457 | 457 | |
| 458 | -global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
|
| 458 | +global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2, $wpdb, $current_user, $dummy_post_index; |
|
| 459 | 459 | $post_info = array(); |
| 460 | 460 | $image_array = array(); |
| 461 | 461 | $post_meta = array(); |
| 462 | 462 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 463 | 463 | |
| 464 | -if($dummy_post_index==1){ |
|
| 464 | +if ($dummy_post_index == 1) { |
|
| 465 | 465 | // add the dummy categories |
| 466 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 466 | + geodir_dummy_data_taxonomies($post_type, $category_array); |
|
| 467 | 467 | |
| 468 | 468 | // add the dummy custom fields |
| 469 | 469 | $fields = geodir_property_rent_custom_fields($post_type); |
@@ -471,24 +471,24 @@ discard block |
||
| 471 | 471 | |
| 472 | 472 | // add sort order items |
| 473 | 473 | $sort_fields = geodir_property_rent_custom_fields_sort($post_type); |
| 474 | - foreach($sort_fields as $sort){ |
|
| 474 | + foreach ($sort_fields as $sort) { |
|
| 475 | 475 | geodir_custom_sort_field_save($sort); |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | 478 | // update the type currently installed |
| 479 | - update_option($post_type.'_dummy_data_type','property_rent'); |
|
| 479 | + update_option($post_type.'_dummy_data_type', 'property_rent'); |
|
| 480 | 480 | |
| 481 | 481 | // add the advanced search fields |
| 482 | - if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 482 | + if (defined('GEODIRADVANCESEARCH_VERSION')) { |
|
| 483 | 483 | $search_fields = geodir_property_rent_custom_fields_advanced_search($post_type); |
| 484 | - foreach($search_fields as $sfield){ |
|
| 485 | - geodir_custom_advance_search_field_save( $sfield ); |
|
| 484 | + foreach ($search_fields as $sfield) { |
|
| 485 | + geodir_custom_advance_search_field_save($sfield); |
|
| 486 | 486 | } |
| 487 | 487 | } |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | 490 | if (geodir_dummy_folder_exists()) |
| 491 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 491 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy"; |
|
| 492 | 492 | else |
| 493 | 493 | $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
| 494 | 494 | |
@@ -487,10 +487,11 @@ discard block |
||
| 487 | 487 | } |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | -if (geodir_dummy_folder_exists()) |
|
| 490 | +if (geodir_dummy_folder_exists()) { |
|
| 491 | 491 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 492 | -else |
|
| 492 | +} else { |
|
| 493 | 493 | $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
| 494 | +} |
|
| 494 | 495 | |
| 495 | 496 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 496 | 497 | |
@@ -947,16 +948,18 @@ discard block |
||
| 947 | 948 | |
| 948 | 949 | foreach ($post_info as $post_info) { |
| 949 | 950 | $default_location = geodir_get_default_location(); |
| 950 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 951 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 952 | - else |
|
| 953 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 951 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 952 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 953 | + } else { |
|
| 954 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 955 | + } |
|
| 954 | 956 | |
| 955 | 957 | |
| 956 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 957 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 958 | - else |
|
| 959 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 958 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 959 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 960 | + } else { |
|
| 961 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 962 | + } |
|
| 960 | 963 | |
| 961 | 964 | $load_map = get_option('geodir_load_map'); |
| 962 | 965 | |
@@ -12,38 +12,38 @@ discard block |
||
| 12 | 12 | $post_meta = array(); |
| 13 | 13 | |
| 14 | 14 | if($dummy_post_index==1){ |
| 15 | - $category_array = array('Attractions', 'Hotels', 'Restaurants', 'Food Nightlife', 'Festival', 'Videos', 'Feature'); |
|
| 16 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 17 | - update_option($post_type.'_dummy_data_type','standard_places'); |
|
| 15 | + $category_array = array('Attractions', 'Hotels', 'Restaurants', 'Food Nightlife', 'Festival', 'Videos', 'Feature'); |
|
| 16 | + geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 17 | + update_option($post_type.'_dummy_data_type','standard_places'); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | if (geodir_dummy_folder_exists()) |
| 21 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 21 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 22 | 22 | else |
| 23 | - $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 23 | + $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 24 | 24 | |
| 25 | 25 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 26 | 26 | |
| 27 | 27 | switch ($dummy_post_index) { |
| 28 | 28 | |
| 29 | - case(1): |
|
| 30 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 31 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 32 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 33 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 34 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 35 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 36 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 37 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 38 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 39 | - $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 40 | - $image_array[] = "$dummy_image_url/a11.jpg"; |
|
| 41 | - |
|
| 42 | - |
|
| 43 | - $post_info[] = array( |
|
| 44 | - "listing_type" => $post_type, |
|
| 45 | - "post_title" => 'Franklin Square', |
|
| 46 | - "post_desc" => ' <h3> Location </h3> |
|
| 29 | + case(1): |
|
| 30 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 31 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 32 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 33 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 34 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 35 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 36 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 37 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 38 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 39 | + $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 40 | + $image_array[] = "$dummy_image_url/a11.jpg"; |
|
| 41 | + |
|
| 42 | + |
|
| 43 | + $post_info[] = array( |
|
| 44 | + "listing_type" => $post_type, |
|
| 45 | + "post_title" => 'Franklin Square', |
|
| 46 | + "post_desc" => ' <h3> Location </h3> |
|
| 47 | 47 | |
| 48 | 48 | 6th and Race Streets in Historic Philadelphia |
| 49 | 49 | <h3>The Experience</h3> |
@@ -78,42 +78,42 @@ discard block |
||
| 78 | 78 | Just in time for summer, Franklin Square has opened SquareBurger, a Stephen Starr-run “burger shack” selling summer staples: hot dogs, fries, milkshakes (made with Tasty Kakes) and, of course, hamburgers and cheeseburgers. |
| 79 | 79 | |
| 80 | 80 | SquareBurger is open until October - perfect for a couple bites between rounds of miniature golf!', |
| 81 | - "post_images" => $image_array, |
|
| 82 | - "post_category" => array($post_type.'category' => array('Attractions', 'Feature')), |
|
| 83 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 84 | - "geodir_video" => '', |
|
| 85 | - "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm', |
|
| 86 | - "geodir_contact" => '(111) 677-4444', |
|
| 87 | - "geodir_email" => '[email protected]', |
|
| 88 | - "geodir_website" => 'http://franklinsquare.com', |
|
| 89 | - "geodir_twitter" => 'http://twitter.com/franklinsquare', |
|
| 90 | - "geodir_facebook" => 'http://facebook.com/franklinsquare', |
|
| 91 | - "post_dummy" => '1' |
|
| 92 | - ); |
|
| 93 | - |
|
| 94 | - |
|
| 95 | - break; |
|
| 96 | - case 2: |
|
| 97 | - $image_array = array(); |
|
| 98 | - $post_meta = array(); |
|
| 99 | - |
|
| 100 | - /// Attractions ////post start 2/// |
|
| 101 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 102 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 103 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 104 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 105 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 106 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 107 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 108 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 109 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 110 | - $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 111 | - $image_array[] = "$dummy_image_url/a11.jpg"; |
|
| 112 | - |
|
| 113 | - $post_info[] = array( |
|
| 114 | - "listing_type" => $post_type, |
|
| 115 | - "post_title" => 'Please Touch Museum', |
|
| 116 | - "post_desc" => '<h3>New Location! </h3> |
|
| 81 | + "post_images" => $image_array, |
|
| 82 | + "post_category" => array($post_type.'category' => array('Attractions', 'Feature')), |
|
| 83 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 84 | + "geodir_video" => '', |
|
| 85 | + "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm', |
|
| 86 | + "geodir_contact" => '(111) 677-4444', |
|
| 87 | + "geodir_email" => '[email protected]', |
|
| 88 | + "geodir_website" => 'http://franklinsquare.com', |
|
| 89 | + "geodir_twitter" => 'http://twitter.com/franklinsquare', |
|
| 90 | + "geodir_facebook" => 'http://facebook.com/franklinsquare', |
|
| 91 | + "post_dummy" => '1' |
|
| 92 | + ); |
|
| 93 | + |
|
| 94 | + |
|
| 95 | + break; |
|
| 96 | + case 2: |
|
| 97 | + $image_array = array(); |
|
| 98 | + $post_meta = array(); |
|
| 99 | + |
|
| 100 | + /// Attractions ////post start 2/// |
|
| 101 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 102 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 103 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 104 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 105 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 106 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 107 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 108 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 109 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 110 | + $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 111 | + $image_array[] = "$dummy_image_url/a11.jpg"; |
|
| 112 | + |
|
| 113 | + $post_info[] = array( |
|
| 114 | + "listing_type" => $post_type, |
|
| 115 | + "post_title" => 'Please Touch Museum', |
|
| 116 | + "post_desc" => '<h3>New Location! </h3> |
|
| 117 | 117 | |
| 118 | 118 | Who doesn´t love the Please Touch Museum? And now, taking kids to the Museum is better than ever. The nation´s premier children´s museum - which has been a beloved landmark since it opened in 1976 - has a new home in Fairmount Park, opening its doors to a world of educational, hands-on fun. |
| 119 | 119 | |
@@ -145,42 +145,42 @@ discard block |
||
| 145 | 145 | |
| 146 | 146 | You can buy admission tickets to the Please Touch Museum online through our partners at the Independence Visitor Center. Just click the button below.', |
| 147 | 147 | |
| 148 | - "post_images" => $image_array, |
|
| 149 | - "post_category" => array($post_type.'category' => array('Attractions', 'Feature')), |
|
| 150 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 151 | - "geodir_video" => '', |
|
| 152 | - "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm', |
|
| 153 | - "geodir_contact" => '(222) 777-1111', |
|
| 154 | - "geodir_email" => '[email protected]', |
|
| 155 | - "geodir_website" => 'http://pleasetouchmuseum.com', |
|
| 156 | - "geodir_twitter" => 'http://twitter.com/pleasetouchmuseum', |
|
| 157 | - "geodir_facebook" => 'http://facebook.com/pleasetouchmuseum', |
|
| 158 | - "post_dummy" => '1' |
|
| 159 | - ); |
|
| 160 | - |
|
| 161 | - break; |
|
| 162 | - case 3: |
|
| 163 | - $image_array = array(); |
|
| 164 | - $post_meta = array(); |
|
| 165 | - |
|
| 166 | - ////post end/// |
|
| 167 | - /// Attractions ////post start 3/// |
|
| 168 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 169 | - $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 170 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 171 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 172 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 173 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 174 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 175 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 176 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 177 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 178 | - $image_array[] = "$dummy_image_url/a11.jpg"; |
|
| 179 | - |
|
| 180 | - $post_info[] = array( |
|
| 181 | - "listing_type" => $post_type, |
|
| 182 | - "post_title" => 'Longwood Gardens', |
|
| 183 | - "post_desc" => '<h3>The Experience </h3> |
|
| 148 | + "post_images" => $image_array, |
|
| 149 | + "post_category" => array($post_type.'category' => array('Attractions', 'Feature')), |
|
| 150 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 151 | + "geodir_video" => '', |
|
| 152 | + "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm', |
|
| 153 | + "geodir_contact" => '(222) 777-1111', |
|
| 154 | + "geodir_email" => '[email protected]', |
|
| 155 | + "geodir_website" => 'http://pleasetouchmuseum.com', |
|
| 156 | + "geodir_twitter" => 'http://twitter.com/pleasetouchmuseum', |
|
| 157 | + "geodir_facebook" => 'http://facebook.com/pleasetouchmuseum', |
|
| 158 | + "post_dummy" => '1' |
|
| 159 | + ); |
|
| 160 | + |
|
| 161 | + break; |
|
| 162 | + case 3: |
|
| 163 | + $image_array = array(); |
|
| 164 | + $post_meta = array(); |
|
| 165 | + |
|
| 166 | + ////post end/// |
|
| 167 | + /// Attractions ////post start 3/// |
|
| 168 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 169 | + $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 170 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 171 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 172 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 173 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 174 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 175 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 176 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 177 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 178 | + $image_array[] = "$dummy_image_url/a11.jpg"; |
|
| 179 | + |
|
| 180 | + $post_info[] = array( |
|
| 181 | + "listing_type" => $post_type, |
|
| 182 | + "post_title" => 'Longwood Gardens', |
|
| 183 | + "post_desc" => '<h3>The Experience </h3> |
|
| 184 | 184 | |
| 185 | 185 | When you´re at Longwood Gardens, it´s easy to imagine that you´re at a giant, royal garden in Europe. Stroll along the many paths through acres of exquisitely maintained grounds featuring 11,000 different types of plants. |
| 186 | 186 | |
@@ -205,42 +205,42 @@ discard block |
||
| 205 | 205 | <h3>Buy Tickets Online In Advance </h3> |
| 206 | 206 | |
| 207 | 207 | You can buy admission tickets to Longwood Gardens online through our partners at the Independence Visitor Center. Just click the button below.', |
| 208 | - "post_images" => $image_array, |
|
| 209 | - "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 210 | - "post_tags" => array('wood', 'garden'), |
|
| 211 | - "geodir_video" => '', |
|
| 212 | - "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm', |
|
| 213 | - "geodir_contact" => '(111) 888-1111', |
|
| 214 | - "geodir_email" => '[email protected]', |
|
| 215 | - "geodir_website" => 'http://longwoodgardens.com', |
|
| 216 | - "geodir_twitter" => 'http://twitter.com/longwoodgardens', |
|
| 217 | - "geodir_facebook" => 'http://facebook.com/longwoodgardens', |
|
| 218 | - "post_dummy" => '1' |
|
| 219 | - ); |
|
| 220 | - break; |
|
| 221 | - ////post end/// |
|
| 222 | - /// Attractions ////post start 4/// |
|
| 223 | - |
|
| 224 | - case 4: |
|
| 225 | - |
|
| 226 | - $image_array = array(); |
|
| 227 | - $post_meta = array(); |
|
| 228 | - $image_array[] = "$dummy_image_url/a11.jpg"; |
|
| 229 | - $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 230 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 231 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 232 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 233 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 234 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 235 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 236 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 237 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 238 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 239 | - |
|
| 240 | - $post_info[] = array( |
|
| 241 | - "listing_type" => $post_type, |
|
| 242 | - "post_title" => 'The Philadelphia Zoo', |
|
| 243 | - "post_desc" => '<h3>The Zoo 150th Birthday</h3> |
|
| 208 | + "post_images" => $image_array, |
|
| 209 | + "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 210 | + "post_tags" => array('wood', 'garden'), |
|
| 211 | + "geodir_video" => '', |
|
| 212 | + "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm', |
|
| 213 | + "geodir_contact" => '(111) 888-1111', |
|
| 214 | + "geodir_email" => '[email protected]', |
|
| 215 | + "geodir_website" => 'http://longwoodgardens.com', |
|
| 216 | + "geodir_twitter" => 'http://twitter.com/longwoodgardens', |
|
| 217 | + "geodir_facebook" => 'http://facebook.com/longwoodgardens', |
|
| 218 | + "post_dummy" => '1' |
|
| 219 | + ); |
|
| 220 | + break; |
|
| 221 | + ////post end/// |
|
| 222 | + /// Attractions ////post start 4/// |
|
| 223 | + |
|
| 224 | + case 4: |
|
| 225 | + |
|
| 226 | + $image_array = array(); |
|
| 227 | + $post_meta = array(); |
|
| 228 | + $image_array[] = "$dummy_image_url/a11.jpg"; |
|
| 229 | + $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 230 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 231 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 232 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 233 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 234 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 235 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 236 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 237 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 238 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 239 | + |
|
| 240 | + $post_info[] = array( |
|
| 241 | + "listing_type" => $post_type, |
|
| 242 | + "post_title" => 'The Philadelphia Zoo', |
|
| 243 | + "post_desc" => '<h3>The Zoo 150th Birthday</h3> |
|
| 244 | 244 | |
| 245 | 245 | The Philadelphia Zoo celebrated its 150th anniversary in 2009. So stop by and celebrate this major achievement at America´s first zoo! |
| 246 | 246 | |
@@ -275,45 +275,45 @@ discard block |
||
| 275 | 275 | The nation´s oldest zoo was chartered in 1859, but the impending Civil War delayed its opening until 1874. In addition to its animals, the zoo is known for its historic architecture, which includes the country home of William Penn´s grandson; its botanical collections of over 500 plant species; its groundbreaking research and its fine veterinary facilities. |
| 276 | 276 | |
| 277 | 277 | The Primate Reserve, Carnivore Kingdom, and Rare Animal Conservation Center, with its tree kangaroos and blue-eyed lemurs, are brand new, but there´s still fun to be had in the historic, old-style bird, pachyderm and carnivore houses. In the Treehouse, kids can investigate the world from an animal´s perspective; outdoors, the Zoo Balloon lifts passengers 400 feet into the air for a bird´s-eye view of the zoo.', |
| 278 | - "post_images" => $image_array, |
|
| 279 | - "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 280 | - "post_tags" => array('wood', 'garden'), |
|
| 281 | - "geodir_video" => '', |
|
| 282 | - "geodir_timing" => 'Open today until 11.30 a.m., Sunday 11 am to 7 pm', |
|
| 283 | - "geodir_contact" => '(211) 143-1900', |
|
| 284 | - "geodir_email" => '[email protected]', |
|
| 285 | - "geodir_website" => 'http://philadelphiazoo.com', |
|
| 286 | - "geodir_twitter" => 'http://twitter.com/philadelphiazoo', |
|
| 287 | - "geodir_facebook" => 'http://facebook.com/philadelphiazoo', |
|
| 288 | - "post_dummy" => '1' |
|
| 289 | - ); |
|
| 290 | - |
|
| 291 | - ////post end/// |
|
| 292 | - /// Attractions ////post start 4/// |
|
| 293 | - break; |
|
| 294 | - case 5: |
|
| 295 | - |
|
| 296 | - |
|
| 297 | - $image_array = array(); |
|
| 298 | - $post_meta = array(); |
|
| 299 | - |
|
| 300 | - /// Attractions ////post start 5/// |
|
| 301 | - $image_array[] = "$dummy_image_url/a12.jpg"; |
|
| 302 | - $image_array[] = "$dummy_image_url/a13.jpg"; |
|
| 303 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 304 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 305 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 306 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 307 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 308 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 309 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 310 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 311 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 312 | - |
|
| 313 | - $post_info[] = array( |
|
| 314 | - "listing_type" => $post_type, |
|
| 315 | - "post_title" => 'National Constitution Center', |
|
| 316 | - "post_desc" => '<h3>The Experience</h3> |
|
| 278 | + "post_images" => $image_array, |
|
| 279 | + "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 280 | + "post_tags" => array('wood', 'garden'), |
|
| 281 | + "geodir_video" => '', |
|
| 282 | + "geodir_timing" => 'Open today until 11.30 a.m., Sunday 11 am to 7 pm', |
|
| 283 | + "geodir_contact" => '(211) 143-1900', |
|
| 284 | + "geodir_email" => '[email protected]', |
|
| 285 | + "geodir_website" => 'http://philadelphiazoo.com', |
|
| 286 | + "geodir_twitter" => 'http://twitter.com/philadelphiazoo', |
|
| 287 | + "geodir_facebook" => 'http://facebook.com/philadelphiazoo', |
|
| 288 | + "post_dummy" => '1' |
|
| 289 | + ); |
|
| 290 | + |
|
| 291 | + ////post end/// |
|
| 292 | + /// Attractions ////post start 4/// |
|
| 293 | + break; |
|
| 294 | + case 5: |
|
| 295 | + |
|
| 296 | + |
|
| 297 | + $image_array = array(); |
|
| 298 | + $post_meta = array(); |
|
| 299 | + |
|
| 300 | + /// Attractions ////post start 5/// |
|
| 301 | + $image_array[] = "$dummy_image_url/a12.jpg"; |
|
| 302 | + $image_array[] = "$dummy_image_url/a13.jpg"; |
|
| 303 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 304 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 305 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 306 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 307 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 308 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 309 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 310 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 311 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 312 | + |
|
| 313 | + $post_info[] = array( |
|
| 314 | + "listing_type" => $post_type, |
|
| 315 | + "post_title" => 'National Constitution Center', |
|
| 316 | + "post_desc" => '<h3>The Experience</h3> |
|
| 317 | 317 | |
| 318 | 318 | It only four pages long, but the U.S. Constitution is among the most influential and important documents in the history of the world. |
| 319 | 319 | |
@@ -335,45 +335,45 @@ discard block |
||
| 335 | 335 | <h3>Kids Stuff </h3> |
| 336 | 336 | |
| 337 | 337 | The Center frequently hosts special events with a focus on children that include informative and engaging hands-on activities. For specific information, check out the Center website.', |
| 338 | - "post_images" => $image_array, |
|
| 339 | - "post_category" => array($post_type.'category' => array('Attractions', 'Feature')), |
|
| 340 | - "post_tags" => array('Tag', 'Center'), |
|
| 341 | - "geodir_video" => '', |
|
| 342 | - "geodir_timing" => 'Open today until 9.30 a.m., Sunday 11 am to 7 pm', |
|
| 343 | - "geodir_contact" => '(111) 111-1111', |
|
| 344 | - "geodir_email" => '[email protected]', |
|
| 345 | - "geodir_website" => 'http://ncc.com', |
|
| 346 | - "geodir_twitter" => 'http://twitter.com/ncc', |
|
| 347 | - "geodir_facebook" => 'http://facebook.com/ncc', |
|
| 348 | - "post_dummy" => '1' |
|
| 349 | - ); |
|
| 350 | - |
|
| 351 | - ////post end/// |
|
| 352 | - /// Attractions ////post start 5/// |
|
| 353 | - break; |
|
| 354 | - case 6: |
|
| 355 | - |
|
| 356 | - |
|
| 357 | - $image_array = array(); |
|
| 358 | - $post_meta = array(); |
|
| 359 | - |
|
| 360 | - /// Attractions ////post start 6/// |
|
| 361 | - $image_array[] = "$dummy_image_url/a14.jpg"; |
|
| 362 | - $image_array[] = "$dummy_image_url/a13.jpg"; |
|
| 363 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 364 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 365 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 366 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 367 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 368 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 369 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 370 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 371 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 372 | - |
|
| 373 | - $post_info[] = array( |
|
| 374 | - "listing_type" => $post_type, |
|
| 375 | - "post_title" => 'Sadsbury Woods Preserve', |
|
| 376 | - "post_desc" => 'A more than 500-acre nature preserve ideal for walking and hiking, Sadsbury Woods is also an important habitat for interior nesting birds and small mammals. An increasingly rare area of interior woodlands, defined as an area at least 300 feet from any road, lawn or meadow, provides a critical habitat for many species of birds, especially neo-tropical migrant songbirds. |
|
| 338 | + "post_images" => $image_array, |
|
| 339 | + "post_category" => array($post_type.'category' => array('Attractions', 'Feature')), |
|
| 340 | + "post_tags" => array('Tag', 'Center'), |
|
| 341 | + "geodir_video" => '', |
|
| 342 | + "geodir_timing" => 'Open today until 9.30 a.m., Sunday 11 am to 7 pm', |
|
| 343 | + "geodir_contact" => '(111) 111-1111', |
|
| 344 | + "geodir_email" => '[email protected]', |
|
| 345 | + "geodir_website" => 'http://ncc.com', |
|
| 346 | + "geodir_twitter" => 'http://twitter.com/ncc', |
|
| 347 | + "geodir_facebook" => 'http://facebook.com/ncc', |
|
| 348 | + "post_dummy" => '1' |
|
| 349 | + ); |
|
| 350 | + |
|
| 351 | + ////post end/// |
|
| 352 | + /// Attractions ////post start 5/// |
|
| 353 | + break; |
|
| 354 | + case 6: |
|
| 355 | + |
|
| 356 | + |
|
| 357 | + $image_array = array(); |
|
| 358 | + $post_meta = array(); |
|
| 359 | + |
|
| 360 | + /// Attractions ////post start 6/// |
|
| 361 | + $image_array[] = "$dummy_image_url/a14.jpg"; |
|
| 362 | + $image_array[] = "$dummy_image_url/a13.jpg"; |
|
| 363 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 364 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 365 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 366 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 367 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 368 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 369 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 370 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 371 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 372 | + |
|
| 373 | + $post_info[] = array( |
|
| 374 | + "listing_type" => $post_type, |
|
| 375 | + "post_title" => 'Sadsbury Woods Preserve', |
|
| 376 | + "post_desc" => 'A more than 500-acre nature preserve ideal for walking and hiking, Sadsbury Woods is also an important habitat for interior nesting birds and small mammals. An increasingly rare area of interior woodlands, defined as an area at least 300 feet from any road, lawn or meadow, provides a critical habitat for many species of birds, especially neo-tropical migrant songbirds. |
|
| 377 | 377 | |
| 378 | 378 | Situated on the western edge of Chester County, the land remains much as it did centuries ago, and now serves as a permanent refuge in an area facing dramatically increasing development pressure. |
| 379 | 379 | |
@@ -389,45 +389,45 @@ discard block |
||
| 389 | 389 | Outsider Tip |
| 390 | 390 | |
| 391 | 391 | The deep forest is a great place for spotting neo-tropical songbirds in the spring and summer months', |
| 392 | - "post_images" => $image_array, |
|
| 393 | - "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 394 | - "post_tags" => array('sample', 'tags'), |
|
| 395 | - "geodir_video" => '', |
|
| 396 | - "geodir_timing" => 'Open today until 12.30 p.m., Sunday 12 pm to 7 pm', |
|
| 397 | - "geodir_contact" => '(222) 999-9999', |
|
| 398 | - "geodir_email" => '[email protected]', |
|
| 399 | - "geodir_website" => 'http://swp.com', |
|
| 400 | - "geodir_twitter" => 'http://twitter.com/swp', |
|
| 401 | - "geodir_facebook" => 'http://facebook.com/swp', |
|
| 402 | - "post_dummy" => '1' |
|
| 403 | - ); |
|
| 404 | - |
|
| 405 | - ////post end/// |
|
| 406 | - /// Attractions ////post start 6/// |
|
| 407 | - |
|
| 408 | - break; |
|
| 409 | - case 7: |
|
| 410 | - |
|
| 411 | - $image_array = array(); |
|
| 412 | - $post_meta = array(); |
|
| 413 | - |
|
| 414 | - /// Attractions ////post start 7/// |
|
| 415 | - $image_array[] = "$dummy_image_url/a15.jpg"; |
|
| 416 | - $image_array[] = "$dummy_image_url/a16.jpg"; |
|
| 417 | - $image_array[] = "$dummy_image_url/a17.jpg"; |
|
| 418 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 419 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 420 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 421 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 422 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 423 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 424 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 425 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 426 | - |
|
| 427 | - $post_info[] = array( |
|
| 428 | - "listing_type" => $post_type, |
|
| 429 | - "post_title" => 'Museum Without Walls', |
|
| 430 | - "post_desc" => '<h3>The Experience </h3> |
|
| 392 | + "post_images" => $image_array, |
|
| 393 | + "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 394 | + "post_tags" => array('sample', 'tags'), |
|
| 395 | + "geodir_video" => '', |
|
| 396 | + "geodir_timing" => 'Open today until 12.30 p.m., Sunday 12 pm to 7 pm', |
|
| 397 | + "geodir_contact" => '(222) 999-9999', |
|
| 398 | + "geodir_email" => '[email protected]', |
|
| 399 | + "geodir_website" => 'http://swp.com', |
|
| 400 | + "geodir_twitter" => 'http://twitter.com/swp', |
|
| 401 | + "geodir_facebook" => 'http://facebook.com/swp', |
|
| 402 | + "post_dummy" => '1' |
|
| 403 | + ); |
|
| 404 | + |
|
| 405 | + ////post end/// |
|
| 406 | + /// Attractions ////post start 6/// |
|
| 407 | + |
|
| 408 | + break; |
|
| 409 | + case 7: |
|
| 410 | + |
|
| 411 | + $image_array = array(); |
|
| 412 | + $post_meta = array(); |
|
| 413 | + |
|
| 414 | + /// Attractions ////post start 7/// |
|
| 415 | + $image_array[] = "$dummy_image_url/a15.jpg"; |
|
| 416 | + $image_array[] = "$dummy_image_url/a16.jpg"; |
|
| 417 | + $image_array[] = "$dummy_image_url/a17.jpg"; |
|
| 418 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 419 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 420 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 421 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 422 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 423 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 424 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 425 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 426 | + |
|
| 427 | + $post_info[] = array( |
|
| 428 | + "listing_type" => $post_type, |
|
| 429 | + "post_title" => 'Museum Without Walls', |
|
| 430 | + "post_desc" => '<h3>The Experience </h3> |
|
| 431 | 431 | |
| 432 | 432 | Museum Without Walls: AUDIO is a multi-platform, interactive audio tour, designed to allow locals and visitors alike to experience Philadelphia extensive collection of public art and outdoor sculpture along the Benjamin Franklin Parkway and Kelly Drive. This innovative program invites passersby to stop, look, listen and see this city public art in a new way. Discover the untold histories of the 51 outdoor sculptures at 35 stops through these professionally produced three-minute interpretive audio segments. The many narratives have been spoken by more than 100 individuals, all with personal connections to the pieces of art. |
| 433 | 433 | |
@@ -437,45 +437,45 @@ discard block |
||
| 437 | 437 | <h3>History </h3> |
| 438 | 438 | |
| 439 | 439 | Philadelphia has more outdoor sculpture than any other American city, yet this extensive collection often goes unnoticed. This program is intended to reveal the distinct stories behind each of these works, that have become visual white noise for so many of the city residents and visitors. ', |
| 440 | - "post_images" => $image_array, |
|
| 441 | - "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 442 | - "post_tags" => array('Museum'), |
|
| 443 | - "geodir_video" => '', |
|
| 444 | - "geodir_timing" => 'Open today until 10.30 a.m., Sunday 10 am to 7 pm', |
|
| 445 | - "geodir_contact" => '(222) 999-9999', |
|
| 446 | - "geodir_email" => '[email protected]', |
|
| 447 | - "geodir_website" => 'http://museumwithoutwallsaudio.org/', |
|
| 448 | - "geodir_twitter" => 'http://twitter.com/mwwalls', |
|
| 449 | - "geodir_facebook" => 'http://facebook.com/mwwalls', |
|
| 450 | - "post_dummy" => '1' |
|
| 451 | - ); |
|
| 452 | - |
|
| 453 | - ////post end/// |
|
| 454 | - /// Attractions ////post start 7/// |
|
| 455 | - |
|
| 456 | - break; |
|
| 457 | - case 8: |
|
| 458 | - |
|
| 459 | - $image_array = array(); |
|
| 460 | - $post_meta = array(); |
|
| 461 | - |
|
| 462 | - /// Attractions ////post start 8/// |
|
| 463 | - $image_array[] = "$dummy_image_url/a18.jpg"; |
|
| 464 | - $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 465 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 466 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 467 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 468 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 469 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 470 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 471 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 472 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 473 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 474 | - |
|
| 475 | - $post_info[] = array( |
|
| 476 | - "listing_type" => $post_type, |
|
| 477 | - "post_title" => 'Audacious Freedom', |
|
| 478 | - "post_desc" => 'Audacious Freedom, the major, new exhibit at the African American Museum in Philadelphia , explores the lives of people of African descent living in Philadelphia between 1776 and 1876. |
|
| 440 | + "post_images" => $image_array, |
|
| 441 | + "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 442 | + "post_tags" => array('Museum'), |
|
| 443 | + "geodir_video" => '', |
|
| 444 | + "geodir_timing" => 'Open today until 10.30 a.m., Sunday 10 am to 7 pm', |
|
| 445 | + "geodir_contact" => '(222) 999-9999', |
|
| 446 | + "geodir_email" => '[email protected]', |
|
| 447 | + "geodir_website" => 'http://museumwithoutwallsaudio.org/', |
|
| 448 | + "geodir_twitter" => 'http://twitter.com/mwwalls', |
|
| 449 | + "geodir_facebook" => 'http://facebook.com/mwwalls', |
|
| 450 | + "post_dummy" => '1' |
|
| 451 | + ); |
|
| 452 | + |
|
| 453 | + ////post end/// |
|
| 454 | + /// Attractions ////post start 7/// |
|
| 455 | + |
|
| 456 | + break; |
|
| 457 | + case 8: |
|
| 458 | + |
|
| 459 | + $image_array = array(); |
|
| 460 | + $post_meta = array(); |
|
| 461 | + |
|
| 462 | + /// Attractions ////post start 8/// |
|
| 463 | + $image_array[] = "$dummy_image_url/a18.jpg"; |
|
| 464 | + $image_array[] = "$dummy_image_url/a10.jpg"; |
|
| 465 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 466 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 467 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 468 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 469 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 470 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 471 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 472 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 473 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 474 | + |
|
| 475 | + $post_info[] = array( |
|
| 476 | + "listing_type" => $post_type, |
|
| 477 | + "post_title" => 'Audacious Freedom', |
|
| 478 | + "post_desc" => 'Audacious Freedom, the major, new exhibit at the African American Museum in Philadelphia , explores the lives of people of African descent living in Philadelphia between 1776 and 1876. |
|
| 479 | 479 | |
| 480 | 480 | Discover how African Americans in Philadelphia lived and worked while helping to shape the young nation in its formative stages. |
| 481 | 481 | |
@@ -483,45 +483,45 @@ discard block |
||
| 483 | 483 | |
| 484 | 484 | The groundbreaking exhibit allows visitors to “walk the streets” of Historic Philadelphia using a large-scale map. Young children can join the action with Children´s Corner, which highlights the daily lives of children during that period. |
| 485 | 485 | ', |
| 486 | - "post_images" => $image_array, |
|
| 487 | - "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 488 | - "post_tags" => array('Tag1'), |
|
| 489 | - "geodir_video" => '', |
|
| 490 | - "geodir_timing" => 'Open today until 11.30 a.m., Sunday 1 pm to 7 pm', |
|
| 491 | - "geodir_contact" => '(777) 777-7777', |
|
| 492 | - "geodir_email" => '[email protected]', |
|
| 493 | - "geodir_website" => 'http://www.aampmuseum.org/', |
|
| 494 | - "geodir_twitter" => 'http://twitter.com/aampmuseum', |
|
| 495 | - "geodir_facebook" => 'http://facebook.com/aampmuseum', |
|
| 496 | - "post_dummy" => '1' |
|
| 497 | - ); |
|
| 498 | - |
|
| 499 | - ////post end/// |
|
| 500 | - /// Attractions ////post start 8/// |
|
| 501 | - |
|
| 502 | - |
|
| 503 | - break; |
|
| 504 | - case 9: |
|
| 505 | - $image_array = array(); |
|
| 506 | - $post_meta = array(); |
|
| 507 | - |
|
| 508 | - /// Attractions ////post start 9/// |
|
| 509 | - $image_array[] = "$dummy_image_url/a19.jpg"; |
|
| 510 | - $image_array[] = "$dummy_image_url/a20.jpg"; |
|
| 511 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 512 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 513 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 514 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 515 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 516 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 517 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 518 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 519 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 520 | - |
|
| 521 | - $post_info[] = array( |
|
| 522 | - "listing_type" => $post_type, |
|
| 523 | - "post_title" => 'The Liberty Bell Center', |
|
| 524 | - "post_desc" => '<h3>The Experience </h3> |
|
| 486 | + "post_images" => $image_array, |
|
| 487 | + "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 488 | + "post_tags" => array('Tag1'), |
|
| 489 | + "geodir_video" => '', |
|
| 490 | + "geodir_timing" => 'Open today until 11.30 a.m., Sunday 1 pm to 7 pm', |
|
| 491 | + "geodir_contact" => '(777) 777-7777', |
|
| 492 | + "geodir_email" => '[email protected]', |
|
| 493 | + "geodir_website" => 'http://www.aampmuseum.org/', |
|
| 494 | + "geodir_twitter" => 'http://twitter.com/aampmuseum', |
|
| 495 | + "geodir_facebook" => 'http://facebook.com/aampmuseum', |
|
| 496 | + "post_dummy" => '1' |
|
| 497 | + ); |
|
| 498 | + |
|
| 499 | + ////post end/// |
|
| 500 | + /// Attractions ////post start 8/// |
|
| 501 | + |
|
| 502 | + |
|
| 503 | + break; |
|
| 504 | + case 9: |
|
| 505 | + $image_array = array(); |
|
| 506 | + $post_meta = array(); |
|
| 507 | + |
|
| 508 | + /// Attractions ////post start 9/// |
|
| 509 | + $image_array[] = "$dummy_image_url/a19.jpg"; |
|
| 510 | + $image_array[] = "$dummy_image_url/a20.jpg"; |
|
| 511 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 512 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 513 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 514 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 515 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 516 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 517 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 518 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 519 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 520 | + |
|
| 521 | + $post_info[] = array( |
|
| 522 | + "listing_type" => $post_type, |
|
| 523 | + "post_title" => 'The Liberty Bell Center', |
|
| 524 | + "post_desc" => '<h3>The Experience </h3> |
|
| 525 | 525 | |
| 526 | 526 | The Liberty Bell has a new home, and it is as powerful and dramatic as the Bell itself. Throughout the expansive, light-filled Center, larger-than-life historic documents and graphic images explore the facts and the myths surrounding the Bell. |
| 527 | 527 | |
@@ -542,45 +542,45 @@ discard block |
||
| 542 | 542 | The Bell is suspended from what is believed to be its original yoke, made of American elm. |
| 543 | 543 | |
| 544 | 544 | The Liberty Bell weighs 2,080 pounds. The yoke weighs about 100 pounds.', |
| 545 | - "post_images" => $image_array, |
|
| 546 | - "post_category" => array($post_type.'category' => array('Attractions', 'Feature')), |
|
| 547 | - "post_tags" => array(''), |
|
| 548 | - "geodir_video" => '', |
|
| 549 | - "geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.', |
|
| 550 | - "geodir_contact" => '(777) 666-6666', |
|
| 551 | - "geodir_email" => '[email protected]', |
|
| 552 | - "geodir_website" => 'http://www.nps.gov/inde', |
|
| 553 | - "geodir_twitter" => 'http://twitter.com/nps', |
|
| 554 | - "geodir_facebook" => 'http://facebook.com/nps', |
|
| 555 | - "post_dummy" => '1' |
|
| 556 | - ); |
|
| 557 | - |
|
| 558 | - ////post end/// |
|
| 559 | - /// Attractions ////post start 9/// |
|
| 560 | - break; |
|
| 561 | - case 10: |
|
| 562 | - |
|
| 563 | - |
|
| 564 | - $image_array = array(); |
|
| 565 | - $post_meta = array(); |
|
| 566 | - |
|
| 567 | - /// Attractions ////post start 10/// |
|
| 568 | - $image_array[] = "$dummy_image_url/a19.jpg"; |
|
| 569 | - $image_array[] = "$dummy_image_url/a20.jpg"; |
|
| 570 | - $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 571 | - $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 572 | - $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 573 | - $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 574 | - $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 575 | - $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 576 | - $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 577 | - $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 578 | - $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 579 | - |
|
| 580 | - $post_info[] = array( |
|
| 581 | - "listing_type" => $post_type, |
|
| 582 | - "post_title" => 'Rittenhouse Square', |
|
| 583 | - "post_desc" => ' |
|
| 545 | + "post_images" => $image_array, |
|
| 546 | + "post_category" => array($post_type.'category' => array('Attractions', 'Feature')), |
|
| 547 | + "post_tags" => array(''), |
|
| 548 | + "geodir_video" => '', |
|
| 549 | + "geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.', |
|
| 550 | + "geodir_contact" => '(777) 666-6666', |
|
| 551 | + "geodir_email" => '[email protected]', |
|
| 552 | + "geodir_website" => 'http://www.nps.gov/inde', |
|
| 553 | + "geodir_twitter" => 'http://twitter.com/nps', |
|
| 554 | + "geodir_facebook" => 'http://facebook.com/nps', |
|
| 555 | + "post_dummy" => '1' |
|
| 556 | + ); |
|
| 557 | + |
|
| 558 | + ////post end/// |
|
| 559 | + /// Attractions ////post start 9/// |
|
| 560 | + break; |
|
| 561 | + case 10: |
|
| 562 | + |
|
| 563 | + |
|
| 564 | + $image_array = array(); |
|
| 565 | + $post_meta = array(); |
|
| 566 | + |
|
| 567 | + /// Attractions ////post start 10/// |
|
| 568 | + $image_array[] = "$dummy_image_url/a19.jpg"; |
|
| 569 | + $image_array[] = "$dummy_image_url/a20.jpg"; |
|
| 570 | + $image_array[] = "$dummy_image_url/a3.jpg"; |
|
| 571 | + $image_array[] = "$dummy_image_url/a4.jpg"; |
|
| 572 | + $image_array[] = "$dummy_image_url/a5.jpg"; |
|
| 573 | + $image_array[] = "$dummy_image_url/a2.jpg"; |
|
| 574 | + $image_array[] = "$dummy_image_url/a7.jpg"; |
|
| 575 | + $image_array[] = "$dummy_image_url/a8.jpg"; |
|
| 576 | + $image_array[] = "$dummy_image_url/a6.jpg"; |
|
| 577 | + $image_array[] = "$dummy_image_url/a1.jpg"; |
|
| 578 | + $image_array[] = "$dummy_image_url/a9.jpg"; |
|
| 579 | + |
|
| 580 | + $post_info[] = array( |
|
| 581 | + "listing_type" => $post_type, |
|
| 582 | + "post_title" => 'Rittenhouse Square', |
|
| 583 | + "post_desc" => ' |
|
| 584 | 584 | |
| 585 | 585 | Unlike the other squares, the early Southwest Square was never used as a burial ground, although it offered pasturage for local livestock and a convenient dumping spot for “night soil”. |
| 586 | 586 | <h3> History </h3> |
@@ -613,45 +613,45 @@ discard block |
||
| 613 | 613 | |
| 614 | 614 | Meanwhile, several more restaurants, bars and clubs have opened along the surrounding blocks in recent years, like Parc, Tria, Continental Midtown, Alfa, Walnut Room, and Twenty Manning just to name a few. |
| 615 | 615 | ', |
| 616 | - "post_images" => $image_array, |
|
| 617 | - "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 618 | - "post_tags" => array('Museum'), |
|
| 619 | - "geodir_video" => '', |
|
| 620 | - "geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.', |
|
| 621 | - "geodir_contact" => '(777) 666-6666', |
|
| 622 | - "geodir_email" => '[email protected]', |
|
| 623 | - "geodir_website" => 'http://www.fairmountpark.org/rittenhousesquare.asp', |
|
| 624 | - "geodir_twitter" => 'http://twitter.com/fairmountpark', |
|
| 625 | - "geodir_facebook" => 'http://facebook.com/fairmountpark', |
|
| 626 | - "post_dummy" => '1' |
|
| 627 | - ); |
|
| 628 | - |
|
| 629 | - ////post end/// |
|
| 630 | - /// Attractions ////post start 10/// |
|
| 631 | - break; |
|
| 632 | - case 11: |
|
| 633 | - |
|
| 634 | - |
|
| 635 | - $image_array = array(); |
|
| 636 | - $post_meta = array(); |
|
| 637 | - |
|
| 638 | - /// Hotels ////post start 1/// |
|
| 639 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 640 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 641 | - $image_array[] = "$dummy_image_url/hotels3.jpg"; |
|
| 642 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 643 | - $image_array[] = "$dummy_image_url/hotels5.jpg"; |
|
| 644 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 645 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 646 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 647 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 648 | - $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 649 | - $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 650 | - |
|
| 651 | - $post_info[] = array( |
|
| 652 | - "listing_type" => $post_type, |
|
| 653 | - "post_title" => 'Loews Philadelphia Hotel', |
|
| 654 | - "post_desc" => ' |
|
| 616 | + "post_images" => $image_array, |
|
| 617 | + "post_category" => array($post_type.'category' => array('Attractions')), |
|
| 618 | + "post_tags" => array('Museum'), |
|
| 619 | + "geodir_video" => '', |
|
| 620 | + "geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.', |
|
| 621 | + "geodir_contact" => '(777) 666-6666', |
|
| 622 | + "geodir_email" => '[email protected]', |
|
| 623 | + "geodir_website" => 'http://www.fairmountpark.org/rittenhousesquare.asp', |
|
| 624 | + "geodir_twitter" => 'http://twitter.com/fairmountpark', |
|
| 625 | + "geodir_facebook" => 'http://facebook.com/fairmountpark', |
|
| 626 | + "post_dummy" => '1' |
|
| 627 | + ); |
|
| 628 | + |
|
| 629 | + ////post end/// |
|
| 630 | + /// Attractions ////post start 10/// |
|
| 631 | + break; |
|
| 632 | + case 11: |
|
| 633 | + |
|
| 634 | + |
|
| 635 | + $image_array = array(); |
|
| 636 | + $post_meta = array(); |
|
| 637 | + |
|
| 638 | + /// Hotels ////post start 1/// |
|
| 639 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 640 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 641 | + $image_array[] = "$dummy_image_url/hotels3.jpg"; |
|
| 642 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 643 | + $image_array[] = "$dummy_image_url/hotels5.jpg"; |
|
| 644 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 645 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 646 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 647 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 648 | + $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 649 | + $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 650 | + |
|
| 651 | + $post_info[] = array( |
|
| 652 | + "listing_type" => $post_type, |
|
| 653 | + "post_title" => 'Loews Philadelphia Hotel', |
|
| 654 | + "post_desc" => ' |
|
| 655 | 655 | |
| 656 | 656 | <h3>OVERVIEW </h3> |
| 657 | 657 | |
@@ -718,45 +718,45 @@ discard block |
||
| 718 | 718 | |
| 719 | 719 | SoleFood Restaurant is proud to be serving Starbucks. Come in and enjoy a fresh cup of coffee during your morning rush. The Coffee Bar also offer small breakfast items for your enjoyment. |
| 720 | 720 | ', |
| 721 | - "post_images" => $image_array, |
|
| 722 | - "post_category" => array($post_type.'category' => array('Hotels', 'Feature')), |
|
| 723 | - "post_tags" => array(''), |
|
| 724 | - "geodir_video" => '', |
|
| 725 | - "geodir_timing" => 'Daily, 6:30 am – 12:00 pm', |
|
| 726 | - "geodir_contact" => '(111) 111-0000', |
|
| 727 | - "geodir_email" => '[email protected]', |
|
| 728 | - "geodir_website" => 'http://www.loewshotels.com/en/hotels/philadelphia-hotel/overview.aspx', |
|
| 729 | - "geodir_twitter" => 'http://twitter.com/loewshotels', |
|
| 730 | - "geodir_facebook" => 'http://facebook.com/loewshotels', |
|
| 731 | - "post_dummy" => '1' |
|
| 732 | - ); |
|
| 733 | - |
|
| 734 | - ////post end/// |
|
| 735 | - /// Hotels ////post start 1/// |
|
| 736 | - break; |
|
| 737 | - case 12: |
|
| 738 | - |
|
| 739 | - |
|
| 740 | - $image_array = array(); |
|
| 741 | - $post_meta = array(); |
|
| 742 | - |
|
| 743 | - /// Hotels ////post start 2/// |
|
| 744 | - $image_array[] = "$dummy_image_url/hotels5.jpg"; |
|
| 745 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 746 | - $image_array[] = "$dummy_image_url/hotels3.jpg"; |
|
| 747 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 748 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 749 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 750 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 751 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 752 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 753 | - $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 754 | - $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 755 | - |
|
| 756 | - $post_info[] = array( |
|
| 757 | - "listing_type" => $post_type, |
|
| 758 | - "post_title" => 'Embassy Suites Philadelphia', |
|
| 759 | - "post_desc" => ' |
|
| 721 | + "post_images" => $image_array, |
|
| 722 | + "post_category" => array($post_type.'category' => array('Hotels', 'Feature')), |
|
| 723 | + "post_tags" => array(''), |
|
| 724 | + "geodir_video" => '', |
|
| 725 | + "geodir_timing" => 'Daily, 6:30 am – 12:00 pm', |
|
| 726 | + "geodir_contact" => '(111) 111-0000', |
|
| 727 | + "geodir_email" => '[email protected]', |
|
| 728 | + "geodir_website" => 'http://www.loewshotels.com/en/hotels/philadelphia-hotel/overview.aspx', |
|
| 729 | + "geodir_twitter" => 'http://twitter.com/loewshotels', |
|
| 730 | + "geodir_facebook" => 'http://facebook.com/loewshotels', |
|
| 731 | + "post_dummy" => '1' |
|
| 732 | + ); |
|
| 733 | + |
|
| 734 | + ////post end/// |
|
| 735 | + /// Hotels ////post start 1/// |
|
| 736 | + break; |
|
| 737 | + case 12: |
|
| 738 | + |
|
| 739 | + |
|
| 740 | + $image_array = array(); |
|
| 741 | + $post_meta = array(); |
|
| 742 | + |
|
| 743 | + /// Hotels ////post start 2/// |
|
| 744 | + $image_array[] = "$dummy_image_url/hotels5.jpg"; |
|
| 745 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 746 | + $image_array[] = "$dummy_image_url/hotels3.jpg"; |
|
| 747 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 748 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 749 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 750 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 751 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 752 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 753 | + $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 754 | + $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 755 | + |
|
| 756 | + $post_info[] = array( |
|
| 757 | + "listing_type" => $post_type, |
|
| 758 | + "post_title" => 'Embassy Suites Philadelphia', |
|
| 759 | + "post_desc" => ' |
|
| 760 | 760 | The newly renovated Embassy Suites Philadelphia – Center City hotel is conveniently situated in the heart of downtown Philadelphia, Pennsylvania and Philadelphia´s Center City business district. This hotel in Philadelphia is located only eight miles from Philadelphia International Airport and just minutes from top Philadelphia attractions, including: |
| 761 | 761 | |
| 762 | 762 | Philadelphia Museum of Art |
@@ -772,45 +772,45 @@ discard block |
||
| 772 | 772 | |
| 773 | 773 | A delicious, complimentary cooked-to-order breakfast is offered each morning, and a hotel Manager´s Reception every night – featuring complimentary refreshments and great company. |
| 774 | 774 | ', |
| 775 | - "post_images" => $image_array, |
|
| 776 | - "post_category" => array($post_type.'category' => array('Hotels')), |
|
| 777 | - "post_tags" => array(''), |
|
| 778 | - "geodir_video" => '', |
|
| 779 | - "geodir_timing" => 'Daily, 10:30 am – 10 pm', |
|
| 780 | - "geodir_contact" => '(111) 111-0000', |
|
| 781 | - "geodir_email" => '[email protected]', |
|
| 782 | - "geodir_website" => 'http://embassysuites1.hilton.com/en_US/es/hotel/PHLDTES-Embassy-Suites-Philadelphia-Center-City-Pennsylvania/index.do', |
|
| 783 | - "geodir_twitter" => 'http://twitter.com/embassysuites1', |
|
| 784 | - "geodir_facebook" => 'http://facebook.com/embassysuites1', |
|
| 785 | - "post_dummy" => '1' |
|
| 786 | - ); |
|
| 787 | - |
|
| 788 | - ////post end/// |
|
| 789 | - /// Hotels ////post start 2/// |
|
| 790 | - |
|
| 791 | - break; |
|
| 792 | - case 13: |
|
| 793 | - |
|
| 794 | - $image_array = array(); |
|
| 795 | - $post_meta = array(); |
|
| 796 | - |
|
| 797 | - /// Hotels ////post start 3/// |
|
| 798 | - $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 799 | - $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 800 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 801 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 802 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 803 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 804 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 805 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 806 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 807 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 808 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 809 | - |
|
| 810 | - $post_info[] = array( |
|
| 811 | - "listing_type" => $post_type, |
|
| 812 | - "post_title" => 'Doubletree Hotel Philadelphia', |
|
| 813 | - "post_desc" => ' |
|
| 775 | + "post_images" => $image_array, |
|
| 776 | + "post_category" => array($post_type.'category' => array('Hotels')), |
|
| 777 | + "post_tags" => array(''), |
|
| 778 | + "geodir_video" => '', |
|
| 779 | + "geodir_timing" => 'Daily, 10:30 am – 10 pm', |
|
| 780 | + "geodir_contact" => '(111) 111-0000', |
|
| 781 | + "geodir_email" => '[email protected]', |
|
| 782 | + "geodir_website" => 'http://embassysuites1.hilton.com/en_US/es/hotel/PHLDTES-Embassy-Suites-Philadelphia-Center-City-Pennsylvania/index.do', |
|
| 783 | + "geodir_twitter" => 'http://twitter.com/embassysuites1', |
|
| 784 | + "geodir_facebook" => 'http://facebook.com/embassysuites1', |
|
| 785 | + "post_dummy" => '1' |
|
| 786 | + ); |
|
| 787 | + |
|
| 788 | + ////post end/// |
|
| 789 | + /// Hotels ////post start 2/// |
|
| 790 | + |
|
| 791 | + break; |
|
| 792 | + case 13: |
|
| 793 | + |
|
| 794 | + $image_array = array(); |
|
| 795 | + $post_meta = array(); |
|
| 796 | + |
|
| 797 | + /// Hotels ////post start 3/// |
|
| 798 | + $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 799 | + $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 800 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 801 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 802 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 803 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 804 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 805 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 806 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 807 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 808 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 809 | + |
|
| 810 | + $post_info[] = array( |
|
| 811 | + "listing_type" => $post_type, |
|
| 812 | + "post_title" => 'Doubletree Hotel Philadelphia', |
|
| 813 | + "post_desc" => ' |
|
| 814 | 814 | With 434 rooms, the Doubletree Hotel is a great option for your upcoming stay in Philadelphia. |
| 815 | 815 | |
| 816 | 816 | <h3>Location </h3> |
@@ -840,47 +840,47 @@ discard block |
||
| 840 | 840 | Stop in the restaurant - which serves lunch and dinner daily - for a drink and some light fare. With its location right on Broad Street, you´re close to everything you could ever want in a night on the town. |
| 841 | 841 | ', |
| 842 | 842 | |
| 843 | - "post_images" => $image_array, |
|
| 844 | - |
|
| 845 | - "post_category" => array($post_type.'category' => array('Hotels')), |
|
| 846 | - "post_tags" => array(''), |
|
| 847 | - "geodir_video" => '', |
|
| 848 | - "geodir_timing" => 'Daily, 10:30 am – 10 pm', |
|
| 849 | - "geodir_contact" => '(111) 111-0000', |
|
| 850 | - "geodir_email" => '[email protected]', |
|
| 851 | - "geodir_website" => 'http://doubletree1.hilton.com/en_US/dt/hotel/PHLBLDT-Doubletree-Hotel-Philadelphia-Pennsylvania/index.do', |
|
| 852 | - "geodir_twitter" => 'http://twitter.com/doubletree1', |
|
| 853 | - "geodir_facebook" => 'http://facebook.com/doubletree1', |
|
| 854 | - "post_dummy" => '1' |
|
| 855 | - ); |
|
| 856 | - |
|
| 857 | - ////post end/// |
|
| 858 | - /// Hotels ////post start 3/// |
|
| 859 | - |
|
| 860 | - break; |
|
| 861 | - case 14: |
|
| 862 | - |
|
| 863 | - |
|
| 864 | - $image_array = array(); |
|
| 865 | - $post_meta = array(); |
|
| 866 | - |
|
| 867 | - /// Hotels ////post start 4/// |
|
| 868 | - $image_array[] = "$dummy_image_url/hotels15.jpg"; |
|
| 869 | - $image_array[] = "$dummy_image_url/hotels16.jpg"; |
|
| 870 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 871 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 872 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 873 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 874 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 875 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 876 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 877 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 878 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 879 | - |
|
| 880 | - $post_info[] = array( |
|
| 881 | - "listing_type" => $post_type, |
|
| 882 | - "post_title" => 'Philadelphia Marriott Downtown', |
|
| 883 | - "post_desc" => ' |
|
| 843 | + "post_images" => $image_array, |
|
| 844 | + |
|
| 845 | + "post_category" => array($post_type.'category' => array('Hotels')), |
|
| 846 | + "post_tags" => array(''), |
|
| 847 | + "geodir_video" => '', |
|
| 848 | + "geodir_timing" => 'Daily, 10:30 am – 10 pm', |
|
| 849 | + "geodir_contact" => '(111) 111-0000', |
|
| 850 | + "geodir_email" => '[email protected]', |
|
| 851 | + "geodir_website" => 'http://doubletree1.hilton.com/en_US/dt/hotel/PHLBLDT-Doubletree-Hotel-Philadelphia-Pennsylvania/index.do', |
|
| 852 | + "geodir_twitter" => 'http://twitter.com/doubletree1', |
|
| 853 | + "geodir_facebook" => 'http://facebook.com/doubletree1', |
|
| 854 | + "post_dummy" => '1' |
|
| 855 | + ); |
|
| 856 | + |
|
| 857 | + ////post end/// |
|
| 858 | + /// Hotels ////post start 3/// |
|
| 859 | + |
|
| 860 | + break; |
|
| 861 | + case 14: |
|
| 862 | + |
|
| 863 | + |
|
| 864 | + $image_array = array(); |
|
| 865 | + $post_meta = array(); |
|
| 866 | + |
|
| 867 | + /// Hotels ////post start 4/// |
|
| 868 | + $image_array[] = "$dummy_image_url/hotels15.jpg"; |
|
| 869 | + $image_array[] = "$dummy_image_url/hotels16.jpg"; |
|
| 870 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 871 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 872 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 873 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 874 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 875 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 876 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 877 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 878 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 879 | + |
|
| 880 | + $post_info[] = array( |
|
| 881 | + "listing_type" => $post_type, |
|
| 882 | + "post_title" => 'Philadelphia Marriott Downtown', |
|
| 883 | + "post_desc" => ' |
|
| 884 | 884 | Get ready to stay and play at the new aloft Philadelphia Airport! |
| 885 | 885 | |
| 886 | 886 | This incredibly modern hotel is located just five minutes from Philadelphia International Airport, offering a great convenience to travelers looking for fresh and fun accommodations. |
@@ -907,45 +907,45 @@ discard block |
||
| 907 | 907 | |
| 908 | 908 | Aahh…breathe deep at Aloft. This hotel is smoke-free. |
| 909 | 909 | ', |
| 910 | - "post_images" => $image_array, |
|
| 911 | - "post_category" => array($post_type.'category' => array('Hotels', 'Feature')), |
|
| 912 | - "post_tags" => array(''), |
|
| 913 | - "geodir_video" => '', |
|
| 914 | - "geodir_timing" => '24 Hours', |
|
| 915 | - "geodir_contact" => '(123) 111-2222', |
|
| 916 | - "geodir_email" => '[email protected]', |
|
| 917 | - "geodir_website" => 'http://www.marriott.com/hotels/travel/phldt-philadelphia-marriott-downtown/', |
|
| 918 | - "geodir_twitter" => 'http://twitter.com/marriott', |
|
| 919 | - "geodir_facebook" => 'http://facebook.com/marriott', |
|
| 920 | - "post_dummy" => '1' |
|
| 921 | - ); |
|
| 922 | - |
|
| 923 | - ////post end/// |
|
| 924 | - /// Hotels ////post start 4/// |
|
| 925 | - break; |
|
| 926 | - case 15: |
|
| 927 | - |
|
| 928 | - |
|
| 929 | - $image_array = array(); |
|
| 930 | - $post_meta = array(); |
|
| 931 | - |
|
| 932 | - /// Hotels ////post start 5/// |
|
| 933 | - $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 934 | - $image_array[] = "$dummy_image_url/hotels16.jpg"; |
|
| 935 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 936 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 937 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 938 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 939 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 940 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 941 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 942 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 943 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 944 | - |
|
| 945 | - $post_info[] = array( |
|
| 946 | - "listing_type" => $post_type, |
|
| 947 | - "post_title" => 'Hilton Inn at Penn', |
|
| 948 | - "post_desc" => ' |
|
| 910 | + "post_images" => $image_array, |
|
| 911 | + "post_category" => array($post_type.'category' => array('Hotels', 'Feature')), |
|
| 912 | + "post_tags" => array(''), |
|
| 913 | + "geodir_video" => '', |
|
| 914 | + "geodir_timing" => '24 Hours', |
|
| 915 | + "geodir_contact" => '(123) 111-2222', |
|
| 916 | + "geodir_email" => '[email protected]', |
|
| 917 | + "geodir_website" => 'http://www.marriott.com/hotels/travel/phldt-philadelphia-marriott-downtown/', |
|
| 918 | + "geodir_twitter" => 'http://twitter.com/marriott', |
|
| 919 | + "geodir_facebook" => 'http://facebook.com/marriott', |
|
| 920 | + "post_dummy" => '1' |
|
| 921 | + ); |
|
| 922 | + |
|
| 923 | + ////post end/// |
|
| 924 | + /// Hotels ////post start 4/// |
|
| 925 | + break; |
|
| 926 | + case 15: |
|
| 927 | + |
|
| 928 | + |
|
| 929 | + $image_array = array(); |
|
| 930 | + $post_meta = array(); |
|
| 931 | + |
|
| 932 | + /// Hotels ////post start 5/// |
|
| 933 | + $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 934 | + $image_array[] = "$dummy_image_url/hotels16.jpg"; |
|
| 935 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 936 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 937 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 938 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 939 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 940 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 941 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 942 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 943 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 944 | + |
|
| 945 | + $post_info[] = array( |
|
| 946 | + "listing_type" => $post_type, |
|
| 947 | + "post_title" => 'Hilton Inn at Penn', |
|
| 948 | + "post_desc" => ' |
|
| 949 | 949 | Located in the heart of Penn´s campus in the beautiful University City neighborhood of Philadelphia, The Hilton Inn at Penn is a great choice for accommodations during your upcoming visit to Philadelphia. |
| 950 | 950 | |
| 951 | 951 | The location puts you right in the middle of the prestigious University of Pennsylvania and its many nearby educational, medical and corporate centers. And Center City Philadelphia is only a short cab ride away. So if you want to get out and explore the city, you are set. |
@@ -961,45 +961,45 @@ discard block |
||
| 961 | 961 | |
| 962 | 962 | The pasta is handmade right in front of you and then dished up along side delectable entrées such as grilled veal tenderloin and honey glazed sea scallops. And the wine bar offers more than 30 varieties by the glass and more than 100 by the bottle. |
| 963 | 963 | ', |
| 964 | - "post_images" => $image_array, |
|
| 965 | - "post_category" => array($post_type.'category' => array('Hotels', 'Food Nightlife')), |
|
| 966 | - "post_tags" => array(''), |
|
| 967 | - "geodir_video" => '', |
|
| 968 | - "geodir_timing" => 'Daily : 11 am to 11 pm', |
|
| 969 | - "geodir_contact" => '(888) 888-8888', |
|
| 970 | - "geodir_email" => '[email protected]', |
|
| 971 | - "geodir_website" => 'http://www.theinnatpenn.com/', |
|
| 972 | - "geodir_twitter" => 'http://twitter.com/theinnatpenn', |
|
| 973 | - "geodir_facebook" => 'http://facebook.com/theinnatpenn', |
|
| 974 | - "post_dummy" => '1' |
|
| 975 | - ); |
|
| 976 | - |
|
| 977 | - ////post end/// |
|
| 978 | - /// Hotels ////post start 5/// |
|
| 979 | - break; |
|
| 980 | - case 16: |
|
| 981 | - |
|
| 982 | - |
|
| 983 | - $image_array = array(); |
|
| 984 | - $post_meta = array(); |
|
| 985 | - |
|
| 986 | - /// Hotels ////post start 6/// |
|
| 987 | - $image_array[] = "$dummy_image_url/hotels17.jpg"; |
|
| 988 | - $image_array[] = "$dummy_image_url/hotels18.jpg"; |
|
| 989 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 990 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 991 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 992 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 993 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 994 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 995 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 996 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 997 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 998 | - |
|
| 999 | - $post_info[] = array( |
|
| 1000 | - "listing_type" => $post_type, |
|
| 1001 | - "post_title" => 'Courtyard Philadelphia Downtown', |
|
| 1002 | - "post_desc" => ' |
|
| 964 | + "post_images" => $image_array, |
|
| 965 | + "post_category" => array($post_type.'category' => array('Hotels', 'Food Nightlife')), |
|
| 966 | + "post_tags" => array(''), |
|
| 967 | + "geodir_video" => '', |
|
| 968 | + "geodir_timing" => 'Daily : 11 am to 11 pm', |
|
| 969 | + "geodir_contact" => '(888) 888-8888', |
|
| 970 | + "geodir_email" => '[email protected]', |
|
| 971 | + "geodir_website" => 'http://www.theinnatpenn.com/', |
|
| 972 | + "geodir_twitter" => 'http://twitter.com/theinnatpenn', |
|
| 973 | + "geodir_facebook" => 'http://facebook.com/theinnatpenn', |
|
| 974 | + "post_dummy" => '1' |
|
| 975 | + ); |
|
| 976 | + |
|
| 977 | + ////post end/// |
|
| 978 | + /// Hotels ////post start 5/// |
|
| 979 | + break; |
|
| 980 | + case 16: |
|
| 981 | + |
|
| 982 | + |
|
| 983 | + $image_array = array(); |
|
| 984 | + $post_meta = array(); |
|
| 985 | + |
|
| 986 | + /// Hotels ////post start 6/// |
|
| 987 | + $image_array[] = "$dummy_image_url/hotels17.jpg"; |
|
| 988 | + $image_array[] = "$dummy_image_url/hotels18.jpg"; |
|
| 989 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 990 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 991 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 992 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 993 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 994 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 995 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 996 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 997 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 998 | + |
|
| 999 | + $post_info[] = array( |
|
| 1000 | + "listing_type" => $post_type, |
|
| 1001 | + "post_title" => 'Courtyard Philadelphia Downtown', |
|
| 1002 | + "post_desc" => ' |
|
| 1003 | 1003 | <h3>Overview </h3> |
| 1004 | 1004 | |
| 1005 | 1005 | The Philadelphia Downtown Courtyard opened it´s doors after a grand $75 million restoration, recapturing the grandeur of its 1926 origins while incorporating state of the art systems throughout. |
@@ -1029,45 +1029,45 @@ discard block |
||
| 1029 | 1029 | |
| 1030 | 1030 | Recently featured on WE TV´s “My Fair Wedding”, the Courtyard Marriott Philadelphia is one of the city´s leading venues for corporate and social affairs with over 10,000 sq ft of flexible meeting space, including two Grand Ballrooms each with over 3,000 square feet accommodating up to 250 people. In addition, the hotel has a total of 11 meeting rooms making it an ideal home for all occasions. The hotel boasts an experienced full-service Event and Culinary Teams, ready to take care of all the details and ensure your event is not only a success, but a lasting memory. |
| 1031 | 1031 | ', |
| 1032 | - "post_images" => $image_array, |
|
| 1033 | - "post_category" => array($post_type.'category' => array('Hotels', 'Food Nightlife')), |
|
| 1034 | - "post_tags" => array(''), |
|
| 1035 | - "geodir_video" => '', |
|
| 1036 | - "geodir_timing" => 'Daily : 11 am to 11 pm', |
|
| 1037 | - "geodir_contact" => '(888) 888-8888', |
|
| 1038 | - "geodir_email" => '[email protected]', |
|
| 1039 | - "geodir_website" => 'http://www.theinnatpenn.com/', |
|
| 1040 | - "geodir_twitter" => 'http://twitter.com/theinnatpenn', |
|
| 1041 | - "geodir_facebook" => 'http://facebook.com/theinnatpenn', |
|
| 1042 | - "post_dummy" => '1' |
|
| 1043 | - ); |
|
| 1044 | - |
|
| 1045 | - ////post end/// |
|
| 1046 | - /// Hotels ////post start 6/// |
|
| 1047 | - |
|
| 1048 | - break; |
|
| 1049 | - case 17: |
|
| 1050 | - |
|
| 1051 | - $image_array = array(); |
|
| 1052 | - $post_meta = array(); |
|
| 1053 | - |
|
| 1054 | - /// Hotels ////post start 7/// |
|
| 1055 | - $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 1056 | - $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 1057 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1058 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 1059 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1060 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 1061 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 1062 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 1063 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 1064 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1065 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 1066 | - |
|
| 1067 | - $post_info[] = array( |
|
| 1068 | - "listing_type" => $post_type, |
|
| 1069 | - "post_title" => 'Four Seasons Philadelphia', |
|
| 1070 | - "post_desc" => ' |
|
| 1032 | + "post_images" => $image_array, |
|
| 1033 | + "post_category" => array($post_type.'category' => array('Hotels', 'Food Nightlife')), |
|
| 1034 | + "post_tags" => array(''), |
|
| 1035 | + "geodir_video" => '', |
|
| 1036 | + "geodir_timing" => 'Daily : 11 am to 11 pm', |
|
| 1037 | + "geodir_contact" => '(888) 888-8888', |
|
| 1038 | + "geodir_email" => '[email protected]', |
|
| 1039 | + "geodir_website" => 'http://www.theinnatpenn.com/', |
|
| 1040 | + "geodir_twitter" => 'http://twitter.com/theinnatpenn', |
|
| 1041 | + "geodir_facebook" => 'http://facebook.com/theinnatpenn', |
|
| 1042 | + "post_dummy" => '1' |
|
| 1043 | + ); |
|
| 1044 | + |
|
| 1045 | + ////post end/// |
|
| 1046 | + /// Hotels ////post start 6/// |
|
| 1047 | + |
|
| 1048 | + break; |
|
| 1049 | + case 17: |
|
| 1050 | + |
|
| 1051 | + $image_array = array(); |
|
| 1052 | + $post_meta = array(); |
|
| 1053 | + |
|
| 1054 | + /// Hotels ////post start 7/// |
|
| 1055 | + $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 1056 | + $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 1057 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1058 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 1059 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1060 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 1061 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 1062 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 1063 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 1064 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1065 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 1066 | + |
|
| 1067 | + $post_info[] = array( |
|
| 1068 | + "listing_type" => $post_type, |
|
| 1069 | + "post_title" => 'Four Seasons Philadelphia', |
|
| 1070 | + "post_desc" => ' |
|
| 1071 | 1071 | <h3>Overview </h3> |
| 1072 | 1072 | |
| 1073 | 1073 | The Philadelphia Downtown Courtyard opened it´s doors after a grand $75 million restoration, recapturing the grandeur of its 1926 origins while incorporating state of the art systems throughout. |
@@ -1097,45 +1097,45 @@ discard block |
||
| 1097 | 1097 | |
| 1098 | 1098 | Recently featured on WE TV´s “My Fair Wedding”, the Courtyard Marriott Philadelphia is one of the city´s leading venues for corporate and social affairs with over 10,000 sq ft of flexible meeting space, including two Grand Ballrooms each with over 3,000 square feet accommodating up to 250 people. In addition, the hotel has a total of 11 meeting rooms making it an ideal home for all occasions. The hotel boasts an experienced full-service Event and Culinary Teams, ready to take care of all the details and ensure your event is not only a success, but a lasting memory. |
| 1099 | 1099 | ', |
| 1100 | - "post_images" => $image_array, |
|
| 1101 | - "post_category" => array($post_type.'category' => array('Hotels', 'Food Nightlife')), |
|
| 1102 | - "post_tags" => array(''), |
|
| 1103 | - "geodir_video" => '', |
|
| 1104 | - "geodir_timing" => 'Daily : 11 am to 11 pm', |
|
| 1105 | - "geodir_contact" => '(143) 888-8888', |
|
| 1106 | - "geodir_email" => '[email protected]', |
|
| 1107 | - "geodir_website" => 'http://www.fourseasons.com/philadelphia/', |
|
| 1108 | - "geodir_twitter" => 'http://twitter.com/fourseasons', |
|
| 1109 | - "geodir_facebook" => 'http://facebook.com/fourseasons', |
|
| 1110 | - "post_dummy" => '1' |
|
| 1111 | - ); |
|
| 1112 | - |
|
| 1113 | - ////post end/// |
|
| 1114 | - /// Hotels ////post start 7/// |
|
| 1115 | - break; |
|
| 1116 | - case 18: |
|
| 1117 | - |
|
| 1118 | - |
|
| 1119 | - $image_array = array(); |
|
| 1120 | - $post_meta = array(); |
|
| 1121 | - |
|
| 1122 | - /// Hotels ////post start 8/// |
|
| 1123 | - $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 1124 | - $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 1125 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1126 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 1127 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1128 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 1129 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 1130 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 1131 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 1132 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1133 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 1134 | - |
|
| 1135 | - $post_info[] = array( |
|
| 1136 | - "listing_type" => $post_type, |
|
| 1137 | - "post_title" => 'Alexander Inn', |
|
| 1138 | - "post_desc" => ' |
|
| 1100 | + "post_images" => $image_array, |
|
| 1101 | + "post_category" => array($post_type.'category' => array('Hotels', 'Food Nightlife')), |
|
| 1102 | + "post_tags" => array(''), |
|
| 1103 | + "geodir_video" => '', |
|
| 1104 | + "geodir_timing" => 'Daily : 11 am to 11 pm', |
|
| 1105 | + "geodir_contact" => '(143) 888-8888', |
|
| 1106 | + "geodir_email" => '[email protected]', |
|
| 1107 | + "geodir_website" => 'http://www.fourseasons.com/philadelphia/', |
|
| 1108 | + "geodir_twitter" => 'http://twitter.com/fourseasons', |
|
| 1109 | + "geodir_facebook" => 'http://facebook.com/fourseasons', |
|
| 1110 | + "post_dummy" => '1' |
|
| 1111 | + ); |
|
| 1112 | + |
|
| 1113 | + ////post end/// |
|
| 1114 | + /// Hotels ////post start 7/// |
|
| 1115 | + break; |
|
| 1116 | + case 18: |
|
| 1117 | + |
|
| 1118 | + |
|
| 1119 | + $image_array = array(); |
|
| 1120 | + $post_meta = array(); |
|
| 1121 | + |
|
| 1122 | + /// Hotels ////post start 8/// |
|
| 1123 | + $image_array[] = "$dummy_image_url/hotels11.jpg"; |
|
| 1124 | + $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 1125 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1126 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 1127 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1128 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 1129 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 1130 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 1131 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 1132 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1133 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 1134 | + |
|
| 1135 | + $post_info[] = array( |
|
| 1136 | + "listing_type" => $post_type, |
|
| 1137 | + "post_title" => 'Alexander Inn', |
|
| 1138 | + "post_desc" => ' |
|
| 1139 | 1139 | The Alexander Inn is one of Philadelphia´s most popular and reasonably priced small hotels. |
| 1140 | 1140 | |
| 1141 | 1141 | Conveniently located in the heart of the Washington Square West neighborhood in Center City Philadelphia, the Alexander Inn is a great place to base your stay in Philadelphia. |
@@ -1144,45 +1144,45 @@ discard block |
||
| 1144 | 1144 | |
| 1145 | 1145 | Rooms are also fitted with DirecTV (including many complimentary channels like CNN, ESPN, eight movie channels, etc.) and telephones with modem ports and direct dial. You will also have access to the hotel´s free 24-hour fitness and e-mail centers. |
| 1146 | 1146 | ', |
| 1147 | - "post_images" => $image_array, |
|
| 1148 | - "post_category" => array($post_type.'category' => array('Hotels')), |
|
| 1149 | - "post_tags" => array(''), |
|
| 1150 | - "geodir_video" => '', |
|
| 1151 | - "geodir_timing" => 'Daily : 11 am to 11 pm', |
|
| 1152 | - "geodir_contact" => '(143) 888-8888', |
|
| 1153 | - "geodir_email" => '[email protected]', |
|
| 1154 | - "geodir_website" => 'http://www.alexanderinn.com/', |
|
| 1155 | - "geodir_twitter" => 'http://twitter.com/alexanderinn', |
|
| 1156 | - "geodir_facebook" => 'http://facebook.com/alexanderinn', |
|
| 1157 | - "post_dummy" => '1' |
|
| 1158 | - ); |
|
| 1159 | - |
|
| 1160 | - ////post end/// |
|
| 1161 | - /// Hotels ////post start 8/// |
|
| 1162 | - break; |
|
| 1163 | - case 19: |
|
| 1164 | - |
|
| 1165 | - |
|
| 1166 | - $image_array = array(); |
|
| 1167 | - $post_meta = array(); |
|
| 1168 | - |
|
| 1169 | - /// Hotels ////post start 9/// |
|
| 1170 | - $image_array[] = "$dummy_image_url/hotels5.jpg"; |
|
| 1171 | - $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 1172 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1173 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 1174 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1175 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 1176 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 1177 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 1178 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 1179 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1180 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 1181 | - |
|
| 1182 | - $post_info[] = array( |
|
| 1183 | - "listing_type" => $post_type, |
|
| 1184 | - "post_title" => 'Best Western Center City Hotel', |
|
| 1185 | - "post_desc" => ' |
|
| 1147 | + "post_images" => $image_array, |
|
| 1148 | + "post_category" => array($post_type.'category' => array('Hotels')), |
|
| 1149 | + "post_tags" => array(''), |
|
| 1150 | + "geodir_video" => '', |
|
| 1151 | + "geodir_timing" => 'Daily : 11 am to 11 pm', |
|
| 1152 | + "geodir_contact" => '(143) 888-8888', |
|
| 1153 | + "geodir_email" => '[email protected]', |
|
| 1154 | + "geodir_website" => 'http://www.alexanderinn.com/', |
|
| 1155 | + "geodir_twitter" => 'http://twitter.com/alexanderinn', |
|
| 1156 | + "geodir_facebook" => 'http://facebook.com/alexanderinn', |
|
| 1157 | + "post_dummy" => '1' |
|
| 1158 | + ); |
|
| 1159 | + |
|
| 1160 | + ////post end/// |
|
| 1161 | + /// Hotels ////post start 8/// |
|
| 1162 | + break; |
|
| 1163 | + case 19: |
|
| 1164 | + |
|
| 1165 | + |
|
| 1166 | + $image_array = array(); |
|
| 1167 | + $post_meta = array(); |
|
| 1168 | + |
|
| 1169 | + /// Hotels ////post start 9/// |
|
| 1170 | + $image_array[] = "$dummy_image_url/hotels5.jpg"; |
|
| 1171 | + $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 1172 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1173 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 1174 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1175 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 1176 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 1177 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 1178 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 1179 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1180 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 1181 | + |
|
| 1182 | + $post_info[] = array( |
|
| 1183 | + "listing_type" => $post_type, |
|
| 1184 | + "post_title" => 'Best Western Center City Hotel', |
|
| 1185 | + "post_desc" => ' |
|
| 1186 | 1186 | The Alexander Inn is one of Philadelphia´s most popular and reasonably priced small hotels. |
| 1187 | 1187 | |
| 1188 | 1188 | Conveniently located in the heart of the Washington Square West neighborhood in Center City Philadelphia, the Alexander Inn is a great place to base your stay in Philadelphia. |
@@ -1191,91 +1191,91 @@ discard block |
||
| 1191 | 1191 | |
| 1192 | 1192 | Rooms are also fitted with DirecTV (including many complimentary channels like CNN, ESPN, eight movie channels, etc.) and telephones with modem ports and direct dial. You will also have access to the hotel´s free 24-hour fitness and e-mail centers. |
| 1193 | 1193 | ', |
| 1194 | - "post_images" => $image_array, |
|
| 1195 | - "post_category" => array($post_type.'category' => array('Hotels', 'Food Nightlife')), |
|
| 1196 | - "post_tags" => array(''), |
|
| 1197 | - "geodir_video" => '', |
|
| 1198 | - "geodir_timing" => 'Daily : 10 am to 11 pm', |
|
| 1199 | - "geodir_contact" => '(243) 222-12344', |
|
| 1200 | - "geodir_email" => '[email protected]', |
|
| 1201 | - "geodir_website" => 'http://book.bestwestern.com/bestwestern/productInfo.do?propertyCode=39087', |
|
| 1202 | - "geodir_twitter" => 'http://twitter.com/bestwestern', |
|
| 1203 | - "geodir_facebook" => 'http://facebook.com/bestwestern', |
|
| 1204 | - "post_dummy" => '1' |
|
| 1205 | - ); |
|
| 1206 | - |
|
| 1207 | - ////post end/// |
|
| 1208 | - /// Hotels ////post start 9/// |
|
| 1209 | - break; |
|
| 1210 | - case 20: |
|
| 1211 | - |
|
| 1212 | - |
|
| 1213 | - $image_array = array(); |
|
| 1214 | - $post_meta = array(); |
|
| 1215 | - |
|
| 1216 | - /// Hotels ////post start 10/// |
|
| 1217 | - $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 1218 | - $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 1219 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1220 | - $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 1221 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1222 | - $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 1223 | - $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1224 | - $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 1225 | - $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 1226 | - $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1227 | - $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 1228 | - |
|
| 1229 | - $post_info[] = array( |
|
| 1230 | - "listing_type" => $post_type, |
|
| 1231 | - "post_title" => 'Chestnut Hill Hotel', |
|
| 1232 | - "post_desc" => ' |
|
| 1194 | + "post_images" => $image_array, |
|
| 1195 | + "post_category" => array($post_type.'category' => array('Hotels', 'Food Nightlife')), |
|
| 1196 | + "post_tags" => array(''), |
|
| 1197 | + "geodir_video" => '', |
|
| 1198 | + "geodir_timing" => 'Daily : 10 am to 11 pm', |
|
| 1199 | + "geodir_contact" => '(243) 222-12344', |
|
| 1200 | + "geodir_email" => '[email protected]', |
|
| 1201 | + "geodir_website" => 'http://book.bestwestern.com/bestwestern/productInfo.do?propertyCode=39087', |
|
| 1202 | + "geodir_twitter" => 'http://twitter.com/bestwestern', |
|
| 1203 | + "geodir_facebook" => 'http://facebook.com/bestwestern', |
|
| 1204 | + "post_dummy" => '1' |
|
| 1205 | + ); |
|
| 1206 | + |
|
| 1207 | + ////post end/// |
|
| 1208 | + /// Hotels ////post start 9/// |
|
| 1209 | + break; |
|
| 1210 | + case 20: |
|
| 1211 | + |
|
| 1212 | + |
|
| 1213 | + $image_array = array(); |
|
| 1214 | + $post_meta = array(); |
|
| 1215 | + |
|
| 1216 | + /// Hotels ////post start 10/// |
|
| 1217 | + $image_array[] = "$dummy_image_url/hotels7.jpg"; |
|
| 1218 | + $image_array[] = "$dummy_image_url/hotels10.jpg"; |
|
| 1219 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1220 | + $image_array[] = "$dummy_image_url/hotels4.jpg"; |
|
| 1221 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1222 | + $image_array[] = "$dummy_image_url/hotels6.jpg"; |
|
| 1223 | + $image_array[] = "$dummy_image_url/hotels12.jpg"; |
|
| 1224 | + $image_array[] = "$dummy_image_url/hotels8.jpg"; |
|
| 1225 | + $image_array[] = "$dummy_image_url/hotels9.jpg"; |
|
| 1226 | + $image_array[] = "$dummy_image_url/hotels1.jpg"; |
|
| 1227 | + $image_array[] = "$dummy_image_url/hotels2.jpg"; |
|
| 1228 | + |
|
| 1229 | + $post_info[] = array( |
|
| 1230 | + "listing_type" => $post_type, |
|
| 1231 | + "post_title" => 'Chestnut Hill Hotel', |
|
| 1232 | + "post_desc" => ' |
|
| 1233 | 1233 | The Chestnut Hill Hotel is located in the historic community of Chestnut Hill, approximately nine miles northwest from Center City Philadelphia. Although Chestnut Hill is close to Center City by today´s standards, it was originally a distant “suburb” on the outskirts of the Philadelphia countryside. |
| 1234 | 1234 | |
| 1235 | 1235 | Today, it is one of the region´s most charming neighborhoods. Tree-lined streets and grand estates surround its main street, Germantown Avenue, where you can stroll and shop at more than 200 specialty shops and restaurants, along with trendy salons and other modern boutiques. |
| 1236 | 1236 | |
| 1237 | 1237 | The Chestnut Hill Hotel fits perfectly in this setting - the hotel´s 36 rooms and suites, decorated in an 18th-century style, hold the hotel to its boutique roots. It´s a perfect place at which to enjoy a romantic getaway in Philadelphia. |
| 1238 | 1238 | ', |
| 1239 | - "post_images" => $image_array, |
|
| 1240 | - "post_category" => array($post_type.'category' => array('Hotels', 'Feature')), |
|
| 1241 | - "post_tags" => array(''), |
|
| 1242 | - "geodir_video" => '', |
|
| 1243 | - "geodir_timing" => 'Daily : 10 am to 11 pm', |
|
| 1244 | - "geodir_contact" => '(243) 222-12344', |
|
| 1245 | - "geodir_email" => '[email protected]', |
|
| 1246 | - "geodir_website" => 'http://www.chestnuthillhotel.com/', |
|
| 1247 | - "geodir_twitter" => 'http://twitter.com/chestnuthillhotel', |
|
| 1248 | - "geodir_facebook" => 'http://facebook.com/chestnuthillhotel', |
|
| 1249 | - "post_dummy" => '1' |
|
| 1250 | - ); |
|
| 1251 | - |
|
| 1252 | - ////post end/// |
|
| 1253 | - /// Hotels ////post start 10/// |
|
| 1254 | - |
|
| 1255 | - break; |
|
| 1256 | - case 21: |
|
| 1257 | - |
|
| 1258 | - |
|
| 1259 | - $image_array = array(); |
|
| 1260 | - $post_meta = array(); |
|
| 1261 | - |
|
| 1262 | - /// Restaurants ////post start 1// |
|
| 1263 | - $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1264 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1265 | - $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1266 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1267 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1268 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1269 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1270 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1271 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1272 | - $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1273 | - $image_array[] = "$dummy_image_url/restaurants11.jpg"; |
|
| 1274 | - |
|
| 1275 | - $post_info[] = array( |
|
| 1276 | - "listing_type" => $post_type, |
|
| 1277 | - "post_title" => 'Village Whiskey', |
|
| 1278 | - "post_desc" => ' |
|
| 1239 | + "post_images" => $image_array, |
|
| 1240 | + "post_category" => array($post_type.'category' => array('Hotels', 'Feature')), |
|
| 1241 | + "post_tags" => array(''), |
|
| 1242 | + "geodir_video" => '', |
|
| 1243 | + "geodir_timing" => 'Daily : 10 am to 11 pm', |
|
| 1244 | + "geodir_contact" => '(243) 222-12344', |
|
| 1245 | + "geodir_email" => '[email protected]', |
|
| 1246 | + "geodir_website" => 'http://www.chestnuthillhotel.com/', |
|
| 1247 | + "geodir_twitter" => 'http://twitter.com/chestnuthillhotel', |
|
| 1248 | + "geodir_facebook" => 'http://facebook.com/chestnuthillhotel', |
|
| 1249 | + "post_dummy" => '1' |
|
| 1250 | + ); |
|
| 1251 | + |
|
| 1252 | + ////post end/// |
|
| 1253 | + /// Hotels ////post start 10/// |
|
| 1254 | + |
|
| 1255 | + break; |
|
| 1256 | + case 21: |
|
| 1257 | + |
|
| 1258 | + |
|
| 1259 | + $image_array = array(); |
|
| 1260 | + $post_meta = array(); |
|
| 1261 | + |
|
| 1262 | + /// Restaurants ////post start 1// |
|
| 1263 | + $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1264 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1265 | + $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1266 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1267 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1268 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1269 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1270 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1271 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1272 | + $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1273 | + $image_array[] = "$dummy_image_url/restaurants11.jpg"; |
|
| 1274 | + |
|
| 1275 | + $post_info[] = array( |
|
| 1276 | + "listing_type" => $post_type, |
|
| 1277 | + "post_title" => 'Village Whiskey', |
|
| 1278 | + "post_desc" => ' |
|
| 1279 | 1279 | |
| 1280 | 1280 | |
| 1281 | 1281 | Located in a Rittenhouse Square space evoking the free-wheeling spirit of a speakeasy, Village Whiskey is prolific Chef Jose Garces’ intimate, 30-seat tribute to the time-honored liquor. |
@@ -1301,45 +1301,45 @@ discard block |
||
| 1301 | 1301 | |
| 1302 | 1302 | During the warmer months, diners can sit at large, wooden tables placed along Sansom Street for whiskey alfresco. |
| 1303 | 1303 | ', |
| 1304 | - "post_images" => $image_array, |
|
| 1305 | - "post_category" => array($post_type.'category' => array('Restaurants', 'Feature')), |
|
| 1306 | - "post_tags" => array('Sample Tag1'), |
|
| 1307 | - "geodir_video" => '', |
|
| 1308 | - "geodir_timing" => 'Daily : 10 am to 11 pm', |
|
| 1309 | - "geodir_contact" => '(243) 222-12344', |
|
| 1310 | - "geodir_email" => '[email protected]', |
|
| 1311 | - "geodir_website" => 'http://www.villagewhiskey.com/', |
|
| 1312 | - "geodir_twitter" => 'http://twitter.com/villagewhiskey', |
|
| 1313 | - "geodir_facebook" => 'http://facebook.com/villagewhiskey', |
|
| 1314 | - "post_dummy" => '1' |
|
| 1315 | - ); |
|
| 1316 | - |
|
| 1317 | - ////post end/// |
|
| 1318 | - /// Restaurants ////post start 1/// |
|
| 1319 | - break; |
|
| 1320 | - case 22: |
|
| 1321 | - |
|
| 1322 | - |
|
| 1323 | - $image_array = array(); |
|
| 1324 | - $post_meta = array(); |
|
| 1325 | - |
|
| 1326 | - /// Restaurants ////post start 2// |
|
| 1327 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1328 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1329 | - $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1330 | - $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1331 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1332 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1333 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1334 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1335 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1336 | - $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1337 | - $image_array[] = "$dummy_image_url/restaurants11.jpg"; |
|
| 1338 | - |
|
| 1339 | - $post_info[] = array( |
|
| 1340 | - "listing_type" => $post_type, |
|
| 1341 | - "post_title" => 'Zavino Pizzeria and Wine Bar', |
|
| 1342 | - "post_desc" => ' |
|
| 1304 | + "post_images" => $image_array, |
|
| 1305 | + "post_category" => array($post_type.'category' => array('Restaurants', 'Feature')), |
|
| 1306 | + "post_tags" => array('Sample Tag1'), |
|
| 1307 | + "geodir_video" => '', |
|
| 1308 | + "geodir_timing" => 'Daily : 10 am to 11 pm', |
|
| 1309 | + "geodir_contact" => '(243) 222-12344', |
|
| 1310 | + "geodir_email" => '[email protected]', |
|
| 1311 | + "geodir_website" => 'http://www.villagewhiskey.com/', |
|
| 1312 | + "geodir_twitter" => 'http://twitter.com/villagewhiskey', |
|
| 1313 | + "geodir_facebook" => 'http://facebook.com/villagewhiskey', |
|
| 1314 | + "post_dummy" => '1' |
|
| 1315 | + ); |
|
| 1316 | + |
|
| 1317 | + ////post end/// |
|
| 1318 | + /// Restaurants ////post start 1/// |
|
| 1319 | + break; |
|
| 1320 | + case 22: |
|
| 1321 | + |
|
| 1322 | + |
|
| 1323 | + $image_array = array(); |
|
| 1324 | + $post_meta = array(); |
|
| 1325 | + |
|
| 1326 | + /// Restaurants ////post start 2// |
|
| 1327 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1328 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1329 | + $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1330 | + $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1331 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1332 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1333 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1334 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1335 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1336 | + $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1337 | + $image_array[] = "$dummy_image_url/restaurants11.jpg"; |
|
| 1338 | + |
|
| 1339 | + $post_info[] = array( |
|
| 1340 | + "listing_type" => $post_type, |
|
| 1341 | + "post_title" => 'Zavino Pizzeria and Wine Bar', |
|
| 1342 | + "post_desc" => ' |
|
| 1343 | 1343 | Zavino is a new pizzeria and wine bar located at the epicenter of the city´s trendy Midtown Village neighborhood. The restaurant features a seasonal menu, classic cocktails, an approachable selection of wine and beer and some of the best late night menu offerings in the area. |
| 1344 | 1344 | |
| 1345 | 1345 | The restaurant´s interior looks great - it has a simple, rustic feel with an original brick wall, large picture windows, a long bar and a large outdoor cafe coming this spring. |
@@ -1358,46 +1358,46 @@ discard block |
||
| 1358 | 1358 | |
| 1359 | 1359 | Pizzas vary in price from $8 to $12. |
| 1360 | 1360 | ', |
| 1361 | - "post_images" => $image_array, |
|
| 1362 | - "post_category" => array($post_type.'category' => array('Restaurants')), |
|
| 1363 | - "post_tags" => array('Sample Tag1'), |
|
| 1364 | - "geodir_video" => '', |
|
| 1365 | - "geodir_timing" => 'Daily : 10 am to 11 pm', |
|
| 1366 | - "geodir_contact" => '(243) 222-12344', |
|
| 1367 | - "geodir_email" => '[email protected]', |
|
| 1368 | - "geodir_website" => 'http://www.villagewhiskey.com/', |
|
| 1369 | - "geodir_twitter" => 'http://twitter.com/villagewhiskey', |
|
| 1370 | - "geodir_facebook" => 'http://facebook.com/villagewhiskey', |
|
| 1371 | - "post_dummy" => '1' |
|
| 1372 | - ); |
|
| 1373 | - |
|
| 1374 | - ////post end/// |
|
| 1375 | - /// Restaurants ////post start 2/// |
|
| 1376 | - |
|
| 1377 | - break; |
|
| 1378 | - case 23: |
|
| 1379 | - |
|
| 1380 | - |
|
| 1381 | - $image_array = array(); |
|
| 1382 | - $post_meta = array(); |
|
| 1383 | - |
|
| 1384 | - /// Restaurants ////post start 3// |
|
| 1385 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1386 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1387 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1388 | - $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1389 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1390 | - $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1391 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1392 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1393 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1394 | - $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1395 | - $image_array[] = "$dummy_image_url/restaurants11.jpg"; |
|
| 1396 | - |
|
| 1397 | - $post_info[] = array( |
|
| 1398 | - "listing_type" => $post_type, |
|
| 1399 | - "post_title" => 'Parc', |
|
| 1400 | - "post_desc" => ' |
|
| 1361 | + "post_images" => $image_array, |
|
| 1362 | + "post_category" => array($post_type.'category' => array('Restaurants')), |
|
| 1363 | + "post_tags" => array('Sample Tag1'), |
|
| 1364 | + "geodir_video" => '', |
|
| 1365 | + "geodir_timing" => 'Daily : 10 am to 11 pm', |
|
| 1366 | + "geodir_contact" => '(243) 222-12344', |
|
| 1367 | + "geodir_email" => '[email protected]', |
|
| 1368 | + "geodir_website" => 'http://www.villagewhiskey.com/', |
|
| 1369 | + "geodir_twitter" => 'http://twitter.com/villagewhiskey', |
|
| 1370 | + "geodir_facebook" => 'http://facebook.com/villagewhiskey', |
|
| 1371 | + "post_dummy" => '1' |
|
| 1372 | + ); |
|
| 1373 | + |
|
| 1374 | + ////post end/// |
|
| 1375 | + /// Restaurants ////post start 2/// |
|
| 1376 | + |
|
| 1377 | + break; |
|
| 1378 | + case 23: |
|
| 1379 | + |
|
| 1380 | + |
|
| 1381 | + $image_array = array(); |
|
| 1382 | + $post_meta = array(); |
|
| 1383 | + |
|
| 1384 | + /// Restaurants ////post start 3// |
|
| 1385 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1386 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1387 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1388 | + $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1389 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1390 | + $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1391 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1392 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1393 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1394 | + $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1395 | + $image_array[] = "$dummy_image_url/restaurants11.jpg"; |
|
| 1396 | + |
|
| 1397 | + $post_info[] = array( |
|
| 1398 | + "listing_type" => $post_type, |
|
| 1399 | + "post_title" => 'Parc', |
|
| 1400 | + "post_desc" => ' |
|
| 1401 | 1401 | If you love Paris in the springtime, Parc is a veritable grand cru. |
| 1402 | 1402 | |
| 1403 | 1403 | With Parc, famed restaurateur Stephen Starr brings a certain je ne sais quoi to Rittenhouse Square. Parc offers an authentic French bistro experience, fully equipped with a chic Parisian ambiance and gorgeous sidewalk seating overlooking the Square. |
@@ -1425,45 +1425,45 @@ discard block |
||
| 1425 | 1425 | |
| 1426 | 1426 | To put it simply, Parc is nothing short of an authentic Parisian dining experience - right here in the heart of Rittenhouse Square. |
| 1427 | 1427 | ', |
| 1428 | - "post_images" => $image_array, |
|
| 1429 | - "post_category" => array($post_type.'category' => array('Restaurants')), |
|
| 1430 | - "post_tags" => array('Sample Tag1'), |
|
| 1431 | - "geodir_video" => '', |
|
| 1432 | - "geodir_timing" => 'Daily : 10 am to 12 pm', |
|
| 1433 | - "geodir_contact" => '(143) 222-12344', |
|
| 1434 | - "geodir_email" => '[email protected]', |
|
| 1435 | - "geodir_website" => 'http://www.parc-restaurant.com/', |
|
| 1436 | - "geodir_twitter" => 'http://twitter.com/parc-restaurant', |
|
| 1437 | - "geodir_facebook" => 'http://facebook.com/parc-restaurant', |
|
| 1438 | - "post_dummy" => '1' |
|
| 1439 | - ); |
|
| 1440 | - |
|
| 1441 | - ////post end/// |
|
| 1442 | - /// Restaurants ////post start 3/// |
|
| 1443 | - break; |
|
| 1444 | - case 24: |
|
| 1445 | - |
|
| 1446 | - |
|
| 1447 | - $image_array = array(); |
|
| 1448 | - $post_meta = array(); |
|
| 1449 | - |
|
| 1450 | - /// Restaurants ////post start 4// |
|
| 1451 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1452 | - $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1453 | - $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1454 | - $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1455 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1456 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1457 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1458 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1459 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1460 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1461 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1462 | - |
|
| 1463 | - $post_info[] = array( |
|
| 1464 | - "listing_type" => $post_type, |
|
| 1465 | - "post_title" => 'Percy Street Barbecue', |
|
| 1466 | - "post_desc" => ' |
|
| 1428 | + "post_images" => $image_array, |
|
| 1429 | + "post_category" => array($post_type.'category' => array('Restaurants')), |
|
| 1430 | + "post_tags" => array('Sample Tag1'), |
|
| 1431 | + "geodir_video" => '', |
|
| 1432 | + "geodir_timing" => 'Daily : 10 am to 12 pm', |
|
| 1433 | + "geodir_contact" => '(143) 222-12344', |
|
| 1434 | + "geodir_email" => '[email protected]', |
|
| 1435 | + "geodir_website" => 'http://www.parc-restaurant.com/', |
|
| 1436 | + "geodir_twitter" => 'http://twitter.com/parc-restaurant', |
|
| 1437 | + "geodir_facebook" => 'http://facebook.com/parc-restaurant', |
|
| 1438 | + "post_dummy" => '1' |
|
| 1439 | + ); |
|
| 1440 | + |
|
| 1441 | + ////post end/// |
|
| 1442 | + /// Restaurants ////post start 3/// |
|
| 1443 | + break; |
|
| 1444 | + case 24: |
|
| 1445 | + |
|
| 1446 | + |
|
| 1447 | + $image_array = array(); |
|
| 1448 | + $post_meta = array(); |
|
| 1449 | + |
|
| 1450 | + /// Restaurants ////post start 4// |
|
| 1451 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1452 | + $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1453 | + $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1454 | + $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1455 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1456 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1457 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1458 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1459 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1460 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1461 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1462 | + |
|
| 1463 | + $post_info[] = array( |
|
| 1464 | + "listing_type" => $post_type, |
|
| 1465 | + "post_title" => 'Percy Street Barbecue', |
|
| 1466 | + "post_desc" => ' |
|
| 1467 | 1467 | Percy Street Barbecue sees the South Street debut of restaurateurs Steven Cook and Michael Solomonov (Zahav, Xochitl). |
| 1468 | 1468 | |
| 1469 | 1469 | Serving a straightforward selection of slowly smoked meats and homey side dishes alongside craft beers and tasty cocktails, Percy Street is an ideal venue for Chef Erin OShea much-lauded Southern cooking, and is on its way to become the city top spot for barbecue. |
@@ -1489,46 +1489,46 @@ discard block |
||
| 1489 | 1489 | |
| 1490 | 1490 | Seating in the form of repurposed church pews, and bare light bulbs overhead in the dining room lend to the restaurant Texas-esque aesthetic. |
| 1491 | 1491 | ', |
| 1492 | - "post_images" => $image_array, |
|
| 1493 | - "post_category" => array($post_type.'category' => array('Restaurants', 'Feature')), |
|
| 1494 | - "post_tags" => array('Sample Tag1'), |
|
| 1495 | - "geodir_video" => '', |
|
| 1496 | - "geodir_timing" => 'Percy Street is closed on Mondays. The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.', |
|
| 1497 | - "geodir_contact" => '(143) 222-12344', |
|
| 1498 | - "geodir_email" => '[email protected]', |
|
| 1499 | - "geodir_website" => 'http://www.percystreet.com/', |
|
| 1500 | - "geodir_twitter" => 'http://twitter.com/percystreet', |
|
| 1501 | - "geodir_facebook" => 'http://facebook.com/percystreet', |
|
| 1502 | - "post_dummy" => '1' |
|
| 1503 | - ); |
|
| 1504 | - |
|
| 1505 | - ////post end/// |
|
| 1506 | - /// Restaurants ////post start 4/// |
|
| 1507 | - |
|
| 1508 | - break; |
|
| 1509 | - case 25: |
|
| 1510 | - |
|
| 1511 | - |
|
| 1512 | - $image_array = array(); |
|
| 1513 | - $post_meta = array(); |
|
| 1514 | - |
|
| 1515 | - /// Restaurants ////post start 5// |
|
| 1516 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1517 | - $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1518 | - $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1519 | - $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1520 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1521 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1522 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1523 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1524 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1525 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1526 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1527 | - |
|
| 1528 | - $post_info[] = array( |
|
| 1529 | - "listing_type" => $post_type, |
|
| 1530 | - "post_title" => 'The Fountain Restaurant', |
|
| 1531 | - "post_desc" => ' |
|
| 1492 | + "post_images" => $image_array, |
|
| 1493 | + "post_category" => array($post_type.'category' => array('Restaurants', 'Feature')), |
|
| 1494 | + "post_tags" => array('Sample Tag1'), |
|
| 1495 | + "geodir_video" => '', |
|
| 1496 | + "geodir_timing" => 'Percy Street is closed on Mondays. The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.', |
|
| 1497 | + "geodir_contact" => '(143) 222-12344', |
|
| 1498 | + "geodir_email" => '[email protected]', |
|
| 1499 | + "geodir_website" => 'http://www.percystreet.com/', |
|
| 1500 | + "geodir_twitter" => 'http://twitter.com/percystreet', |
|
| 1501 | + "geodir_facebook" => 'http://facebook.com/percystreet', |
|
| 1502 | + "post_dummy" => '1' |
|
| 1503 | + ); |
|
| 1504 | + |
|
| 1505 | + ////post end/// |
|
| 1506 | + /// Restaurants ////post start 4/// |
|
| 1507 | + |
|
| 1508 | + break; |
|
| 1509 | + case 25: |
|
| 1510 | + |
|
| 1511 | + |
|
| 1512 | + $image_array = array(); |
|
| 1513 | + $post_meta = array(); |
|
| 1514 | + |
|
| 1515 | + /// Restaurants ////post start 5// |
|
| 1516 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1517 | + $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1518 | + $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1519 | + $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1520 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1521 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1522 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1523 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1524 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1525 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1526 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1527 | + |
|
| 1528 | + $post_info[] = array( |
|
| 1529 | + "listing_type" => $post_type, |
|
| 1530 | + "post_title" => 'The Fountain Restaurant', |
|
| 1531 | + "post_desc" => ' |
|
| 1532 | 1532 | The Fountain Restaurant in the Four Seasons Hotel Philadelphia has received seemingly every type of accolade there is, from top honors in Gourmet magazine to Forbes Travel Guide´s 2010 Five Star award to a perfect Five Diamond rating from AAA. It´s been a Philadelphia favorite for special occasion meals for decades. |
| 1533 | 1533 | |
| 1534 | 1534 | Additionally rated as the best restaurant in Philadelphia by Zagat´s, the Fountain Restaurant overlooks the majestic Swann Memorial Fountain sculpture by Alexander Stirling Calder in the center of Logan Square. You´ll also enjoy sweeping views of the grand Benjamin Franklin Parkway and its gorgeous Beaux Arts architecture. |
@@ -1538,45 +1538,45 @@ discard block |
||
| 1538 | 1538 | You can order a la carte or select the prix fix option to enjoy the “spontaneous tastes” menu which gives the chef control of a few courses. The menu changes regularly, but you can expect to see globaly influenced items like Pan-fried Veal Sweetbreads, Braised Dover Sole Roulade, Sautéed Venison Medallions and Roasted Australian Lamb Saddle. |
| 1539 | 1539 | |
| 1540 | 1540 | ', |
| 1541 | - "post_images" => $image_array, |
|
| 1542 | - "post_category" => array($post_type.'category' => array('Restaurants')), |
|
| 1543 | - "post_tags" => array('food'), |
|
| 1544 | - "geodir_video" => '', |
|
| 1545 | - "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.', |
|
| 1546 | - "geodir_contact" => '(103) 100-12344', |
|
| 1547 | - "geodir_email" => '[email protected]', |
|
| 1548 | - "geodir_website" => 'http://www.fourseasons.com/philadelphia/dining', |
|
| 1549 | - "geodir_twitter" => 'http://twitter.com/fourseasons', |
|
| 1550 | - "geodir_facebook" => 'http://facebook.com/fourseasons', |
|
| 1551 | - "post_dummy" => '1' |
|
| 1552 | - ); |
|
| 1553 | - |
|
| 1554 | - ////post end/// |
|
| 1555 | - /// Restaurants ////post start 5/// |
|
| 1556 | - break; |
|
| 1557 | - case 26: |
|
| 1558 | - |
|
| 1559 | - |
|
| 1560 | - $image_array = array(); |
|
| 1561 | - $post_meta = array(); |
|
| 1562 | - |
|
| 1563 | - /// Restaurants ////post start 6// |
|
| 1564 | - $image_array[] = "$dummy_image_url/restaurants11.jpg"; |
|
| 1565 | - $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1566 | - $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1567 | - $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1568 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1569 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1570 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1571 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1572 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1573 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1574 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1575 | - |
|
| 1576 | - $post_info[] = array( |
|
| 1577 | - "listing_type" => $post_type, |
|
| 1578 | - "post_title" => 'Lacroix at The Rittenhouse', |
|
| 1579 | - "post_desc" => ' |
|
| 1541 | + "post_images" => $image_array, |
|
| 1542 | + "post_category" => array($post_type.'category' => array('Restaurants')), |
|
| 1543 | + "post_tags" => array('food'), |
|
| 1544 | + "geodir_video" => '', |
|
| 1545 | + "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.', |
|
| 1546 | + "geodir_contact" => '(103) 100-12344', |
|
| 1547 | + "geodir_email" => '[email protected]', |
|
| 1548 | + "geodir_website" => 'http://www.fourseasons.com/philadelphia/dining', |
|
| 1549 | + "geodir_twitter" => 'http://twitter.com/fourseasons', |
|
| 1550 | + "geodir_facebook" => 'http://facebook.com/fourseasons', |
|
| 1551 | + "post_dummy" => '1' |
|
| 1552 | + ); |
|
| 1553 | + |
|
| 1554 | + ////post end/// |
|
| 1555 | + /// Restaurants ////post start 5/// |
|
| 1556 | + break; |
|
| 1557 | + case 26: |
|
| 1558 | + |
|
| 1559 | + |
|
| 1560 | + $image_array = array(); |
|
| 1561 | + $post_meta = array(); |
|
| 1562 | + |
|
| 1563 | + /// Restaurants ////post start 6// |
|
| 1564 | + $image_array[] = "$dummy_image_url/restaurants11.jpg"; |
|
| 1565 | + $image_array[] = "$dummy_image_url/restaurants10.jpg"; |
|
| 1566 | + $image_array[] = "$dummy_image_url/restaurants3.jpg"; |
|
| 1567 | + $image_array[] = "$dummy_image_url/restaurants1.jpg"; |
|
| 1568 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1569 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1570 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1571 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1572 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1573 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1574 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1575 | + |
|
| 1576 | + $post_info[] = array( |
|
| 1577 | + "listing_type" => $post_type, |
|
| 1578 | + "post_title" => 'Lacroix at The Rittenhouse', |
|
| 1579 | + "post_desc" => ' |
|
| 1580 | 1580 | A deluxe hotel like The Rittenhouse deserves a deluxe restaurant, a fitting description for Lacroix, named “Restaurant of the Year” in 2003 by Esquire magazine. |
| 1581 | 1581 | |
| 1582 | 1582 | Located on the second floor of the Rittenhouse Hotel, Lacroix features elegant décor and a broad view of Rittenhouse Square, which combine to make the ambiance at Lacroix as enjoyable as the meal itself. |
@@ -1587,46 +1587,46 @@ discard block |
||
| 1587 | 1587 | |
| 1588 | 1588 | Sunday Brunch at Lacroix - which features such delectable dishes as baby lamb chops with garlic crust and banyuls sauce, niman ranch smoked bacon, quail eggs with artichoke, golden beet and shiitakes, and french baguette toast with apple, raspberry and rosemary jam - is also highly recommended. |
| 1589 | 1589 | ', |
| 1590 | - "post_images" => $image_array, |
|
| 1591 | - "post_category" => array($post_type.'category' => array('Restaurants')), |
|
| 1592 | - "post_tags" => array('food'), |
|
| 1593 | - "geodir_video" => '', |
|
| 1594 | - "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1595 | - "geodir_contact" => '(113) 121-12344', |
|
| 1596 | - "geodir_email" => '[email protected]', |
|
| 1597 | - "geodir_website" => 'http://www.rittenhousehotel.com/lacroix.cfm', |
|
| 1598 | - "geodir_twitter" => 'http://twitter.com/rittenhousehotel', |
|
| 1599 | - "geodir_facebook" => 'http://facebook.com/rittenhousehotel', |
|
| 1600 | - "post_dummy" => '1' |
|
| 1601 | - ); |
|
| 1602 | - |
|
| 1603 | - ////post end/// |
|
| 1604 | - /// Restaurants ////post start 6/// |
|
| 1605 | - |
|
| 1606 | - break; |
|
| 1607 | - case 27: |
|
| 1608 | - |
|
| 1609 | - |
|
| 1610 | - $image_array = array(); |
|
| 1611 | - $post_meta = array(); |
|
| 1612 | - |
|
| 1613 | - /// Restaurants ////post start 7// |
|
| 1614 | - $image_array[] = "$dummy_image_url/restaurants12.jpg"; |
|
| 1615 | - $image_array[] = "$dummy_image_url/restaurants13.jpg"; |
|
| 1616 | - $image_array[] = "$dummy_image_url/restaurants14.jpg"; |
|
| 1617 | - $image_array[] = "$dummy_image_url/restaurants15.jpg"; |
|
| 1618 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1619 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1620 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1621 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1622 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1623 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1624 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1625 | - |
|
| 1626 | - $post_info[] = array( |
|
| 1627 | - "listing_type" => $post_type, |
|
| 1628 | - "post_title" => 'Lacroix at The Rittenhouse', |
|
| 1629 | - "post_desc" => ' |
|
| 1590 | + "post_images" => $image_array, |
|
| 1591 | + "post_category" => array($post_type.'category' => array('Restaurants')), |
|
| 1592 | + "post_tags" => array('food'), |
|
| 1593 | + "geodir_video" => '', |
|
| 1594 | + "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1595 | + "geodir_contact" => '(113) 121-12344', |
|
| 1596 | + "geodir_email" => '[email protected]', |
|
| 1597 | + "geodir_website" => 'http://www.rittenhousehotel.com/lacroix.cfm', |
|
| 1598 | + "geodir_twitter" => 'http://twitter.com/rittenhousehotel', |
|
| 1599 | + "geodir_facebook" => 'http://facebook.com/rittenhousehotel', |
|
| 1600 | + "post_dummy" => '1' |
|
| 1601 | + ); |
|
| 1602 | + |
|
| 1603 | + ////post end/// |
|
| 1604 | + /// Restaurants ////post start 6/// |
|
| 1605 | + |
|
| 1606 | + break; |
|
| 1607 | + case 27: |
|
| 1608 | + |
|
| 1609 | + |
|
| 1610 | + $image_array = array(); |
|
| 1611 | + $post_meta = array(); |
|
| 1612 | + |
|
| 1613 | + /// Restaurants ////post start 7// |
|
| 1614 | + $image_array[] = "$dummy_image_url/restaurants12.jpg"; |
|
| 1615 | + $image_array[] = "$dummy_image_url/restaurants13.jpg"; |
|
| 1616 | + $image_array[] = "$dummy_image_url/restaurants14.jpg"; |
|
| 1617 | + $image_array[] = "$dummy_image_url/restaurants15.jpg"; |
|
| 1618 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1619 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1620 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1621 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1622 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1623 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1624 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1625 | + |
|
| 1626 | + $post_info[] = array( |
|
| 1627 | + "listing_type" => $post_type, |
|
| 1628 | + "post_title" => 'Lacroix at The Rittenhouse', |
|
| 1629 | + "post_desc" => ' |
|
| 1630 | 1630 | A deluxe hotel like The Rittenhouse deserves a deluxe restaurant, a fitting description for Lacroix, named “Restaurant of the Year” in 2003 by Esquire magazine. |
| 1631 | 1631 | |
| 1632 | 1632 | Located on the second floor of the Rittenhouse Hotel, Lacroix features elegant décor and a broad view of Rittenhouse Square, which combine to make the ambiance at Lacroix as enjoyable as the meal itself. |
@@ -1637,45 +1637,45 @@ discard block |
||
| 1637 | 1637 | |
| 1638 | 1638 | Sunday Brunch at Lacroix - which features such delectable dishes as baby lamb chops with garlic crust and banyuls sauce, niman ranch smoked bacon, quail eggs with artichoke, golden beet and shiitakes, and french baguette toast with apple, raspberry and rosemary jam - is also highly recommended. |
| 1639 | 1639 | ', |
| 1640 | - "post_images" => $image_array, |
|
| 1641 | - "post_category" => array($post_type.'category' => array('Restaurants', 'Food Nightlife')), |
|
| 1642 | - "post_tags" => array('food'), |
|
| 1643 | - "geodir_video" => '', |
|
| 1644 | - "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1645 | - "geodir_contact" => '(113) 121-12344', |
|
| 1646 | - "geodir_email" => '[email protected]', |
|
| 1647 | - "geodir_website" => 'http://www.zamarestaurant.com/', |
|
| 1648 | - "geodir_twitter" => 'http://twitter.com/zamarestaurant', |
|
| 1649 | - "geodir_facebook" => 'http://facebook.com/zamarestaurant', |
|
| 1650 | - "post_dummy" => '1' |
|
| 1651 | - ); |
|
| 1652 | - |
|
| 1653 | - ////post end/// |
|
| 1654 | - /// Restaurants ////post start 7/// |
|
| 1655 | - |
|
| 1656 | - break; |
|
| 1657 | - case 28: |
|
| 1658 | - |
|
| 1659 | - $image_array = array(); |
|
| 1660 | - $post_meta = array(); |
|
| 1661 | - |
|
| 1662 | - /// Restaurants ////post start 8// |
|
| 1663 | - $image_array[] = "$dummy_image_url/restaurants16.jpg"; |
|
| 1664 | - $image_array[] = "$dummy_image_url/restaurants17.jpg"; |
|
| 1665 | - $image_array[] = "$dummy_image_url/restaurants18.jpg"; |
|
| 1666 | - $image_array[] = "$dummy_image_url/restaurants19.jpg"; |
|
| 1667 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1668 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1669 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1670 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1671 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1672 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1673 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1674 | - |
|
| 1675 | - $post_info[] = array( |
|
| 1676 | - "listing_type" => $post_type, |
|
| 1677 | - "post_title" => 'Sampan', |
|
| 1678 | - "post_desc" => ' |
|
| 1640 | + "post_images" => $image_array, |
|
| 1641 | + "post_category" => array($post_type.'category' => array('Restaurants', 'Food Nightlife')), |
|
| 1642 | + "post_tags" => array('food'), |
|
| 1643 | + "geodir_video" => '', |
|
| 1644 | + "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1645 | + "geodir_contact" => '(113) 121-12344', |
|
| 1646 | + "geodir_email" => '[email protected]', |
|
| 1647 | + "geodir_website" => 'http://www.zamarestaurant.com/', |
|
| 1648 | + "geodir_twitter" => 'http://twitter.com/zamarestaurant', |
|
| 1649 | + "geodir_facebook" => 'http://facebook.com/zamarestaurant', |
|
| 1650 | + "post_dummy" => '1' |
|
| 1651 | + ); |
|
| 1652 | + |
|
| 1653 | + ////post end/// |
|
| 1654 | + /// Restaurants ////post start 7/// |
|
| 1655 | + |
|
| 1656 | + break; |
|
| 1657 | + case 28: |
|
| 1658 | + |
|
| 1659 | + $image_array = array(); |
|
| 1660 | + $post_meta = array(); |
|
| 1661 | + |
|
| 1662 | + /// Restaurants ////post start 8// |
|
| 1663 | + $image_array[] = "$dummy_image_url/restaurants16.jpg"; |
|
| 1664 | + $image_array[] = "$dummy_image_url/restaurants17.jpg"; |
|
| 1665 | + $image_array[] = "$dummy_image_url/restaurants18.jpg"; |
|
| 1666 | + $image_array[] = "$dummy_image_url/restaurants19.jpg"; |
|
| 1667 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1668 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1669 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1670 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1671 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1672 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1673 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1674 | + |
|
| 1675 | + $post_info[] = array( |
|
| 1676 | + "listing_type" => $post_type, |
|
| 1677 | + "post_title" => 'Sampan', |
|
| 1678 | + "post_desc" => ' |
|
| 1679 | 1679 | Chef and charismatic television star Michael Schulson returns to Philadelphia with the opening of Sampan, a modern Asian restaurant where he serves the acclaimed cuisine that has made him one of the country´s highly sought-after culinary talents. |
| 1680 | 1680 | |
| 1681 | 1681 | Schulson returns to Philadelphia after having opened Buddakan in New York City for Stephen Starr and Izakaya at the Borgata in Atlantic City and then having gone on to star in Style network´s popular series Pantry Raid and TLC Ultimate Cake Off. |
@@ -1694,45 +1694,45 @@ discard block |
||
| 1694 | 1694 | |
| 1695 | 1695 | Prices range from $5 to $19. |
| 1696 | 1696 | ', |
| 1697 | - "post_images" => $image_array, |
|
| 1698 | - "post_category" => array($post_type.'category' => array('Restaurants', 'Food Nightlife')), |
|
| 1699 | - "post_tags" => array('restaurant'), |
|
| 1700 | - "geodir_video" => '', |
|
| 1701 | - "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1702 | - "geodir_contact" => '(000) 111-2222', |
|
| 1703 | - "geodir_email" => '[email protected]', |
|
| 1704 | - "geodir_website" => 'http://www.sampanphilly.com/', |
|
| 1705 | - "geodir_twitter" => 'http://twitter.com/sampanphilly', |
|
| 1706 | - "geodir_facebook" => 'http://facebook.com/sampanphilly', |
|
| 1707 | - "post_dummy" => '1' |
|
| 1708 | - ); |
|
| 1709 | - |
|
| 1710 | - ////post end/// |
|
| 1711 | - /// Restaurants ////post start 8/// |
|
| 1712 | - |
|
| 1713 | - break; |
|
| 1714 | - case 29: |
|
| 1715 | - |
|
| 1716 | - $image_array = array(); |
|
| 1717 | - $post_meta = array(); |
|
| 1718 | - |
|
| 1719 | - /// Restaurants ////post start 9// |
|
| 1720 | - $image_array[] = "$dummy_image_url/restaurants17.jpg"; |
|
| 1721 | - $image_array[] = "$dummy_image_url/restaurants16.jpg"; |
|
| 1722 | - $image_array[] = "$dummy_image_url/restaurants18.jpg"; |
|
| 1723 | - $image_array[] = "$dummy_image_url/restaurants19.jpg"; |
|
| 1724 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1725 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1726 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1727 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1728 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1729 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1730 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1731 | - |
|
| 1732 | - $post_info[] = array( |
|
| 1733 | - "listing_type" => $post_type, |
|
| 1734 | - "post_title" => 'Morimoto', |
|
| 1735 | - "post_desc" => ' |
|
| 1697 | + "post_images" => $image_array, |
|
| 1698 | + "post_category" => array($post_type.'category' => array('Restaurants', 'Food Nightlife')), |
|
| 1699 | + "post_tags" => array('restaurant'), |
|
| 1700 | + "geodir_video" => '', |
|
| 1701 | + "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1702 | + "geodir_contact" => '(000) 111-2222', |
|
| 1703 | + "geodir_email" => '[email protected]', |
|
| 1704 | + "geodir_website" => 'http://www.sampanphilly.com/', |
|
| 1705 | + "geodir_twitter" => 'http://twitter.com/sampanphilly', |
|
| 1706 | + "geodir_facebook" => 'http://facebook.com/sampanphilly', |
|
| 1707 | + "post_dummy" => '1' |
|
| 1708 | + ); |
|
| 1709 | + |
|
| 1710 | + ////post end/// |
|
| 1711 | + /// Restaurants ////post start 8/// |
|
| 1712 | + |
|
| 1713 | + break; |
|
| 1714 | + case 29: |
|
| 1715 | + |
|
| 1716 | + $image_array = array(); |
|
| 1717 | + $post_meta = array(); |
|
| 1718 | + |
|
| 1719 | + /// Restaurants ////post start 9// |
|
| 1720 | + $image_array[] = "$dummy_image_url/restaurants17.jpg"; |
|
| 1721 | + $image_array[] = "$dummy_image_url/restaurants16.jpg"; |
|
| 1722 | + $image_array[] = "$dummy_image_url/restaurants18.jpg"; |
|
| 1723 | + $image_array[] = "$dummy_image_url/restaurants19.jpg"; |
|
| 1724 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1725 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1726 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1727 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1728 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1729 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1730 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1731 | + |
|
| 1732 | + $post_info[] = array( |
|
| 1733 | + "listing_type" => $post_type, |
|
| 1734 | + "post_title" => 'Morimoto', |
|
| 1735 | + "post_desc" => ' |
|
| 1736 | 1736 | Stephen Starr creative Japanese restaurant has garnered all kinds of national and international attention since opening a few years back. Located a block from Independence Hall on Chestnut Street, Morimoto has an interior - awash in glass and colors - that is both striking and serene in its design. |
| 1737 | 1737 | |
| 1738 | 1738 | The restaurant´s namesake and head chef, Morimoto (of Food Network´s Iron Chef fame), has created a menu offering the very best in contemporary Japanese cusine. While regulars flock here for the exquisitely prepared sushi, Morimoto offers diners a broad spectrum of flavors that delve beyond nigiri and sashimi. |
@@ -1745,45 +1745,45 @@ discard block |
||
| 1745 | 1745 | |
| 1746 | 1746 | The mezzanine level lounge is a great spot to have a pre-meal cocktail while waiting for your table. You can enjoy a sake or try a “Sakura” - a cosmo made with Sake - in the sleek space that overlooks the brilliant restaurant below. |
| 1747 | 1747 | ', |
| 1748 | - "post_images" => $image_array, |
|
| 1749 | - "post_category" => array($post_type.'category' => array('Restaurants', 'Food Nightlife', 'Feature')), |
|
| 1750 | - "post_tags" => array('America'), |
|
| 1751 | - "geodir_video" => '', |
|
| 1752 | - "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1753 | - "geodir_contact" => '(000) 111-2222', |
|
| 1754 | - "geodir_email" => '[email protected]', |
|
| 1755 | - "geodir_website" => 'http://www.morimotorestaurant.com/', |
|
| 1756 | - "geodir_twitter" => 'http://twitter.com/morimotorestaurant', |
|
| 1757 | - "geodir_facebook" => 'http://facebook.com/morimotorestaurant', |
|
| 1758 | - "post_dummy" => '1' |
|
| 1759 | - ); |
|
| 1760 | - |
|
| 1761 | - ////post end/// |
|
| 1762 | - /// Restaurants ////post start 9/// |
|
| 1763 | - break; |
|
| 1764 | - case 30: |
|
| 1765 | - |
|
| 1766 | - |
|
| 1767 | - $image_array = array(); |
|
| 1768 | - $post_meta = array(); |
|
| 1769 | - |
|
| 1770 | - /// Restaurants ////post start 10// |
|
| 1771 | - $image_array[] = "$dummy_image_url/restaurants19.jpg"; |
|
| 1772 | - $image_array[] = "$dummy_image_url/restaurants17.jpg"; |
|
| 1773 | - $image_array[] = "$dummy_image_url/restaurants18.jpg"; |
|
| 1774 | - $image_array[] = "$dummy_image_url/restaurants16.jpg"; |
|
| 1775 | - $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1776 | - $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1777 | - $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1778 | - $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1779 | - $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1780 | - $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1781 | - $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1782 | - |
|
| 1783 | - $post_info[] = array( |
|
| 1784 | - "listing_type" => $post_type, |
|
| 1785 | - "post_title" => 'Buddakan', |
|
| 1786 | - "post_desc" => ' |
|
| 1748 | + "post_images" => $image_array, |
|
| 1749 | + "post_category" => array($post_type.'category' => array('Restaurants', 'Food Nightlife', 'Feature')), |
|
| 1750 | + "post_tags" => array('America'), |
|
| 1751 | + "geodir_video" => '', |
|
| 1752 | + "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1753 | + "geodir_contact" => '(000) 111-2222', |
|
| 1754 | + "geodir_email" => '[email protected]', |
|
| 1755 | + "geodir_website" => 'http://www.morimotorestaurant.com/', |
|
| 1756 | + "geodir_twitter" => 'http://twitter.com/morimotorestaurant', |
|
| 1757 | + "geodir_facebook" => 'http://facebook.com/morimotorestaurant', |
|
| 1758 | + "post_dummy" => '1' |
|
| 1759 | + ); |
|
| 1760 | + |
|
| 1761 | + ////post end/// |
|
| 1762 | + /// Restaurants ////post start 9/// |
|
| 1763 | + break; |
|
| 1764 | + case 30: |
|
| 1765 | + |
|
| 1766 | + |
|
| 1767 | + $image_array = array(); |
|
| 1768 | + $post_meta = array(); |
|
| 1769 | + |
|
| 1770 | + /// Restaurants ////post start 10// |
|
| 1771 | + $image_array[] = "$dummy_image_url/restaurants19.jpg"; |
|
| 1772 | + $image_array[] = "$dummy_image_url/restaurants17.jpg"; |
|
| 1773 | + $image_array[] = "$dummy_image_url/restaurants18.jpg"; |
|
| 1774 | + $image_array[] = "$dummy_image_url/restaurants16.jpg"; |
|
| 1775 | + $image_array[] = "$dummy_image_url/restaurants5.jpg"; |
|
| 1776 | + $image_array[] = "$dummy_image_url/restaurants6.jpg"; |
|
| 1777 | + $image_array[] = "$dummy_image_url/restaurants7.jpg"; |
|
| 1778 | + $image_array[] = "$dummy_image_url/restaurants8.jpg"; |
|
| 1779 | + $image_array[] = "$dummy_image_url/restaurants9.jpg"; |
|
| 1780 | + $image_array[] = "$dummy_image_url/restaurants2.jpg"; |
|
| 1781 | + $image_array[] = "$dummy_image_url/restaurants4.jpg"; |
|
| 1782 | + |
|
| 1783 | + $post_info[] = array( |
|
| 1784 | + "listing_type" => $post_type, |
|
| 1785 | + "post_title" => 'Buddakan', |
|
| 1786 | + "post_desc" => ' |
|
| 1787 | 1787 | <h3>The Experience </h3> |
| 1788 | 1788 | |
| 1789 | 1789 | A towering gilded statue of the Buddha generates elegant calm in this 175-seat, Pan Asian restaurant with sleek, modern decor. Immensely popular, Buddakan is a restaurant that is great for both large parties and intimate dinners. |
@@ -1794,85 +1794,85 @@ discard block |
||
| 1794 | 1794 | |
| 1795 | 1795 | Be sure to make your reservation before coming to town as Buddakan fills up quickly especially on weekends. Better yet, make your reservation right now . |
| 1796 | 1796 | ', |
| 1797 | - "post_images" => $image_array, |
|
| 1798 | - "post_category" => array($post_type.'category' => array('Restaurants', 'Food Nightlife')), |
|
| 1799 | - "post_tags" => array('America'), |
|
| 1800 | - "geodir_video" => '', |
|
| 1801 | - "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1802 | - "geodir_contact" => '(000) 111-2222', |
|
| 1803 | - "geodir_email" => '[email protected]', |
|
| 1804 | - "geodir_website" => 'http://www.buddakan.com/', |
|
| 1805 | - "geodir_twitter" => 'http://twitter.com/buddakan', |
|
| 1806 | - "geodir_facebook" => 'http://facebook.com/buddakan', |
|
| 1807 | - "post_dummy" => '1' |
|
| 1808 | - ); |
|
| 1809 | - break; |
|
| 1810 | - |
|
| 1811 | - ////post end/// |
|
| 1812 | - /// Restaurants ////post start 10/// |
|
| 1797 | + "post_images" => $image_array, |
|
| 1798 | + "post_category" => array($post_type.'category' => array('Restaurants', 'Food Nightlife')), |
|
| 1799 | + "post_tags" => array('America'), |
|
| 1800 | + "geodir_video" => '', |
|
| 1801 | + "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.', |
|
| 1802 | + "geodir_contact" => '(000) 111-2222', |
|
| 1803 | + "geodir_email" => '[email protected]', |
|
| 1804 | + "geodir_website" => 'http://www.buddakan.com/', |
|
| 1805 | + "geodir_twitter" => 'http://twitter.com/buddakan', |
|
| 1806 | + "geodir_facebook" => 'http://facebook.com/buddakan', |
|
| 1807 | + "post_dummy" => '1' |
|
| 1808 | + ); |
|
| 1809 | + break; |
|
| 1810 | + |
|
| 1811 | + ////post end/// |
|
| 1812 | + /// Restaurants ////post start 10/// |
|
| 1813 | 1813 | } // end of switch |
| 1814 | 1814 | |
| 1815 | 1815 | foreach ($post_info as $post_info) { |
| 1816 | - $default_location = geodir_get_default_location(); |
|
| 1817 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 1818 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1819 | - else |
|
| 1820 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1816 | + $default_location = geodir_get_default_location(); |
|
| 1817 | + if ($city_bound_lat1 > $city_bound_lat2) |
|
| 1818 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1819 | + else |
|
| 1820 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1821 | 1821 | |
| 1822 | 1822 | |
| 1823 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 1824 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1825 | - else |
|
| 1826 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1823 | + if ($city_bound_lng1 > $city_bound_lng2) |
|
| 1824 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1825 | + else |
|
| 1826 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1827 | 1827 | |
| 1828 | - $load_map = get_option('geodir_load_map'); |
|
| 1828 | + $load_map = get_option('geodir_load_map'); |
|
| 1829 | 1829 | |
| 1830 | - if ($load_map == 'osm') { |
|
| 1831 | - $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 1832 | - } else { |
|
| 1833 | - $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 1834 | - } |
|
| 1835 | - |
|
| 1836 | - $postal_code = ''; |
|
| 1837 | - if (!empty($post_address)) { |
|
| 1838 | - if ($load_map == 'osm') { |
|
| 1839 | - $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 1840 | - $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 1841 | - } else { |
|
| 1842 | - $addresses = array(); |
|
| 1843 | - $addresses_default = array(); |
|
| 1830 | + if ($load_map == 'osm') { |
|
| 1831 | + $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 1832 | + } else { |
|
| 1833 | + $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 1834 | + } |
|
| 1835 | + |
|
| 1836 | + $postal_code = ''; |
|
| 1837 | + if (!empty($post_address)) { |
|
| 1838 | + if ($load_map == 'osm') { |
|
| 1839 | + $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 1840 | + $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 1841 | + } else { |
|
| 1842 | + $addresses = array(); |
|
| 1843 | + $addresses_default = array(); |
|
| 1844 | 1844 | |
| 1845 | - foreach ($post_address as $add_key => $add_value) { |
|
| 1846 | - if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 1847 | - $addresses_default[] = $add_value->long_name; |
|
| 1848 | - } |
|
| 1849 | - if ($add_value->types[0] == 'postal_code') { |
|
| 1850 | - $postal_code = $add_value->long_name; |
|
| 1851 | - } |
|
| 1852 | - if ($add_value->types[0] == 'street_number') { |
|
| 1853 | - $addresses[] = $add_value->long_name; |
|
| 1854 | - } |
|
| 1855 | - if ($add_value->types[0] == 'route') { |
|
| 1856 | - $addresses[] = $add_value->long_name; |
|
| 1857 | - } |
|
| 1858 | - if ($add_value->types[0] == 'neighborhood') { |
|
| 1859 | - $addresses[] = $add_value->long_name; |
|
| 1860 | - } |
|
| 1861 | - if ($add_value->types[0] == 'sublocality') { |
|
| 1862 | - $addresses[] = $add_value->long_name; |
|
| 1863 | - } |
|
| 1864 | - } |
|
| 1865 | - $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 1866 | - } |
|
| 1867 | - |
|
| 1868 | - $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1869 | - $post_info['post_city'] = $default_location->city; |
|
| 1870 | - $post_info['post_region'] = $default_location->region; |
|
| 1871 | - $post_info['post_country'] = $default_location->country; |
|
| 1872 | - $post_info['post_zip'] = $postal_code; |
|
| 1873 | - $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1874 | - $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1875 | - } |
|
| 1845 | + foreach ($post_address as $add_key => $add_value) { |
|
| 1846 | + if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 1847 | + $addresses_default[] = $add_value->long_name; |
|
| 1848 | + } |
|
| 1849 | + if ($add_value->types[0] == 'postal_code') { |
|
| 1850 | + $postal_code = $add_value->long_name; |
|
| 1851 | + } |
|
| 1852 | + if ($add_value->types[0] == 'street_number') { |
|
| 1853 | + $addresses[] = $add_value->long_name; |
|
| 1854 | + } |
|
| 1855 | + if ($add_value->types[0] == 'route') { |
|
| 1856 | + $addresses[] = $add_value->long_name; |
|
| 1857 | + } |
|
| 1858 | + if ($add_value->types[0] == 'neighborhood') { |
|
| 1859 | + $addresses[] = $add_value->long_name; |
|
| 1860 | + } |
|
| 1861 | + if ($add_value->types[0] == 'sublocality') { |
|
| 1862 | + $addresses[] = $add_value->long_name; |
|
| 1863 | + } |
|
| 1864 | + } |
|
| 1865 | + $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 1866 | + } |
|
| 1867 | + |
|
| 1868 | + $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1869 | + $post_info['post_city'] = $default_location->city; |
|
| 1870 | + $post_info['post_region'] = $default_location->region; |
|
| 1871 | + $post_info['post_country'] = $default_location->country; |
|
| 1872 | + $post_info['post_zip'] = $postal_code; |
|
| 1873 | + $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1874 | + $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1875 | + } |
|
| 1876 | 1876 | |
| 1877 | - geodir_save_listing($post_info, true); |
|
| 1877 | + geodir_save_listing($post_info, true); |
|
| 1878 | 1878 | } |
@@ -6,19 +6,19 @@ |
||
| 6 | 6 | * @package GeoDirectory |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
|
| 9 | +global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2, $wpdb, $current_user, $dummy_post_index; |
|
| 10 | 10 | $post_info = array(); |
| 11 | 11 | $image_array = array(); |
| 12 | 12 | $post_meta = array(); |
| 13 | 13 | |
| 14 | -if($dummy_post_index==1){ |
|
| 14 | +if ($dummy_post_index == 1) { |
|
| 15 | 15 | $category_array = array('Attractions', 'Hotels', 'Restaurants', 'Food Nightlife', 'Festival', 'Videos', 'Feature'); |
| 16 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 17 | - update_option($post_type.'_dummy_data_type','standard_places'); |
|
| 16 | + geodir_dummy_data_taxonomies($post_type, $category_array); |
|
| 17 | + update_option($post_type.'_dummy_data_type', 'standard_places'); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | if (geodir_dummy_folder_exists()) |
| 21 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 21 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy"; |
|
| 22 | 22 | else |
| 23 | 23 | $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
| 24 | 24 | |
@@ -17,10 +17,11 @@ discard block |
||
| 17 | 17 | update_option($post_type.'_dummy_data_type','standard_places'); |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -if (geodir_dummy_folder_exists()) |
|
| 20 | +if (geodir_dummy_folder_exists()) { |
|
| 21 | 21 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 22 | -else |
|
| 22 | +} else { |
|
| 23 | 23 | $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
| 24 | +} |
|
| 24 | 25 | |
| 25 | 26 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 26 | 27 | |
@@ -1814,16 +1815,18 @@ discard block |
||
| 1814 | 1815 | |
| 1815 | 1816 | foreach ($post_info as $post_info) { |
| 1816 | 1817 | $default_location = geodir_get_default_location(); |
| 1817 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 1818 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1819 | - else |
|
| 1820 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1818 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 1819 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1820 | + } else { |
|
| 1821 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1822 | + } |
|
| 1821 | 1823 | |
| 1822 | 1824 | |
| 1823 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 1824 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1825 | - else |
|
| 1826 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1825 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 1826 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1827 | + } else { |
|
| 1828 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1829 | + } |
|
| 1827 | 1830 | |
| 1828 | 1831 | $load_map = get_option('geodir_load_map'); |
| 1829 | 1832 | |
@@ -7,453 +7,453 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | function geodir_property_sale_custom_fields($post_type='gd_place',$package_id=''){ |
| 10 | - $fields = array(); |
|
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | - |
|
| 13 | - // price |
|
| 14 | - $fields[] = array('listing_type' => $post_type, |
|
| 15 | - 'field_type' => 'text', |
|
| 16 | - 'data_type' => 'FLOAT', |
|
| 17 | - 'decimal_point' => '2', |
|
| 18 | - 'admin_title' => __('Price', 'geodirectory'), |
|
| 19 | - 'site_title' => __('Price', 'geodirectory'), |
|
| 20 | - 'admin_desc' => __('Enter the price in $ (no currency symbol)', 'geodirectory'), |
|
| 21 | - 'htmlvar_name' => 'price', |
|
| 22 | - 'is_active' => true, |
|
| 23 | - 'for_admin_use' => false, |
|
| 24 | - 'default_value' => '', |
|
| 25 | - 'show_in' => '[detail],[listing]', |
|
| 26 | - 'is_required' => false, |
|
| 27 | - 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 28 | - 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | - 'required_msg' => '', |
|
| 30 | - 'field_icon' => 'fa fa-usd', |
|
| 31 | - 'css_class' => '', |
|
| 32 | - 'cat_sort' => true, |
|
| 33 | - 'cat_filter' => true, |
|
| 34 | - 'extra' => array( |
|
| 35 | - 'is_price' => 1, |
|
| 36 | - 'thousand_separator' => 'comma', |
|
| 37 | - 'decimal_separator' => 'period', |
|
| 38 | - 'decimal_display' => 'if', |
|
| 39 | - 'currency_symbol' => '$', |
|
| 40 | - 'currency_symbol_placement' => 'left' |
|
| 41 | - ) |
|
| 42 | - ); |
|
| 43 | - |
|
| 44 | - // property status |
|
| 45 | - $fields[] = array('listing_type' => $post_type, |
|
| 46 | - 'data_type' => 'VARCHAR', |
|
| 47 | - 'field_type' => 'select', |
|
| 48 | - 'field_type_key' => 'property_status', |
|
| 49 | - 'is_active' => 1, |
|
| 50 | - 'for_admin_use' => 0, |
|
| 51 | - 'is_default' => 0, |
|
| 52 | - 'admin_title' => __('Property Status', 'geodirectory'), |
|
| 53 | - 'admin_desc' => __('Enter the status of the property.', 'geodirectory'), |
|
| 54 | - 'site_title' => __('Property Status', 'geodirectory'), |
|
| 55 | - 'htmlvar_name' => 'property_status', |
|
| 56 | - 'default_value' => '', |
|
| 57 | - 'is_required' => '1', |
|
| 58 | - 'required_msg' => '', |
|
| 59 | - 'show_in' => '[detail],[listing]', |
|
| 60 | - 'show_on_pkg' => $package, |
|
| 61 | - 'option_values' => 'Select Status/,For Sale,Sold,Under Offer', |
|
| 62 | - 'field_icon' => 'fa fa-home', |
|
| 63 | - 'css_class' => '', |
|
| 64 | - 'cat_sort' => 1, |
|
| 65 | - 'cat_filter' => 1, |
|
| 66 | - ); |
|
| 67 | - |
|
| 68 | - // property furnishing |
|
| 69 | - $fields[] = array('listing_type' => $post_type, |
|
| 70 | - 'field_type' => 'select', |
|
| 71 | - 'data_type' => 'VARCHAR', |
|
| 72 | - 'admin_title' => __('Furnishing', 'geodirectory'), |
|
| 73 | - 'site_title' => __('Furnishing', 'geodirectory'), |
|
| 74 | - 'admin_desc' => __('Enter the furnishing status of the property.', 'geodirectory'), |
|
| 75 | - 'htmlvar_name' => 'property_furnishing', |
|
| 76 | - 'is_active' => true, |
|
| 77 | - 'for_admin_use' => false, |
|
| 78 | - 'default_value' => '', |
|
| 79 | - 'show_in' => '[detail],[listing]', |
|
| 80 | - 'is_required' => true, |
|
| 81 | - 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 82 | - 'validation_pattern' => '', |
|
| 83 | - 'validation_msg' => '', |
|
| 84 | - 'required_msg' => '', |
|
| 85 | - 'field_icon' => 'fa fa-th-large', |
|
| 86 | - 'css_class' => '', |
|
| 87 | - 'cat_sort' => true, |
|
| 88 | - 'cat_filter' => true |
|
| 89 | - ); |
|
| 90 | - |
|
| 91 | - // property type |
|
| 92 | - $fields[] = array('listing_type' => $post_type, |
|
| 93 | - 'field_type' => 'select', |
|
| 94 | - 'data_type' => 'VARCHAR', |
|
| 95 | - 'admin_title' => __('Property Type', 'geodirectory'), |
|
| 96 | - 'site_title' => __('Property Type', 'geodirectory'), |
|
| 97 | - 'admin_desc' => __('Select the property type.', 'geodirectory'), |
|
| 98 | - 'htmlvar_name' => 'property_type', |
|
| 99 | - 'is_active' => true, |
|
| 100 | - 'for_admin_use' => false, |
|
| 101 | - 'default_value' => '', |
|
| 102 | - 'show_in' => '[detail],[listing]', |
|
| 103 | - 'is_required' => true, |
|
| 104 | - 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 105 | - 'validation_pattern' => '', |
|
| 106 | - 'validation_msg' => '', |
|
| 107 | - 'required_msg' => '', |
|
| 108 | - 'field_icon' => 'fa fa-home', |
|
| 109 | - 'css_class' => '', |
|
| 110 | - 'cat_sort' => true, |
|
| 111 | - 'cat_filter' => true |
|
| 112 | - ); |
|
| 113 | - |
|
| 114 | - // property bedrooms |
|
| 115 | - $fields[] = array('listing_type' => $post_type, |
|
| 116 | - 'field_type' => 'select', |
|
| 117 | - 'data_type' => 'VARCHAR', |
|
| 118 | - 'admin_title' => __('Property Bedrooms', 'geodirectory'), |
|
| 119 | - 'site_title' => __('Bedrooms', 'geodirectory'), |
|
| 120 | - 'admin_desc' => __('Select the number of bedrooms', 'geodirectory'), |
|
| 121 | - 'htmlvar_name' => 'property_bedrooms', |
|
| 122 | - 'is_active' => true, |
|
| 123 | - 'for_admin_use' => false, |
|
| 124 | - 'default_value' => '', |
|
| 125 | - 'show_in' => '[detail],[listing]', |
|
| 126 | - 'is_required' => true, |
|
| 127 | - 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 128 | - 'validation_pattern' => '', |
|
| 129 | - 'validation_msg' => '', |
|
| 130 | - 'required_msg' => '', |
|
| 131 | - 'field_icon' => 'fa fa-bed', |
|
| 132 | - 'css_class' => '', |
|
| 133 | - 'cat_sort' => true, |
|
| 134 | - 'cat_filter' => true |
|
| 135 | - ); |
|
| 136 | - |
|
| 137 | - // property bathrooms |
|
| 138 | - $fields[] = array('listing_type' => $post_type, |
|
| 139 | - 'field_type' => 'select', |
|
| 140 | - 'data_type' => 'VARCHAR', |
|
| 141 | - 'admin_title' => __('Property Bathrooms', 'geodirectory'), |
|
| 142 | - 'site_title' => __('Bathrooms', 'geodirectory'), |
|
| 143 | - 'admin_desc' => __('Select the number of bathrooms', 'geodirectory'), |
|
| 144 | - 'htmlvar_name' => 'property_bathrooms', |
|
| 145 | - 'is_active' => true, |
|
| 146 | - 'for_admin_use' => false, |
|
| 147 | - 'default_value' => '', |
|
| 148 | - 'show_in' => '[detail],[listing]', |
|
| 149 | - 'is_required' => true, |
|
| 150 | - 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 151 | - 'validation_pattern' => '', |
|
| 152 | - 'validation_msg' => '', |
|
| 153 | - 'required_msg' => '', |
|
| 154 | - 'field_icon' => 'fa fa-bold', |
|
| 155 | - 'css_class' => '', |
|
| 156 | - 'cat_sort' => true, |
|
| 157 | - 'cat_filter' => true |
|
| 158 | - ); |
|
| 159 | - |
|
| 160 | - // property area |
|
| 161 | - $fields[] = array('listing_type' => $post_type, |
|
| 162 | - 'field_type' => 'text', |
|
| 163 | - 'data_type' => 'INT', |
|
| 164 | - 'admin_title' => __('Property Area', 'geodirectory'), |
|
| 165 | - 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 166 | - 'admin_desc' => __('Enter the Sq Ft value for the property', 'geodirectory'), |
|
| 167 | - 'htmlvar_name' => 'property_area', |
|
| 168 | - 'is_active' => true, |
|
| 169 | - 'for_admin_use' => false, |
|
| 170 | - 'default_value' => '', |
|
| 171 | - 'show_in' => '[detail],[listing]', |
|
| 172 | - 'is_required' => false, |
|
| 173 | - 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 174 | - 'validation_msg' => 'Please enter the property area in numbers only: 1500', |
|
| 175 | - 'required_msg' => '', |
|
| 176 | - 'field_icon' => 'fa fa-area-chart', |
|
| 177 | - 'css_class' => '', |
|
| 178 | - 'cat_sort' => true, |
|
| 179 | - 'cat_filter' => true |
|
| 180 | - ); |
|
| 181 | - |
|
| 182 | - // property features |
|
| 183 | - $fields[] = array('listing_type' => $post_type, |
|
| 184 | - 'field_type' => 'multiselect', |
|
| 185 | - 'data_type' => 'VARCHAR', |
|
| 186 | - 'admin_title' => __('Property Features', 'geodirectory'), |
|
| 187 | - 'site_title' => __('Features', 'geodirectory'), |
|
| 188 | - 'admin_desc' => __('Select the property features.', 'geodirectory'), |
|
| 189 | - 'htmlvar_name' => 'property_features', |
|
| 190 | - 'is_active' => true, |
|
| 191 | - 'for_admin_use' => false, |
|
| 192 | - 'default_value' => '', |
|
| 193 | - 'show_in' => '[detail],[listing]', |
|
| 194 | - 'is_required' => false, |
|
| 195 | - 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 196 | - 'validation_pattern' => '', |
|
| 197 | - 'validation_msg' => '', |
|
| 198 | - 'required_msg' => '', |
|
| 199 | - 'field_icon' => 'fa fa-plus-square', |
|
| 200 | - 'css_class' => 'gd-comma-list', |
|
| 201 | - 'cat_sort' => true, |
|
| 202 | - 'cat_filter' => true |
|
| 203 | - ); |
|
| 204 | - |
|
| 205 | - |
|
| 206 | - |
|
| 207 | - /** |
|
| 208 | - * Filter the array of default custom fields DB table data. |
|
| 209 | - * |
|
| 210 | - * @since 1.6.6 |
|
| 211 | - * @param string $fields The default custom fields as an array. |
|
| 212 | - */ |
|
| 213 | - $fields = apply_filters('geodir_property_sale_custom_fields', $fields); |
|
| 214 | - |
|
| 215 | - return $fields; |
|
| 10 | + $fields = array(); |
|
| 11 | + $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | + |
|
| 13 | + // price |
|
| 14 | + $fields[] = array('listing_type' => $post_type, |
|
| 15 | + 'field_type' => 'text', |
|
| 16 | + 'data_type' => 'FLOAT', |
|
| 17 | + 'decimal_point' => '2', |
|
| 18 | + 'admin_title' => __('Price', 'geodirectory'), |
|
| 19 | + 'site_title' => __('Price', 'geodirectory'), |
|
| 20 | + 'admin_desc' => __('Enter the price in $ (no currency symbol)', 'geodirectory'), |
|
| 21 | + 'htmlvar_name' => 'price', |
|
| 22 | + 'is_active' => true, |
|
| 23 | + 'for_admin_use' => false, |
|
| 24 | + 'default_value' => '', |
|
| 25 | + 'show_in' => '[detail],[listing]', |
|
| 26 | + 'is_required' => false, |
|
| 27 | + 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 28 | + 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | + 'required_msg' => '', |
|
| 30 | + 'field_icon' => 'fa fa-usd', |
|
| 31 | + 'css_class' => '', |
|
| 32 | + 'cat_sort' => true, |
|
| 33 | + 'cat_filter' => true, |
|
| 34 | + 'extra' => array( |
|
| 35 | + 'is_price' => 1, |
|
| 36 | + 'thousand_separator' => 'comma', |
|
| 37 | + 'decimal_separator' => 'period', |
|
| 38 | + 'decimal_display' => 'if', |
|
| 39 | + 'currency_symbol' => '$', |
|
| 40 | + 'currency_symbol_placement' => 'left' |
|
| 41 | + ) |
|
| 42 | + ); |
|
| 43 | + |
|
| 44 | + // property status |
|
| 45 | + $fields[] = array('listing_type' => $post_type, |
|
| 46 | + 'data_type' => 'VARCHAR', |
|
| 47 | + 'field_type' => 'select', |
|
| 48 | + 'field_type_key' => 'property_status', |
|
| 49 | + 'is_active' => 1, |
|
| 50 | + 'for_admin_use' => 0, |
|
| 51 | + 'is_default' => 0, |
|
| 52 | + 'admin_title' => __('Property Status', 'geodirectory'), |
|
| 53 | + 'admin_desc' => __('Enter the status of the property.', 'geodirectory'), |
|
| 54 | + 'site_title' => __('Property Status', 'geodirectory'), |
|
| 55 | + 'htmlvar_name' => 'property_status', |
|
| 56 | + 'default_value' => '', |
|
| 57 | + 'is_required' => '1', |
|
| 58 | + 'required_msg' => '', |
|
| 59 | + 'show_in' => '[detail],[listing]', |
|
| 60 | + 'show_on_pkg' => $package, |
|
| 61 | + 'option_values' => 'Select Status/,For Sale,Sold,Under Offer', |
|
| 62 | + 'field_icon' => 'fa fa-home', |
|
| 63 | + 'css_class' => '', |
|
| 64 | + 'cat_sort' => 1, |
|
| 65 | + 'cat_filter' => 1, |
|
| 66 | + ); |
|
| 67 | + |
|
| 68 | + // property furnishing |
|
| 69 | + $fields[] = array('listing_type' => $post_type, |
|
| 70 | + 'field_type' => 'select', |
|
| 71 | + 'data_type' => 'VARCHAR', |
|
| 72 | + 'admin_title' => __('Furnishing', 'geodirectory'), |
|
| 73 | + 'site_title' => __('Furnishing', 'geodirectory'), |
|
| 74 | + 'admin_desc' => __('Enter the furnishing status of the property.', 'geodirectory'), |
|
| 75 | + 'htmlvar_name' => 'property_furnishing', |
|
| 76 | + 'is_active' => true, |
|
| 77 | + 'for_admin_use' => false, |
|
| 78 | + 'default_value' => '', |
|
| 79 | + 'show_in' => '[detail],[listing]', |
|
| 80 | + 'is_required' => true, |
|
| 81 | + 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 82 | + 'validation_pattern' => '', |
|
| 83 | + 'validation_msg' => '', |
|
| 84 | + 'required_msg' => '', |
|
| 85 | + 'field_icon' => 'fa fa-th-large', |
|
| 86 | + 'css_class' => '', |
|
| 87 | + 'cat_sort' => true, |
|
| 88 | + 'cat_filter' => true |
|
| 89 | + ); |
|
| 90 | + |
|
| 91 | + // property type |
|
| 92 | + $fields[] = array('listing_type' => $post_type, |
|
| 93 | + 'field_type' => 'select', |
|
| 94 | + 'data_type' => 'VARCHAR', |
|
| 95 | + 'admin_title' => __('Property Type', 'geodirectory'), |
|
| 96 | + 'site_title' => __('Property Type', 'geodirectory'), |
|
| 97 | + 'admin_desc' => __('Select the property type.', 'geodirectory'), |
|
| 98 | + 'htmlvar_name' => 'property_type', |
|
| 99 | + 'is_active' => true, |
|
| 100 | + 'for_admin_use' => false, |
|
| 101 | + 'default_value' => '', |
|
| 102 | + 'show_in' => '[detail],[listing]', |
|
| 103 | + 'is_required' => true, |
|
| 104 | + 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 105 | + 'validation_pattern' => '', |
|
| 106 | + 'validation_msg' => '', |
|
| 107 | + 'required_msg' => '', |
|
| 108 | + 'field_icon' => 'fa fa-home', |
|
| 109 | + 'css_class' => '', |
|
| 110 | + 'cat_sort' => true, |
|
| 111 | + 'cat_filter' => true |
|
| 112 | + ); |
|
| 113 | + |
|
| 114 | + // property bedrooms |
|
| 115 | + $fields[] = array('listing_type' => $post_type, |
|
| 116 | + 'field_type' => 'select', |
|
| 117 | + 'data_type' => 'VARCHAR', |
|
| 118 | + 'admin_title' => __('Property Bedrooms', 'geodirectory'), |
|
| 119 | + 'site_title' => __('Bedrooms', 'geodirectory'), |
|
| 120 | + 'admin_desc' => __('Select the number of bedrooms', 'geodirectory'), |
|
| 121 | + 'htmlvar_name' => 'property_bedrooms', |
|
| 122 | + 'is_active' => true, |
|
| 123 | + 'for_admin_use' => false, |
|
| 124 | + 'default_value' => '', |
|
| 125 | + 'show_in' => '[detail],[listing]', |
|
| 126 | + 'is_required' => true, |
|
| 127 | + 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 128 | + 'validation_pattern' => '', |
|
| 129 | + 'validation_msg' => '', |
|
| 130 | + 'required_msg' => '', |
|
| 131 | + 'field_icon' => 'fa fa-bed', |
|
| 132 | + 'css_class' => '', |
|
| 133 | + 'cat_sort' => true, |
|
| 134 | + 'cat_filter' => true |
|
| 135 | + ); |
|
| 136 | + |
|
| 137 | + // property bathrooms |
|
| 138 | + $fields[] = array('listing_type' => $post_type, |
|
| 139 | + 'field_type' => 'select', |
|
| 140 | + 'data_type' => 'VARCHAR', |
|
| 141 | + 'admin_title' => __('Property Bathrooms', 'geodirectory'), |
|
| 142 | + 'site_title' => __('Bathrooms', 'geodirectory'), |
|
| 143 | + 'admin_desc' => __('Select the number of bathrooms', 'geodirectory'), |
|
| 144 | + 'htmlvar_name' => 'property_bathrooms', |
|
| 145 | + 'is_active' => true, |
|
| 146 | + 'for_admin_use' => false, |
|
| 147 | + 'default_value' => '', |
|
| 148 | + 'show_in' => '[detail],[listing]', |
|
| 149 | + 'is_required' => true, |
|
| 150 | + 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 151 | + 'validation_pattern' => '', |
|
| 152 | + 'validation_msg' => '', |
|
| 153 | + 'required_msg' => '', |
|
| 154 | + 'field_icon' => 'fa fa-bold', |
|
| 155 | + 'css_class' => '', |
|
| 156 | + 'cat_sort' => true, |
|
| 157 | + 'cat_filter' => true |
|
| 158 | + ); |
|
| 159 | + |
|
| 160 | + // property area |
|
| 161 | + $fields[] = array('listing_type' => $post_type, |
|
| 162 | + 'field_type' => 'text', |
|
| 163 | + 'data_type' => 'INT', |
|
| 164 | + 'admin_title' => __('Property Area', 'geodirectory'), |
|
| 165 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 166 | + 'admin_desc' => __('Enter the Sq Ft value for the property', 'geodirectory'), |
|
| 167 | + 'htmlvar_name' => 'property_area', |
|
| 168 | + 'is_active' => true, |
|
| 169 | + 'for_admin_use' => false, |
|
| 170 | + 'default_value' => '', |
|
| 171 | + 'show_in' => '[detail],[listing]', |
|
| 172 | + 'is_required' => false, |
|
| 173 | + 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 174 | + 'validation_msg' => 'Please enter the property area in numbers only: 1500', |
|
| 175 | + 'required_msg' => '', |
|
| 176 | + 'field_icon' => 'fa fa-area-chart', |
|
| 177 | + 'css_class' => '', |
|
| 178 | + 'cat_sort' => true, |
|
| 179 | + 'cat_filter' => true |
|
| 180 | + ); |
|
| 181 | + |
|
| 182 | + // property features |
|
| 183 | + $fields[] = array('listing_type' => $post_type, |
|
| 184 | + 'field_type' => 'multiselect', |
|
| 185 | + 'data_type' => 'VARCHAR', |
|
| 186 | + 'admin_title' => __('Property Features', 'geodirectory'), |
|
| 187 | + 'site_title' => __('Features', 'geodirectory'), |
|
| 188 | + 'admin_desc' => __('Select the property features.', 'geodirectory'), |
|
| 189 | + 'htmlvar_name' => 'property_features', |
|
| 190 | + 'is_active' => true, |
|
| 191 | + 'for_admin_use' => false, |
|
| 192 | + 'default_value' => '', |
|
| 193 | + 'show_in' => '[detail],[listing]', |
|
| 194 | + 'is_required' => false, |
|
| 195 | + 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 196 | + 'validation_pattern' => '', |
|
| 197 | + 'validation_msg' => '', |
|
| 198 | + 'required_msg' => '', |
|
| 199 | + 'field_icon' => 'fa fa-plus-square', |
|
| 200 | + 'css_class' => 'gd-comma-list', |
|
| 201 | + 'cat_sort' => true, |
|
| 202 | + 'cat_filter' => true |
|
| 203 | + ); |
|
| 204 | + |
|
| 205 | + |
|
| 206 | + |
|
| 207 | + /** |
|
| 208 | + * Filter the array of default custom fields DB table data. |
|
| 209 | + * |
|
| 210 | + * @since 1.6.6 |
|
| 211 | + * @param string $fields The default custom fields as an array. |
|
| 212 | + */ |
|
| 213 | + $fields = apply_filters('geodir_property_sale_custom_fields', $fields); |
|
| 214 | + |
|
| 215 | + return $fields; |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | function geodir_property_sale_custom_fields_sort($post_type='gd_place') { |
| 219 | 219 | |
| 220 | 220 | |
| 221 | - $fields = array(); |
|
| 222 | - |
|
| 223 | - // price sort |
|
| 224 | - $fields[] = array( |
|
| 225 | - 'create_field' => true, |
|
| 226 | - 'listing_type' => $post_type, |
|
| 227 | - 'field_type' => 'text', |
|
| 228 | - 'data_type' => '', |
|
| 229 | - 'htmlvar_name' => 'geodir_price', |
|
| 230 | - 'site_title' => __('Price','geodirectory'), |
|
| 231 | - 'asc' => 1, |
|
| 232 | - 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 233 | - 'desc' => 1, |
|
| 234 | - 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 235 | - 'is_active' => 1 |
|
| 236 | - ); |
|
| 237 | - |
|
| 238 | - // area sort |
|
| 239 | - $fields[] = array( |
|
| 240 | - 'create_field' => true, |
|
| 241 | - 'listing_type' => $post_type, |
|
| 242 | - 'field_type' => 'text', |
|
| 243 | - 'data_type' => '', |
|
| 244 | - 'htmlvar_name' => 'geodir_property_area', |
|
| 245 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 246 | - 'asc' => 1, |
|
| 247 | - 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 248 | - 'desc' => 1, |
|
| 249 | - 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 250 | - 'is_active' => 1 |
|
| 251 | - ); |
|
| 252 | - |
|
| 253 | - // bedrooms sort |
|
| 254 | - $fields[] = array( |
|
| 255 | - 'create_field' => true, |
|
| 256 | - 'listing_type' => $post_type, |
|
| 257 | - 'field_type' => 'select', |
|
| 258 | - 'data_type' => '', |
|
| 259 | - 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 260 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 261 | - 'asc' => 1, |
|
| 262 | - 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 263 | - 'desc' => 1, |
|
| 264 | - 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 265 | - 'is_active' => 1 |
|
| 266 | - ); |
|
| 267 | - |
|
| 268 | - |
|
| 269 | - /** |
|
| 270 | - * Filter the array of advanced search fields DB table data. |
|
| 271 | - * |
|
| 272 | - * @since 1.6.6 |
|
| 273 | - * @param string $fields The default custom fields as an array. |
|
| 274 | - */ |
|
| 275 | - $fields = apply_filters('geodir_property_sale_custom_fields_sort', $fields); |
|
| 276 | - |
|
| 277 | - return $fields; |
|
| 221 | + $fields = array(); |
|
| 222 | + |
|
| 223 | + // price sort |
|
| 224 | + $fields[] = array( |
|
| 225 | + 'create_field' => true, |
|
| 226 | + 'listing_type' => $post_type, |
|
| 227 | + 'field_type' => 'text', |
|
| 228 | + 'data_type' => '', |
|
| 229 | + 'htmlvar_name' => 'geodir_price', |
|
| 230 | + 'site_title' => __('Price','geodirectory'), |
|
| 231 | + 'asc' => 1, |
|
| 232 | + 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 233 | + 'desc' => 1, |
|
| 234 | + 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 235 | + 'is_active' => 1 |
|
| 236 | + ); |
|
| 237 | + |
|
| 238 | + // area sort |
|
| 239 | + $fields[] = array( |
|
| 240 | + 'create_field' => true, |
|
| 241 | + 'listing_type' => $post_type, |
|
| 242 | + 'field_type' => 'text', |
|
| 243 | + 'data_type' => '', |
|
| 244 | + 'htmlvar_name' => 'geodir_property_area', |
|
| 245 | + 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 246 | + 'asc' => 1, |
|
| 247 | + 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 248 | + 'desc' => 1, |
|
| 249 | + 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 250 | + 'is_active' => 1 |
|
| 251 | + ); |
|
| 252 | + |
|
| 253 | + // bedrooms sort |
|
| 254 | + $fields[] = array( |
|
| 255 | + 'create_field' => true, |
|
| 256 | + 'listing_type' => $post_type, |
|
| 257 | + 'field_type' => 'select', |
|
| 258 | + 'data_type' => '', |
|
| 259 | + 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 260 | + 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 261 | + 'asc' => 1, |
|
| 262 | + 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 263 | + 'desc' => 1, |
|
| 264 | + 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 265 | + 'is_active' => 1 |
|
| 266 | + ); |
|
| 267 | + |
|
| 268 | + |
|
| 269 | + /** |
|
| 270 | + * Filter the array of advanced search fields DB table data. |
|
| 271 | + * |
|
| 272 | + * @since 1.6.6 |
|
| 273 | + * @param string $fields The default custom fields as an array. |
|
| 274 | + */ |
|
| 275 | + $fields = apply_filters('geodir_property_sale_custom_fields_sort', $fields); |
|
| 276 | + |
|
| 277 | + return $fields; |
|
| 278 | 278 | |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | function geodir_property_sale_custom_fields_advanced_search($post_type='gd_place') { |
| 282 | 282 | |
| 283 | 283 | |
| 284 | - $fields = array(); |
|
| 285 | - |
|
| 286 | - // price range |
|
| 287 | - $fields[] = array( |
|
| 288 | - 'create_field' => true, |
|
| 289 | - 'listing_type' => $post_type, |
|
| 290 | - 'field_type' => 'text', |
|
| 291 | - 'data_type' => 'RANGE', |
|
| 292 | - 'is_active' => 1, |
|
| 293 | - 'site_field_title' => 'Price', |
|
| 294 | - 'field_data_type' => 'FLOAT', |
|
| 295 | - 'main_search' => 1, |
|
| 296 | - 'main_search_priority' => 15, |
|
| 297 | - 'data_type_change' => 'SELECT', |
|
| 298 | - 'search_condition_select' => 'SINGLE', |
|
| 299 | - 'search_min_value' => '50000', |
|
| 300 | - 'search_max_value' => '1000000', |
|
| 301 | - 'search_diff_value' => '100000', |
|
| 302 | - 'first_search_value' => '0', |
|
| 303 | - 'first_search_text' => '', |
|
| 304 | - 'last_search_text' => '', |
|
| 305 | - 'search_condition' => 'SELECT', |
|
| 306 | - 'site_htmlvar_name' => 'geodir_price', |
|
| 307 | - 'htmlvar_name' => 'geodir_price', |
|
| 308 | - 'field_title' => 'geodir_price', |
|
| 309 | - 'expand_custom_value' => '', |
|
| 310 | - 'front_search_title' => 'Price Range', |
|
| 311 | - 'field_desc' => '' |
|
| 312 | - ); |
|
| 313 | - |
|
| 314 | - // bedrooms |
|
| 315 | - $fields[] = array( |
|
| 316 | - 'create_field' => true, |
|
| 317 | - 'listing_type' => $post_type, |
|
| 318 | - 'field_type' => 'select', |
|
| 319 | - 'data_type' => 'CHECK', |
|
| 320 | - 'is_active' => 1, |
|
| 321 | - 'site_field_title' => 'Bedrooms', |
|
| 322 | - 'field_data_type' => 'VARCHAR', |
|
| 323 | - 'main_search' => 1, |
|
| 324 | - 'main_search_priority' => 16, |
|
| 325 | - 'search_condition' => 'SINGLE', |
|
| 326 | - 'site_htmlvar_name' => 'geodir_property_bedrooms', |
|
| 327 | - 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 328 | - 'field_title' => 'geodir_property_bedrooms', |
|
| 329 | - 'front_search_title' => 'Bedrooms', |
|
| 330 | - 'field_desc' => '', |
|
| 331 | - 'expand_custom_value' => 5, |
|
| 332 | - 'expand_search' => 1, |
|
| 333 | - 'search_operator' => 'OR' |
|
| 334 | - ); |
|
| 335 | - |
|
| 336 | - // Property type |
|
| 337 | - $fields[] = array( |
|
| 338 | - 'create_field' => true, |
|
| 339 | - 'listing_type' => $post_type, |
|
| 340 | - 'field_type' => 'select', |
|
| 341 | - 'data_type' => 'CHECK', |
|
| 342 | - 'is_active' => 1, |
|
| 343 | - 'site_field_title' => 'Property Type', |
|
| 344 | - 'field_data_type' => 'VARCHAR', |
|
| 345 | - 'main_search' => 0, |
|
| 346 | - //'main_search_priority' => 16, |
|
| 347 | - 'search_condition' => 'SINGLE', |
|
| 348 | - 'site_htmlvar_name' => 'geodir_property_type', |
|
| 349 | - 'htmlvar_name' => 'geodir_property_type', |
|
| 350 | - 'field_title' => 'geodir_property_type', |
|
| 351 | - 'front_search_title' => 'Property Type', |
|
| 352 | - 'field_desc' => '', |
|
| 353 | - 'expand_custom_value' => 5, |
|
| 354 | - 'expand_search' => 1, |
|
| 355 | - 'search_operator' => 'OR' |
|
| 356 | - ); |
|
| 357 | - |
|
| 358 | - // Property Features |
|
| 359 | - $fields[] = array( |
|
| 360 | - 'create_field' => true, |
|
| 361 | - 'listing_type' => $post_type, |
|
| 362 | - 'field_type' => 'multiselect', |
|
| 363 | - 'data_type' => 'CHECK', |
|
| 364 | - 'is_active' => 1, |
|
| 365 | - 'site_field_title' => 'Features', |
|
| 366 | - 'field_data_type' => 'VARCHAR', |
|
| 367 | - 'main_search' => 0, |
|
| 368 | - //'main_search_priority' => 16, |
|
| 369 | - 'search_condition' => 'SINGLE', |
|
| 370 | - 'site_htmlvar_name' => 'geodir_property_features', |
|
| 371 | - 'htmlvar_name' => 'geodir_property_features', |
|
| 372 | - 'field_title' => 'geodir_property_features', |
|
| 373 | - 'front_search_title' => 'Property Features', |
|
| 374 | - 'field_desc' => '', |
|
| 375 | - 'expand_custom_value' => 5, |
|
| 376 | - 'expand_search' => 1, |
|
| 377 | - 'search_operator' => 'AND' |
|
| 378 | - ); |
|
| 379 | - |
|
| 380 | - // Property Bathrooms |
|
| 381 | - $fields[] = array( |
|
| 382 | - 'create_field' => true, |
|
| 383 | - 'listing_type' => $post_type, |
|
| 384 | - 'field_type' => 'select', |
|
| 385 | - 'data_type' => 'CHECK', |
|
| 386 | - 'is_active' => 1, |
|
| 387 | - 'site_field_title' => 'Bathrooms', |
|
| 388 | - 'field_data_type' => 'VARCHAR', |
|
| 389 | - 'main_search' => 0, |
|
| 390 | - //'main_search_priority' => 16, |
|
| 391 | - 'search_condition' => 'SINGLE', |
|
| 392 | - 'site_htmlvar_name' => 'geodir_property_bathrooms', |
|
| 393 | - 'htmlvar_name' => 'geodir_property_bathrooms', |
|
| 394 | - 'field_title' => 'geodir_property_bathrooms', |
|
| 395 | - 'front_search_title' => 'Bathrooms', |
|
| 396 | - 'field_desc' => '', |
|
| 397 | - 'expand_custom_value' => 5, |
|
| 398 | - 'expand_search' => 1, |
|
| 399 | - 'search_operator' => 'OR' |
|
| 400 | - ); |
|
| 401 | - |
|
| 402 | - // Property Furnishing |
|
| 403 | - $fields[] = array( |
|
| 404 | - 'create_field' => true, |
|
| 405 | - 'listing_type' => $post_type, |
|
| 406 | - 'field_type' => 'select', |
|
| 407 | - 'data_type' => 'CHECK', |
|
| 408 | - 'is_active' => 1, |
|
| 409 | - 'site_field_title' => 'Furnishing', |
|
| 410 | - 'field_data_type' => 'VARCHAR', |
|
| 411 | - 'main_search' => 0, |
|
| 412 | - //'main_search_priority' => 16, |
|
| 413 | - 'search_condition' => 'SINGLE', |
|
| 414 | - 'site_htmlvar_name' => 'geodir_property_furnishing', |
|
| 415 | - 'htmlvar_name' => 'geodir_property_furnishing', |
|
| 416 | - 'field_title' => 'geodir_property_furnishing', |
|
| 417 | - 'front_search_title' => 'Furnishing', |
|
| 418 | - 'field_desc' => '', |
|
| 419 | - 'expand_custom_value' => 5, |
|
| 420 | - 'expand_search' => 1, |
|
| 421 | - 'search_operator' => 'OR' |
|
| 422 | - ); |
|
| 423 | - |
|
| 424 | - // Property Status |
|
| 425 | - $fields[] = array( |
|
| 426 | - 'create_field' => true, |
|
| 427 | - 'listing_type' => $post_type, |
|
| 428 | - 'field_type' => 'select', |
|
| 429 | - 'data_type' => 'CHECK', |
|
| 430 | - 'is_active' => 1, |
|
| 431 | - 'site_field_title' => 'Property Status', |
|
| 432 | - 'field_data_type' => 'VARCHAR', |
|
| 433 | - 'main_search' => 0, |
|
| 434 | - //'main_search_priority' => 16, |
|
| 435 | - 'search_condition' => 'SINGLE', |
|
| 436 | - 'site_htmlvar_name' => 'geodir_property_status', |
|
| 437 | - 'htmlvar_name' => 'geodir_property_status', |
|
| 438 | - 'field_title' => 'geodir_property_status', |
|
| 439 | - 'front_search_title' => 'Property Status', |
|
| 440 | - 'field_desc' => '', |
|
| 441 | - 'expand_custom_value' => 5, |
|
| 442 | - 'expand_search' => 1, |
|
| 443 | - 'search_operator' => 'OR' |
|
| 444 | - ); |
|
| 445 | - |
|
| 446 | - |
|
| 447 | - |
|
| 448 | - /** |
|
| 449 | - * Filter the array of advanced search fields DB table data. |
|
| 450 | - * |
|
| 451 | - * @since 1.6.6 |
|
| 452 | - * @param string $fields The default custom fields as an array. |
|
| 453 | - */ |
|
| 454 | - $fields = apply_filters('geodir_property_sale_custom_fields_advanced_search', $fields); |
|
| 455 | - |
|
| 456 | - return $fields; |
|
| 284 | + $fields = array(); |
|
| 285 | + |
|
| 286 | + // price range |
|
| 287 | + $fields[] = array( |
|
| 288 | + 'create_field' => true, |
|
| 289 | + 'listing_type' => $post_type, |
|
| 290 | + 'field_type' => 'text', |
|
| 291 | + 'data_type' => 'RANGE', |
|
| 292 | + 'is_active' => 1, |
|
| 293 | + 'site_field_title' => 'Price', |
|
| 294 | + 'field_data_type' => 'FLOAT', |
|
| 295 | + 'main_search' => 1, |
|
| 296 | + 'main_search_priority' => 15, |
|
| 297 | + 'data_type_change' => 'SELECT', |
|
| 298 | + 'search_condition_select' => 'SINGLE', |
|
| 299 | + 'search_min_value' => '50000', |
|
| 300 | + 'search_max_value' => '1000000', |
|
| 301 | + 'search_diff_value' => '100000', |
|
| 302 | + 'first_search_value' => '0', |
|
| 303 | + 'first_search_text' => '', |
|
| 304 | + 'last_search_text' => '', |
|
| 305 | + 'search_condition' => 'SELECT', |
|
| 306 | + 'site_htmlvar_name' => 'geodir_price', |
|
| 307 | + 'htmlvar_name' => 'geodir_price', |
|
| 308 | + 'field_title' => 'geodir_price', |
|
| 309 | + 'expand_custom_value' => '', |
|
| 310 | + 'front_search_title' => 'Price Range', |
|
| 311 | + 'field_desc' => '' |
|
| 312 | + ); |
|
| 313 | + |
|
| 314 | + // bedrooms |
|
| 315 | + $fields[] = array( |
|
| 316 | + 'create_field' => true, |
|
| 317 | + 'listing_type' => $post_type, |
|
| 318 | + 'field_type' => 'select', |
|
| 319 | + 'data_type' => 'CHECK', |
|
| 320 | + 'is_active' => 1, |
|
| 321 | + 'site_field_title' => 'Bedrooms', |
|
| 322 | + 'field_data_type' => 'VARCHAR', |
|
| 323 | + 'main_search' => 1, |
|
| 324 | + 'main_search_priority' => 16, |
|
| 325 | + 'search_condition' => 'SINGLE', |
|
| 326 | + 'site_htmlvar_name' => 'geodir_property_bedrooms', |
|
| 327 | + 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 328 | + 'field_title' => 'geodir_property_bedrooms', |
|
| 329 | + 'front_search_title' => 'Bedrooms', |
|
| 330 | + 'field_desc' => '', |
|
| 331 | + 'expand_custom_value' => 5, |
|
| 332 | + 'expand_search' => 1, |
|
| 333 | + 'search_operator' => 'OR' |
|
| 334 | + ); |
|
| 335 | + |
|
| 336 | + // Property type |
|
| 337 | + $fields[] = array( |
|
| 338 | + 'create_field' => true, |
|
| 339 | + 'listing_type' => $post_type, |
|
| 340 | + 'field_type' => 'select', |
|
| 341 | + 'data_type' => 'CHECK', |
|
| 342 | + 'is_active' => 1, |
|
| 343 | + 'site_field_title' => 'Property Type', |
|
| 344 | + 'field_data_type' => 'VARCHAR', |
|
| 345 | + 'main_search' => 0, |
|
| 346 | + //'main_search_priority' => 16, |
|
| 347 | + 'search_condition' => 'SINGLE', |
|
| 348 | + 'site_htmlvar_name' => 'geodir_property_type', |
|
| 349 | + 'htmlvar_name' => 'geodir_property_type', |
|
| 350 | + 'field_title' => 'geodir_property_type', |
|
| 351 | + 'front_search_title' => 'Property Type', |
|
| 352 | + 'field_desc' => '', |
|
| 353 | + 'expand_custom_value' => 5, |
|
| 354 | + 'expand_search' => 1, |
|
| 355 | + 'search_operator' => 'OR' |
|
| 356 | + ); |
|
| 357 | + |
|
| 358 | + // Property Features |
|
| 359 | + $fields[] = array( |
|
| 360 | + 'create_field' => true, |
|
| 361 | + 'listing_type' => $post_type, |
|
| 362 | + 'field_type' => 'multiselect', |
|
| 363 | + 'data_type' => 'CHECK', |
|
| 364 | + 'is_active' => 1, |
|
| 365 | + 'site_field_title' => 'Features', |
|
| 366 | + 'field_data_type' => 'VARCHAR', |
|
| 367 | + 'main_search' => 0, |
|
| 368 | + //'main_search_priority' => 16, |
|
| 369 | + 'search_condition' => 'SINGLE', |
|
| 370 | + 'site_htmlvar_name' => 'geodir_property_features', |
|
| 371 | + 'htmlvar_name' => 'geodir_property_features', |
|
| 372 | + 'field_title' => 'geodir_property_features', |
|
| 373 | + 'front_search_title' => 'Property Features', |
|
| 374 | + 'field_desc' => '', |
|
| 375 | + 'expand_custom_value' => 5, |
|
| 376 | + 'expand_search' => 1, |
|
| 377 | + 'search_operator' => 'AND' |
|
| 378 | + ); |
|
| 379 | + |
|
| 380 | + // Property Bathrooms |
|
| 381 | + $fields[] = array( |
|
| 382 | + 'create_field' => true, |
|
| 383 | + 'listing_type' => $post_type, |
|
| 384 | + 'field_type' => 'select', |
|
| 385 | + 'data_type' => 'CHECK', |
|
| 386 | + 'is_active' => 1, |
|
| 387 | + 'site_field_title' => 'Bathrooms', |
|
| 388 | + 'field_data_type' => 'VARCHAR', |
|
| 389 | + 'main_search' => 0, |
|
| 390 | + //'main_search_priority' => 16, |
|
| 391 | + 'search_condition' => 'SINGLE', |
|
| 392 | + 'site_htmlvar_name' => 'geodir_property_bathrooms', |
|
| 393 | + 'htmlvar_name' => 'geodir_property_bathrooms', |
|
| 394 | + 'field_title' => 'geodir_property_bathrooms', |
|
| 395 | + 'front_search_title' => 'Bathrooms', |
|
| 396 | + 'field_desc' => '', |
|
| 397 | + 'expand_custom_value' => 5, |
|
| 398 | + 'expand_search' => 1, |
|
| 399 | + 'search_operator' => 'OR' |
|
| 400 | + ); |
|
| 401 | + |
|
| 402 | + // Property Furnishing |
|
| 403 | + $fields[] = array( |
|
| 404 | + 'create_field' => true, |
|
| 405 | + 'listing_type' => $post_type, |
|
| 406 | + 'field_type' => 'select', |
|
| 407 | + 'data_type' => 'CHECK', |
|
| 408 | + 'is_active' => 1, |
|
| 409 | + 'site_field_title' => 'Furnishing', |
|
| 410 | + 'field_data_type' => 'VARCHAR', |
|
| 411 | + 'main_search' => 0, |
|
| 412 | + //'main_search_priority' => 16, |
|
| 413 | + 'search_condition' => 'SINGLE', |
|
| 414 | + 'site_htmlvar_name' => 'geodir_property_furnishing', |
|
| 415 | + 'htmlvar_name' => 'geodir_property_furnishing', |
|
| 416 | + 'field_title' => 'geodir_property_furnishing', |
|
| 417 | + 'front_search_title' => 'Furnishing', |
|
| 418 | + 'field_desc' => '', |
|
| 419 | + 'expand_custom_value' => 5, |
|
| 420 | + 'expand_search' => 1, |
|
| 421 | + 'search_operator' => 'OR' |
|
| 422 | + ); |
|
| 423 | + |
|
| 424 | + // Property Status |
|
| 425 | + $fields[] = array( |
|
| 426 | + 'create_field' => true, |
|
| 427 | + 'listing_type' => $post_type, |
|
| 428 | + 'field_type' => 'select', |
|
| 429 | + 'data_type' => 'CHECK', |
|
| 430 | + 'is_active' => 1, |
|
| 431 | + 'site_field_title' => 'Property Status', |
|
| 432 | + 'field_data_type' => 'VARCHAR', |
|
| 433 | + 'main_search' => 0, |
|
| 434 | + //'main_search_priority' => 16, |
|
| 435 | + 'search_condition' => 'SINGLE', |
|
| 436 | + 'site_htmlvar_name' => 'geodir_property_status', |
|
| 437 | + 'htmlvar_name' => 'geodir_property_status', |
|
| 438 | + 'field_title' => 'geodir_property_status', |
|
| 439 | + 'front_search_title' => 'Property Status', |
|
| 440 | + 'field_desc' => '', |
|
| 441 | + 'expand_custom_value' => 5, |
|
| 442 | + 'expand_search' => 1, |
|
| 443 | + 'search_operator' => 'OR' |
|
| 444 | + ); |
|
| 445 | + |
|
| 446 | + |
|
| 447 | + |
|
| 448 | + /** |
|
| 449 | + * Filter the array of advanced search fields DB table data. |
|
| 450 | + * |
|
| 451 | + * @since 1.6.6 |
|
| 452 | + * @param string $fields The default custom fields as an array. |
|
| 453 | + */ |
|
| 454 | + $fields = apply_filters('geodir_property_sale_custom_fields_advanced_search', $fields); |
|
| 455 | + |
|
| 456 | + return $fields; |
|
| 457 | 457 | } |
| 458 | 458 | |
| 459 | 459 | global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
@@ -463,52 +463,52 @@ discard block |
||
| 463 | 463 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 464 | 464 | |
| 465 | 465 | if($dummy_post_index==1){ |
| 466 | - // add the dummy categories |
|
| 467 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 468 | - |
|
| 469 | - // add the dummy custom fields |
|
| 470 | - $fields = geodir_property_sale_custom_fields($post_type); |
|
| 471 | - geodir_create_dummy_fields($fields); |
|
| 472 | - |
|
| 473 | - // add sort order items |
|
| 474 | - $sort_fields = geodir_property_sale_custom_fields_sort($post_type); |
|
| 475 | - foreach($sort_fields as $sort){ |
|
| 476 | - geodir_custom_sort_field_save($sort); |
|
| 477 | - } |
|
| 478 | - |
|
| 479 | - // update the type currently installed |
|
| 480 | - update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 481 | - |
|
| 482 | - // add the advanced search fields |
|
| 483 | - if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 484 | - $search_fields = geodir_property_sale_custom_fields_advanced_search($post_type); |
|
| 485 | - foreach($search_fields as $sfield){ |
|
| 486 | - geodir_custom_advance_search_field_save( $sfield ); |
|
| 487 | - } |
|
| 488 | - } |
|
| 466 | + // add the dummy categories |
|
| 467 | + geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 468 | + |
|
| 469 | + // add the dummy custom fields |
|
| 470 | + $fields = geodir_property_sale_custom_fields($post_type); |
|
| 471 | + geodir_create_dummy_fields($fields); |
|
| 472 | + |
|
| 473 | + // add sort order items |
|
| 474 | + $sort_fields = geodir_property_sale_custom_fields_sort($post_type); |
|
| 475 | + foreach($sort_fields as $sort){ |
|
| 476 | + geodir_custom_sort_field_save($sort); |
|
| 477 | + } |
|
| 478 | + |
|
| 479 | + // update the type currently installed |
|
| 480 | + update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 481 | + |
|
| 482 | + // add the advanced search fields |
|
| 483 | + if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 484 | + $search_fields = geodir_property_sale_custom_fields_advanced_search($post_type); |
|
| 485 | + foreach($search_fields as $sfield){ |
|
| 486 | + geodir_custom_advance_search_field_save( $sfield ); |
|
| 487 | + } |
|
| 488 | + } |
|
| 489 | 489 | } |
| 490 | 490 | |
| 491 | 491 | if (geodir_dummy_folder_exists()) |
| 492 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 492 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 493 | 493 | else |
| 494 | - $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 494 | + $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 495 | 495 | |
| 496 | 496 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 497 | 497 | |
| 498 | 498 | switch ($dummy_post_index) { |
| 499 | 499 | |
| 500 | - case(1): |
|
| 501 | - $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 502 | - $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 503 | - $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 504 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 505 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 500 | + case(1): |
|
| 501 | + $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 502 | + $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 503 | + $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 504 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 505 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 506 | 506 | |
| 507 | 507 | |
| 508 | - $post_info[] = array( |
|
| 509 | - "listing_type" => $post_type, |
|
| 510 | - "post_title" => 'Eastern Lodge', |
|
| 511 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 508 | + $post_info[] = array( |
|
| 509 | + "listing_type" => $post_type, |
|
| 510 | + "post_title" => 'Eastern Lodge', |
|
| 511 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 512 | 512 | |
| 513 | 513 | Aliquam ut odio ullamcorper, posuere enim sed, venenatis tortor. Donec justo elit, aliquam sed cursus sed, semper eget libero. Mauris consequat lorem sed fringilla tincidunt. Phasellus suscipit velit et elit tristique, ac commodo metus scelerisque. Vivamus finibus ipsum placerat pulvinar aliquet. Maecenas augue orci, blandit at nibh pharetra, condimentum congue ligula. Duis non ante sagittis odio convallis lacinia in quis sapien. |
| 514 | 514 | |
@@ -517,42 +517,42 @@ discard block |
||
| 517 | 517 | Vestibulum tristique quam eget bibendum pulvinar. Mauris sit amet magna ut arcu rutrum pellentesque feugiat et ipsum. Proin porta quam sed risus accumsan pharetra. Nulla quis semper nisl. Nulla facilisi. Nulla facilisi. Pellentesque euismod sollicitudin lacus vel ultricies. Vestibulum ut sem ut nulla ultricies convallis in at mi. Nunc vitae nibh arcu. Maecenas nunc enim, tempus a rhoncus eget, pellentesque ut erat. |
| 518 | 518 | |
| 519 | 519 | Suspendisse interdum accumsan magna et tempor. Suspendisse scelerisque at lorem sit amet faucibus. Aenean quis consectetur enim. Duis aliquet tristique tempus. Suspendisse id ullamcorper mauris. Aliquam in libero eu justo porttitor pulvinar. Nulla semper placerat lectus. Nulla mollis suscipit lacus, a blandit purus cursus non. Maecenas id tellus mi. Pellentesque sollicitudin nibh eget magna scelerisque consequat. Aliquam convallis orci arcu, et euismod dui cursus et. Donec nec pellentesque nulla, ac pretium massa. In gravida bibendum ornare.', |
| 520 | - "post_images" => $image_array, |
|
| 521 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 522 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 523 | - "geodir_video" => '', |
|
| 524 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 525 | - "geodir_contact" => '(111) 677-4444', |
|
| 526 | - "geodir_email" => '[email protected]', |
|
| 527 | - "geodir_website" => 'http://example.com/', |
|
| 528 | - "geodir_twitter" => 'http://example.com/', |
|
| 529 | - "geodir_facebook" => 'http://example.com/', |
|
| 530 | - "geodir_price" => '350000', |
|
| 531 | - "geodir_property_status" => 'For Sale', |
|
| 532 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 533 | - 'geodir_property_type' => 'Detached house', |
|
| 534 | - 'geodir_property_bedrooms' => '3', |
|
| 535 | - 'geodir_property_bathrooms' => '2', |
|
| 536 | - 'geodir_property_area' => '1850', |
|
| 537 | - 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 538 | - "post_dummy" => '1' |
|
| 539 | - ); |
|
| 540 | - |
|
| 541 | - |
|
| 542 | - break; |
|
| 543 | - case 2: |
|
| 544 | - $image_array = array(); |
|
| 545 | - $post_meta = array(); |
|
| 546 | - $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 547 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 548 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 549 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 550 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 551 | - |
|
| 552 | - $post_info[] = array( |
|
| 553 | - "listing_type" => $post_type, |
|
| 554 | - "post_title" => 'Daisy Street', |
|
| 555 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 520 | + "post_images" => $image_array, |
|
| 521 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 522 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 523 | + "geodir_video" => '', |
|
| 524 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 525 | + "geodir_contact" => '(111) 677-4444', |
|
| 526 | + "geodir_email" => '[email protected]', |
|
| 527 | + "geodir_website" => 'http://example.com/', |
|
| 528 | + "geodir_twitter" => 'http://example.com/', |
|
| 529 | + "geodir_facebook" => 'http://example.com/', |
|
| 530 | + "geodir_price" => '350000', |
|
| 531 | + "geodir_property_status" => 'For Sale', |
|
| 532 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 533 | + 'geodir_property_type' => 'Detached house', |
|
| 534 | + 'geodir_property_bedrooms' => '3', |
|
| 535 | + 'geodir_property_bathrooms' => '2', |
|
| 536 | + 'geodir_property_area' => '1850', |
|
| 537 | + 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 538 | + "post_dummy" => '1' |
|
| 539 | + ); |
|
| 540 | + |
|
| 541 | + |
|
| 542 | + break; |
|
| 543 | + case 2: |
|
| 544 | + $image_array = array(); |
|
| 545 | + $post_meta = array(); |
|
| 546 | + $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 547 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 548 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 549 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 550 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 551 | + |
|
| 552 | + $post_info[] = array( |
|
| 553 | + "listing_type" => $post_type, |
|
| 554 | + "post_title" => 'Daisy Street', |
|
| 555 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 556 | 556 | |
| 557 | 557 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 558 | 558 | |
@@ -562,42 +562,42 @@ discard block |
||
| 562 | 562 | |
| 563 | 563 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 564 | 564 | |
| 565 | - "post_images" => $image_array, |
|
| 566 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 567 | - "post_tags" => array('Garage'), |
|
| 568 | - "geodir_video" => '', |
|
| 569 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 570 | - "geodir_contact" => '(222) 777-1111', |
|
| 571 | - "geodir_email" => '[email protected]', |
|
| 572 | - "geodir_website" => 'http://example.com/', |
|
| 573 | - "geodir_twitter" => 'http://example.com/', |
|
| 574 | - "geodir_facebook" => 'http://example.com/', |
|
| 575 | - "geodir_price" => '230000', |
|
| 576 | - "geodir_property_status" => 'Sold', |
|
| 577 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 578 | - 'geodir_property_type' => 'Detached house', |
|
| 579 | - 'geodir_property_bedrooms' => '5', |
|
| 580 | - 'geodir_property_bathrooms' => '3', |
|
| 581 | - 'geodir_property_area' => '2650', |
|
| 582 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 583 | - "post_dummy" => '1' |
|
| 584 | - ); |
|
| 585 | - |
|
| 586 | - break; |
|
| 587 | - |
|
| 588 | - case 3: |
|
| 589 | - $image_array = array(); |
|
| 590 | - $post_meta = array(); |
|
| 591 | - $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 592 | - $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 593 | - $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 594 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 595 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 596 | - |
|
| 597 | - $post_info[] = array( |
|
| 598 | - "listing_type" => $post_type, |
|
| 599 | - "post_title" => 'Northbay House', |
|
| 600 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 565 | + "post_images" => $image_array, |
|
| 566 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 567 | + "post_tags" => array('Garage'), |
|
| 568 | + "geodir_video" => '', |
|
| 569 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 570 | + "geodir_contact" => '(222) 777-1111', |
|
| 571 | + "geodir_email" => '[email protected]', |
|
| 572 | + "geodir_website" => 'http://example.com/', |
|
| 573 | + "geodir_twitter" => 'http://example.com/', |
|
| 574 | + "geodir_facebook" => 'http://example.com/', |
|
| 575 | + "geodir_price" => '230000', |
|
| 576 | + "geodir_property_status" => 'Sold', |
|
| 577 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 578 | + 'geodir_property_type' => 'Detached house', |
|
| 579 | + 'geodir_property_bedrooms' => '5', |
|
| 580 | + 'geodir_property_bathrooms' => '3', |
|
| 581 | + 'geodir_property_area' => '2650', |
|
| 582 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 583 | + "post_dummy" => '1' |
|
| 584 | + ); |
|
| 585 | + |
|
| 586 | + break; |
|
| 587 | + |
|
| 588 | + case 3: |
|
| 589 | + $image_array = array(); |
|
| 590 | + $post_meta = array(); |
|
| 591 | + $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 592 | + $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 593 | + $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 594 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 595 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 596 | + |
|
| 597 | + $post_info[] = array( |
|
| 598 | + "listing_type" => $post_type, |
|
| 599 | + "post_title" => 'Northbay House', |
|
| 600 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 601 | 601 | |
| 602 | 602 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 603 | 603 | |
@@ -607,43 +607,43 @@ discard block |
||
| 607 | 607 | |
| 608 | 608 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 609 | 609 | |
| 610 | - "post_images" => $image_array, |
|
| 611 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 612 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 613 | - "geodir_video" => '', |
|
| 614 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 615 | - "geodir_contact" => '(222) 777-1111', |
|
| 616 | - "geodir_email" => '[email protected]', |
|
| 617 | - "geodir_website" => 'http://example.com/', |
|
| 618 | - "geodir_twitter" => 'http://example.com/', |
|
| 619 | - "geodir_facebook" => 'http://example.com/', |
|
| 620 | - "geodir_price" => '260000', |
|
| 621 | - "geodir_property_status" => 'Under Offer', |
|
| 622 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 623 | - 'geodir_property_type' => 'Detached house', |
|
| 624 | - 'geodir_property_bedrooms' => '6', |
|
| 625 | - 'geodir_property_bathrooms' => '6', |
|
| 626 | - 'geodir_property_area' => '1650', |
|
| 627 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 628 | - "post_dummy" => '1' |
|
| 629 | - ); |
|
| 630 | - |
|
| 631 | - break; |
|
| 632 | - |
|
| 633 | - |
|
| 634 | - case 4: |
|
| 635 | - $image_array = array(); |
|
| 636 | - $post_meta = array(); |
|
| 637 | - $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 638 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 639 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 640 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 641 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 642 | - |
|
| 643 | - $post_info[] = array( |
|
| 644 | - "listing_type" => $post_type, |
|
| 645 | - "post_title" => 'Jesmond Mansion', |
|
| 646 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 610 | + "post_images" => $image_array, |
|
| 611 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 612 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 613 | + "geodir_video" => '', |
|
| 614 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 615 | + "geodir_contact" => '(222) 777-1111', |
|
| 616 | + "geodir_email" => '[email protected]', |
|
| 617 | + "geodir_website" => 'http://example.com/', |
|
| 618 | + "geodir_twitter" => 'http://example.com/', |
|
| 619 | + "geodir_facebook" => 'http://example.com/', |
|
| 620 | + "geodir_price" => '260000', |
|
| 621 | + "geodir_property_status" => 'Under Offer', |
|
| 622 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 623 | + 'geodir_property_type' => 'Detached house', |
|
| 624 | + 'geodir_property_bedrooms' => '6', |
|
| 625 | + 'geodir_property_bathrooms' => '6', |
|
| 626 | + 'geodir_property_area' => '1650', |
|
| 627 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 628 | + "post_dummy" => '1' |
|
| 629 | + ); |
|
| 630 | + |
|
| 631 | + break; |
|
| 632 | + |
|
| 633 | + |
|
| 634 | + case 4: |
|
| 635 | + $image_array = array(); |
|
| 636 | + $post_meta = array(); |
|
| 637 | + $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 638 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 639 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 640 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 641 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 642 | + |
|
| 643 | + $post_info[] = array( |
|
| 644 | + "listing_type" => $post_type, |
|
| 645 | + "post_title" => 'Jesmond Mansion', |
|
| 646 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 647 | 647 | |
| 648 | 648 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 649 | 649 | |
@@ -653,42 +653,42 @@ discard block |
||
| 653 | 653 | |
| 654 | 654 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 655 | 655 | |
| 656 | - "post_images" => $image_array, |
|
| 657 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 658 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 659 | - "geodir_video" => '', |
|
| 660 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 661 | - "geodir_contact" => '(222) 777-1111', |
|
| 662 | - "geodir_email" => '[email protected]', |
|
| 663 | - "geodir_website" => 'http://example.com/', |
|
| 664 | - "geodir_twitter" => 'http://example.com/', |
|
| 665 | - "geodir_facebook" => 'http://example.com/', |
|
| 666 | - "geodir_price" => '2300000', |
|
| 667 | - "geodir_property_status" => 'Under Offer', |
|
| 668 | - 'geodir_property_furnishing' => 'Partially furnished', |
|
| 669 | - 'geodir_property_type' => 'Detached house', |
|
| 670 | - 'geodir_property_bedrooms' => '10', |
|
| 671 | - 'geodir_property_bathrooms' => '7', |
|
| 672 | - 'geodir_property_area' => '6600', |
|
| 673 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 674 | - "post_dummy" => '1' |
|
| 675 | - ); |
|
| 676 | - |
|
| 677 | - break; |
|
| 678 | - |
|
| 679 | - case 5: |
|
| 680 | - $image_array = array(); |
|
| 681 | - $post_meta = array(); |
|
| 682 | - $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 683 | - $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 684 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 685 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 686 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 687 | - |
|
| 688 | - $post_info[] = array( |
|
| 689 | - "listing_type" => $post_type, |
|
| 690 | - "post_title" => 'Springfield Lodge', |
|
| 691 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 656 | + "post_images" => $image_array, |
|
| 657 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 658 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 659 | + "geodir_video" => '', |
|
| 660 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 661 | + "geodir_contact" => '(222) 777-1111', |
|
| 662 | + "geodir_email" => '[email protected]', |
|
| 663 | + "geodir_website" => 'http://example.com/', |
|
| 664 | + "geodir_twitter" => 'http://example.com/', |
|
| 665 | + "geodir_facebook" => 'http://example.com/', |
|
| 666 | + "geodir_price" => '2300000', |
|
| 667 | + "geodir_property_status" => 'Under Offer', |
|
| 668 | + 'geodir_property_furnishing' => 'Partially furnished', |
|
| 669 | + 'geodir_property_type' => 'Detached house', |
|
| 670 | + 'geodir_property_bedrooms' => '10', |
|
| 671 | + 'geodir_property_bathrooms' => '7', |
|
| 672 | + 'geodir_property_area' => '6600', |
|
| 673 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 674 | + "post_dummy" => '1' |
|
| 675 | + ); |
|
| 676 | + |
|
| 677 | + break; |
|
| 678 | + |
|
| 679 | + case 5: |
|
| 680 | + $image_array = array(); |
|
| 681 | + $post_meta = array(); |
|
| 682 | + $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 683 | + $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 684 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 685 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 686 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 687 | + |
|
| 688 | + $post_info[] = array( |
|
| 689 | + "listing_type" => $post_type, |
|
| 690 | + "post_title" => 'Springfield Lodge', |
|
| 691 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 692 | 692 | |
| 693 | 693 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 694 | 694 | |
@@ -698,42 +698,42 @@ discard block |
||
| 698 | 698 | |
| 699 | 699 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 700 | 700 | |
| 701 | - "post_images" => $image_array, |
|
| 702 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 703 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 704 | - "geodir_video" => '', |
|
| 705 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 706 | - "geodir_contact" => '(222) 777-1111', |
|
| 707 | - "geodir_email" => '[email protected]', |
|
| 708 | - "geodir_website" => 'http://example.com/', |
|
| 709 | - "geodir_twitter" => 'http://example.com/', |
|
| 710 | - "geodir_facebook" => 'http://example.com/', |
|
| 711 | - "geodir_price" => '330000', |
|
| 712 | - "geodir_property_status" => 'For Sale', |
|
| 713 | - 'geodir_property_furnishing' => 'Optional', |
|
| 714 | - 'geodir_property_type' => 'Detached house', |
|
| 715 | - 'geodir_property_bedrooms' => '4', |
|
| 716 | - 'geodir_property_bathrooms' => '3', |
|
| 717 | - 'geodir_property_area' => '3700', |
|
| 718 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 719 | - "post_dummy" => '1' |
|
| 720 | - ); |
|
| 721 | - |
|
| 722 | - break; |
|
| 723 | - |
|
| 724 | - case 6: |
|
| 725 | - $image_array = array(); |
|
| 726 | - $post_meta = array(); |
|
| 727 | - $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 728 | - $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 729 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 730 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 731 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 732 | - |
|
| 733 | - $post_info[] = array( |
|
| 734 | - "listing_type" => $post_type, |
|
| 735 | - "post_title" => 'Forrest Park', |
|
| 736 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 701 | + "post_images" => $image_array, |
|
| 702 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 703 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 704 | + "geodir_video" => '', |
|
| 705 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 706 | + "geodir_contact" => '(222) 777-1111', |
|
| 707 | + "geodir_email" => '[email protected]', |
|
| 708 | + "geodir_website" => 'http://example.com/', |
|
| 709 | + "geodir_twitter" => 'http://example.com/', |
|
| 710 | + "geodir_facebook" => 'http://example.com/', |
|
| 711 | + "geodir_price" => '330000', |
|
| 712 | + "geodir_property_status" => 'For Sale', |
|
| 713 | + 'geodir_property_furnishing' => 'Optional', |
|
| 714 | + 'geodir_property_type' => 'Detached house', |
|
| 715 | + 'geodir_property_bedrooms' => '4', |
|
| 716 | + 'geodir_property_bathrooms' => '3', |
|
| 717 | + 'geodir_property_area' => '3700', |
|
| 718 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 719 | + "post_dummy" => '1' |
|
| 720 | + ); |
|
| 721 | + |
|
| 722 | + break; |
|
| 723 | + |
|
| 724 | + case 6: |
|
| 725 | + $image_array = array(); |
|
| 726 | + $post_meta = array(); |
|
| 727 | + $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 728 | + $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 729 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 730 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 731 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 732 | + |
|
| 733 | + $post_info[] = array( |
|
| 734 | + "listing_type" => $post_type, |
|
| 735 | + "post_title" => 'Forrest Park', |
|
| 736 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 737 | 737 | |
| 738 | 738 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 739 | 739 | |
@@ -743,42 +743,42 @@ discard block |
||
| 743 | 743 | |
| 744 | 744 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 745 | 745 | |
| 746 | - "post_images" => $image_array, |
|
| 747 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 748 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 749 | - "geodir_video" => '', |
|
| 750 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 751 | - "geodir_contact" => '(222) 777-1111', |
|
| 752 | - "geodir_email" => '[email protected]', |
|
| 753 | - "geodir_website" => 'http://example.com/', |
|
| 754 | - "geodir_twitter" => 'http://example.com/', |
|
| 755 | - "geodir_facebook" => 'http://example.com/', |
|
| 756 | - "geodir_price" => '530000', |
|
| 757 | - "geodir_property_status" => 'For Sale', |
|
| 758 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 759 | - 'geodir_property_type' => 'Detached house', |
|
| 760 | - 'geodir_property_bedrooms' => '5', |
|
| 761 | - 'geodir_property_bathrooms' => '4', |
|
| 762 | - 'geodir_property_area' => '2250', |
|
| 763 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 764 | - "post_dummy" => '1' |
|
| 765 | - ); |
|
| 766 | - |
|
| 767 | - break; |
|
| 768 | - |
|
| 769 | - case 7: |
|
| 770 | - $image_array = array(); |
|
| 771 | - $post_meta = array(); |
|
| 772 | - $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 773 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 774 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 775 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 776 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 777 | - |
|
| 778 | - $post_info[] = array( |
|
| 779 | - "listing_type" => $post_type, |
|
| 780 | - "post_title" => 'Fraser Suites', |
|
| 781 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 746 | + "post_images" => $image_array, |
|
| 747 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 748 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 749 | + "geodir_video" => '', |
|
| 750 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 751 | + "geodir_contact" => '(222) 777-1111', |
|
| 752 | + "geodir_email" => '[email protected]', |
|
| 753 | + "geodir_website" => 'http://example.com/', |
|
| 754 | + "geodir_twitter" => 'http://example.com/', |
|
| 755 | + "geodir_facebook" => 'http://example.com/', |
|
| 756 | + "geodir_price" => '530000', |
|
| 757 | + "geodir_property_status" => 'For Sale', |
|
| 758 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 759 | + 'geodir_property_type' => 'Detached house', |
|
| 760 | + 'geodir_property_bedrooms' => '5', |
|
| 761 | + 'geodir_property_bathrooms' => '4', |
|
| 762 | + 'geodir_property_area' => '2250', |
|
| 763 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 764 | + "post_dummy" => '1' |
|
| 765 | + ); |
|
| 766 | + |
|
| 767 | + break; |
|
| 768 | + |
|
| 769 | + case 7: |
|
| 770 | + $image_array = array(); |
|
| 771 | + $post_meta = array(); |
|
| 772 | + $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 773 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 774 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 775 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 776 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 777 | + |
|
| 778 | + $post_info[] = array( |
|
| 779 | + "listing_type" => $post_type, |
|
| 780 | + "post_title" => 'Fraser Suites', |
|
| 781 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 782 | 782 | |
| 783 | 783 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 784 | 784 | |
@@ -788,42 +788,42 @@ discard block |
||
| 788 | 788 | |
| 789 | 789 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 790 | 790 | |
| 791 | - "post_images" => $image_array, |
|
| 792 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 793 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 794 | - "geodir_video" => '', |
|
| 795 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 796 | - "geodir_contact" => '(222) 777-1111', |
|
| 797 | - "geodir_email" => '[email protected]', |
|
| 798 | - "geodir_website" => 'http://example.com/', |
|
| 799 | - "geodir_twitter" => 'http://example.com/', |
|
| 800 | - "geodir_facebook" => 'http://example.com/', |
|
| 801 | - "geodir_price" => '245000', |
|
| 802 | - "geodir_property_status" => 'For Sale', |
|
| 803 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 804 | - 'geodir_property_type' => 'Apartment', |
|
| 805 | - 'geodir_property_bedrooms' => '3', |
|
| 806 | - 'geodir_property_bathrooms' => '2', |
|
| 807 | - 'geodir_property_area' => '1250', |
|
| 808 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 809 | - "post_dummy" => '1' |
|
| 810 | - ); |
|
| 811 | - |
|
| 812 | - break; |
|
| 813 | - |
|
| 814 | - case 8: |
|
| 815 | - $image_array = array(); |
|
| 816 | - $post_meta = array(); |
|
| 817 | - $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 818 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 819 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 820 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 821 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 822 | - |
|
| 823 | - $post_info[] = array( |
|
| 824 | - "listing_type" => $post_type, |
|
| 825 | - "post_title" => 'Richmore Apartments', |
|
| 826 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 791 | + "post_images" => $image_array, |
|
| 792 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 793 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 794 | + "geodir_video" => '', |
|
| 795 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 796 | + "geodir_contact" => '(222) 777-1111', |
|
| 797 | + "geodir_email" => '[email protected]', |
|
| 798 | + "geodir_website" => 'http://example.com/', |
|
| 799 | + "geodir_twitter" => 'http://example.com/', |
|
| 800 | + "geodir_facebook" => 'http://example.com/', |
|
| 801 | + "geodir_price" => '245000', |
|
| 802 | + "geodir_property_status" => 'For Sale', |
|
| 803 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 804 | + 'geodir_property_type' => 'Apartment', |
|
| 805 | + 'geodir_property_bedrooms' => '3', |
|
| 806 | + 'geodir_property_bathrooms' => '2', |
|
| 807 | + 'geodir_property_area' => '1250', |
|
| 808 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 809 | + "post_dummy" => '1' |
|
| 810 | + ); |
|
| 811 | + |
|
| 812 | + break; |
|
| 813 | + |
|
| 814 | + case 8: |
|
| 815 | + $image_array = array(); |
|
| 816 | + $post_meta = array(); |
|
| 817 | + $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 818 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 819 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 820 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 821 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 822 | + |
|
| 823 | + $post_info[] = array( |
|
| 824 | + "listing_type" => $post_type, |
|
| 825 | + "post_title" => 'Richmore Apartments', |
|
| 826 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 827 | 827 | |
| 828 | 828 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 829 | 829 | |
@@ -833,43 +833,43 @@ discard block |
||
| 833 | 833 | |
| 834 | 834 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 835 | 835 | |
| 836 | - "post_images" => $image_array, |
|
| 837 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 838 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 839 | - "geodir_video" => '', |
|
| 840 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 841 | - "geodir_contact" => '(222) 777-1111', |
|
| 842 | - "geodir_email" => '[email protected]', |
|
| 843 | - "geodir_website" => 'http://example.com/', |
|
| 844 | - "geodir_twitter" => 'http://example.com/', |
|
| 845 | - "geodir_facebook" => 'http://example.com/', |
|
| 846 | - "geodir_price" => '395000', |
|
| 847 | - "geodir_property_status" => 'For Sale', |
|
| 848 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 849 | - 'geodir_property_type' => 'Apartment', |
|
| 850 | - 'geodir_property_bedrooms' => '2', |
|
| 851 | - 'geodir_property_bathrooms' => '2', |
|
| 852 | - 'geodir_property_area' => '1750', |
|
| 853 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 854 | - "post_dummy" => '1' |
|
| 855 | - ); |
|
| 856 | - |
|
| 857 | - break; |
|
| 858 | - |
|
| 859 | - |
|
| 860 | - case 9: |
|
| 861 | - $image_array = array(); |
|
| 862 | - $post_meta = array(); |
|
| 863 | - $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 864 | - $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 865 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 866 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 867 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 868 | - |
|
| 869 | - $post_info[] = array( |
|
| 870 | - "listing_type" => $post_type, |
|
| 871 | - "post_title" => 'Hotel Alpina', |
|
| 872 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 836 | + "post_images" => $image_array, |
|
| 837 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 838 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 839 | + "geodir_video" => '', |
|
| 840 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 841 | + "geodir_contact" => '(222) 777-1111', |
|
| 842 | + "geodir_email" => '[email protected]', |
|
| 843 | + "geodir_website" => 'http://example.com/', |
|
| 844 | + "geodir_twitter" => 'http://example.com/', |
|
| 845 | + "geodir_facebook" => 'http://example.com/', |
|
| 846 | + "geodir_price" => '395000', |
|
| 847 | + "geodir_property_status" => 'For Sale', |
|
| 848 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 849 | + 'geodir_property_type' => 'Apartment', |
|
| 850 | + 'geodir_property_bedrooms' => '2', |
|
| 851 | + 'geodir_property_bathrooms' => '2', |
|
| 852 | + 'geodir_property_area' => '1750', |
|
| 853 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 854 | + "post_dummy" => '1' |
|
| 855 | + ); |
|
| 856 | + |
|
| 857 | + break; |
|
| 858 | + |
|
| 859 | + |
|
| 860 | + case 9: |
|
| 861 | + $image_array = array(); |
|
| 862 | + $post_meta = array(); |
|
| 863 | + $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 864 | + $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 865 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 866 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 867 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 868 | + |
|
| 869 | + $post_info[] = array( |
|
| 870 | + "listing_type" => $post_type, |
|
| 871 | + "post_title" => 'Hotel Alpina', |
|
| 872 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 873 | 873 | |
| 874 | 874 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 875 | 875 | |
@@ -879,39 +879,39 @@ discard block |
||
| 879 | 879 | |
| 880 | 880 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 881 | 881 | |
| 882 | - "post_images" => $image_array, |
|
| 883 | - "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 884 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 885 | - "geodir_video" => '', |
|
| 886 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 887 | - "geodir_contact" => '(222) 777-1111', |
|
| 888 | - "geodir_email" => '[email protected]', |
|
| 889 | - "geodir_website" => 'http://example.com/', |
|
| 890 | - "geodir_twitter" => 'http://example.com/', |
|
| 891 | - "geodir_facebook" => 'http://example.com/', |
|
| 892 | - "geodir_price" => '12500000', |
|
| 893 | - "geodir_property_status" => 'For Sale', |
|
| 894 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 895 | - 'geodir_property_type' => 'Hotel', |
|
| 896 | - 'geodir_property_bedrooms' => '120', |
|
| 897 | - 'geodir_property_bathrooms' => '133', |
|
| 898 | - 'geodir_property_area' => '35000', |
|
| 899 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 900 | - "post_dummy" => '1' |
|
| 901 | - ); |
|
| 902 | - |
|
| 903 | - break; |
|
| 904 | - |
|
| 905 | - case 10: |
|
| 906 | - $image_array = array(); |
|
| 907 | - $post_meta = array(); |
|
| 908 | - $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 909 | - $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 910 | - |
|
| 911 | - $post_info[] = array( |
|
| 912 | - "listing_type" => $post_type, |
|
| 913 | - "post_title" => 'Development Land', |
|
| 914 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 882 | + "post_images" => $image_array, |
|
| 883 | + "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 884 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 885 | + "geodir_video" => '', |
|
| 886 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 887 | + "geodir_contact" => '(222) 777-1111', |
|
| 888 | + "geodir_email" => '[email protected]', |
|
| 889 | + "geodir_website" => 'http://example.com/', |
|
| 890 | + "geodir_twitter" => 'http://example.com/', |
|
| 891 | + "geodir_facebook" => 'http://example.com/', |
|
| 892 | + "geodir_price" => '12500000', |
|
| 893 | + "geodir_property_status" => 'For Sale', |
|
| 894 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 895 | + 'geodir_property_type' => 'Hotel', |
|
| 896 | + 'geodir_property_bedrooms' => '120', |
|
| 897 | + 'geodir_property_bathrooms' => '133', |
|
| 898 | + 'geodir_property_area' => '35000', |
|
| 899 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 900 | + "post_dummy" => '1' |
|
| 901 | + ); |
|
| 902 | + |
|
| 903 | + break; |
|
| 904 | + |
|
| 905 | + case 10: |
|
| 906 | + $image_array = array(); |
|
| 907 | + $post_meta = array(); |
|
| 908 | + $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 909 | + $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 910 | + |
|
| 911 | + $post_info[] = array( |
|
| 912 | + "listing_type" => $post_type, |
|
| 913 | + "post_title" => 'Development Land', |
|
| 914 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 915 | 915 | |
| 916 | 916 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 917 | 917 | |
@@ -921,93 +921,93 @@ discard block |
||
| 921 | 921 | |
| 922 | 922 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 923 | 923 | |
| 924 | - "post_images" => $image_array, |
|
| 925 | - "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 926 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 927 | - "geodir_video" => '', |
|
| 928 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 929 | - "geodir_contact" => '(222) 777-1111', |
|
| 930 | - "geodir_email" => '[email protected]', |
|
| 931 | - "geodir_website" => 'http://example.com/', |
|
| 932 | - "geodir_twitter" => 'http://example.com/', |
|
| 933 | - "geodir_facebook" => 'http://example.com/', |
|
| 934 | - "geodir_price" => '80000', |
|
| 935 | - "geodir_property_status" => 'For Sale', |
|
| 936 | - 'geodir_property_furnishing' => '', |
|
| 937 | - 'geodir_property_type' => 'Land', |
|
| 938 | - 'geodir_property_bedrooms' => '', |
|
| 939 | - 'geodir_property_bathrooms' => '', |
|
| 940 | - 'geodir_property_area' => '250000', |
|
| 941 | - 'geodir_property_features' => '', |
|
| 942 | - "post_dummy" => '1' |
|
| 943 | - ); |
|
| 944 | - |
|
| 945 | - break; |
|
| 924 | + "post_images" => $image_array, |
|
| 925 | + "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 926 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 927 | + "geodir_video" => '', |
|
| 928 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 929 | + "geodir_contact" => '(222) 777-1111', |
|
| 930 | + "geodir_email" => '[email protected]', |
|
| 931 | + "geodir_website" => 'http://example.com/', |
|
| 932 | + "geodir_twitter" => 'http://example.com/', |
|
| 933 | + "geodir_facebook" => 'http://example.com/', |
|
| 934 | + "geodir_price" => '80000', |
|
| 935 | + "geodir_property_status" => 'For Sale', |
|
| 936 | + 'geodir_property_furnishing' => '', |
|
| 937 | + 'geodir_property_type' => 'Land', |
|
| 938 | + 'geodir_property_bedrooms' => '', |
|
| 939 | + 'geodir_property_bathrooms' => '', |
|
| 940 | + 'geodir_property_area' => '250000', |
|
| 941 | + 'geodir_property_features' => '', |
|
| 942 | + "post_dummy" => '1' |
|
| 943 | + ); |
|
| 944 | + |
|
| 945 | + break; |
|
| 946 | 946 | |
| 947 | 947 | } // end of switch |
| 948 | 948 | |
| 949 | 949 | foreach ($post_info as $post_info) { |
| 950 | - $default_location = geodir_get_default_location(); |
|
| 951 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 952 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 953 | - else |
|
| 954 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 950 | + $default_location = geodir_get_default_location(); |
|
| 951 | + if ($city_bound_lat1 > $city_bound_lat2) |
|
| 952 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 953 | + else |
|
| 954 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 955 | 955 | |
| 956 | 956 | |
| 957 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 958 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 959 | - else |
|
| 960 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 957 | + if ($city_bound_lng1 > $city_bound_lng2) |
|
| 958 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 959 | + else |
|
| 960 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 961 | 961 | |
| 962 | - $load_map = get_option('geodir_load_map'); |
|
| 962 | + $load_map = get_option('geodir_load_map'); |
|
| 963 | 963 | |
| 964 | - if ($load_map == 'osm') { |
|
| 965 | - $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 966 | - } else { |
|
| 967 | - $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 968 | - } |
|
| 969 | - |
|
| 970 | - $postal_code = ''; |
|
| 971 | - if (!empty($post_address)) { |
|
| 972 | - if ($load_map == 'osm') { |
|
| 973 | - $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 974 | - $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 975 | - } else { |
|
| 976 | - $addresses = array(); |
|
| 977 | - $addresses_default = array(); |
|
| 964 | + if ($load_map == 'osm') { |
|
| 965 | + $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 966 | + } else { |
|
| 967 | + $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 968 | + } |
|
| 969 | + |
|
| 970 | + $postal_code = ''; |
|
| 971 | + if (!empty($post_address)) { |
|
| 972 | + if ($load_map == 'osm') { |
|
| 973 | + $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 974 | + $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 975 | + } else { |
|
| 976 | + $addresses = array(); |
|
| 977 | + $addresses_default = array(); |
|
| 978 | 978 | |
| 979 | - foreach ($post_address as $add_key => $add_value) { |
|
| 980 | - if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 981 | - $addresses_default[] = $add_value->long_name; |
|
| 982 | - } |
|
| 983 | - if ($add_value->types[0] == 'postal_code') { |
|
| 984 | - $postal_code = $add_value->long_name; |
|
| 985 | - } |
|
| 986 | - if ($add_value->types[0] == 'street_number') { |
|
| 987 | - $addresses[] = $add_value->long_name; |
|
| 988 | - } |
|
| 989 | - if ($add_value->types[0] == 'route') { |
|
| 990 | - $addresses[] = $add_value->long_name; |
|
| 991 | - } |
|
| 992 | - if ($add_value->types[0] == 'neighborhood') { |
|
| 993 | - $addresses[] = $add_value->long_name; |
|
| 994 | - } |
|
| 995 | - if ($add_value->types[0] == 'sublocality') { |
|
| 996 | - $addresses[] = $add_value->long_name; |
|
| 997 | - } |
|
| 998 | - } |
|
| 999 | - $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 1000 | - } |
|
| 1001 | - |
|
| 1002 | - $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1003 | - $post_info['post_city'] = $default_location->city; |
|
| 1004 | - $post_info['post_region'] = $default_location->region; |
|
| 1005 | - $post_info['post_country'] = $default_location->country; |
|
| 1006 | - $post_info['post_zip'] = $postal_code; |
|
| 1007 | - $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1008 | - $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1009 | - } |
|
| 979 | + foreach ($post_address as $add_key => $add_value) { |
|
| 980 | + if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 981 | + $addresses_default[] = $add_value->long_name; |
|
| 982 | + } |
|
| 983 | + if ($add_value->types[0] == 'postal_code') { |
|
| 984 | + $postal_code = $add_value->long_name; |
|
| 985 | + } |
|
| 986 | + if ($add_value->types[0] == 'street_number') { |
|
| 987 | + $addresses[] = $add_value->long_name; |
|
| 988 | + } |
|
| 989 | + if ($add_value->types[0] == 'route') { |
|
| 990 | + $addresses[] = $add_value->long_name; |
|
| 991 | + } |
|
| 992 | + if ($add_value->types[0] == 'neighborhood') { |
|
| 993 | + $addresses[] = $add_value->long_name; |
|
| 994 | + } |
|
| 995 | + if ($add_value->types[0] == 'sublocality') { |
|
| 996 | + $addresses[] = $add_value->long_name; |
|
| 997 | + } |
|
| 998 | + } |
|
| 999 | + $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 1000 | + } |
|
| 1001 | + |
|
| 1002 | + $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1003 | + $post_info['post_city'] = $default_location->city; |
|
| 1004 | + $post_info['post_region'] = $default_location->region; |
|
| 1005 | + $post_info['post_country'] = $default_location->country; |
|
| 1006 | + $post_info['post_zip'] = $postal_code; |
|
| 1007 | + $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1008 | + $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1009 | + } |
|
| 1010 | 1010 | |
| 1011 | - geodir_save_listing($post_info, true); |
|
| 1012 | - echo 1; |
|
| 1011 | + geodir_save_listing($post_info, true); |
|
| 1012 | + echo 1; |
|
| 1013 | 1013 | } |
@@ -6,9 +6,9 @@ discard block |
||
| 6 | 6 | * @package GeoDirectory |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -function geodir_property_sale_custom_fields($post_type='gd_place',$package_id=''){ |
|
| 9 | +function geodir_property_sale_custom_fields($post_type = 'gd_place', $package_id = '') { |
|
| 10 | 10 | $fields = array(); |
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 11 | + $package = ($package_id == '') ? '' : array($package_id); |
|
| 12 | 12 | |
| 13 | 13 | // price |
| 14 | 14 | $fields[] = array('listing_type' => $post_type, |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | 'default_value' => '', |
| 79 | 79 | 'show_in' => '[detail],[listing]', |
| 80 | 80 | 'is_required' => true, |
| 81 | - 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 81 | + 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional', 'geodirectory'), |
|
| 82 | 82 | 'validation_pattern' => '', |
| 83 | 83 | 'validation_msg' => '', |
| 84 | 84 | 'required_msg' => '', |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | 'default_value' => '', |
| 102 | 102 | 'show_in' => '[detail],[listing]', |
| 103 | 103 | 'is_required' => true, |
| 104 | - 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 104 | + 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land', 'geodirectory'), |
|
| 105 | 105 | 'validation_pattern' => '', |
| 106 | 106 | 'validation_msg' => '', |
| 107 | 107 | 'required_msg' => '', |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | 'default_value' => '', |
| 125 | 125 | 'show_in' => '[detail],[listing]', |
| 126 | 126 | 'is_required' => true, |
| 127 | - 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 127 | + 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10', 'geodirectory'), |
|
| 128 | 128 | 'validation_pattern' => '', |
| 129 | 129 | 'validation_msg' => '', |
| 130 | 130 | 'required_msg' => '', |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | 'default_value' => '', |
| 148 | 148 | 'show_in' => '[detail],[listing]', |
| 149 | 149 | 'is_required' => true, |
| 150 | - 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 150 | + 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10', 'geodirectory'), |
|
| 151 | 151 | 'validation_pattern' => '', |
| 152 | 152 | 'validation_msg' => '', |
| 153 | 153 | 'required_msg' => '', |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | 'default_value' => '', |
| 193 | 193 | 'show_in' => '[detail],[listing]', |
| 194 | 194 | 'is_required' => false, |
| 195 | - 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 195 | + 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace', 'geodirectory'), |
|
| 196 | 196 | 'validation_pattern' => '', |
| 197 | 197 | 'validation_msg' => '', |
| 198 | 198 | 'required_msg' => '', |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | return $fields; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | -function geodir_property_sale_custom_fields_sort($post_type='gd_place') { |
|
| 218 | +function geodir_property_sale_custom_fields_sort($post_type = 'gd_place') { |
|
| 219 | 219 | |
| 220 | 220 | |
| 221 | 221 | $fields = array(); |
@@ -227,11 +227,11 @@ discard block |
||
| 227 | 227 | 'field_type' => 'text', |
| 228 | 228 | 'data_type' => '', |
| 229 | 229 | 'htmlvar_name' => 'geodir_price', |
| 230 | - 'site_title' => __('Price','geodirectory'), |
|
| 230 | + 'site_title' => __('Price', 'geodirectory'), |
|
| 231 | 231 | 'asc' => 1, |
| 232 | - 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 232 | + 'asc_title' => __('Price (lowest first)', 'geodirectory'), |
|
| 233 | 233 | 'desc' => 1, |
| 234 | - 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 234 | + 'desc_title' => __('Price (highest first)', 'geodirectory'), |
|
| 235 | 235 | 'is_active' => 1 |
| 236 | 236 | ); |
| 237 | 237 | |
@@ -242,11 +242,11 @@ discard block |
||
| 242 | 242 | 'field_type' => 'text', |
| 243 | 243 | 'data_type' => '', |
| 244 | 244 | 'htmlvar_name' => 'geodir_property_area', |
| 245 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 245 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 246 | 246 | 'asc' => 1, |
| 247 | - 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 247 | + 'asc_title' => __('Area (smallest first)', 'geodirectory'), |
|
| 248 | 248 | 'desc' => 1, |
| 249 | - 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 249 | + 'desc_title' => __('Area (largest first)', 'geodirectory'), |
|
| 250 | 250 | 'is_active' => 1 |
| 251 | 251 | ); |
| 252 | 252 | |
@@ -257,11 +257,11 @@ discard block |
||
| 257 | 257 | 'field_type' => 'select', |
| 258 | 258 | 'data_type' => '', |
| 259 | 259 | 'htmlvar_name' => 'geodir_property_bedrooms', |
| 260 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 260 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 261 | 261 | 'asc' => 1, |
| 262 | - 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 262 | + 'asc_title' => __('Bedrooms (least)', 'geodirectory'), |
|
| 263 | 263 | 'desc' => 1, |
| 264 | - 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 264 | + 'desc_title' => __('Bedrooms (most)', 'geodirectory'), |
|
| 265 | 265 | 'is_active' => 1 |
| 266 | 266 | ); |
| 267 | 267 | |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | -function geodir_property_sale_custom_fields_advanced_search($post_type='gd_place') { |
|
| 281 | +function geodir_property_sale_custom_fields_advanced_search($post_type = 'gd_place') { |
|
| 282 | 282 | |
| 283 | 283 | |
| 284 | 284 | $fields = array(); |
@@ -456,15 +456,15 @@ discard block |
||
| 456 | 456 | return $fields; |
| 457 | 457 | } |
| 458 | 458 | |
| 459 | -global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
|
| 459 | +global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2, $wpdb, $current_user, $dummy_post_index; |
|
| 460 | 460 | $post_info = array(); |
| 461 | 461 | $image_array = array(); |
| 462 | 462 | $post_meta = array(); |
| 463 | 463 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 464 | 464 | |
| 465 | -if($dummy_post_index==1){ |
|
| 465 | +if ($dummy_post_index == 1) { |
|
| 466 | 466 | // add the dummy categories |
| 467 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 467 | + geodir_dummy_data_taxonomies($post_type, $category_array); |
|
| 468 | 468 | |
| 469 | 469 | // add the dummy custom fields |
| 470 | 470 | $fields = geodir_property_sale_custom_fields($post_type); |
@@ -472,24 +472,24 @@ discard block |
||
| 472 | 472 | |
| 473 | 473 | // add sort order items |
| 474 | 474 | $sort_fields = geodir_property_sale_custom_fields_sort($post_type); |
| 475 | - foreach($sort_fields as $sort){ |
|
| 475 | + foreach ($sort_fields as $sort) { |
|
| 476 | 476 | geodir_custom_sort_field_save($sort); |
| 477 | 477 | } |
| 478 | 478 | |
| 479 | 479 | // update the type currently installed |
| 480 | - update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 480 | + update_option($post_type.'_dummy_data_type', 'property_sale'); |
|
| 481 | 481 | |
| 482 | 482 | // add the advanced search fields |
| 483 | - if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 483 | + if (defined('GEODIRADVANCESEARCH_VERSION')) { |
|
| 484 | 484 | $search_fields = geodir_property_sale_custom_fields_advanced_search($post_type); |
| 485 | - foreach($search_fields as $sfield){ |
|
| 486 | - geodir_custom_advance_search_field_save( $sfield ); |
|
| 485 | + foreach ($search_fields as $sfield) { |
|
| 486 | + geodir_custom_advance_search_field_save($sfield); |
|
| 487 | 487 | } |
| 488 | 488 | } |
| 489 | 489 | } |
| 490 | 490 | |
| 491 | 491 | if (geodir_dummy_folder_exists()) |
| 492 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 492 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy"; |
|
| 493 | 493 | else |
| 494 | 494 | $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
| 495 | 495 | |
@@ -487,10 +487,11 @@ discard block |
||
| 487 | 487 | } |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | -if (geodir_dummy_folder_exists()) |
|
| 490 | +if (geodir_dummy_folder_exists()) { |
|
| 491 | 491 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 492 | -else |
|
| 492 | +} else { |
|
| 493 | 493 | $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
| 494 | +} |
|
| 494 | 495 | |
| 495 | 496 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 496 | 497 | |
@@ -947,16 +948,18 @@ discard block |
||
| 947 | 948 | |
| 948 | 949 | foreach ($post_info as $post_info) { |
| 949 | 950 | $default_location = geodir_get_default_location(); |
| 950 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 951 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 952 | - else |
|
| 953 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 951 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 952 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 953 | + } else { |
|
| 954 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 955 | + } |
|
| 954 | 956 | |
| 955 | 957 | |
| 956 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 957 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 958 | - else |
|
| 959 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 958 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 959 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 960 | + } else { |
|
| 961 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 962 | + } |
|
| 960 | 963 | |
| 961 | 964 | $load_map = get_option('geodir_load_map'); |
| 962 | 965 | |
@@ -86,8 +86,9 @@ discard block |
||
| 86 | 86 | add_filter('query_vars', 'geodir_add_location_var');
|
| 87 | 87 | add_filter('query_vars', 'geodir_add_geodir_page_var');
|
| 88 | 88 | add_action('wp', 'geodir_add_page_id_in_query_var'); // problem fix in wordpress 3.8
|
| 89 | -if (get_option('permalink_structure') != '')
|
|
| 90 | - add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
|
|
| 89 | +if (get_option('permalink_structure') != '') { |
|
| 90 | + add_filter('parse_request', 'geodir_set_location_var_in_session_in_core'); |
|
| 91 | +} |
|
| 91 | 92 | |
| 92 | 93 | add_filter('parse_query', 'geodir_modified_query');
|
| 93 | 94 | |
@@ -420,8 +421,9 @@ discard block |
||
| 420 | 421 | */ |
| 421 | 422 | do_action('geodir_after_social_sharing_buttons');
|
| 422 | 423 | $content_html = ob_get_clean(); |
| 423 | - if (trim($content_html) != '') |
|
| 424 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 424 | + if (trim($content_html) != '') { |
|
| 425 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 426 | + } |
|
| 425 | 427 | if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
| 426 | 428 | /** |
| 427 | 429 | * Filter the geodir_social_sharing_buttons() function content. |
@@ -477,8 +479,9 @@ discard block |
||
| 477 | 479 | */ |
| 478 | 480 | do_action('geodir_after_edit_post_link');
|
| 479 | 481 | $content_html = ob_get_clean(); |
| 480 | - if (trim($content_html) != '') |
|
| 481 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | + if (trim($content_html) != '') { |
|
| 483 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 484 | + } |
|
| 482 | 485 | if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
| 483 | 486 | /** |
| 484 | 487 | * Filter the geodir_edit_post_link() function content. |
@@ -1052,8 +1055,9 @@ discard block |
||
| 1052 | 1055 | */ |
| 1053 | 1056 | do_action('geodir_after_google_analytics');
|
| 1054 | 1057 | $content_html = ob_get_clean(); |
| 1055 | - if (trim($content_html) != '') |
|
| 1056 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1058 | + if (trim($content_html) != '') { |
|
| 1059 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1060 | + } |
|
| 1057 | 1061 | if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
| 1058 | 1062 | /** |
| 1059 | 1063 | * Filter the geodir_edit_post_link() function content. |
@@ -1190,8 +1194,9 @@ discard block |
||
| 1190 | 1194 | do_action('geodir_after_detail_page_more_info');
|
| 1191 | 1195 | |
| 1192 | 1196 | $content_html = ob_get_clean(); |
| 1193 | - if (trim($content_html) != '') |
|
| 1194 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1197 | + if (trim($content_html) != '') { |
|
| 1198 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1199 | + } |
|
| 1195 | 1200 | if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
| 1196 | 1201 | /** |
| 1197 | 1202 | * Filter the output html for function geodir_detail_page_more_info(). |
@@ -1311,8 +1316,9 @@ discard block |
||
| 1311 | 1316 | $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
|
| 1312 | 1317 | |
| 1313 | 1318 | foreach ($arr_alert_msg as $key => $value) {
|
| 1314 | - if (!is_scalar($value)) |
|
| 1315 | - continue; |
|
| 1319 | + if (!is_scalar($value)) { |
|
| 1320 | + continue; |
|
| 1321 | + } |
|
| 1316 | 1322 | $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
| 1317 | 1323 | } |
| 1318 | 1324 | |
@@ -1368,17 +1374,19 @@ discard block |
||
| 1368 | 1374 | global $geodir_sidebars; |
| 1369 | 1375 | global $sidebars_widgets; |
| 1370 | 1376 | |
| 1371 | - if (!is_array($sidebars_widgets)) |
|
| 1372 | - $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1377 | + if (!is_array($sidebars_widgets)) { |
|
| 1378 | + $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1379 | + } |
|
| 1373 | 1380 | $geodir_old_sidebars = array(); |
| 1374 | 1381 | |
| 1375 | 1382 | if (is_array($geodir_sidebars)) {
|
| 1376 | 1383 | foreach ($geodir_sidebars as $val) {
|
| 1377 | 1384 | if (is_array($sidebars_widgets)) {
|
| 1378 | - if (array_key_exists($val, $sidebars_widgets)) |
|
| 1379 | - $geodir_old_sidebars[$val] = $sidebars_widgets[$val]; |
|
| 1380 | - else |
|
| 1381 | - $geodir_old_sidebars[$val] = array(); |
|
| 1385 | + if (array_key_exists($val, $sidebars_widgets)) { |
|
| 1386 | + $geodir_old_sidebars[$val] = $sidebars_widgets[$val]; |
|
| 1387 | + } else { |
|
| 1388 | + $geodir_old_sidebars[$val] = array(); |
|
| 1389 | + } |
|
| 1382 | 1390 | } |
| 1383 | 1391 | } |
| 1384 | 1392 | } |
@@ -1399,16 +1407,19 @@ discard block |
||
| 1399 | 1407 | {
|
| 1400 | 1408 | global $sidebars_widgets; |
| 1401 | 1409 | |
| 1402 | - if (!is_array($sidebars_widgets)) |
|
| 1403 | - $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1410 | + if (!is_array($sidebars_widgets)) { |
|
| 1411 | + $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1412 | + } |
|
| 1404 | 1413 | |
| 1405 | 1414 | if (is_array($sidebars_widgets)) {
|
| 1406 | 1415 | $geodir_old_sidebars = get_option('geodir_sidebars');
|
| 1407 | 1416 | if (is_array($geodir_old_sidebars)) {
|
| 1408 | 1417 | foreach ($geodir_old_sidebars as $key => $val) {
|
| 1409 | - if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1418 | + if(0 === strpos($key, 'geodir_')) { |
|
| 1419 | + // if gd widget |
|
| 1410 | 1420 | {
|
| 1411 | - $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
|
| 1421 | + $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
|
| 1422 | + } |
|
| 1412 | 1423 | } |
| 1413 | 1424 | |
| 1414 | 1425 | |
@@ -1544,20 +1555,25 @@ discard block |
||
| 1544 | 1555 | } |
| 1545 | 1556 | } |
| 1546 | 1557 | |
| 1547 | - if ($tab == 'post_info') |
|
| 1548 | - $is_display = (!empty($geodir_post_detail_fields)) ? true : false; |
|
| 1558 | + if ($tab == 'post_info') { |
|
| 1559 | + $is_display = (!empty($geodir_post_detail_fields)) ? true : false; |
|
| 1560 | + } |
|
| 1549 | 1561 | |
| 1550 | - if ($tab == 'post_images') |
|
| 1551 | - $is_display = (!empty($post_images)) ? true : false; |
|
| 1562 | + if ($tab == 'post_images') { |
|
| 1563 | + $is_display = (!empty($post_images)) ? true : false; |
|
| 1564 | + } |
|
| 1552 | 1565 | |
| 1553 | - if ($tab == 'post_video') |
|
| 1554 | - $is_display = (!empty($video)) ? true : false; |
|
| 1566 | + if ($tab == 'post_video') { |
|
| 1567 | + $is_display = (!empty($video)) ? true : false; |
|
| 1568 | + } |
|
| 1555 | 1569 | |
| 1556 | - if ($tab == 'special_offers') |
|
| 1557 | - $is_display = (!empty($special_offers)) ? true : false; |
|
| 1570 | + if ($tab == 'special_offers') { |
|
| 1571 | + $is_display = (!empty($special_offers)) ? true : false; |
|
| 1572 | + } |
|
| 1558 | 1573 | |
| 1559 | - if ($tab == 'reviews') |
|
| 1560 | - $is_display = (geodir_is_page('detail')) ? true : false;
|
|
| 1574 | + if ($tab == 'reviews') { |
|
| 1575 | + $is_display = (geodir_is_page('detail')) ? true : false; |
|
| 1576 | + } |
|
| 1561 | 1577 | |
| 1562 | 1578 | if ($tab == 'related_listing') {
|
| 1563 | 1579 | $message = __('No listings found which match your selection.', 'geodirectory');
|
@@ -1791,11 +1807,13 @@ discard block |
||
| 1791 | 1807 | $region_slug = $default_location->region_slug; |
| 1792 | 1808 | $city_slug = $default_location->city_slug; |
| 1793 | 1809 | |
| 1794 | - if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
|
| 1795 | - return $slug_exists = true; |
|
| 1810 | + if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) { |
|
| 1811 | + return $slug_exists = true; |
|
| 1812 | + } |
|
| 1796 | 1813 | |
| 1797 | - if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1798 | - return $slug_exists = true; |
|
| 1814 | + if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id)))) { |
|
| 1815 | + return $slug_exists = true; |
|
| 1816 | + } |
|
| 1799 | 1817 | |
| 1800 | 1818 | return $slug_exists; |
| 1801 | 1819 | } |
@@ -1837,40 +1855,31 @@ discard block |
||
| 1837 | 1855 | if(geodir_is_page('home')){
|
| 1838 | 1856 | $gd_page = 'home'; |
| 1839 | 1857 | $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
| 1840 | - } |
|
| 1841 | - elseif(geodir_is_page('detail')){
|
|
| 1858 | + } elseif(geodir_is_page('detail')){
|
|
| 1842 | 1859 | $gd_page = 'detail'; |
| 1843 | 1860 | $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
| 1844 | - } |
|
| 1845 | - elseif(geodir_is_page('pt')){
|
|
| 1861 | + } elseif(geodir_is_page('pt')){
|
|
| 1846 | 1862 | $gd_page = 'pt'; |
| 1847 | 1863 | $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
| 1848 | - } |
|
| 1849 | - elseif(geodir_is_page('listing')){
|
|
| 1864 | + } elseif(geodir_is_page('listing')){
|
|
| 1850 | 1865 | $gd_page = 'listing'; |
| 1851 | 1866 | $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
| 1852 | - } |
|
| 1853 | - elseif(geodir_is_page('location')){
|
|
| 1867 | + } elseif(geodir_is_page('location')){
|
|
| 1854 | 1868 | $gd_page = 'location'; |
| 1855 | 1869 | $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
| 1856 | - } |
|
| 1857 | - elseif(geodir_is_page('search')){
|
|
| 1870 | + } elseif(geodir_is_page('search')){
|
|
| 1858 | 1871 | $gd_page = 'search'; |
| 1859 | 1872 | $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
| 1860 | - } |
|
| 1861 | - elseif(geodir_is_page('add-listing')){
|
|
| 1873 | + } elseif(geodir_is_page('add-listing')){
|
|
| 1862 | 1874 | $gd_page = 'add-listing'; |
| 1863 | 1875 | $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
| 1864 | - } |
|
| 1865 | - elseif(geodir_is_page('author')){
|
|
| 1876 | + } elseif(geodir_is_page('author')){
|
|
| 1866 | 1877 | $gd_page = 'author'; |
| 1867 | 1878 | $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
| 1868 | - } |
|
| 1869 | - elseif(geodir_is_page('login')){
|
|
| 1879 | + } elseif(geodir_is_page('login')){
|
|
| 1870 | 1880 | $gd_page = 'login'; |
| 1871 | 1881 | $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
| 1872 | - } |
|
| 1873 | - elseif(geodir_is_page('listing-success')){
|
|
| 1882 | + } elseif(geodir_is_page('listing-success')){
|
|
| 1874 | 1883 | $gd_page = 'listing-success'; |
| 1875 | 1884 | $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
| 1876 | 1885 | } |
@@ -1948,11 +1957,13 @@ discard block |
||
| 1948 | 1957 | |
| 1949 | 1958 | if (!get_option('geodir_remove_url_seperator')) {
|
| 1950 | 1959 | |
| 1951 | - if (get_option('geodir_listingurl_separator'))
|
|
| 1952 | - delete_option('geodir_listingurl_separator');
|
|
| 1960 | + if (get_option('geodir_listingurl_separator')) { |
|
| 1961 | + delete_option('geodir_listingurl_separator'); |
|
| 1962 | + } |
|
| 1953 | 1963 | |
| 1954 | - if (get_option('geodir_detailurl_separator'))
|
|
| 1955 | - delete_option('geodir_detailurl_separator');
|
|
| 1964 | + if (get_option('geodir_detailurl_separator')) { |
|
| 1965 | + delete_option('geodir_detailurl_separator'); |
|
| 1966 | + } |
|
| 1956 | 1967 | |
| 1957 | 1968 | flush_rewrite_rules(false); |
| 1958 | 1969 | |
@@ -1976,8 +1987,9 @@ discard block |
||
| 1976 | 1987 | {
|
| 1977 | 1988 | foreach ($permalink_arr as $key => $value) {
|
| 1978 | 1989 | |
| 1979 | - if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') |
|
| 1980 | - unset($permalink_arr[$key]); |
|
| 1990 | + if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') { |
|
| 1991 | + unset($permalink_arr[$key]); |
|
| 1992 | + } |
|
| 1981 | 1993 | |
| 1982 | 1994 | } |
| 1983 | 1995 | |
@@ -2112,16 +2124,18 @@ discard block |
||
| 2112 | 2124 | |
| 2113 | 2125 | $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
| 2114 | 2126 | |
| 2115 | - if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
|
| 2116 | - $tabs_arr['post_video']['heading_text'] = $field_title; |
|
| 2127 | + if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') { |
|
| 2128 | + $tabs_arr['post_video']['heading_text'] = $field_title; |
|
| 2129 | + } |
|
| 2117 | 2130 | } |
| 2118 | 2131 | |
| 2119 | 2132 | if (array_key_exists('special_offers', $tabs_arr)) {
|
| 2120 | 2133 | |
| 2121 | 2134 | $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
| 2122 | 2135 | |
| 2123 | - if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
|
| 2124 | - $tabs_arr['special_offers']['heading_text'] = $field_title; |
|
| 2136 | + if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') { |
|
| 2137 | + $tabs_arr['special_offers']['heading_text'] = $field_title; |
|
| 2138 | + } |
|
| 2125 | 2139 | } |
| 2126 | 2140 | |
| 2127 | 2141 | } |
@@ -2176,8 +2190,9 @@ discard block |
||
| 2176 | 2190 | |
| 2177 | 2191 | $all_postypes = geodir_get_posttypes(); |
| 2178 | 2192 | |
| 2179 | - if (!in_array($post_type, $all_postypes) || !is_admin()) |
|
| 2180 | - return false; |
|
| 2193 | + if (!in_array($post_type, $all_postypes) || !is_admin()) { |
|
| 2194 | + return false; |
|
| 2195 | + } |
|
| 2181 | 2196 | |
| 2182 | 2197 | $uploads = wp_upload_dir(); |
| 2183 | 2198 | |
@@ -2251,8 +2266,9 @@ discard block |
||
| 2251 | 2266 | $file_info = pathinfo($attach->file); |
| 2252 | 2267 | |
| 2253 | 2268 | $sub_dir = ''; |
| 2254 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 2255 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 2269 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
|
| 2270 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 2271 | + } |
|
| 2256 | 2272 | |
| 2257 | 2273 | $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
| 2258 | 2274 | $uploads_path = $uploads['basedir']; |
@@ -2273,8 +2289,9 @@ discard block |
||
| 2273 | 2289 | |
| 2274 | 2290 | if (!empty($attachment_data)) {
|
| 2275 | 2291 | |
| 2276 | - if ($attachment_data->ID) |
|
| 2277 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2292 | + if ($attachment_data->ID) { |
|
| 2293 | + $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID); |
|
| 2294 | + } |
|
| 2278 | 2295 | |
| 2279 | 2296 | } else {
|
| 2280 | 2297 | |
@@ -2470,7 +2487,7 @@ discard block |
||
| 2470 | 2487 | $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
| 2471 | 2488 | $variables_array['value'] = ''; |
| 2472 | 2489 | $variables_array['value'] = $post->{$type['htmlvar_name']};
|
| 2473 | - }else{
|
|
| 2490 | + } else{
|
|
| 2474 | 2491 | $i = 0; |
| 2475 | 2492 | $fieldset_count++; |
| 2476 | 2493 | $field_set_start = 1; |
@@ -2171,7 +2171,7 @@ discard block |
||
| 2171 | 2171 | * @global object $wpdb WordPress Database object. |
| 2172 | 2172 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 2173 | 2173 | * @param int $attachment_id Attachment ID. |
| 2174 | - * @return bool|void Returns false on failure. |
|
| 2174 | + * @return false|null Returns false on failure. |
|
| 2175 | 2175 | */ |
| 2176 | 2176 | function geodirectory_before_featured_image_delete($attachment_id) |
| 2177 | 2177 | {
|
@@ -2344,6 +2344,7 @@ discard block |
||
| 2344 | 2344 | * @global object $wpdb WordPress Database object. |
| 2345 | 2345 | * @global object $current_user Current user object. |
| 2346 | 2346 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 2347 | + * @param string $user_id |
|
| 2347 | 2348 | * @return array User listing count for each post type. |
| 2348 | 2349 | */ |
| 2349 | 2350 | function geodir_user_post_listing_count($user_id=null) |
@@ -2680,7 +2681,7 @@ discard block |
||
| 2680 | 2681 | * @since 1.6.16 |
| 2681 | 2682 | * @package GeoDirectory |
| 2682 | 2683 | * @param array $classes The class array of the HTML element. |
| 2683 | - * @return array Modified class array. |
|
| 2684 | + * @return string[] Modified class array. |
|
| 2684 | 2685 | */ |
| 2685 | 2686 | function geodir_body_class_active_map($classes = array()) {
|
| 2686 | 2687 | $classes[] = 'gd-map-' . geodir_map_name(); |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | */ |
| 20 | 20 | function geodir_get_ajax_url() |
| 21 | 21 | {
|
| 22 | - return admin_url('admin-ajax.php?action=geodir_ajax_action');
|
|
| 22 | + return admin_url('admin-ajax.php?action=geodir_ajax_action');
|
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | ///////////////////// |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | add_filter('query_vars', 'geodir_add_geodir_page_var');
|
| 88 | 88 | add_action('wp', 'geodir_add_page_id_in_query_var'); // problem fix in wordpress 3.8
|
| 89 | 89 | if (get_option('permalink_structure') != '')
|
| 90 | - add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
|
|
| 90 | + add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
|
|
| 91 | 91 | |
| 92 | 92 | add_filter('parse_query', 'geodir_modified_query');
|
| 93 | 93 | |
@@ -154,14 +154,14 @@ discard block |
||
| 154 | 154 | /* POST AND LOOP ACTIONS */ |
| 155 | 155 | //////////////////////// |
| 156 | 156 | if (!is_admin()) {
|
| 157 | - add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtural page from everywhere
|
|
| 158 | - add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
|
|
| 159 | - /** Exclude Virtual Pages From Pages List **/ |
|
| 160 | - add_action('pre_get_posts', 'set_listing_request', 0);
|
|
| 161 | - add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
|
|
| 162 | - add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
|
|
| 163 | - add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
|
|
| 164 | - add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
|
|
| 157 | + add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtural page from everywhere
|
|
| 158 | + add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
|
|
| 159 | + /** Exclude Virtual Pages From Pages List **/ |
|
| 160 | + add_action('pre_get_posts', 'set_listing_request', 0);
|
|
| 161 | + add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
|
|
| 162 | + add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
|
|
| 163 | + add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
|
|
| 164 | + add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
|
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | |
@@ -222,12 +222,12 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | function geodir_unset_prev_theme_nav_location($newname) |
| 224 | 224 | {
|
| 225 | - $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 226 | - if ($geodir_theme_location) {
|
|
| 227 | - update_option('geodir_theme_location_nav', $geodir_theme_location);
|
|
| 228 | - } else {
|
|
| 229 | - update_option('geodir_theme_location_nav', '');
|
|
| 230 | - } |
|
| 225 | + $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 226 | + if ($geodir_theme_location) {
|
|
| 227 | + update_option('geodir_theme_location_nav', $geodir_theme_location);
|
|
| 228 | + } else {
|
|
| 229 | + update_option('geodir_theme_location_nav', '');
|
|
| 230 | + } |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /// add action for theme switch to blank previous theme navigation location setting |
@@ -248,32 +248,32 @@ discard block |
||
| 248 | 248 | */ |
| 249 | 249 | function geodir_add_post_filters() |
| 250 | 250 | {
|
| 251 | - /** |
|
| 252 | - * Contains all function for filtering listing. |
|
| 253 | - * |
|
| 254 | - * @since 1.0.0 |
|
| 255 | - * @package GeoDirectory |
|
| 256 | - */ |
|
| 257 | - include_once('geodirectory-functions/listing_filters.php');
|
|
| 251 | + /** |
|
| 252 | + * Contains all function for filtering listing. |
|
| 253 | + * |
|
| 254 | + * @since 1.0.0 |
|
| 255 | + * @package GeoDirectory |
|
| 256 | + */ |
|
| 257 | + include_once('geodirectory-functions/listing_filters.php');
|
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | |
| 261 | 261 | if (!function_exists('geodir_init_defaults')) {
|
| 262 | - /** |
|
| 263 | - * Calls the function to register the GeoDirectory default CPT and taxonomies. |
|
| 264 | - * |
|
| 265 | - * @since 1.0.0 |
|
| 266 | - * @package GeoDirectory |
|
| 267 | - */ |
|
| 268 | - function geodir_init_defaults() |
|
| 269 | - {
|
|
| 270 | - if (function_exists('geodir_register_defaults')) {
|
|
| 262 | + /** |
|
| 263 | + * Calls the function to register the GeoDirectory default CPT and taxonomies. |
|
| 264 | + * |
|
| 265 | + * @since 1.0.0 |
|
| 266 | + * @package GeoDirectory |
|
| 267 | + */ |
|
| 268 | + function geodir_init_defaults() |
|
| 269 | + {
|
|
| 270 | + if (function_exists('geodir_register_defaults')) {
|
|
| 271 | 271 | |
| 272 | - geodir_register_defaults(); |
|
| 272 | + geodir_register_defaults(); |
|
| 273 | 273 | |
| 274 | - } |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | - } |
|
| 276 | + } |
|
| 277 | 277 | } |
| 278 | 278 | |
| 279 | 279 | |
@@ -295,26 +295,26 @@ discard block |
||
| 295 | 295 | // CALLED ON 'sidebars_widgets' FILTER |
| 296 | 296 | |
| 297 | 297 | if (!function_exists('geodir_restrict_widget')) {
|
| 298 | - /** |
|
| 299 | - * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page. |
|
| 300 | - * |
|
| 301 | - * @global bool $is_listing Sets the global value to true if on a GD category page. False if not. |
|
| 302 | - * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not. |
|
| 303 | - * @since 1.0.0 |
|
| 304 | - * @package GeoDirectory |
|
| 305 | - */ |
|
| 306 | - function geodir_restrict_widget() |
|
| 307 | - {
|
|
| 308 | - global $is_listing, $is_single_place; |
|
| 298 | + /** |
|
| 299 | + * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page. |
|
| 300 | + * |
|
| 301 | + * @global bool $is_listing Sets the global value to true if on a GD category page. False if not. |
|
| 302 | + * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not. |
|
| 303 | + * @since 1.0.0 |
|
| 304 | + * @package GeoDirectory |
|
| 305 | + */ |
|
| 306 | + function geodir_restrict_widget() |
|
| 307 | + {
|
|
| 308 | + global $is_listing, $is_single_place; |
|
| 309 | 309 | |
| 310 | - // set is listing |
|
| 311 | - (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
|
|
| 310 | + // set is listing |
|
| 311 | + (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
|
|
| 312 | 312 | |
| 313 | - // set is single place |
|
| 314 | - (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
|
|
| 313 | + // set is single place |
|
| 314 | + (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
|
|
| 315 | 315 | |
| 316 | 316 | |
| 317 | - } |
|
| 317 | + } |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | 320 | |
@@ -335,31 +335,31 @@ discard block |
||
| 335 | 335 | */ |
| 336 | 336 | function geodir_detail_page_sidebar_content_sorting() |
| 337 | 337 | {
|
| 338 | - $arr_detail_page_sidebar_content = |
|
| 339 | - /** |
|
| 340 | - * An array of functions to be called to be displayed on the details (post) page sidebar. |
|
| 341 | - * |
|
| 342 | - * This filter can be used to remove sections of the details page sidebar, |
|
| 343 | - * add new sections or rearrange the order of the sections. |
|
| 344 | - * |
|
| 345 | - * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
|
|
| 346 | - * @since 1.0.0 |
|
| 347 | - */ |
|
| 348 | - apply_filters('geodir_detail_page_sidebar_content',
|
|
| 349 | - array('geodir_social_sharing_buttons',
|
|
| 350 | - 'geodir_detail_page_google_analytics', |
|
| 351 | - 'geodir_edit_post_link', |
|
| 352 | - 'geodir_detail_page_review_rating', |
|
| 353 | - 'geodir_detail_page_more_info' |
|
| 354 | - ) // end of array |
|
| 355 | - ); // end of apply filter |
|
| 356 | - if (!empty($arr_detail_page_sidebar_content)) {
|
|
| 357 | - foreach ($arr_detail_page_sidebar_content as $content_function) {
|
|
| 358 | - if (function_exists($content_function)) {
|
|
| 359 | - add_action('geodir_detail_page_sidebar', $content_function);
|
|
| 360 | - } |
|
| 361 | - } |
|
| 362 | - } |
|
| 338 | + $arr_detail_page_sidebar_content = |
|
| 339 | + /** |
|
| 340 | + * An array of functions to be called to be displayed on the details (post) page sidebar. |
|
| 341 | + * |
|
| 342 | + * This filter can be used to remove sections of the details page sidebar, |
|
| 343 | + * add new sections or rearrange the order of the sections. |
|
| 344 | + * |
|
| 345 | + * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
|
|
| 346 | + * @since 1.0.0 |
|
| 347 | + */ |
|
| 348 | + apply_filters('geodir_detail_page_sidebar_content',
|
|
| 349 | + array('geodir_social_sharing_buttons',
|
|
| 350 | + 'geodir_detail_page_google_analytics', |
|
| 351 | + 'geodir_edit_post_link', |
|
| 352 | + 'geodir_detail_page_review_rating', |
|
| 353 | + 'geodir_detail_page_more_info' |
|
| 354 | + ) // end of array |
|
| 355 | + ); // end of apply filter |
|
| 356 | + if (!empty($arr_detail_page_sidebar_content)) {
|
|
| 357 | + foreach ($arr_detail_page_sidebar_content as $content_function) {
|
|
| 358 | + if (function_exists($content_function)) {
|
|
| 359 | + add_action('geodir_detail_page_sidebar', $content_function);
|
|
| 360 | + } |
|
| 361 | + } |
|
| 362 | + } |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1);
|
@@ -374,14 +374,14 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | function geodir_add_to_favourite_link() |
| 376 | 376 | {
|
| 377 | - global $post, $preview; |
|
| 378 | - if (!$preview && geodir_is_page('detail')) {
|
|
| 379 | - ?> |
|
| 377 | + global $post, $preview; |
|
| 378 | + if (!$preview && geodir_is_page('detail')) {
|
|
| 379 | + ?> |
|
| 380 | 380 | <p class="edit_link"> |
| 381 | 381 | <?php geodir_favourite_html($post->post_author, $post->ID); ?> |
| 382 | 382 | </p> |
| 383 | 383 | <?php |
| 384 | - } |
|
| 384 | + } |
|
| 385 | 385 | } |
| 386 | 386 | |
| 387 | 387 | /** |
@@ -395,41 +395,41 @@ discard block |
||
| 395 | 395 | */ |
| 396 | 396 | function geodir_social_sharing_buttons() |
| 397 | 397 | {
|
| 398 | - global $preview; |
|
| 399 | - ob_start(); // Start buffering; |
|
| 400 | - /** |
|
| 401 | - * This action is called before the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 402 | - * |
|
| 403 | - * @since 1.0.0 |
|
| 404 | - */ |
|
| 405 | - do_action('geodir_before_social_sharing_buttons');
|
|
| 406 | - if (!$preview) {
|
|
| 407 | - ?> |
|
| 398 | + global $preview; |
|
| 399 | + ob_start(); // Start buffering; |
|
| 400 | + /** |
|
| 401 | + * This action is called before the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 402 | + * |
|
| 403 | + * @since 1.0.0 |
|
| 404 | + */ |
|
| 405 | + do_action('geodir_before_social_sharing_buttons');
|
|
| 406 | + if (!$preview) {
|
|
| 407 | + ?> |
|
| 408 | 408 | <div class="likethis"> |
| 409 | 409 | <?php geodir_twitter_tweet_button(); ?> |
| 410 | 410 | <?php geodir_fb_like_button(); ?> |
| 411 | 411 | <?php geodir_google_plus_button(); ?> |
| 412 | 412 | </div> |
| 413 | 413 | <?php |
| 414 | - }// end of if, if its a preview or not |
|
| 415 | - |
|
| 416 | - /** |
|
| 417 | - * This action is called after the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 418 | - * |
|
| 419 | - * @since 1.0.0 |
|
| 420 | - */ |
|
| 421 | - do_action('geodir_after_social_sharing_buttons');
|
|
| 422 | - $content_html = ob_get_clean(); |
|
| 423 | - if (trim($content_html) != '') |
|
| 424 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | - if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | - /** |
|
| 427 | - * Filter the geodir_social_sharing_buttons() function content. |
|
| 428 | - * |
|
| 429 | - * @param string $content_html The output html of the geodir_social_sharing_buttons() function. |
|
| 430 | - */ |
|
| 431 | - echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
|
|
| 432 | - } |
|
| 414 | + }// end of if, if its a preview or not |
|
| 415 | + |
|
| 416 | + /** |
|
| 417 | + * This action is called after the social buttons twitter,facebook and google plus are output in a containing div. |
|
| 418 | + * |
|
| 419 | + * @since 1.0.0 |
|
| 420 | + */ |
|
| 421 | + do_action('geodir_after_social_sharing_buttons');
|
|
| 422 | + $content_html = ob_get_clean(); |
|
| 423 | + if (trim($content_html) != '') |
|
| 424 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | + if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | + /** |
|
| 427 | + * Filter the geodir_social_sharing_buttons() function content. |
|
| 428 | + * |
|
| 429 | + * @param string $content_html The output html of the geodir_social_sharing_buttons() function. |
|
| 430 | + */ |
|
| 431 | + echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
|
|
| 432 | + } |
|
| 433 | 433 | |
| 434 | 434 | |
| 435 | 435 | } |
@@ -447,46 +447,46 @@ discard block |
||
| 447 | 447 | */ |
| 448 | 448 | function geodir_edit_post_link() |
| 449 | 449 | {
|
| 450 | - global $post, $preview; |
|
| 451 | - ob_start(); // Start buffering; |
|
| 452 | - /** |
|
| 453 | - * This is called before the edit post link html in the function geodir_edit_post_link() |
|
| 454 | - * |
|
| 455 | - * @since 1.0.0 |
|
| 456 | - */ |
|
| 457 | - do_action('geodir_before_edit_post_link');
|
|
| 458 | - if (!$preview) {
|
|
| 459 | - $is_current_user_owner = geodir_listing_belong_to_current_user(); |
|
| 450 | + global $post, $preview; |
|
| 451 | + ob_start(); // Start buffering; |
|
| 452 | + /** |
|
| 453 | + * This is called before the edit post link html in the function geodir_edit_post_link() |
|
| 454 | + * |
|
| 455 | + * @since 1.0.0 |
|
| 456 | + */ |
|
| 457 | + do_action('geodir_before_edit_post_link');
|
|
| 458 | + if (!$preview) {
|
|
| 459 | + $is_current_user_owner = geodir_listing_belong_to_current_user(); |
|
| 460 | 460 | |
| 461 | - if ($is_current_user_owner) {
|
|
| 462 | - $post_id = $post->ID; |
|
| 461 | + if ($is_current_user_owner) {
|
|
| 462 | + $post_id = $post->ID; |
|
| 463 | 463 | |
| 464 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 465 | - $post_id = (int)$_REQUEST['pid']; |
|
| 466 | - } |
|
| 464 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 465 | + $post_id = (int)$_REQUEST['pid']; |
|
| 466 | + } |
|
| 467 | 467 | |
| 468 | - $postlink = get_permalink(geodir_add_listing_page_id()); |
|
| 469 | - $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
|
| 470 | - echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 471 | - } |
|
| 472 | - }// end of if, if its a preview or not |
|
| 473 | - /** |
|
| 474 | - * This is called after the edit post link html in the function geodir_edit_post_link() |
|
| 475 | - * |
|
| 476 | - * @since 1.0.0 |
|
| 477 | - */ |
|
| 478 | - do_action('geodir_after_edit_post_link');
|
|
| 479 | - $content_html = ob_get_clean(); |
|
| 480 | - if (trim($content_html) != '') |
|
| 481 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | - if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | - /** |
|
| 484 | - * Filter the geodir_edit_post_link() function content. |
|
| 485 | - * |
|
| 486 | - * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 487 | - */ |
|
| 488 | - echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
|
|
| 489 | - } |
|
| 468 | + $postlink = get_permalink(geodir_add_listing_page_id()); |
|
| 469 | + $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
|
| 470 | + echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 471 | + } |
|
| 472 | + }// end of if, if its a preview or not |
|
| 473 | + /** |
|
| 474 | + * This is called after the edit post link html in the function geodir_edit_post_link() |
|
| 475 | + * |
|
| 476 | + * @since 1.0.0 |
|
| 477 | + */ |
|
| 478 | + do_action('geodir_after_edit_post_link');
|
|
| 479 | + $content_html = ob_get_clean(); |
|
| 480 | + if (trim($content_html) != '') |
|
| 481 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | + if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | + /** |
|
| 484 | + * Filter the geodir_edit_post_link() function content. |
|
| 485 | + * |
|
| 486 | + * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 487 | + */ |
|
| 488 | + echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
|
|
| 489 | + } |
|
| 490 | 490 | } |
| 491 | 491 | |
| 492 | 492 | /** |
@@ -500,42 +500,42 @@ discard block |
||
| 500 | 500 | */ |
| 501 | 501 | function geodir_detail_page_google_analytics() |
| 502 | 502 | {
|
| 503 | - global $post,$preview; |
|
| 504 | - if($preview){return '';}
|
|
| 505 | - $package_info = array(); |
|
| 506 | - $package_info = geodir_post_package_info($package_info, $post); |
|
| 503 | + global $post,$preview; |
|
| 504 | + if($preview){return '';}
|
|
| 505 | + $package_info = array(); |
|
| 506 | + $package_info = geodir_post_package_info($package_info, $post); |
|
| 507 | 507 | |
| 508 | - $id = trim(get_option('geodir_ga_account_id'));
|
|
| 508 | + $id = trim(get_option('geodir_ga_account_id'));
|
|
| 509 | 509 | |
| 510 | - if (!$id) {
|
|
| 511 | - return; //if no Google Analytics ID then bail. |
|
| 512 | - } |
|
| 510 | + if (!$id) {
|
|
| 511 | + return; //if no Google Analytics ID then bail. |
|
| 512 | + } |
|
| 513 | 513 | |
| 514 | - ob_start(); // Start buffering; |
|
| 515 | - /** |
|
| 516 | - * This is called before the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 517 | - * |
|
| 518 | - * @since 1.0.0 |
|
| 519 | - */ |
|
| 520 | - do_action('geodir_before_google_analytics');
|
|
| 514 | + ob_start(); // Start buffering; |
|
| 515 | + /** |
|
| 516 | + * This is called before the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 517 | + * |
|
| 518 | + * @since 1.0.0 |
|
| 519 | + */ |
|
| 520 | + do_action('geodir_before_google_analytics');
|
|
| 521 | 521 | |
| 522 | - $refresh_time = get_option('geodir_ga_refresh_time', 5);
|
|
| 523 | - /** |
|
| 524 | - * Filter the time interval to check & refresh new users results. |
|
| 525 | - * |
|
| 526 | - * @since 1.5.9 |
|
| 527 | - * |
|
| 528 | - * @param int $refresh_time Time interval to check & refresh new users results. |
|
| 529 | - */ |
|
| 530 | - $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
|
|
| 531 | - $refresh_time = absint($refresh_time * 1000); |
|
| 522 | + $refresh_time = get_option('geodir_ga_refresh_time', 5);
|
|
| 523 | + /** |
|
| 524 | + * Filter the time interval to check & refresh new users results. |
|
| 525 | + * |
|
| 526 | + * @since 1.5.9 |
|
| 527 | + * |
|
| 528 | + * @param int $refresh_time Time interval to check & refresh new users results. |
|
| 529 | + */ |
|
| 530 | + $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
|
|
| 531 | + $refresh_time = absint($refresh_time * 1000); |
|
| 532 | 532 | |
| 533 | - $hide_refresh = get_option('geodir_ga_auto_refresh');
|
|
| 533 | + $hide_refresh = get_option('geodir_ga_auto_refresh');
|
|
| 534 | 534 | |
| 535 | - $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
|
| 536 | - if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 537 | - $page_url = urlencode($_SERVER['REQUEST_URI']); |
|
| 538 | - ?> |
|
| 535 | + $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
|
| 536 | + if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 537 | + $page_url = urlencode($_SERVER['REQUEST_URI']); |
|
| 538 | + ?> |
|
| 539 | 539 | <script type="text/javascript"> |
| 540 | 540 | var gd_gaTimeOut; |
| 541 | 541 | var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
|
@@ -787,15 +787,15 @@ discard block |
||
| 787 | 787 | var labels = results[1].rows.map(function(row) { return +row[0]; });
|
| 788 | 788 | |
| 789 | 789 | <?php |
| 790 | - // Here we list the shorthand days of the week so it can be used in translation. |
|
| 791 | - __("Mon",'geodirectory');
|
|
| 792 | - __("Tue",'geodirectory');
|
|
| 793 | - __("Wed",'geodirectory');
|
|
| 794 | - __("Thu",'geodirectory');
|
|
| 795 | - __("Fri",'geodirectory');
|
|
| 796 | - __("Sat",'geodirectory');
|
|
| 797 | - __("Sun",'geodirectory');
|
|
| 798 | - ?> |
|
| 790 | + // Here we list the shorthand days of the week so it can be used in translation. |
|
| 791 | + __("Mon",'geodirectory');
|
|
| 792 | + __("Tue",'geodirectory');
|
|
| 793 | + __("Wed",'geodirectory');
|
|
| 794 | + __("Thu",'geodirectory');
|
|
| 795 | + __("Fri",'geodirectory');
|
|
| 796 | + __("Sat",'geodirectory');
|
|
| 797 | + __("Sun",'geodirectory');
|
|
| 798 | + ?> |
|
| 799 | 799 | |
| 800 | 800 | labels = [ |
| 801 | 801 | "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
|
@@ -1044,24 +1044,24 @@ discard block |
||
| 1044 | 1044 | </span> |
| 1045 | 1045 | |
| 1046 | 1046 | <?php |
| 1047 | - } |
|
| 1048 | - /** |
|
| 1049 | - * This is called after the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 1050 | - * |
|
| 1051 | - * @since 1.0.0 |
|
| 1052 | - */ |
|
| 1053 | - do_action('geodir_after_google_analytics');
|
|
| 1054 | - $content_html = ob_get_clean(); |
|
| 1055 | - if (trim($content_html) != '') |
|
| 1056 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | - if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | - /** |
|
| 1059 | - * Filter the geodir_edit_post_link() function content. |
|
| 1060 | - * |
|
| 1061 | - * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 1062 | - */ |
|
| 1063 | - echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
|
|
| 1064 | - } |
|
| 1047 | + } |
|
| 1048 | + /** |
|
| 1049 | + * This is called after the edit post link html in the function geodir_detail_page_google_analytics() |
|
| 1050 | + * |
|
| 1051 | + * @since 1.0.0 |
|
| 1052 | + */ |
|
| 1053 | + do_action('geodir_after_google_analytics');
|
|
| 1054 | + $content_html = ob_get_clean(); |
|
| 1055 | + if (trim($content_html) != '') |
|
| 1056 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | + if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | + /** |
|
| 1059 | + * Filter the geodir_edit_post_link() function content. |
|
| 1060 | + * |
|
| 1061 | + * @param string $content_html The output html of the geodir_edit_post_link() function. |
|
| 1062 | + */ |
|
| 1063 | + echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
|
|
| 1064 | + } |
|
| 1065 | 1065 | } |
| 1066 | 1066 | |
| 1067 | 1067 | /** |
@@ -1078,94 +1078,94 @@ discard block |
||
| 1078 | 1078 | */ |
| 1079 | 1079 | function geodir_detail_page_review_rating() |
| 1080 | 1080 | {
|
| 1081 | - global $post, $preview, $post_images; |
|
| 1081 | + global $post, $preview, $post_images; |
|
| 1082 | 1082 | |
| 1083 | - if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
|
|
| 1084 | - return; |
|
| 1085 | - } |
|
| 1086 | - ob_start(); // Start buffering; |
|
| 1087 | - /** |
|
| 1088 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1089 | - * |
|
| 1090 | - * This is called outside the check for an actual rating and the check for preview page. |
|
| 1091 | - * |
|
| 1092 | - * @since 1.0.0 |
|
| 1093 | - */ |
|
| 1094 | - do_action('geodir_before_detail_page_review_rating');
|
|
| 1095 | - |
|
| 1096 | - $comment_count = geodir_get_review_count_total($post->ID); |
|
| 1097 | - $post_avgratings = geodir_get_post_rating($post->ID); |
|
| 1098 | - |
|
| 1099 | - if ($post_avgratings != 0 && !$preview) {
|
|
| 1100 | - /** |
|
| 1101 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1102 | - * |
|
| 1103 | - * This is called inside the check for an actual rating and the check for preview page. |
|
| 1104 | - * |
|
| 1105 | - * @since 1.0.0 |
|
| 1106 | - * @param float $post_avgratings Average rating for the surrent post. |
|
| 1107 | - * @param int $post->ID Current post ID. |
|
| 1108 | - */ |
|
| 1109 | - do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1110 | - |
|
| 1111 | - $html = '<p style=" float:left;">'; |
|
| 1112 | - $html .= geodir_get_rating_stars($post_avgratings, $post->ID); |
|
| 1113 | - $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">'; |
|
| 1114 | - $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings; |
|
| 1083 | + if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
|
|
| 1084 | + return; |
|
| 1085 | + } |
|
| 1086 | + ob_start(); // Start buffering; |
|
| 1087 | + /** |
|
| 1088 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1089 | + * |
|
| 1090 | + * This is called outside the check for an actual rating and the check for preview page. |
|
| 1091 | + * |
|
| 1092 | + * @since 1.0.0 |
|
| 1093 | + */ |
|
| 1094 | + do_action('geodir_before_detail_page_review_rating');
|
|
| 1095 | + |
|
| 1096 | + $comment_count = geodir_get_review_count_total($post->ID); |
|
| 1097 | + $post_avgratings = geodir_get_post_rating($post->ID); |
|
| 1098 | + |
|
| 1099 | + if ($post_avgratings != 0 && !$preview) {
|
|
| 1100 | + /** |
|
| 1101 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1102 | + * |
|
| 1103 | + * This is called inside the check for an actual rating and the check for preview page. |
|
| 1104 | + * |
|
| 1105 | + * @since 1.0.0 |
|
| 1106 | + * @param float $post_avgratings Average rating for the surrent post. |
|
| 1107 | + * @param int $post->ID Current post ID. |
|
| 1108 | + */ |
|
| 1109 | + do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1110 | + |
|
| 1111 | + $html = '<p style=" float:left;">'; |
|
| 1112 | + $html .= geodir_get_rating_stars($post_avgratings, $post->ID); |
|
| 1113 | + $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">'; |
|
| 1114 | + $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings; |
|
| 1115 | 1115 | |
| 1116 | 1116 | $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
|
| 1117 | 1117 | |
| 1118 | 1118 | $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
|
| 1119 | 1119 | |
| 1120 | - $html .= '<span class="item">'; |
|
| 1121 | - $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1120 | + $html .= '<span class="item">'; |
|
| 1121 | + $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1122 | 1122 | |
| 1123 | - if ($post_images) {
|
|
| 1124 | - foreach ($post_images as $img) {
|
|
| 1125 | - $post_img = $img->src; |
|
| 1126 | - break; |
|
| 1127 | - } |
|
| 1128 | - } |
|
| 1129 | - |
|
| 1130 | - if (isset($post_img) && $post_img) {
|
|
| 1131 | - $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1132 | - } |
|
| 1133 | - |
|
| 1134 | - $html .= '</span>'; |
|
| 1135 | - |
|
| 1136 | - echo $html .= '</div>'; |
|
| 1137 | - /** |
|
| 1138 | - * This is called after the rating html in the function geodir_detail_page_review_rating(). |
|
| 1139 | - * |
|
| 1140 | - * This is called inside the check for an actual rating and the check for preview page. |
|
| 1141 | - * |
|
| 1142 | - * @since 1.0.0 |
|
| 1143 | - * @param float $post_avgratings Average rating for the surrent post. |
|
| 1144 | - * @param int $post->ID Current post ID. |
|
| 1145 | - */ |
|
| 1146 | - do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1147 | - } |
|
| 1148 | - /** |
|
| 1149 | - * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1150 | - * |
|
| 1151 | - * This is called outside the check for an actual rating and the check for preview page. |
|
| 1152 | - * |
|
| 1153 | - * @since 1.0.0 |
|
| 1154 | - */ |
|
| 1155 | - do_action('geodir_after_detail_page_review_rating');
|
|
| 1156 | - $content_html = ob_get_clean(); |
|
| 1157 | - if (trim($content_html) != '') {
|
|
| 1158 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1159 | - } |
|
| 1160 | - if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1161 | - /** |
|
| 1162 | - * Filter the geodir_detail_page_review_rating() function content. |
|
| 1163 | - * |
|
| 1164 | - * @since 1.0.0 |
|
| 1165 | - * @param string $content_html The output html of the geodir_detail_page_review_rating() function. |
|
| 1166 | - */ |
|
| 1167 | - echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
|
|
| 1168 | - } |
|
| 1123 | + if ($post_images) {
|
|
| 1124 | + foreach ($post_images as $img) {
|
|
| 1125 | + $post_img = $img->src; |
|
| 1126 | + break; |
|
| 1127 | + } |
|
| 1128 | + } |
|
| 1129 | + |
|
| 1130 | + if (isset($post_img) && $post_img) {
|
|
| 1131 | + $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1132 | + } |
|
| 1133 | + |
|
| 1134 | + $html .= '</span>'; |
|
| 1135 | + |
|
| 1136 | + echo $html .= '</div>'; |
|
| 1137 | + /** |
|
| 1138 | + * This is called after the rating html in the function geodir_detail_page_review_rating(). |
|
| 1139 | + * |
|
| 1140 | + * This is called inside the check for an actual rating and the check for preview page. |
|
| 1141 | + * |
|
| 1142 | + * @since 1.0.0 |
|
| 1143 | + * @param float $post_avgratings Average rating for the surrent post. |
|
| 1144 | + * @param int $post->ID Current post ID. |
|
| 1145 | + */ |
|
| 1146 | + do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
|
|
| 1147 | + } |
|
| 1148 | + /** |
|
| 1149 | + * This is called before the rating html in the function geodir_detail_page_review_rating(). |
|
| 1150 | + * |
|
| 1151 | + * This is called outside the check for an actual rating and the check for preview page. |
|
| 1152 | + * |
|
| 1153 | + * @since 1.0.0 |
|
| 1154 | + */ |
|
| 1155 | + do_action('geodir_after_detail_page_review_rating');
|
|
| 1156 | + $content_html = ob_get_clean(); |
|
| 1157 | + if (trim($content_html) != '') {
|
|
| 1158 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1159 | + } |
|
| 1160 | + if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1161 | + /** |
|
| 1162 | + * Filter the geodir_detail_page_review_rating() function content. |
|
| 1163 | + * |
|
| 1164 | + * @since 1.0.0 |
|
| 1165 | + * @param string $content_html The output html of the geodir_detail_page_review_rating() function. |
|
| 1166 | + */ |
|
| 1167 | + echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
|
|
| 1168 | + } |
|
| 1169 | 1169 | } |
| 1170 | 1170 | |
| 1171 | 1171 | /** |
@@ -1177,35 +1177,35 @@ discard block |
||
| 1177 | 1177 | */ |
| 1178 | 1178 | function geodir_detail_page_more_info() |
| 1179 | 1179 | {
|
| 1180 | - ob_start(); // Start buffering; |
|
| 1181 | - /** |
|
| 1182 | - * This is called before the info section html. |
|
| 1183 | - * |
|
| 1184 | - * @since 1.0.0 |
|
| 1185 | - */ |
|
| 1186 | - do_action('geodir_before_detail_page_more_info');
|
|
| 1187 | - if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
|
|
| 1188 | - echo $geodir_post_detail_fields; |
|
| 1189 | - } |
|
| 1190 | - /** |
|
| 1191 | - * This is called after the info section html. |
|
| 1192 | - * |
|
| 1193 | - * @since 1.0.0 |
|
| 1194 | - */ |
|
| 1195 | - do_action('geodir_after_detail_page_more_info');
|
|
| 1196 | - |
|
| 1197 | - $content_html = ob_get_clean(); |
|
| 1198 | - if (trim($content_html) != '') |
|
| 1199 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1200 | - if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1201 | - /** |
|
| 1202 | - * Filter the output html for function geodir_detail_page_more_info(). |
|
| 1203 | - * |
|
| 1204 | - * @since 1.0.0 |
|
| 1205 | - * @param string $content_html The output html of the geodir_detail_page_more_info() function. |
|
| 1206 | - */ |
|
| 1207 | - echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
|
|
| 1208 | - } |
|
| 1180 | + ob_start(); // Start buffering; |
|
| 1181 | + /** |
|
| 1182 | + * This is called before the info section html. |
|
| 1183 | + * |
|
| 1184 | + * @since 1.0.0 |
|
| 1185 | + */ |
|
| 1186 | + do_action('geodir_before_detail_page_more_info');
|
|
| 1187 | + if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
|
|
| 1188 | + echo $geodir_post_detail_fields; |
|
| 1189 | + } |
|
| 1190 | + /** |
|
| 1191 | + * This is called after the info section html. |
|
| 1192 | + * |
|
| 1193 | + * @since 1.0.0 |
|
| 1194 | + */ |
|
| 1195 | + do_action('geodir_after_detail_page_more_info');
|
|
| 1196 | + |
|
| 1197 | + $content_html = ob_get_clean(); |
|
| 1198 | + if (trim($content_html) != '') |
|
| 1199 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1200 | + if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1201 | + /** |
|
| 1202 | + * Filter the output html for function geodir_detail_page_more_info(). |
|
| 1203 | + * |
|
| 1204 | + * @since 1.0.0 |
|
| 1205 | + * @param string $content_html The output html of the geodir_detail_page_more_info() function. |
|
| 1206 | + */ |
|
| 1207 | + echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
|
|
| 1208 | + } |
|
| 1209 | 1209 | } |
| 1210 | 1210 | |
| 1211 | 1211 | |
@@ -1219,15 +1219,15 @@ discard block |
||
| 1219 | 1219 | */ |
| 1220 | 1220 | function geodir_localize_all_js_msg() |
| 1221 | 1221 | {// check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls
|
| 1222 | - if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1223 | - $ajax_url = admin_url('admin-ajax.php');
|
|
| 1224 | - } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1225 | - $ajax_url = admin_url('admin-ajax.php');
|
|
| 1226 | - } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1227 | - $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
|
|
| 1228 | - } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1229 | - $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
|
|
| 1230 | - } |
|
| 1222 | + if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1223 | + $ajax_url = admin_url('admin-ajax.php');
|
|
| 1224 | + } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1225 | + $ajax_url = admin_url('admin-ajax.php');
|
|
| 1226 | + } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
|
|
| 1227 | + $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
|
|
| 1228 | + } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
|
|
| 1229 | + $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
|
|
| 1230 | + } |
|
| 1231 | 1231 | |
| 1232 | 1232 | /** |
| 1233 | 1233 | * Filter the allowed image type extensions for post images. |
@@ -1237,60 +1237,60 @@ discard block |
||
| 1237 | 1237 | */ |
| 1238 | 1238 | $allowed_img_types = apply_filters('geodir_allowed_post_image_exts', array('jpg', 'jpeg', 'jpe', 'gif', 'png'));
|
| 1239 | 1239 | |
| 1240 | - $default_marker_icon = get_option('geodir_default_marker_icon');
|
|
| 1241 | - $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
|
|
| 1242 | - $default_marker_width = $default_marker_size['w']; |
|
| 1243 | - $default_marker_height = $default_marker_size['h']; |
|
| 1240 | + $default_marker_icon = get_option('geodir_default_marker_icon');
|
|
| 1241 | + $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
|
|
| 1242 | + $default_marker_width = $default_marker_size['w']; |
|
| 1243 | + $default_marker_height = $default_marker_size['h']; |
|
| 1244 | 1244 | |
| 1245 | - $arr_alert_msg = array( |
|
| 1246 | - 'geodir_plugin_url' => geodir_plugin_url(), |
|
| 1247 | - 'geodir_admin_ajax_url' => $ajax_url, |
|
| 1248 | - 'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
|
|
| 1249 | - 'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
|
|
| 1250 | - 'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
|
|
| 1251 | - 'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
|
|
| 1252 | - //start not show alert msg |
|
| 1253 | - 'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
|
|
| 1254 | - 'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
|
|
| 1255 | - 'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
|
|
| 1256 | - 'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
|
|
| 1257 | - 'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
|
|
| 1258 | - // end not show alert msg |
|
| 1259 | - 'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
|
|
| 1260 | - 'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
|
|
| 1261 | - //start not show alert msg |
|
| 1262 | - 'rating_error_msg' => __('Error : please retry', 'geodirectory'),
|
|
| 1263 | - 'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
|
|
| 1264 | - 'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
|
|
| 1265 | - 'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
|
|
| 1266 | - 'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
|
|
| 1267 | - 'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
|
|
| 1268 | - 'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
|
|
| 1269 | - 'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
|
|
| 1270 | - 'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
|
|
| 1271 | - 'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
|
|
| 1272 | - 'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
|
|
| 1273 | - 'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
|
|
| 1274 | - 'geodir_default_marker_icon' => $default_marker_icon, |
|
| 1275 | - 'geodir_default_marker_w' => $default_marker_width, |
|
| 1276 | - 'geodir_default_marker_h' => $default_marker_height, |
|
| 1277 | - 'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG, |
|
| 1278 | - 'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG, |
|
| 1279 | - 'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
|
|
| 1280 | - 'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
|
|
| 1281 | - 'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
|
|
| 1282 | - 'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
|
|
| 1283 | - 'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
|
|
| 1284 | - 'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
|
|
| 1285 | - /* on/off dragging for phone devices */ |
|
| 1286 | - 'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
|
|
| 1287 | - 'geodir_is_mobile' => wp_is_mobile() ? true : false, |
|
| 1288 | - 'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
|
|
| 1289 | - 'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
|
|
| 1290 | - 'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
|
|
| 1291 | - 'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
|
|
| 1292 | - 'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
|
|
| 1293 | - 'geodir_action_remove' => __('Remove', 'geodirectory'),
|
|
| 1245 | + $arr_alert_msg = array( |
|
| 1246 | + 'geodir_plugin_url' => geodir_plugin_url(), |
|
| 1247 | + 'geodir_admin_ajax_url' => $ajax_url, |
|
| 1248 | + 'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
|
|
| 1249 | + 'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
|
|
| 1250 | + 'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
|
|
| 1251 | + 'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
|
|
| 1252 | + //start not show alert msg |
|
| 1253 | + 'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
|
|
| 1254 | + 'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
|
|
| 1255 | + 'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
|
|
| 1256 | + 'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
|
|
| 1257 | + 'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
|
|
| 1258 | + // end not show alert msg |
|
| 1259 | + 'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
|
|
| 1260 | + 'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
|
|
| 1261 | + //start not show alert msg |
|
| 1262 | + 'rating_error_msg' => __('Error : please retry', 'geodirectory'),
|
|
| 1263 | + 'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
|
|
| 1264 | + 'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
|
|
| 1265 | + 'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
|
|
| 1266 | + 'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
|
|
| 1267 | + 'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
|
|
| 1268 | + 'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
|
|
| 1269 | + 'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
|
|
| 1270 | + 'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
|
|
| 1271 | + 'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
|
|
| 1272 | + 'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
|
|
| 1273 | + 'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
|
|
| 1274 | + 'geodir_default_marker_icon' => $default_marker_icon, |
|
| 1275 | + 'geodir_default_marker_w' => $default_marker_width, |
|
| 1276 | + 'geodir_default_marker_h' => $default_marker_height, |
|
| 1277 | + 'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG, |
|
| 1278 | + 'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG, |
|
| 1279 | + 'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
|
|
| 1280 | + 'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
|
|
| 1281 | + 'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
|
|
| 1282 | + 'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
|
|
| 1283 | + 'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
|
|
| 1284 | + 'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
|
|
| 1285 | + /* on/off dragging for phone devices */ |
|
| 1286 | + 'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
|
|
| 1287 | + 'geodir_is_mobile' => wp_is_mobile() ? true : false, |
|
| 1288 | + 'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
|
|
| 1289 | + 'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
|
|
| 1290 | + 'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
|
|
| 1291 | + 'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
|
|
| 1292 | + 'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
|
|
| 1293 | + 'geodir_action_remove' => __('Remove', 'geodirectory'),
|
|
| 1294 | 1294 | 'geodir_txt_all_files' => __('Allowed files', 'geodirectory'),
|
| 1295 | 1295 | 'geodir_err_file_type' => __('File type error. Allowed file types: %s', 'geodirectory'),
|
| 1296 | 1296 | 'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
|
@@ -1298,40 +1298,40 @@ discard block |
||
| 1298 | 1298 | 'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
|
| 1299 | 1299 | 'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
| 1300 | 1300 | 'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
|
| 1301 | - 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
|
| 1302 | - 'geodir_map_name' => geodir_map_name(), |
|
| 1303 | - 'osmStart' => __('Start', 'geodirectory'),
|
|
| 1304 | - 'osmVia' => __('Via {viaNumber}', 'geodirectory'),
|
|
| 1305 | - 'osmEnd' => __('Enter Your Location', 'geodirectory'),
|
|
| 1306 | - 'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
|
|
| 1307 | - 'geoMyLocation' => __('My Location', 'geodirectory'),
|
|
| 1308 | - 'geoErrUNKNOWN_ERROR' => addslashes(__('Unable to find your location', 'geodirectory')),
|
|
| 1309 | - 'geoErrPERMISSION_DENINED' => addslashes(__('Permission denied in finding your location', 'geodirectory')),
|
|
| 1310 | - 'geoErrPOSITION_UNAVAILABLE' => addslashes(__('Your location is currently unknown', 'geodirectory')),
|
|
| 1311 | - 'geoErrBREAK' => addslashes(__('Attempt to find location took too long', 'geodirectory')),
|
|
| 1312 | - 'geoErrDEFAULT' => addslashes(__('Location detection not supported in browser', 'geodirectory')),
|
|
| 1313 | - ); |
|
| 1314 | - |
|
| 1315 | - /** |
|
| 1316 | - * Filters the translated JS strings from function geodir_localize_all_js_msg(). |
|
| 1317 | - * |
|
| 1318 | - * With this filter you can add, remove or change translated JS strings. |
|
| 1319 | - * You should add your own translations to this if you are building an addon rather than adding another script block. |
|
| 1320 | - * |
|
| 1321 | - * @since 1.0.0 |
|
| 1322 | - */ |
|
| 1323 | - $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
|
|
| 1324 | - |
|
| 1325 | - foreach ($arr_alert_msg as $key => $value) {
|
|
| 1326 | - if (!is_scalar($value)) |
|
| 1327 | - continue; |
|
| 1328 | - $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1329 | - } |
|
| 1301 | + 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
|
| 1302 | + 'geodir_map_name' => geodir_map_name(), |
|
| 1303 | + 'osmStart' => __('Start', 'geodirectory'),
|
|
| 1304 | + 'osmVia' => __('Via {viaNumber}', 'geodirectory'),
|
|
| 1305 | + 'osmEnd' => __('Enter Your Location', 'geodirectory'),
|
|
| 1306 | + 'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
|
|
| 1307 | + 'geoMyLocation' => __('My Location', 'geodirectory'),
|
|
| 1308 | + 'geoErrUNKNOWN_ERROR' => addslashes(__('Unable to find your location', 'geodirectory')),
|
|
| 1309 | + 'geoErrPERMISSION_DENINED' => addslashes(__('Permission denied in finding your location', 'geodirectory')),
|
|
| 1310 | + 'geoErrPOSITION_UNAVAILABLE' => addslashes(__('Your location is currently unknown', 'geodirectory')),
|
|
| 1311 | + 'geoErrBREAK' => addslashes(__('Attempt to find location took too long', 'geodirectory')),
|
|
| 1312 | + 'geoErrDEFAULT' => addslashes(__('Location detection not supported in browser', 'geodirectory')),
|
|
| 1313 | + ); |
|
| 1314 | + |
|
| 1315 | + /** |
|
| 1316 | + * Filters the translated JS strings from function geodir_localize_all_js_msg(). |
|
| 1317 | + * |
|
| 1318 | + * With this filter you can add, remove or change translated JS strings. |
|
| 1319 | + * You should add your own translations to this if you are building an addon rather than adding another script block. |
|
| 1320 | + * |
|
| 1321 | + * @since 1.0.0 |
|
| 1322 | + */ |
|
| 1323 | + $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
|
|
| 1330 | 1324 | |
| 1331 | - $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1332 | - echo '<script>'; |
|
| 1333 | - echo $script; |
|
| 1334 | - echo '</script>'; |
|
| 1325 | + foreach ($arr_alert_msg as $key => $value) {
|
|
| 1326 | + if (!is_scalar($value)) |
|
| 1327 | + continue; |
|
| 1328 | + $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1329 | + } |
|
| 1330 | + |
|
| 1331 | + $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1332 | + echo '<script>'; |
|
| 1333 | + echo $script; |
|
| 1334 | + echo '</script>'; |
|
| 1335 | 1335 | } |
| 1336 | 1336 | |
| 1337 | 1337 | add_action('admin_bar_menu', 'geodir_admin_bar_site_menu', 31);
|
@@ -1347,11 +1347,11 @@ discard block |
||
| 1347 | 1347 | */ |
| 1348 | 1348 | function geodir_admin_bar_site_menu($wp_admin_bar) |
| 1349 | 1349 | {
|
| 1350 | - if (get_option("geodir_installed")) {
|
|
| 1351 | - if (current_user_can('manage_options')) {
|
|
| 1352 | - $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
|
|
| 1353 | - } |
|
| 1354 | - } |
|
| 1350 | + if (get_option("geodir_installed")) {
|
|
| 1351 | + if (current_user_can('manage_options')) {
|
|
| 1352 | + $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
|
|
| 1353 | + } |
|
| 1354 | + } |
|
| 1355 | 1355 | } |
| 1356 | 1356 | |
| 1357 | 1357 | add_action('geodir_before_listing', 'geodir_display_sort_options'); /*function in custom_functions.php*/
|
@@ -1377,25 +1377,25 @@ discard block |
||
| 1377 | 1377 | */ |
| 1378 | 1378 | function geodir_store_sidebars() |
| 1379 | 1379 | {
|
| 1380 | - global $geodir_sidebars; |
|
| 1381 | - global $sidebars_widgets; |
|
| 1382 | - |
|
| 1383 | - if (!is_array($sidebars_widgets)) |
|
| 1384 | - $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1385 | - $geodir_old_sidebars = array(); |
|
| 1386 | - |
|
| 1387 | - if (is_array($geodir_sidebars)) {
|
|
| 1388 | - foreach ($geodir_sidebars as $val) {
|
|
| 1389 | - if (is_array($sidebars_widgets)) {
|
|
| 1390 | - if (array_key_exists($val, $sidebars_widgets)) |
|
| 1391 | - $geodir_old_sidebars[$val] = $sidebars_widgets[$val]; |
|
| 1392 | - else |
|
| 1393 | - $geodir_old_sidebars[$val] = array(); |
|
| 1394 | - } |
|
| 1395 | - } |
|
| 1396 | - } |
|
| 1397 | - update_option('geodir_sidebars', $geodir_old_sidebars);
|
|
| 1398 | - geodir_option_version_backup('geodir_sidebars');
|
|
| 1380 | + global $geodir_sidebars; |
|
| 1381 | + global $sidebars_widgets; |
|
| 1382 | + |
|
| 1383 | + if (!is_array($sidebars_widgets)) |
|
| 1384 | + $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1385 | + $geodir_old_sidebars = array(); |
|
| 1386 | + |
|
| 1387 | + if (is_array($geodir_sidebars)) {
|
|
| 1388 | + foreach ($geodir_sidebars as $val) {
|
|
| 1389 | + if (is_array($sidebars_widgets)) {
|
|
| 1390 | + if (array_key_exists($val, $sidebars_widgets)) |
|
| 1391 | + $geodir_old_sidebars[$val] = $sidebars_widgets[$val]; |
|
| 1392 | + else |
|
| 1393 | + $geodir_old_sidebars[$val] = array(); |
|
| 1394 | + } |
|
| 1395 | + } |
|
| 1396 | + } |
|
| 1397 | + update_option('geodir_sidebars', $geodir_old_sidebars);
|
|
| 1398 | + geodir_option_version_backup('geodir_sidebars');
|
|
| 1399 | 1399 | |
| 1400 | 1400 | } |
| 1401 | 1401 | |
@@ -1409,28 +1409,28 @@ discard block |
||
| 1409 | 1409 | */ |
| 1410 | 1410 | function geodir_restore_sidebars() |
| 1411 | 1411 | {
|
| 1412 | - global $sidebars_widgets; |
|
| 1413 | - |
|
| 1414 | - if (!is_array($sidebars_widgets)) |
|
| 1415 | - $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1416 | - |
|
| 1417 | - if (is_array($sidebars_widgets)) {
|
|
| 1418 | - $geodir_old_sidebars = get_option('geodir_sidebars');
|
|
| 1419 | - if (is_array($geodir_old_sidebars)) {
|
|
| 1420 | - foreach ($geodir_old_sidebars as $key => $val) {
|
|
| 1421 | - if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1422 | - {
|
|
| 1423 | - $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
|
| 1424 | - } |
|
| 1412 | + global $sidebars_widgets; |
|
| 1425 | 1413 | |
| 1414 | + if (!is_array($sidebars_widgets)) |
|
| 1415 | + $sidebars_widgets = wp_get_sidebars_widgets(); |
|
| 1426 | 1416 | |
| 1427 | - } |
|
| 1428 | - } |
|
| 1417 | + if (is_array($sidebars_widgets)) {
|
|
| 1418 | + $geodir_old_sidebars = get_option('geodir_sidebars');
|
|
| 1419 | + if (is_array($geodir_old_sidebars)) {
|
|
| 1420 | + foreach ($geodir_old_sidebars as $key => $val) {
|
|
| 1421 | + if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1422 | + {
|
|
| 1423 | + $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
|
| 1424 | + } |
|
| 1429 | 1425 | |
| 1430 | - } |
|
| 1431 | 1426 | |
| 1432 | - update_option('sidebars_widgets', $sidebars_widgets);
|
|
| 1433 | - update_option('geodir_sidebars', '');
|
|
| 1427 | + } |
|
| 1428 | + } |
|
| 1429 | + |
|
| 1430 | + } |
|
| 1431 | + |
|
| 1432 | + update_option('sidebars_widgets', $sidebars_widgets);
|
|
| 1433 | + update_option('geodir_sidebars', '');
|
|
| 1434 | 1434 | } |
| 1435 | 1435 | |
| 1436 | 1436 | add_action('geodir_after_listing_post_gridview', 'geodir_after_listing_post_gridview');
|
@@ -1443,9 +1443,9 @@ discard block |
||
| 1443 | 1443 | */ |
| 1444 | 1444 | function geodir_after_listing_post_gridview() |
| 1445 | 1445 | {
|
| 1446 | - global $gridview_columns; |
|
| 1446 | + global $gridview_columns; |
|
| 1447 | 1447 | |
| 1448 | - $gridview_columns = ''; |
|
| 1448 | + $gridview_columns = ''; |
|
| 1449 | 1449 | |
| 1450 | 1450 | } |
| 1451 | 1451 | |
@@ -1473,11 +1473,11 @@ discard block |
||
| 1473 | 1473 | */ |
| 1474 | 1474 | function so_handle_038($url, $original_url, $_context) |
| 1475 | 1475 | {
|
| 1476 | - if (strstr($url, "maps.google.com/maps/api/js") !== false) {
|
|
| 1477 | - $url = str_replace("&", "&", $url); // or $url = $original_url
|
|
| 1478 | - } |
|
| 1476 | + if (strstr($url, "maps.google.com/maps/api/js") !== false) {
|
|
| 1477 | + $url = str_replace("&", "&", $url); // or $url = $original_url
|
|
| 1478 | + } |
|
| 1479 | 1479 | |
| 1480 | - return $url; |
|
| 1480 | + return $url; |
|
| 1481 | 1481 | } |
| 1482 | 1482 | |
| 1483 | 1483 | |
@@ -1493,34 +1493,34 @@ discard block |
||
| 1493 | 1493 | function geodir_after_main_form_fields() {
|
| 1494 | 1494 | global $gd_session; |
| 1495 | 1495 | |
| 1496 | - if (get_option('geodir_accept_term_condition')) {
|
|
| 1497 | - global $post; |
|
| 1498 | - $term_condition = ''; |
|
| 1499 | - if (isset($_REQUEST['backandedit'])) {
|
|
| 1500 | - $post = (object)$gd_session->get('listing');
|
|
| 1501 | - $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
|
| 1502 | - } |
|
| 1503 | - |
|
| 1504 | - ?> |
|
| 1496 | + if (get_option('geodir_accept_term_condition')) {
|
|
| 1497 | + global $post; |
|
| 1498 | + $term_condition = ''; |
|
| 1499 | + if (isset($_REQUEST['backandedit'])) {
|
|
| 1500 | + $post = (object)$gd_session->get('listing');
|
|
| 1501 | + $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
|
| 1502 | + } |
|
| 1503 | + |
|
| 1504 | + ?> |
|
| 1505 | 1505 | <div id="geodir_accept_term_condition_row" class="required_field geodir_form_row clearfix"> |
| 1506 | 1506 | <label> </label> |
| 1507 | 1507 | |
| 1508 | 1508 | <div class="geodir_taxonomy_field" style="float:left; width:70%;"> |
| 1509 | 1509 | <span style="display:block"> |
| 1510 | 1510 | <input class="main_list_selecter" type="checkbox" <?php if ($term_condition == '1') {
|
| 1511 | - echo 'checked="checked"'; |
|
| 1512 | - } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
|
| 1511 | + echo 'checked="checked"'; |
|
| 1512 | + } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
|
| 1513 | 1513 | class="geodir_textfield" value="1" |
| 1514 | 1514 | style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
| 1515 | 1515 | </span> |
| 1516 | 1516 | </div> |
| 1517 | 1517 | <span class="geodir_message_error"><?php if (isset($required_msg)) {
|
| 1518 | - _e($required_msg, 'geodirectory'); |
|
| 1519 | - } ?></span> |
|
| 1518 | + _e($required_msg, 'geodirectory'); |
|
| 1519 | + } ?></span> |
|
| 1520 | 1520 | </div> |
| 1521 | 1521 | <?php |
| 1522 | 1522 | |
| 1523 | - } |
|
| 1523 | + } |
|
| 1524 | 1524 | } |
| 1525 | 1525 | |
| 1526 | 1526 | |
@@ -1545,42 +1545,42 @@ discard block |
||
| 1545 | 1545 | */ |
| 1546 | 1546 | function geodir_detail_page_tab_is_display($is_display, $tab) |
| 1547 | 1547 | {
|
| 1548 | - global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1548 | + global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1549 | 1549 | |
| 1550 | - if ($tab == 'post_profile') {
|
|
| 1551 | - /** This action is documented in geodirectory_template_actions.php */ |
|
| 1552 | - $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
|
| 1550 | + if ($tab == 'post_profile') {
|
|
| 1551 | + /** This action is documented in geodirectory_template_actions.php */ |
|
| 1552 | + $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
|
| 1553 | 1553 | |
| 1554 | - if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1555 | - $is_display = false; |
|
| 1556 | - } |
|
| 1557 | - } |
|
| 1554 | + if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1555 | + $is_display = false; |
|
| 1556 | + } |
|
| 1557 | + } |
|
| 1558 | 1558 | |
| 1559 | - if ($tab == 'post_info') |
|
| 1560 | - $is_display = (!empty($geodir_post_detail_fields)) ? true : false; |
|
| 1559 | + if ($tab == 'post_info') |
|
| 1560 | + $is_display = (!empty($geodir_post_detail_fields)) ? true : false; |
|
| 1561 | 1561 | |
| 1562 | - if ($tab == 'post_images') |
|
| 1563 | - $is_display = (!empty($post_images)) ? true : false; |
|
| 1562 | + if ($tab == 'post_images') |
|
| 1563 | + $is_display = (!empty($post_images)) ? true : false; |
|
| 1564 | 1564 | |
| 1565 | - if ($tab == 'post_video') |
|
| 1566 | - $is_display = (!empty($video)) ? true : false; |
|
| 1565 | + if ($tab == 'post_video') |
|
| 1566 | + $is_display = (!empty($video)) ? true : false; |
|
| 1567 | 1567 | |
| 1568 | - if ($tab == 'special_offers') |
|
| 1569 | - $is_display = (!empty($special_offers)) ? true : false; |
|
| 1568 | + if ($tab == 'special_offers') |
|
| 1569 | + $is_display = (!empty($special_offers)) ? true : false; |
|
| 1570 | 1570 | |
| 1571 | - if ($tab == 'reviews') |
|
| 1572 | - $is_display = (geodir_is_page('detail')) ? true : false;
|
|
| 1571 | + if ($tab == 'reviews') |
|
| 1572 | + $is_display = (geodir_is_page('detail')) ? true : false;
|
|
| 1573 | 1573 | |
| 1574 | - if ($tab == 'related_listing') {
|
|
| 1575 | - $message = __('No listings found which match your selection.', 'geodirectory');
|
|
| 1574 | + if ($tab == 'related_listing') {
|
|
| 1575 | + $message = __('No listings found which match your selection.', 'geodirectory');
|
|
| 1576 | 1576 | |
| 1577 | - /** This action is documented in geodirectory-functions/template_functions.php */ |
|
| 1578 | - $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
|
|
| 1577 | + /** This action is documented in geodirectory-functions/template_functions.php */ |
|
| 1578 | + $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
|
|
| 1579 | 1579 | |
| 1580 | - $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
|
|
| 1581 | - } |
|
| 1580 | + $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
|
|
| 1581 | + } |
|
| 1582 | 1582 | |
| 1583 | - return $is_display; |
|
| 1583 | + return $is_display; |
|
| 1584 | 1584 | } |
| 1585 | 1585 | |
| 1586 | 1586 | |
@@ -1596,69 +1596,69 @@ discard block |
||
| 1596 | 1596 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 1597 | 1597 | */ |
| 1598 | 1598 | function geodir_changes_in_custom_fields_table() {
|
| 1599 | - global $wpdb, $plugin_prefix; |
|
| 1599 | + global $wpdb, $plugin_prefix; |
|
| 1600 | 1600 | |
| 1601 | 1601 | // Remove unused virtual page |
| 1602 | 1602 | $listings_page_id = (int)get_option('geodir_listing_page');
|
| 1603 | 1603 | if ($listings_page_id) {
|
| 1604 | 1604 | $wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
| 1605 | - delete_option('geodir_listing_page');
|
|
| 1605 | + delete_option('geodir_listing_page');
|
|
| 1606 | 1606 | } |
| 1607 | 1607 | |
| 1608 | - if (!get_option('geodir_changes_in_custom_fields_table')) {
|
|
| 1609 | - $wpdb->query( |
|
| 1610 | - $wpdb->prepare( |
|
| 1611 | - "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1612 | - array('1', '1', 'admin')
|
|
| 1613 | - ) |
|
| 1614 | - ); |
|
| 1608 | + if (!get_option('geodir_changes_in_custom_fields_table')) {
|
|
| 1609 | + $wpdb->query( |
|
| 1610 | + $wpdb->prepare( |
|
| 1611 | + "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1612 | + array('1', '1', 'admin')
|
|
| 1613 | + ) |
|
| 1614 | + ); |
|
| 1615 | 1615 | |
| 1616 | 1616 | |
| 1617 | - /* --- terms meta value set --- */ |
|
| 1617 | + /* --- terms meta value set --- */ |
|
| 1618 | 1618 | |
| 1619 | - update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1619 | + update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1620 | 1620 | |
| 1621 | - $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1621 | + $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1622 | 1622 | |
| 1623 | - if (!empty($options_data)) {
|
|
| 1623 | + if (!empty($options_data)) {
|
|
| 1624 | 1624 | |
| 1625 | - foreach ($options_data as $optobj) {
|
|
| 1625 | + foreach ($options_data as $optobj) {
|
|
| 1626 | 1626 | |
| 1627 | - $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
|
| 1627 | + $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
|
| 1628 | 1628 | |
| 1629 | - $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1629 | + $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1630 | 1630 | |
| 1631 | - if (!empty($taxonomies_data)) {
|
|
| 1631 | + if (!empty($taxonomies_data)) {
|
|
| 1632 | 1632 | |
| 1633 | - foreach ($taxonomies_data as $taxobj) {
|
|
| 1633 | + foreach ($taxonomies_data as $taxobj) {
|
|
| 1634 | 1634 | |
| 1635 | - $taxObject = get_taxonomy($taxobj->taxonomy); |
|
| 1636 | - $post_type = $taxObject->object_type[0]; |
|
| 1635 | + $taxObject = get_taxonomy($taxobj->taxonomy); |
|
| 1636 | + $post_type = $taxObject->object_type[0]; |
|
| 1637 | 1637 | |
| 1638 | - $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1638 | + $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1639 | 1639 | |
| 1640 | - $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1640 | + $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1641 | 1641 | |
| 1642 | - if ($duplicate_data) {
|
|
| 1642 | + if ($duplicate_data) {
|
|
| 1643 | 1643 | |
| 1644 | - $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1644 | + $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1645 | 1645 | |
| 1646 | - } else {
|
|
| 1646 | + } else {
|
|
| 1647 | 1647 | |
| 1648 | - $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1648 | + $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1649 | 1649 | |
| 1650 | - } |
|
| 1650 | + } |
|
| 1651 | 1651 | |
| 1652 | - } |
|
| 1652 | + } |
|
| 1653 | 1653 | |
| 1654 | - } |
|
| 1654 | + } |
|
| 1655 | 1655 | |
| 1656 | - } |
|
| 1657 | - } |
|
| 1656 | + } |
|
| 1657 | + } |
|
| 1658 | 1658 | |
| 1659 | - update_option('geodir_changes_in_custom_fields_table', '1');
|
|
| 1659 | + update_option('geodir_changes_in_custom_fields_table', '1');
|
|
| 1660 | 1660 | |
| 1661 | - } |
|
| 1661 | + } |
|
| 1662 | 1662 | |
| 1663 | 1663 | } |
| 1664 | 1664 | |
@@ -1677,24 +1677,24 @@ discard block |
||
| 1677 | 1677 | function geodir_location_slug_check($slug) |
| 1678 | 1678 | {
|
| 1679 | 1679 | |
| 1680 | - global $wpdb, $table_prefix; |
|
| 1680 | + global $wpdb, $table_prefix; |
|
| 1681 | 1681 | |
| 1682 | - $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1682 | + $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1683 | 1683 | |
| 1684 | - if ($slug_exists) {
|
|
| 1684 | + if ($slug_exists) {
|
|
| 1685 | 1685 | |
| 1686 | - $suffix = 1; |
|
| 1687 | - do {
|
|
| 1688 | - $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1689 | - $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1690 | - $suffix++; |
|
| 1691 | - } while ($location_slug_check && $suffix < 100); |
|
| 1686 | + $suffix = 1; |
|
| 1687 | + do {
|
|
| 1688 | + $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1689 | + $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1690 | + $suffix++; |
|
| 1691 | + } while ($location_slug_check && $suffix < 100); |
|
| 1692 | 1692 | |
| 1693 | - $slug = $alt_location_name; |
|
| 1693 | + $slug = $alt_location_name; |
|
| 1694 | 1694 | |
| 1695 | - } |
|
| 1695 | + } |
|
| 1696 | 1696 | |
| 1697 | - return $slug; |
|
| 1697 | + return $slug; |
|
| 1698 | 1698 | |
| 1699 | 1699 | } |
| 1700 | 1700 | |
@@ -1719,42 +1719,42 @@ discard block |
||
| 1719 | 1719 | function geodir_update_term_slug($term_id, $tt_id, $taxonomy) |
| 1720 | 1720 | {
|
| 1721 | 1721 | |
| 1722 | - global $wpdb, $plugin_prefix, $table_prefix; |
|
| 1722 | + global $wpdb, $plugin_prefix, $table_prefix; |
|
| 1723 | 1723 | |
| 1724 | - $tern_data = get_term_by('id', $term_id, $taxonomy);
|
|
| 1724 | + $tern_data = get_term_by('id', $term_id, $taxonomy);
|
|
| 1725 | 1725 | |
| 1726 | - $slug = $tern_data->slug; |
|
| 1726 | + $slug = $tern_data->slug; |
|
| 1727 | 1727 | |
| 1728 | - /** |
|
| 1729 | - * Filter if a term slug exists. |
|
| 1730 | - * |
|
| 1731 | - * @since 1.0.0 |
|
| 1732 | - * @package GeoDirectory |
|
| 1733 | - * @param bool $bool Default: false. |
|
| 1734 | - * @param string $slug The term slug. |
|
| 1735 | - * @param int $term_id The term ID. |
|
| 1736 | - */ |
|
| 1737 | - $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
|
|
| 1728 | + /** |
|
| 1729 | + * Filter if a term slug exists. |
|
| 1730 | + * |
|
| 1731 | + * @since 1.0.0 |
|
| 1732 | + * @package GeoDirectory |
|
| 1733 | + * @param bool $bool Default: false. |
|
| 1734 | + * @param string $slug The term slug. |
|
| 1735 | + * @param int $term_id The term ID. |
|
| 1736 | + */ |
|
| 1737 | + $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
|
|
| 1738 | 1738 | |
| 1739 | - if ($slug_exists) {
|
|
| 1739 | + if ($slug_exists) {
|
|
| 1740 | 1740 | |
| 1741 | - $suffix = 1; |
|
| 1742 | - do {
|
|
| 1743 | - $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1741 | + $suffix = 1; |
|
| 1742 | + do {
|
|
| 1743 | + $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1744 | 1744 | |
| 1745 | - /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 1746 | - $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
|
| 1745 | + /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 1746 | + $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
|
| 1747 | 1747 | |
| 1748 | - $suffix++; |
|
| 1749 | - } while ($term_slug_check && $suffix < 100); |
|
| 1748 | + $suffix++; |
|
| 1749 | + } while ($term_slug_check && $suffix < 100); |
|
| 1750 | 1750 | |
| 1751 | - $slug = $new_slug; |
|
| 1751 | + $slug = $new_slug; |
|
| 1752 | 1752 | |
| 1753 | - //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
|
| 1753 | + //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
|
| 1754 | 1754 | |
| 1755 | - $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1755 | + $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1756 | 1756 | |
| 1757 | - } |
|
| 1757 | + } |
|
| 1758 | 1758 | |
| 1759 | 1759 | // Update tag in detail table. |
| 1760 | 1760 | $taxonomy_obj = get_taxonomy($taxonomy); |
@@ -1795,21 +1795,21 @@ discard block |
||
| 1795 | 1795 | function geodir_term_slug_is_exists($slug_exists, $slug, $term_id) |
| 1796 | 1796 | {
|
| 1797 | 1797 | |
| 1798 | - global $wpdb, $table_prefix; |
|
| 1798 | + global $wpdb, $table_prefix; |
|
| 1799 | 1799 | |
| 1800 | - $default_location = geodir_get_default_location(); |
|
| 1800 | + $default_location = geodir_get_default_location(); |
|
| 1801 | 1801 | |
| 1802 | - $country_slug = $default_location->country_slug; |
|
| 1803 | - $region_slug = $default_location->region_slug; |
|
| 1804 | - $city_slug = $default_location->city_slug; |
|
| 1802 | + $country_slug = $default_location->country_slug; |
|
| 1803 | + $region_slug = $default_location->region_slug; |
|
| 1804 | + $city_slug = $default_location->city_slug; |
|
| 1805 | 1805 | |
| 1806 | - if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
|
| 1807 | - return $slug_exists = true; |
|
| 1806 | + if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
|
| 1807 | + return $slug_exists = true; |
|
| 1808 | 1808 | |
| 1809 | - if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1810 | - return $slug_exists = true; |
|
| 1809 | + if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1810 | + return $slug_exists = true; |
|
| 1811 | 1811 | |
| 1812 | - return $slug_exists; |
|
| 1812 | + return $slug_exists; |
|
| 1813 | 1813 | } |
| 1814 | 1814 | |
| 1815 | 1815 | |
@@ -1828,75 +1828,75 @@ discard block |
||
| 1828 | 1828 | */ |
| 1829 | 1829 | function geodir_custom_page_title($title = '', $sep = '') |
| 1830 | 1830 | {
|
| 1831 | - global $wp; |
|
| 1832 | - if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
|
| 1833 | - return $title; |
|
| 1834 | - } |
|
| 1831 | + global $wp; |
|
| 1832 | + if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
|
| 1833 | + return $title; |
|
| 1834 | + } |
|
| 1835 | 1835 | |
| 1836 | - if ($sep == '') {
|
|
| 1837 | - /** |
|
| 1838 | - * Filter the page title separator. |
|
| 1839 | - * |
|
| 1840 | - * @since 1.0.0 |
|
| 1841 | - * @package GeoDirectory |
|
| 1842 | - * @param string $sep The separator, default: `|`. |
|
| 1843 | - */ |
|
| 1844 | - $sep = apply_filters('geodir_page_title_separator', '|');
|
|
| 1845 | - } |
|
| 1836 | + if ($sep == '') {
|
|
| 1837 | + /** |
|
| 1838 | + * Filter the page title separator. |
|
| 1839 | + * |
|
| 1840 | + * @since 1.0.0 |
|
| 1841 | + * @package GeoDirectory |
|
| 1842 | + * @param string $sep The separator, default: `|`. |
|
| 1843 | + */ |
|
| 1844 | + $sep = apply_filters('geodir_page_title_separator', '|');
|
|
| 1845 | + } |
|
| 1846 | 1846 | |
| 1847 | 1847 | |
| 1848 | - $gd_page = ''; |
|
| 1849 | - if(geodir_is_page('home')){
|
|
| 1850 | - $gd_page = 'home'; |
|
| 1851 | - $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
|
| 1852 | - } |
|
| 1853 | - elseif(geodir_is_page('detail')){
|
|
| 1854 | - $gd_page = 'detail'; |
|
| 1855 | - $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
|
| 1856 | - } |
|
| 1857 | - elseif(geodir_is_page('pt')){
|
|
| 1858 | - $gd_page = 'pt'; |
|
| 1859 | - $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
|
| 1860 | - } |
|
| 1861 | - elseif(geodir_is_page('listing')){
|
|
| 1862 | - $gd_page = 'listing'; |
|
| 1863 | - $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
|
| 1864 | - } |
|
| 1865 | - elseif(geodir_is_page('location')){
|
|
| 1866 | - $gd_page = 'location'; |
|
| 1867 | - $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
|
| 1868 | - } |
|
| 1869 | - elseif(geodir_is_page('search')){
|
|
| 1870 | - $gd_page = 'search'; |
|
| 1871 | - $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
|
| 1872 | - } |
|
| 1873 | - elseif(geodir_is_page('add-listing')){
|
|
| 1874 | - $gd_page = 'add-listing'; |
|
| 1875 | - $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
|
| 1876 | - } |
|
| 1877 | - elseif(geodir_is_page('author')){
|
|
| 1878 | - $gd_page = 'author'; |
|
| 1879 | - $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
|
| 1880 | - } |
|
| 1881 | - elseif(geodir_is_page('login')){
|
|
| 1882 | - $gd_page = 'login'; |
|
| 1883 | - $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
|
| 1884 | - } |
|
| 1885 | - elseif(geodir_is_page('listing-success')){
|
|
| 1886 | - $gd_page = 'listing-success'; |
|
| 1887 | - $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
|
| 1888 | - } |
|
| 1848 | + $gd_page = ''; |
|
| 1849 | + if(geodir_is_page('home')){
|
|
| 1850 | + $gd_page = 'home'; |
|
| 1851 | + $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
|
| 1852 | + } |
|
| 1853 | + elseif(geodir_is_page('detail')){
|
|
| 1854 | + $gd_page = 'detail'; |
|
| 1855 | + $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
|
| 1856 | + } |
|
| 1857 | + elseif(geodir_is_page('pt')){
|
|
| 1858 | + $gd_page = 'pt'; |
|
| 1859 | + $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
|
| 1860 | + } |
|
| 1861 | + elseif(geodir_is_page('listing')){
|
|
| 1862 | + $gd_page = 'listing'; |
|
| 1863 | + $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
|
| 1864 | + } |
|
| 1865 | + elseif(geodir_is_page('location')){
|
|
| 1866 | + $gd_page = 'location'; |
|
| 1867 | + $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
|
| 1868 | + } |
|
| 1869 | + elseif(geodir_is_page('search')){
|
|
| 1870 | + $gd_page = 'search'; |
|
| 1871 | + $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
|
| 1872 | + } |
|
| 1873 | + elseif(geodir_is_page('add-listing')){
|
|
| 1874 | + $gd_page = 'add-listing'; |
|
| 1875 | + $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
|
| 1876 | + } |
|
| 1877 | + elseif(geodir_is_page('author')){
|
|
| 1878 | + $gd_page = 'author'; |
|
| 1879 | + $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
|
| 1880 | + } |
|
| 1881 | + elseif(geodir_is_page('login')){
|
|
| 1882 | + $gd_page = 'login'; |
|
| 1883 | + $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
|
| 1884 | + } |
|
| 1885 | + elseif(geodir_is_page('listing-success')){
|
|
| 1886 | + $gd_page = 'listing-success'; |
|
| 1887 | + $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
|
| 1888 | + } |
|
| 1889 | 1889 | |
| 1890 | 1890 | |
| 1891 | - /** |
|
| 1892 | - * Filter page meta title to replace variables. |
|
| 1893 | - * |
|
| 1894 | - * @since 1.5.4 |
|
| 1895 | - * @param string $title The page title including variables. |
|
| 1896 | - * @param string $gd_page The GeoDirectory page type if any. |
|
| 1897 | - * @param string $sep The title separator symbol. |
|
| 1898 | - */ |
|
| 1899 | - return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
|
|
| 1891 | + /** |
|
| 1892 | + * Filter page meta title to replace variables. |
|
| 1893 | + * |
|
| 1894 | + * @since 1.5.4 |
|
| 1895 | + * @param string $title The page title including variables. |
|
| 1896 | + * @param string $gd_page The GeoDirectory page type if any. |
|
| 1897 | + * @param string $sep The title separator symbol. |
|
| 1898 | + */ |
|
| 1899 | + return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
|
|
| 1900 | 1900 | |
| 1901 | 1901 | } |
| 1902 | 1902 | |
@@ -1912,36 +1912,36 @@ discard block |
||
| 1912 | 1912 | function geodir_set_post_attachment() |
| 1913 | 1913 | {
|
| 1914 | 1914 | |
| 1915 | - if (!get_option('geodir_set_post_attachments')) {
|
|
| 1915 | + if (!get_option('geodir_set_post_attachments')) {
|
|
| 1916 | 1916 | |
| 1917 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1918 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1917 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1918 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1919 | 1919 | |
| 1920 | - $all_postypes = geodir_get_posttypes(); |
|
| 1920 | + $all_postypes = geodir_get_posttypes(); |
|
| 1921 | 1921 | |
| 1922 | - foreach($all_postypes as $post_type){
|
|
| 1923 | - $args = array( |
|
| 1924 | - 'posts_per_page' => -1, |
|
| 1925 | - 'post_type' => $post_type, |
|
| 1926 | - 'post_status' => 'publish'); |
|
| 1922 | + foreach($all_postypes as $post_type){
|
|
| 1923 | + $args = array( |
|
| 1924 | + 'posts_per_page' => -1, |
|
| 1925 | + 'post_type' => $post_type, |
|
| 1926 | + 'post_status' => 'publish'); |
|
| 1927 | 1927 | |
| 1928 | - $posts_array = get_posts($args); |
|
| 1928 | + $posts_array = get_posts($args); |
|
| 1929 | 1929 | |
| 1930 | - if (!empty($posts_array)) {
|
|
| 1930 | + if (!empty($posts_array)) {
|
|
| 1931 | 1931 | |
| 1932 | - foreach ($posts_array as $post) {
|
|
| 1932 | + foreach ($posts_array as $post) {
|
|
| 1933 | 1933 | |
| 1934 | - geodir_set_wp_featured_image($post->ID); |
|
| 1934 | + geodir_set_wp_featured_image($post->ID); |
|
| 1935 | 1935 | |
| 1936 | - } |
|
| 1936 | + } |
|
| 1937 | 1937 | |
| 1938 | - } |
|
| 1939 | - } |
|
| 1938 | + } |
|
| 1939 | + } |
|
| 1940 | 1940 | |
| 1941 | 1941 | |
| 1942 | - update_option('geodir_set_post_attachments', '1');
|
|
| 1942 | + update_option('geodir_set_post_attachments', '1');
|
|
| 1943 | 1943 | |
| 1944 | - } |
|
| 1944 | + } |
|
| 1945 | 1945 | |
| 1946 | 1946 | } |
| 1947 | 1947 | |
@@ -1958,19 +1958,19 @@ discard block |
||
| 1958 | 1958 | function geodir_remove_url_seperator() |
| 1959 | 1959 | {
|
| 1960 | 1960 | |
| 1961 | - if (!get_option('geodir_remove_url_seperator')) {
|
|
| 1961 | + if (!get_option('geodir_remove_url_seperator')) {
|
|
| 1962 | 1962 | |
| 1963 | - if (get_option('geodir_listingurl_separator'))
|
|
| 1964 | - delete_option('geodir_listingurl_separator');
|
|
| 1963 | + if (get_option('geodir_listingurl_separator'))
|
|
| 1964 | + delete_option('geodir_listingurl_separator');
|
|
| 1965 | 1965 | |
| 1966 | - if (get_option('geodir_detailurl_separator'))
|
|
| 1967 | - delete_option('geodir_detailurl_separator');
|
|
| 1966 | + if (get_option('geodir_detailurl_separator'))
|
|
| 1967 | + delete_option('geodir_detailurl_separator');
|
|
| 1968 | 1968 | |
| 1969 | - flush_rewrite_rules(false); |
|
| 1969 | + flush_rewrite_rules(false); |
|
| 1970 | 1970 | |
| 1971 | - update_option('geodir_remove_url_seperator', '1');
|
|
| 1971 | + update_option('geodir_remove_url_seperator', '1');
|
|
| 1972 | 1972 | |
| 1973 | - } |
|
| 1973 | + } |
|
| 1974 | 1974 | |
| 1975 | 1975 | } |
| 1976 | 1976 | |
@@ -1986,19 +1986,19 @@ discard block |
||
| 1986 | 1986 | */ |
| 1987 | 1987 | function geodir_remove_url_seperator_form_permalink_settings($permalink_arr) |
| 1988 | 1988 | {
|
| 1989 | - foreach ($permalink_arr as $key => $value) {
|
|
| 1989 | + foreach ($permalink_arr as $key => $value) {
|
|
| 1990 | 1990 | |
| 1991 | - if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') |
|
| 1992 | - unset($permalink_arr[$key]); |
|
| 1991 | + if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') |
|
| 1992 | + unset($permalink_arr[$key]); |
|
| 1993 | 1993 | |
| 1994 | - } |
|
| 1994 | + } |
|
| 1995 | 1995 | |
| 1996 | - return $permalink_arr; |
|
| 1996 | + return $permalink_arr; |
|
| 1997 | 1997 | |
| 1998 | 1998 | } |
| 1999 | 1999 | |
| 2000 | 2000 | if (!is_admin()) {
|
| 2001 | - add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
|
|
| 2001 | + add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
|
|
| 2002 | 2002 | } |
| 2003 | 2003 | /** |
| 2004 | 2004 | * Set status from draft to publish. |
@@ -2011,16 +2011,16 @@ discard block |
||
| 2011 | 2011 | */ |
| 2012 | 2012 | function geodir_set_status_draft_to_publish_for_own_post($post) |
| 2013 | 2013 | {
|
| 2014 | - $user_id = get_current_user_id(); |
|
| 2014 | + $user_id = get_current_user_id(); |
|
| 2015 | 2015 | |
| 2016 | - if(!$user_id){return $post;}
|
|
| 2016 | + if(!$user_id){return $post;}
|
|
| 2017 | 2017 | |
| 2018 | - $gd_post_types = geodir_get_posttypes(); |
|
| 2018 | + $gd_post_types = geodir_get_posttypes(); |
|
| 2019 | 2019 | |
| 2020 | - if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
|
|
| 2021 | - $post[0]->post_status = 'publish'; |
|
| 2022 | - } |
|
| 2023 | - return $post; |
|
| 2020 | + if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
|
|
| 2021 | + $post[0]->post_status = 'publish'; |
|
| 2022 | + } |
|
| 2023 | + return $post; |
|
| 2024 | 2024 | } |
| 2025 | 2025 | |
| 2026 | 2026 | |
@@ -2112,33 +2112,33 @@ discard block |
||
| 2112 | 2112 | */ |
| 2113 | 2113 | function geodir_detail_page_tab_headings_change($tabs_arr) |
| 2114 | 2114 | {
|
| 2115 | - global $wpdb; |
|
| 2115 | + global $wpdb; |
|
| 2116 | 2116 | |
| 2117 | - $post_type = geodir_get_current_posttype(); |
|
| 2117 | + $post_type = geodir_get_current_posttype(); |
|
| 2118 | 2118 | |
| 2119 | - $all_postypes = geodir_get_posttypes(); |
|
| 2119 | + $all_postypes = geodir_get_posttypes(); |
|
| 2120 | 2120 | |
| 2121 | - if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
|
|
| 2121 | + if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
|
|
| 2122 | 2122 | |
| 2123 | - if (array_key_exists('post_video', $tabs_arr)) {
|
|
| 2123 | + if (array_key_exists('post_video', $tabs_arr)) {
|
|
| 2124 | 2124 | |
| 2125 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2125 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2126 | 2126 | |
| 2127 | - if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
|
| 2128 | - $tabs_arr['post_video']['heading_text'] = $field_title; |
|
| 2129 | - } |
|
| 2127 | + if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
|
| 2128 | + $tabs_arr['post_video']['heading_text'] = $field_title; |
|
| 2129 | + } |
|
| 2130 | 2130 | |
| 2131 | - if (array_key_exists('special_offers', $tabs_arr)) {
|
|
| 2131 | + if (array_key_exists('special_offers', $tabs_arr)) {
|
|
| 2132 | 2132 | |
| 2133 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2133 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2134 | 2134 | |
| 2135 | - if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
|
| 2136 | - $tabs_arr['special_offers']['heading_text'] = $field_title; |
|
| 2137 | - } |
|
| 2135 | + if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
|
| 2136 | + $tabs_arr['special_offers']['heading_text'] = $field_title; |
|
| 2137 | + } |
|
| 2138 | 2138 | |
| 2139 | - } |
|
| 2139 | + } |
|
| 2140 | 2140 | |
| 2141 | - return $tabs_arr; |
|
| 2141 | + return $tabs_arr; |
|
| 2142 | 2142 | |
| 2143 | 2143 | } |
| 2144 | 2144 | |
@@ -2151,10 +2151,10 @@ discard block |
||
| 2151 | 2151 | */ |
| 2152 | 2152 | function geodir_remove_template_redirect_actions() |
| 2153 | 2153 | {
|
| 2154 | - if (geodir_is_page('login')){
|
|
| 2155 | - remove_all_actions('template_redirect');
|
|
| 2156 | - remove_action('init', 'avia_modify_front', 10);
|
|
| 2157 | - } |
|
| 2154 | + if (geodir_is_page('login')){
|
|
| 2155 | + remove_all_actions('template_redirect');
|
|
| 2156 | + remove_action('init', 'avia_modify_front', 10);
|
|
| 2157 | + } |
|
| 2158 | 2158 | } |
| 2159 | 2159 | |
| 2160 | 2160 | |
@@ -2176,51 +2176,51 @@ discard block |
||
| 2176 | 2176 | function geodirectory_before_featured_image_delete($attachment_id) |
| 2177 | 2177 | {
|
| 2178 | 2178 | |
| 2179 | - global $wpdb, $plugin_prefix; |
|
| 2179 | + global $wpdb, $plugin_prefix; |
|
| 2180 | 2180 | |
| 2181 | - $post_id = get_post_field('post_parent', $attachment_id);
|
|
| 2181 | + $post_id = get_post_field('post_parent', $attachment_id);
|
|
| 2182 | 2182 | |
| 2183 | - $attachment_url = wp_get_attachment_url($attachment_id); |
|
| 2183 | + $attachment_url = wp_get_attachment_url($attachment_id); |
|
| 2184 | 2184 | |
| 2185 | - if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
|
|
| 2185 | + if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
|
|
| 2186 | 2186 | |
| 2187 | - $post_type = get_post_type($post_id); |
|
| 2187 | + $post_type = get_post_type($post_id); |
|
| 2188 | 2188 | |
| 2189 | - $all_postypes = geodir_get_posttypes(); |
|
| 2189 | + $all_postypes = geodir_get_posttypes(); |
|
| 2190 | 2190 | |
| 2191 | - if (!in_array($post_type, $all_postypes) || !is_admin()) |
|
| 2192 | - return false; |
|
| 2191 | + if (!in_array($post_type, $all_postypes) || !is_admin()) |
|
| 2192 | + return false; |
|
| 2193 | 2193 | |
| 2194 | - $uploads = wp_upload_dir(); |
|
| 2194 | + $uploads = wp_upload_dir(); |
|
| 2195 | 2195 | |
| 2196 | - $split_img_path = explode($uploads['baseurl'], $attachment_url); |
|
| 2196 | + $split_img_path = explode($uploads['baseurl'], $attachment_url); |
|
| 2197 | 2197 | |
| 2198 | - $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 2198 | + $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 2199 | 2199 | |
| 2200 | - $wpdb->query( |
|
| 2201 | - $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2202 | - array($post_id, $split_img_file_path) |
|
| 2203 | - ) |
|
| 2204 | - ); |
|
| 2200 | + $wpdb->query( |
|
| 2201 | + $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2202 | + array($post_id, $split_img_file_path) |
|
| 2203 | + ) |
|
| 2204 | + ); |
|
| 2205 | 2205 | |
| 2206 | - $attachment_data = $wpdb->get_row( |
|
| 2207 | - $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2208 | - array($post_id) |
|
| 2209 | - ) |
|
| 2210 | - ); |
|
| 2206 | + $attachment_data = $wpdb->get_row( |
|
| 2207 | + $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2208 | + array($post_id) |
|
| 2209 | + ) |
|
| 2210 | + ); |
|
| 2211 | 2211 | |
| 2212 | - if (!empty($attachment_data)) {
|
|
| 2213 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2214 | - } |
|
| 2212 | + if (!empty($attachment_data)) {
|
|
| 2213 | + $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2214 | + } |
|
| 2215 | 2215 | |
| 2216 | 2216 | |
| 2217 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2217 | + $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2218 | 2218 | |
| 2219 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2219 | + $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2220 | 2220 | |
| 2221 | - geodir_set_wp_featured_image($post_id); |
|
| 2221 | + geodir_set_wp_featured_image($post_id); |
|
| 2222 | 2222 | |
| 2223 | - } |
|
| 2223 | + } |
|
| 2224 | 2224 | |
| 2225 | 2225 | } |
| 2226 | 2226 | |
@@ -2238,79 +2238,79 @@ discard block |
||
| 2238 | 2238 | function geodir_temp_set_post_attachment() |
| 2239 | 2239 | {
|
| 2240 | 2240 | |
| 2241 | - global $wpdb, $plugin_prefix; |
|
| 2241 | + global $wpdb, $plugin_prefix; |
|
| 2242 | 2242 | |
| 2243 | - $all_postypes = geodir_get_posttypes(); |
|
| 2243 | + $all_postypes = geodir_get_posttypes(); |
|
| 2244 | 2244 | |
| 2245 | - foreach ($all_postypes as $posttype) {
|
|
| 2245 | + foreach ($all_postypes as $posttype) {
|
|
| 2246 | 2246 | |
| 2247 | - $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2247 | + $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2248 | 2248 | |
| 2249 | - $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2249 | + $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2250 | 2250 | |
| 2251 | - if (!empty($get_post_data)) {
|
|
| 2251 | + if (!empty($get_post_data)) {
|
|
| 2252 | 2252 | |
| 2253 | - foreach ($get_post_data as $data) {
|
|
| 2253 | + foreach ($get_post_data as $data) {
|
|
| 2254 | 2254 | |
| 2255 | - $post_id = $data->post_id; |
|
| 2255 | + $post_id = $data->post_id; |
|
| 2256 | 2256 | |
| 2257 | - $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2257 | + $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2258 | 2258 | |
| 2259 | - if (!empty($attachment_data)) {
|
|
| 2259 | + if (!empty($attachment_data)) {
|
|
| 2260 | 2260 | |
| 2261 | - foreach ($attachment_data as $attach) {
|
|
| 2261 | + foreach ($attachment_data as $attach) {
|
|
| 2262 | 2262 | |
| 2263 | - $file_info = pathinfo($attach->file); |
|
| 2263 | + $file_info = pathinfo($attach->file); |
|
| 2264 | 2264 | |
| 2265 | - $sub_dir = ''; |
|
| 2266 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 2267 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 2265 | + $sub_dir = ''; |
|
| 2266 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 2267 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 2268 | 2268 | |
| 2269 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 2270 | - $uploads_path = $uploads['basedir']; |
|
| 2269 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 2270 | + $uploads_path = $uploads['basedir']; |
|
| 2271 | 2271 | |
| 2272 | - $file_name = $file_info['basename']; |
|
| 2272 | + $file_name = $file_info['basename']; |
|
| 2273 | 2273 | |
| 2274 | - $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2274 | + $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2275 | 2275 | |
| 2276 | - if (!file_exists($img_arr['path'])) {
|
|
| 2276 | + if (!file_exists($img_arr['path'])) {
|
|
| 2277 | 2277 | |
| 2278 | - $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2278 | + $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2279 | 2279 | |
| 2280 | - } |
|
| 2280 | + } |
|
| 2281 | 2281 | |
| 2282 | - } |
|
| 2282 | + } |
|
| 2283 | 2283 | |
| 2284 | - $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2284 | + $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2285 | 2285 | |
| 2286 | - if (!empty($attachment_data)) {
|
|
| 2286 | + if (!empty($attachment_data)) {
|
|
| 2287 | 2287 | |
| 2288 | - if ($attachment_data->ID) |
|
| 2289 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2288 | + if ($attachment_data->ID) |
|
| 2289 | + $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2290 | 2290 | |
| 2291 | - } else {
|
|
| 2291 | + } else {
|
|
| 2292 | 2292 | |
| 2293 | - if (has_post_thumbnail($post_id)) {
|
|
| 2293 | + if (has_post_thumbnail($post_id)) {
|
|
| 2294 | 2294 | |
| 2295 | - $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2295 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2296 | 2296 | |
| 2297 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2297 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2298 | 2298 | |
| 2299 | - } |
|
| 2299 | + } |
|
| 2300 | 2300 | |
| 2301 | - } |
|
| 2301 | + } |
|
| 2302 | 2302 | |
| 2303 | - $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2303 | + $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2304 | 2304 | |
| 2305 | - geodir_set_wp_featured_image($post_id); |
|
| 2305 | + geodir_set_wp_featured_image($post_id); |
|
| 2306 | 2306 | |
| 2307 | - } |
|
| 2307 | + } |
|
| 2308 | 2308 | |
| 2309 | - } |
|
| 2309 | + } |
|
| 2310 | 2310 | |
| 2311 | - } |
|
| 2311 | + } |
|
| 2312 | 2312 | |
| 2313 | - } |
|
| 2313 | + } |
|
| 2314 | 2314 | |
| 2315 | 2315 | } |
| 2316 | 2316 | |
@@ -2328,9 +2328,9 @@ discard block |
||
| 2328 | 2328 | function geodir_default_rating_star_icon() |
| 2329 | 2329 | {
|
| 2330 | 2330 | |
| 2331 | - if (!get_option('geodir_default_rating_star_icon')) {
|
|
| 2332 | - update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2333 | - } |
|
| 2331 | + if (!get_option('geodir_default_rating_star_icon')) {
|
|
| 2332 | + update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2333 | + } |
|
| 2334 | 2334 | |
| 2335 | 2335 | } |
| 2336 | 2336 | |
@@ -2348,27 +2348,27 @@ discard block |
||
| 2348 | 2348 | */ |
| 2349 | 2349 | function geodir_user_post_listing_count($user_id=null) |
| 2350 | 2350 | {
|
| 2351 | - global $wpdb, $plugin_prefix, $current_user; |
|
| 2352 | - if(!$user_id){
|
|
| 2353 | - $user_id = $current_user->ID; |
|
| 2354 | - } |
|
| 2351 | + global $wpdb, $plugin_prefix, $current_user; |
|
| 2352 | + if(!$user_id){
|
|
| 2353 | + $user_id = $current_user->ID; |
|
| 2354 | + } |
|
| 2355 | 2355 | |
| 2356 | - $user_id = $current_user->ID; |
|
| 2357 | - $all_postypes = geodir_get_posttypes(); |
|
| 2358 | - $all_posts = get_option('geodir_listing_link_user_dashboard');
|
|
| 2356 | + $user_id = $current_user->ID; |
|
| 2357 | + $all_postypes = geodir_get_posttypes(); |
|
| 2358 | + $all_posts = get_option('geodir_listing_link_user_dashboard');
|
|
| 2359 | 2359 | |
| 2360 | - $user_listing = array(); |
|
| 2361 | - if (is_array($all_posts) && !empty($all_posts)) {
|
|
| 2362 | - foreach ($all_posts as $ptype) {
|
|
| 2363 | - $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2360 | + $user_listing = array(); |
|
| 2361 | + if (is_array($all_posts) && !empty($all_posts)) {
|
|
| 2362 | + foreach ($all_posts as $ptype) {
|
|
| 2363 | + $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2364 | 2364 | |
| 2365 | - if ($total_posts > 0) {
|
|
| 2366 | - $user_listing[$ptype] = $total_posts; |
|
| 2367 | - } |
|
| 2368 | - } |
|
| 2369 | - } |
|
| 2365 | + if ($total_posts > 0) {
|
|
| 2366 | + $user_listing[$ptype] = $total_posts; |
|
| 2367 | + } |
|
| 2368 | + } |
|
| 2369 | + } |
|
| 2370 | 2370 | |
| 2371 | - return $user_listing; |
|
| 2371 | + return $user_listing; |
|
| 2372 | 2372 | } |
| 2373 | 2373 | |
| 2374 | 2374 | |
@@ -2388,189 +2388,189 @@ discard block |
||
| 2388 | 2388 | */ |
| 2389 | 2389 | function geodir_detail_page_custom_field_tab($tabs_arr) |
| 2390 | 2390 | {
|
| 2391 | - global $post; |
|
| 2392 | - |
|
| 2393 | - $post_type = geodir_get_current_posttype(); |
|
| 2394 | - $all_postypes = geodir_get_posttypes(); |
|
| 2395 | - |
|
| 2396 | - if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
|
|
| 2397 | - $package_info = array(); |
|
| 2398 | - $package_info = geodir_post_package_info($package_info, $post); |
|
| 2399 | - $post_package_id = !empty($package_info->pid) ? $package_info->pid : ''; |
|
| 2400 | - $fields_location = 'owntab'; |
|
| 2401 | - |
|
| 2402 | - $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
|
| 2403 | - //remove video and special offers if it is already set to show |
|
| 2404 | - if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2405 | - $unset_video = true; |
|
| 2406 | - } |
|
| 2407 | - |
|
| 2408 | - if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2409 | - $unset_special_offers = true; |
|
| 2410 | - } |
|
| 2411 | - if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2412 | - foreach($custom_fields as $key => $custom_field){
|
|
| 2413 | - if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2414 | - unset($custom_fields[$key]); |
|
| 2415 | - } |
|
| 2416 | - if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2417 | - unset($custom_fields[$key]); |
|
| 2418 | - } |
|
| 2419 | - } |
|
| 2420 | - } |
|
| 2421 | - |
|
| 2422 | - |
|
| 2423 | - if (!empty($custom_fields)) {
|
|
| 2424 | - $parse_custom_fields = array(); |
|
| 2425 | - foreach ($custom_fields as $field) {
|
|
| 2426 | - $field = stripslashes_deep($field); // strip slashes |
|
| 2427 | - $type = $field; |
|
| 2428 | - $field_name = $field['htmlvar_name']; |
|
| 2429 | - if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2430 | - $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2431 | - } |
|
| 2391 | + global $post; |
|
| 2432 | 2392 | |
| 2433 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2434 | - if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2435 | - continue; |
|
| 2436 | - } |
|
| 2393 | + $post_type = geodir_get_current_posttype(); |
|
| 2394 | + $all_postypes = geodir_get_posttypes(); |
|
| 2437 | 2395 | |
| 2438 | - $parse_custom_fields[] = $field; |
|
| 2439 | - } |
|
| 2440 | - } |
|
| 2441 | - $custom_fields = $parse_custom_fields; |
|
| 2442 | - } |
|
| 2443 | - //print_r($custom_fields); |
|
| 2444 | - if (!empty($custom_fields)) {
|
|
| 2396 | + if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
|
|
| 2397 | + $package_info = array(); |
|
| 2398 | + $package_info = geodir_post_package_info($package_info, $post); |
|
| 2399 | + $post_package_id = !empty($package_info->pid) ? $package_info->pid : ''; |
|
| 2400 | + $fields_location = 'owntab'; |
|
| 2445 | 2401 | |
| 2446 | - global $field_set_start; |
|
| 2402 | + $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
|
| 2403 | + //remove video and special offers if it is already set to show |
|
| 2404 | + if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2405 | + $unset_video = true; |
|
| 2406 | + } |
|
| 2447 | 2407 | |
| 2448 | - $post = stripslashes_deep($post); // strip slashes |
|
| 2449 | - |
|
| 2450 | - $field_set_start = 0; |
|
| 2451 | - $fieldset_count = 0; |
|
| 2452 | - $fieldset = ''; |
|
| 2453 | - $total_fields = count($custom_fields); |
|
| 2454 | - $count_field = 0; |
|
| 2455 | - $fieldset_arr = array(); |
|
| 2456 | - $i = 0; |
|
| 2457 | - $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL; |
|
| 2458 | - |
|
| 2459 | - foreach ($custom_fields as $field) {
|
|
| 2460 | - $count_field++; |
|
| 2461 | - $field_name = $field['htmlvar_name']; |
|
| 2462 | - if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2463 | - $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2464 | - } |
|
| 2408 | + if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2409 | + $unset_special_offers = true; |
|
| 2410 | + } |
|
| 2411 | + if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2412 | + foreach($custom_fields as $key => $custom_field){
|
|
| 2413 | + if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2414 | + unset($custom_fields[$key]); |
|
| 2415 | + } |
|
| 2416 | + if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2417 | + unset($custom_fields[$key]); |
|
| 2418 | + } |
|
| 2419 | + } |
|
| 2420 | + } |
|
| 2465 | 2421 | |
| 2466 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2467 | - $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title']; |
|
| 2468 | - $site_title = trim($field['site_title']); |
|
| 2469 | - $type = $field; |
|
| 2470 | - $variables_array = array(); |
|
| 2471 | 2422 | |
| 2472 | - if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2473 | - continue; |
|
| 2474 | - } |
|
| 2423 | + if (!empty($custom_fields)) {
|
|
| 2424 | + $parse_custom_fields = array(); |
|
| 2425 | + foreach ($custom_fields as $field) {
|
|
| 2426 | + $field = stripslashes_deep($field); // strip slashes |
|
| 2427 | + $type = $field; |
|
| 2428 | + $field_name = $field['htmlvar_name']; |
|
| 2429 | + if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2430 | + $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2431 | + } |
|
| 2475 | 2432 | |
| 2476 | - if ($type['type'] != 'fieldset') {
|
|
| 2477 | - $i++; |
|
| 2478 | - $variables_array['post_id'] = $post->ID; |
|
| 2479 | - $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
|
| 2480 | - $variables_array['value'] = ''; |
|
| 2481 | - $variables_array['value'] = $post->{$type['htmlvar_name']};
|
|
| 2482 | - }else{
|
|
| 2483 | - $i = 0; |
|
| 2484 | - $fieldset_count++; |
|
| 2485 | - $field_set_start = 1; |
|
| 2486 | - $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2487 | - $fieldset_arr[$fieldset_count]['label'] = $label; |
|
| 2488 | - } |
|
| 2433 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2434 | + if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2435 | + continue; |
|
| 2436 | + } |
|
| 2489 | 2437 | |
| 2438 | + $parse_custom_fields[] = $field; |
|
| 2439 | + } |
|
| 2440 | + } |
|
| 2441 | + $custom_fields = $parse_custom_fields; |
|
| 2442 | + } |
|
| 2443 | + //print_r($custom_fields); |
|
| 2444 | + if (!empty($custom_fields)) {
|
|
| 2490 | 2445 | |
| 2491 | - if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2492 | - $type = stripslashes_deep($type); // strip slashes |
|
| 2493 | - if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2494 | - $html = ''; |
|
| 2495 | - $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
|
| 2496 | - if($html_var=='post'){$html_var='post_address';}
|
|
| 2497 | - $field_icon = geodir_field_icon_proccess($type); |
|
| 2498 | - $filed_type = $type['type']; |
|
| 2499 | - |
|
| 2500 | - /** |
|
| 2501 | - * Filter the output for custom fields. |
|
| 2502 | - * |
|
| 2503 | - * Here we can remove or add new functions depending on the field type. |
|
| 2504 | - * |
|
| 2505 | - * @param string $html The html to be filtered (blank). |
|
| 2506 | - * @param string $fields_location The location the field is to be show. |
|
| 2507 | - * @param array $type The array of field values. |
|
| 2508 | - */ |
|
| 2509 | - $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2510 | - |
|
| 2511 | - |
|
| 2512 | - /** |
|
| 2513 | - * Filter custom field output in tab. |
|
| 2514 | - * |
|
| 2515 | - * @since 1.5.6 |
|
| 2516 | - * |
|
| 2517 | - * @param string $html_var The HTML variable name for the field. |
|
| 2518 | - * @param string $html Custom field unfiltered HTML. |
|
| 2519 | - * @param array $variables_array Custom field variables array. |
|
| 2520 | - */ |
|
| 2521 | - $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
|
|
| 2522 | - |
|
| 2523 | - $fieldset_html = ''; |
|
| 2524 | - if ($field_set_start == 1) {
|
|
| 2525 | - $add_html = false; |
|
| 2526 | - if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
|
|
| 2527 | - if ($fieldset != '') {
|
|
| 2528 | - $add_html = true; |
|
| 2529 | - $label = $fieldset_arr[$fieldset_count - 1]['label']; |
|
| 2530 | - $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name']; |
|
| 2531 | - } |
|
| 2532 | - $fieldset_html = $fieldset; |
|
| 2533 | - $fieldset = ''; |
|
| 2534 | - } else {
|
|
| 2535 | - $fieldset .= $html; |
|
| 2536 | - if ($total_fields == $count_field && $fieldset != '') {
|
|
| 2537 | - $add_html = true; |
|
| 2538 | - $label = $fieldset_arr[$fieldset_count]['label']; |
|
| 2539 | - $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name']; |
|
| 2540 | - $fieldset_html = $fieldset; |
|
| 2541 | - } |
|
| 2542 | - } |
|
| 2446 | + global $field_set_start; |
|
| 2543 | 2447 | |
| 2544 | - if ($add_html) {
|
|
| 2545 | - $tabs_arr[$htmlvar_name] = array( |
|
| 2546 | - 'heading_text' => __($label, 'geodirectory'), |
|
| 2547 | - 'is_active_tab' => false, |
|
| 2548 | - /** |
|
| 2549 | - * Filter if a custom field should be displayed on the details page tab. |
|
| 2550 | - * |
|
| 2551 | - * @since 1.0.0 |
|
| 2552 | - * @param string $htmlvar_name The field HTML var name. |
|
| 2553 | - */ |
|
| 2554 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
|
| 2555 | - 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2556 | - ); |
|
| 2557 | - } |
|
| 2558 | - } else {
|
|
| 2559 | - if ($html != '') {
|
|
| 2560 | - $tabs_arr[$html_var] = array( |
|
| 2561 | - 'heading_text' => __($label, 'geodirectory'), |
|
| 2562 | - 'is_active_tab' => false, |
|
| 2563 | - /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 2564 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
|
|
| 2565 | - 'tab_content' => $html |
|
| 2566 | - ); |
|
| 2567 | - } |
|
| 2568 | - } |
|
| 2569 | - } |
|
| 2570 | - } |
|
| 2571 | - } |
|
| 2572 | - } |
|
| 2573 | - return $tabs_arr; |
|
| 2448 | + $post = stripslashes_deep($post); // strip slashes |
|
| 2449 | + |
|
| 2450 | + $field_set_start = 0; |
|
| 2451 | + $fieldset_count = 0; |
|
| 2452 | + $fieldset = ''; |
|
| 2453 | + $total_fields = count($custom_fields); |
|
| 2454 | + $count_field = 0; |
|
| 2455 | + $fieldset_arr = array(); |
|
| 2456 | + $i = 0; |
|
| 2457 | + $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL; |
|
| 2458 | + |
|
| 2459 | + foreach ($custom_fields as $field) {
|
|
| 2460 | + $count_field++; |
|
| 2461 | + $field_name = $field['htmlvar_name']; |
|
| 2462 | + if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
|
|
| 2463 | + $post->{$field_name} = $_REQUEST[$field_name];
|
|
| 2464 | + } |
|
| 2465 | + |
|
| 2466 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2467 | + $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title']; |
|
| 2468 | + $site_title = trim($field['site_title']); |
|
| 2469 | + $type = $field; |
|
| 2470 | + $variables_array = array(); |
|
| 2471 | + |
|
| 2472 | + if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
|
| 2473 | + continue; |
|
| 2474 | + } |
|
| 2475 | + |
|
| 2476 | + if ($type['type'] != 'fieldset') {
|
|
| 2477 | + $i++; |
|
| 2478 | + $variables_array['post_id'] = $post->ID; |
|
| 2479 | + $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
|
| 2480 | + $variables_array['value'] = ''; |
|
| 2481 | + $variables_array['value'] = $post->{$type['htmlvar_name']};
|
|
| 2482 | + }else{
|
|
| 2483 | + $i = 0; |
|
| 2484 | + $fieldset_count++; |
|
| 2485 | + $field_set_start = 1; |
|
| 2486 | + $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2487 | + $fieldset_arr[$fieldset_count]['label'] = $label; |
|
| 2488 | + } |
|
| 2489 | + |
|
| 2490 | + |
|
| 2491 | + if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2492 | + $type = stripslashes_deep($type); // strip slashes |
|
| 2493 | + if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2494 | + $html = ''; |
|
| 2495 | + $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
|
| 2496 | + if($html_var=='post'){$html_var='post_address';}
|
|
| 2497 | + $field_icon = geodir_field_icon_proccess($type); |
|
| 2498 | + $filed_type = $type['type']; |
|
| 2499 | + |
|
| 2500 | + /** |
|
| 2501 | + * Filter the output for custom fields. |
|
| 2502 | + * |
|
| 2503 | + * Here we can remove or add new functions depending on the field type. |
|
| 2504 | + * |
|
| 2505 | + * @param string $html The html to be filtered (blank). |
|
| 2506 | + * @param string $fields_location The location the field is to be show. |
|
| 2507 | + * @param array $type The array of field values. |
|
| 2508 | + */ |
|
| 2509 | + $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2510 | + |
|
| 2511 | + |
|
| 2512 | + /** |
|
| 2513 | + * Filter custom field output in tab. |
|
| 2514 | + * |
|
| 2515 | + * @since 1.5.6 |
|
| 2516 | + * |
|
| 2517 | + * @param string $html_var The HTML variable name for the field. |
|
| 2518 | + * @param string $html Custom field unfiltered HTML. |
|
| 2519 | + * @param array $variables_array Custom field variables array. |
|
| 2520 | + */ |
|
| 2521 | + $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
|
|
| 2522 | + |
|
| 2523 | + $fieldset_html = ''; |
|
| 2524 | + if ($field_set_start == 1) {
|
|
| 2525 | + $add_html = false; |
|
| 2526 | + if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
|
|
| 2527 | + if ($fieldset != '') {
|
|
| 2528 | + $add_html = true; |
|
| 2529 | + $label = $fieldset_arr[$fieldset_count - 1]['label']; |
|
| 2530 | + $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name']; |
|
| 2531 | + } |
|
| 2532 | + $fieldset_html = $fieldset; |
|
| 2533 | + $fieldset = ''; |
|
| 2534 | + } else {
|
|
| 2535 | + $fieldset .= $html; |
|
| 2536 | + if ($total_fields == $count_field && $fieldset != '') {
|
|
| 2537 | + $add_html = true; |
|
| 2538 | + $label = $fieldset_arr[$fieldset_count]['label']; |
|
| 2539 | + $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name']; |
|
| 2540 | + $fieldset_html = $fieldset; |
|
| 2541 | + } |
|
| 2542 | + } |
|
| 2543 | + |
|
| 2544 | + if ($add_html) {
|
|
| 2545 | + $tabs_arr[$htmlvar_name] = array( |
|
| 2546 | + 'heading_text' => __($label, 'geodirectory'), |
|
| 2547 | + 'is_active_tab' => false, |
|
| 2548 | + /** |
|
| 2549 | + * Filter if a custom field should be displayed on the details page tab. |
|
| 2550 | + * |
|
| 2551 | + * @since 1.0.0 |
|
| 2552 | + * @param string $htmlvar_name The field HTML var name. |
|
| 2553 | + */ |
|
| 2554 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
|
| 2555 | + 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2556 | + ); |
|
| 2557 | + } |
|
| 2558 | + } else {
|
|
| 2559 | + if ($html != '') {
|
|
| 2560 | + $tabs_arr[$html_var] = array( |
|
| 2561 | + 'heading_text' => __($label, 'geodirectory'), |
|
| 2562 | + 'is_active_tab' => false, |
|
| 2563 | + /** This action is documented in geodirectory_hooks_actions.php */ |
|
| 2564 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
|
|
| 2565 | + 'tab_content' => $html |
|
| 2566 | + ); |
|
| 2567 | + } |
|
| 2568 | + } |
|
| 2569 | + } |
|
| 2570 | + } |
|
| 2571 | + } |
|
| 2572 | + } |
|
| 2573 | + return $tabs_arr; |
|
| 2574 | 2574 | } |
| 2575 | 2575 | |
| 2576 | 2576 | /* display add listing page for wpml */ |
@@ -2594,39 +2594,39 @@ discard block |
||
| 2594 | 2594 | */ |
| 2595 | 2595 | function geodir_add_post_status_author_page() |
| 2596 | 2596 | {
|
| 2597 | - global $wpdb, $post; |
|
| 2598 | - |
|
| 2599 | - $html = ''; |
|
| 2600 | - if (get_current_user_id()) {
|
|
| 2601 | - |
|
| 2602 | - $is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
|
|
| 2603 | - if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
|
|
| 2604 | - |
|
| 2605 | - // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them. |
|
| 2606 | - $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
|
|
| 2607 | - $status = "<strong>(";
|
|
| 2608 | - $status_icon = '<i class="fa fa-play"></i>'; |
|
| 2609 | - if ($real_status == 'publish') {
|
|
| 2610 | - $status .= __('Published', 'geodirectory');
|
|
| 2611 | - } else {
|
|
| 2612 | - $status .= __('Not published', 'geodirectory');
|
|
| 2613 | - $status_icon = '<i class="fa fa-pause"></i>'; |
|
| 2614 | - } |
|
| 2615 | - $status .= ")</strong>"; |
|
| 2597 | + global $wpdb, $post; |
|
| 2598 | + |
|
| 2599 | + $html = ''; |
|
| 2600 | + if (get_current_user_id()) {
|
|
| 2601 | + |
|
| 2602 | + $is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
|
|
| 2603 | + if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
|
|
| 2604 | + |
|
| 2605 | + // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them. |
|
| 2606 | + $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
|
|
| 2607 | + $status = "<strong>(";
|
|
| 2608 | + $status_icon = '<i class="fa fa-play"></i>'; |
|
| 2609 | + if ($real_status == 'publish') {
|
|
| 2610 | + $status .= __('Published', 'geodirectory');
|
|
| 2611 | + } else {
|
|
| 2612 | + $status .= __('Not published', 'geodirectory');
|
|
| 2613 | + $status_icon = '<i class="fa fa-pause"></i>'; |
|
| 2614 | + } |
|
| 2615 | + $status .= ")</strong>"; |
|
| 2616 | 2616 | |
| 2617 | - $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2618 | - } |
|
| 2619 | - } |
|
| 2617 | + $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2618 | + } |
|
| 2619 | + } |
|
| 2620 | 2620 | |
| 2621 | - if ($html != '') {
|
|
| 2622 | - /** |
|
| 2623 | - * Filter the post status text on the author page. |
|
| 2624 | - * |
|
| 2625 | - * @since 1.0.0 |
|
| 2626 | - * @param string $html The HTML of the status. |
|
| 2627 | - */ |
|
| 2628 | - echo apply_filters('geodir_filter_status_text_on_author_page', $html);
|
|
| 2629 | - } |
|
| 2621 | + if ($html != '') {
|
|
| 2622 | + /** |
|
| 2623 | + * Filter the post status text on the author page. |
|
| 2624 | + * |
|
| 2625 | + * @since 1.0.0 |
|
| 2626 | + * @param string $html The HTML of the status. |
|
| 2627 | + */ |
|
| 2628 | + echo apply_filters('geodir_filter_status_text_on_author_page', $html);
|
|
| 2629 | + } |
|
| 2630 | 2630 | |
| 2631 | 2631 | |
| 2632 | 2632 | } |
@@ -2640,9 +2640,9 @@ discard block |
||
| 2640 | 2640 | * @package GeoDirectory |
| 2641 | 2641 | */ |
| 2642 | 2642 | function geodir_init_no_rating() {
|
| 2643 | - if (geodir_rating_disabled_post_types()) {
|
|
| 2644 | - add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
|
|
| 2645 | - } |
|
| 2643 | + if (geodir_rating_disabled_post_types()) {
|
|
| 2644 | + add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
|
|
| 2645 | + } |
|
| 2646 | 2646 | } |
| 2647 | 2647 | |
| 2648 | 2648 | /** |
@@ -2656,22 +2656,22 @@ discard block |
||
| 2656 | 2656 | * @return array Modified sort options array. |
| 2657 | 2657 | */ |
| 2658 | 2658 | function geodir_no_rating_get_sort_options($options, $post_type = '') {
|
| 2659 | - if (!empty($post_type) && geodir_cpt_has_rating_disabled($post_type)) {
|
|
| 2660 | - $new_options = array(); |
|
| 2659 | + if (!empty($post_type) && geodir_cpt_has_rating_disabled($post_type)) {
|
|
| 2660 | + $new_options = array(); |
|
| 2661 | 2661 | |
| 2662 | - if (!empty($options)) {
|
|
| 2663 | - foreach ($options as $option) {
|
|
| 2664 | - if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
|
|
| 2665 | - continue; |
|
| 2666 | - } |
|
| 2667 | - $new_options[] = $option; |
|
| 2668 | - } |
|
| 2662 | + if (!empty($options)) {
|
|
| 2663 | + foreach ($options as $option) {
|
|
| 2664 | + if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
|
|
| 2665 | + continue; |
|
| 2666 | + } |
|
| 2667 | + $new_options[] = $option; |
|
| 2668 | + } |
|
| 2669 | 2669 | |
| 2670 | - $options = $new_options; |
|
| 2671 | - } |
|
| 2672 | - } |
|
| 2670 | + $options = $new_options; |
|
| 2671 | + } |
|
| 2672 | + } |
|
| 2673 | 2673 | |
| 2674 | - return $options; |
|
| 2674 | + return $options; |
|
| 2675 | 2675 | } |
| 2676 | 2676 | |
| 2677 | 2677 | /** |
@@ -2683,9 +2683,9 @@ discard block |
||
| 2683 | 2683 | * @return array Modified class array. |
| 2684 | 2684 | */ |
| 2685 | 2685 | function geodir_body_class_active_map($classes = array()) {
|
| 2686 | - $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2686 | + $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2687 | 2687 | |
| 2688 | - return $classes; |
|
| 2688 | + return $classes; |
|
| 2689 | 2689 | } |
| 2690 | 2690 | add_filter('body_class', 'geodir_body_class_active_map', 100);
|
| 2691 | 2691 | |
@@ -2698,9 +2698,9 @@ discard block |
||
| 2698 | 2698 | * @return string Modified class string. |
| 2699 | 2699 | */ |
| 2700 | 2700 | function geodir_admin_body_class_active_map($class = '') {
|
| 2701 | - $class .= ' gd-map-' . geodir_map_name(); |
|
| 2701 | + $class .= ' gd-map-' . geodir_map_name(); |
|
| 2702 | 2702 | |
| 2703 | - return $class; |
|
| 2703 | + return $class; |
|
| 2704 | 2704 | } |
| 2705 | 2705 | add_filter('admin_body_class', 'geodir_admin_body_class_active_map', 100);
|
| 2706 | 2706 | |
@@ -2718,36 +2718,36 @@ discard block |
||
| 2718 | 2718 | * @return array Translation texts. |
| 2719 | 2719 | */ |
| 2720 | 2720 | function geodir_load_gd_options_text_translation($translation_texts = array()) {
|
| 2721 | - $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2722 | - |
|
| 2723 | - $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
|
| 2724 | - |
|
| 2725 | - /** |
|
| 2726 | - * Filters the geodirectory option names that requires to add for translation. |
|
| 2727 | - * |
|
| 2728 | - * @since 1.5.7 |
|
| 2729 | - * @package GeoDirectory |
|
| 2730 | - * |
|
| 2731 | - * @param array $gd_options Array of option names. |
|
| 2732 | - */ |
|
| 2733 | - $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
|
|
| 2734 | - $gd_options = array_unique($gd_options); |
|
| 2735 | - |
|
| 2736 | - if (!empty($gd_options)) {
|
|
| 2737 | - foreach ($gd_options as $gd_option) {
|
|
| 2738 | - if ($gd_option != '' && $option_value = get_option($gd_option)) {
|
|
| 2739 | - $option_value = is_string($option_value) ? stripslashes_deep($option_value) : ''; |
|
| 2721 | + $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2722 | + |
|
| 2723 | + $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
|
| 2724 | + |
|
| 2725 | + /** |
|
| 2726 | + * Filters the geodirectory option names that requires to add for translation. |
|
| 2727 | + * |
|
| 2728 | + * @since 1.5.7 |
|
| 2729 | + * @package GeoDirectory |
|
| 2730 | + * |
|
| 2731 | + * @param array $gd_options Array of option names. |
|
| 2732 | + */ |
|
| 2733 | + $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
|
|
| 2734 | + $gd_options = array_unique($gd_options); |
|
| 2735 | + |
|
| 2736 | + if (!empty($gd_options)) {
|
|
| 2737 | + foreach ($gd_options as $gd_option) {
|
|
| 2738 | + if ($gd_option != '' && $option_value = get_option($gd_option)) {
|
|
| 2739 | + $option_value = is_string($option_value) ? stripslashes_deep($option_value) : ''; |
|
| 2740 | 2740 | |
| 2741 | - if ($option_value != '' && !in_array($option_value, $translation_texts)) {
|
|
| 2742 | - $translation_texts[] = stripslashes_deep($option_value); |
|
| 2743 | - } |
|
| 2744 | - } |
|
| 2745 | - } |
|
| 2746 | - } |
|
| 2741 | + if ($option_value != '' && !in_array($option_value, $translation_texts)) {
|
|
| 2742 | + $translation_texts[] = stripslashes_deep($option_value); |
|
| 2743 | + } |
|
| 2744 | + } |
|
| 2745 | + } |
|
| 2746 | + } |
|
| 2747 | 2747 | |
| 2748 | - $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 2748 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
| 2749 | 2749 | |
| 2750 | - return $translation_texts; |
|
| 2750 | + return $translation_texts; |
|
| 2751 | 2751 | } |
| 2752 | 2752 | |
| 2753 | 2753 | add_filter('geodir_load_db_language', 'geodir_load_gd_options_text_translation');
|
@@ -2761,15 +2761,15 @@ discard block |
||
| 2761 | 2761 | |
| 2762 | 2762 | add_filter('get_comments_link', 'gd_get_comments_link', 10, 2);
|
| 2763 | 2763 | function gd_get_comments_link($comments_link, $post_id) {
|
| 2764 | - $post_type = get_post_type($post_id); |
|
| 2764 | + $post_type = get_post_type($post_id); |
|
| 2765 | 2765 | |
| 2766 | - $all_postypes = geodir_get_posttypes(); |
|
| 2767 | - if (in_array($post_type, $all_postypes)) {
|
|
| 2768 | - $comments_link = str_replace('#comments', '#reviews', $comments_link);
|
|
| 2769 | - $comments_link = str_replace('#respond', '#reviews', $comments_link);
|
|
| 2770 | - } |
|
| 2766 | + $all_postypes = geodir_get_posttypes(); |
|
| 2767 | + if (in_array($post_type, $all_postypes)) {
|
|
| 2768 | + $comments_link = str_replace('#comments', '#reviews', $comments_link);
|
|
| 2769 | + $comments_link = str_replace('#respond', '#reviews', $comments_link);
|
|
| 2770 | + } |
|
| 2771 | 2771 | |
| 2772 | - return $comments_link; |
|
| 2772 | + return $comments_link; |
|
| 2773 | 2773 | } |
| 2774 | 2774 | |
| 2775 | 2775 | |
@@ -2787,11 +2787,11 @@ discard block |
||
| 2787 | 2787 | function geodir_add_nav_menu_class( $args ) |
| 2788 | 2788 | {
|
| 2789 | 2789 | |
| 2790 | - if(isset($args['menu_class'])){
|
|
| 2791 | - $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
|
| 2792 | - } |
|
| 2790 | + if(isset($args['menu_class'])){
|
|
| 2791 | + $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
|
| 2792 | + } |
|
| 2793 | 2793 | |
| 2794 | - return $args; |
|
| 2794 | + return $args; |
|
| 2795 | 2795 | } |
| 2796 | 2796 | |
| 2797 | 2797 | add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' ); |
@@ -2808,15 +2808,15 @@ discard block |
||
| 2808 | 2808 | * @return string Filtered locale ID. |
| 2809 | 2809 | */ |
| 2810 | 2810 | function geodir_wpml_filter_locale($locale) {
|
| 2811 | - global $sitepress; |
|
| 2811 | + global $sitepress; |
|
| 2812 | 2812 | |
| 2813 | - $post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : ''); |
|
| 2813 | + $post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : ''); |
|
| 2814 | 2814 | |
| 2815 | - if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
|
|
| 2816 | - $locale = $sitepress->get_locale($current_lang); |
|
| 2817 | - } |
|
| 2815 | + if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
|
|
| 2816 | + $locale = $sitepress->get_locale($current_lang); |
|
| 2817 | + } |
|
| 2818 | 2818 | |
| 2819 | - return $locale; |
|
| 2819 | + return $locale; |
|
| 2820 | 2820 | } |
| 2821 | 2821 | |
| 2822 | 2822 | /** |
@@ -2826,15 +2826,15 @@ discard block |
||
| 2826 | 2826 | * @package GeoDirectory |
| 2827 | 2827 | */ |
| 2828 | 2828 | function geodir_wpml_set_filter() {
|
| 2829 | - if (function_exists('icl_object_id')) {
|
|
| 2830 | - global $sitepress; |
|
| 2829 | + if (function_exists('icl_object_id')) {
|
|
| 2830 | + global $sitepress; |
|
| 2831 | 2831 | |
| 2832 | - if ($sitepress->get_setting('sync_comments_on_duplicates')) {
|
|
| 2833 | - add_action('comment_post', 'gepdir_wpml_sync_comment', 100, 1);
|
|
| 2834 | - } |
|
| 2832 | + if ($sitepress->get_setting('sync_comments_on_duplicates')) {
|
|
| 2833 | + add_action('comment_post', 'gepdir_wpml_sync_comment', 100, 1);
|
|
| 2834 | + } |
|
| 2835 | 2835 | |
| 2836 | - add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
|
|
| 2837 | - } |
|
| 2836 | + add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
|
|
| 2837 | + } |
|
| 2838 | 2838 | } |
| 2839 | 2839 | add_filter('plugins_loaded', 'geodir_wpml_set_filter');
|
| 2840 | 2840 | |
@@ -2847,37 +2847,37 @@ discard block |
||
| 2847 | 2847 | * @return array Filtered languages. |
| 2848 | 2848 | */ |
| 2849 | 2849 | function geodir_wpml_filter_ls_languages($languages) {
|
| 2850 | - if (geodir_is_geodir_page()) {
|
|
| 2851 | - $keep_vars = array(); |
|
| 2850 | + if (geodir_is_geodir_page()) {
|
|
| 2851 | + $keep_vars = array(); |
|
| 2852 | 2852 | |
| 2853 | - if (geodir_is_page('add-listing')) {
|
|
| 2854 | - $keep_vars = array('listing_type', 'package_id');
|
|
| 2855 | - } else if (geodir_is_page('search')) {
|
|
| 2856 | - $keep_vars = array('geodir_search', 'stype', 'snear', 'set_location_type', 'set_location_val', 'sgeo_lat', 'sgeo_lon');
|
|
| 2857 | - } else if (geodir_is_page('author')) {
|
|
| 2858 | - $keep_vars = array('geodir_dashbord', 'stype', 'list');
|
|
| 2859 | - } else if (geodir_is_page('login')) {
|
|
| 2860 | - $keep_vars = array('forgot', 'signup');
|
|
| 2861 | - } |
|
| 2853 | + if (geodir_is_page('add-listing')) {
|
|
| 2854 | + $keep_vars = array('listing_type', 'package_id');
|
|
| 2855 | + } else if (geodir_is_page('search')) {
|
|
| 2856 | + $keep_vars = array('geodir_search', 'stype', 'snear', 'set_location_type', 'set_location_val', 'sgeo_lat', 'sgeo_lon');
|
|
| 2857 | + } else if (geodir_is_page('author')) {
|
|
| 2858 | + $keep_vars = array('geodir_dashbord', 'stype', 'list');
|
|
| 2859 | + } else if (geodir_is_page('login')) {
|
|
| 2860 | + $keep_vars = array('forgot', 'signup');
|
|
| 2861 | + } |
|
| 2862 | 2862 | |
| 2863 | - if (!empty($keep_vars)) {
|
|
| 2864 | - foreach ( $languages as $code => $url) {
|
|
| 2865 | - $filter_url = $url['url']; |
|
| 2863 | + if (!empty($keep_vars)) {
|
|
| 2864 | + foreach ( $languages as $code => $url) {
|
|
| 2865 | + $filter_url = $url['url']; |
|
| 2866 | 2866 | |
| 2867 | - foreach ($keep_vars as $var) {
|
|
| 2868 | - if (isset($_GET[$var]) && !is_array($_GET[$var])) {
|
|
| 2869 | - $filter_url = remove_query_arg(array($var), $filter_url); |
|
| 2870 | - $filter_url = add_query_arg(array($var => $_GET[$var]), $filter_url); |
|
| 2871 | - } |
|
| 2872 | - } |
|
| 2867 | + foreach ($keep_vars as $var) {
|
|
| 2868 | + if (isset($_GET[$var]) && !is_array($_GET[$var])) {
|
|
| 2869 | + $filter_url = remove_query_arg(array($var), $filter_url); |
|
| 2870 | + $filter_url = add_query_arg(array($var => $_GET[$var]), $filter_url); |
|
| 2871 | + } |
|
| 2872 | + } |
|
| 2873 | 2873 | |
| 2874 | - if ($filter_url != $url['url']) {
|
|
| 2875 | - $languages[$code]['url'] = $filter_url; |
|
| 2876 | - } |
|
| 2877 | - } |
|
| 2878 | - } |
|
| 2879 | - } |
|
| 2874 | + if ($filter_url != $url['url']) {
|
|
| 2875 | + $languages[$code]['url'] = $filter_url; |
|
| 2876 | + } |
|
| 2877 | + } |
|
| 2878 | + } |
|
| 2879 | + } |
|
| 2880 | 2880 | |
| 2881 | - return $languages; |
|
| 2881 | + return $languages; |
|
| 2882 | 2882 | } |
| 2883 | 2883 | add_filter( 'icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1 ); |
| 2884 | 2884 | \ No newline at end of file |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | /* ON TEMPLATE INCLUDE */ |
| 137 | 137 | ///////////////////////// |
| 138 | 138 | |
| 139 | -add_filter('template_include', 'geodir_template_loader',9);
|
|
| 139 | +add_filter('template_include', 'geodir_template_loader', 9);
|
|
| 140 | 140 | |
| 141 | 141 | ///////////////////////// |
| 142 | 142 | /* CATEGORY / TAXONOMY / CUSTOM POST ACTIONS */ |
@@ -176,9 +176,9 @@ discard block |
||
| 176 | 176 | /* WP REVIEW COUNT ACTIONS */ |
| 177 | 177 | //////////////////////// |
| 178 | 178 | |
| 179 | -add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100,1);
|
|
| 179 | +add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100, 1);
|
|
| 180 | 180 | //add_action('geodir_update_postrating', 'geodir_term_review_count_force_update', 100);
|
| 181 | -add_action('transition_post_status', 'geodir_term_review_count_force_update', 100,3);
|
|
| 181 | +add_action('transition_post_status', 'geodir_term_review_count_force_update', 100, 3);
|
|
| 182 | 182 | //add_action('created_term', 'geodir_term_review_count_force_update', 100);
|
| 183 | 183 | add_action('edited_term', 'geodir_term_review_count_force_update', 100);
|
| 184 | 184 | add_action('delete_term', 'geodir_term_review_count_force_update', 100);
|
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | function geodir_unset_prev_theme_nav_location($newname) |
| 224 | 224 | {
|
| 225 | - $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
|
|
| 225 | + $geodir_theme_location = get_option('geodir_theme_location_nav_'.$newname);
|
|
| 226 | 226 | if ($geodir_theme_location) {
|
| 227 | 227 | update_option('geodir_theme_location_nav', $geodir_theme_location);
|
| 228 | 228 | } else {
|
@@ -320,8 +320,8 @@ discard block |
||
| 320 | 320 | |
| 321 | 321 | /////// GEO DIRECOTORY CUSTOM HOOKS /// |
| 322 | 322 | |
| 323 | -add_action('geodir_before_tab_content', 'geodir_before_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 324 | -add_action('geodir_after_tab_content', 'geodir_after_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 323 | +add_action('geodir_before_tab_content', 'geodir_before_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 324 | +add_action('geodir_after_tab_content', 'geodir_after_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
|
|
| 325 | 325 | |
| 326 | 326 | // Detail page sidebar content |
| 327 | 327 | add_action('geodir_detail_page_sidebar', 'geodir_detail_page_sidebar_content_sorting', 1);
|
@@ -421,8 +421,8 @@ discard block |
||
| 421 | 421 | do_action('geodir_after_social_sharing_buttons');
|
| 422 | 422 | $content_html = ob_get_clean(); |
| 423 | 423 | if (trim($content_html) != '') |
| 424 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>'; |
|
| 425 | - if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 424 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">'.$content_html.'</div>'; |
|
| 425 | + if ((int) get_option('geodir_disable_tfg_buttons_section') != 1) {
|
|
| 426 | 426 | /** |
| 427 | 427 | * Filter the geodir_social_sharing_buttons() function content. |
| 428 | 428 | * |
@@ -462,12 +462,12 @@ discard block |
||
| 462 | 462 | $post_id = $post->ID; |
| 463 | 463 | |
| 464 | 464 | if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
| 465 | - $post_id = (int)$_REQUEST['pid']; |
|
| 465 | + $post_id = (int) $_REQUEST['pid']; |
|
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | $postlink = get_permalink(geodir_add_listing_page_id()); |
| 469 | 469 | $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
|
| 470 | - echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
|
|
| 470 | + echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="'.esc_url($editlink).'">'.__('Edit this Post', 'geodirectory').'</a></p>';
|
|
| 471 | 471 | } |
| 472 | 472 | }// end of if, if its a preview or not |
| 473 | 473 | /** |
@@ -478,8 +478,8 @@ discard block |
||
| 478 | 478 | do_action('geodir_after_edit_post_link');
|
| 479 | 479 | $content_html = ob_get_clean(); |
| 480 | 480 | if (trim($content_html) != '') |
| 481 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>'; |
|
| 482 | - if ((int)get_option('geodir_disable_user_links_section') != 1) {
|
|
| 481 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">'.$content_html.'</div>'; |
|
| 482 | + if ((int) get_option('geodir_disable_user_links_section') != 1) {
|
|
| 483 | 483 | /** |
| 484 | 484 | * Filter the geodir_edit_post_link() function content. |
| 485 | 485 | * |
@@ -500,8 +500,8 @@ discard block |
||
| 500 | 500 | */ |
| 501 | 501 | function geodir_detail_page_google_analytics() |
| 502 | 502 | {
|
| 503 | - global $post,$preview; |
|
| 504 | - if($preview){return '';}
|
|
| 503 | + global $post, $preview; |
|
| 504 | + if ($preview) {return ''; }
|
|
| 505 | 505 | $package_info = array(); |
| 506 | 506 | $package_info = geodir_post_package_info($package_info, $post); |
| 507 | 507 | |
@@ -533,14 +533,14 @@ discard block |
||
| 533 | 533 | $hide_refresh = get_option('geodir_ga_auto_refresh');
|
| 534 | 534 | |
| 535 | 535 | $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0; |
| 536 | - if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
|
|
| 536 | + if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id() == $post->post_author || current_user_can('manage_options'))) {
|
|
| 537 | 537 | $page_url = urlencode($_SERVER['REQUEST_URI']); |
| 538 | 538 | ?> |
| 539 | 539 | <script type="text/javascript"> |
| 540 | 540 | var gd_gaTimeOut; |
| 541 | - var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
|
|
| 542 | - var gd_gaHideRefresh = <?php echo (int)$hide_refresh;?>; |
|
| 543 | - var gd_gaAutoRefresh = <?php echo $auto_refresh;?>; |
|
| 541 | + var gd_gaTime = parseInt('<?php echo $refresh_time; ?>');
|
|
| 542 | + var gd_gaHideRefresh = <?php echo (int) $hide_refresh; ?>; |
|
| 543 | + var gd_gaAutoRefresh = <?php echo $auto_refresh; ?>; |
|
| 544 | 544 | ga_data1 = false; |
| 545 | 545 | ga_data2 = false; |
| 546 | 546 | ga_data3 = false; |
@@ -681,7 +681,7 @@ discard block |
||
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | function gdga_noResults() {
|
| 684 | - jQuery('#gdga-chart-container').html('<?php _e('No results available','geodirectory');?>');
|
|
| 684 | + jQuery('#gdga-chart-container').html('<?php _e('No results available', 'geodirectory'); ?>');
|
|
| 685 | 685 | jQuery('#gdga-legend-container').html('');
|
| 686 | 686 | } |
| 687 | 687 | |
@@ -713,18 +713,18 @@ discard block |
||
| 713 | 713 | var data2 = results[1].rows.map(function(row) { return +row[2]; });
|
| 714 | 714 | //var labelsN = results[0].rows.map(function(row) { return +row[1]; });
|
| 715 | 715 | |
| 716 | - var labels = ['<?php _e('Jan', 'geodirectory');?>',
|
|
| 717 | - '<?php _e('Feb', 'geodirectory');?>',
|
|
| 718 | - '<?php _e('Mar', 'geodirectory');?>',
|
|
| 719 | - '<?php _e('Apr', 'geodirectory');?>',
|
|
| 720 | - '<?php _e('May', 'geodirectory');?>',
|
|
| 721 | - '<?php _e('Jun', 'geodirectory');?>',
|
|
| 722 | - '<?php _e('Jul', 'geodirectory');?>',
|
|
| 723 | - '<?php _e('Aug', 'geodirectory');?>',
|
|
| 724 | - '<?php _e('Sep', 'geodirectory');?>',
|
|
| 725 | - '<?php _e('Oct', 'geodirectory');?>',
|
|
| 726 | - '<?php _e('Nov', 'geodirectory');?>',
|
|
| 727 | - '<?php _e('Dec', 'geodirectory');?>'];
|
|
| 716 | + var labels = ['<?php _e('Jan', 'geodirectory'); ?>',
|
|
| 717 | + '<?php _e('Feb', 'geodirectory'); ?>',
|
|
| 718 | + '<?php _e('Mar', 'geodirectory'); ?>',
|
|
| 719 | + '<?php _e('Apr', 'geodirectory'); ?>',
|
|
| 720 | + '<?php _e('May', 'geodirectory'); ?>',
|
|
| 721 | + '<?php _e('Jun', 'geodirectory'); ?>',
|
|
| 722 | + '<?php _e('Jul', 'geodirectory'); ?>',
|
|
| 723 | + '<?php _e('Aug', 'geodirectory'); ?>',
|
|
| 724 | + '<?php _e('Sep', 'geodirectory'); ?>',
|
|
| 725 | + '<?php _e('Oct', 'geodirectory'); ?>',
|
|
| 726 | + '<?php _e('Nov', 'geodirectory'); ?>',
|
|
| 727 | + '<?php _e('Dec', 'geodirectory'); ?>'];
|
|
| 728 | 728 | |
| 729 | 729 | // Ensure the data arrays are at least as long as the labels array. |
| 730 | 730 | // Chart.js bar charts don't (yet) accept sparse datasets. |
@@ -737,13 +737,13 @@ discard block |
||
| 737 | 737 | labels : labels, |
| 738 | 738 | datasets : [ |
| 739 | 739 | {
|
| 740 | - label: '<?php _e('Last Year', 'geodirectory');?>',
|
|
| 740 | + label: '<?php _e('Last Year', 'geodirectory'); ?>',
|
|
| 741 | 741 | fillColor : "rgba(220,220,220,0.5)", |
| 742 | 742 | strokeColor : "rgba(220,220,220,1)", |
| 743 | 743 | data : data2 |
| 744 | 744 | }, |
| 745 | 745 | {
|
| 746 | - label: '<?php _e('This Year', 'geodirectory');?>',
|
|
| 746 | + label: '<?php _e('This Year', 'geodirectory'); ?>',
|
|
| 747 | 747 | fillColor : "rgba(151,187,205,0.5)", |
| 748 | 748 | strokeColor : "rgba(151,187,205,1)", |
| 749 | 749 | data : data1 |
@@ -788,30 +788,30 @@ discard block |
||
| 788 | 788 | |
| 789 | 789 | <?php |
| 790 | 790 | // Here we list the shorthand days of the week so it can be used in translation. |
| 791 | - __("Mon",'geodirectory');
|
|
| 792 | - __("Tue",'geodirectory');
|
|
| 793 | - __("Wed",'geodirectory');
|
|
| 794 | - __("Thu",'geodirectory');
|
|
| 795 | - __("Fri",'geodirectory');
|
|
| 796 | - __("Sat",'geodirectory');
|
|
| 797 | - __("Sun",'geodirectory');
|
|
| 791 | + __("Mon", 'geodirectory');
|
|
| 792 | + __("Tue", 'geodirectory');
|
|
| 793 | + __("Wed", 'geodirectory');
|
|
| 794 | + __("Thu", 'geodirectory');
|
|
| 795 | + __("Fri", 'geodirectory');
|
|
| 796 | + __("Sat", 'geodirectory');
|
|
| 797 | + __("Sun", 'geodirectory');
|
|
| 798 | 798 | ?> |
| 799 | 799 | |
| 800 | 800 | labels = [ |
| 801 | - "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
|
|
| 802 | - "<?php _e(date('D', strtotime("+2 day")),'geodirectory'); ?>",
|
|
| 803 | - "<?php _e(date('D', strtotime("+3 day")),'geodirectory'); ?>",
|
|
| 804 | - "<?php _e(date('D', strtotime("+4 day")),'geodirectory'); ?>",
|
|
| 805 | - "<?php _e(date('D', strtotime("+5 day")),'geodirectory'); ?>",
|
|
| 806 | - "<?php _e(date('D', strtotime("+6 day")),'geodirectory'); ?>",
|
|
| 807 | - "<?php _e(date('D', strtotime("+7 day")),'geodirectory'); ?>"
|
|
| 801 | + "<?php _e(date('D', strtotime("+1 day")), 'geodirectory'); ?>",
|
|
| 802 | + "<?php _e(date('D', strtotime("+2 day")), 'geodirectory'); ?>",
|
|
| 803 | + "<?php _e(date('D', strtotime("+3 day")), 'geodirectory'); ?>",
|
|
| 804 | + "<?php _e(date('D', strtotime("+4 day")), 'geodirectory'); ?>",
|
|
| 805 | + "<?php _e(date('D', strtotime("+5 day")), 'geodirectory'); ?>",
|
|
| 806 | + "<?php _e(date('D', strtotime("+6 day")), 'geodirectory'); ?>",
|
|
| 807 | + "<?php _e(date('D', strtotime("+7 day")), 'geodirectory'); ?>"
|
|
| 808 | 808 | ]; |
| 809 | 809 | |
| 810 | 810 | var data = {
|
| 811 | 811 | labels : labels, |
| 812 | 812 | datasets : [ |
| 813 | 813 | {
|
| 814 | - label: '<?php _e('Last Week', 'geodirectory');?>',
|
|
| 814 | + label: '<?php _e('Last Week', 'geodirectory'); ?>',
|
|
| 815 | 815 | fillColor : "rgba(220,220,220,0.5)", |
| 816 | 816 | strokeColor : "rgba(220,220,220,1)", |
| 817 | 817 | pointColor : "rgba(220,220,220,1)", |
@@ -819,7 +819,7 @@ discard block |
||
| 819 | 819 | data : data2 |
| 820 | 820 | }, |
| 821 | 821 | {
|
| 822 | - label: '<?php _e('This Week', 'geodirectory');?>',
|
|
| 822 | + label: '<?php _e('This Week', 'geodirectory'); ?>',
|
|
| 823 | 823 | fillColor : "rgba(151,187,205,0.5)", |
| 824 | 824 | strokeColor : "rgba(151,187,205,1)", |
| 825 | 825 | pointColor : "rgba(151,187,205,1)", |
@@ -1026,18 +1026,18 @@ discard block |
||
| 1026 | 1026 | </style> |
| 1027 | 1027 | <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script> |
| 1028 | 1028 | <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script> |
| 1029 | - <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory');?></button>
|
|
| 1029 | + <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory'); ?></button>
|
|
| 1030 | 1030 | <span id="ga_stats" class="gdga-analytics-box" style="display:none"> |
| 1031 | - <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory');?></div>
|
|
| 1031 | + <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory'); ?></div>
|
|
| 1032 | 1032 | <div id="gd-active-users-container"> |
| 1033 | - <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory');?>"></i><?php _e("Active Users:", 'geodirectory');?>
|
|
| 1033 | + <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory'); ?>"></i><?php _e("Active Users:", 'geodirectory'); ?>
|
|
| 1034 | 1034 | <b class="gd-ActiveUsers-value">0</b> |
| 1035 | 1035 | </div> |
| 1036 | 1036 | </div> |
| 1037 | 1037 | <select id="gdga-select-analytic" onchange="gdga_select_option();" style="display: none;"> |
| 1038 | - <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory');?></option>
|
|
| 1039 | - <option value="years"><?php _e("This Year vs Last Year", 'geodirectory');?></option>
|
|
| 1040 | - <option value="country"><?php _e("Top Countries", 'geodirectory');?></option>
|
|
| 1038 | + <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory'); ?></option>
|
|
| 1039 | + <option value="years"><?php _e("This Year vs Last Year", 'geodirectory'); ?></option>
|
|
| 1040 | + <option value="country"><?php _e("Top Countries", 'geodirectory'); ?></option>
|
|
| 1041 | 1041 | </select> |
| 1042 | 1042 | <div class="Chartjs-figure" id="gdga-chart-container"></div> |
| 1043 | 1043 | <ol class="Chartjs-legend" id="gdga-legend-container"></ol> |
@@ -1053,8 +1053,8 @@ discard block |
||
| 1053 | 1053 | do_action('geodir_after_google_analytics');
|
| 1054 | 1054 | $content_html = ob_get_clean(); |
| 1055 | 1055 | if (trim($content_html) != '') |
| 1056 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>'; |
|
| 1057 | - if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1056 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">'.$content_html.'</div>'; |
|
| 1057 | + if ((int) get_option('geodir_disable_google_analytics_section') != 1) {
|
|
| 1058 | 1058 | /** |
| 1059 | 1059 | * Filter the geodir_edit_post_link() function content. |
| 1060 | 1060 | * |
@@ -1080,7 +1080,7 @@ discard block |
||
| 1080 | 1080 | {
|
| 1081 | 1081 | global $post, $preview, $post_images; |
| 1082 | 1082 | |
| 1083 | - if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
|
|
| 1083 | + if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int) $post->ID)) {
|
|
| 1084 | 1084 | return; |
| 1085 | 1085 | } |
| 1086 | 1086 | ob_start(); // Start buffering; |
@@ -1115,10 +1115,10 @@ discard block |
||
| 1115 | 1115 | |
| 1116 | 1116 | $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
|
| 1117 | 1117 | |
| 1118 | - $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
|
|
| 1118 | + $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="'.$post_avgratings.'">'.$post_avgratings.'</span> / <span itemprop="best" content="5">5</span> '.__("based on", 'geodirectory').' </span><span class="count" itemprop="count" content="'.$comment_count.'">'.$comment_count.' '.$reviews_text.'</span><br />';
|
|
| 1119 | 1119 | |
| 1120 | 1120 | $html .= '<span class="item">'; |
| 1121 | - $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>'; |
|
| 1121 | + $html .= '<span class="fn" itemprop="itemreviewed">'.$post->post_title.'</span>'; |
|
| 1122 | 1122 | |
| 1123 | 1123 | if ($post_images) {
|
| 1124 | 1124 | foreach ($post_images as $img) {
|
@@ -1128,7 +1128,7 @@ discard block |
||
| 1128 | 1128 | } |
| 1129 | 1129 | |
| 1130 | 1130 | if (isset($post_img) && $post_img) {
|
| 1131 | - $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />'; |
|
| 1131 | + $html .= '<br /><img src="'.$post_img.'" class="photo" alt="'.esc_attr($post->post_title).'" itemprop="photo" content="'.$post_img.'" class="photo" />'; |
|
| 1132 | 1132 | } |
| 1133 | 1133 | |
| 1134 | 1134 | $html .= '</span>'; |
@@ -1155,9 +1155,9 @@ discard block |
||
| 1155 | 1155 | do_action('geodir_after_detail_page_review_rating');
|
| 1156 | 1156 | $content_html = ob_get_clean(); |
| 1157 | 1157 | if (trim($content_html) != '') {
|
| 1158 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>'; |
|
| 1158 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">'.$content_html.'</div>'; |
|
| 1159 | 1159 | } |
| 1160 | - if ((int)get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1160 | + if ((int) get_option('geodir_disable_rating_info_section') != 1) {
|
|
| 1161 | 1161 | /** |
| 1162 | 1162 | * Filter the geodir_detail_page_review_rating() function content. |
| 1163 | 1163 | * |
@@ -1196,8 +1196,8 @@ discard block |
||
| 1196 | 1196 | |
| 1197 | 1197 | $content_html = ob_get_clean(); |
| 1198 | 1198 | if (trim($content_html) != '') |
| 1199 | - $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>'; |
|
| 1200 | - if ((int)get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1199 | + $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">'.$content_html.'</div>'; |
|
| 1200 | + if ((int) get_option('geodir_disable_listing_info_section') != 1) {
|
|
| 1201 | 1201 | /** |
| 1202 | 1202 | * Filter the output html for function geodir_detail_page_more_info(). |
| 1203 | 1203 | * |
@@ -1296,7 +1296,7 @@ discard block |
||
| 1296 | 1296 | 'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
|
| 1297 | 1297 | 'geodir_txt_form_wait' => __('Wait...', 'geodirectory'),
|
| 1298 | 1298 | 'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
|
| 1299 | - 'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
|
| 1299 | + 'fa_rating' => (int) get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
|
|
| 1300 | 1300 | 'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
|
| 1301 | 1301 | 'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
|
| 1302 | 1302 | 'geodir_map_name' => geodir_map_name(), |
@@ -1325,10 +1325,10 @@ discard block |
||
| 1325 | 1325 | foreach ($arr_alert_msg as $key => $value) {
|
| 1326 | 1326 | if (!is_scalar($value)) |
| 1327 | 1327 | continue; |
| 1328 | - $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8'); |
|
| 1328 | + $arr_alert_msg[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
| 1329 | 1329 | } |
| 1330 | 1330 | |
| 1331 | - $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';'; |
|
| 1331 | + $script = "var geodir_all_js_msg = ".json_encode($arr_alert_msg).';'; |
|
| 1332 | 1332 | echo '<script>'; |
| 1333 | 1333 | echo $script; |
| 1334 | 1334 | echo '</script>'; |
@@ -1418,7 +1418,7 @@ discard block |
||
| 1418 | 1418 | $geodir_old_sidebars = get_option('geodir_sidebars');
|
| 1419 | 1419 | if (is_array($geodir_old_sidebars)) {
|
| 1420 | 1420 | foreach ($geodir_old_sidebars as $key => $val) {
|
| 1421 | - if(0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1421 | + if (0 === strpos($key, 'geodir_'))// if gd widget |
|
| 1422 | 1422 | {
|
| 1423 | 1423 | $sidebars_widgets[$key] = $geodir_old_sidebars[$key]; |
| 1424 | 1424 | } |
@@ -1497,7 +1497,7 @@ discard block |
||
| 1497 | 1497 | global $post; |
| 1498 | 1498 | $term_condition = ''; |
| 1499 | 1499 | if (isset($_REQUEST['backandedit'])) {
|
| 1500 | - $post = (object)$gd_session->get('listing');
|
|
| 1500 | + $post = (object) $gd_session->get('listing');
|
|
| 1501 | 1501 | $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : ''; |
| 1502 | 1502 | } |
| 1503 | 1503 | |
@@ -1511,7 +1511,7 @@ discard block |
||
| 1511 | 1511 | echo 'checked="checked"'; |
| 1512 | 1512 | } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition" |
| 1513 | 1513 | class="geodir_textfield" value="1" |
| 1514 | - style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
|
| 1514 | + style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if ($terms_page) { echo get_permalink($terms_page); }?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
|
|
| 1515 | 1515 | </span> |
| 1516 | 1516 | </div> |
| 1517 | 1517 | <span class="geodir_message_error"><?php if (isset($required_msg)) {
|
@@ -1551,7 +1551,7 @@ discard block |
||
| 1551 | 1551 | /** This action is documented in geodirectory_template_actions.php */ |
| 1552 | 1552 | $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
|
| 1553 | 1553 | |
| 1554 | - if (!($desc_limit === '' || (int)$desc_limit > 0)) {
|
|
| 1554 | + if (!($desc_limit === '' || (int) $desc_limit > 0)) {
|
|
| 1555 | 1555 | $is_display = false; |
| 1556 | 1556 | } |
| 1557 | 1557 | } |
@@ -1599,16 +1599,16 @@ discard block |
||
| 1599 | 1599 | global $wpdb, $plugin_prefix; |
| 1600 | 1600 | |
| 1601 | 1601 | // Remove unused virtual page |
| 1602 | - $listings_page_id = (int)get_option('geodir_listing_page');
|
|
| 1602 | + $listings_page_id = (int) get_option('geodir_listing_page');
|
|
| 1603 | 1603 | if ($listings_page_id) {
|
| 1604 | - $wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
|
| 1604 | + $wpdb->query($wpdb->prepare("DELETE FROM ".$wpdb->posts." WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
|
|
| 1605 | 1605 | delete_option('geodir_listing_page');
|
| 1606 | 1606 | } |
| 1607 | 1607 | |
| 1608 | 1608 | if (!get_option('geodir_changes_in_custom_fields_table')) {
|
| 1609 | 1609 | $wpdb->query( |
| 1610 | 1610 | $wpdb->prepare( |
| 1611 | - "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1611 | + "UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET is_default=%s, is_admin=%s WHERE is_default=%s", |
|
| 1612 | 1612 | array('1', '1', 'admin')
|
| 1613 | 1613 | ) |
| 1614 | 1614 | ); |
@@ -1616,9 +1616,9 @@ discard block |
||
| 1616 | 1616 | |
| 1617 | 1617 | /* --- terms meta value set --- */ |
| 1618 | 1618 | |
| 1619 | - update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1619 | + update_option('geodir_default_marker_icon', geodir_plugin_url().'/geodirectory-functions/map-functions/icons/pin.png');
|
|
| 1620 | 1620 | |
| 1621 | - $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1621 | + $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."options WHERE option_name LIKE %s", array('%tax_meta_%')));
|
|
| 1622 | 1622 | |
| 1623 | 1623 | if (!empty($options_data)) {
|
| 1624 | 1624 | |
@@ -1626,7 +1626,7 @@ discard block |
||
| 1626 | 1626 | |
| 1627 | 1627 | $option_val = str_replace('tax_meta_', '', $optobj->option_name);
|
| 1628 | 1628 | |
| 1629 | - $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1629 | + $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM ".$wpdb->prefix."term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
|
|
| 1630 | 1630 | |
| 1631 | 1631 | if (!empty($taxonomies_data)) {
|
| 1632 | 1632 | |
@@ -1635,17 +1635,17 @@ discard block |
||
| 1635 | 1635 | $taxObject = get_taxonomy($taxobj->taxonomy); |
| 1636 | 1636 | $post_type = $taxObject->object_type[0]; |
| 1637 | 1637 | |
| 1638 | - $opt_value = 'tax_meta_' . $post_type . '_' . $option_val; |
|
| 1638 | + $opt_value = 'tax_meta_'.$post_type.'_'.$option_val; |
|
| 1639 | 1639 | |
| 1640 | - $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
|
|
| 1640 | + $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM ".$wpdb->prefix."options WHERE option_name=%s", array('tax_meta_'.$option_val)));
|
|
| 1641 | 1641 | |
| 1642 | 1642 | if ($duplicate_data) {
|
| 1643 | 1643 | |
| 1644 | - $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1644 | + $wpdb->query($wpdb->prepare("UPDATE ".$wpdb->prefix."options SET option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
|
|
| 1645 | 1645 | |
| 1646 | 1646 | } else {
|
| 1647 | 1647 | |
| 1648 | - $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1648 | + $wpdb->query($wpdb->prepare("INSERT INTO ".$wpdb->prefix."options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
|
|
| 1649 | 1649 | |
| 1650 | 1650 | } |
| 1651 | 1651 | |
@@ -1679,14 +1679,14 @@ discard block |
||
| 1679 | 1679 | |
| 1680 | 1680 | global $wpdb, $table_prefix; |
| 1681 | 1681 | |
| 1682 | - $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
|
|
| 1682 | + $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($slug)));
|
|
| 1683 | 1683 | |
| 1684 | 1684 | if ($slug_exists) {
|
| 1685 | 1685 | |
| 1686 | 1686 | $suffix = 1; |
| 1687 | 1687 | do {
|
| 1688 | - $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1689 | - $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1688 | + $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix"; |
|
| 1689 | + $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($alt_location_name)));
|
|
| 1690 | 1690 | $suffix++; |
| 1691 | 1691 | } while ($location_slug_check && $suffix < 100); |
| 1692 | 1692 | |
@@ -1740,7 +1740,7 @@ discard block |
||
| 1740 | 1740 | |
| 1741 | 1741 | $suffix = 1; |
| 1742 | 1742 | do {
|
| 1743 | - $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix"; |
|
| 1743 | + $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix"; |
|
| 1744 | 1744 | |
| 1745 | 1745 | /** This action is documented in geodirectory_hooks_actions.php */ |
| 1746 | 1746 | $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
|
@@ -1752,7 +1752,7 @@ discard block |
||
| 1752 | 1752 | |
| 1753 | 1753 | //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
|
| 1754 | 1754 | |
| 1755 | - $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1755 | + $wpdb->query($wpdb->prepare("UPDATE ".$table_prefix."terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
|
|
| 1756 | 1756 | |
| 1757 | 1757 | } |
| 1758 | 1758 | |
@@ -1761,18 +1761,18 @@ discard block |
||
| 1761 | 1761 | $post_type = !empty($taxonomy_obj) ? $taxonomy_obj->object_type[0] : NULL; |
| 1762 | 1762 | |
| 1763 | 1763 | $post_types = geodir_get_posttypes(); |
| 1764 | - if ($post_type && in_array($post_type, $post_types) && $post_type . '_tags' == $taxonomy) {
|
|
| 1765 | - $posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM " . $wpdb->term_relationships . " WHERE term_taxonomy_id = %d", array($tt_id)));
|
|
| 1764 | + if ($post_type && in_array($post_type, $post_types) && $post_type.'_tags' == $taxonomy) {
|
|
| 1765 | + $posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM ".$wpdb->term_relationships." WHERE term_taxonomy_id = %d", array($tt_id)));
|
|
| 1766 | 1766 | |
| 1767 | 1767 | if (!empty($posts_obj)) {
|
| 1768 | 1768 | foreach ($posts_obj as $post_obj) {
|
| 1769 | 1769 | $post_id = $post_obj->object_id; |
| 1770 | 1770 | |
| 1771 | - $raw_tags = wp_get_object_terms($post_id, $post_type . '_tags', array('fields' => 'names'));
|
|
| 1771 | + $raw_tags = wp_get_object_terms($post_id, $post_type.'_tags', array('fields' => 'names'));
|
|
| 1772 | 1772 | $post_tags = !empty($raw_tags) ? implode(',', $raw_tags) : '';
|
| 1773 | 1773 | |
| 1774 | - $listing_table = $plugin_prefix . $post_type . '_detail'; |
|
| 1775 | - $wpdb->query($wpdb->prepare("UPDATE " . $listing_table . " SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
|
|
| 1774 | + $listing_table = $plugin_prefix.$post_type.'_detail'; |
|
| 1775 | + $wpdb->query($wpdb->prepare("UPDATE ".$listing_table." SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
|
|
| 1776 | 1776 | } |
| 1777 | 1777 | } |
| 1778 | 1778 | } |
@@ -1806,7 +1806,7 @@ discard block |
||
| 1806 | 1806 | if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) |
| 1807 | 1807 | return $slug_exists = true; |
| 1808 | 1808 | |
| 1809 | - if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1809 | + if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
|
|
| 1810 | 1810 | return $slug_exists = true; |
| 1811 | 1811 | |
| 1812 | 1812 | return $slug_exists; |
@@ -1846,43 +1846,43 @@ discard block |
||
| 1846 | 1846 | |
| 1847 | 1847 | |
| 1848 | 1848 | $gd_page = ''; |
| 1849 | - if(geodir_is_page('home')){
|
|
| 1849 | + if (geodir_is_page('home')) {
|
|
| 1850 | 1850 | $gd_page = 'home'; |
| 1851 | 1851 | $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
|
| 1852 | 1852 | } |
| 1853 | - elseif(geodir_is_page('detail')){
|
|
| 1853 | + elseif (geodir_is_page('detail')) {
|
|
| 1854 | 1854 | $gd_page = 'detail'; |
| 1855 | 1855 | $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
|
| 1856 | 1856 | } |
| 1857 | - elseif(geodir_is_page('pt')){
|
|
| 1857 | + elseif (geodir_is_page('pt')) {
|
|
| 1858 | 1858 | $gd_page = 'pt'; |
| 1859 | 1859 | $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
|
| 1860 | 1860 | } |
| 1861 | - elseif(geodir_is_page('listing')){
|
|
| 1861 | + elseif (geodir_is_page('listing')) {
|
|
| 1862 | 1862 | $gd_page = 'listing'; |
| 1863 | 1863 | $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
|
| 1864 | 1864 | } |
| 1865 | - elseif(geodir_is_page('location')){
|
|
| 1865 | + elseif (geodir_is_page('location')) {
|
|
| 1866 | 1866 | $gd_page = 'location'; |
| 1867 | 1867 | $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
|
| 1868 | 1868 | } |
| 1869 | - elseif(geodir_is_page('search')){
|
|
| 1869 | + elseif (geodir_is_page('search')) {
|
|
| 1870 | 1870 | $gd_page = 'search'; |
| 1871 | 1871 | $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
|
| 1872 | 1872 | } |
| 1873 | - elseif(geodir_is_page('add-listing')){
|
|
| 1873 | + elseif (geodir_is_page('add-listing')) {
|
|
| 1874 | 1874 | $gd_page = 'add-listing'; |
| 1875 | 1875 | $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
|
| 1876 | 1876 | } |
| 1877 | - elseif(geodir_is_page('author')){
|
|
| 1877 | + elseif (geodir_is_page('author')) {
|
|
| 1878 | 1878 | $gd_page = 'author'; |
| 1879 | 1879 | $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
|
| 1880 | 1880 | } |
| 1881 | - elseif(geodir_is_page('login')){
|
|
| 1881 | + elseif (geodir_is_page('login')) {
|
|
| 1882 | 1882 | $gd_page = 'login'; |
| 1883 | 1883 | $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
|
| 1884 | 1884 | } |
| 1885 | - elseif(geodir_is_page('listing-success')){
|
|
| 1885 | + elseif (geodir_is_page('listing-success')) {
|
|
| 1886 | 1886 | $gd_page = 'listing-success'; |
| 1887 | 1887 | $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
|
| 1888 | 1888 | } |
@@ -1914,12 +1914,12 @@ discard block |
||
| 1914 | 1914 | |
| 1915 | 1915 | if (!get_option('geodir_set_post_attachments')) {
|
| 1916 | 1916 | |
| 1917 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 1918 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 1917 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 1918 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
| 1919 | 1919 | |
| 1920 | 1920 | $all_postypes = geodir_get_posttypes(); |
| 1921 | 1921 | |
| 1922 | - foreach($all_postypes as $post_type){
|
|
| 1922 | + foreach ($all_postypes as $post_type) {
|
|
| 1923 | 1923 | $args = array( |
| 1924 | 1924 | 'posts_per_page' => -1, |
| 1925 | 1925 | 'post_type' => $post_type, |
@@ -2013,7 +2013,7 @@ discard block |
||
| 2013 | 2013 | {
|
| 2014 | 2014 | $user_id = get_current_user_id(); |
| 2015 | 2015 | |
| 2016 | - if(!$user_id){return $post;}
|
|
| 2016 | + if (!$user_id) {return $post; }
|
|
| 2017 | 2017 | |
| 2018 | 2018 | $gd_post_types = geodir_get_posttypes(); |
| 2019 | 2019 | |
@@ -2122,7 +2122,7 @@ discard block |
||
| 2122 | 2122 | |
| 2123 | 2123 | if (array_key_exists('post_video', $tabs_arr)) {
|
| 2124 | 2124 | |
| 2125 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2125 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
|
|
| 2126 | 2126 | |
| 2127 | 2127 | if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') |
| 2128 | 2128 | $tabs_arr['post_video']['heading_text'] = $field_title; |
@@ -2130,7 +2130,7 @@ discard block |
||
| 2130 | 2130 | |
| 2131 | 2131 | if (array_key_exists('special_offers', $tabs_arr)) {
|
| 2132 | 2132 | |
| 2133 | - $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2133 | + $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
|
|
| 2134 | 2134 | |
| 2135 | 2135 | if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') |
| 2136 | 2136 | $tabs_arr['special_offers']['heading_text'] = $field_title; |
@@ -2151,7 +2151,7 @@ discard block |
||
| 2151 | 2151 | */ |
| 2152 | 2152 | function geodir_remove_template_redirect_actions() |
| 2153 | 2153 | {
|
| 2154 | - if (geodir_is_page('login')){
|
|
| 2154 | + if (geodir_is_page('login')) {
|
|
| 2155 | 2155 | remove_all_actions('template_redirect');
|
| 2156 | 2156 | remove_action('init', 'avia_modify_front', 10);
|
| 2157 | 2157 | } |
@@ -2198,25 +2198,25 @@ discard block |
||
| 2198 | 2198 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
| 2199 | 2199 | |
| 2200 | 2200 | $wpdb->query( |
| 2201 | - $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
|
|
| 2201 | + $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d AND file=%s ",
|
|
| 2202 | 2202 | array($post_id, $split_img_file_path) |
| 2203 | 2203 | ) |
| 2204 | 2204 | ); |
| 2205 | 2205 | |
| 2206 | 2206 | $attachment_data = $wpdb->get_row( |
| 2207 | - $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
|
|
| 2207 | + $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=%d",
|
|
| 2208 | 2208 | array($post_id) |
| 2209 | 2209 | ) |
| 2210 | 2210 | ); |
| 2211 | 2211 | |
| 2212 | 2212 | if (!empty($attachment_data)) {
|
| 2213 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2213 | + $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
|
|
| 2214 | 2214 | } |
| 2215 | 2215 | |
| 2216 | 2216 | |
| 2217 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2217 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
| 2218 | 2218 | |
| 2219 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2219 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='' WHERE post_id =".$post_id);
|
|
| 2220 | 2220 | |
| 2221 | 2221 | geodir_set_wp_featured_image($post_id); |
| 2222 | 2222 | |
@@ -2244,9 +2244,9 @@ discard block |
||
| 2244 | 2244 | |
| 2245 | 2245 | foreach ($all_postypes as $posttype) {
|
| 2246 | 2246 | |
| 2247 | - $tablename = $plugin_prefix . $posttype . '_detail'; |
|
| 2247 | + $tablename = $plugin_prefix.$posttype.'_detail'; |
|
| 2248 | 2248 | |
| 2249 | - $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
|
|
| 2249 | + $get_post_data = $wpdb->get_results("SELECT post_id FROM ".$tablename);
|
|
| 2250 | 2250 | |
| 2251 | 2251 | if (!empty($get_post_data)) {
|
| 2252 | 2252 | |
@@ -2254,7 +2254,7 @@ discard block |
||
| 2254 | 2254 | |
| 2255 | 2255 | $post_id = $data->post_id; |
| 2256 | 2256 | |
| 2257 | - $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
|
|
| 2257 | + $attachment_data = $wpdb->get_results("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id =".$post_id." AND file!=''");
|
|
| 2258 | 2258 | |
| 2259 | 2259 | if (!empty($attachment_data)) {
|
| 2260 | 2260 | |
@@ -2271,22 +2271,22 @@ discard block |
||
| 2271 | 2271 | |
| 2272 | 2272 | $file_name = $file_info['basename']; |
| 2273 | 2273 | |
| 2274 | - $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name; |
|
| 2274 | + $img_arr['path'] = $uploads_path.$sub_dir.'/'.$file_name; |
|
| 2275 | 2275 | |
| 2276 | 2276 | if (!file_exists($img_arr['path'])) {
|
| 2277 | 2277 | |
| 2278 | - $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
|
|
| 2278 | + $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ID=".$attach->ID);
|
|
| 2279 | 2279 | |
| 2280 | 2280 | } |
| 2281 | 2281 | |
| 2282 | 2282 | } |
| 2283 | 2283 | |
| 2284 | - $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
|
|
| 2284 | + $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=".$post_id." GROUP BY post_id");
|
|
| 2285 | 2285 | |
| 2286 | 2286 | if (!empty($attachment_data)) {
|
| 2287 | 2287 | |
| 2288 | 2288 | if ($attachment_data->ID) |
| 2289 | - $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
|
|
| 2289 | + $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
|
|
| 2290 | 2290 | |
| 2291 | 2291 | } else {
|
| 2292 | 2292 | |
@@ -2300,7 +2300,7 @@ discard block |
||
| 2300 | 2300 | |
| 2301 | 2301 | } |
| 2302 | 2302 | |
| 2303 | - $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
|
|
| 2303 | + $wpdb->query("UPDATE ".$tablename." SET featured_image='' WHERE post_id =".$post_id);
|
|
| 2304 | 2304 | |
| 2305 | 2305 | geodir_set_wp_featured_image($post_id); |
| 2306 | 2306 | |
@@ -2329,7 +2329,7 @@ discard block |
||
| 2329 | 2329 | {
|
| 2330 | 2330 | |
| 2331 | 2331 | if (!get_option('geodir_default_rating_star_icon')) {
|
| 2332 | - update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
|
|
| 2332 | + update_option('geodir_default_rating_star_icon', geodir_plugin_url().'/geodirectory-assets/images/stars.png');
|
|
| 2333 | 2333 | } |
| 2334 | 2334 | |
| 2335 | 2335 | } |
@@ -2346,10 +2346,10 @@ discard block |
||
| 2346 | 2346 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 2347 | 2347 | * @return array User listing count for each post type. |
| 2348 | 2348 | */ |
| 2349 | -function geodir_user_post_listing_count($user_id=null) |
|
| 2349 | +function geodir_user_post_listing_count($user_id = null) |
|
| 2350 | 2350 | {
|
| 2351 | 2351 | global $wpdb, $plugin_prefix, $current_user; |
| 2352 | - if(!$user_id){
|
|
| 2352 | + if (!$user_id) {
|
|
| 2353 | 2353 | $user_id = $current_user->ID; |
| 2354 | 2354 | } |
| 2355 | 2355 | |
@@ -2360,7 +2360,7 @@ discard block |
||
| 2360 | 2360 | $user_listing = array(); |
| 2361 | 2361 | if (is_array($all_posts) && !empty($all_posts)) {
|
| 2362 | 2362 | foreach ($all_posts as $ptype) {
|
| 2363 | - $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2363 | + $total_posts = $wpdb->get_var("SELECT count( ID ) FROM ".$wpdb->prefix."posts WHERE post_author=".$user_id." AND post_type='".$ptype."' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
|
|
| 2364 | 2364 | |
| 2365 | 2365 | if ($total_posts > 0) {
|
| 2366 | 2366 | $user_listing[$ptype] = $total_posts; |
@@ -2401,19 +2401,19 @@ discard block |
||
| 2401 | 2401 | |
| 2402 | 2402 | $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location); |
| 2403 | 2403 | //remove video and special offers if it is already set to show |
| 2404 | - if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
|
|
| 2404 | + if (isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']) {
|
|
| 2405 | 2405 | $unset_video = true; |
| 2406 | 2406 | } |
| 2407 | 2407 | |
| 2408 | - if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
|
|
| 2408 | + if (isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']) {
|
|
| 2409 | 2409 | $unset_special_offers = true; |
| 2410 | 2410 | } |
| 2411 | - if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
|
|
| 2412 | - foreach($custom_fields as $key => $custom_field){
|
|
| 2413 | - if($custom_field['name']=='geodir_video' && isset($unset_video)){
|
|
| 2411 | + if (isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)) {
|
|
| 2412 | + foreach ($custom_fields as $key => $custom_field) {
|
|
| 2413 | + if ($custom_field['name'] == 'geodir_video' && isset($unset_video)) {
|
|
| 2414 | 2414 | unset($custom_fields[$key]); |
| 2415 | 2415 | } |
| 2416 | - if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
|
|
| 2416 | + if ($custom_field['name'] == 'geodir_special_offers' && isset($unset_special_offers)) {
|
|
| 2417 | 2417 | unset($custom_fields[$key]); |
| 2418 | 2418 | } |
| 2419 | 2419 | } |
@@ -2430,7 +2430,7 @@ discard block |
||
| 2430 | 2430 | $post->{$field_name} = $_REQUEST[$field_name];
|
| 2431 | 2431 | } |
| 2432 | 2432 | |
| 2433 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2433 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file', 'address', 'taxonomy'))) {
|
|
| 2434 | 2434 | if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
|
| 2435 | 2435 | continue; |
| 2436 | 2436 | } |
@@ -2463,7 +2463,7 @@ discard block |
||
| 2463 | 2463 | $post->{$field_name} = $_REQUEST[$field_name];
|
| 2464 | 2464 | } |
| 2465 | 2465 | |
| 2466 | - if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
|
|
| 2466 | + if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file', 'address', 'taxonomy'))) {
|
|
| 2467 | 2467 | $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title']; |
| 2468 | 2468 | $site_title = trim($field['site_title']); |
| 2469 | 2469 | $type = $field; |
@@ -2479,21 +2479,21 @@ discard block |
||
| 2479 | 2479 | $variables_array['label'] = __($type['site_title'], 'geodirectory'); |
| 2480 | 2480 | $variables_array['value'] = ''; |
| 2481 | 2481 | $variables_array['value'] = $post->{$type['htmlvar_name']};
|
| 2482 | - }else{
|
|
| 2482 | + } else {
|
|
| 2483 | 2483 | $i = 0; |
| 2484 | 2484 | $fieldset_count++; |
| 2485 | 2485 | $field_set_start = 1; |
| 2486 | - $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count; |
|
| 2486 | + $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_'.$fieldset_count; |
|
| 2487 | 2487 | $fieldset_arr[$fieldset_count]['label'] = $label; |
| 2488 | 2488 | } |
| 2489 | 2489 | |
| 2490 | 2490 | |
| 2491 | - if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
|
|
| 2491 | + if (isset($type['extra_fields'])) {$extra_fields = $type['extra_fields']; }
|
|
| 2492 | 2492 | $type = stripslashes_deep($type); // strip slashes |
| 2493 | - if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
|
|
| 2493 | + if (isset($type['extra_fields'])) {$type['extra_fields'] = $extra_fields; }
|
|
| 2494 | 2494 | $html = ''; |
| 2495 | 2495 | $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
| 2496 | - if($html_var=='post'){$html_var='post_address';}
|
|
| 2496 | + if ($html_var == 'post') {$html_var = 'post_address'; }
|
|
| 2497 | 2497 | $field_icon = geodir_field_icon_proccess($type); |
| 2498 | 2498 | $filed_type = $type['type']; |
| 2499 | 2499 | |
@@ -2506,7 +2506,7 @@ discard block |
||
| 2506 | 2506 | * @param string $fields_location The location the field is to be show. |
| 2507 | 2507 | * @param array $type The array of field values. |
| 2508 | 2508 | */ |
| 2509 | - $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
|
|
| 2509 | + $html = apply_filters("geodir_custom_field_output_{$filed_type}", $html, $fields_location, $type);
|
|
| 2510 | 2510 | |
| 2511 | 2511 | |
| 2512 | 2512 | /** |
@@ -2552,7 +2552,7 @@ discard block |
||
| 2552 | 2552 | * @param string $htmlvar_name The field HTML var name. |
| 2553 | 2553 | */ |
| 2554 | 2554 | 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
|
| 2555 | - 'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>' |
|
| 2555 | + 'tab_content' => '<div class="geodir-company_info field-group xxx">'.$fieldset_html.'</div>' |
|
| 2556 | 2556 | ); |
| 2557 | 2557 | } |
| 2558 | 2558 | } else {
|
@@ -2614,7 +2614,7 @@ discard block |
||
| 2614 | 2614 | } |
| 2615 | 2615 | $status .= ")</strong>"; |
| 2616 | 2616 | |
| 2617 | - $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
|
|
| 2617 | + $html = '<span class="geodir-post-status">'.$status_icon.' <font class="geodir-status-label">'.__('Status: ', 'geodirectory').'</font>'.$status.'</span>';
|
|
| 2618 | 2618 | } |
| 2619 | 2619 | } |
| 2620 | 2620 | |
@@ -2683,7 +2683,7 @@ discard block |
||
| 2683 | 2683 | * @return array Modified class array. |
| 2684 | 2684 | */ |
| 2685 | 2685 | function geodir_body_class_active_map($classes = array()) {
|
| 2686 | - $classes[] = 'gd-map-' . geodir_map_name(); |
|
| 2686 | + $classes[] = 'gd-map-'.geodir_map_name(); |
|
| 2687 | 2687 | |
| 2688 | 2688 | return $classes; |
| 2689 | 2689 | } |
@@ -2698,7 +2698,7 @@ discard block |
||
| 2698 | 2698 | * @return string Modified class string. |
| 2699 | 2699 | */ |
| 2700 | 2700 | function geodir_admin_body_class_active_map($class = '') {
|
| 2701 | - $class .= ' gd-map-' . geodir_map_name(); |
|
| 2701 | + $class .= ' gd-map-'.geodir_map_name(); |
|
| 2702 | 2702 | |
| 2703 | 2703 | return $class; |
| 2704 | 2704 | } |
@@ -2718,7 +2718,7 @@ discard block |
||
| 2718 | 2718 | * @return array Translation texts. |
| 2719 | 2719 | */ |
| 2720 | 2720 | function geodir_load_gd_options_text_translation($translation_texts = array()) {
|
| 2721 | - $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array(); |
|
| 2721 | + $translation_texts = !empty($translation_texts) && is_array($translation_texts) ? $translation_texts : array(); |
|
| 2722 | 2722 | |
| 2723 | 2723 | $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
|
| 2724 | 2724 | |
@@ -2784,17 +2784,17 @@ discard block |
||
| 2784 | 2784 | * @param array $args The array of menu arguments. |
| 2785 | 2785 | * @return array The modified arguments. |
| 2786 | 2786 | */ |
| 2787 | -function geodir_add_nav_menu_class( $args ) |
|
| 2787 | +function geodir_add_nav_menu_class($args) |
|
| 2788 | 2788 | {
|
| 2789 | 2789 | |
| 2790 | - if(isset($args['menu_class'])){
|
|
| 2790 | + if (isset($args['menu_class'])) {
|
|
| 2791 | 2791 | $args['menu_class'] = $args['menu_class']." gd-menu-z"; |
| 2792 | 2792 | } |
| 2793 | 2793 | |
| 2794 | 2794 | return $args; |
| 2795 | 2795 | } |
| 2796 | 2796 | |
| 2797 | -add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' ); |
|
| 2797 | +add_filter('wp_nav_menu_args', 'geodir_add_nav_menu_class');
|
|
| 2798 | 2798 | |
| 2799 | 2799 | /** |
| 2800 | 2800 | * Filters WordPress locale ID. |
@@ -2861,7 +2861,7 @@ discard block |
||
| 2861 | 2861 | } |
| 2862 | 2862 | |
| 2863 | 2863 | if (!empty($keep_vars)) {
|
| 2864 | - foreach ( $languages as $code => $url) {
|
|
| 2864 | + foreach ($languages as $code => $url) {
|
|
| 2865 | 2865 | $filter_url = $url['url']; |
| 2866 | 2866 | |
| 2867 | 2867 | foreach ($keep_vars as $var) {
|
@@ -2880,4 +2880,4 @@ discard block |
||
| 2880 | 2880 | |
| 2881 | 2881 | return $languages; |
| 2882 | 2882 | } |
| 2883 | -add_filter( 'icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1 ); |
|
| 2884 | 2883 | \ No newline at end of file |
| 2884 | +add_filter('icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1); |
|
| 2885 | 2885 | \ No newline at end of file |
@@ -10,13 +10,13 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | if (isset($_GET['redirect_to']) && $_GET['redirect_to'] != '') {
|
| 13 | - $redirect_to = $_GET['redirect_to']; |
|
| 13 | + $redirect_to = $_GET['redirect_to']; |
|
| 14 | 14 | } else {
|
| 15 | - //echo $_SERVER['HTTP_HOST'] ; |
|
| 16 | - $redirect_to = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : ''; |
|
| 17 | - if (strpos($redirect_to, $_SERVER['HTTP_HOST']) === false) {
|
|
| 18 | - $redirect_to = home_url(); |
|
| 19 | - } |
|
| 15 | + //echo $_SERVER['HTTP_HOST'] ; |
|
| 16 | + $redirect_to = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : ''; |
|
| 17 | + if (strpos($redirect_to, $_SERVER['HTTP_HOST']) === false) {
|
|
| 18 | + $redirect_to = home_url(); |
|
| 19 | + } |
|
| 20 | 20 | |
| 21 | 21 | } |
| 22 | 22 | |
@@ -38,37 +38,37 @@ discard block |
||
| 38 | 38 | <h4> |
| 39 | 39 | <?php |
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * Filter the `SIGN_IN_PAGE_TITLE` title text on login form template. |
|
| 43 | - * |
|
| 44 | - * @since 1.0.0 |
|
| 45 | - */ |
|
| 46 | - echo apply_filters('geodir_login_page_title', SIGN_IN_PAGE_TITLE);
|
|
| 41 | + /** |
|
| 42 | + * Filter the `SIGN_IN_PAGE_TITLE` title text on login form template. |
|
| 43 | + * |
|
| 44 | + * @since 1.0.0 |
|
| 45 | + */ |
|
| 46 | + echo apply_filters('geodir_login_page_title', SIGN_IN_PAGE_TITLE);
|
|
| 47 | 47 | |
| 48 | - ?> |
|
| 48 | + ?> |
|
| 49 | 49 | </h4> |
| 50 | 50 | <?php |
| 51 | - if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
|
|
| 52 | - echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>"; |
|
| 53 | - } elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
|
|
| 54 | - echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>"; |
|
| 55 | - } |
|
| 51 | + if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
|
|
| 52 | + echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>"; |
|
| 53 | + } elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
|
|
| 54 | + echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>"; |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | - if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm') |
|
| 58 | - echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>'; |
|
| 57 | + if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm') |
|
| 58 | + echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>'; |
|
| 59 | 59 | |
| 60 | - do_action('geodir_login_error_messages');
|
|
| 60 | + do_action('geodir_login_error_messages');
|
|
| 61 | 61 | |
| 62 | - ?> |
|
| 62 | + ?> |
|
| 63 | 63 | <form name="cus_loginform" id="cus_loginform" method="post"> |
| 64 | 64 | |
| 65 | 65 | <div class="form_row clearfix"> |
| 66 | 66 | <input placeholder='<?php echo USERNAME_TEXT; ?>' type="text" name="log" id="user_login" |
| 67 | 67 | value="<?php global $user_login; |
| 68 | - if (!isset($user_login)) {
|
|
| 69 | - $user_login = ''; |
|
| 70 | - } |
|
| 71 | - echo esc_attr($user_login); ?>" size="20" class="textfield"/> |
|
| 68 | + if (!isset($user_login)) {
|
|
| 69 | + $user_login = ''; |
|
| 70 | + } |
|
| 71 | + echo esc_attr($user_login); ?>" size="20" class="textfield"/> |
|
| 72 | 72 | <span class="user_loginInfo"></span> |
| 73 | 73 | </div> |
| 74 | 74 | |
@@ -79,14 +79,14 @@ discard block |
||
| 79 | 79 | </div> |
| 80 | 80 | |
| 81 | 81 | <?php |
| 82 | - /** |
|
| 83 | - * This is a default WordPress action that calls any additional elements needed for any login forms. |
|
| 84 | - * |
|
| 85 | - * We use this action before the remember me checkbox on the sigin form. |
|
| 86 | - * |
|
| 87 | - * @since 1.0.0 |
|
| 88 | - */ |
|
| 89 | - do_action('login_form'); ?>
|
|
| 82 | + /** |
|
| 83 | + * This is a default WordPress action that calls any additional elements needed for any login forms. |
|
| 84 | + * |
|
| 85 | + * We use this action before the remember me checkbox on the sigin form. |
|
| 86 | + * |
|
| 87 | + * @since 1.0.0 |
|
| 88 | + */ |
|
| 89 | + do_action('login_form'); ?>
|
|
| 90 | 90 | <p class="rember"> |
| 91 | 91 | <input name="rememberme" type="checkbox" id="rememberme" value="forever" class="fl"/> |
| 92 | 92 | <?php echo REMEMBER_ON_COMPUTER_TEXT; ?> |
@@ -110,12 +110,12 @@ discard block |
||
| 110 | 110 | <input placeholder='<?php echo USERNAME_EMAIL_TEXT; ?>' type="text" name="user_login" |
| 111 | 111 | value="<?php echo esc_attr($user_login); ?>" size="20" class="user_login1 textfield"/> |
| 112 | 112 | <?php |
| 113 | - /** |
|
| 114 | - * Called before the get new password button in the login box template. |
|
| 115 | - * |
|
| 116 | - * @since 1.0.0 |
|
| 117 | - */ |
|
| 118 | - do_action('lostpassword_form'); ?>
|
|
| 113 | + /** |
|
| 114 | + * Called before the get new password button in the login box template. |
|
| 115 | + * |
|
| 116 | + * @since 1.0.0 |
|
| 117 | + */ |
|
| 118 | + do_action('lostpassword_form'); ?>
|
|
| 119 | 119 | </div> |
| 120 | 120 | <input type="submit" name="get_new_password" value="<?php echo GET_NEW_PW_TEXT; ?>" class="geodir_button"/> |
| 121 | 121 | </form> |
@@ -49,13 +49,13 @@ |
||
| 49 | 49 | </h4> |
| 50 | 50 | <?php |
| 51 | 51 | if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
|
| 52 | - echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>"; |
|
| 52 | + echo "<p class=\"error_msg\"> ".INVALID_USER_FPW_MSG." </p>"; |
|
| 53 | 53 | } elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
|
| 54 | - echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>"; |
|
| 54 | + echo "<p class=\"error_msg\"> ".INVALID_USER_PW_MSG." </p>"; |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm') |
| 58 | - echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>'; |
|
| 58 | + echo '<p class="sucess_msg">'.PW_SEND_CONFIRM_MSG.'</p>'; |
|
| 59 | 59 | |
| 60 | 60 | do_action('geodir_login_error_messages');
|
| 61 | 61 | |
@@ -54,8 +54,9 @@ |
||
| 54 | 54 | echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>"; |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | - if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm') |
|
| 58 | - echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>'; |
|
| 57 | + if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm') { |
|
| 58 | + echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>'; |
|
| 59 | + } |
|
| 59 | 60 | |
| 60 | 61 | do_action('geodir_login_error_messages');
|
| 61 | 62 | |
@@ -500,7 +500,7 @@ discard block |
||
| 500 | 500 | * @param [$issuer] the expected issues, defaults to Google |
| 501 | 501 | * @param [$max_expiry] the max lifetime of a token, defaults to MAX_TOKEN_LIFETIME_SECS |
| 502 | 502 | * @throws Google_Auth_Exception |
| 503 | - * @return mixed token information if valid, false if not |
|
| 503 | + * @return Google_Auth_LoginTicket token information if valid, false if not |
|
| 504 | 504 | */ |
| 505 | 505 | public function verifySignedJwtWithCerts( |
| 506 | 506 | $jwt, |
@@ -626,6 +626,7 @@ discard block |
||
| 626 | 626 | |
| 627 | 627 | /** |
| 628 | 628 | * Add a parameter to the auth params if not empty string. |
| 629 | + * @param string $name |
|
| 629 | 630 | */ |
| 630 | 631 | private function maybeAddParam($params, $name) |
| 631 | 632 | { |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct(Google_Client $client) |
| 59 | 59 | { |
| 60 | - $this->client = $client; |
|
| 60 | + $this->client = $client; |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
@@ -72,8 +72,8 @@ discard block |
||
| 72 | 72 | */ |
| 73 | 73 | public function authenticatedRequest(Google_Http_Request $request) |
| 74 | 74 | { |
| 75 | - $request = $this->sign($request); |
|
| 76 | - return $this->client->getIo()->makeRequest($request); |
|
| 75 | + $request = $this->sign($request); |
|
| 76 | + return $this->client->getIo()->makeRequest($request); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
@@ -84,52 +84,52 @@ discard block |
||
| 84 | 84 | */ |
| 85 | 85 | public function authenticate($code, $crossClient = false) |
| 86 | 86 | { |
| 87 | - if (strlen($code) == 0) { |
|
| 88 | - throw new Google_Auth_Exception("Invalid code"); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - $arguments = array( |
|
| 92 | - 'code' => $code, |
|
| 93 | - 'grant_type' => 'authorization_code', |
|
| 94 | - 'client_id' => $this->client->getClassConfig($this, 'client_id'), |
|
| 95 | - 'client_secret' => $this->client->getClassConfig($this, 'client_secret') |
|
| 96 | - ); |
|
| 97 | - |
|
| 98 | - if ($crossClient !== true) { |
|
| 99 | - $arguments['redirect_uri'] = $this->client->getClassConfig($this, 'redirect_uri'); |
|
| 100 | - } |
|
| 101 | - |
|
| 102 | - // We got here from the redirect from a successful authorization grant, |
|
| 103 | - // fetch the access token |
|
| 104 | - $request = new Google_Http_Request( |
|
| 105 | - self::OAUTH2_TOKEN_URI, |
|
| 106 | - 'POST', |
|
| 107 | - array(), |
|
| 108 | - $arguments |
|
| 109 | - ); |
|
| 110 | - $request->disableGzip(); |
|
| 111 | - $response = $this->client->getIo()->makeRequest($request); |
|
| 112 | - |
|
| 113 | - if ($response->getResponseHttpCode() == 200) { |
|
| 114 | - $this->setAccessToken($response->getResponseBody()); |
|
| 115 | - $this->token['created'] = time(); |
|
| 116 | - return $this->getAccessToken(); |
|
| 117 | - } else { |
|
| 118 | - $decodedResponse = json_decode($response->getResponseBody(), true); |
|
| 119 | - if ($decodedResponse != null && $decodedResponse['error']) { |
|
| 120 | - $errorText = $decodedResponse['error']; |
|
| 121 | - if (isset($decodedResponse['error_description'])) { |
|
| 122 | - $errorText .= ": " . $decodedResponse['error_description']; |
|
| 123 | - } |
|
| 124 | - } |
|
| 125 | - throw new Google_Auth_Exception( |
|
| 126 | - sprintf( |
|
| 127 | - "Error fetching OAuth2 access token, message: '%s'", |
|
| 128 | - $errorText |
|
| 129 | - ), |
|
| 130 | - $response->getResponseHttpCode() |
|
| 131 | - ); |
|
| 132 | - } |
|
| 87 | + if (strlen($code) == 0) { |
|
| 88 | + throw new Google_Auth_Exception("Invalid code"); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + $arguments = array( |
|
| 92 | + 'code' => $code, |
|
| 93 | + 'grant_type' => 'authorization_code', |
|
| 94 | + 'client_id' => $this->client->getClassConfig($this, 'client_id'), |
|
| 95 | + 'client_secret' => $this->client->getClassConfig($this, 'client_secret') |
|
| 96 | + ); |
|
| 97 | + |
|
| 98 | + if ($crossClient !== true) { |
|
| 99 | + $arguments['redirect_uri'] = $this->client->getClassConfig($this, 'redirect_uri'); |
|
| 100 | + } |
|
| 101 | + |
|
| 102 | + // We got here from the redirect from a successful authorization grant, |
|
| 103 | + // fetch the access token |
|
| 104 | + $request = new Google_Http_Request( |
|
| 105 | + self::OAUTH2_TOKEN_URI, |
|
| 106 | + 'POST', |
|
| 107 | + array(), |
|
| 108 | + $arguments |
|
| 109 | + ); |
|
| 110 | + $request->disableGzip(); |
|
| 111 | + $response = $this->client->getIo()->makeRequest($request); |
|
| 112 | + |
|
| 113 | + if ($response->getResponseHttpCode() == 200) { |
|
| 114 | + $this->setAccessToken($response->getResponseBody()); |
|
| 115 | + $this->token['created'] = time(); |
|
| 116 | + return $this->getAccessToken(); |
|
| 117 | + } else { |
|
| 118 | + $decodedResponse = json_decode($response->getResponseBody(), true); |
|
| 119 | + if ($decodedResponse != null && $decodedResponse['error']) { |
|
| 120 | + $errorText = $decodedResponse['error']; |
|
| 121 | + if (isset($decodedResponse['error_description'])) { |
|
| 122 | + $errorText .= ": " . $decodedResponse['error_description']; |
|
| 123 | + } |
|
| 124 | + } |
|
| 125 | + throw new Google_Auth_Exception( |
|
| 126 | + sprintf( |
|
| 127 | + "Error fetching OAuth2 access token, message: '%s'", |
|
| 128 | + $errorText |
|
| 129 | + ), |
|
| 130 | + $response->getResponseHttpCode() |
|
| 131 | + ); |
|
| 132 | + } |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | /** |
@@ -141,37 +141,37 @@ discard block |
||
| 141 | 141 | */ |
| 142 | 142 | public function createAuthUrl($scope) |
| 143 | 143 | { |
| 144 | - $params = array( |
|
| 145 | - 'response_type' => 'code', |
|
| 146 | - 'redirect_uri' => $this->client->getClassConfig($this, 'redirect_uri'), |
|
| 147 | - 'client_id' => $this->client->getClassConfig($this, 'client_id'), |
|
| 148 | - 'scope' => $scope, |
|
| 149 | - 'access_type' => $this->client->getClassConfig($this, 'access_type'), |
|
| 150 | - ); |
|
| 151 | - |
|
| 152 | - // Prefer prompt to approval prompt. |
|
| 153 | - if ($this->client->getClassConfig($this, 'prompt')) { |
|
| 154 | - $params = $this->maybeAddParam($params, 'prompt'); |
|
| 155 | - } else { |
|
| 156 | - $params = $this->maybeAddParam($params, 'approval_prompt'); |
|
| 157 | - } |
|
| 158 | - $params = $this->maybeAddParam($params, 'login_hint'); |
|
| 159 | - $params = $this->maybeAddParam($params, 'hd'); |
|
| 160 | - $params = $this->maybeAddParam($params, 'openid.realm'); |
|
| 161 | - $params = $this->maybeAddParam($params, 'include_granted_scopes'); |
|
| 162 | - |
|
| 163 | - // If the list of scopes contains plus.login, add request_visible_actions |
|
| 164 | - // to auth URL. |
|
| 165 | - $rva = $this->client->getClassConfig($this, 'request_visible_actions'); |
|
| 166 | - if (strpos($scope, 'plus.login') && strlen($rva) > 0) { |
|
| 167 | - $params['request_visible_actions'] = $rva; |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - if (isset($this->state)) { |
|
| 171 | - $params['state'] = $this->state; |
|
| 172 | - } |
|
| 173 | - |
|
| 174 | - return self::OAUTH2_AUTH_URL . "?" . http_build_query($params, '', '&'); |
|
| 144 | + $params = array( |
|
| 145 | + 'response_type' => 'code', |
|
| 146 | + 'redirect_uri' => $this->client->getClassConfig($this, 'redirect_uri'), |
|
| 147 | + 'client_id' => $this->client->getClassConfig($this, 'client_id'), |
|
| 148 | + 'scope' => $scope, |
|
| 149 | + 'access_type' => $this->client->getClassConfig($this, 'access_type'), |
|
| 150 | + ); |
|
| 151 | + |
|
| 152 | + // Prefer prompt to approval prompt. |
|
| 153 | + if ($this->client->getClassConfig($this, 'prompt')) { |
|
| 154 | + $params = $this->maybeAddParam($params, 'prompt'); |
|
| 155 | + } else { |
|
| 156 | + $params = $this->maybeAddParam($params, 'approval_prompt'); |
|
| 157 | + } |
|
| 158 | + $params = $this->maybeAddParam($params, 'login_hint'); |
|
| 159 | + $params = $this->maybeAddParam($params, 'hd'); |
|
| 160 | + $params = $this->maybeAddParam($params, 'openid.realm'); |
|
| 161 | + $params = $this->maybeAddParam($params, 'include_granted_scopes'); |
|
| 162 | + |
|
| 163 | + // If the list of scopes contains plus.login, add request_visible_actions |
|
| 164 | + // to auth URL. |
|
| 165 | + $rva = $this->client->getClassConfig($this, 'request_visible_actions'); |
|
| 166 | + if (strpos($scope, 'plus.login') && strlen($rva) > 0) { |
|
| 167 | + $params['request_visible_actions'] = $rva; |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + if (isset($this->state)) { |
|
| 171 | + $params['state'] = $this->state; |
|
| 172 | + } |
|
| 173 | + |
|
| 174 | + return self::OAUTH2_AUTH_URL . "?" . http_build_query($params, '', '&'); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
@@ -180,38 +180,38 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | public function setAccessToken($token) |
| 182 | 182 | { |
| 183 | - $token = json_decode($token, true); |
|
| 184 | - if ($token == null) { |
|
| 185 | - throw new Google_Auth_Exception('Could not json decode the token'); |
|
| 186 | - } |
|
| 187 | - if (! isset($token['access_token'])) { |
|
| 188 | - throw new Google_Auth_Exception("Invalid token format"); |
|
| 189 | - } |
|
| 190 | - $this->token = $token; |
|
| 183 | + $token = json_decode($token, true); |
|
| 184 | + if ($token == null) { |
|
| 185 | + throw new Google_Auth_Exception('Could not json decode the token'); |
|
| 186 | + } |
|
| 187 | + if (! isset($token['access_token'])) { |
|
| 188 | + throw new Google_Auth_Exception("Invalid token format"); |
|
| 189 | + } |
|
| 190 | + $this->token = $token; |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | public function getAccessToken() |
| 194 | 194 | { |
| 195 | - return json_encode($this->token); |
|
| 195 | + return json_encode($this->token); |
|
| 196 | 196 | } |
| 197 | 197 | |
| 198 | 198 | public function getRefreshToken() |
| 199 | 199 | { |
| 200 | - if (array_key_exists('refresh_token', $this->token)) { |
|
| 201 | - return $this->token['refresh_token']; |
|
| 202 | - } else { |
|
| 203 | - return null; |
|
| 204 | - } |
|
| 200 | + if (array_key_exists('refresh_token', $this->token)) { |
|
| 201 | + return $this->token['refresh_token']; |
|
| 202 | + } else { |
|
| 203 | + return null; |
|
| 204 | + } |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | public function setState($state) |
| 208 | 208 | { |
| 209 | - $this->state = $state; |
|
| 209 | + $this->state = $state; |
|
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | public function setAssertionCredentials(Google_Auth_AssertionCredentials $creds) |
| 213 | 213 | { |
| 214 | - $this->assertionCredentials = $creds; |
|
| 214 | + $this->assertionCredentials = $creds; |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | /** |
@@ -222,43 +222,43 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | public function sign(Google_Http_Request $request) |
| 224 | 224 | { |
| 225 | - // add the developer key to the request before signing it |
|
| 226 | - if ($this->client->getClassConfig($this, 'developer_key')) { |
|
| 227 | - $request->setQueryParam('key', $this->client->getClassConfig($this, 'developer_key')); |
|
| 228 | - } |
|
| 229 | - |
|
| 230 | - // Cannot sign the request without an OAuth access token. |
|
| 231 | - if (null == $this->token && null == $this->assertionCredentials) { |
|
| 232 | - return $request; |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - // Check if the token is set to expire in the next 30 seconds |
|
| 236 | - // (or has already expired). |
|
| 237 | - if ($this->isAccessTokenExpired()) { |
|
| 238 | - if ($this->assertionCredentials) { |
|
| 239 | - $this->refreshTokenWithAssertion(); |
|
| 240 | - } else { |
|
| 241 | - $this->client->getLogger()->debug('OAuth2 access token expired'); |
|
| 242 | - if (! array_key_exists('refresh_token', $this->token)) { |
|
| 243 | - $error = "The OAuth 2.0 access token has expired," |
|
| 244 | - ." and a refresh token is not available. Refresh tokens" |
|
| 245 | - ." are not returned for responses that were auto-approved."; |
|
| 246 | - |
|
| 247 | - $this->client->getLogger()->error($error); |
|
| 248 | - throw new Google_Auth_Exception($error); |
|
| 249 | - } |
|
| 250 | - $this->refreshToken($this->token['refresh_token']); |
|
| 251 | - } |
|
| 252 | - } |
|
| 253 | - |
|
| 254 | - $this->client->getLogger()->debug('OAuth2 authentication'); |
|
| 255 | - |
|
| 256 | - // Add the OAuth2 header to the request |
|
| 257 | - $request->setRequestHeaders( |
|
| 258 | - array('Authorization' => 'Bearer ' . $this->token['access_token']) |
|
| 259 | - ); |
|
| 260 | - |
|
| 261 | - return $request; |
|
| 225 | + // add the developer key to the request before signing it |
|
| 226 | + if ($this->client->getClassConfig($this, 'developer_key')) { |
|
| 227 | + $request->setQueryParam('key', $this->client->getClassConfig($this, 'developer_key')); |
|
| 228 | + } |
|
| 229 | + |
|
| 230 | + // Cannot sign the request without an OAuth access token. |
|
| 231 | + if (null == $this->token && null == $this->assertionCredentials) { |
|
| 232 | + return $request; |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + // Check if the token is set to expire in the next 30 seconds |
|
| 236 | + // (or has already expired). |
|
| 237 | + if ($this->isAccessTokenExpired()) { |
|
| 238 | + if ($this->assertionCredentials) { |
|
| 239 | + $this->refreshTokenWithAssertion(); |
|
| 240 | + } else { |
|
| 241 | + $this->client->getLogger()->debug('OAuth2 access token expired'); |
|
| 242 | + if (! array_key_exists('refresh_token', $this->token)) { |
|
| 243 | + $error = "The OAuth 2.0 access token has expired," |
|
| 244 | + ." and a refresh token is not available. Refresh tokens" |
|
| 245 | + ." are not returned for responses that were auto-approved."; |
|
| 246 | + |
|
| 247 | + $this->client->getLogger()->error($error); |
|
| 248 | + throw new Google_Auth_Exception($error); |
|
| 249 | + } |
|
| 250 | + $this->refreshToken($this->token['refresh_token']); |
|
| 251 | + } |
|
| 252 | + } |
|
| 253 | + |
|
| 254 | + $this->client->getLogger()->debug('OAuth2 authentication'); |
|
| 255 | + |
|
| 256 | + // Add the OAuth2 header to the request |
|
| 257 | + $request->setRequestHeaders( |
|
| 258 | + array('Authorization' => 'Bearer ' . $this->token['access_token']) |
|
| 259 | + ); |
|
| 260 | + |
|
| 261 | + return $request; |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | /** |
@@ -268,14 +268,14 @@ discard block |
||
| 268 | 268 | */ |
| 269 | 269 | public function refreshToken($refreshToken) |
| 270 | 270 | { |
| 271 | - $this->refreshTokenRequest( |
|
| 272 | - array( |
|
| 273 | - 'client_id' => $this->client->getClassConfig($this, 'client_id'), |
|
| 274 | - 'client_secret' => $this->client->getClassConfig($this, 'client_secret'), |
|
| 275 | - 'refresh_token' => $refreshToken, |
|
| 276 | - 'grant_type' => 'refresh_token' |
|
| 277 | - ) |
|
| 278 | - ); |
|
| 271 | + $this->refreshTokenRequest( |
|
| 272 | + array( |
|
| 273 | + 'client_id' => $this->client->getClassConfig($this, 'client_id'), |
|
| 274 | + 'client_secret' => $this->client->getClassConfig($this, 'client_secret'), |
|
| 275 | + 'refresh_token' => $refreshToken, |
|
| 276 | + 'grant_type' => 'refresh_token' |
|
| 277 | + ) |
|
| 278 | + ); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | /** |
@@ -285,83 +285,83 @@ discard block |
||
| 285 | 285 | */ |
| 286 | 286 | public function refreshTokenWithAssertion($assertionCredentials = null) |
| 287 | 287 | { |
| 288 | - if (!$assertionCredentials) { |
|
| 289 | - $assertionCredentials = $this->assertionCredentials; |
|
| 290 | - } |
|
| 291 | - |
|
| 292 | - $cacheKey = $assertionCredentials->getCacheKey(); |
|
| 293 | - |
|
| 294 | - if ($cacheKey) { |
|
| 295 | - // We can check whether we have a token available in the |
|
| 296 | - // cache. If it is expired, we can retrieve a new one from |
|
| 297 | - // the assertion. |
|
| 298 | - $token = $this->client->getCache()->get($cacheKey); |
|
| 299 | - if ($token) { |
|
| 300 | - $this->setAccessToken($token); |
|
| 301 | - } |
|
| 302 | - if (!$this->isAccessTokenExpired()) { |
|
| 303 | - return; |
|
| 304 | - } |
|
| 305 | - } |
|
| 306 | - |
|
| 307 | - $this->client->getLogger()->debug('OAuth2 access token expired'); |
|
| 308 | - $this->refreshTokenRequest( |
|
| 309 | - array( |
|
| 310 | - 'grant_type' => 'assertion', |
|
| 311 | - 'assertion_type' => $assertionCredentials->assertionType, |
|
| 312 | - 'assertion' => $assertionCredentials->generateAssertion(), |
|
| 313 | - ) |
|
| 314 | - ); |
|
| 315 | - |
|
| 316 | - if ($cacheKey) { |
|
| 317 | - // Attempt to cache the token. |
|
| 318 | - $this->client->getCache()->set( |
|
| 319 | - $cacheKey, |
|
| 320 | - $this->getAccessToken() |
|
| 321 | - ); |
|
| 322 | - } |
|
| 288 | + if (!$assertionCredentials) { |
|
| 289 | + $assertionCredentials = $this->assertionCredentials; |
|
| 290 | + } |
|
| 291 | + |
|
| 292 | + $cacheKey = $assertionCredentials->getCacheKey(); |
|
| 293 | + |
|
| 294 | + if ($cacheKey) { |
|
| 295 | + // We can check whether we have a token available in the |
|
| 296 | + // cache. If it is expired, we can retrieve a new one from |
|
| 297 | + // the assertion. |
|
| 298 | + $token = $this->client->getCache()->get($cacheKey); |
|
| 299 | + if ($token) { |
|
| 300 | + $this->setAccessToken($token); |
|
| 301 | + } |
|
| 302 | + if (!$this->isAccessTokenExpired()) { |
|
| 303 | + return; |
|
| 304 | + } |
|
| 305 | + } |
|
| 306 | + |
|
| 307 | + $this->client->getLogger()->debug('OAuth2 access token expired'); |
|
| 308 | + $this->refreshTokenRequest( |
|
| 309 | + array( |
|
| 310 | + 'grant_type' => 'assertion', |
|
| 311 | + 'assertion_type' => $assertionCredentials->assertionType, |
|
| 312 | + 'assertion' => $assertionCredentials->generateAssertion(), |
|
| 313 | + ) |
|
| 314 | + ); |
|
| 315 | + |
|
| 316 | + if ($cacheKey) { |
|
| 317 | + // Attempt to cache the token. |
|
| 318 | + $this->client->getCache()->set( |
|
| 319 | + $cacheKey, |
|
| 320 | + $this->getAccessToken() |
|
| 321 | + ); |
|
| 322 | + } |
|
| 323 | 323 | } |
| 324 | 324 | |
| 325 | 325 | private function refreshTokenRequest($params) |
| 326 | 326 | { |
| 327 | - if (isset($params['assertion'])) { |
|
| 328 | - $this->client->getLogger()->info( |
|
| 329 | - 'OAuth2 access token refresh with Signed JWT assertion grants.' |
|
| 330 | - ); |
|
| 331 | - } else { |
|
| 332 | - $this->client->getLogger()->info('OAuth2 access token refresh'); |
|
| 333 | - } |
|
| 334 | - |
|
| 335 | - $http = new Google_Http_Request( |
|
| 336 | - self::OAUTH2_TOKEN_URI, |
|
| 337 | - 'POST', |
|
| 338 | - array(), |
|
| 339 | - $params |
|
| 340 | - ); |
|
| 341 | - $http->disableGzip(); |
|
| 342 | - $request = $this->client->getIo()->makeRequest($http); |
|
| 343 | - |
|
| 344 | - $code = $request->getResponseHttpCode(); |
|
| 345 | - $body = $request->getResponseBody(); |
|
| 346 | - if (200 == $code) { |
|
| 347 | - $token = json_decode($body, true); |
|
| 348 | - if ($token == null) { |
|
| 349 | - throw new Google_Auth_Exception("Could not json decode the access token"); |
|
| 350 | - } |
|
| 351 | - |
|
| 352 | - if (! isset($token['access_token']) || ! isset($token['expires_in'])) { |
|
| 353 | - throw new Google_Auth_Exception("Invalid token format"); |
|
| 354 | - } |
|
| 355 | - |
|
| 356 | - if (isset($token['id_token'])) { |
|
| 357 | - $this->token['id_token'] = $token['id_token']; |
|
| 358 | - } |
|
| 359 | - $this->token['access_token'] = $token['access_token']; |
|
| 360 | - $this->token['expires_in'] = $token['expires_in']; |
|
| 361 | - $this->token['created'] = time(); |
|
| 362 | - } else { |
|
| 363 | - throw new Google_Auth_Exception("Error refreshing the OAuth2 token, message: '$body'", $code); |
|
| 364 | - } |
|
| 327 | + if (isset($params['assertion'])) { |
|
| 328 | + $this->client->getLogger()->info( |
|
| 329 | + 'OAuth2 access token refresh with Signed JWT assertion grants.' |
|
| 330 | + ); |
|
| 331 | + } else { |
|
| 332 | + $this->client->getLogger()->info('OAuth2 access token refresh'); |
|
| 333 | + } |
|
| 334 | + |
|
| 335 | + $http = new Google_Http_Request( |
|
| 336 | + self::OAUTH2_TOKEN_URI, |
|
| 337 | + 'POST', |
|
| 338 | + array(), |
|
| 339 | + $params |
|
| 340 | + ); |
|
| 341 | + $http->disableGzip(); |
|
| 342 | + $request = $this->client->getIo()->makeRequest($http); |
|
| 343 | + |
|
| 344 | + $code = $request->getResponseHttpCode(); |
|
| 345 | + $body = $request->getResponseBody(); |
|
| 346 | + if (200 == $code) { |
|
| 347 | + $token = json_decode($body, true); |
|
| 348 | + if ($token == null) { |
|
| 349 | + throw new Google_Auth_Exception("Could not json decode the access token"); |
|
| 350 | + } |
|
| 351 | + |
|
| 352 | + if (! isset($token['access_token']) || ! isset($token['expires_in'])) { |
|
| 353 | + throw new Google_Auth_Exception("Invalid token format"); |
|
| 354 | + } |
|
| 355 | + |
|
| 356 | + if (isset($token['id_token'])) { |
|
| 357 | + $this->token['id_token'] = $token['id_token']; |
|
| 358 | + } |
|
| 359 | + $this->token['access_token'] = $token['access_token']; |
|
| 360 | + $this->token['expires_in'] = $token['expires_in']; |
|
| 361 | + $this->token['created'] = time(); |
|
| 362 | + } else { |
|
| 363 | + throw new Google_Auth_Exception("Error refreshing the OAuth2 token, message: '$body'", $code); |
|
| 364 | + } |
|
| 365 | 365 | } |
| 366 | 366 | |
| 367 | 367 | /** |
@@ -373,31 +373,31 @@ discard block |
||
| 373 | 373 | */ |
| 374 | 374 | public function revokeToken($token = null) |
| 375 | 375 | { |
| 376 | - if (!$token) { |
|
| 377 | - if (!$this->token) { |
|
| 378 | - // Not initialized, no token to actually revoke |
|
| 379 | - return false; |
|
| 380 | - } elseif (array_key_exists('refresh_token', $this->token)) { |
|
| 381 | - $token = $this->token['refresh_token']; |
|
| 382 | - } else { |
|
| 383 | - $token = $this->token['access_token']; |
|
| 384 | - } |
|
| 385 | - } |
|
| 386 | - $request = new Google_Http_Request( |
|
| 387 | - self::OAUTH2_REVOKE_URI, |
|
| 388 | - 'POST', |
|
| 389 | - array(), |
|
| 390 | - "token=$token" |
|
| 391 | - ); |
|
| 392 | - $request->disableGzip(); |
|
| 393 | - $response = $this->client->getIo()->makeRequest($request); |
|
| 394 | - $code = $response->getResponseHttpCode(); |
|
| 395 | - if ($code == 200) { |
|
| 396 | - $this->token = null; |
|
| 397 | - return true; |
|
| 398 | - } |
|
| 399 | - |
|
| 400 | - return false; |
|
| 376 | + if (!$token) { |
|
| 377 | + if (!$this->token) { |
|
| 378 | + // Not initialized, no token to actually revoke |
|
| 379 | + return false; |
|
| 380 | + } elseif (array_key_exists('refresh_token', $this->token)) { |
|
| 381 | + $token = $this->token['refresh_token']; |
|
| 382 | + } else { |
|
| 383 | + $token = $this->token['access_token']; |
|
| 384 | + } |
|
| 385 | + } |
|
| 386 | + $request = new Google_Http_Request( |
|
| 387 | + self::OAUTH2_REVOKE_URI, |
|
| 388 | + 'POST', |
|
| 389 | + array(), |
|
| 390 | + "token=$token" |
|
| 391 | + ); |
|
| 392 | + $request->disableGzip(); |
|
| 393 | + $response = $this->client->getIo()->makeRequest($request); |
|
| 394 | + $code = $response->getResponseHttpCode(); |
|
| 395 | + if ($code == 200) { |
|
| 396 | + $this->token = null; |
|
| 397 | + return true; |
|
| 398 | + } |
|
| 399 | + |
|
| 400 | + return false; |
|
| 401 | 401 | } |
| 402 | 402 | |
| 403 | 403 | /** |
@@ -406,15 +406,15 @@ discard block |
||
| 406 | 406 | */ |
| 407 | 407 | public function isAccessTokenExpired() |
| 408 | 408 | { |
| 409 | - if (!$this->token || !isset($this->token['created'])) { |
|
| 410 | - return true; |
|
| 411 | - } |
|
| 409 | + if (!$this->token || !isset($this->token['created'])) { |
|
| 410 | + return true; |
|
| 411 | + } |
|
| 412 | 412 | |
| 413 | - // If the token is set to expire in the next 30 seconds. |
|
| 414 | - $expired = ($this->token['created'] |
|
| 415 | - + ($this->token['expires_in'] - 30)) < time(); |
|
| 413 | + // If the token is set to expire in the next 30 seconds. |
|
| 414 | + $expired = ($this->token['created'] |
|
| 415 | + + ($this->token['expires_in'] - 30)) < time(); |
|
| 416 | 416 | |
| 417 | - return $expired; |
|
| 417 | + return $expired; |
|
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | // Gets federated sign-on certificates to use for verifying identity tokens. |
@@ -422,9 +422,9 @@ discard block |
||
| 422 | 422 | // are PEM encoded certificates. |
| 423 | 423 | private function getFederatedSignOnCerts() |
| 424 | 424 | { |
| 425 | - return $this->retrieveCertsFromLocation( |
|
| 426 | - $this->client->getClassConfig($this, 'federated_signon_certs_url') |
|
| 427 | - ); |
|
| 425 | + return $this->retrieveCertsFromLocation( |
|
| 426 | + $this->client->getClassConfig($this, 'federated_signon_certs_url') |
|
| 427 | + ); |
|
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | /** |
@@ -436,36 +436,36 @@ discard block |
||
| 436 | 436 | */ |
| 437 | 437 | public function retrieveCertsFromLocation($url) |
| 438 | 438 | { |
| 439 | - // If we're retrieving a local file, just grab it. |
|
| 440 | - if ("http" != substr($url, 0, 4)) { |
|
| 441 | - $file = file_get_contents($url); |
|
| 442 | - if ($file) { |
|
| 443 | - return json_decode($file, true); |
|
| 444 | - } else { |
|
| 445 | - throw new Google_Auth_Exception( |
|
| 446 | - "Failed to retrieve verification certificates: '" . |
|
| 447 | - $url . "'." |
|
| 448 | - ); |
|
| 449 | - } |
|
| 450 | - } |
|
| 451 | - |
|
| 452 | - // This relies on makeRequest caching certificate responses. |
|
| 453 | - $request = $this->client->getIo()->makeRequest( |
|
| 454 | - new Google_Http_Request( |
|
| 455 | - $url |
|
| 456 | - ) |
|
| 457 | - ); |
|
| 458 | - if ($request->getResponseHttpCode() == 200) { |
|
| 459 | - $certs = json_decode($request->getResponseBody(), true); |
|
| 460 | - if ($certs) { |
|
| 461 | - return $certs; |
|
| 462 | - } |
|
| 463 | - } |
|
| 464 | - throw new Google_Auth_Exception( |
|
| 465 | - "Failed to retrieve verification certificates: '" . |
|
| 466 | - $request->getResponseBody() . "'.", |
|
| 467 | - $request->getResponseHttpCode() |
|
| 468 | - ); |
|
| 439 | + // If we're retrieving a local file, just grab it. |
|
| 440 | + if ("http" != substr($url, 0, 4)) { |
|
| 441 | + $file = file_get_contents($url); |
|
| 442 | + if ($file) { |
|
| 443 | + return json_decode($file, true); |
|
| 444 | + } else { |
|
| 445 | + throw new Google_Auth_Exception( |
|
| 446 | + "Failed to retrieve verification certificates: '" . |
|
| 447 | + $url . "'." |
|
| 448 | + ); |
|
| 449 | + } |
|
| 450 | + } |
|
| 451 | + |
|
| 452 | + // This relies on makeRequest caching certificate responses. |
|
| 453 | + $request = $this->client->getIo()->makeRequest( |
|
| 454 | + new Google_Http_Request( |
|
| 455 | + $url |
|
| 456 | + ) |
|
| 457 | + ); |
|
| 458 | + if ($request->getResponseHttpCode() == 200) { |
|
| 459 | + $certs = json_decode($request->getResponseBody(), true); |
|
| 460 | + if ($certs) { |
|
| 461 | + return $certs; |
|
| 462 | + } |
|
| 463 | + } |
|
| 464 | + throw new Google_Auth_Exception( |
|
| 465 | + "Failed to retrieve verification certificates: '" . |
|
| 466 | + $request->getResponseBody() . "'.", |
|
| 467 | + $request->getResponseHttpCode() |
|
| 468 | + ); |
|
| 469 | 469 | } |
| 470 | 470 | |
| 471 | 471 | /** |
@@ -480,15 +480,15 @@ discard block |
||
| 480 | 480 | */ |
| 481 | 481 | public function verifyIdToken($id_token = null, $audience = null) |
| 482 | 482 | { |
| 483 | - if (!$id_token) { |
|
| 484 | - $id_token = $this->token['id_token']; |
|
| 485 | - } |
|
| 486 | - $certs = $this->getFederatedSignonCerts(); |
|
| 487 | - if (!$audience) { |
|
| 488 | - $audience = $this->client->getClassConfig($this, 'client_id'); |
|
| 489 | - } |
|
| 490 | - |
|
| 491 | - return $this->verifySignedJwtWithCerts($id_token, $certs, $audience, self::OAUTH2_ISSUER); |
|
| 483 | + if (!$id_token) { |
|
| 484 | + $id_token = $this->token['id_token']; |
|
| 485 | + } |
|
| 486 | + $certs = $this->getFederatedSignonCerts(); |
|
| 487 | + if (!$audience) { |
|
| 488 | + $audience = $this->client->getClassConfig($this, 'client_id'); |
|
| 489 | + } |
|
| 490 | + |
|
| 491 | + return $this->verifySignedJwtWithCerts($id_token, $certs, $audience, self::OAUTH2_ISSUER); |
|
| 492 | 492 | } |
| 493 | 493 | |
| 494 | 494 | /** |
@@ -503,125 +503,125 @@ discard block |
||
| 503 | 503 | * @return mixed token information if valid, false if not |
| 504 | 504 | */ |
| 505 | 505 | public function verifySignedJwtWithCerts( |
| 506 | - $jwt, |
|
| 507 | - $certs, |
|
| 508 | - $required_audience, |
|
| 509 | - $issuer = null, |
|
| 510 | - $max_expiry = null |
|
| 506 | + $jwt, |
|
| 507 | + $certs, |
|
| 508 | + $required_audience, |
|
| 509 | + $issuer = null, |
|
| 510 | + $max_expiry = null |
|
| 511 | 511 | ) { |
| 512 | - if (!$max_expiry) { |
|
| 513 | - // Set the maximum time we will accept a token for. |
|
| 514 | - $max_expiry = self::MAX_TOKEN_LIFETIME_SECS; |
|
| 515 | - } |
|
| 516 | - |
|
| 517 | - $segments = explode(".", $jwt); |
|
| 518 | - if (count($segments) != 3) { |
|
| 519 | - throw new Google_Auth_Exception("Wrong number of segments in token: $jwt"); |
|
| 520 | - } |
|
| 521 | - $signed = $segments[0] . "." . $segments[1]; |
|
| 522 | - $signature = Google_Utils::urlSafeB64Decode($segments[2]); |
|
| 523 | - |
|
| 524 | - // Parse envelope. |
|
| 525 | - $envelope = json_decode(Google_Utils::urlSafeB64Decode($segments[0]), true); |
|
| 526 | - if (!$envelope) { |
|
| 527 | - throw new Google_Auth_Exception("Can't parse token envelope: " . $segments[0]); |
|
| 528 | - } |
|
| 529 | - |
|
| 530 | - // Parse token |
|
| 531 | - $json_body = Google_Utils::urlSafeB64Decode($segments[1]); |
|
| 532 | - $payload = json_decode($json_body, true); |
|
| 533 | - if (!$payload) { |
|
| 534 | - throw new Google_Auth_Exception("Can't parse token payload: " . $segments[1]); |
|
| 535 | - } |
|
| 536 | - |
|
| 537 | - // Check signature |
|
| 538 | - $verified = false; |
|
| 539 | - foreach ($certs as $keyName => $pem) { |
|
| 540 | - $public_key = new Google_Verifier_Pem($pem); |
|
| 541 | - if ($public_key->verify($signed, $signature)) { |
|
| 542 | - $verified = true; |
|
| 543 | - break; |
|
| 544 | - } |
|
| 545 | - } |
|
| 546 | - |
|
| 547 | - if (!$verified) { |
|
| 548 | - throw new Google_Auth_Exception("Invalid token signature: $jwt"); |
|
| 549 | - } |
|
| 550 | - |
|
| 551 | - // Check issued-at timestamp |
|
| 552 | - $iat = 0; |
|
| 553 | - if (array_key_exists("iat", $payload)) { |
|
| 554 | - $iat = $payload["iat"]; |
|
| 555 | - } |
|
| 556 | - if (!$iat) { |
|
| 557 | - throw new Google_Auth_Exception("No issue time in token: $json_body"); |
|
| 558 | - } |
|
| 559 | - $earliest = $iat - self::CLOCK_SKEW_SECS; |
|
| 560 | - |
|
| 561 | - // Check expiration timestamp |
|
| 562 | - $now = time(); |
|
| 563 | - $exp = 0; |
|
| 564 | - if (array_key_exists("exp", $payload)) { |
|
| 565 | - $exp = $payload["exp"]; |
|
| 566 | - } |
|
| 567 | - if (!$exp) { |
|
| 568 | - throw new Google_Auth_Exception("No expiration time in token: $json_body"); |
|
| 569 | - } |
|
| 570 | - if ($exp >= $now + $max_expiry) { |
|
| 571 | - throw new Google_Auth_Exception( |
|
| 572 | - sprintf("Expiration time too far in future: %s", $json_body) |
|
| 573 | - ); |
|
| 574 | - } |
|
| 575 | - |
|
| 576 | - $latest = $exp + self::CLOCK_SKEW_SECS; |
|
| 577 | - if ($now < $earliest) { |
|
| 578 | - throw new Google_Auth_Exception( |
|
| 579 | - sprintf( |
|
| 580 | - "Token used too early, %s < %s: %s", |
|
| 581 | - $now, |
|
| 582 | - $earliest, |
|
| 583 | - $json_body |
|
| 584 | - ) |
|
| 585 | - ); |
|
| 586 | - } |
|
| 587 | - if ($now > $latest) { |
|
| 588 | - throw new Google_Auth_Exception( |
|
| 589 | - sprintf( |
|
| 590 | - "Token used too late, %s > %s: %s", |
|
| 591 | - $now, |
|
| 592 | - $latest, |
|
| 593 | - $json_body |
|
| 594 | - ) |
|
| 595 | - ); |
|
| 596 | - } |
|
| 597 | - |
|
| 598 | - $iss = $payload['iss']; |
|
| 599 | - if ($issuer && $iss != $issuer) { |
|
| 600 | - throw new Google_Auth_Exception( |
|
| 601 | - sprintf( |
|
| 602 | - "Invalid issuer, %s != %s: %s", |
|
| 603 | - $iss, |
|
| 604 | - $issuer, |
|
| 605 | - $json_body |
|
| 606 | - ) |
|
| 607 | - ); |
|
| 608 | - } |
|
| 609 | - |
|
| 610 | - // Check audience |
|
| 611 | - $aud = $payload["aud"]; |
|
| 612 | - if ($aud != $required_audience) { |
|
| 613 | - throw new Google_Auth_Exception( |
|
| 614 | - sprintf( |
|
| 615 | - "Wrong recipient, %s != %s:", |
|
| 616 | - $aud, |
|
| 617 | - $required_audience, |
|
| 618 | - $json_body |
|
| 619 | - ) |
|
| 620 | - ); |
|
| 621 | - } |
|
| 622 | - |
|
| 623 | - // All good. |
|
| 624 | - return new Google_Auth_LoginTicket($envelope, $payload); |
|
| 512 | + if (!$max_expiry) { |
|
| 513 | + // Set the maximum time we will accept a token for. |
|
| 514 | + $max_expiry = self::MAX_TOKEN_LIFETIME_SECS; |
|
| 515 | + } |
|
| 516 | + |
|
| 517 | + $segments = explode(".", $jwt); |
|
| 518 | + if (count($segments) != 3) { |
|
| 519 | + throw new Google_Auth_Exception("Wrong number of segments in token: $jwt"); |
|
| 520 | + } |
|
| 521 | + $signed = $segments[0] . "." . $segments[1]; |
|
| 522 | + $signature = Google_Utils::urlSafeB64Decode($segments[2]); |
|
| 523 | + |
|
| 524 | + // Parse envelope. |
|
| 525 | + $envelope = json_decode(Google_Utils::urlSafeB64Decode($segments[0]), true); |
|
| 526 | + if (!$envelope) { |
|
| 527 | + throw new Google_Auth_Exception("Can't parse token envelope: " . $segments[0]); |
|
| 528 | + } |
|
| 529 | + |
|
| 530 | + // Parse token |
|
| 531 | + $json_body = Google_Utils::urlSafeB64Decode($segments[1]); |
|
| 532 | + $payload = json_decode($json_body, true); |
|
| 533 | + if (!$payload) { |
|
| 534 | + throw new Google_Auth_Exception("Can't parse token payload: " . $segments[1]); |
|
| 535 | + } |
|
| 536 | + |
|
| 537 | + // Check signature |
|
| 538 | + $verified = false; |
|
| 539 | + foreach ($certs as $keyName => $pem) { |
|
| 540 | + $public_key = new Google_Verifier_Pem($pem); |
|
| 541 | + if ($public_key->verify($signed, $signature)) { |
|
| 542 | + $verified = true; |
|
| 543 | + break; |
|
| 544 | + } |
|
| 545 | + } |
|
| 546 | + |
|
| 547 | + if (!$verified) { |
|
| 548 | + throw new Google_Auth_Exception("Invalid token signature: $jwt"); |
|
| 549 | + } |
|
| 550 | + |
|
| 551 | + // Check issued-at timestamp |
|
| 552 | + $iat = 0; |
|
| 553 | + if (array_key_exists("iat", $payload)) { |
|
| 554 | + $iat = $payload["iat"]; |
|
| 555 | + } |
|
| 556 | + if (!$iat) { |
|
| 557 | + throw new Google_Auth_Exception("No issue time in token: $json_body"); |
|
| 558 | + } |
|
| 559 | + $earliest = $iat - self::CLOCK_SKEW_SECS; |
|
| 560 | + |
|
| 561 | + // Check expiration timestamp |
|
| 562 | + $now = time(); |
|
| 563 | + $exp = 0; |
|
| 564 | + if (array_key_exists("exp", $payload)) { |
|
| 565 | + $exp = $payload["exp"]; |
|
| 566 | + } |
|
| 567 | + if (!$exp) { |
|
| 568 | + throw new Google_Auth_Exception("No expiration time in token: $json_body"); |
|
| 569 | + } |
|
| 570 | + if ($exp >= $now + $max_expiry) { |
|
| 571 | + throw new Google_Auth_Exception( |
|
| 572 | + sprintf("Expiration time too far in future: %s", $json_body) |
|
| 573 | + ); |
|
| 574 | + } |
|
| 575 | + |
|
| 576 | + $latest = $exp + self::CLOCK_SKEW_SECS; |
|
| 577 | + if ($now < $earliest) { |
|
| 578 | + throw new Google_Auth_Exception( |
|
| 579 | + sprintf( |
|
| 580 | + "Token used too early, %s < %s: %s", |
|
| 581 | + $now, |
|
| 582 | + $earliest, |
|
| 583 | + $json_body |
|
| 584 | + ) |
|
| 585 | + ); |
|
| 586 | + } |
|
| 587 | + if ($now > $latest) { |
|
| 588 | + throw new Google_Auth_Exception( |
|
| 589 | + sprintf( |
|
| 590 | + "Token used too late, %s > %s: %s", |
|
| 591 | + $now, |
|
| 592 | + $latest, |
|
| 593 | + $json_body |
|
| 594 | + ) |
|
| 595 | + ); |
|
| 596 | + } |
|
| 597 | + |
|
| 598 | + $iss = $payload['iss']; |
|
| 599 | + if ($issuer && $iss != $issuer) { |
|
| 600 | + throw new Google_Auth_Exception( |
|
| 601 | + sprintf( |
|
| 602 | + "Invalid issuer, %s != %s: %s", |
|
| 603 | + $iss, |
|
| 604 | + $issuer, |
|
| 605 | + $json_body |
|
| 606 | + ) |
|
| 607 | + ); |
|
| 608 | + } |
|
| 609 | + |
|
| 610 | + // Check audience |
|
| 611 | + $aud = $payload["aud"]; |
|
| 612 | + if ($aud != $required_audience) { |
|
| 613 | + throw new Google_Auth_Exception( |
|
| 614 | + sprintf( |
|
| 615 | + "Wrong recipient, %s != %s:", |
|
| 616 | + $aud, |
|
| 617 | + $required_audience, |
|
| 618 | + $json_body |
|
| 619 | + ) |
|
| 620 | + ); |
|
| 621 | + } |
|
| 622 | + |
|
| 623 | + // All good. |
|
| 624 | + return new Google_Auth_LoginTicket($envelope, $payload); |
|
| 625 | 625 | } |
| 626 | 626 | |
| 627 | 627 | /** |
@@ -629,10 +629,10 @@ discard block |
||
| 629 | 629 | */ |
| 630 | 630 | private function maybeAddParam($params, $name) |
| 631 | 631 | { |
| 632 | - $param = $this->client->getClassConfig($this, $name); |
|
| 633 | - if ($param != '') { |
|
| 634 | - $params[$name] = $param; |
|
| 635 | - } |
|
| 636 | - return $params; |
|
| 632 | + $param = $this->client->getClassConfig($this, $name); |
|
| 633 | + if ($param != '') { |
|
| 634 | + $params[$name] = $param; |
|
| 635 | + } |
|
| 636 | + return $params; |
|
| 637 | 637 | } |
| 638 | 638 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | 18 | if (!class_exists('Google_Client')) { |
| 19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
| 19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | if ($decodedResponse != null && $decodedResponse['error']) { |
| 120 | 120 | $errorText = $decodedResponse['error']; |
| 121 | 121 | if (isset($decodedResponse['error_description'])) { |
| 122 | - $errorText .= ": " . $decodedResponse['error_description']; |
|
| 122 | + $errorText .= ": ".$decodedResponse['error_description']; |
|
| 123 | 123 | } |
| 124 | 124 | } |
| 125 | 125 | throw new Google_Auth_Exception( |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | $params['state'] = $this->state; |
| 172 | 172 | } |
| 173 | 173 | |
| 174 | - return self::OAUTH2_AUTH_URL . "?" . http_build_query($params, '', '&'); |
|
| 174 | + return self::OAUTH2_AUTH_URL."?".http_build_query($params, '', '&'); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | if ($token == null) { |
| 185 | 185 | throw new Google_Auth_Exception('Could not json decode the token'); |
| 186 | 186 | } |
| 187 | - if (! isset($token['access_token'])) { |
|
| 187 | + if (!isset($token['access_token'])) { |
|
| 188 | 188 | throw new Google_Auth_Exception("Invalid token format"); |
| 189 | 189 | } |
| 190 | 190 | $this->token = $token; |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | $this->refreshTokenWithAssertion(); |
| 240 | 240 | } else { |
| 241 | 241 | $this->client->getLogger()->debug('OAuth2 access token expired'); |
| 242 | - if (! array_key_exists('refresh_token', $this->token)) { |
|
| 242 | + if (!array_key_exists('refresh_token', $this->token)) { |
|
| 243 | 243 | $error = "The OAuth 2.0 access token has expired," |
| 244 | 244 | ." and a refresh token is not available. Refresh tokens" |
| 245 | 245 | ." are not returned for responses that were auto-approved."; |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | |
| 256 | 256 | // Add the OAuth2 header to the request |
| 257 | 257 | $request->setRequestHeaders( |
| 258 | - array('Authorization' => 'Bearer ' . $this->token['access_token']) |
|
| 258 | + array('Authorization' => 'Bearer '.$this->token['access_token']) |
|
| 259 | 259 | ); |
| 260 | 260 | |
| 261 | 261 | return $request; |
@@ -349,7 +349,7 @@ discard block |
||
| 349 | 349 | throw new Google_Auth_Exception("Could not json decode the access token"); |
| 350 | 350 | } |
| 351 | 351 | |
| 352 | - if (! isset($token['access_token']) || ! isset($token['expires_in'])) { |
|
| 352 | + if (!isset($token['access_token']) || !isset($token['expires_in'])) { |
|
| 353 | 353 | throw new Google_Auth_Exception("Invalid token format"); |
| 354 | 354 | } |
| 355 | 355 | |
@@ -443,8 +443,8 @@ discard block |
||
| 443 | 443 | return json_decode($file, true); |
| 444 | 444 | } else { |
| 445 | 445 | throw new Google_Auth_Exception( |
| 446 | - "Failed to retrieve verification certificates: '" . |
|
| 447 | - $url . "'." |
|
| 446 | + "Failed to retrieve verification certificates: '". |
|
| 447 | + $url."'." |
|
| 448 | 448 | ); |
| 449 | 449 | } |
| 450 | 450 | } |
@@ -462,8 +462,8 @@ discard block |
||
| 462 | 462 | } |
| 463 | 463 | } |
| 464 | 464 | throw new Google_Auth_Exception( |
| 465 | - "Failed to retrieve verification certificates: '" . |
|
| 466 | - $request->getResponseBody() . "'.", |
|
| 465 | + "Failed to retrieve verification certificates: '". |
|
| 466 | + $request->getResponseBody()."'.", |
|
| 467 | 467 | $request->getResponseHttpCode() |
| 468 | 468 | ); |
| 469 | 469 | } |
@@ -518,20 +518,20 @@ discard block |
||
| 518 | 518 | if (count($segments) != 3) { |
| 519 | 519 | throw new Google_Auth_Exception("Wrong number of segments in token: $jwt"); |
| 520 | 520 | } |
| 521 | - $signed = $segments[0] . "." . $segments[1]; |
|
| 521 | + $signed = $segments[0].".".$segments[1]; |
|
| 522 | 522 | $signature = Google_Utils::urlSafeB64Decode($segments[2]); |
| 523 | 523 | |
| 524 | 524 | // Parse envelope. |
| 525 | 525 | $envelope = json_decode(Google_Utils::urlSafeB64Decode($segments[0]), true); |
| 526 | 526 | if (!$envelope) { |
| 527 | - throw new Google_Auth_Exception("Can't parse token envelope: " . $segments[0]); |
|
| 527 | + throw new Google_Auth_Exception("Can't parse token envelope: ".$segments[0]); |
|
| 528 | 528 | } |
| 529 | 529 | |
| 530 | 530 | // Parse token |
| 531 | 531 | $json_body = Google_Utils::urlSafeB64Decode($segments[1]); |
| 532 | 532 | $payload = json_decode($json_body, true); |
| 533 | 533 | if (!$payload) { |
| 534 | - throw new Google_Auth_Exception("Can't parse token payload: " . $segments[1]); |
|
| 534 | + throw new Google_Auth_Exception("Can't parse token payload: ".$segments[1]); |
|
| 535 | 535 | } |
| 536 | 536 | |
| 537 | 537 | // Check signature |
@@ -129,6 +129,9 @@ discard block |
||
| 129 | 129 | ); |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | + /** |
|
| 133 | + * @param string $file |
|
| 134 | + */ |
|
| 132 | 135 | private function getWriteableCacheFile($file) |
| 133 | 136 | { |
| 134 | 137 | return $this->getCacheFile($file, true); |
@@ -139,6 +142,9 @@ discard block |
||
| 139 | 142 | return $this->getCacheDir($file, $forWrite) . '/' . md5($file); |
| 140 | 143 | } |
| 141 | 144 | |
| 145 | + /** |
|
| 146 | + * @param boolean $forWrite |
|
| 147 | + */ |
|
| 142 | 148 | private function getCacheDir($file, $forWrite) |
| 143 | 149 | { |
| 144 | 150 | // use the first 2 characters of the hash as a directory prefix |
@@ -157,11 +163,17 @@ discard block |
||
| 157 | 163 | return $storageDir; |
| 158 | 164 | } |
| 159 | 165 | |
| 166 | + /** |
|
| 167 | + * @param string $storageFile |
|
| 168 | + */ |
|
| 160 | 169 | private function acquireReadLock($storageFile) |
| 161 | 170 | { |
| 162 | 171 | return $this->acquireLock(LOCK_SH, $storageFile); |
| 163 | 172 | } |
| 164 | 173 | |
| 174 | + /** |
|
| 175 | + * @param string $storageFile |
|
| 176 | + */ |
|
| 165 | 177 | private function acquireWriteLock($storageFile) |
| 166 | 178 | { |
| 167 | 179 | $rc = $this->acquireLock(LOCK_EX, $storageFile); |
@@ -175,6 +187,9 @@ discard block |
||
| 175 | 187 | return $rc; |
| 176 | 188 | } |
| 177 | 189 | |
| 190 | + /** |
|
| 191 | + * @param integer $type |
|
| 192 | + */ |
|
| 178 | 193 | private function acquireLock($type, $storageFile) |
| 179 | 194 | { |
| 180 | 195 | $mode = $type == LOCK_EX ? "w" : "r"; |
@@ -197,6 +212,9 @@ discard block |
||
| 197 | 212 | return true; |
| 198 | 213 | } |
| 199 | 214 | |
| 215 | + /** |
|
| 216 | + * @param string $storageFile |
|
| 217 | + */ |
|
| 200 | 218 | public function unlock($storageFile) |
| 201 | 219 | { |
| 202 | 220 | if ($this->fh) { |
@@ -40,167 +40,167 @@ |
||
| 40 | 40 | |
| 41 | 41 | public function __construct(Google_Client $client) |
| 42 | 42 | { |
| 43 | - $this->client = $client; |
|
| 44 | - $this->path = $this->client->getClassConfig($this, 'directory'); |
|
| 43 | + $this->client = $client; |
|
| 44 | + $this->path = $this->client->getClassConfig($this, 'directory'); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | public function get($key, $expiration = false) |
| 48 | 48 | { |
| 49 | - $storageFile = $this->getCacheFile($key); |
|
| 50 | - $data = false; |
|
| 51 | - |
|
| 52 | - if (!file_exists($storageFile)) { |
|
| 53 | - $this->client->getLogger()->debug( |
|
| 54 | - 'File cache miss', |
|
| 55 | - array('key' => $key, 'file' => $storageFile) |
|
| 56 | - ); |
|
| 57 | - return false; |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - if ($expiration) { |
|
| 61 | - $mtime = filemtime($storageFile); |
|
| 62 | - if ((time() - $mtime) >= $expiration) { |
|
| 63 | - $this->client->getLogger()->debug( |
|
| 64 | - 'File cache miss (expired)', |
|
| 65 | - array('key' => $key, 'file' => $storageFile) |
|
| 66 | - ); |
|
| 67 | - $this->delete($key); |
|
| 68 | - return false; |
|
| 69 | - } |
|
| 70 | - } |
|
| 71 | - |
|
| 72 | - if ($this->acquireReadLock($storageFile)) { |
|
| 73 | - if (filesize($storageFile) > 0) { |
|
| 74 | - $data = fread($this->fh, filesize($storageFile)); |
|
| 75 | - $data = unserialize($data); |
|
| 76 | - } else { |
|
| 77 | - $this->client->getLogger()->debug( |
|
| 78 | - 'Cache file was empty', |
|
| 79 | - array('file' => $storageFile) |
|
| 80 | - ); |
|
| 81 | - } |
|
| 82 | - $this->unlock($storageFile); |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - $this->client->getLogger()->debug( |
|
| 86 | - 'File cache hit', |
|
| 87 | - array('key' => $key, 'file' => $storageFile, 'var' => $data) |
|
| 88 | - ); |
|
| 89 | - |
|
| 90 | - return $data; |
|
| 49 | + $storageFile = $this->getCacheFile($key); |
|
| 50 | + $data = false; |
|
| 51 | + |
|
| 52 | + if (!file_exists($storageFile)) { |
|
| 53 | + $this->client->getLogger()->debug( |
|
| 54 | + 'File cache miss', |
|
| 55 | + array('key' => $key, 'file' => $storageFile) |
|
| 56 | + ); |
|
| 57 | + return false; |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + if ($expiration) { |
|
| 61 | + $mtime = filemtime($storageFile); |
|
| 62 | + if ((time() - $mtime) >= $expiration) { |
|
| 63 | + $this->client->getLogger()->debug( |
|
| 64 | + 'File cache miss (expired)', |
|
| 65 | + array('key' => $key, 'file' => $storageFile) |
|
| 66 | + ); |
|
| 67 | + $this->delete($key); |
|
| 68 | + return false; |
|
| 69 | + } |
|
| 70 | + } |
|
| 71 | + |
|
| 72 | + if ($this->acquireReadLock($storageFile)) { |
|
| 73 | + if (filesize($storageFile) > 0) { |
|
| 74 | + $data = fread($this->fh, filesize($storageFile)); |
|
| 75 | + $data = unserialize($data); |
|
| 76 | + } else { |
|
| 77 | + $this->client->getLogger()->debug( |
|
| 78 | + 'Cache file was empty', |
|
| 79 | + array('file' => $storageFile) |
|
| 80 | + ); |
|
| 81 | + } |
|
| 82 | + $this->unlock($storageFile); |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + $this->client->getLogger()->debug( |
|
| 86 | + 'File cache hit', |
|
| 87 | + array('key' => $key, 'file' => $storageFile, 'var' => $data) |
|
| 88 | + ); |
|
| 89 | + |
|
| 90 | + return $data; |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | public function set($key, $value) |
| 94 | 94 | { |
| 95 | - $storageFile = $this->getWriteableCacheFile($key); |
|
| 96 | - if ($this->acquireWriteLock($storageFile)) { |
|
| 97 | - // We serialize the whole request object, since we don't only want the |
|
| 98 | - // responseContent but also the postBody used, headers, size, etc. |
|
| 99 | - $data = serialize($value); |
|
| 100 | - $result = fwrite($this->fh, $data); |
|
| 101 | - $this->unlock($storageFile); |
|
| 102 | - |
|
| 103 | - $this->client->getLogger()->debug( |
|
| 104 | - 'File cache set', |
|
| 105 | - array('key' => $key, 'file' => $storageFile, 'var' => $value) |
|
| 106 | - ); |
|
| 107 | - } else { |
|
| 108 | - $this->client->getLogger()->notice( |
|
| 109 | - 'File cache set failed', |
|
| 110 | - array('key' => $key, 'file' => $storageFile) |
|
| 111 | - ); |
|
| 112 | - } |
|
| 95 | + $storageFile = $this->getWriteableCacheFile($key); |
|
| 96 | + if ($this->acquireWriteLock($storageFile)) { |
|
| 97 | + // We serialize the whole request object, since we don't only want the |
|
| 98 | + // responseContent but also the postBody used, headers, size, etc. |
|
| 99 | + $data = serialize($value); |
|
| 100 | + $result = fwrite($this->fh, $data); |
|
| 101 | + $this->unlock($storageFile); |
|
| 102 | + |
|
| 103 | + $this->client->getLogger()->debug( |
|
| 104 | + 'File cache set', |
|
| 105 | + array('key' => $key, 'file' => $storageFile, 'var' => $value) |
|
| 106 | + ); |
|
| 107 | + } else { |
|
| 108 | + $this->client->getLogger()->notice( |
|
| 109 | + 'File cache set failed', |
|
| 110 | + array('key' => $key, 'file' => $storageFile) |
|
| 111 | + ); |
|
| 112 | + } |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | public function delete($key) |
| 116 | 116 | { |
| 117 | - $file = $this->getCacheFile($key); |
|
| 118 | - if (file_exists($file) && !unlink($file)) { |
|
| 119 | - $this->client->getLogger()->error( |
|
| 120 | - 'File cache delete failed', |
|
| 121 | - array('key' => $key, 'file' => $file) |
|
| 122 | - ); |
|
| 123 | - throw new Google_Cache_Exception("Cache file could not be deleted"); |
|
| 124 | - } |
|
| 125 | - |
|
| 126 | - $this->client->getLogger()->debug( |
|
| 127 | - 'File cache delete', |
|
| 128 | - array('key' => $key, 'file' => $file) |
|
| 129 | - ); |
|
| 117 | + $file = $this->getCacheFile($key); |
|
| 118 | + if (file_exists($file) && !unlink($file)) { |
|
| 119 | + $this->client->getLogger()->error( |
|
| 120 | + 'File cache delete failed', |
|
| 121 | + array('key' => $key, 'file' => $file) |
|
| 122 | + ); |
|
| 123 | + throw new Google_Cache_Exception("Cache file could not be deleted"); |
|
| 124 | + } |
|
| 125 | + |
|
| 126 | + $this->client->getLogger()->debug( |
|
| 127 | + 'File cache delete', |
|
| 128 | + array('key' => $key, 'file' => $file) |
|
| 129 | + ); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | private function getWriteableCacheFile($file) |
| 133 | 133 | { |
| 134 | - return $this->getCacheFile($file, true); |
|
| 134 | + return $this->getCacheFile($file, true); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | private function getCacheFile($file, $forWrite = false) |
| 138 | 138 | { |
| 139 | - return $this->getCacheDir($file, $forWrite) . '/' . md5($file); |
|
| 139 | + return $this->getCacheDir($file, $forWrite) . '/' . md5($file); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | private function getCacheDir($file, $forWrite) |
| 143 | 143 | { |
| 144 | - // use the first 2 characters of the hash as a directory prefix |
|
| 145 | - // this should prevent slowdowns due to huge directory listings |
|
| 146 | - // and thus give some basic amount of scalability |
|
| 147 | - $storageDir = $this->path . '/' . substr(md5($file), 0, 2); |
|
| 148 | - if ($forWrite && ! is_dir($storageDir)) { |
|
| 149 | - if (! mkdir($storageDir, 0755, true)) { |
|
| 150 | - $this->client->getLogger()->error( |
|
| 151 | - 'File cache creation failed', |
|
| 152 | - array('dir' => $storageDir) |
|
| 153 | - ); |
|
| 154 | - throw new Google_Cache_Exception("Could not create storage directory: $storageDir"); |
|
| 155 | - } |
|
| 156 | - } |
|
| 157 | - return $storageDir; |
|
| 144 | + // use the first 2 characters of the hash as a directory prefix |
|
| 145 | + // this should prevent slowdowns due to huge directory listings |
|
| 146 | + // and thus give some basic amount of scalability |
|
| 147 | + $storageDir = $this->path . '/' . substr(md5($file), 0, 2); |
|
| 148 | + if ($forWrite && ! is_dir($storageDir)) { |
|
| 149 | + if (! mkdir($storageDir, 0755, true)) { |
|
| 150 | + $this->client->getLogger()->error( |
|
| 151 | + 'File cache creation failed', |
|
| 152 | + array('dir' => $storageDir) |
|
| 153 | + ); |
|
| 154 | + throw new Google_Cache_Exception("Could not create storage directory: $storageDir"); |
|
| 155 | + } |
|
| 156 | + } |
|
| 157 | + return $storageDir; |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | private function acquireReadLock($storageFile) |
| 161 | 161 | { |
| 162 | - return $this->acquireLock(LOCK_SH, $storageFile); |
|
| 162 | + return $this->acquireLock(LOCK_SH, $storageFile); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | private function acquireWriteLock($storageFile) |
| 166 | 166 | { |
| 167 | - $rc = $this->acquireLock(LOCK_EX, $storageFile); |
|
| 168 | - if (!$rc) { |
|
| 169 | - $this->client->getLogger()->notice( |
|
| 170 | - 'File cache write lock failed', |
|
| 171 | - array('file' => $storageFile) |
|
| 172 | - ); |
|
| 173 | - $this->delete($storageFile); |
|
| 174 | - } |
|
| 175 | - return $rc; |
|
| 167 | + $rc = $this->acquireLock(LOCK_EX, $storageFile); |
|
| 168 | + if (!$rc) { |
|
| 169 | + $this->client->getLogger()->notice( |
|
| 170 | + 'File cache write lock failed', |
|
| 171 | + array('file' => $storageFile) |
|
| 172 | + ); |
|
| 173 | + $this->delete($storageFile); |
|
| 174 | + } |
|
| 175 | + return $rc; |
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | private function acquireLock($type, $storageFile) |
| 179 | 179 | { |
| 180 | - $mode = $type == LOCK_EX ? "w" : "r"; |
|
| 181 | - $this->fh = fopen($storageFile, $mode); |
|
| 182 | - if (!$this->fh) { |
|
| 183 | - $this->client->getLogger()->error( |
|
| 184 | - 'Failed to open file during lock acquisition', |
|
| 185 | - array('file' => $storageFile) |
|
| 186 | - ); |
|
| 187 | - return false; |
|
| 188 | - } |
|
| 189 | - $count = 0; |
|
| 190 | - while (!flock($this->fh, $type | LOCK_NB)) { |
|
| 191 | - // Sleep for 10ms. |
|
| 192 | - usleep(10000); |
|
| 193 | - if (++$count < self::MAX_LOCK_RETRIES) { |
|
| 194 | - return false; |
|
| 195 | - } |
|
| 196 | - } |
|
| 197 | - return true; |
|
| 180 | + $mode = $type == LOCK_EX ? "w" : "r"; |
|
| 181 | + $this->fh = fopen($storageFile, $mode); |
|
| 182 | + if (!$this->fh) { |
|
| 183 | + $this->client->getLogger()->error( |
|
| 184 | + 'Failed to open file during lock acquisition', |
|
| 185 | + array('file' => $storageFile) |
|
| 186 | + ); |
|
| 187 | + return false; |
|
| 188 | + } |
|
| 189 | + $count = 0; |
|
| 190 | + while (!flock($this->fh, $type | LOCK_NB)) { |
|
| 191 | + // Sleep for 10ms. |
|
| 192 | + usleep(10000); |
|
| 193 | + if (++$count < self::MAX_LOCK_RETRIES) { |
|
| 194 | + return false; |
|
| 195 | + } |
|
| 196 | + } |
|
| 197 | + return true; |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | public function unlock($storageFile) |
| 201 | 201 | { |
| 202 | - if ($this->fh) { |
|
| 203 | - flock($this->fh, LOCK_UN); |
|
| 204 | - } |
|
| 202 | + if ($this->fh) { |
|
| 203 | + flock($this->fh, LOCK_UN); |
|
| 204 | + } |
|
| 205 | 205 | } |
| 206 | 206 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | 18 | if (!class_exists('Google_Client')) { |
| 19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
| 19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /* |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | if ($this->acquireReadLock($storageFile)) { |
| 73 | 73 | if (filesize($storageFile) > 0) { |
| 74 | 74 | $data = fread($this->fh, filesize($storageFile)); |
| 75 | - $data = unserialize($data); |
|
| 75 | + $data = unserialize($data); |
|
| 76 | 76 | } else { |
| 77 | 77 | $this->client->getLogger()->debug( |
| 78 | 78 | 'Cache file was empty', |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | |
| 137 | 137 | private function getCacheFile($file, $forWrite = false) |
| 138 | 138 | { |
| 139 | - return $this->getCacheDir($file, $forWrite) . '/' . md5($file); |
|
| 139 | + return $this->getCacheDir($file, $forWrite).'/'.md5($file); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | private function getCacheDir($file, $forWrite) |
@@ -144,9 +144,9 @@ discard block |
||
| 144 | 144 | // use the first 2 characters of the hash as a directory prefix |
| 145 | 145 | // this should prevent slowdowns due to huge directory listings |
| 146 | 146 | // and thus give some basic amount of scalability |
| 147 | - $storageDir = $this->path . '/' . substr(md5($file), 0, 2); |
|
| 148 | - if ($forWrite && ! is_dir($storageDir)) { |
|
| 149 | - if (! mkdir($storageDir, 0755, true)) { |
|
| 147 | + $storageDir = $this->path.'/'.substr(md5($file), 0, 2); |
|
| 148 | + if ($forWrite && !is_dir($storageDir)) { |
|
| 149 | + if (!mkdir($storageDir, 0755, true)) { |
|
| 150 | 150 | $this->client->getLogger()->error( |
| 151 | 151 | 'File cache creation failed', |
| 152 | 152 | array('dir' => $storageDir) |