@@ -19,35 +19,35 @@ discard block |
||
| 19 | 19 | */ |
| 20 | 20 | function geodir_cfi_fieldset($html,$cf){ |
| 21 | 21 | |
| 22 | - $html_var = $cf['htmlvar_name']; |
|
| 23 | - |
|
| 24 | - // Check if there is a custom field specific filter. |
|
| 25 | - if(has_filter("geodir_custom_field_input_fieldset_{$html_var}")){ |
|
| 26 | - /** |
|
| 27 | - * Filter the fieldset html by individual custom field. |
|
| 28 | - * |
|
| 29 | - * @param string $html The html to filter. |
|
| 30 | - * @param array $cf The custom field array. |
|
| 31 | - * @since 1.6.6 |
|
| 32 | - */ |
|
| 33 | - $html = apply_filters("geodir_custom_field_input_fieldset_{$html_var}",$html,$cf); |
|
| 34 | - } |
|
| 35 | - |
|
| 36 | - // If no html then we run the standard output. |
|
| 37 | - if(empty($html)) { |
|
| 38 | - |
|
| 39 | - ob_start(); // Start buffering; |
|
| 40 | - ?> |
|
| 22 | + $html_var = $cf['htmlvar_name']; |
|
| 23 | + |
|
| 24 | + // Check if there is a custom field specific filter. |
|
| 25 | + if(has_filter("geodir_custom_field_input_fieldset_{$html_var}")){ |
|
| 26 | + /** |
|
| 27 | + * Filter the fieldset html by individual custom field. |
|
| 28 | + * |
|
| 29 | + * @param string $html The html to filter. |
|
| 30 | + * @param array $cf The custom field array. |
|
| 31 | + * @since 1.6.6 |
|
| 32 | + */ |
|
| 33 | + $html = apply_filters("geodir_custom_field_input_fieldset_{$html_var}",$html,$cf); |
|
| 34 | + } |
|
| 35 | + |
|
| 36 | + // If no html then we run the standard output. |
|
| 37 | + if(empty($html)) { |
|
| 38 | + |
|
| 39 | + ob_start(); // Start buffering; |
|
| 40 | + ?> |
|
| 41 | 41 | <h5 id="geodir_fieldset_<?php echo (int) $cf['id']; ?>" class="geodir-fieldset-row" |
| 42 | 42 | gd-fieldset="<?php echo (int) $cf['id']; ?>"><?php echo __( $cf['site_title'], 'geodirectory' ); ?> |
| 43 | 43 | <?php if ( $cf['desc'] != '' ) { |
| 44 | - echo '<small>( ' . __( $cf['desc'], 'geodirectory' ) . ' )</small>'; |
|
| 45 | - } ?></h5> |
|
| 44 | + echo '<small>( ' . __( $cf['desc'], 'geodirectory' ) . ' )</small>'; |
|
| 45 | + } ?></h5> |
|
| 46 | 46 | <?php |
| 47 | - $html = ob_get_clean(); |
|
| 48 | - } |
|
| 47 | + $html = ob_get_clean(); |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - return $html; |
|
| 50 | + return $html; |
|
| 51 | 51 | } |
| 52 | 52 | add_filter('geodir_custom_field_input_fieldset','geodir_cfi_fieldset',10,2); |
| 53 | 53 | |
@@ -64,47 +64,47 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | function geodir_cfi_text($html,$cf){ |
| 66 | 66 | |
| 67 | - $html_var = $cf['htmlvar_name']; |
|
| 68 | - |
|
| 69 | - // Check if there is a custom field specific filter. |
|
| 70 | - if(has_filter("geodir_custom_field_input_text_{$html_var}")){ |
|
| 71 | - /** |
|
| 72 | - * Filter the text html by individual custom field. |
|
| 73 | - * |
|
| 74 | - * @param string $html The html to filter. |
|
| 75 | - * @param array $cf The custom field array. |
|
| 76 | - * @since 1.6.6 |
|
| 77 | - */ |
|
| 78 | - $html = apply_filters("geodir_custom_field_input_text_{$html_var}",$html,$cf); |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - // If no html then we run the standard output. |
|
| 82 | - if(empty($html)) { |
|
| 83 | - |
|
| 84 | - ob_start(); // Start buffering; |
|
| 85 | - |
|
| 86 | - $value = geodir_get_cf_value($cf); |
|
| 87 | - $type = $cf['type']; |
|
| 88 | - //number and float validation $validation_pattern |
|
| 89 | - if(isset($cf['data_type']) && $cf['data_type']=='INT'){$type = 'number';} |
|
| 90 | - elseif(isset($cf['data_type']) && $cf['data_type']=='FLOAT'){$type = 'float';} |
|
| 91 | - |
|
| 92 | - //validation |
|
| 93 | - if(isset($cf['validation_pattern']) && $cf['validation_pattern']){ |
|
| 94 | - $validation = 'pattern="'.$cf['validation_pattern'].'"'; |
|
| 95 | - }else{$validation='';} |
|
| 96 | - |
|
| 97 | - // validation message |
|
| 98 | - if(isset($cf['validation_msg']) && $cf['validation_msg']){ |
|
| 99 | - $validation_msg = 'title="'.$cf['validation_msg'].'"'; |
|
| 100 | - }else{$validation_msg='';} |
|
| 101 | - ?> |
|
| 67 | + $html_var = $cf['htmlvar_name']; |
|
| 68 | + |
|
| 69 | + // Check if there is a custom field specific filter. |
|
| 70 | + if(has_filter("geodir_custom_field_input_text_{$html_var}")){ |
|
| 71 | + /** |
|
| 72 | + * Filter the text html by individual custom field. |
|
| 73 | + * |
|
| 74 | + * @param string $html The html to filter. |
|
| 75 | + * @param array $cf The custom field array. |
|
| 76 | + * @since 1.6.6 |
|
| 77 | + */ |
|
| 78 | + $html = apply_filters("geodir_custom_field_input_text_{$html_var}",$html,$cf); |
|
| 79 | + } |
|
| 80 | + |
|
| 81 | + // If no html then we run the standard output. |
|
| 82 | + if(empty($html)) { |
|
| 83 | + |
|
| 84 | + ob_start(); // Start buffering; |
|
| 85 | + |
|
| 86 | + $value = geodir_get_cf_value($cf); |
|
| 87 | + $type = $cf['type']; |
|
| 88 | + //number and float validation $validation_pattern |
|
| 89 | + if(isset($cf['data_type']) && $cf['data_type']=='INT'){$type = 'number';} |
|
| 90 | + elseif(isset($cf['data_type']) && $cf['data_type']=='FLOAT'){$type = 'float';} |
|
| 91 | + |
|
| 92 | + //validation |
|
| 93 | + if(isset($cf['validation_pattern']) && $cf['validation_pattern']){ |
|
| 94 | + $validation = 'pattern="'.$cf['validation_pattern'].'"'; |
|
| 95 | + }else{$validation='';} |
|
| 96 | + |
|
| 97 | + // validation message |
|
| 98 | + if(isset($cf['validation_msg']) && $cf['validation_msg']){ |
|
| 99 | + $validation_msg = 'title="'.$cf['validation_msg'].'"'; |
|
| 100 | + }else{$validation_msg='';} |
|
| 101 | + ?> |
|
| 102 | 102 | |
| 103 | 103 | <div id="<?php echo $cf['name'];?>_row" |
| 104 | 104 | class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
| 105 | 105 | <label> |
| 106 | 106 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 107 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 107 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 108 | 108 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 109 | 109 | </label> |
| 110 | 110 | <input field_type="<?php echo $type;?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
@@ -116,10 +116,10 @@ discard block |
||
| 116 | 116 | </div> |
| 117 | 117 | |
| 118 | 118 | <?php |
| 119 | - $html = ob_get_clean(); |
|
| 120 | - } |
|
| 119 | + $html = ob_get_clean(); |
|
| 120 | + } |
|
| 121 | 121 | |
| 122 | - return $html; |
|
| 122 | + return $html; |
|
| 123 | 123 | } |
| 124 | 124 | add_filter('geodir_custom_field_input_text','geodir_cfi_text',10,2); |
| 125 | 125 | |
@@ -135,35 +135,35 @@ discard block |
||
| 135 | 135 | */ |
| 136 | 136 | function geodir_cfi_email($html,$cf){ |
| 137 | 137 | |
| 138 | - $html_var = $cf['htmlvar_name']; |
|
| 138 | + $html_var = $cf['htmlvar_name']; |
|
| 139 | 139 | |
| 140 | - // Check if there is a custom field specific filter. |
|
| 141 | - if(has_filter("geodir_custom_field_input_email_{$html_var}")){ |
|
| 142 | - /** |
|
| 143 | - * Filter the email html by individual custom field. |
|
| 144 | - * |
|
| 145 | - * @param string $html The html to filter. |
|
| 146 | - * @param array $cf The custom field array. |
|
| 147 | - * @since 1.6.6 |
|
| 148 | - */ |
|
| 149 | - $html = apply_filters("geodir_custom_field_input_email_{$html_var}",$html,$cf); |
|
| 150 | - } |
|
| 140 | + // Check if there is a custom field specific filter. |
|
| 141 | + if(has_filter("geodir_custom_field_input_email_{$html_var}")){ |
|
| 142 | + /** |
|
| 143 | + * Filter the email html by individual custom field. |
|
| 144 | + * |
|
| 145 | + * @param string $html The html to filter. |
|
| 146 | + * @param array $cf The custom field array. |
|
| 147 | + * @since 1.6.6 |
|
| 148 | + */ |
|
| 149 | + $html = apply_filters("geodir_custom_field_input_email_{$html_var}",$html,$cf); |
|
| 150 | + } |
|
| 151 | 151 | |
| 152 | - // If no html then we run the standard output. |
|
| 153 | - if(empty($html)) { |
|
| 152 | + // If no html then we run the standard output. |
|
| 153 | + if(empty($html)) { |
|
| 154 | 154 | |
| 155 | - ob_start(); // Start buffering; |
|
| 156 | - $value = geodir_get_cf_value($cf); |
|
| 155 | + ob_start(); // Start buffering; |
|
| 156 | + $value = geodir_get_cf_value($cf); |
|
| 157 | 157 | |
| 158 | - if ($value == $cf['default']) { |
|
| 159 | - $value = ''; |
|
| 160 | - }?> |
|
| 158 | + if ($value == $cf['default']) { |
|
| 159 | + $value = ''; |
|
| 160 | + }?> |
|
| 161 | 161 | |
| 162 | 162 | <div id="<?php echo $cf['name'];?>_row" |
| 163 | 163 | class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
| 164 | 164 | <label> |
| 165 | 165 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 166 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 166 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 167 | 167 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 168 | 168 | </label> |
| 169 | 169 | <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
@@ -175,10 +175,10 @@ discard block |
||
| 175 | 175 | </div> |
| 176 | 176 | |
| 177 | 177 | <?php |
| 178 | - $html = ob_get_clean(); |
|
| 179 | - } |
|
| 178 | + $html = ob_get_clean(); |
|
| 179 | + } |
|
| 180 | 180 | |
| 181 | - return $html; |
|
| 181 | + return $html; |
|
| 182 | 182 | } |
| 183 | 183 | add_filter('geodir_custom_field_input_email','geodir_cfi_email',10,2); |
| 184 | 184 | |
@@ -195,35 +195,35 @@ discard block |
||
| 195 | 195 | */ |
| 196 | 196 | function geodir_cfi_phone($html,$cf){ |
| 197 | 197 | |
| 198 | - $html_var = $cf['htmlvar_name']; |
|
| 198 | + $html_var = $cf['htmlvar_name']; |
|
| 199 | 199 | |
| 200 | - // Check if there is a custom field specific filter. |
|
| 201 | - if(has_filter("geodir_custom_field_input_phone_{$html_var}")){ |
|
| 202 | - /** |
|
| 203 | - * Filter the phone html by individual custom field. |
|
| 204 | - * |
|
| 205 | - * @param string $html The html to filter. |
|
| 206 | - * @param array $cf The custom field array. |
|
| 207 | - * @since 1.6.6 |
|
| 208 | - */ |
|
| 209 | - $html = apply_filters("geodir_custom_field_input_phone_{$html_var}",$html,$cf); |
|
| 210 | - } |
|
| 200 | + // Check if there is a custom field specific filter. |
|
| 201 | + if(has_filter("geodir_custom_field_input_phone_{$html_var}")){ |
|
| 202 | + /** |
|
| 203 | + * Filter the phone html by individual custom field. |
|
| 204 | + * |
|
| 205 | + * @param string $html The html to filter. |
|
| 206 | + * @param array $cf The custom field array. |
|
| 207 | + * @since 1.6.6 |
|
| 208 | + */ |
|
| 209 | + $html = apply_filters("geodir_custom_field_input_phone_{$html_var}",$html,$cf); |
|
| 210 | + } |
|
| 211 | 211 | |
| 212 | - // If no html then we run the standard output. |
|
| 213 | - if(empty($html)) { |
|
| 212 | + // If no html then we run the standard output. |
|
| 213 | + if(empty($html)) { |
|
| 214 | 214 | |
| 215 | - ob_start(); // Start buffering; |
|
| 216 | - $value = geodir_get_cf_value($cf); |
|
| 215 | + ob_start(); // Start buffering; |
|
| 216 | + $value = geodir_get_cf_value($cf); |
|
| 217 | 217 | |
| 218 | - if ($value == $cf['default']) { |
|
| 219 | - $value = ''; |
|
| 220 | - }?> |
|
| 218 | + if ($value == $cf['default']) { |
|
| 219 | + $value = ''; |
|
| 220 | + }?> |
|
| 221 | 221 | |
| 222 | 222 | <div id="<?php echo $cf['name'];?>_row" |
| 223 | 223 | class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
| 224 | 224 | <label> |
| 225 | 225 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 226 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 226 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 227 | 227 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 228 | 228 | </label> |
| 229 | 229 | <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
@@ -235,10 +235,10 @@ discard block |
||
| 235 | 235 | </div> |
| 236 | 236 | |
| 237 | 237 | <?php |
| 238 | - $html = ob_get_clean(); |
|
| 239 | - } |
|
| 238 | + $html = ob_get_clean(); |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | - return $html; |
|
| 241 | + return $html; |
|
| 242 | 242 | } |
| 243 | 243 | add_filter('geodir_custom_field_input_phone','geodir_cfi_phone',10,2); |
| 244 | 244 | |
@@ -255,35 +255,35 @@ discard block |
||
| 255 | 255 | */ |
| 256 | 256 | function geodir_cfi_url($html,$cf){ |
| 257 | 257 | |
| 258 | - $html_var = $cf['htmlvar_name']; |
|
| 258 | + $html_var = $cf['htmlvar_name']; |
|
| 259 | 259 | |
| 260 | - // Check if there is a custom field specific filter. |
|
| 261 | - if(has_filter("geodir_custom_field_input_url_{$html_var}")){ |
|
| 262 | - /** |
|
| 263 | - * Filter the url html by individual custom field. |
|
| 264 | - * |
|
| 265 | - * @param string $html The html to filter. |
|
| 266 | - * @param array $cf The custom field array. |
|
| 267 | - * @since 1.6.6 |
|
| 268 | - */ |
|
| 269 | - $html = apply_filters("geodir_custom_field_input_url_{$html_var}",$html,$cf); |
|
| 270 | - } |
|
| 260 | + // Check if there is a custom field specific filter. |
|
| 261 | + if(has_filter("geodir_custom_field_input_url_{$html_var}")){ |
|
| 262 | + /** |
|
| 263 | + * Filter the url html by individual custom field. |
|
| 264 | + * |
|
| 265 | + * @param string $html The html to filter. |
|
| 266 | + * @param array $cf The custom field array. |
|
| 267 | + * @since 1.6.6 |
|
| 268 | + */ |
|
| 269 | + $html = apply_filters("geodir_custom_field_input_url_{$html_var}",$html,$cf); |
|
| 270 | + } |
|
| 271 | 271 | |
| 272 | - // If no html then we run the standard output. |
|
| 273 | - if(empty($html)) { |
|
| 272 | + // If no html then we run the standard output. |
|
| 273 | + if(empty($html)) { |
|
| 274 | 274 | |
| 275 | - ob_start(); // Start buffering; |
|
| 276 | - $value = geodir_get_cf_value($cf); |
|
| 275 | + ob_start(); // Start buffering; |
|
| 276 | + $value = geodir_get_cf_value($cf); |
|
| 277 | 277 | |
| 278 | - if ($value == $cf['default']) { |
|
| 279 | - $value = ''; |
|
| 280 | - }?> |
|
| 278 | + if ($value == $cf['default']) { |
|
| 279 | + $value = ''; |
|
| 280 | + }?> |
|
| 281 | 281 | |
| 282 | 282 | <div id="<?php echo $cf['name'];?>_row" |
| 283 | 283 | class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
| 284 | 284 | <label> |
| 285 | 285 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 286 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 286 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 287 | 287 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 288 | 288 | </label> |
| 289 | 289 | <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
@@ -298,10 +298,10 @@ discard block |
||
| 298 | 298 | </div> |
| 299 | 299 | |
| 300 | 300 | <?php |
| 301 | - $html = ob_get_clean(); |
|
| 302 | - } |
|
| 301 | + $html = ob_get_clean(); |
|
| 302 | + } |
|
| 303 | 303 | |
| 304 | - return $html; |
|
| 304 | + return $html; |
|
| 305 | 305 | } |
| 306 | 306 | add_filter('geodir_custom_field_input_url','geodir_cfi_url',10,2); |
| 307 | 307 | |
@@ -317,48 +317,48 @@ discard block |
||
| 317 | 317 | */ |
| 318 | 318 | function geodir_cfi_radio($html,$cf){ |
| 319 | 319 | |
| 320 | - $html_var = $cf['htmlvar_name']; |
|
| 320 | + $html_var = $cf['htmlvar_name']; |
|
| 321 | 321 | |
| 322 | - // Check if there is a custom field specific filter. |
|
| 323 | - if(has_filter("geodir_custom_field_input_radio_{$html_var}")){ |
|
| 324 | - /** |
|
| 325 | - * Filter the radio html by individual custom field. |
|
| 326 | - * |
|
| 327 | - * @param string $html The html to filter. |
|
| 328 | - * @param array $cf The custom field array. |
|
| 329 | - * @since 1.6.6 |
|
| 330 | - */ |
|
| 331 | - $html = apply_filters("geodir_custom_field_input_radio_{$html_var}",$html,$cf); |
|
| 332 | - } |
|
| 322 | + // Check if there is a custom field specific filter. |
|
| 323 | + if(has_filter("geodir_custom_field_input_radio_{$html_var}")){ |
|
| 324 | + /** |
|
| 325 | + * Filter the radio html by individual custom field. |
|
| 326 | + * |
|
| 327 | + * @param string $html The html to filter. |
|
| 328 | + * @param array $cf The custom field array. |
|
| 329 | + * @since 1.6.6 |
|
| 330 | + */ |
|
| 331 | + $html = apply_filters("geodir_custom_field_input_radio_{$html_var}",$html,$cf); |
|
| 332 | + } |
|
| 333 | 333 | |
| 334 | - // If no html then we run the standard output. |
|
| 335 | - if(empty($html)) { |
|
| 334 | + // If no html then we run the standard output. |
|
| 335 | + if(empty($html)) { |
|
| 336 | 336 | |
| 337 | - ob_start(); // Start buffering; |
|
| 338 | - $value = geodir_get_cf_value($cf); |
|
| 337 | + ob_start(); // Start buffering; |
|
| 338 | + $value = geodir_get_cf_value($cf); |
|
| 339 | 339 | |
| 340 | - ?> |
|
| 340 | + ?> |
|
| 341 | 341 | <div id="<?php echo $cf['name'];?>_row" |
| 342 | 342 | class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
| 343 | 343 | <label> |
| 344 | 344 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 345 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 345 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 346 | 346 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 347 | 347 | </label> |
| 348 | 348 | <?php if ($cf['option_values']) { |
| 349 | - $option_values = geodir_string_values_to_options($cf['option_values'], true); |
|
| 349 | + $option_values = geodir_string_values_to_options($cf['option_values'], true); |
|
| 350 | 350 | |
| 351 | - if (!empty($option_values)) { |
|
| 352 | - foreach ($option_values as $option_value) { |
|
| 353 | - if (empty($option_value['optgroup'])) { |
|
| 354 | - ?> |
|
| 351 | + if (!empty($option_values)) { |
|
| 352 | + foreach ($option_values as $option_value) { |
|
| 353 | + if (empty($option_value['optgroup'])) { |
|
| 354 | + ?> |
|
| 355 | 355 | <span class="gd-radios"><input name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" <?php checked($value, $option_value['value']);?> value="<?php echo esc_attr($option_value['value']); ?>" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="radio" /><?php echo $option_value['label']; ?></span> |
| 356 | 356 | <?php |
| 357 | - } |
|
| 358 | - } |
|
| 359 | - } |
|
| 360 | - } |
|
| 361 | - ?> |
|
| 357 | + } |
|
| 358 | + } |
|
| 359 | + } |
|
| 360 | + } |
|
| 361 | + ?> |
|
| 362 | 362 | <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
| 363 | 363 | <?php if ($cf['is_required']) { ?> |
| 364 | 364 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
@@ -366,10 +366,10 @@ discard block |
||
| 366 | 366 | </div> |
| 367 | 367 | |
| 368 | 368 | <?php |
| 369 | - $html = ob_get_clean(); |
|
| 370 | - } |
|
| 369 | + $html = ob_get_clean(); |
|
| 370 | + } |
|
| 371 | 371 | |
| 372 | - return $html; |
|
| 372 | + return $html; |
|
| 373 | 373 | } |
| 374 | 374 | add_filter('geodir_custom_field_input_radio','geodir_cfi_radio',10,2); |
| 375 | 375 | |
@@ -385,46 +385,46 @@ discard block |
||
| 385 | 385 | */ |
| 386 | 386 | function geodir_cfi_checkbox($html,$cf){ |
| 387 | 387 | |
| 388 | - $html_var = $cf['htmlvar_name']; |
|
| 388 | + $html_var = $cf['htmlvar_name']; |
|
| 389 | 389 | |
| 390 | - // Check if there is a custom field specific filter. |
|
| 391 | - if(has_filter("geodir_custom_field_input_checkbox_{$html_var}")){ |
|
| 392 | - /** |
|
| 393 | - * Filter the checkbox html by individual custom field. |
|
| 394 | - * |
|
| 395 | - * @param string $html The html to filter. |
|
| 396 | - * @param array $cf The custom field array. |
|
| 397 | - * @since 1.6.6 |
|
| 398 | - */ |
|
| 399 | - $html = apply_filters("geodir_custom_field_input_checkbox_{$html_var}",$html,$cf); |
|
| 400 | - } |
|
| 390 | + // Check if there is a custom field specific filter. |
|
| 391 | + if(has_filter("geodir_custom_field_input_checkbox_{$html_var}")){ |
|
| 392 | + /** |
|
| 393 | + * Filter the checkbox html by individual custom field. |
|
| 394 | + * |
|
| 395 | + * @param string $html The html to filter. |
|
| 396 | + * @param array $cf The custom field array. |
|
| 397 | + * @since 1.6.6 |
|
| 398 | + */ |
|
| 399 | + $html = apply_filters("geodir_custom_field_input_checkbox_{$html_var}",$html,$cf); |
|
| 400 | + } |
|
| 401 | 401 | |
| 402 | - // If no html then we run the standard output. |
|
| 403 | - if(empty($html)) { |
|
| 402 | + // If no html then we run the standard output. |
|
| 403 | + if(empty($html)) { |
|
| 404 | 404 | |
| 405 | - ob_start(); // Start buffering; |
|
| 406 | - $value = geodir_get_cf_value($cf); |
|
| 405 | + ob_start(); // Start buffering; |
|
| 406 | + $value = geodir_get_cf_value($cf); |
|
| 407 | 407 | |
| 408 | 408 | |
| 409 | - if ($value == '' && $cf['default']) { |
|
| 410 | - $value = '1'; |
|
| 411 | - } |
|
| 412 | - ?> |
|
| 409 | + if ($value == '' && $cf['default']) { |
|
| 410 | + $value = '1'; |
|
| 411 | + } |
|
| 412 | + ?> |
|
| 413 | 413 | |
| 414 | 414 | <div id="<?php echo $cf['name'];?>_row" |
| 415 | 415 | class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
| 416 | 416 | <label> |
| 417 | 417 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 418 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 418 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 419 | 419 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 420 | 420 | </label> |
| 421 | 421 | <?php if ($value != '1') { |
| 422 | - $value = '0'; |
|
| 423 | - }?> |
|
| 422 | + $value = '0'; |
|
| 423 | + }?> |
|
| 424 | 424 | <input type="hidden" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" value="<?php echo esc_attr($value);?>"/> |
| 425 | 425 | <input <?php if ($value == '1') { |
| 426 | - echo 'checked="checked"'; |
|
| 427 | - }?> value="1" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="checkbox" |
|
| 426 | + echo 'checked="checked"'; |
|
| 427 | + }?> value="1" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="checkbox" |
|
| 428 | 428 | onchange="if(this.checked){jQuery('#<?php echo $cf['name'];?>').val('1');} else{ jQuery('#<?php echo $cf['name'];?>').val('0');}"/> |
| 429 | 429 | <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
| 430 | 430 | <?php if ($cf['is_required']) { ?> |
@@ -433,10 +433,10 @@ discard block |
||
| 433 | 433 | </div> |
| 434 | 434 | |
| 435 | 435 | <?php |
| 436 | - $html = ob_get_clean(); |
|
| 437 | - } |
|
| 436 | + $html = ob_get_clean(); |
|
| 437 | + } |
|
| 438 | 438 | |
| 439 | - return $html; |
|
| 439 | + return $html; |
|
| 440 | 440 | } |
| 441 | 441 | add_filter('geodir_custom_field_input_checkbox','geodir_cfi_checkbox',10,2); |
| 442 | 442 | |
@@ -452,52 +452,52 @@ discard block |
||
| 452 | 452 | */ |
| 453 | 453 | function geodir_cfi_textarea($html,$cf){ |
| 454 | 454 | |
| 455 | - $html_var = $cf['htmlvar_name']; |
|
| 455 | + $html_var = $cf['htmlvar_name']; |
|
| 456 | 456 | |
| 457 | - // Check if there is a custom field specific filter. |
|
| 458 | - if(has_filter("geodir_custom_field_input_textarea_{$html_var}")){ |
|
| 459 | - /** |
|
| 460 | - * Filter the textarea html by individual custom field. |
|
| 461 | - * |
|
| 462 | - * @param string $html The html to filter. |
|
| 463 | - * @param array $cf The custom field array. |
|
| 464 | - * @since 1.6.6 |
|
| 465 | - */ |
|
| 466 | - $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}",$html,$cf); |
|
| 467 | - } |
|
| 457 | + // Check if there is a custom field specific filter. |
|
| 458 | + if(has_filter("geodir_custom_field_input_textarea_{$html_var}")){ |
|
| 459 | + /** |
|
| 460 | + * Filter the textarea html by individual custom field. |
|
| 461 | + * |
|
| 462 | + * @param string $html The html to filter. |
|
| 463 | + * @param array $cf The custom field array. |
|
| 464 | + * @since 1.6.6 |
|
| 465 | + */ |
|
| 466 | + $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}",$html,$cf); |
|
| 467 | + } |
|
| 468 | 468 | |
| 469 | - // If no html then we run the standard output. |
|
| 470 | - if(empty($html)) { |
|
| 469 | + // If no html then we run the standard output. |
|
| 470 | + if(empty($html)) { |
|
| 471 | 471 | |
| 472 | - ob_start(); // Start buffering; |
|
| 473 | - $value = geodir_get_cf_value($cf); |
|
| 472 | + ob_start(); // Start buffering; |
|
| 473 | + $value = geodir_get_cf_value($cf); |
|
| 474 | 474 | |
| 475 | - $extra_fields = unserialize($cf['extra_fields']); |
|
| 476 | - ?> |
|
| 475 | + $extra_fields = unserialize($cf['extra_fields']); |
|
| 476 | + ?> |
|
| 477 | 477 | |
| 478 | 478 | <div id="<?php echo $cf['name'];?>_row" |
| 479 | 479 | class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
| 480 | 480 | <label> |
| 481 | 481 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 482 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 482 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 483 | 483 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 484 | 484 | </label><?php |
| 485 | 485 | |
| 486 | 486 | |
| 487 | - if (is_array($extra_fields) && in_array('1', $extra_fields)) { |
|
| 487 | + if (is_array($extra_fields) && in_array('1', $extra_fields)) { |
|
| 488 | 488 | |
| 489 | - $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);?> |
|
| 489 | + $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);?> |
|
| 490 | 490 | |
| 491 | 491 | <div class="editor" field_id="<?php echo $cf['name'];?>" field_type="editor"> |
| 492 | 492 | <?php wp_editor(stripslashes($value), $cf['name'], $editor_settings); ?> |
| 493 | 493 | </div><?php |
| 494 | 494 | |
| 495 | - } else { |
|
| 495 | + } else { |
|
| 496 | 496 | |
| 497 | - ?><textarea field_type="<?php echo $cf['type'];?>" class="geodir_textarea" name="<?php echo $cf['name'];?>" |
|
| 497 | + ?><textarea field_type="<?php echo $cf['type'];?>" class="geodir_textarea" name="<?php echo $cf['name'];?>" |
|
| 498 | 498 | id="<?php echo $cf['name'];?>"><?php echo stripslashes($value);?></textarea><?php |
| 499 | 499 | |
| 500 | - }?> |
|
| 500 | + }?> |
|
| 501 | 501 | |
| 502 | 502 | |
| 503 | 503 | <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
@@ -507,10 +507,10 @@ discard block |
||
| 507 | 507 | </div> |
| 508 | 508 | |
| 509 | 509 | <?php |
| 510 | - $html = ob_get_clean(); |
|
| 511 | - } |
|
| 510 | + $html = ob_get_clean(); |
|
| 511 | + } |
|
| 512 | 512 | |
| 513 | - return $html; |
|
| 513 | + return $html; |
|
| 514 | 514 | } |
| 515 | 515 | add_filter('geodir_custom_field_input_textarea','geodir_cfi_textarea',10,2); |
| 516 | 516 | |
@@ -526,53 +526,53 @@ discard block |
||
| 526 | 526 | */ |
| 527 | 527 | function geodir_cfi_select($html,$cf){ |
| 528 | 528 | |
| 529 | - $html_var = $cf['htmlvar_name']; |
|
| 529 | + $html_var = $cf['htmlvar_name']; |
|
| 530 | 530 | |
| 531 | - // Check if there is a custom field specific filter. |
|
| 532 | - if(has_filter("geodir_custom_field_input_select_{$html_var}")){ |
|
| 533 | - /** |
|
| 534 | - * Filter the select html by individual custom field. |
|
| 535 | - * |
|
| 536 | - * @param string $html The html to filter. |
|
| 537 | - * @param array $cf The custom field array. |
|
| 538 | - * @since 1.6.6 |
|
| 539 | - */ |
|
| 540 | - $html = apply_filters("geodir_custom_field_input_select_{$html_var}",$html,$cf); |
|
| 541 | - } |
|
| 531 | + // Check if there is a custom field specific filter. |
|
| 532 | + if(has_filter("geodir_custom_field_input_select_{$html_var}")){ |
|
| 533 | + /** |
|
| 534 | + * Filter the select html by individual custom field. |
|
| 535 | + * |
|
| 536 | + * @param string $html The html to filter. |
|
| 537 | + * @param array $cf The custom field array. |
|
| 538 | + * @since 1.6.6 |
|
| 539 | + */ |
|
| 540 | + $html = apply_filters("geodir_custom_field_input_select_{$html_var}",$html,$cf); |
|
| 541 | + } |
|
| 542 | 542 | |
| 543 | - // If no html then we run the standard output. |
|
| 544 | - if(empty($html)) { |
|
| 543 | + // If no html then we run the standard output. |
|
| 544 | + if(empty($html)) { |
|
| 545 | 545 | |
| 546 | - ob_start(); // Start buffering; |
|
| 547 | - $value = geodir_get_cf_value($cf); |
|
| 546 | + ob_start(); // Start buffering; |
|
| 547 | + $value = geodir_get_cf_value($cf); |
|
| 548 | 548 | |
| 549 | - ?> |
|
| 549 | + ?> |
|
| 550 | 550 | <div id="<?php echo $cf['name'];?>_row" |
| 551 | 551 | class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details"> |
| 552 | 552 | <label> |
| 553 | 553 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 554 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 554 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 555 | 555 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 556 | 556 | </label> |
| 557 | 557 | <?php |
| 558 | - $option_values_arr = geodir_string_values_to_options($cf['option_values'], true); |
|
| 559 | - $select_options = ''; |
|
| 560 | - if (!empty($option_values_arr)) { |
|
| 561 | - foreach ($option_values_arr as $option_row) { |
|
| 562 | - if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) { |
|
| 563 | - $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
|
| 564 | - |
|
| 565 | - $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>'; |
|
| 566 | - } else { |
|
| 567 | - $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
|
| 568 | - $option_value = isset($option_row['value']) ? $option_row['value'] : ''; |
|
| 569 | - $selected = $option_value == $value ? 'selected="selected"' : ''; |
|
| 570 | - |
|
| 571 | - $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>'; |
|
| 572 | - } |
|
| 573 | - } |
|
| 574 | - } |
|
| 575 | - ?> |
|
| 558 | + $option_values_arr = geodir_string_values_to_options($cf['option_values'], true); |
|
| 559 | + $select_options = ''; |
|
| 560 | + if (!empty($option_values_arr)) { |
|
| 561 | + foreach ($option_values_arr as $option_row) { |
|
| 562 | + if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) { |
|
| 563 | + $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
|
| 564 | + |
|
| 565 | + $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>'; |
|
| 566 | + } else { |
|
| 567 | + $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
|
| 568 | + $option_value = isset($option_row['value']) ? $option_row['value'] : ''; |
|
| 569 | + $selected = $option_value == $value ? 'selected="selected"' : ''; |
|
| 570 | + |
|
| 571 | + $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>'; |
|
| 572 | + } |
|
| 573 | + } |
|
| 574 | + } |
|
| 575 | + ?> |
|
| 576 | 576 | <select field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
| 577 | 577 | class="geodir_textfield textfield_x chosen_select" |
| 578 | 578 | data-placeholder="<?php echo __('Choose', 'geodirectory') . ' ' . $site_title . '…';?>" |
@@ -584,10 +584,10 @@ discard block |
||
| 584 | 584 | </div> |
| 585 | 585 | |
| 586 | 586 | <?php |
| 587 | - $html = ob_get_clean(); |
|
| 588 | - } |
|
| 587 | + $html = ob_get_clean(); |
|
| 588 | + } |
|
| 589 | 589 | |
| 590 | - return $html; |
|
| 590 | + return $html; |
|
| 591 | 591 | } |
| 592 | 592 | add_filter('geodir_custom_field_input_select','geodir_cfi_select',10,2); |
| 593 | 593 | |
@@ -603,36 +603,36 @@ discard block |
||
| 603 | 603 | */ |
| 604 | 604 | function geodir_cfi_multiselect($html,$cf){ |
| 605 | 605 | |
| 606 | - $html_var = $cf['htmlvar_name']; |
|
| 607 | - |
|
| 608 | - // Check if there is a custom field specific filter. |
|
| 609 | - if(has_filter("geodir_custom_field_input_multiselect_{$html_var}")){ |
|
| 610 | - /** |
|
| 611 | - * Filter the multiselect html by individual custom field. |
|
| 612 | - * |
|
| 613 | - * @param string $html The html to filter. |
|
| 614 | - * @param array $cf The custom field array. |
|
| 615 | - * @since 1.6.6 |
|
| 616 | - */ |
|
| 617 | - $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}",$html,$cf); |
|
| 618 | - } |
|
| 619 | - |
|
| 620 | - // If no html then we run the standard output. |
|
| 621 | - if(empty($html)) { |
|
| 622 | - |
|
| 623 | - ob_start(); // Start buffering; |
|
| 624 | - $value = geodir_get_cf_value($cf); |
|
| 625 | - |
|
| 626 | - $multi_display = 'select'; |
|
| 627 | - if (!empty($cf['extra_fields'])) { |
|
| 628 | - $multi_display = unserialize($cf['extra_fields']); |
|
| 629 | - } |
|
| 630 | - ?> |
|
| 606 | + $html_var = $cf['htmlvar_name']; |
|
| 607 | + |
|
| 608 | + // Check if there is a custom field specific filter. |
|
| 609 | + if(has_filter("geodir_custom_field_input_multiselect_{$html_var}")){ |
|
| 610 | + /** |
|
| 611 | + * Filter the multiselect html by individual custom field. |
|
| 612 | + * |
|
| 613 | + * @param string $html The html to filter. |
|
| 614 | + * @param array $cf The custom field array. |
|
| 615 | + * @since 1.6.6 |
|
| 616 | + */ |
|
| 617 | + $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}",$html,$cf); |
|
| 618 | + } |
|
| 619 | + |
|
| 620 | + // If no html then we run the standard output. |
|
| 621 | + if(empty($html)) { |
|
| 622 | + |
|
| 623 | + ob_start(); // Start buffering; |
|
| 624 | + $value = geodir_get_cf_value($cf); |
|
| 625 | + |
|
| 626 | + $multi_display = 'select'; |
|
| 627 | + if (!empty($cf['extra_fields'])) { |
|
| 628 | + $multi_display = unserialize($cf['extra_fields']); |
|
| 629 | + } |
|
| 630 | + ?> |
|
| 631 | 631 | <div id="<?php echo $cf['name']; ?>_row" |
| 632 | 632 | class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
| 633 | 633 | <label> |
| 634 | 634 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 635 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 635 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 636 | 636 | <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
| 637 | 637 | </label> |
| 638 | 638 | <input type="hidden" name="gd_field_<?php echo $cf['name']; ?>" value="1"/> |
@@ -643,61 +643,61 @@ discard block |
||
| 643 | 643 | data-placeholder="<?php _e('Select', 'geodirectory'); ?>" |
| 644 | 644 | option-ajaxchosen="false"> |
| 645 | 645 | <?php |
| 646 | - } else { |
|
| 647 | - echo '<ul class="gd_multi_choice">'; |
|
| 648 | - } |
|
| 649 | - |
|
| 650 | - $option_values_arr = geodir_string_values_to_options($cf['option_values'], true); |
|
| 651 | - $select_options = ''; |
|
| 652 | - if (!empty($option_values_arr)) { |
|
| 653 | - foreach ($option_values_arr as $option_row) { |
|
| 654 | - if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) { |
|
| 655 | - $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
|
| 656 | - |
|
| 657 | - if ($multi_display == 'select') { |
|
| 658 | - $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>'; |
|
| 659 | - } else { |
|
| 660 | - $select_options .= $option_row['optgroup'] == 'start' ? '<li>' . $option_label . '</li>' : ''; |
|
| 661 | - } |
|
| 662 | - } else { |
|
| 663 | - if (!is_array($value) && $value != '') { |
|
| 664 | - $value = trim($value); |
|
| 665 | - } |
|
| 646 | + } else { |
|
| 647 | + echo '<ul class="gd_multi_choice">'; |
|
| 648 | + } |
|
| 649 | + |
|
| 650 | + $option_values_arr = geodir_string_values_to_options($cf['option_values'], true); |
|
| 651 | + $select_options = ''; |
|
| 652 | + if (!empty($option_values_arr)) { |
|
| 653 | + foreach ($option_values_arr as $option_row) { |
|
| 654 | + if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) { |
|
| 655 | + $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
|
| 656 | + |
|
| 657 | + if ($multi_display == 'select') { |
|
| 658 | + $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>'; |
|
| 659 | + } else { |
|
| 660 | + $select_options .= $option_row['optgroup'] == 'start' ? '<li>' . $option_label . '</li>' : ''; |
|
| 661 | + } |
|
| 662 | + } else { |
|
| 663 | + if (!is_array($value) && $value != '') { |
|
| 664 | + $value = trim($value); |
|
| 665 | + } |
|
| 666 | 666 | |
| 667 | - $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
|
| 668 | - $option_value = isset($option_row['value']) ? $option_row['value'] : ''; |
|
| 669 | - $selected = $option_value == $value ? 'selected="selected"' : ''; |
|
| 670 | - $selected = ''; |
|
| 671 | - $checked = ''; |
|
| 672 | - |
|
| 673 | - if ((!is_array($value) && trim($value) != '') || (is_array($value) && !empty($value))) { |
|
| 674 | - if (!is_array($value)) { |
|
| 675 | - $value_array = explode(',', $value); |
|
| 676 | - } else { |
|
| 677 | - $value_array = $value; |
|
| 678 | - } |
|
| 679 | - |
|
| 680 | - if (is_array($value_array)) { |
|
| 681 | - $value_array = array_map('trim', $value_array); |
|
| 667 | + $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
|
| 668 | + $option_value = isset($option_row['value']) ? $option_row['value'] : ''; |
|
| 669 | + $selected = $option_value == $value ? 'selected="selected"' : ''; |
|
| 670 | + $selected = ''; |
|
| 671 | + $checked = ''; |
|
| 672 | + |
|
| 673 | + if ((!is_array($value) && trim($value) != '') || (is_array($value) && !empty($value))) { |
|
| 674 | + if (!is_array($value)) { |
|
| 675 | + $value_array = explode(',', $value); |
|
| 676 | + } else { |
|
| 677 | + $value_array = $value; |
|
| 678 | + } |
|
| 679 | + |
|
| 680 | + if (is_array($value_array)) { |
|
| 681 | + $value_array = array_map('trim', $value_array); |
|
| 682 | 682 | |
| 683 | - if (in_array($option_value, $value_array)) { |
|
| 684 | - $selected = 'selected="selected"'; |
|
| 685 | - $checked = 'checked="checked"'; |
|
| 686 | - } |
|
| 687 | - } |
|
| 688 | - } |
|
| 689 | - |
|
| 690 | - if ($multi_display == 'select') { |
|
| 691 | - $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>'; |
|
| 692 | - } else { |
|
| 693 | - $select_options .= '<li><input name="' . $cf['name'] . '[]" ' . $checked . ' value="' . esc_attr($option_value) . '" class="gd-' . $multi_display . '" field_type="' . $multi_display . '" type="' . $multi_display . '" /> ' . $option_label . ' </li>'; |
|
| 694 | - } |
|
| 695 | - } |
|
| 696 | - } |
|
| 697 | - } |
|
| 698 | - echo $select_options; |
|
| 699 | - |
|
| 700 | - if ($multi_display == 'select') { ?></select></div> |
|
| 683 | + if (in_array($option_value, $value_array)) { |
|
| 684 | + $selected = 'selected="selected"'; |
|
| 685 | + $checked = 'checked="checked"'; |
|
| 686 | + } |
|
| 687 | + } |
|
| 688 | + } |
|
| 689 | + |
|
| 690 | + if ($multi_display == 'select') { |
|
| 691 | + $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>'; |
|
| 692 | + } else { |
|
| 693 | + $select_options .= '<li><input name="' . $cf['name'] . '[]" ' . $checked . ' value="' . esc_attr($option_value) . '" class="gd-' . $multi_display . '" field_type="' . $multi_display . '" type="' . $multi_display . '" /> ' . $option_label . ' </li>'; |
|
| 694 | + } |
|
| 695 | + } |
|
| 696 | + } |
|
| 697 | + } |
|
| 698 | + echo $select_options; |
|
| 699 | + |
|
| 700 | + if ($multi_display == 'select') { ?></select></div> |
|
| 701 | 701 | <?php } else { ?></ul><?php } ?> |
| 702 | 702 | <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
| 703 | 703 | <?php if ($cf['is_required']) { ?> |
@@ -705,10 +705,10 @@ discard block |
||
| 705 | 705 | <?php } ?> |
| 706 | 706 | </div> |
| 707 | 707 | <?php |
| 708 | - $html = ob_get_clean(); |
|
| 709 | - } |
|
| 708 | + $html = ob_get_clean(); |
|
| 709 | + } |
|
| 710 | 710 | |
| 711 | - return $html; |
|
| 711 | + return $html; |
|
| 712 | 712 | } |
| 713 | 713 | add_filter('geodir_custom_field_input_multiselect','geodir_cfi_multiselect',10,2); |
| 714 | 714 | |
@@ -724,32 +724,32 @@ discard block |
||
| 724 | 724 | */ |
| 725 | 725 | function geodir_cfi_html($html,$cf){ |
| 726 | 726 | |
| 727 | - $html_var = $cf['htmlvar_name']; |
|
| 727 | + $html_var = $cf['htmlvar_name']; |
|
| 728 | 728 | |
| 729 | - // Check if there is a custom field specific filter. |
|
| 730 | - if(has_filter("geodir_custom_field_input_html_{$html_var}")){ |
|
| 731 | - /** |
|
| 732 | - * Filter the html html by individual custom field. |
|
| 733 | - * |
|
| 734 | - * @param string $html The html to filter. |
|
| 735 | - * @param array $cf The custom field array. |
|
| 736 | - * @since 1.6.6 |
|
| 737 | - */ |
|
| 738 | - $html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf); |
|
| 739 | - } |
|
| 729 | + // Check if there is a custom field specific filter. |
|
| 730 | + if(has_filter("geodir_custom_field_input_html_{$html_var}")){ |
|
| 731 | + /** |
|
| 732 | + * Filter the html html by individual custom field. |
|
| 733 | + * |
|
| 734 | + * @param string $html The html to filter. |
|
| 735 | + * @param array $cf The custom field array. |
|
| 736 | + * @since 1.6.6 |
|
| 737 | + */ |
|
| 738 | + $html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf); |
|
| 739 | + } |
|
| 740 | 740 | |
| 741 | - // If no html then we run the standard output. |
|
| 742 | - if(empty($html)) { |
|
| 741 | + // If no html then we run the standard output. |
|
| 742 | + if(empty($html)) { |
|
| 743 | 743 | |
| 744 | - ob_start(); // Start buffering; |
|
| 745 | - $value = geodir_get_cf_value($cf); |
|
| 746 | - ?> |
|
| 744 | + ob_start(); // Start buffering; |
|
| 745 | + $value = geodir_get_cf_value($cf); |
|
| 746 | + ?> |
|
| 747 | 747 | |
| 748 | 748 | <div id="<?php echo $cf['name']; ?>_row" |
| 749 | 749 | class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
| 750 | 750 | <label> |
| 751 | 751 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 752 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 752 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 753 | 753 | <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
| 754 | 754 | </label> |
| 755 | 755 | |
@@ -767,10 +767,10 @@ discard block |
||
| 767 | 767 | </div> |
| 768 | 768 | |
| 769 | 769 | <?php |
| 770 | - $html = ob_get_clean(); |
|
| 771 | - } |
|
| 770 | + $html = ob_get_clean(); |
|
| 771 | + } |
|
| 772 | 772 | |
| 773 | - return $html; |
|
| 773 | + return $html; |
|
| 774 | 774 | } |
| 775 | 775 | add_filter('geodir_custom_field_input_html','geodir_cfi_html',10,2); |
| 776 | 776 | |
@@ -787,68 +787,68 @@ discard block |
||
| 787 | 787 | */ |
| 788 | 788 | function geodir_cfi_datepicker($html,$cf){ |
| 789 | 789 | |
| 790 | - $html_var = $cf['htmlvar_name']; |
|
| 790 | + $html_var = $cf['htmlvar_name']; |
|
| 791 | 791 | |
| 792 | - // Check if there is a custom field specific filter. |
|
| 793 | - if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){ |
|
| 794 | - /** |
|
| 795 | - * Filter the datepicker html by individual custom field. |
|
| 796 | - * |
|
| 797 | - * @param string $html The html to filter. |
|
| 798 | - * @param array $cf The custom field array. |
|
| 799 | - * @since 1.6.6 |
|
| 800 | - */ |
|
| 801 | - $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf); |
|
| 802 | - } |
|
| 792 | + // Check if there is a custom field specific filter. |
|
| 793 | + if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){ |
|
| 794 | + /** |
|
| 795 | + * Filter the datepicker html by individual custom field. |
|
| 796 | + * |
|
| 797 | + * @param string $html The html to filter. |
|
| 798 | + * @param array $cf The custom field array. |
|
| 799 | + * @since 1.6.6 |
|
| 800 | + */ |
|
| 801 | + $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf); |
|
| 802 | + } |
|
| 803 | 803 | |
| 804 | - // If no html then we run the standard output. |
|
| 805 | - if(empty($html)) { |
|
| 804 | + // If no html then we run the standard output. |
|
| 805 | + if(empty($html)) { |
|
| 806 | 806 | |
| 807 | - ob_start(); // Start buffering; |
|
| 808 | - $value = geodir_get_cf_value($cf); |
|
| 807 | + ob_start(); // Start buffering; |
|
| 808 | + $value = geodir_get_cf_value($cf); |
|
| 809 | 809 | |
| 810 | - $extra_fields = unserialize($cf['extra_fields']); |
|
| 811 | - $name = $cf['name']; |
|
| 810 | + $extra_fields = unserialize($cf['extra_fields']); |
|
| 811 | + $name = $cf['name']; |
|
| 812 | 812 | |
| 813 | - if ($extra_fields['date_format'] == '') |
|
| 814 | - $extra_fields['date_format'] = 'yy-mm-dd'; |
|
| 813 | + if ($extra_fields['date_format'] == '') |
|
| 814 | + $extra_fields['date_format'] = 'yy-mm-dd'; |
|
| 815 | 815 | |
| 816 | - $date_format = $extra_fields['date_format']; |
|
| 817 | - $jquery_date_format = $date_format; |
|
| 816 | + $date_format = $extra_fields['date_format']; |
|
| 817 | + $jquery_date_format = $date_format; |
|
| 818 | 818 | |
| 819 | 819 | |
| 820 | - // check if we need to change the format or not |
|
| 821 | - $date_format_len = strlen(str_replace(' ', '', $date_format)); |
|
| 822 | - if($date_format_len>5){// if greater then 5 then it's the old style format. |
|
| 820 | + // check if we need to change the format or not |
|
| 821 | + $date_format_len = strlen(str_replace(' ', '', $date_format)); |
|
| 822 | + if($date_format_len>5){// if greater then 5 then it's the old style format. |
|
| 823 | 823 | |
| 824 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
| 825 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
| 824 | + $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
| 825 | + $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
| 826 | 826 | |
| 827 | - $date_format = str_replace($search, $replace, $date_format); |
|
| 828 | - }else{ |
|
| 829 | - $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format ); |
|
| 830 | - } |
|
| 827 | + $date_format = str_replace($search, $replace, $date_format); |
|
| 828 | + }else{ |
|
| 829 | + $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format ); |
|
| 830 | + } |
|
| 831 | 831 | |
| 832 | - if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty |
|
| 833 | - if($value && !isset($_REQUEST['backandedit'])) { |
|
| 834 | - //$time = strtotime($value); |
|
| 835 | - //$value = date_i18n($date_format, $time); |
|
| 836 | - } |
|
| 837 | - $value = geodir_date($value, 'Y-m-d', $date_format); |
|
| 832 | + if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty |
|
| 833 | + if($value && !isset($_REQUEST['backandedit'])) { |
|
| 834 | + //$time = strtotime($value); |
|
| 835 | + //$value = date_i18n($date_format, $time); |
|
| 836 | + } |
|
| 837 | + $value = geodir_date($value, 'Y-m-d', $date_format); |
|
| 838 | 838 | |
| 839 | - ?> |
|
| 839 | + ?> |
|
| 840 | 840 | <script type="text/javascript"> |
| 841 | 841 | |
| 842 | 842 | jQuery(function () { |
| 843 | 843 | |
| 844 | 844 | jQuery("#<?php echo $cf['name'];?>").datepicker({changeMonth: true, changeYear: true <?php |
| 845 | - /** |
|
| 846 | - * Used to add extra option to datepicker per custom field. |
|
| 847 | - * |
|
| 848 | - * @since 1.5.7 |
|
| 849 | - * @param string $name The custom field name. |
|
| 850 | - */ |
|
| 851 | - echo apply_filters("gd_datepicker_extra_{$name}",'');?>}); |
|
| 845 | + /** |
|
| 846 | + * Used to add extra option to datepicker per custom field. |
|
| 847 | + * |
|
| 848 | + * @since 1.5.7 |
|
| 849 | + * @param string $name The custom field name. |
|
| 850 | + */ |
|
| 851 | + echo apply_filters("gd_datepicker_extra_{$name}",'');?>}); |
|
| 852 | 852 | |
| 853 | 853 | jQuery("#<?php echo $name;?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format;?>'); |
| 854 | 854 | |
@@ -864,7 +864,7 @@ discard block |
||
| 864 | 864 | <label> |
| 865 | 865 | |
| 866 | 866 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 867 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 867 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 868 | 868 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 869 | 869 | </label> |
| 870 | 870 | |
@@ -878,10 +878,10 @@ discard block |
||
| 878 | 878 | </div> |
| 879 | 879 | |
| 880 | 880 | <?php |
| 881 | - $html = ob_get_clean(); |
|
| 882 | - } |
|
| 881 | + $html = ob_get_clean(); |
|
| 882 | + } |
|
| 883 | 883 | |
| 884 | - return $html; |
|
| 884 | + return $html; |
|
| 885 | 885 | } |
| 886 | 886 | add_filter('geodir_custom_field_input_datepicker','geodir_cfi_datepicker',10,2); |
| 887 | 887 | |
@@ -897,31 +897,31 @@ discard block |
||
| 897 | 897 | */ |
| 898 | 898 | function geodir_cfi_time($html,$cf){ |
| 899 | 899 | |
| 900 | - $html_var = $cf['htmlvar_name']; |
|
| 900 | + $html_var = $cf['htmlvar_name']; |
|
| 901 | 901 | |
| 902 | - // Check if there is a custom field specific filter. |
|
| 903 | - if(has_filter("geodir_custom_field_input_time_{$html_var}")){ |
|
| 904 | - /** |
|
| 905 | - * Filter the time html by individual custom field. |
|
| 906 | - * |
|
| 907 | - * @param string $html The html to filter. |
|
| 908 | - * @param array $cf The custom field array. |
|
| 909 | - * @since 1.6.6 |
|
| 910 | - */ |
|
| 911 | - $html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf); |
|
| 912 | - } |
|
| 902 | + // Check if there is a custom field specific filter. |
|
| 903 | + if(has_filter("geodir_custom_field_input_time_{$html_var}")){ |
|
| 904 | + /** |
|
| 905 | + * Filter the time html by individual custom field. |
|
| 906 | + * |
|
| 907 | + * @param string $html The html to filter. |
|
| 908 | + * @param array $cf The custom field array. |
|
| 909 | + * @since 1.6.6 |
|
| 910 | + */ |
|
| 911 | + $html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf); |
|
| 912 | + } |
|
| 913 | 913 | |
| 914 | - // If no html then we run the standard output. |
|
| 915 | - if(empty($html)) { |
|
| 914 | + // If no html then we run the standard output. |
|
| 915 | + if(empty($html)) { |
|
| 916 | 916 | |
| 917 | - ob_start(); // Start buffering; |
|
| 918 | - $value = geodir_get_cf_value($cf); |
|
| 917 | + ob_start(); // Start buffering; |
|
| 918 | + $value = geodir_get_cf_value($cf); |
|
| 919 | 919 | |
| 920 | - $name = $cf['name']; |
|
| 920 | + $name = $cf['name']; |
|
| 921 | 921 | |
| 922 | - if ($value != '') |
|
| 923 | - $value = date('H:i', strtotime($value)); |
|
| 924 | - ?> |
|
| 922 | + if ($value != '') |
|
| 923 | + $value = date('H:i', strtotime($value)); |
|
| 924 | + ?> |
|
| 925 | 925 | <script type="text/javascript"> |
| 926 | 926 | jQuery(document).ready(function () { |
| 927 | 927 | |
@@ -937,7 +937,7 @@ discard block |
||
| 937 | 937 | <label> |
| 938 | 938 | |
| 939 | 939 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
| 940 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 940 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 941 | 941 | <?php if ($cf['is_required']) echo '<span>*</span>';?> |
| 942 | 942 | </label> |
| 943 | 943 | <input readonly="readonly" field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>" |
@@ -949,10 +949,10 @@ discard block |
||
| 949 | 949 | <?php } ?> |
| 950 | 950 | </div> |
| 951 | 951 | <?php |
| 952 | - $html = ob_get_clean(); |
|
| 953 | - } |
|
| 952 | + $html = ob_get_clean(); |
|
| 953 | + } |
|
| 954 | 954 | |
| 955 | - return $html; |
|
| 955 | + return $html; |
|
| 956 | 956 | } |
| 957 | 957 | add_filter('geodir_custom_field_input_time','geodir_cfi_time',10,2); |
| 958 | 958 | |
@@ -968,100 +968,100 @@ discard block |
||
| 968 | 968 | */ |
| 969 | 969 | function geodir_cfi_address($html,$cf){ |
| 970 | 970 | |
| 971 | - $html_var = $cf['htmlvar_name']; |
|
| 972 | - |
|
| 973 | - // Check if there is a custom field specific filter. |
|
| 974 | - if(has_filter("geodir_custom_field_input_address_{$html_var}")){ |
|
| 975 | - /** |
|
| 976 | - * Filter the address html by individual custom field. |
|
| 977 | - * |
|
| 978 | - * @param string $html The html to filter. |
|
| 979 | - * @param array $cf The custom field array. |
|
| 980 | - * @since 1.6.6 |
|
| 981 | - */ |
|
| 982 | - $html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf); |
|
| 983 | - } |
|
| 984 | - |
|
| 985 | - // If no html then we run the standard output. |
|
| 986 | - if(empty($html)) { |
|
| 987 | - |
|
| 988 | - global $gd_session; |
|
| 989 | - ob_start(); // Start buffering; |
|
| 990 | - $value = geodir_get_cf_value($cf); |
|
| 991 | - $name = $cf['name']; |
|
| 992 | - $type = $cf['type']; |
|
| 993 | - $admin_desc = $cf['desc']; |
|
| 994 | - $is_required = $cf['is_required']; |
|
| 995 | - $required_msg = $cf['required_msg']; |
|
| 996 | - $site_title = $cf['site_title']; |
|
| 997 | - $is_admin = $cf['is_admin']; |
|
| 998 | - $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 999 | - $prefix = $name . '_'; |
|
| 1000 | - |
|
| 1001 | - ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address'); |
|
| 1002 | - ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code '); |
|
| 1003 | - ($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map'); |
|
| 1004 | - ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview'); |
|
| 1005 | - |
|
| 1006 | - $address = ''; |
|
| 1007 | - $zip = ''; |
|
| 1008 | - $mapview = ''; |
|
| 1009 | - $mapzoom = ''; |
|
| 1010 | - $lat = ''; |
|
| 1011 | - $lng = ''; |
|
| 1012 | - |
|
| 1013 | - if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) { |
|
| 1014 | - $post = $gd_ses_listing; |
|
| 1015 | - $address = $post[$prefix . 'address']; |
|
| 1016 | - $zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : ''; |
|
| 1017 | - $lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : ''; |
|
| 1018 | - $lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : ''; |
|
| 1019 | - $mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : ''; |
|
| 1020 | - $mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : ''; |
|
| 1021 | - } else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) { |
|
| 1022 | - $post_info = (array)$post_info; |
|
| 1023 | - |
|
| 1024 | - $address = $post_info[$prefix . 'address']; |
|
| 1025 | - $zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : ''; |
|
| 1026 | - $lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : ''; |
|
| 1027 | - $lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : ''; |
|
| 1028 | - $mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : ''; |
|
| 1029 | - $mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : ''; |
|
| 1030 | - } |
|
| 1031 | - |
|
| 1032 | - $location = geodir_get_default_location(); |
|
| 1033 | - if (empty($city)) $city = isset($location->city) ? $location->city : ''; |
|
| 1034 | - if (empty($region)) $region = isset($location->region) ? $location->region : ''; |
|
| 1035 | - if (empty($country)) $country = isset($location->country) ? $location->country : ''; |
|
| 1036 | - |
|
| 1037 | - $lat_lng_blank = false; |
|
| 1038 | - if (empty($lat) && empty($lng)) { |
|
| 1039 | - $lat_lng_blank = true; |
|
| 1040 | - } |
|
| 1041 | - |
|
| 1042 | - if (empty($lat)) $lat = isset($location->city_latitude) ? $location->city_latitude : ''; |
|
| 1043 | - if (empty($lng)) $lng = isset($location->city_longitude) ? $location->city_longitude : ''; |
|
| 1044 | - |
|
| 1045 | - /** |
|
| 1046 | - * Filter the default latitude. |
|
| 1047 | - * |
|
| 1048 | - * @since 1.0.0 |
|
| 1049 | - * |
|
| 1050 | - * @param float $lat Default latitude. |
|
| 1051 | - * @param bool $is_admin For admin use only?. |
|
| 1052 | - */ |
|
| 1053 | - $lat = apply_filters('geodir_default_latitude', $lat, $is_admin); |
|
| 1054 | - /** |
|
| 1055 | - * Filter the default longitude. |
|
| 1056 | - * |
|
| 1057 | - * @since 1.0.0 |
|
| 1058 | - * |
|
| 1059 | - * @param float $lat Default longitude. |
|
| 1060 | - * @param bool $is_admin For admin use only?. |
|
| 1061 | - */ |
|
| 1062 | - $lng = apply_filters('geodir_default_longitude', $lng, $is_admin); |
|
| 1063 | - |
|
| 1064 | - ?> |
|
| 971 | + $html_var = $cf['htmlvar_name']; |
|
| 972 | + |
|
| 973 | + // Check if there is a custom field specific filter. |
|
| 974 | + if(has_filter("geodir_custom_field_input_address_{$html_var}")){ |
|
| 975 | + /** |
|
| 976 | + * Filter the address html by individual custom field. |
|
| 977 | + * |
|
| 978 | + * @param string $html The html to filter. |
|
| 979 | + * @param array $cf The custom field array. |
|
| 980 | + * @since 1.6.6 |
|
| 981 | + */ |
|
| 982 | + $html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf); |
|
| 983 | + } |
|
| 984 | + |
|
| 985 | + // If no html then we run the standard output. |
|
| 986 | + if(empty($html)) { |
|
| 987 | + |
|
| 988 | + global $gd_session; |
|
| 989 | + ob_start(); // Start buffering; |
|
| 990 | + $value = geodir_get_cf_value($cf); |
|
| 991 | + $name = $cf['name']; |
|
| 992 | + $type = $cf['type']; |
|
| 993 | + $admin_desc = $cf['desc']; |
|
| 994 | + $is_required = $cf['is_required']; |
|
| 995 | + $required_msg = $cf['required_msg']; |
|
| 996 | + $site_title = $cf['site_title']; |
|
| 997 | + $is_admin = $cf['is_admin']; |
|
| 998 | + $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
|
| 999 | + $prefix = $name . '_'; |
|
| 1000 | + |
|
| 1001 | + ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address'); |
|
| 1002 | + ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code '); |
|
| 1003 | + ($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map'); |
|
| 1004 | + ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview'); |
|
| 1005 | + |
|
| 1006 | + $address = ''; |
|
| 1007 | + $zip = ''; |
|
| 1008 | + $mapview = ''; |
|
| 1009 | + $mapzoom = ''; |
|
| 1010 | + $lat = ''; |
|
| 1011 | + $lng = ''; |
|
| 1012 | + |
|
| 1013 | + if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) { |
|
| 1014 | + $post = $gd_ses_listing; |
|
| 1015 | + $address = $post[$prefix . 'address']; |
|
| 1016 | + $zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : ''; |
|
| 1017 | + $lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : ''; |
|
| 1018 | + $lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : ''; |
|
| 1019 | + $mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : ''; |
|
| 1020 | + $mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : ''; |
|
| 1021 | + } else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) { |
|
| 1022 | + $post_info = (array)$post_info; |
|
| 1023 | + |
|
| 1024 | + $address = $post_info[$prefix . 'address']; |
|
| 1025 | + $zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : ''; |
|
| 1026 | + $lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : ''; |
|
| 1027 | + $lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : ''; |
|
| 1028 | + $mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : ''; |
|
| 1029 | + $mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : ''; |
|
| 1030 | + } |
|
| 1031 | + |
|
| 1032 | + $location = geodir_get_default_location(); |
|
| 1033 | + if (empty($city)) $city = isset($location->city) ? $location->city : ''; |
|
| 1034 | + if (empty($region)) $region = isset($location->region) ? $location->region : ''; |
|
| 1035 | + if (empty($country)) $country = isset($location->country) ? $location->country : ''; |
|
| 1036 | + |
|
| 1037 | + $lat_lng_blank = false; |
|
| 1038 | + if (empty($lat) && empty($lng)) { |
|
| 1039 | + $lat_lng_blank = true; |
|
| 1040 | + } |
|
| 1041 | + |
|
| 1042 | + if (empty($lat)) $lat = isset($location->city_latitude) ? $location->city_latitude : ''; |
|
| 1043 | + if (empty($lng)) $lng = isset($location->city_longitude) ? $location->city_longitude : ''; |
|
| 1044 | + |
|
| 1045 | + /** |
|
| 1046 | + * Filter the default latitude. |
|
| 1047 | + * |
|
| 1048 | + * @since 1.0.0 |
|
| 1049 | + * |
|
| 1050 | + * @param float $lat Default latitude. |
|
| 1051 | + * @param bool $is_admin For admin use only?. |
|
| 1052 | + */ |
|
| 1053 | + $lat = apply_filters('geodir_default_latitude', $lat, $is_admin); |
|
| 1054 | + /** |
|
| 1055 | + * Filter the default longitude. |
|
| 1056 | + * |
|
| 1057 | + * @since 1.0.0 |
|
| 1058 | + * |
|
| 1059 | + * @param float $lat Default longitude. |
|
| 1060 | + * @param bool $is_admin For admin use only?. |
|
| 1061 | + */ |
|
| 1062 | + $lng = apply_filters('geodir_default_longitude', $lng, $is_admin); |
|
| 1063 | + |
|
| 1064 | + ?> |
|
| 1065 | 1065 | |
| 1066 | 1066 | <div id="geodir_<?php echo $prefix . 'address';?>_row" |
| 1067 | 1067 | class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
@@ -1080,17 +1080,17 @@ discard block |
||
| 1080 | 1080 | |
| 1081 | 1081 | |
| 1082 | 1082 | <?php |
| 1083 | - /** |
|
| 1084 | - * Called after the address input on the add listings. |
|
| 1085 | - * |
|
| 1086 | - * This is used by the location manage to add further locations info etc. |
|
| 1087 | - * |
|
| 1088 | - * @since 1.0.0 |
|
| 1089 | - * @param array $cf The array of setting for the custom field. {@see geodir_custom_field_save()}. |
|
| 1090 | - */ |
|
| 1091 | - do_action('geodir_address_extra_listing_fields', $cf); |
|
| 1092 | - |
|
| 1093 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?> |
|
| 1083 | + /** |
|
| 1084 | + * Called after the address input on the add listings. |
|
| 1085 | + * |
|
| 1086 | + * This is used by the location manage to add further locations info etc. |
|
| 1087 | + * |
|
| 1088 | + * @since 1.0.0 |
|
| 1089 | + * @param array $cf The array of setting for the custom field. {@see geodir_custom_field_save()}. |
|
| 1090 | + */ |
|
| 1091 | + do_action('geodir_address_extra_listing_fields', $cf); |
|
| 1092 | + |
|
| 1093 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?> |
|
| 1094 | 1094 | |
| 1095 | 1095 | <div id="geodir_<?php echo $prefix . 'zip'; ?>_row" |
| 1096 | 1096 | class="<?php /*if($is_required) echo 'required_field';*/ ?> geodir_form_row clearfix gd-fieldset-details"> |
@@ -1111,22 +1111,22 @@ discard block |
||
| 1111 | 1111 | |
| 1112 | 1112 | <div id="geodir_<?php echo $prefix . 'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details"> |
| 1113 | 1113 | <?php |
| 1114 | - /** |
|
| 1115 | - * Contains add listing page map functions. |
|
| 1116 | - * |
|
| 1117 | - * @since 1.0.0 |
|
| 1118 | - */ |
|
| 1119 | - include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php"); |
|
| 1120 | - if ($lat_lng_blank) { |
|
| 1121 | - $lat = ''; |
|
| 1122 | - $lng = ''; |
|
| 1123 | - } |
|
| 1124 | - ?> |
|
| 1114 | + /** |
|
| 1115 | + * Contains add listing page map functions. |
|
| 1116 | + * |
|
| 1117 | + * @since 1.0.0 |
|
| 1118 | + */ |
|
| 1119 | + include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php"); |
|
| 1120 | + if ($lat_lng_blank) { |
|
| 1121 | + $lat = ''; |
|
| 1122 | + $lng = ''; |
|
| 1123 | + } |
|
| 1124 | + ?> |
|
| 1125 | 1125 | <span class="geodir_message_note"><?php echo GET_MAP_MSG; ?></span> |
| 1126 | 1126 | </div> |
| 1127 | 1127 | <?php |
| 1128 | - /* show lat lng */ |
|
| 1129 | - $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?> |
|
| 1128 | + /* show lat lng */ |
|
| 1129 | + $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?> |
|
| 1130 | 1130 | <div id="geodir_<?php echo $prefix . 'latitude'; ?>_row" |
| 1131 | 1131 | class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>> |
| 1132 | 1132 | <label> |
@@ -1167,27 +1167,27 @@ discard block |
||
| 1167 | 1167 | class="gd-checkbox" |
| 1168 | 1168 | name="<?php echo $prefix . 'mapview'; ?>" |
| 1169 | 1169 | id="<?php echo $prefix . 'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') { |
| 1170 | - echo 'checked="checked"'; |
|
| 1171 | - } ?> value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span> |
|
| 1170 | + echo 'checked="checked"'; |
|
| 1171 | + } ?> value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span> |
|
| 1172 | 1172 | <span class="geodir_user_define"> <input field_type="<?php echo $type; ?>" type="radio" |
| 1173 | 1173 | class="gd-checkbox" |
| 1174 | 1174 | name="<?php echo $prefix . 'mapview'; ?>" |
| 1175 | 1175 | id="map_view1" <?php if ($mapview == 'SATELLITE') { |
| 1176 | - echo 'checked="checked"'; |
|
| 1177 | - } ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span> |
|
| 1176 | + echo 'checked="checked"'; |
|
| 1177 | + } ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span> |
|
| 1178 | 1178 | |
| 1179 | 1179 | <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio" |
| 1180 | 1180 | class="gd-checkbox" |
| 1181 | 1181 | name="<?php echo $prefix . 'mapview'; ?>" |
| 1182 | 1182 | id="map_view2" <?php if ($mapview == 'HYBRID') { |
| 1183 | - echo 'checked="checked"'; |
|
| 1184 | - } ?> value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span> |
|
| 1183 | + echo 'checked="checked"'; |
|
| 1184 | + } ?> value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span> |
|
| 1185 | 1185 | <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio" |
| 1186 | 1186 | class="gd-checkbox" |
| 1187 | 1187 | name="<?php echo $prefix . 'mapview'; ?>" |
| 1188 | 1188 | id="map_view3" <?php if ($mapview == 'TERRAIN') { |
| 1189 | - echo 'checked="checked"'; |
|
| 1190 | - } ?> value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span> |
|
| 1189 | + echo 'checked="checked"'; |
|
| 1190 | + } ?> value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span> |
|
| 1191 | 1191 | |
| 1192 | 1192 | |
| 1193 | 1193 | </div> |
@@ -1195,14 +1195,14 @@ discard block |
||
| 1195 | 1195 | |
| 1196 | 1196 | <?php if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) { ?> |
| 1197 | 1197 | <input type="hidden" value="<?php if (isset($mapzoom)) { |
| 1198 | - echo esc_attr($mapzoom); |
|
| 1199 | - } ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/> |
|
| 1198 | + echo esc_attr($mapzoom); |
|
| 1199 | + } ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/> |
|
| 1200 | 1200 | <?php } |
| 1201 | 1201 | |
| 1202 | - $html = ob_get_clean(); |
|
| 1203 | - } |
|
| 1202 | + $html = ob_get_clean(); |
|
| 1203 | + } |
|
| 1204 | 1204 | |
| 1205 | - return $html; |
|
| 1205 | + return $html; |
|
| 1206 | 1206 | } |
| 1207 | 1207 | add_filter('geodir_custom_field_input_address','geodir_cfi_address',10,2); |
| 1208 | 1208 | |
@@ -1219,137 +1219,137 @@ discard block |
||
| 1219 | 1219 | */ |
| 1220 | 1220 | function geodir_cfi_taxonomy($html,$cf){ |
| 1221 | 1221 | |
| 1222 | - $html_var = $cf['htmlvar_name']; |
|
| 1223 | - |
|
| 1224 | - // Check if there is a custom field specific filter. |
|
| 1225 | - if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){ |
|
| 1226 | - /** |
|
| 1227 | - * Filter the taxonomy html by individual custom field. |
|
| 1228 | - * |
|
| 1229 | - * @param string $html The html to filter. |
|
| 1230 | - * @param array $cf The custom field array. |
|
| 1231 | - * @since 1.6.6 |
|
| 1232 | - */ |
|
| 1233 | - $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf); |
|
| 1234 | - } |
|
| 1235 | - |
|
| 1236 | - // If no html then we run the standard output. |
|
| 1237 | - if(empty($html)) { |
|
| 1238 | - |
|
| 1239 | - ob_start(); // Start buffering; |
|
| 1240 | - $value = geodir_get_cf_value($cf); |
|
| 1241 | - |
|
| 1242 | - $name = $cf['name']; |
|
| 1243 | - $site_title = $cf['site_title']; |
|
| 1244 | - $admin_desc = $cf['desc']; |
|
| 1245 | - $is_required = $cf['is_required']; |
|
| 1246 | - $is_admin = $cf['is_admin']; |
|
| 1247 | - $required_msg = $cf['required_msg']; |
|
| 1248 | - |
|
| 1249 | - if ($value == $cf['default']) { |
|
| 1250 | - $value = ''; |
|
| 1251 | - } ?> |
|
| 1222 | + $html_var = $cf['htmlvar_name']; |
|
| 1223 | + |
|
| 1224 | + // Check if there is a custom field specific filter. |
|
| 1225 | + if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){ |
|
| 1226 | + /** |
|
| 1227 | + * Filter the taxonomy html by individual custom field. |
|
| 1228 | + * |
|
| 1229 | + * @param string $html The html to filter. |
|
| 1230 | + * @param array $cf The custom field array. |
|
| 1231 | + * @since 1.6.6 |
|
| 1232 | + */ |
|
| 1233 | + $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf); |
|
| 1234 | + } |
|
| 1235 | + |
|
| 1236 | + // If no html then we run the standard output. |
|
| 1237 | + if(empty($html)) { |
|
| 1238 | + |
|
| 1239 | + ob_start(); // Start buffering; |
|
| 1240 | + $value = geodir_get_cf_value($cf); |
|
| 1241 | + |
|
| 1242 | + $name = $cf['name']; |
|
| 1243 | + $site_title = $cf['site_title']; |
|
| 1244 | + $admin_desc = $cf['desc']; |
|
| 1245 | + $is_required = $cf['is_required']; |
|
| 1246 | + $is_admin = $cf['is_admin']; |
|
| 1247 | + $required_msg = $cf['required_msg']; |
|
| 1248 | + |
|
| 1249 | + if ($value == $cf['default']) { |
|
| 1250 | + $value = ''; |
|
| 1251 | + } ?> |
|
| 1252 | 1252 | <div id="<?php echo $name;?>_row" |
| 1253 | 1253 | class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
| 1254 | 1254 | <label> |
| 1255 | 1255 | <?php $site_title = __($site_title, 'geodirectory'); |
| 1256 | - echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 1256 | + echo (trim($site_title)) ? $site_title : ' '; ?> |
|
| 1257 | 1257 | <?php if ($is_required) echo '<span>*</span>';?> |
| 1258 | 1258 | </label> |
| 1259 | 1259 | |
| 1260 | 1260 | <div id="<?php echo $name;?>" class="geodir_taxonomy_field" style="float:left; width:70%;"> |
| 1261 | 1261 | <?php |
| 1262 | - global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats; |
|
| 1262 | + global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats; |
|
| 1263 | 1263 | |
| 1264 | - $exclude_cats = array(); |
|
| 1264 | + $exclude_cats = array(); |
|
| 1265 | 1265 | |
| 1266 | - if ($is_admin == '1') { |
|
| 1266 | + if ($is_admin == '1') { |
|
| 1267 | 1267 | |
| 1268 | - $post_type = get_post_type(); |
|
| 1268 | + $post_type = get_post_type(); |
|
| 1269 | 1269 | |
| 1270 | - $package_info = array(); |
|
| 1270 | + $package_info = array(); |
|
| 1271 | 1271 | |
| 1272 | - $package_info = (array)geodir_post_package_info($package_info, $post, $post_type); |
|
| 1272 | + $package_info = (array)geodir_post_package_info($package_info, $post, $post_type); |
|
| 1273 | 1273 | |
| 1274 | - if (!empty($package_info)) { |
|
| 1274 | + if (!empty($package_info)) { |
|
| 1275 | 1275 | |
| 1276 | - if (isset($package_info['cat']) && $package_info['cat'] != '') { |
|
| 1276 | + if (isset($package_info['cat']) && $package_info['cat'] != '') { |
|
| 1277 | 1277 | |
| 1278 | - $exclude_cats = explode(',', $package_info['cat']); |
|
| 1278 | + $exclude_cats = explode(',', $package_info['cat']); |
|
| 1279 | 1279 | |
| 1280 | - } |
|
| 1281 | - } |
|
| 1282 | - } |
|
| 1280 | + } |
|
| 1281 | + } |
|
| 1282 | + } |
|
| 1283 | 1283 | |
| 1284 | - $cat_display = unserialize($cf['extra_fields']); |
|
| 1284 | + $cat_display = unserialize($cf['extra_fields']); |
|
| 1285 | 1285 | |
| 1286 | - if (isset($_REQUEST['backandedit']) && (is_array($post_cat[$name]) && !empty($post_cat[$name]))) { |
|
| 1286 | + if (isset($_REQUEST['backandedit']) && (is_array($post_cat[$name]) && !empty($post_cat[$name]))) { |
|
| 1287 | 1287 | |
| 1288 | - $post_cat = implode(",", $post_cat[$name]); |
|
| 1288 | + $post_cat = implode(",", $post_cat[$name]); |
|
| 1289 | 1289 | |
| 1290 | - } else { |
|
| 1291 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 1292 | - $post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true); |
|
| 1293 | - } |
|
| 1290 | + } else { |
|
| 1291 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 1292 | + $post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true); |
|
| 1293 | + } |
|
| 1294 | 1294 | |
| 1295 | 1295 | |
| 1296 | - global $geodir_addon_list; |
|
| 1297 | - if (!empty($geodir_addon_list) && array_key_exists('geodir_payment_manager', $geodir_addon_list) && $geodir_addon_list['geodir_payment_manager'] == 'yes') { |
|
| 1296 | + global $geodir_addon_list; |
|
| 1297 | + if (!empty($geodir_addon_list) && array_key_exists('geodir_payment_manager', $geodir_addon_list) && $geodir_addon_list['geodir_payment_manager'] == 'yes') { |
|
| 1298 | 1298 | |
| 1299 | - $catadd_limit = $wpdb->get_var( |
|
| 1300 | - $wpdb->prepare( |
|
| 1301 | - "SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d", |
|
| 1302 | - array($package_id) |
|
| 1303 | - ) |
|
| 1304 | - ); |
|
| 1299 | + $catadd_limit = $wpdb->get_var( |
|
| 1300 | + $wpdb->prepare( |
|
| 1301 | + "SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d", |
|
| 1302 | + array($package_id) |
|
| 1303 | + ) |
|
| 1304 | + ); |
|
| 1305 | 1305 | |
| 1306 | 1306 | |
| 1307 | - } else { |
|
| 1308 | - $catadd_limit = 0; |
|
| 1309 | - } |
|
| 1307 | + } else { |
|
| 1308 | + $catadd_limit = 0; |
|
| 1309 | + } |
|
| 1310 | 1310 | |
| 1311 | 1311 | |
| 1312 | - if ($cat_display != '' && $cat_display != 'ajax_chained') { |
|
| 1312 | + if ($cat_display != '' && $cat_display != 'ajax_chained') { |
|
| 1313 | 1313 | |
| 1314 | - $required_limit_msg = ''; |
|
| 1315 | - if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') { |
|
| 1314 | + $required_limit_msg = ''; |
|
| 1315 | + if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') { |
|
| 1316 | 1316 | |
| 1317 | - $required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory'); |
|
| 1317 | + $required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory'); |
|
| 1318 | 1318 | |
| 1319 | - } else { |
|
| 1320 | - $required_limit_msg = $required_msg; |
|
| 1321 | - } |
|
| 1319 | + } else { |
|
| 1320 | + $required_limit_msg = $required_msg; |
|
| 1321 | + } |
|
| 1322 | 1322 | |
| 1323 | - echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']" />'; |
|
| 1323 | + echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']" />'; |
|
| 1324 | 1324 | |
| 1325 | 1325 | |
| 1326 | - if ($cat_display == 'select' || $cat_display == 'multiselect') { |
|
| 1326 | + if ($cat_display == 'select' || $cat_display == 'multiselect') { |
|
| 1327 | 1327 | |
| 1328 | - $cat_display == ''; |
|
| 1329 | - $multiple = ''; |
|
| 1330 | - if ($cat_display == 'multiselect') |
|
| 1331 | - $multiple = 'multiple="multiple"'; |
|
| 1328 | + $cat_display == ''; |
|
| 1329 | + $multiple = ''; |
|
| 1330 | + if ($cat_display == 'multiselect') |
|
| 1331 | + $multiple = 'multiple="multiple"'; |
|
| 1332 | 1332 | |
| 1333 | - echo '<select id="' . $name . '" ' . $multiple . ' type="' . $name . '" name="post_category[' . $name . '][]" alt="' . $name . '" field_type="' . $cat_display . '" class="geodir_textfield textfield_x chosen_select" data-placeholder="' . __('Select Category', 'geodirectory') . '">'; |
|
| 1333 | + echo '<select id="' . $name . '" ' . $multiple . ' type="' . $name . '" name="post_category[' . $name . '][]" alt="' . $name . '" field_type="' . $cat_display . '" class="geodir_textfield textfield_x chosen_select" data-placeholder="' . __('Select Category', 'geodirectory') . '">'; |
|
| 1334 | 1334 | |
| 1335 | 1335 | |
| 1336 | - if ($cat_display == 'select') |
|
| 1337 | - echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>'; |
|
| 1336 | + if ($cat_display == 'select') |
|
| 1337 | + echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>'; |
|
| 1338 | 1338 | |
| 1339 | - } |
|
| 1339 | + } |
|
| 1340 | 1340 | |
| 1341 | - echo geodir_custom_taxonomy_walker($name, $catadd_limit = 0); |
|
| 1341 | + echo geodir_custom_taxonomy_walker($name, $catadd_limit = 0); |
|
| 1342 | 1342 | |
| 1343 | - if ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 1344 | - echo '</select>'; |
|
| 1343 | + if ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 1344 | + echo '</select>'; |
|
| 1345 | 1345 | |
| 1346 | - } else { |
|
| 1346 | + } else { |
|
| 1347 | 1347 | |
| 1348 | - echo geodir_custom_taxonomy_walker2($name, $catadd_limit); |
|
| 1348 | + echo geodir_custom_taxonomy_walker2($name, $catadd_limit); |
|
| 1349 | 1349 | |
| 1350 | - } |
|
| 1350 | + } |
|
| 1351 | 1351 | |
| 1352 | - ?> |
|
| 1352 | + ?> |
|
| 1353 | 1353 | </div> |
| 1354 | 1354 | |
| 1355 | 1355 | <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span> |
@@ -1359,10 +1359,10 @@ discard block |
||
| 1359 | 1359 | </div> |
| 1360 | 1360 | |
| 1361 | 1361 | <?php |
| 1362 | - $html = ob_get_clean(); |
|
| 1363 | - } |
|
| 1362 | + $html = ob_get_clean(); |
|
| 1363 | + } |
|
| 1364 | 1364 | |
| 1365 | - return $html; |
|
| 1365 | + return $html; |
|
| 1366 | 1366 | } |
| 1367 | 1367 | add_filter('geodir_custom_field_input_taxonomy','geodir_cfi_taxonomy',10,2); |
| 1368 | 1368 | |
@@ -1378,74 +1378,74 @@ discard block |
||
| 1378 | 1378 | */ |
| 1379 | 1379 | function geodir_cfi_file($html,$cf){ |
| 1380 | 1380 | |
| 1381 | - $html_var = $cf['htmlvar_name']; |
|
| 1381 | + $html_var = $cf['htmlvar_name']; |
|
| 1382 | 1382 | |
| 1383 | - // Check if there is a custom field specific filter. |
|
| 1384 | - if(has_filter("geodir_custom_field_input_file_{$html_var}")){ |
|
| 1385 | - /** |
|
| 1386 | - * Filter the file html by individual custom field. |
|
| 1387 | - * |
|
| 1388 | - * @param string $html The html to filter. |
|
| 1389 | - * @param array $cf The custom field array. |
|
| 1390 | - * @since 1.6.6 |
|
| 1391 | - */ |
|
| 1392 | - $html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf); |
|
| 1393 | - } |
|
| 1383 | + // Check if there is a custom field specific filter. |
|
| 1384 | + if(has_filter("geodir_custom_field_input_file_{$html_var}")){ |
|
| 1385 | + /** |
|
| 1386 | + * Filter the file html by individual custom field. |
|
| 1387 | + * |
|
| 1388 | + * @param string $html The html to filter. |
|
| 1389 | + * @param array $cf The custom field array. |
|
| 1390 | + * @since 1.6.6 |
|
| 1391 | + */ |
|
| 1392 | + $html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf); |
|
| 1393 | + } |
|
| 1394 | 1394 | |
| 1395 | - // If no html then we run the standard output. |
|
| 1396 | - if(empty($html)) { |
|
| 1395 | + // If no html then we run the standard output. |
|
| 1396 | + if(empty($html)) { |
|
| 1397 | 1397 | |
| 1398 | - ob_start(); // Start buffering; |
|
| 1399 | - $value = geodir_get_cf_value($cf); |
|
| 1398 | + ob_start(); // Start buffering; |
|
| 1399 | + $value = geodir_get_cf_value($cf); |
|
| 1400 | 1400 | |
| 1401 | - $name = $cf['name']; |
|
| 1402 | - $site_title = $cf['site_title']; |
|
| 1403 | - $admin_desc = $cf['desc']; |
|
| 1404 | - $is_required = $cf['is_required']; |
|
| 1405 | - $required_msg = $cf['required_msg']; |
|
| 1406 | - $extra_fields = unserialize($cf['extra_fields']); |
|
| 1401 | + $name = $cf['name']; |
|
| 1402 | + $site_title = $cf['site_title']; |
|
| 1403 | + $admin_desc = $cf['desc']; |
|
| 1404 | + $is_required = $cf['is_required']; |
|
| 1405 | + $required_msg = $cf['required_msg']; |
|
| 1406 | + $extra_fields = unserialize($cf['extra_fields']); |
|
| 1407 | 1407 | |
| 1408 | 1408 | |
| 1409 | - // adjust values here |
|
| 1410 | - $file_id = $name; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
| 1409 | + // adjust values here |
|
| 1410 | + $file_id = $name; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
| 1411 | 1411 | |
| 1412 | - if ($value != '') { |
|
| 1412 | + if ($value != '') { |
|
| 1413 | 1413 | |
| 1414 | - $file_value = trim($value, ","); // this will be initial value of the above form field. Image urls. |
|
| 1414 | + $file_value = trim($value, ","); // this will be initial value of the above form field. Image urls. |
|
| 1415 | 1415 | |
| 1416 | - } else |
|
| 1417 | - $file_value = ''; |
|
| 1416 | + } else |
|
| 1417 | + $file_value = ''; |
|
| 1418 | 1418 | |
| 1419 | - if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple']) |
|
| 1420 | - $file_multiple = true; // allow multiple files upload |
|
| 1421 | - else |
|
| 1422 | - $file_multiple = false; |
|
| 1419 | + if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple']) |
|
| 1420 | + $file_multiple = true; // allow multiple files upload |
|
| 1421 | + else |
|
| 1422 | + $file_multiple = false; |
|
| 1423 | 1423 | |
| 1424 | - if (isset($extra_fields['image_limit']) && $extra_fields['image_limit']) |
|
| 1425 | - $file_image_limit = $extra_fields['image_limit']; |
|
| 1426 | - else |
|
| 1427 | - $file_image_limit = 1; |
|
| 1424 | + if (isset($extra_fields['image_limit']) && $extra_fields['image_limit']) |
|
| 1425 | + $file_image_limit = $extra_fields['image_limit']; |
|
| 1426 | + else |
|
| 1427 | + $file_image_limit = 1; |
|
| 1428 | 1428 | |
| 1429 | - $file_width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
| 1429 | + $file_width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
| 1430 | 1430 | |
| 1431 | - $file_height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
| 1431 | + $file_height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
| 1432 | 1432 | |
| 1433 | - if (!empty($file_value)) { |
|
| 1434 | - $curImages = explode(',', $file_value); |
|
| 1435 | - if (!empty($curImages)) |
|
| 1436 | - $file_totImg = count($curImages); |
|
| 1437 | - } |
|
| 1433 | + if (!empty($file_value)) { |
|
| 1434 | + $curImages = explode(',', $file_value); |
|
| 1435 | + if (!empty($curImages)) |
|
| 1436 | + $file_totImg = count($curImages); |
|
| 1437 | + } |
|
| 1438 | 1438 | |
| 1439 | - $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? implode(",", $extra_fields['gd_file_types']) : ''; |
|
| 1440 | - $display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : ''; |
|
| 1439 | + $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? implode(",", $extra_fields['gd_file_types']) : ''; |
|
| 1440 | + $display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : ''; |
|
| 1441 | 1441 | |
| 1442 | - ?> |
|
| 1442 | + ?> |
|
| 1443 | 1443 | <?php /*?> <h5 class="geodir-form_title"> <?php echo $site_title; ?> |
| 1444 | 1444 | <?php if($file_image_limit!=0 && $file_image_limit==1 ){echo '<br /><small>('.__('You can upload').' '.$file_image_limit.' '.__('image with this package').')</small>';} ?> |
| 1445 | 1445 | <?php if($file_image_limit!=0 && $file_image_limit>1 ){echo '<br /><small>('.__('You can upload').' '.$file_image_limit.' '.__('images with this package').')</small>';} ?> |
| 1446 | 1446 | <?php if($file_image_limit==0){echo '<br /><small>('.__('You can upload unlimited images with this package').')</small>';} ?> |
| 1447 | 1447 | </h5> <?php */ |
| 1448 | - ?> |
|
| 1448 | + ?> |
|
| 1449 | 1449 | |
| 1450 | 1450 | <div id="<?php echo $name;?>_row" |
| 1451 | 1451 | class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
@@ -1453,7 +1453,7 @@ discard block |
||
| 1453 | 1453 | <div id="<?php echo $file_id; ?>dropbox" style="text-align:center;"> |
| 1454 | 1454 | <label |
| 1455 | 1455 | style="text-align:left; padding-top:10px;"><?php $site_title = __($site_title, 'geodirectory'); |
| 1456 | - echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label> |
|
| 1456 | + echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label> |
|
| 1457 | 1457 | <input class="geodir-custom-file-upload" field_type="file" type="hidden" |
| 1458 | 1458 | name="<?php echo $file_id; ?>" id="<?php echo $file_id; ?>" |
| 1459 | 1459 | value="<?php echo esc_attr($file_value); ?>"/> |
@@ -1465,17 +1465,17 @@ discard block |
||
| 1465 | 1465 | <?php } ?> |
| 1466 | 1466 | <input type="hidden" name="<?php echo $file_id; ?>totImg" id="<?php echo $file_id; ?>totImg" |
| 1467 | 1467 | value="<?php if (isset($file_totImg)) { |
| 1468 | - echo esc_attr($file_totImg); |
|
| 1469 | - } else { |
|
| 1470 | - echo '0'; |
|
| 1471 | - } ?>"/> |
|
| 1468 | + echo esc_attr($file_totImg); |
|
| 1469 | + } else { |
|
| 1470 | + echo '0'; |
|
| 1471 | + } ?>"/> |
|
| 1472 | 1472 | |
| 1473 | 1473 | <div style="float:left; width:55%;"> |
| 1474 | 1474 | <div |
| 1475 | 1475 | class="plupload-upload-uic hide-if-no-js <?php if ($file_multiple): ?>plupload-upload-uic-multiple<?php endif; ?>" |
| 1476 | 1476 | id="<?php echo $file_id; ?>plupload-upload-ui" style="float:left; width:30%;"> |
| 1477 | 1477 | <?php /*?><h4><?php _e('Drop files to upload');?></h4><br/><?php */ |
| 1478 | - ?> |
|
| 1478 | + ?> |
|
| 1479 | 1479 | <input id="<?php echo $file_id; ?>plupload-browse-button" type="button" |
| 1480 | 1480 | value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory') ); ?>" |
| 1481 | 1481 | class="geodir_button" style="margin-top:10px;"/> |
@@ -1494,7 +1494,7 @@ discard block |
||
| 1494 | 1494 | style=" clear:inherit; margin-top:0; margin-left:15px; padding-top:10px; float:left; width:50%;"> |
| 1495 | 1495 | </div> |
| 1496 | 1496 | <?php /*?><span id="upload-msg" ><?php _e('Please drag & drop the images to rearrange the order');?></span><?php */ |
| 1497 | - ?> |
|
| 1497 | + ?> |
|
| 1498 | 1498 | |
| 1499 | 1499 | <span id="<?php echo $file_id; ?>upload-error" style="display:none"></span> |
| 1500 | 1500 | |
@@ -1508,9 +1508,9 @@ discard block |
||
| 1508 | 1508 | |
| 1509 | 1509 | |
| 1510 | 1510 | <?php |
| 1511 | - $html = ob_get_clean(); |
|
| 1512 | - } |
|
| 1511 | + $html = ob_get_clean(); |
|
| 1512 | + } |
|
| 1513 | 1513 | |
| 1514 | - return $html; |
|
| 1514 | + return $html; |
|
| 1515 | 1515 | } |
| 1516 | 1516 | add_filter('geodir_custom_field_input_file','geodir_cfi_file',10,2); |
| 1517 | 1517 | \ No newline at end of file |