@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | function geodir_add_column_if_not_exist($db, $column, $column_attr = "VARCHAR( 255 ) NOT NULL") |
50 | 50 | { |
51 | 51 | global $wpdb; |
52 | - $result = 0;// no rows affected |
|
52 | + $result = 0; // no rows affected |
|
53 | 53 | if (!geodir_column_exist($db, $column)) { |
54 | 54 | if (!empty($db) && !empty($column)) |
55 | 55 | $result = $wpdb->query("ALTER TABLE `$db` ADD `$column` $column_attr"); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | { |
75 | 75 | global $wpdb, $geodir_post_custom_fields_cache; |
76 | 76 | |
77 | - $cache_stored = $post_type . '_' . $package_id . '_' . $default . '_' . $fields_location; |
|
77 | + $cache_stored = $post_type.'_'.$package_id.'_'.$default.'_'.$fields_location; |
|
78 | 78 | |
79 | 79 | if (array_key_exists($cache_stored, $geodir_post_custom_fields_cache)) { |
80 | 80 | return $geodir_post_custom_fields_cache[$cache_stored]; |
@@ -88,14 +88,14 @@ discard block |
||
88 | 88 | $default_query .= " and is_admin = '0' "; |
89 | 89 | |
90 | 90 | if ($fields_location == 'none') { |
91 | - } else{ |
|
92 | - $fields_location = esc_sql( $fields_location ); |
|
91 | + } else { |
|
92 | + $fields_location = esc_sql($fields_location); |
|
93 | 93 | $default_query .= " and show_in LIKE '%%[$fields_location]%%' "; |
94 | 94 | } |
95 | 95 | |
96 | 96 | $post_meta_info = $wpdb->get_results( |
97 | 97 | $wpdb->prepare( |
98 | - "select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where is_active = '1' and post_type = %s {$default_query} order by sort_order asc,admin_title asc", |
|
98 | + "select * from ".GEODIR_CUSTOM_FIELDS_TABLE." where is_active = '1' and post_type = %s {$default_query} order by sort_order asc,admin_title asc", |
|
99 | 99 | array($post_type) |
100 | 100 | ) |
101 | 101 | ); |
@@ -162,13 +162,13 @@ discard block |
||
162 | 162 | * @param string $field_ins_upd When set to "submit" displays form. |
163 | 163 | * @param string $field_type_key The key of the custom field. |
164 | 164 | */ |
165 | - function geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key ='') |
|
165 | + function geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key = '') |
|
166 | 166 | { |
167 | 167 | global $wpdb; |
168 | 168 | $cf = $result_str; |
169 | 169 | if (!is_object($cf)) { |
170 | 170 | |
171 | - $field_info = $wpdb->get_row($wpdb->prepare("select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d", array($cf))); |
|
171 | + $field_info = $wpdb->get_row($wpdb->prepare("select * from ".GEODIR_CUSTOM_FIELDS_TABLE." where id= %d", array($cf))); |
|
172 | 172 | |
173 | 173 | } else { |
174 | 174 | $field_info = $cf; |
@@ -202,14 +202,14 @@ discard block |
||
202 | 202 | if ($field_id != '') { |
203 | 203 | $cf = trim($field_id, '_'); |
204 | 204 | |
205 | - if ($field = $wpdb->get_row($wpdb->prepare("select htmlvar_name,post_type,field_type from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d", array($cf)))) { |
|
206 | - $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d ", array($cf))); |
|
205 | + if ($field = $wpdb->get_row($wpdb->prepare("select htmlvar_name,post_type,field_type from ".GEODIR_CUSTOM_FIELDS_TABLE." where id= %d", array($cf)))) { |
|
206 | + $wpdb->query($wpdb->prepare("delete from ".GEODIR_CUSTOM_FIELDS_TABLE." where id= %d ", array($cf))); |
|
207 | 207 | |
208 | 208 | $post_type = $field->post_type; |
209 | 209 | $htmlvar_name = $field->htmlvar_name; |
210 | 210 | |
211 | 211 | if ($post_type != '' && $htmlvar_name != '') { |
212 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE htmlvar_name=%s AND post_type=%s LIMIT 1", array($htmlvar_name, $post_type))); |
|
212 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE htmlvar_name=%s AND post_type=%s LIMIT 1", array($htmlvar_name, $post_type))); |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | /** |
@@ -223,18 +223,18 @@ discard block |
||
223 | 223 | do_action('geodir_after_custom_field_deleted', $cf, $field->htmlvar_name, $post_type); |
224 | 224 | |
225 | 225 | if ($field->field_type == 'address') { |
226 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_address`"); |
|
227 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_city`"); |
|
228 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_region`"); |
|
229 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_country`"); |
|
230 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_zip`"); |
|
231 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_latitude`"); |
|
232 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_longitude`"); |
|
233 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_mapview`"); |
|
234 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_mapzoom`"); |
|
226 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_address`"); |
|
227 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_city`"); |
|
228 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_region`"); |
|
229 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_country`"); |
|
230 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_zip`"); |
|
231 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_latitude`"); |
|
232 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_longitude`"); |
|
233 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_mapview`"); |
|
234 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_mapzoom`"); |
|
235 | 235 | } else { |
236 | 236 | if ($field->field_type != 'fieldset') { |
237 | - $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "`"); |
|
237 | + $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."`"); |
|
238 | 238 | } |
239 | 239 | } |
240 | 240 | |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | $result_str = isset($request_field['field_id']) ? trim($request_field['field_id']) : ''; |
306 | 306 | |
307 | 307 | // some servers fail if a POST value is VARCHAR so we change it. |
308 | - if(isset($request_field['data_type']) && $request_field['data_type']=='XVARCHAR'){ |
|
308 | + if (isset($request_field['data_type']) && $request_field['data_type'] == 'XVARCHAR') { |
|
309 | 309 | $request_field['data_type'] = 'VARCHAR'; |
310 | 310 | } |
311 | 311 | |
@@ -318,12 +318,12 @@ discard block |
||
318 | 318 | $post_type = $request_field['listing_type']; |
319 | 319 | |
320 | 320 | if ($request_field['field_type'] != 'address' && $request_field['field_type'] != 'taxonomy' && $request_field['field_type'] != 'fieldset') { |
321 | - $cehhtmlvar_name = 'geodir_' . $cehhtmlvar_name; |
|
321 | + $cehhtmlvar_name = 'geodir_'.$cehhtmlvar_name; |
|
322 | 322 | } |
323 | 323 | |
324 | 324 | $check_html_variable = $wpdb->get_var( |
325 | 325 | $wpdb->prepare( |
326 | - "select htmlvar_name from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id <> %d and htmlvar_name = %s and post_type = %s ", |
|
326 | + "select htmlvar_name from ".GEODIR_CUSTOM_FIELDS_TABLE." where id <> %d and htmlvar_name = %s and post_type = %s ", |
|
327 | 327 | array($cf, $cehhtmlvar_name, $post_type) |
328 | 328 | ) |
329 | 329 | ); |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | |
336 | 336 | $post_meta_info = $wpdb->get_row( |
337 | 337 | $wpdb->prepare( |
338 | - "select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id = %d", |
|
338 | + "select * from ".GEODIR_CUSTOM_FIELDS_TABLE." where id = %d", |
|
339 | 339 | array($cf) |
340 | 340 | ) |
341 | 341 | ); |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | if ($post_type == '') $post_type = 'gd_place'; |
354 | 354 | |
355 | 355 | |
356 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
356 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
357 | 357 | |
358 | 358 | $admin_title = $request_field['admin_title']; |
359 | 359 | $site_title = $request_field['site_title']; |
@@ -381,12 +381,12 @@ discard block |
||
381 | 381 | $for_admin_use = isset($request_field['for_admin_use']) ? $request_field['for_admin_use'] : ''; |
382 | 382 | |
383 | 383 | |
384 | - if(is_array($show_in)){ |
|
384 | + if (is_array($show_in)) { |
|
385 | 385 | $show_in = implode(",", $request_field['show_in']); |
386 | 386 | } |
387 | 387 | |
388 | 388 | if ($field_type != 'address' && $field_type != 'taxonomy' && $field_type != 'fieldset') { |
389 | - $htmlvar_name = 'geodir_' . $htmlvar_name; |
|
389 | + $htmlvar_name = 'geodir_'.$htmlvar_name; |
|
390 | 390 | } |
391 | 391 | |
392 | 392 | $option_values = ''; |
@@ -427,9 +427,9 @@ discard block |
||
427 | 427 | |
428 | 428 | if ($sort_order == '') { |
429 | 429 | |
430 | - $last_order = $wpdb->get_var("SELECT MAX(sort_order) as last_order FROM " . GEODIR_CUSTOM_FIELDS_TABLE); |
|
430 | + $last_order = $wpdb->get_var("SELECT MAX(sort_order) as last_order FROM ".GEODIR_CUSTOM_FIELDS_TABLE); |
|
431 | 431 | |
432 | - $sort_order = (int)$last_order + 1; |
|
432 | + $sort_order = (int) $last_order + 1; |
|
433 | 433 | } |
434 | 434 | |
435 | 435 | $default_value_add = ''; |
@@ -441,15 +441,15 @@ discard block |
||
441 | 441 | case 'address': |
442 | 442 | |
443 | 443 | if ($htmlvar_name != '') { |
444 | - $prefix = $htmlvar_name . '_'; |
|
444 | + $prefix = $htmlvar_name.'_'; |
|
445 | 445 | } |
446 | - $old_prefix = $old_html_variable . '_'; |
|
446 | + $old_prefix = $old_html_variable.'_'; |
|
447 | 447 | |
448 | 448 | |
449 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "address` `" . $prefix . "address` VARCHAR( 254 ) NULL"; |
|
449 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."address` `".$prefix."address` VARCHAR( 254 ) NULL"; |
|
450 | 450 | |
451 | 451 | if ($default_value != '') { |
452 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
452 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
453 | 453 | } |
454 | 454 | |
455 | 455 | $wpdb->query($meta_field_add); |
@@ -458,12 +458,12 @@ discard block |
||
458 | 458 | |
459 | 459 | if (isset($extra_fields['show_city']) && $extra_fields['show_city']) { |
460 | 460 | |
461 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "city'"); |
|
461 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."city'"); |
|
462 | 462 | if ($is_column) { |
463 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "city` `" . $prefix . "city` VARCHAR( 50 ) NULL"; |
|
463 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."city` `".$prefix."city` VARCHAR( 50 ) NULL"; |
|
464 | 464 | |
465 | 465 | if ($default_value != '') { |
466 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
466 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
467 | 467 | } |
468 | 468 | |
469 | 469 | $wpdb->query($meta_field_add); |
@@ -471,9 +471,9 @@ discard block |
||
471 | 471 | |
472 | 472 | $meta_field_add = "VARCHAR( 50 ) NULL"; |
473 | 473 | if ($default_value != '') { |
474 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
474 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
475 | 475 | } |
476 | - geodir_add_column_if_not_exist($detail_table, $prefix . "city", $meta_field_add); |
|
476 | + geodir_add_column_if_not_exist($detail_table, $prefix."city", $meta_field_add); |
|
477 | 477 | |
478 | 478 | } |
479 | 479 | |
@@ -483,36 +483,36 @@ discard block |
||
483 | 483 | |
484 | 484 | if (isset($extra_fields['show_region']) && $extra_fields['show_region']) { |
485 | 485 | |
486 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "region'"); |
|
486 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."region'"); |
|
487 | 487 | |
488 | 488 | if ($is_column) { |
489 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "region` `" . $prefix . "region` VARCHAR( 50 ) NULL"; |
|
489 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."region` `".$prefix."region` VARCHAR( 50 ) NULL"; |
|
490 | 490 | |
491 | 491 | if ($default_value != '') { |
492 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
492 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
493 | 493 | } |
494 | 494 | |
495 | 495 | $wpdb->query($meta_field_add); |
496 | 496 | } else { |
497 | 497 | $meta_field_add = "VARCHAR( 50 ) NULL"; |
498 | 498 | if ($default_value != '') { |
499 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
499 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
500 | 500 | } |
501 | 501 | |
502 | - geodir_add_column_if_not_exist($detail_table, $prefix . "region", $meta_field_add); |
|
502 | + geodir_add_column_if_not_exist($detail_table, $prefix."region", $meta_field_add); |
|
503 | 503 | } |
504 | 504 | |
505 | 505 | } |
506 | 506 | if (isset($extra_fields['show_country']) && $extra_fields['show_country']) { |
507 | 507 | |
508 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "country'"); |
|
508 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."country'"); |
|
509 | 509 | |
510 | 510 | if ($is_column) { |
511 | 511 | |
512 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "country` `" . $prefix . "country` VARCHAR( 50 ) NULL"; |
|
512 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."country` `".$prefix."country` VARCHAR( 50 ) NULL"; |
|
513 | 513 | |
514 | 514 | if ($default_value != '') { |
515 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
515 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
516 | 516 | } |
517 | 517 | |
518 | 518 | $wpdb->query($meta_field_add); |
@@ -520,24 +520,24 @@ discard block |
||
520 | 520 | |
521 | 521 | $meta_field_add = "VARCHAR( 50 ) NULL"; |
522 | 522 | if ($default_value != '') { |
523 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
523 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
524 | 524 | } |
525 | 525 | |
526 | - geodir_add_column_if_not_exist($detail_table, $prefix . "country", $meta_field_add); |
|
526 | + geodir_add_column_if_not_exist($detail_table, $prefix."country", $meta_field_add); |
|
527 | 527 | |
528 | 528 | } |
529 | 529 | |
530 | 530 | } |
531 | 531 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
532 | 532 | |
533 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "zip'"); |
|
533 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."zip'"); |
|
534 | 534 | |
535 | 535 | if ($is_column) { |
536 | 536 | |
537 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "zip` `" . $prefix . "zip` VARCHAR( 50 ) NULL"; |
|
537 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."zip` `".$prefix."zip` VARCHAR( 50 ) NULL"; |
|
538 | 538 | |
539 | 539 | if ($default_value != '') { |
540 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
540 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
541 | 541 | } |
542 | 542 | |
543 | 543 | $wpdb->query($meta_field_add); |
@@ -545,128 +545,128 @@ discard block |
||
545 | 545 | |
546 | 546 | $meta_field_add = "VARCHAR( 50 ) NULL"; |
547 | 547 | if ($default_value != '') { |
548 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
548 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
549 | 549 | } |
550 | 550 | |
551 | - geodir_add_column_if_not_exist($detail_table, $prefix . "zip", $meta_field_add); |
|
551 | + geodir_add_column_if_not_exist($detail_table, $prefix."zip", $meta_field_add); |
|
552 | 552 | |
553 | 553 | } |
554 | 554 | |
555 | 555 | } |
556 | 556 | if (isset($extra_fields['show_map']) && $extra_fields['show_map']) { |
557 | 557 | |
558 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "latitude'"); |
|
558 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."latitude'"); |
|
559 | 559 | if ($is_column) { |
560 | 560 | |
561 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "latitude` `" . $prefix . "latitude` VARCHAR( 20 ) NULL"; |
|
561 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."latitude` `".$prefix."latitude` VARCHAR( 20 ) NULL"; |
|
562 | 562 | |
563 | 563 | if ($default_value != '') { |
564 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
564 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
565 | 565 | } |
566 | 566 | |
567 | 567 | $wpdb->query($meta_field_add); |
568 | 568 | } else { |
569 | 569 | |
570 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latitude` VARCHAR( 20 ) NULL"; |
|
570 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."latitude` VARCHAR( 20 ) NULL"; |
|
571 | 571 | $meta_field_add = "VARCHAR( 20 ) NULL"; |
572 | 572 | if ($default_value != '') { |
573 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
573 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
574 | 574 | } |
575 | 575 | |
576 | - geodir_add_column_if_not_exist($detail_table, $prefix . "latitude", $meta_field_add); |
|
576 | + geodir_add_column_if_not_exist($detail_table, $prefix."latitude", $meta_field_add); |
|
577 | 577 | |
578 | 578 | } |
579 | 579 | |
580 | 580 | |
581 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "longitude'"); |
|
581 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."longitude'"); |
|
582 | 582 | |
583 | 583 | if ($is_column) { |
584 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "longitude` `" . $prefix . "longitude` VARCHAR( 20 ) NULL"; |
|
584 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."longitude` `".$prefix."longitude` VARCHAR( 20 ) NULL"; |
|
585 | 585 | |
586 | 586 | if ($default_value != '') { |
587 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
587 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
588 | 588 | } |
589 | 589 | |
590 | 590 | $wpdb->query($meta_field_add); |
591 | 591 | } else { |
592 | 592 | |
593 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "longitude` VARCHAR( 20 ) NULL"; |
|
593 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."longitude` VARCHAR( 20 ) NULL"; |
|
594 | 594 | $meta_field_add = "VARCHAR( 20 ) NULL"; |
595 | 595 | if ($default_value != '') { |
596 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
596 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
597 | 597 | } |
598 | 598 | |
599 | - geodir_add_column_if_not_exist($detail_table, $prefix . "longitude", $meta_field_add); |
|
599 | + geodir_add_column_if_not_exist($detail_table, $prefix."longitude", $meta_field_add); |
|
600 | 600 | } |
601 | 601 | |
602 | 602 | } |
603 | 603 | if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) { |
604 | 604 | |
605 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "mapview'"); |
|
605 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."mapview'"); |
|
606 | 606 | |
607 | 607 | if ($is_column) { |
608 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "mapview` `" . $prefix . "mapview` VARCHAR( 15 ) NULL"; |
|
608 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."mapview` `".$prefix."mapview` VARCHAR( 15 ) NULL"; |
|
609 | 609 | |
610 | 610 | if ($default_value != '') { |
611 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
611 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
612 | 612 | } |
613 | 613 | |
614 | 614 | $wpdb->query($meta_field_add); |
615 | 615 | } else { |
616 | 616 | |
617 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapview` VARCHAR( 15 ) NULL"; |
|
617 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."mapview` VARCHAR( 15 ) NULL"; |
|
618 | 618 | |
619 | 619 | $meta_field_add = "VARCHAR( 15 ) NULL"; |
620 | 620 | if ($default_value != '') { |
621 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
621 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
622 | 622 | } |
623 | 623 | |
624 | - geodir_add_column_if_not_exist($detail_table, $prefix . "mapview", $meta_field_add); |
|
624 | + geodir_add_column_if_not_exist($detail_table, $prefix."mapview", $meta_field_add); |
|
625 | 625 | } |
626 | 626 | |
627 | 627 | |
628 | 628 | } |
629 | 629 | if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) { |
630 | 630 | |
631 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "mapzoom'"); |
|
631 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."mapzoom'"); |
|
632 | 632 | if ($is_column) { |
633 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "mapzoom` `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL"; |
|
633 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."mapzoom` `".$prefix."mapzoom` VARCHAR( 3 ) NULL"; |
|
634 | 634 | |
635 | 635 | if ($default_value != '') { |
636 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
636 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
637 | 637 | } |
638 | 638 | |
639 | 639 | $wpdb->query($meta_field_add); |
640 | 640 | |
641 | 641 | } else { |
642 | 642 | |
643 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL"; |
|
643 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."mapzoom` VARCHAR( 3 ) NULL"; |
|
644 | 644 | |
645 | 645 | $meta_field_add = "VARCHAR( 3 ) NULL"; |
646 | 646 | if ($default_value != '') { |
647 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
647 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
648 | 648 | } |
649 | 649 | |
650 | - geodir_add_column_if_not_exist($detail_table, $prefix . "mapzoom", $meta_field_add); |
|
650 | + geodir_add_column_if_not_exist($detail_table, $prefix."mapzoom", $meta_field_add); |
|
651 | 651 | } |
652 | 652 | |
653 | 653 | } |
654 | 654 | // show lat lng |
655 | 655 | if (isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) { |
656 | - $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "latlng'"); |
|
656 | + $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."latlng'"); |
|
657 | 657 | |
658 | 658 | if ($is_column) { |
659 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "latlng` `" . $prefix . "latlng` VARCHAR( 3 ) NULL"; |
|
659 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."latlng` `".$prefix."latlng` VARCHAR( 3 ) NULL"; |
|
660 | 660 | $meta_field_add .= " DEFAULT '1'"; |
661 | 661 | |
662 | 662 | $wpdb->query($meta_field_add); |
663 | 663 | } else { |
664 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latlng` VARCHAR( 3 ) NULL"; |
|
664 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."latlng` VARCHAR( 3 ) NULL"; |
|
665 | 665 | |
666 | 666 | $meta_field_add = "VARCHAR( 3 ) NULL"; |
667 | 667 | $meta_field_add .= " DEFAULT '1'"; |
668 | 668 | |
669 | - geodir_add_column_if_not_exist($detail_table, $prefix . "latlng", $meta_field_add); |
|
669 | + geodir_add_column_if_not_exist($detail_table, $prefix."latlng", $meta_field_add); |
|
670 | 670 | } |
671 | 671 | |
672 | 672 | } |
@@ -675,13 +675,13 @@ discard block |
||
675 | 675 | break; |
676 | 676 | |
677 | 677 | case 'checkbox': |
678 | - $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` TINYINT(1) NOT NULL"; |
|
678 | + $default_value_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` TINYINT(1) NOT NULL"; |
|
679 | 679 | if ($default_value != '') { |
680 | - $default_value_add .= " DEFAULT '" . $default_value . "'"; |
|
680 | + $default_value_add .= " DEFAULT '".$default_value."'"; |
|
681 | 681 | } |
682 | 682 | |
683 | 683 | $alter_result = $wpdb->query($default_value_add); |
684 | - if ( $alter_result === false) { |
|
684 | + if ($alter_result === false) { |
|
685 | 685 | return __('Column change failed, you may have too many columns.', 'geodirectory'); |
686 | 686 | } |
687 | 687 | break; |
@@ -692,30 +692,30 @@ discard block |
||
692 | 692 | $op_size = '500'; |
693 | 693 | |
694 | 694 | // only make the field as big as it needs to be. |
695 | - if(isset($option_values) && $option_values && $field_type=='select'){ |
|
696 | - $option_values_arr = explode(',',$option_values); |
|
697 | - if(is_array($option_values_arr)){ |
|
695 | + if (isset($option_values) && $option_values && $field_type == 'select') { |
|
696 | + $option_values_arr = explode(',', $option_values); |
|
697 | + if (is_array($option_values_arr)) { |
|
698 | 698 | $op_max = 0; |
699 | - foreach($option_values_arr as $op_val){ |
|
700 | - if(strlen($op_val) && strlen($op_val)>$op_max){$op_max = strlen($op_val);} |
|
699 | + foreach ($option_values_arr as $op_val) { |
|
700 | + if (strlen($op_val) && strlen($op_val) > $op_max) {$op_max = strlen($op_val); } |
|
701 | 701 | } |
702 | - if($op_max){$op_size =$op_max; } |
|
702 | + if ($op_max) {$op_size = $op_max; } |
|
703 | 703 | } |
704 | - }elseif(isset($option_values) && $option_values && $field_type=='multiselect'){ |
|
705 | - if(strlen($option_values)){ |
|
706 | - $op_size = strlen($option_values); |
|
704 | + }elseif (isset($option_values) && $option_values && $field_type == 'multiselect') { |
|
705 | + if (strlen($option_values)) { |
|
706 | + $op_size = strlen($option_values); |
|
707 | 707 | } |
708 | 708 | } |
709 | 709 | |
710 | - $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "`VARCHAR( $op_size ) NULL"; |
|
710 | + $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."`VARCHAR( $op_size ) NULL"; |
|
711 | 711 | |
712 | 712 | if ($default_value != '') { |
713 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
713 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
714 | 714 | } |
715 | 715 | |
716 | 716 | $alter_result = $wpdb->query($meta_field_add); |
717 | - if($alter_result===false){ |
|
718 | - return __('Column change failed, you may have too many columns.','geodirectory'); |
|
717 | + if ($alter_result === false) { |
|
718 | + return __('Column change failed, you may have too many columns.', 'geodirectory'); |
|
719 | 719 | } |
720 | 720 | |
721 | 721 | if (isset($request_field['cat_display_type'])) |
@@ -732,9 +732,9 @@ discard block |
||
732 | 732 | case 'url': |
733 | 733 | case 'file': |
734 | 734 | |
735 | - $alter_result = $wpdb->query("ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` TEXT NULL"); |
|
736 | - if($alter_result===false){ |
|
737 | - return __('Column change failed, you may have too many columns.','geodirectory'); |
|
735 | + $alter_result = $wpdb->query("ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` TEXT NULL"); |
|
736 | + if ($alter_result === false) { |
|
737 | + return __('Column change failed, you may have too many columns.', 'geodirectory'); |
|
738 | 738 | } |
739 | 739 | if (isset($request_field['advanced_editor'])) |
740 | 740 | $extra_fields = $request_field['advanced_editor']; |
@@ -748,24 +748,24 @@ discard block |
||
748 | 748 | default: |
749 | 749 | if ($data_type != 'VARCHAR' && $data_type != '') { |
750 | 750 | if ($data_type == 'FLOAT' && $decimal_point > 0) { |
751 | - $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` DECIMAL(11, " . (int)$decimal_point . ") NULL"; |
|
751 | + $default_value_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` DECIMAL(11, ".(int) $decimal_point.") NULL"; |
|
752 | 752 | } else { |
753 | - $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` " . $data_type . " NULL"; |
|
753 | + $default_value_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` ".$data_type." NULL"; |
|
754 | 754 | } |
755 | 755 | |
756 | 756 | if (is_numeric($default_value) && $default_value != '') { |
757 | - $default_value_add .= " DEFAULT '" . $default_value . "'"; |
|
757 | + $default_value_add .= " DEFAULT '".$default_value."'"; |
|
758 | 758 | } |
759 | 759 | } else { |
760 | - $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` VARCHAR( 254 ) NULL"; |
|
760 | + $default_value_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` VARCHAR( 254 ) NULL"; |
|
761 | 761 | if ($default_value != '') { |
762 | - $default_value_add .= " DEFAULT '" . $default_value . "'"; |
|
762 | + $default_value_add .= " DEFAULT '".$default_value."'"; |
|
763 | 763 | } |
764 | 764 | } |
765 | 765 | |
766 | 766 | $alter_result = $wpdb->query($default_value_add); |
767 | - if($alter_result===false){ |
|
768 | - return __('Column change failed, you may have too many columns.','geodirectory'); |
|
767 | + if ($alter_result === false) { |
|
768 | + return __('Column change failed, you may have too many columns.', 'geodirectory'); |
|
769 | 769 | } |
770 | 770 | break; |
771 | 771 | endswitch; |
@@ -781,7 +781,7 @@ discard block |
||
781 | 781 | |
782 | 782 | $wpdb->prepare( |
783 | 783 | |
784 | - "update " . GEODIR_CUSTOM_FIELDS_TABLE . " set |
|
784 | + "update ".GEODIR_CUSTOM_FIELDS_TABLE." set |
|
785 | 785 | post_type = %s, |
786 | 786 | admin_title = %s, |
787 | 787 | site_title = %s, |
@@ -815,7 +815,7 @@ discard block |
||
815 | 815 | for_admin_use = %s |
816 | 816 | where id = %d", |
817 | 817 | |
818 | - array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_required, $required_msg, $css_class, $field_icon, $field_icon, $show_on_listing, $show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point,$validation_pattern,$validation_msg, $for_admin_use, $cf) |
|
818 | + array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_required, $required_msg, $css_class, $field_icon, $field_icon, $show_on_listing, $show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point, $validation_pattern, $validation_msg, $for_admin_use, $cf) |
|
819 | 819 | ) |
820 | 820 | |
821 | 821 | ); |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | |
826 | 826 | $wpdb->query( |
827 | 827 | $wpdb->prepare( |
828 | - "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set |
|
828 | + "update ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set |
|
829 | 829 | site_title=%s |
830 | 830 | where post_type = %s and htmlvar_name = %s", |
831 | 831 | array($site_title, $post_type, $htmlvar_name) |
@@ -834,7 +834,7 @@ discard block |
||
834 | 834 | |
835 | 835 | |
836 | 836 | if ($cat_sort == '') |
837 | - $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type = %s and htmlvar_name = %s", array($post_type, $htmlvar_name))); |
|
837 | + $wpdb->query($wpdb->prepare("delete from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where post_type = %s and htmlvar_name = %s", array($post_type, $htmlvar_name))); |
|
838 | 838 | |
839 | 839 | |
840 | 840 | /** |
@@ -854,7 +854,7 @@ discard block |
||
854 | 854 | $data_type = ''; |
855 | 855 | |
856 | 856 | if ($htmlvar_name != '') { |
857 | - $prefix = $htmlvar_name . '_'; |
|
857 | + $prefix = $htmlvar_name.'_'; |
|
858 | 858 | } |
859 | 859 | $old_prefix = $old_html_variable; |
860 | 860 | |
@@ -862,109 +862,109 @@ discard block |
||
862 | 862 | |
863 | 863 | $meta_field_add = "VARCHAR( 254 ) NULL"; |
864 | 864 | if ($default_value != '') { |
865 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
865 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
866 | 866 | } |
867 | 867 | |
868 | - geodir_add_column_if_not_exist($detail_table, $prefix . "address", $meta_field_add); |
|
868 | + geodir_add_column_if_not_exist($detail_table, $prefix."address", $meta_field_add); |
|
869 | 869 | //$wpdb->query($meta_field_add); |
870 | 870 | |
871 | 871 | |
872 | 872 | if (!empty($extra_fields)) { |
873 | 873 | |
874 | 874 | if (isset($extra_fields['show_city']) && $extra_fields['show_city']) { |
875 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "city` VARCHAR( 30 ) NULL"; |
|
875 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."city` VARCHAR( 30 ) NULL"; |
|
876 | 876 | $meta_field_add = "VARCHAR( 50 ) NULL"; |
877 | 877 | if ($default_value != '') { |
878 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
878 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
879 | 879 | } |
880 | 880 | |
881 | - geodir_add_column_if_not_exist($detail_table, $prefix . "city", $meta_field_add); |
|
881 | + geodir_add_column_if_not_exist($detail_table, $prefix."city", $meta_field_add); |
|
882 | 882 | //$wpdb->query($meta_field_add); |
883 | 883 | } |
884 | 884 | if (isset($extra_fields['show_region']) && $extra_fields['show_region']) { |
885 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "region` VARCHAR( 30 ) NULL"; |
|
885 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."region` VARCHAR( 30 ) NULL"; |
|
886 | 886 | $meta_field_add = "VARCHAR( 50 ) NULL"; |
887 | 887 | if ($default_value != '') { |
888 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
888 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
889 | 889 | } |
890 | 890 | |
891 | - geodir_add_column_if_not_exist($detail_table, $prefix . "region", $meta_field_add); |
|
891 | + geodir_add_column_if_not_exist($detail_table, $prefix."region", $meta_field_add); |
|
892 | 892 | //$wpdb->query($meta_field_add); |
893 | 893 | } |
894 | 894 | if (isset($extra_fields['show_country']) && $extra_fields['show_country']) { |
895 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "country` VARCHAR( 30 ) NULL"; |
|
895 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."country` VARCHAR( 30 ) NULL"; |
|
896 | 896 | |
897 | 897 | $meta_field_add = "VARCHAR( 30 ) NULL"; |
898 | 898 | if ($default_value != '') { |
899 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
899 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
900 | 900 | } |
901 | 901 | |
902 | - geodir_add_column_if_not_exist($detail_table, $prefix . "country", $meta_field_add); |
|
902 | + geodir_add_column_if_not_exist($detail_table, $prefix."country", $meta_field_add); |
|
903 | 903 | //$wpdb->query($meta_field_add); |
904 | 904 | } |
905 | 905 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
906 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "zip` VARCHAR( 15 ) NULL"; |
|
906 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."zip` VARCHAR( 15 ) NULL"; |
|
907 | 907 | $meta_field_add = "VARCHAR( 15 ) NULL"; |
908 | 908 | if ($default_value != '') { |
909 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
909 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
910 | 910 | } |
911 | 911 | |
912 | - geodir_add_column_if_not_exist($detail_table, $prefix . "zip", $meta_field_add); |
|
912 | + geodir_add_column_if_not_exist($detail_table, $prefix."zip", $meta_field_add); |
|
913 | 913 | //$wpdb->query($meta_field_add); |
914 | 914 | } |
915 | 915 | if (isset($extra_fields['show_map']) && $extra_fields['show_map']) { |
916 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latitude` VARCHAR( 20 ) NULL"; |
|
916 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."latitude` VARCHAR( 20 ) NULL"; |
|
917 | 917 | $meta_field_add = "VARCHAR( 20 ) NULL"; |
918 | 918 | if ($default_value != '') { |
919 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
919 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
920 | 920 | } |
921 | 921 | |
922 | - geodir_add_column_if_not_exist($detail_table, $prefix . "latitude", $meta_field_add); |
|
922 | + geodir_add_column_if_not_exist($detail_table, $prefix."latitude", $meta_field_add); |
|
923 | 923 | //$wpdb->query($meta_field_add); |
924 | 924 | |
925 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "longitude` VARCHAR( 20 ) NULL"; |
|
925 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."longitude` VARCHAR( 20 ) NULL"; |
|
926 | 926 | |
927 | 927 | $meta_field_add = "VARCHAR( 20 ) NULL"; |
928 | 928 | if ($default_value != '') { |
929 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
929 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
930 | 930 | } |
931 | 931 | |
932 | - geodir_add_column_if_not_exist($detail_table, $prefix . "longitude", $meta_field_add); |
|
932 | + geodir_add_column_if_not_exist($detail_table, $prefix."longitude", $meta_field_add); |
|
933 | 933 | |
934 | 934 | //$wpdb->query($meta_field_add); |
935 | 935 | } |
936 | 936 | if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) { |
937 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapview` VARCHAR( 15 ) NULL"; |
|
937 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."mapview` VARCHAR( 15 ) NULL"; |
|
938 | 938 | |
939 | 939 | $meta_field_add = "VARCHAR( 15 ) NULL"; |
940 | 940 | if ($default_value != '') { |
941 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
941 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
942 | 942 | } |
943 | 943 | |
944 | - geodir_add_column_if_not_exist($detail_table, $prefix . "mapview", $meta_field_add); |
|
944 | + geodir_add_column_if_not_exist($detail_table, $prefix."mapview", $meta_field_add); |
|
945 | 945 | |
946 | 946 | //$wpdb->query($meta_field_add); |
947 | 947 | } |
948 | 948 | if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) { |
949 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL"; |
|
949 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."mapzoom` VARCHAR( 3 ) NULL"; |
|
950 | 950 | |
951 | 951 | $meta_field_add = "VARCHAR( 3 ) NULL"; |
952 | 952 | if ($default_value != '') { |
953 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
953 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
954 | 954 | } |
955 | 955 | |
956 | - geodir_add_column_if_not_exist($detail_table, $prefix . "mapzoom", $meta_field_add); |
|
956 | + geodir_add_column_if_not_exist($detail_table, $prefix."mapzoom", $meta_field_add); |
|
957 | 957 | |
958 | 958 | //$wpdb->query($meta_field_add); |
959 | 959 | } |
960 | 960 | // show lat lng |
961 | 961 | if (isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) { |
962 | - $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latlng` VARCHAR( 3 ) NULL"; |
|
962 | + $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."latlng` VARCHAR( 3 ) NULL"; |
|
963 | 963 | |
964 | 964 | $meta_field_add = "VARCHAR( 3 ) NULL"; |
965 | 965 | $meta_field_add .= " DEFAULT '1'"; |
966 | 966 | |
967 | - geodir_add_column_if_not_exist($detail_table, $prefix . "latlng", $meta_field_add); |
|
967 | + geodir_add_column_if_not_exist($detail_table, $prefix."latlng", $meta_field_add); |
|
968 | 968 | //$wpdb->query($meta_field_add); |
969 | 969 | } |
970 | 970 | } |
@@ -974,8 +974,8 @@ discard block |
||
974 | 974 | case 'checkbox': |
975 | 975 | $data_type = 'TINYINT'; |
976 | 976 | |
977 | - $meta_field_add = $data_type . "( 1 ) NOT NULL "; |
|
978 | - if ((int)$default_value === 1) { |
|
977 | + $meta_field_add = $data_type."( 1 ) NOT NULL "; |
|
978 | + if ((int) $default_value === 1) { |
|
979 | 979 | $meta_field_add .= " DEFAULT '1'"; |
980 | 980 | } |
981 | 981 | |
@@ -1008,7 +1008,7 @@ discard block |
||
1008 | 1008 | } |
1009 | 1009 | } elseif (isset($option_values) && $option_values && $field_type == 'multiselect') { |
1010 | 1010 | if (strlen($option_values)) { |
1011 | - $op_size = strlen($option_values); |
|
1011 | + $op_size = strlen($option_values); |
|
1012 | 1012 | } |
1013 | 1013 | |
1014 | 1014 | if (isset($request_field['multi_display_type'])) { |
@@ -1016,9 +1016,9 @@ discard block |
||
1016 | 1016 | } |
1017 | 1017 | } |
1018 | 1018 | |
1019 | - $meta_field_add = $data_type . "( $op_size ) NULL "; |
|
1019 | + $meta_field_add = $data_type."( $op_size ) NULL "; |
|
1020 | 1020 | if ($default_value != '') { |
1021 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
1021 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
1022 | 1022 | } |
1023 | 1023 | |
1024 | 1024 | $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add); |
@@ -1033,9 +1033,9 @@ discard block |
||
1033 | 1033 | |
1034 | 1034 | $data_type = 'TEXT'; |
1035 | 1035 | |
1036 | - $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL "; |
|
1036 | + $default_value_add = " `".$htmlvar_name."` ".$data_type." NULL "; |
|
1037 | 1037 | |
1038 | - $meta_field_add = $data_type . " NULL "; |
|
1038 | + $meta_field_add = $data_type." NULL "; |
|
1039 | 1039 | /*if($default_value != '') |
1040 | 1040 | { $meta_field_add .= " DEFAULT '".$default_value."'"; }*/ |
1041 | 1041 | |
@@ -1050,9 +1050,9 @@ discard block |
||
1050 | 1050 | |
1051 | 1051 | $data_type = 'DATE'; |
1052 | 1052 | |
1053 | - $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL "; |
|
1053 | + $default_value_add = " `".$htmlvar_name."` ".$data_type." NULL "; |
|
1054 | 1054 | |
1055 | - $meta_field_add = $data_type . " NULL "; |
|
1055 | + $meta_field_add = $data_type." NULL "; |
|
1056 | 1056 | |
1057 | 1057 | $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add); |
1058 | 1058 | if ($add_result === false) { |
@@ -1065,9 +1065,9 @@ discard block |
||
1065 | 1065 | |
1066 | 1066 | $data_type = 'TIME'; |
1067 | 1067 | |
1068 | - $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL "; |
|
1068 | + $default_value_add = " `".$htmlvar_name."` ".$data_type." NULL "; |
|
1069 | 1069 | |
1070 | - $meta_field_add = $data_type . " NULL "; |
|
1070 | + $meta_field_add = $data_type." NULL "; |
|
1071 | 1071 | |
1072 | 1072 | $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add); |
1073 | 1073 | if ($add_result === false) { |
@@ -1079,22 +1079,22 @@ discard block |
||
1079 | 1079 | default: |
1080 | 1080 | |
1081 | 1081 | if ($data_type != 'VARCHAR' && $data_type != '') { |
1082 | - $meta_field_add = $data_type . " NULL "; |
|
1082 | + $meta_field_add = $data_type." NULL "; |
|
1083 | 1083 | |
1084 | 1084 | if ($data_type == 'FLOAT' && $decimal_point > 0) { |
1085 | - $meta_field_add = "DECIMAL(11, " . (int)$decimal_point . ") NULL "; |
|
1085 | + $meta_field_add = "DECIMAL(11, ".(int) $decimal_point.") NULL "; |
|
1086 | 1086 | } |
1087 | 1087 | |
1088 | 1088 | if (is_numeric($default_value) && $default_value != '') { |
1089 | - $default_value_add .= " DEFAULT '" . $default_value . "'"; |
|
1090 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
1089 | + $default_value_add .= " DEFAULT '".$default_value."'"; |
|
1090 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
1091 | 1091 | } |
1092 | 1092 | } else { |
1093 | 1093 | $meta_field_add = " VARCHAR( 254 ) NULL "; |
1094 | 1094 | |
1095 | 1095 | if ($default_value != '') { |
1096 | - $default_value_add .= " DEFAULT '" . $default_value . "'"; |
|
1097 | - $meta_field_add .= " DEFAULT '" . $default_value . "'"; |
|
1096 | + $default_value_add .= " DEFAULT '".$default_value."'"; |
|
1097 | + $meta_field_add .= " DEFAULT '".$default_value."'"; |
|
1098 | 1098 | } |
1099 | 1099 | } |
1100 | 1100 | |
@@ -1116,7 +1116,7 @@ discard block |
||
1116 | 1116 | |
1117 | 1117 | $wpdb->prepare( |
1118 | 1118 | |
1119 | - "insert into " . GEODIR_CUSTOM_FIELDS_TABLE . " set |
|
1119 | + "insert into ".GEODIR_CUSTOM_FIELDS_TABLE." set |
|
1120 | 1120 | post_type = %s, |
1121 | 1121 | admin_title = %s, |
1122 | 1122 | site_title = %s, |
@@ -1149,7 +1149,7 @@ discard block |
||
1149 | 1149 | validation_msg = %s, |
1150 | 1150 | for_admin_use = %s ", |
1151 | 1151 | |
1152 | - array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_admin, $is_required, $required_msg, $css_class, $field_icon, $show_on_listing,$show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point,$validation_pattern,$validation_msg, $for_admin_use) |
|
1152 | + array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_admin, $is_required, $required_msg, $css_class, $field_icon, $show_on_listing, $show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point, $validation_pattern, $validation_msg, $for_admin_use) |
|
1153 | 1153 | |
1154 | 1154 | ) |
1155 | 1155 | |
@@ -1161,7 +1161,7 @@ discard block |
||
1161 | 1161 | |
1162 | 1162 | } |
1163 | 1163 | |
1164 | - return (int)$lastid; |
|
1164 | + return (int) $lastid; |
|
1165 | 1165 | |
1166 | 1166 | |
1167 | 1167 | } else { |
@@ -1194,7 +1194,7 @@ discard block |
||
1194 | 1194 | |
1195 | 1195 | $post_meta_info = $wpdb->query( |
1196 | 1196 | $wpdb->prepare( |
1197 | - "update " . GEODIR_CUSTOM_FIELDS_TABLE . " set |
|
1197 | + "update ".GEODIR_CUSTOM_FIELDS_TABLE." set |
|
1198 | 1198 | sort_order=%d |
1199 | 1199 | where id= %d", |
1200 | 1200 | array($count, $cf) |
@@ -1216,7 +1216,7 @@ discard block |
||
1216 | 1216 | global $post; |
1217 | 1217 | |
1218 | 1218 | if (isset($_REQUEST['post'])) { |
1219 | - $_REQUEST['pid'] = (int)$_REQUEST['post']; |
|
1219 | + $_REQUEST['pid'] = (int) $_REQUEST['post']; |
|
1220 | 1220 | } |
1221 | 1221 | } |
1222 | 1222 | |
@@ -1239,7 +1239,7 @@ discard block |
||
1239 | 1239 | * @param mixed $value Custom field value. |
1240 | 1240 | * @param array $cf Custom field info. |
1241 | 1241 | */ |
1242 | - return apply_filters( 'geodir_get_cf_value', $value, $cf ); |
|
1242 | + return apply_filters('geodir_get_cf_value', $value, $cf); |
|
1243 | 1243 | } |
1244 | 1244 | |
1245 | 1245 | /** |
@@ -1265,16 +1265,16 @@ discard block |
||
1265 | 1265 | $custom_fields = geodir_post_custom_fields($package_id, $default, $post_type); |
1266 | 1266 | |
1267 | 1267 | foreach ($custom_fields as $key => $val) { |
1268 | - if(isset($val['extra_fields'])){$extra_fields = $val['extra_fields'];} |
|
1268 | + if (isset($val['extra_fields'])) {$extra_fields = $val['extra_fields']; } |
|
1269 | 1269 | $val = stripslashes_deep($val); // strip slashes from labels |
1270 | - if(isset($val['extra_fields'])){$val['extra_fields'] = $extra_fields;} |
|
1270 | + if (isset($val['extra_fields'])) {$val['extra_fields'] = $extra_fields; } |
|
1271 | 1271 | |
1272 | 1272 | $name = $val['name']; |
1273 | 1273 | $type = $val['type']; |
1274 | 1274 | $is_default = $val['is_default']; |
1275 | 1275 | |
1276 | 1276 | /* field available to site admin only for edit */ |
1277 | - $for_admin_use = isset($val['for_admin_use']) && (int)$val['for_admin_use'] == 1 ? true : false; |
|
1277 | + $for_admin_use = isset($val['for_admin_use']) && (int) $val['for_admin_use'] == 1 ? true : false; |
|
1278 | 1278 | if ($for_admin_use && !is_super_admin()) { |
1279 | 1279 | continue; |
1280 | 1280 | } |
@@ -1299,11 +1299,11 @@ discard block |
||
1299 | 1299 | * @param array $val The settings array for the field. {@see geodir_custom_field_save()}. |
1300 | 1300 | * @see 'geodir_after_custom_form_field_$name' |
1301 | 1301 | */ |
1302 | - do_action('geodir_before_custom_form_field_' . $name, $listing_type, $package_id, $val); |
|
1302 | + do_action('geodir_before_custom_form_field_'.$name, $listing_type, $package_id, $val); |
|
1303 | 1303 | |
1304 | 1304 | |
1305 | 1305 | $custom_field = $val; |
1306 | - $html =''; |
|
1306 | + $html = ''; |
|
1307 | 1307 | /** |
1308 | 1308 | * Filter the output for custom fields. |
1309 | 1309 | * |
@@ -1312,7 +1312,7 @@ discard block |
||
1312 | 1312 | * @param string $html The html to be filtered (blank). |
1313 | 1313 | * @param array $custom_field The custom field array values. |
1314 | 1314 | */ |
1315 | - echo apply_filters("geodir_custom_field_input_{$type}",$html,$custom_field); |
|
1315 | + echo apply_filters("geodir_custom_field_input_{$type}", $html, $custom_field); |
|
1316 | 1316 | |
1317 | 1317 | |
1318 | 1318 | |
@@ -1327,7 +1327,7 @@ discard block |
||
1327 | 1327 | * @param array $val The settings array for the field. {@see geodir_custom_field_save()}. |
1328 | 1328 | * @see 'geodir_before_custom_form_field_$name' |
1329 | 1329 | */ |
1330 | - do_action('geodir_after_custom_form_field_' . $name, $listing_type, $package_id, $val); |
|
1330 | + do_action('geodir_after_custom_form_field_'.$name, $listing_type, $package_id, $val); |
|
1331 | 1331 | |
1332 | 1332 | } |
1333 | 1333 | |
@@ -1353,9 +1353,9 @@ discard block |
||
1353 | 1353 | |
1354 | 1354 | $filter = $wpdb->get_row( |
1355 | 1355 | $wpdb->prepare( |
1356 | - "SELECT * FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND " . $key . "='" . $value . "'", |
|
1356 | + "SELECT * FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND ".$key."='".$value."'", |
|
1357 | 1357 | array($geodir_post_type) |
1358 | - ),ARRAY_A |
|
1358 | + ), ARRAY_A |
|
1359 | 1359 | ); |
1360 | 1360 | |
1361 | 1361 | if ($filter) { |
@@ -1368,14 +1368,14 @@ discard block |
||
1368 | 1368 | } |
1369 | 1369 | |
1370 | 1370 | |
1371 | -function geodir_field_icon_proccess($cf){ |
|
1371 | +function geodir_field_icon_proccess($cf) { |
|
1372 | 1372 | |
1373 | 1373 | |
1374 | 1374 | if (strpos($cf['field_icon'], 'http') !== false) { |
1375 | - $field_icon = ' background: url(' . $cf['field_icon'] . ') no-repeat left center;background-size:18px 18px;padding-left: 21px;'; |
|
1375 | + $field_icon = ' background: url('.$cf['field_icon'].') no-repeat left center;background-size:18px 18px;padding-left: 21px;'; |
|
1376 | 1376 | } elseif (strpos($cf['field_icon'], 'fa fa-') !== false) { |
1377 | - $field_icon = '<i class="' . $cf['field_icon'] . '"></i>'; |
|
1378 | - }else{ |
|
1377 | + $field_icon = '<i class="'.$cf['field_icon'].'"></i>'; |
|
1378 | + } else { |
|
1379 | 1379 | $field_icon = $cf['field_icon']; |
1380 | 1380 | } |
1381 | 1381 | |
@@ -1401,7 +1401,7 @@ discard block |
||
1401 | 1401 | |
1402 | 1402 | $package_info = array(); |
1403 | 1403 | |
1404 | - if(!$preview && !isset($post->post_id)){ |
|
1404 | + if (!$preview && !isset($post->post_id)) { |
|
1405 | 1405 | $post = geodir_get_post_info($post->ID); |
1406 | 1406 | } |
1407 | 1407 | |
@@ -1422,14 +1422,14 @@ discard block |
||
1422 | 1422 | |
1423 | 1423 | |
1424 | 1424 | foreach ($fields_info as $type) { |
1425 | - if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];} |
|
1425 | + if (isset($type['extra_fields'])) {$extra_fields = $type['extra_fields']; } |
|
1426 | 1426 | $type = stripslashes_deep($type); // strip slashes |
1427 | - if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;} |
|
1427 | + if (isset($type['extra_fields'])) {$type['extra_fields'] = $extra_fields; } |
|
1428 | 1428 | $html = ''; |
1429 | 1429 | $field_icon = geodir_field_icon_proccess($type); |
1430 | 1430 | $filed_type = $type['type']; |
1431 | 1431 | $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : ''; |
1432 | - if($html_var=='post'){$html_var='post_address';} |
|
1432 | + if ($html_var == 'post') {$html_var = 'post_address'; } |
|
1433 | 1433 | |
1434 | 1434 | /** |
1435 | 1435 | * Filter the output for custom fields. |
@@ -1440,7 +1440,7 @@ discard block |
||
1440 | 1440 | * @param string $fields_location The location the field is to be show. |
1441 | 1441 | * @param array $type The array of field values. |
1442 | 1442 | */ |
1443 | - $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type); |
|
1443 | + $html = apply_filters("geodir_custom_field_output_{$filed_type}", $html, $fields_location, $type); |
|
1444 | 1444 | |
1445 | 1445 | $variables_array = array(); |
1446 | 1446 | |
@@ -1500,7 +1500,7 @@ discard block |
||
1500 | 1500 | * @param string $fields_location The location the fields are being output. |
1501 | 1501 | * @since 1.6.9 |
1502 | 1502 | */ |
1503 | - return apply_filters('geodir_show_listing_info',$html,$fields_location); |
|
1503 | + return apply_filters('geodir_show_listing_info', $html, $fields_location); |
|
1504 | 1504 | |
1505 | 1505 | } |
1506 | 1506 | } |
@@ -1575,7 +1575,7 @@ discard block |
||
1575 | 1575 | |
1576 | 1576 | $post_type = get_post_type($post_id); |
1577 | 1577 | //echo $field_id; exit; |
1578 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1578 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1579 | 1579 | |
1580 | 1580 | $postcurr_images = array(); |
1581 | 1581 | $postcurr_images = geodir_get_post_meta($post_id, $field_id, true); |
@@ -1594,13 +1594,13 @@ discard block |
||
1594 | 1594 | $geodir_uploadurl = $uploads['url']; |
1595 | 1595 | $sub_dir = $uploads['subdir']; |
1596 | 1596 | |
1597 | - $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'] : ''; |
|
1597 | + $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'] : ''; |
|
1598 | 1598 | |
1599 | 1599 | for ($m = 0; $m < count($post_image); $m++) { |
1600 | 1600 | |
1601 | 1601 | /* --------- start ------- */ |
1602 | 1602 | |
1603 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM " . $table . " WHERE $field_id = %s AND post_id = %d", array($post_image[$m], $post_id)))) { |
|
1603 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM ".$table." WHERE $field_id = %s AND post_id = %d", array($post_image[$m], $post_id)))) { |
|
1604 | 1604 | |
1605 | 1605 | |
1606 | 1606 | $curr_img_url = $post_image[$m]; |
@@ -1626,24 +1626,24 @@ discard block |
||
1626 | 1626 | //$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/octet-stream', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain'); |
1627 | 1627 | |
1628 | 1628 | if (!function_exists('wp_handle_upload')) |
1629 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
1629 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
1630 | 1630 | |
1631 | 1631 | if (!is_dir($geodir_uploadpath)) |
1632 | 1632 | mkdir($geodir_uploadpath); |
1633 | 1633 | |
1634 | - $new_name = $post_id . '_' . $field_id . '_' . $img_name_arr[0] . '.' . $img_name_arr[1]; |
|
1634 | + $new_name = $post_id.'_'.$field_id.'_'.$img_name_arr[0].'.'.$img_name_arr[1]; |
|
1635 | 1635 | $explode_sub_dir = explode("/", $sub_dir); |
1636 | 1636 | if ($curr_img_dir == end($explode_sub_dir)) { |
1637 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
1638 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
1637 | + $img_path = $geodir_uploadpath.'/'.$filename; |
|
1638 | + $img_url = $geodir_uploadurl.'/'.$filename; |
|
1639 | 1639 | } else { |
1640 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1641 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1640 | + $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1641 | + $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1642 | 1642 | } |
1643 | 1643 | |
1644 | 1644 | $uploaded_file = ''; |
1645 | 1645 | if (file_exists($img_path)) |
1646 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
1646 | + $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name); |
|
1647 | 1647 | |
1648 | 1648 | if ($curr_img_dir != $geodir_uploaddir) { |
1649 | 1649 | if (file_exists($img_path)) |
@@ -1651,7 +1651,7 @@ discard block |
||
1651 | 1651 | } |
1652 | 1652 | |
1653 | 1653 | if (!empty($uploaded_file)) |
1654 | - $file_urls = $geodir_uploadurl . '/' . $new_name; |
|
1654 | + $file_urls = $geodir_uploadurl.'/'.$new_name; |
|
1655 | 1655 | |
1656 | 1656 | } else { |
1657 | 1657 | $file_urls = $post_image[$m]; |
@@ -1665,8 +1665,8 @@ discard block |
||
1665 | 1665 | if (!empty($postcurr_images)) { |
1666 | 1666 | |
1667 | 1667 | if ($file_urls != $postcurr_images) { |
1668 | - $invalid_files[] = (object)array('src' => $postcurr_images); |
|
1669 | - $invalid_files = (object)$invalid_files; |
|
1668 | + $invalid_files[] = (object) array('src' => $postcurr_images); |
|
1669 | + $invalid_files = (object) $invalid_files; |
|
1670 | 1670 | } |
1671 | 1671 | } |
1672 | 1672 | |
@@ -1718,9 +1718,9 @@ discard block |
||
1718 | 1718 | function geodir_upload_dir($upload) |
1719 | 1719 | { |
1720 | 1720 | global $current_user; |
1721 | - $upload['subdir'] = $upload['subdir'] . '/temp_' . $current_user->data->ID; |
|
1722 | - $upload['path'] = $upload['basedir'] . $upload['subdir']; |
|
1723 | - $upload['url'] = $upload['baseurl'] . $upload['subdir']; |
|
1721 | + $upload['subdir'] = $upload['subdir'].'/temp_'.$current_user->data->ID; |
|
1722 | + $upload['path'] = $upload['basedir'].$upload['subdir']; |
|
1723 | + $upload['url'] = $upload['baseurl'].$upload['subdir']; |
|
1724 | 1724 | return $upload; |
1725 | 1725 | } |
1726 | 1726 | |
@@ -1735,20 +1735,20 @@ discard block |
||
1735 | 1735 | // check ajax nonce |
1736 | 1736 | $imgid = $_POST["imgid"]; |
1737 | 1737 | |
1738 | - check_ajax_referer($imgid . 'pluploadan'); |
|
1738 | + check_ajax_referer($imgid.'pluploadan'); |
|
1739 | 1739 | |
1740 | 1740 | // handle custom file uploaddir |
1741 | 1741 | add_filter('upload_dir', 'geodir_upload_dir'); |
1742 | 1742 | |
1743 | 1743 | // change file orientation if needed |
1744 | - $fixed_file = geodir_exif($_FILES[$imgid . 'async-upload']); |
|
1744 | + $fixed_file = geodir_exif($_FILES[$imgid.'async-upload']); |
|
1745 | 1745 | |
1746 | 1746 | // handle file upload |
1747 | 1747 | $status = wp_handle_upload($fixed_file, array('test_form' => true, 'action' => 'plupload_action')); |
1748 | 1748 | // remove handle custom file uploaddir |
1749 | 1749 | remove_filter('upload_dir', 'geodir_upload_dir'); |
1750 | 1750 | |
1751 | - if(!isset($status['url']) && isset($status['error'])){ |
|
1751 | + if (!isset($status['url']) && isset($status['error'])) { |
|
1752 | 1752 | print_r($status); |
1753 | 1753 | } |
1754 | 1754 | |
@@ -1778,9 +1778,9 @@ discard block |
||
1778 | 1778 | |
1779 | 1779 | $post_type = get_post_type($post_id); |
1780 | 1780 | |
1781 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1781 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1782 | 1782 | |
1783 | - $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_video FROM " . $table . " WHERE post_id=%d", array($post_id))); |
|
1783 | + $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_video FROM ".$table." WHERE post_id=%d", array($post_id))); |
|
1784 | 1784 | |
1785 | 1785 | if ($results) { |
1786 | 1786 | return $results[0]->geodir_video; |
@@ -1804,9 +1804,9 @@ discard block |
||
1804 | 1804 | |
1805 | 1805 | $post_type = get_post_type($post_id); |
1806 | 1806 | |
1807 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1807 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1808 | 1808 | |
1809 | - $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_special_offers FROM " . $table . " WHERE post_id=%d", array($post_id))); |
|
1809 | + $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_special_offers FROM ".$table." WHERE post_id=%d", array($post_id))); |
|
1810 | 1810 | |
1811 | 1811 | if ($results) { |
1812 | 1812 | return $results[0]->geodir_special_offers; |
@@ -1824,12 +1824,12 @@ discard block |
||
1824 | 1824 | */ |
1825 | 1825 | function geodir_max_upload_size() |
1826 | 1826 | { |
1827 | - $max_filesize = (float)get_option('geodir_upload_max_filesize', 2); |
|
1827 | + $max_filesize = (float) get_option('geodir_upload_max_filesize', 2); |
|
1828 | 1828 | |
1829 | 1829 | if ($max_filesize > 0 && $max_filesize < 1) { |
1830 | - $max_filesize = (int)($max_filesize * 1024) . 'kb'; |
|
1830 | + $max_filesize = (int) ($max_filesize * 1024).'kb'; |
|
1831 | 1831 | } else { |
1832 | - $max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb'; |
|
1832 | + $max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb'; |
|
1833 | 1833 | } |
1834 | 1834 | /** Filter documented in geodirectory-functions/general_functions.php **/ |
1835 | 1835 | return apply_filters('geodir_default_image_upload_size_limit', $max_filesize); |
@@ -1861,7 +1861,7 @@ discard block |
||
1861 | 1861 | |
1862 | 1862 | $custom_fields = $wpdb->get_results( |
1863 | 1863 | $wpdb->prepare( |
1864 | - "select post_type,data_type,field_type,site_title,admin_title,htmlvar_name,field_icon from " . GEODIR_CUSTOM_FIELDS_TABLE . " where post_type = %s and is_active='1' and cat_sort='1' AND field_type != 'address' order by sort_order asc", |
|
1864 | + "select post_type,data_type,field_type,site_title,admin_title,htmlvar_name,field_icon from ".GEODIR_CUSTOM_FIELDS_TABLE." where post_type = %s and is_active='1' and cat_sort='1' AND field_type != 'address' order by sort_order asc", |
|
1865 | 1865 | array($post_type) |
1866 | 1866 | ), 'ARRAY_A' |
1867 | 1867 | ); |
@@ -1988,7 +1988,7 @@ discard block |
||
1988 | 1988 | |
1989 | 1989 | $post_meta_info = $wpdb->query( |
1990 | 1990 | $wpdb->prepare( |
1991 | - "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set |
|
1991 | + "update ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set |
|
1992 | 1992 | sort_order=%d |
1993 | 1993 | where id= %d", |
1994 | 1994 | array($count, $cf) |
@@ -2070,14 +2070,14 @@ discard block |
||
2070 | 2070 | |
2071 | 2071 | $check_html_variable = $wpdb->get_var( |
2072 | 2072 | $wpdb->prepare( |
2073 | - "select htmlvar_name from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s and field_type=%s ", |
|
2073 | + "select htmlvar_name from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s and field_type=%s ", |
|
2074 | 2074 | array($cehhtmlvar_name, $post_type, $field_type) |
2075 | 2075 | ) |
2076 | 2076 | ); |
2077 | 2077 | |
2078 | 2078 | if ($is_default == 1) { |
2079 | 2079 | |
2080 | - $wpdb->query($wpdb->prepare("update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set is_default='0', default_order='' where post_type = %s", array($post_type))); |
|
2080 | + $wpdb->query($wpdb->prepare("update ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set is_default='0', default_order='' where post_type = %s", array($post_type))); |
|
2081 | 2081 | |
2082 | 2082 | } |
2083 | 2083 | |
@@ -2088,7 +2088,7 @@ discard block |
||
2088 | 2088 | |
2089 | 2089 | $wpdb->prepare( |
2090 | 2090 | |
2091 | - "insert into " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set |
|
2091 | + "insert into ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set |
|
2092 | 2092 | post_type = %s, |
2093 | 2093 | data_type = %s, |
2094 | 2094 | field_type = %s, |
@@ -2119,7 +2119,7 @@ discard block |
||
2119 | 2119 | |
2120 | 2120 | $wpdb->prepare( |
2121 | 2121 | |
2122 | - "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set |
|
2122 | + "update ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set |
|
2123 | 2123 | post_type = %s, |
2124 | 2124 | data_type = %s, |
2125 | 2125 | field_type = %s, |
@@ -2145,7 +2145,7 @@ discard block |
||
2145 | 2145 | } |
2146 | 2146 | |
2147 | 2147 | |
2148 | - return (int)$lastid; |
|
2148 | + return (int) $lastid; |
|
2149 | 2149 | |
2150 | 2150 | } |
2151 | 2151 | } |
@@ -2168,7 +2168,7 @@ discard block |
||
2168 | 2168 | if ($field_id != '') { |
2169 | 2169 | $cf = trim($field_id, '_'); |
2170 | 2170 | |
2171 | - $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where id= %d ", array($cf))); |
|
2171 | + $wpdb->query($wpdb->prepare("delete from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where id= %d ", array($cf))); |
|
2172 | 2172 | |
2173 | 2173 | return $field_id; |
2174 | 2174 | |
@@ -2191,12 +2191,12 @@ discard block |
||
2191 | 2191 | * @param string $field_ins_upd When set to "submit" displays form. |
2192 | 2192 | * @param bool $default when set to true field will be for admin use only. |
2193 | 2193 | */ |
2194 | - function geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key='') |
|
2194 | + function geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key = '') |
|
2195 | 2195 | { |
2196 | 2196 | global $wpdb; |
2197 | 2197 | $cf = $result_str; |
2198 | 2198 | if (!is_object($cf)) { |
2199 | - $field_info = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE id = %d", array($cf))); |
|
2199 | + $field_info = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE id = %d", array($cf))); |
|
2200 | 2200 | } else { |
2201 | 2201 | $field_info = $cf; |
2202 | 2202 | $result_str = $cf->id; |
@@ -2232,18 +2232,18 @@ discard block |
||
2232 | 2232 | if ($htmlvar_name == '') |
2233 | 2233 | $htmlvar_name = isset($field_info->htmlvar_name) ? $field_info->htmlvar_name : ''; |
2234 | 2234 | |
2235 | - $nonce = wp_create_nonce('custom_fields_' . $result_str); |
|
2235 | + $nonce = wp_create_nonce('custom_fields_'.$result_str); |
|
2236 | 2236 | |
2237 | 2237 | $field_icon = '<i class="fa fa-cog" aria-hidden="true"></i>'; |
2238 | 2238 | $cso_arr = geodir_get_custom_sort_options($post_type); |
2239 | 2239 | |
2240 | 2240 | $cur_field_type = (isset($cf->field_type)) ? $cf->field_type : esc_html($_REQUEST['field_type']); |
2241 | - foreach($cso_arr as $cso){ |
|
2242 | - if($cur_field_type==$cso['field_type']){ |
|
2241 | + foreach ($cso_arr as $cso) { |
|
2242 | + if ($cur_field_type == $cso['field_type']) { |
|
2243 | 2243 | |
2244 | 2244 | if (isset($cso['field_icon']) && strpos($cso['field_icon'], 'fa fa-') !== false) { |
2245 | 2245 | $field_icon = '<i class="'.$cso['field_icon'].'" aria-hidden="true"></i>'; |
2246 | - }elseif(isset($cso['field_icon']) && $cso['field_icon']){ |
|
2246 | + }elseif (isset($cso['field_icon']) && $cso['field_icon']) { |
|
2247 | 2247 | $field_icon = '<b class="gd-cf-icon" style="background-image: url(\''.$cso['field_icon'].'\')"></b>'; |
2248 | 2248 | } |
2249 | 2249 | |
@@ -2253,40 +2253,40 @@ discard block |
||
2253 | 2253 | $radio_id = (isset($field_info->htmlvar_name)) ? $field_info->htmlvar_name.$field_type : rand(5, 500); |
2254 | 2254 | ?> |
2255 | 2255 | |
2256 | - <li class="text" id="licontainer_<?php echo $result_str;?>"> |
|
2256 | + <li class="text" id="licontainer_<?php echo $result_str; ?>"> |
|
2257 | 2257 | <form><!-- we need to wrap in a form so we can use radio buttons with same name --> |
2258 | - <div class="title title<?php echo $result_str;?> gt-fieldset" |
|
2259 | - title="<?php _e('Double Click to toggle and drag-drop to sort', 'geodirectory');?>" |
|
2260 | - ondblclick="show_hide('field_frm<?php echo $result_str;?>')"> |
|
2258 | + <div class="title title<?php echo $result_str; ?> gt-fieldset" |
|
2259 | + title="<?php _e('Double Click to toggle and drag-drop to sort', 'geodirectory'); ?>" |
|
2260 | + ondblclick="show_hide('field_frm<?php echo $result_str; ?>')"> |
|
2261 | 2261 | <?php |
2262 | 2262 | |
2263 | 2263 | ?> |
2264 | 2264 | |
2265 | - <div title="<?php _e('Click to remove field', 'geodirectory');?>" |
|
2266 | - onclick="delete_sort_field('<?php echo $result_str;?>', '<?php echo $nonce;?>', this)" |
|
2265 | + <div title="<?php _e('Click to remove field', 'geodirectory'); ?>" |
|
2266 | + onclick="delete_sort_field('<?php echo $result_str; ?>', '<?php echo $nonce; ?>', this)" |
|
2267 | 2267 | class="handlediv close"><i class="fa fa-times" aria-hidden="true"></i></div> |
2268 | 2268 | |
2269 | 2269 | |
2270 | - <?php echo $field_icon;?> |
|
2270 | + <?php echo $field_icon; ?> |
|
2271 | 2271 | <b style="cursor:pointer;" |
2272 | - onclick="show_hide('field_frm<?php echo $result_str;?>')"><?php echo geodir_ucwords(__('Field:', 'geodirectory') . ' (' . $site_title . ')');?></b> |
|
2272 | + onclick="show_hide('field_frm<?php echo $result_str; ?>')"><?php echo geodir_ucwords(__('Field:', 'geodirectory').' ('.$site_title.')'); ?></b> |
|
2273 | 2273 | |
2274 | 2274 | </div> |
2275 | 2275 | |
2276 | - <div id="field_frm<?php echo $result_str;?>" class="field_frm" |
|
2276 | + <div id="field_frm<?php echo $result_str; ?>" class="field_frm" |
|
2277 | 2277 | style="display:<?php if ($field_ins_upd == 'submit') { |
2278 | 2278 | echo 'block;'; |
2279 | 2279 | } else { |
2280 | 2280 | echo 'none;'; |
2281 | 2281 | } ?>"> |
2282 | 2282 | <input type="hidden" name="_wpnonce" value="<?php echo $nonce; ?>"/> |
2283 | - <input type="hidden" name="listing_type" id="listing_type" value="<?php echo $post_type;?>"/> |
|
2284 | - <input type="hidden" name="field_type" id="field_type" value="<?php echo $field_type;?>"/> |
|
2285 | - <input type="hidden" name="field_id" id="field_id" value="<?php echo $result_str;?>"/> |
|
2283 | + <input type="hidden" name="listing_type" id="listing_type" value="<?php echo $post_type; ?>"/> |
|
2284 | + <input type="hidden" name="field_type" id="field_type" value="<?php echo $field_type; ?>"/> |
|
2285 | + <input type="hidden" name="field_id" id="field_id" value="<?php echo $result_str; ?>"/> |
|
2286 | 2286 | <input type="hidden" name="data_type" id="data_type" value="<?php if (isset($field_info->data_type)) { |
2287 | 2287 | echo $field_info->data_type; |
2288 | 2288 | }?>"/> |
2289 | - <input type="hidden" name="htmlvar_name" id="htmlvar_name" value="<?php echo $htmlvar_name;?>"/> |
|
2289 | + <input type="hidden" name="htmlvar_name" id="htmlvar_name" value="<?php echo $htmlvar_name; ?>"/> |
|
2290 | 2290 | |
2291 | 2291 | |
2292 | 2292 | <ul class="widefat post fixed" border="0" style="width:100%;"> |
@@ -2296,7 +2296,7 @@ discard block |
||
2296 | 2296 | <input type="hidden" name="site_title" id="site_title" value="<?php echo esc_attr($site_title); ?>"/> |
2297 | 2297 | |
2298 | 2298 | <li> |
2299 | - <?php $value = (isset($field_info->sort_asc) && $field_info->sort_asc) ? $field_info->sort_asc : 0;?> |
|
2299 | + <?php $value = (isset($field_info->sort_asc) && $field_info->sort_asc) ? $field_info->sort_asc : 0; ?> |
|
2300 | 2300 | |
2301 | 2301 | <label for="asc" class="gd-cf-tooltip-wrap"> |
2302 | 2302 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Show Ascending Sort (low to high)', 'geodirectory'); ?> |
@@ -2306,24 +2306,24 @@ discard block |
||
2306 | 2306 | </label> |
2307 | 2307 | <div class="gd-cf-input-wrap gd-switch"> |
2308 | 2308 | |
2309 | - <input type="radio" id="asc_yes<?php echo $radio_id;?>" name="asc" class="gdri-enabled" value="1" |
|
2309 | + <input type="radio" id="asc_yes<?php echo $radio_id; ?>" name="asc" class="gdri-enabled" value="1" |
|
2310 | 2310 | <?php if ($value == '1') { |
2311 | 2311 | echo 'checked'; |
2312 | 2312 | } ?>/> |
2313 | - <label onclick="show_hide_radio(this,'show','cfs-asc-title');" for="asc_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
2313 | + <label onclick="show_hide_radio(this,'show','cfs-asc-title');" for="asc_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
2314 | 2314 | |
2315 | - <input type="radio" id="asc_no<?php echo $radio_id;?>" name="asc" class="gdri-disabled" value="0" |
|
2315 | + <input type="radio" id="asc_no<?php echo $radio_id; ?>" name="asc" class="gdri-disabled" value="0" |
|
2316 | 2316 | <?php if ($value == '0' || !$value) { |
2317 | 2317 | echo 'checked'; |
2318 | 2318 | } ?>/> |
2319 | - <label onclick="show_hide_radio(this,'hide','cfs-asc-title');" for="asc_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
2319 | + <label onclick="show_hide_radio(this,'hide','cfs-asc-title');" for="asc_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
2320 | 2320 | |
2321 | 2321 | </div> |
2322 | 2322 | |
2323 | 2323 | </li> |
2324 | 2324 | |
2325 | - <li class="cfs-asc-title" <?php if ((isset($field_info->sort_asc) && $field_info->sort_asc == '0') || !isset($field_info->sort_asc)) {echo "style='display:none;'";}?>> |
|
2326 | - <?php $value = (isset($field_info->asc_title) && $field_info->asc_title) ? esc_attr($field_info->asc_title) : '';?> |
|
2325 | + <li class="cfs-asc-title" <?php if ((isset($field_info->sort_asc) && $field_info->sort_asc == '0') || !isset($field_info->sort_asc)) {echo "style='display:none;'"; }?>> |
|
2326 | + <?php $value = (isset($field_info->asc_title) && $field_info->asc_title) ? esc_attr($field_info->asc_title) : ''; ?> |
|
2327 | 2327 | |
2328 | 2328 | <label for="asc_title" class="gd-cf-tooltip-wrap"> |
2329 | 2329 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Ascending title', 'geodirectory'); ?> |
@@ -2333,14 +2333,14 @@ discard block |
||
2333 | 2333 | </label> |
2334 | 2334 | <div class="gd-cf-input-wrap"> |
2335 | 2335 | |
2336 | - <input type="text" name="asc_title" id="asc_title" value="<?php echo $value;?>" /> |
|
2336 | + <input type="text" name="asc_title" id="asc_title" value="<?php echo $value; ?>" /> |
|
2337 | 2337 | </div> |
2338 | 2338 | |
2339 | 2339 | |
2340 | 2340 | </li> |
2341 | 2341 | |
2342 | 2342 | |
2343 | - <li class="cfs-asc-title" <?php if ((isset($field_info->sort_asc) && $field_info->sort_asc == '0') || !isset($field_info->sort_asc)) {echo "style='display:none;'";}?>> |
|
2343 | + <li class="cfs-asc-title" <?php if ((isset($field_info->sort_asc) && $field_info->sort_asc == '0') || !isset($field_info->sort_asc)) {echo "style='display:none;'"; }?>> |
|
2344 | 2344 | |
2345 | 2345 | <label for="is_default" class="gd-cf-tooltip-wrap"> |
2346 | 2346 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Default sort?', 'geodirectory'); ?> |
@@ -2351,7 +2351,7 @@ discard block |
||
2351 | 2351 | <div class="gd-cf-input-wrap"> |
2352 | 2352 | |
2353 | 2353 | <input type="radio" name="is_default" |
2354 | - value="<?php echo $htmlvar_name; ?>_asc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name . '_asc') { |
|
2354 | + value="<?php echo $htmlvar_name; ?>_asc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name.'_asc') { |
|
2355 | 2355 | echo 'checked="checked"'; |
2356 | 2356 | } ?>/> |
2357 | 2357 | </div> |
@@ -2361,7 +2361,7 @@ discard block |
||
2361 | 2361 | |
2362 | 2362 | |
2363 | 2363 | <li> |
2364 | - <?php $value = (isset($field_info->sort_desc) && $field_info->sort_desc) ? $field_info->sort_desc : 0;?> |
|
2364 | + <?php $value = (isset($field_info->sort_desc) && $field_info->sort_desc) ? $field_info->sort_desc : 0; ?> |
|
2365 | 2365 | |
2366 | 2366 | <label for="desc" class="gd-cf-tooltip-wrap"> |
2367 | 2367 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Show Descending Sort (high to low)', 'geodirectory'); ?> |
@@ -2371,24 +2371,24 @@ discard block |
||
2371 | 2371 | </label> |
2372 | 2372 | <div class="gd-cf-input-wrap gd-switch"> |
2373 | 2373 | |
2374 | - <input type="radio" id="desc_yes<?php echo $radio_id;?>" name="desc" class="gdri-enabled" value="1" |
|
2374 | + <input type="radio" id="desc_yes<?php echo $radio_id; ?>" name="desc" class="gdri-enabled" value="1" |
|
2375 | 2375 | <?php if ($value == '1') { |
2376 | 2376 | echo 'checked'; |
2377 | 2377 | } ?>/> |
2378 | - <label onclick="show_hide_radio(this,'show','cfs-desc-title');" for="desc_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
2378 | + <label onclick="show_hide_radio(this,'show','cfs-desc-title');" for="desc_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
2379 | 2379 | |
2380 | - <input type="radio" id="desc_no<?php echo $radio_id;?>" name="desc" class="gdri-disabled" value="0" |
|
2380 | + <input type="radio" id="desc_no<?php echo $radio_id; ?>" name="desc" class="gdri-disabled" value="0" |
|
2381 | 2381 | <?php if ($value == '0' || !$value) { |
2382 | 2382 | echo 'checked'; |
2383 | 2383 | } ?>/> |
2384 | - <label onclick="show_hide_radio(this,'hide','cfs-desc-title');" for="desc_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
2384 | + <label onclick="show_hide_radio(this,'hide','cfs-desc-title');" for="desc_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
2385 | 2385 | |
2386 | 2386 | </div> |
2387 | 2387 | |
2388 | 2388 | </li> |
2389 | 2389 | |
2390 | - <li class="cfs-desc-title" <?php if ((isset($field_info->sort_desc) && $field_info->sort_desc == '0') || !isset($field_info->sort_desc)) {echo "style='display:none;'";}?>> |
|
2391 | - <?php $value = (isset($field_info->desc_title) && $field_info->desc_title) ? esc_attr($field_info->desc_title) : '';?> |
|
2390 | + <li class="cfs-desc-title" <?php if ((isset($field_info->sort_desc) && $field_info->sort_desc == '0') || !isset($field_info->sort_desc)) {echo "style='display:none;'"; }?>> |
|
2391 | + <?php $value = (isset($field_info->desc_title) && $field_info->desc_title) ? esc_attr($field_info->desc_title) : ''; ?> |
|
2392 | 2392 | |
2393 | 2393 | <label for="desc_title" class="gd-cf-tooltip-wrap"> |
2394 | 2394 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Descending title', 'geodirectory'); ?> |
@@ -2398,13 +2398,13 @@ discard block |
||
2398 | 2398 | </label> |
2399 | 2399 | <div class="gd-cf-input-wrap"> |
2400 | 2400 | |
2401 | - <input type="text" name="desc_title" id="desc_title" value="<?php echo $value;?>" /> |
|
2401 | + <input type="text" name="desc_title" id="desc_title" value="<?php echo $value; ?>" /> |
|
2402 | 2402 | </div> |
2403 | 2403 | |
2404 | 2404 | |
2405 | 2405 | </li> |
2406 | 2406 | |
2407 | - <li class="cfs-desc-title" <?php if ((isset($field_info->sort_desc) && $field_info->sort_desc == '0') || !isset($field_info->sort_desc)) {echo "style='display:none;'";}?>> |
|
2407 | + <li class="cfs-desc-title" <?php if ((isset($field_info->sort_desc) && $field_info->sort_desc == '0') || !isset($field_info->sort_desc)) {echo "style='display:none;'"; }?>> |
|
2408 | 2408 | |
2409 | 2409 | <label for="is_default" class="gd-cf-tooltip-wrap"> |
2410 | 2410 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Default sort?', 'geodirectory'); ?> |
@@ -2415,7 +2415,7 @@ discard block |
||
2415 | 2415 | <div class="gd-cf-input-wrap"> |
2416 | 2416 | |
2417 | 2417 | <input type="radio" name="is_default" |
2418 | - value="<?php echo $htmlvar_name; ?>_desc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name . '_desc') { |
|
2418 | + value="<?php echo $htmlvar_name; ?>_desc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name.'_desc') { |
|
2419 | 2419 | echo 'checked="checked"'; |
2420 | 2420 | } ?>/> |
2421 | 2421 | </div> |
@@ -2440,14 +2440,14 @@ discard block |
||
2440 | 2440 | </label> |
2441 | 2441 | <div class="gd-cf-input-wrap"> |
2442 | 2442 | |
2443 | - <input type="text" name="site_title" id="site_title" value="<?php echo $value;?>" /> |
|
2443 | + <input type="text" name="site_title" id="site_title" value="<?php echo $value; ?>" /> |
|
2444 | 2444 | </div> |
2445 | 2445 | |
2446 | 2446 | |
2447 | 2447 | </li> |
2448 | 2448 | |
2449 | 2449 | <li> |
2450 | - <?php $value = (isset($field_info->is_default) && $field_info->is_default) ? esc_attr($field_info->is_default) : '';?> |
|
2450 | + <?php $value = (isset($field_info->is_default) && $field_info->is_default) ? esc_attr($field_info->is_default) : ''; ?> |
|
2451 | 2451 | |
2452 | 2452 | <label for="is_default" class="gd-cf-tooltip-wrap"> |
2453 | 2453 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Default sort?', 'geodirectory'); ?> |
@@ -2471,7 +2471,7 @@ discard block |
||
2471 | 2471 | |
2472 | 2472 | |
2473 | 2473 | <li> |
2474 | - <?php $value = (isset($field_info->is_active) && $field_info->is_active) ? $field_info->is_active: 0;?> |
|
2474 | + <?php $value = (isset($field_info->is_active) && $field_info->is_active) ? $field_info->is_active : 0; ?> |
|
2475 | 2475 | |
2476 | 2476 | <label for="is_active" class="gd-cf-tooltip-wrap"> |
2477 | 2477 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Is active', 'geodirectory'); ?> |
@@ -2481,17 +2481,17 @@ discard block |
||
2481 | 2481 | </label> |
2482 | 2482 | <div class="gd-cf-input-wrap gd-switch"> |
2483 | 2483 | |
2484 | - <input type="radio" id="is_active_yes<?php echo $radio_id;?>" name="is_active" class="gdri-enabled" value="1" |
|
2484 | + <input type="radio" id="is_active_yes<?php echo $radio_id; ?>" name="is_active" class="gdri-enabled" value="1" |
|
2485 | 2485 | <?php if ($value == '1') { |
2486 | 2486 | echo 'checked'; |
2487 | 2487 | } ?>/> |
2488 | - <label for="is_active_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
2488 | + <label for="is_active_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
2489 | 2489 | |
2490 | - <input type="radio" id="is_active_no<?php echo $radio_id;?>" name="is_active" class="gdri-disabled" value="0" |
|
2490 | + <input type="radio" id="is_active_no<?php echo $radio_id; ?>" name="is_active" class="gdri-disabled" value="0" |
|
2491 | 2491 | <?php if ($value == '0' || !$value) { |
2492 | 2492 | echo 'checked'; |
2493 | 2493 | } ?>/> |
2494 | - <label for="is_active_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
2494 | + <label for="is_active_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
2495 | 2495 | |
2496 | 2496 | </div> |
2497 | 2497 | |
@@ -2512,10 +2512,10 @@ discard block |
||
2512 | 2512 | <h3></h3> |
2513 | 2513 | </label> |
2514 | 2514 | <div class="gd-cf-input-wrap"> |
2515 | - <input type="button" class="button button-primary" name="save" id="save" value="<?php echo esc_attr(__('Save','geodirectory'));?>" |
|
2515 | + <input type="button" class="button button-primary" name="save" id="save" value="<?php echo esc_attr(__('Save', 'geodirectory')); ?>" |
|
2516 | 2516 | onclick="save_sort_field('<?php echo esc_attr($result_str); ?>')"/> |
2517 | - <a href="javascript:void(0)"><input type="button" name="delete" value="<?php echo esc_attr(__('Delete','geodirectory'));?>" |
|
2518 | - onclick="delete_sort_field('<?php echo $result_str;?>', '<?php echo $nonce;?>', this)" |
|
2517 | + <a href="javascript:void(0)"><input type="button" name="delete" value="<?php echo esc_attr(__('Delete', 'geodirectory')); ?>" |
|
2518 | + onclick="delete_sort_field('<?php echo $result_str; ?>', '<?php echo $nonce; ?>', this)" |
|
2519 | 2519 | class="button"/></a> |
2520 | 2520 | </div> |
2521 | 2521 | </li> |
@@ -2550,7 +2550,7 @@ discard block |
||
2550 | 2550 | if (!$package_id || !$field_name || !$post_type) { |
2551 | 2551 | return true; |
2552 | 2552 | } |
2553 | - $sql = $wpdb->prepare("SELECT id FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE is_active='1' AND htmlvar_name=%s AND post_type=%s AND FIND_IN_SET(%s, packages)", array($field_name, $post_type, (int)$package_id)); |
|
2553 | + $sql = $wpdb->prepare("SELECT id FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE is_active='1' AND htmlvar_name=%s AND post_type=%s AND FIND_IN_SET(%s, packages)", array($field_name, $post_type, (int) $package_id)); |
|
2554 | 2554 | |
2555 | 2555 | if ($wpdb->get_var($sql)) { |
2556 | 2556 | return true; |
@@ -2673,13 +2673,13 @@ discard block |
||
2673 | 2673 | } |
2674 | 2674 | |
2675 | 2675 | |
2676 | -function geodir_cfa_data_type_text($output,$result_str,$cf,$field_info){ |
|
2676 | +function geodir_cfa_data_type_text($output, $result_str, $cf, $field_info) { |
|
2677 | 2677 | ob_start(); |
2678 | 2678 | |
2679 | 2679 | $dt_value = ''; |
2680 | 2680 | if (isset($field_info->data_type)) { |
2681 | 2681 | $dt_value = esc_attr($field_info->data_type); |
2682 | - }elseif(isset($cf['defaults']['data_type']) && $cf['defaults']['data_type']){ |
|
2682 | + }elseif (isset($cf['defaults']['data_type']) && $cf['defaults']['data_type']) { |
|
2683 | 2683 | $dt_value = $cf['defaults']['data_type']; |
2684 | 2684 | } |
2685 | 2685 | ?> |
@@ -2690,15 +2690,15 @@ discard block |
||
2690 | 2690 | <select name="data_type" id="data_type" |
2691 | 2691 | onchange="javascript:gd_data_type_changed(this, '<?php echo $result_str; ?>');"> |
2692 | 2692 | <option |
2693 | - value="XVARCHAR" <?php if ($dt_value == 'VARCHAR') { |
|
2693 | + value="XVARCHAR" <?php if ($dt_value == 'VARCHAR') { |
|
2694 | 2694 | echo 'selected="selected"'; |
2695 | 2695 | } ?>><?php _e('CHARACTER', 'geodirectory'); ?></option> |
2696 | 2696 | <option |
2697 | - value="INT" <?php if ($dt_value == 'INT') { |
|
2697 | + value="INT" <?php if ($dt_value == 'INT') { |
|
2698 | 2698 | echo 'selected="selected"'; |
2699 | 2699 | } ?>><?php _e('NUMBER', 'geodirectory'); ?></option> |
2700 | 2700 | <option |
2701 | - value="FLOAT" <?php if ($dt_value == 'FLOAT') { |
|
2701 | + value="FLOAT" <?php if ($dt_value == 'FLOAT') { |
|
2702 | 2702 | echo 'selected="selected"'; |
2703 | 2703 | } ?>><?php _e('DECIMAL', 'geodirectory'); ?></option> |
2704 | 2704 | </select> |
@@ -2711,13 +2711,13 @@ discard block |
||
2711 | 2711 | $value = ''; |
2712 | 2712 | if (isset($field_info->decimal_point)) { |
2713 | 2713 | $value = esc_attr($field_info->decimal_point); |
2714 | - }elseif(isset($cf['defaults']['decimal_point']) && $cf['defaults']['decimal_point']){ |
|
2714 | + }elseif (isset($cf['defaults']['decimal_point']) && $cf['defaults']['decimal_point']) { |
|
2715 | 2715 | $value = $cf['defaults']['decimal_point']; |
2716 | 2716 | } |
2717 | 2717 | ?> |
2718 | 2718 | |
2719 | 2719 | <li class="decimal-point-wrapper" |
2720 | - style="<?php echo ($dt_value == 'FLOAT') ? '' : 'display:none' ?>"> |
|
2720 | + style="<?php echo ($dt_value == 'FLOAT') ? '' : 'display:none' ?>"> |
|
2721 | 2721 | <label for="decimal_point"><?php _e('Select decimal point :', 'geodirectory'); ?></label> |
2722 | 2722 | <div class="gd-cf-input-wrap"> |
2723 | 2723 | <select name="decimal_point" id="decimal_point"> |
@@ -2735,41 +2735,41 @@ discard block |
||
2735 | 2735 | $output = ob_get_clean(); |
2736 | 2736 | return $output; |
2737 | 2737 | } |
2738 | -add_filter('geodir_cfa_data_type_text','geodir_cfa_data_type_text',10,4); |
|
2738 | +add_filter('geodir_cfa_data_type_text', 'geodir_cfa_data_type_text', 10, 4); |
|
2739 | 2739 | |
2740 | 2740 | // htmlvar not needed for fieldset and taxonomy |
2741 | -add_filter('geodir_cfa_htmlvar_name_fieldset','__return_empty_string',10,4); |
|
2742 | -add_filter('geodir_cfa_htmlvar_name_taxonomy','__return_empty_string',10,4); |
|
2741 | +add_filter('geodir_cfa_htmlvar_name_fieldset', '__return_empty_string', 10, 4); |
|
2742 | +add_filter('geodir_cfa_htmlvar_name_taxonomy', '__return_empty_string', 10, 4); |
|
2743 | 2743 | |
2744 | 2744 | |
2745 | 2745 | // default_value not needed for textarea, html, file, fieldset, taxonomy, address |
2746 | -add_filter('geodir_cfa_default_value_file','__return_empty_string',10,4); |
|
2747 | -add_filter('geodir_cfa_default_value_taxonomy','__return_empty_string',10,4); |
|
2748 | -add_filter('geodir_cfa_default_value_address','__return_empty_string',10,4); |
|
2749 | -add_filter('geodir_cfa_default_value_fieldset','__return_empty_string',10,4); |
|
2746 | +add_filter('geodir_cfa_default_value_file', '__return_empty_string', 10, 4); |
|
2747 | +add_filter('geodir_cfa_default_value_taxonomy', '__return_empty_string', 10, 4); |
|
2748 | +add_filter('geodir_cfa_default_value_address', '__return_empty_string', 10, 4); |
|
2749 | +add_filter('geodir_cfa_default_value_fieldset', '__return_empty_string', 10, 4); |
|
2750 | 2750 | |
2751 | 2751 | // is_required not needed for fieldset |
2752 | -add_filter('geodir_cfa_is_required_fieldset','__return_empty_string',10,4); |
|
2753 | -add_filter('geodir_cfa_required_msg_fieldset','__return_empty_string',10,4); |
|
2752 | +add_filter('geodir_cfa_is_required_fieldset', '__return_empty_string', 10, 4); |
|
2753 | +add_filter('geodir_cfa_required_msg_fieldset', '__return_empty_string', 10, 4); |
|
2754 | 2754 | |
2755 | 2755 | // field_icon not needed for fieldset |
2756 | -add_filter('geodir_cfa_field_icon_fieldset','__return_empty_string',10,4); |
|
2757 | -add_filter('geodir_cfa_css_class_fieldset','__return_empty_string',10,4); |
|
2756 | +add_filter('geodir_cfa_field_icon_fieldset', '__return_empty_string', 10, 4); |
|
2757 | +add_filter('geodir_cfa_css_class_fieldset', '__return_empty_string', 10, 4); |
|
2758 | 2758 | |
2759 | 2759 | // cat_sort not needed for some fields |
2760 | -add_filter('geodir_cfa_cat_sort_html','__return_empty_string',10,4); |
|
2761 | -add_filter('geodir_cfa_cat_sort_file','__return_empty_string',10,4); |
|
2762 | -add_filter('geodir_cfa_cat_sort_url','__return_empty_string',10,4); |
|
2763 | -add_filter('geodir_cfa_cat_sort_fieldset','__return_empty_string',10,4); |
|
2764 | -add_filter('geodir_cfa_cat_sort_multiselect','__return_empty_string',10,4); |
|
2765 | -add_filter('geodir_cfa_cat_sort_textarea','__return_empty_string',10,4); |
|
2766 | -add_filter('geodir_cfa_cat_sort_taxonomy','__return_empty_string',10,4); |
|
2767 | -add_filter('geodir_cfa_cat_sort_address','__return_empty_string',10,4); |
|
2760 | +add_filter('geodir_cfa_cat_sort_html', '__return_empty_string', 10, 4); |
|
2761 | +add_filter('geodir_cfa_cat_sort_file', '__return_empty_string', 10, 4); |
|
2762 | +add_filter('geodir_cfa_cat_sort_url', '__return_empty_string', 10, 4); |
|
2763 | +add_filter('geodir_cfa_cat_sort_fieldset', '__return_empty_string', 10, 4); |
|
2764 | +add_filter('geodir_cfa_cat_sort_multiselect', '__return_empty_string', 10, 4); |
|
2765 | +add_filter('geodir_cfa_cat_sort_textarea', '__return_empty_string', 10, 4); |
|
2766 | +add_filter('geodir_cfa_cat_sort_taxonomy', '__return_empty_string', 10, 4); |
|
2767 | +add_filter('geodir_cfa_cat_sort_address', '__return_empty_string', 10, 4); |
|
2768 | 2768 | |
2769 | 2769 | |
2770 | 2770 | |
2771 | -function geodir_cfa_advanced_editor_geodir_special_offers($output,$result_str,$cf,$field_info){ |
|
2772 | - if($field_info->htmlvar_name != 'geodir_special_offers'){return '';} |
|
2771 | +function geodir_cfa_advanced_editor_geodir_special_offers($output, $result_str, $cf, $field_info) { |
|
2772 | + if ($field_info->htmlvar_name != 'geodir_special_offers') {return ''; } |
|
2773 | 2773 | ob_start(); |
2774 | 2774 | ?> |
2775 | 2775 | <li> |
@@ -2800,16 +2800,16 @@ discard block |
||
2800 | 2800 | $output = ob_get_clean(); |
2801 | 2801 | return $output; |
2802 | 2802 | } |
2803 | -add_filter('geodir_cfa_advanced_editor_textarea','geodir_cfa_advanced_editor_geodir_special_offers',10,4); |
|
2803 | +add_filter('geodir_cfa_advanced_editor_textarea', 'geodir_cfa_advanced_editor_geodir_special_offers', 10, 4); |
|
2804 | 2804 | |
2805 | 2805 | |
2806 | -function geodir_cfa_validation_pattern_text($output,$result_str,$cf,$field_info){ |
|
2806 | +function geodir_cfa_validation_pattern_text($output, $result_str, $cf, $field_info) { |
|
2807 | 2807 | ob_start(); |
2808 | 2808 | |
2809 | 2809 | $value = ''; |
2810 | 2810 | if (isset($field_info->validation_pattern)) { |
2811 | 2811 | $value = esc_attr($field_info->validation_pattern); |
2812 | - }elseif(isset($cf['defaults']['validation_pattern']) && $cf['defaults']['validation_pattern']){ |
|
2812 | + }elseif (isset($cf['defaults']['validation_pattern']) && $cf['defaults']['validation_pattern']) { |
|
2813 | 2813 | $value = esc_attr($cf['defaults']['validation_pattern']); |
2814 | 2814 | } |
2815 | 2815 | ?> |
@@ -2829,7 +2829,7 @@ discard block |
||
2829 | 2829 | $value = ''; |
2830 | 2830 | if (isset($field_info->validation_msg)) { |
2831 | 2831 | $value = esc_attr($field_info->validation_msg); |
2832 | - }elseif(isset($cf['defaults']['validation_msg']) && $cf['defaults']['validation_msg']){ |
|
2832 | + }elseif (isset($cf['defaults']['validation_msg']) && $cf['defaults']['validation_msg']) { |
|
2833 | 2833 | $value = esc_attr($cf['defaults']['validation_msg']); |
2834 | 2834 | } |
2835 | 2835 | ?> |
@@ -2850,10 +2850,10 @@ discard block |
||
2850 | 2850 | $output = ob_get_clean(); |
2851 | 2851 | return $output; |
2852 | 2852 | } |
2853 | -add_filter('geodir_cfa_validation_pattern_text','geodir_cfa_validation_pattern_text',10,4); |
|
2853 | +add_filter('geodir_cfa_validation_pattern_text', 'geodir_cfa_validation_pattern_text', 10, 4); |
|
2854 | 2854 | |
2855 | 2855 | |
2856 | -function geodir_cfa_htmlvar_name_taxonomy($output,$result_str,$cf,$field_info){ |
|
2856 | +function geodir_cfa_htmlvar_name_taxonomy($output, $result_str, $cf, $field_info) { |
|
2857 | 2857 | ob_start(); |
2858 | 2858 | global $post_type; |
2859 | 2859 | |
@@ -2878,7 +2878,7 @@ discard block |
||
2878 | 2878 | ?> |
2879 | 2879 | <option <?php if (isset($field_info->htmlvar_name) && $field_info->htmlvar_name == $gd_tax) { |
2880 | 2880 | echo 'selected="selected"'; |
2881 | - }?> id="<?php echo $gd_tax;?>"><?php echo $gd_tax;?></option><?php |
|
2881 | + }?> id="<?php echo $gd_tax; ?>"><?php echo $gd_tax; ?></option><?php |
|
2882 | 2882 | } |
2883 | 2883 | ?> |
2884 | 2884 | </select> |
@@ -2889,7 +2889,7 @@ discard block |
||
2889 | 2889 | <label for="cat_display_type" class="gd-cf-tooltip-wrap"> |
2890 | 2890 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Category display type :', 'geodirectory'); ?> |
2891 | 2891 | <div class="gdcf-tooltip"> |
2892 | - <?php _e('Show categories list as select, multiselect, checkbox or radio', 'geodirectory');?> |
|
2892 | + <?php _e('Show categories list as select, multiselect, checkbox or radio', 'geodirectory'); ?> |
|
2893 | 2893 | </div> |
2894 | 2894 | </label> |
2895 | 2895 | <div class="gd-cf-input-wrap"> |
@@ -2897,19 +2897,19 @@ discard block |
||
2897 | 2897 | <select name="cat_display_type" id="cat_display_type"> |
2898 | 2898 | <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'ajax_chained') { |
2899 | 2899 | echo 'selected="selected"'; |
2900 | - }?> value="ajax_chained"><?php _e('Ajax Chained', 'geodirectory');?></option> |
|
2900 | + }?> value="ajax_chained"><?php _e('Ajax Chained', 'geodirectory'); ?></option> |
|
2901 | 2901 | <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'select') { |
2902 | 2902 | echo 'selected="selected"'; |
2903 | - }?> value="select"><?php _e('Select', 'geodirectory');?></option> |
|
2903 | + }?> value="select"><?php _e('Select', 'geodirectory'); ?></option> |
|
2904 | 2904 | <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'multiselect') { |
2905 | 2905 | echo 'selected="selected"'; |
2906 | - }?> value="multiselect"><?php _e('Multiselect', 'geodirectory');?></option> |
|
2906 | + }?> value="multiselect"><?php _e('Multiselect', 'geodirectory'); ?></option> |
|
2907 | 2907 | <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'checkbox') { |
2908 | 2908 | echo 'selected="selected"'; |
2909 | - }?> value="checkbox"><?php _e('Checkbox', 'geodirectory');?></option> |
|
2909 | + }?> value="checkbox"><?php _e('Checkbox', 'geodirectory'); ?></option> |
|
2910 | 2910 | <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'radio') { |
2911 | 2911 | echo 'selected="selected"'; |
2912 | - }?> value="radio"><?php _e('Radio', 'geodirectory');?></option> |
|
2912 | + }?> value="radio"><?php _e('Radio', 'geodirectory'); ?></option> |
|
2913 | 2913 | </select> |
2914 | 2914 | </div> |
2915 | 2915 | </li> |
@@ -2918,10 +2918,10 @@ discard block |
||
2918 | 2918 | $output = ob_get_clean(); |
2919 | 2919 | return $output; |
2920 | 2920 | } |
2921 | -add_filter('geodir_cfa_htmlvar_name_taxonomy','geodir_cfa_htmlvar_name_taxonomy',10,4); |
|
2921 | +add_filter('geodir_cfa_htmlvar_name_taxonomy', 'geodir_cfa_htmlvar_name_taxonomy', 10, 4); |
|
2922 | 2922 | |
2923 | 2923 | |
2924 | -function geodir_cfa_extra_fields_address($output,$result_str,$cf,$field_info){ |
|
2924 | +function geodir_cfa_extra_fields_address($output, $result_str, $cf, $field_info) { |
|
2925 | 2925 | |
2926 | 2926 | ob_start(); |
2927 | 2927 | if (isset($field_info->extra_fields) && $field_info->extra_fields != '') { |
@@ -2944,32 +2944,32 @@ discard block |
||
2944 | 2944 | <label for="show_zip" class="gd-cf-tooltip-wrap"> |
2945 | 2945 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Display zip/post code :', 'geodirectory'); ?> |
2946 | 2946 | <div class="gdcf-tooltip"> |
2947 | - <?php _e('Select if you want to show zip/post code field in address section.', 'geodirectory');?> |
|
2947 | + <?php _e('Select if you want to show zip/post code field in address section.', 'geodirectory'); ?> |
|
2948 | 2948 | </div> |
2949 | 2949 | </label> |
2950 | 2950 | <div class="gd-cf-input-wrap gd-switch"> |
2951 | 2951 | |
2952 | - <input type="radio" id="show_zip_yes<?php echo $radio_id;?>" name="extra[show_zip]" class="gdri-enabled" value="1" |
|
2952 | + <input type="radio" id="show_zip_yes<?php echo $radio_id; ?>" name="extra[show_zip]" class="gdri-enabled" value="1" |
|
2953 | 2953 | <?php if (isset($address['show_zip']) && $address['show_zip'] == '1') { |
2954 | 2954 | echo 'checked'; |
2955 | 2955 | } ?>/> |
2956 | - <label onclick="show_hide_radio(this,'show','cf-zip-lable');" for="show_zip_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
2956 | + <label onclick="show_hide_radio(this,'show','cf-zip-lable');" for="show_zip_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
2957 | 2957 | |
2958 | - <input type="radio" id="show_zip_no<?php echo $radio_id;?>" name="extra[show_zip]" class="gdri-disabled" value="0" |
|
2958 | + <input type="radio" id="show_zip_no<?php echo $radio_id; ?>" name="extra[show_zip]" class="gdri-disabled" value="0" |
|
2959 | 2959 | <?php if ((isset($address['show_zip']) && !$address['show_zip']) || !isset($address['show_zip'])) { |
2960 | 2960 | echo 'checked'; |
2961 | 2961 | } ?>/> |
2962 | - <label onclick="show_hide_radio(this,'hide','cf-zip-lable');" for="show_zip_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
2962 | + <label onclick="show_hide_radio(this,'hide','cf-zip-lable');" for="show_zip_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
2963 | 2963 | |
2964 | 2964 | |
2965 | 2965 | </div> |
2966 | 2966 | </li> |
2967 | 2967 | |
2968 | - <li class="cf-zip-lable" <?php if ((isset($address['show_zip']) && !$address['show_zip']) || !isset($address['show_zip'])) {echo "style='display:none;'";}?> > |
|
2968 | + <li class="cf-zip-lable" <?php if ((isset($address['show_zip']) && !$address['show_zip']) || !isset($address['show_zip'])) {echo "style='display:none;'"; }?> > |
|
2969 | 2969 | <label for="zip_lable" class="gd-cf-tooltip-wrap"> |
2970 | 2970 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Zip/Post code label :', 'geodirectory'); ?> |
2971 | 2971 | <div class="gdcf-tooltip"> |
2972 | - <?php _e('Enter zip/post code field label in address section.', 'geodirectory');?> |
|
2972 | + <?php _e('Enter zip/post code field label in address section.', 'geodirectory'); ?> |
|
2973 | 2973 | </div> |
2974 | 2974 | </label> |
2975 | 2975 | <div class="gd-cf-input-wrap"> |
@@ -2987,7 +2987,7 @@ discard block |
||
2987 | 2987 | <label for="map_lable" class="gd-cf-tooltip-wrap"> |
2988 | 2988 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Map button label :', 'geodirectory'); ?> |
2989 | 2989 | <div class="gdcf-tooltip"> |
2990 | - <?php _e('Enter text for `set address on map` button in address section.', 'geodirectory');?> |
|
2990 | + <?php _e('Enter text for `set address on map` button in address section.', 'geodirectory'); ?> |
|
2991 | 2991 | </div> |
2992 | 2992 | </label> |
2993 | 2993 | <div class="gd-cf-input-wrap"> |
@@ -3002,22 +3002,22 @@ discard block |
||
3002 | 3002 | <label for="show_mapzoom" class="gd-cf-tooltip-wrap"> |
3003 | 3003 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Use user zoom level:', 'geodirectory'); ?> |
3004 | 3004 | <div class="gdcf-tooltip"> |
3005 | - <?php _e('Do you want to use the user defined map zoom level from the add listing page?', 'geodirectory');?> |
|
3005 | + <?php _e('Do you want to use the user defined map zoom level from the add listing page?', 'geodirectory'); ?> |
|
3006 | 3006 | </div> |
3007 | 3007 | </label> |
3008 | 3008 | <div class="gd-cf-input-wrap gd-switch"> |
3009 | 3009 | |
3010 | - <input type="radio" id="show_mapzoom_yes<?php echo $radio_id;?>" name="extra[show_mapzoom]" class="gdri-enabled" value="1" |
|
3010 | + <input type="radio" id="show_mapzoom_yes<?php echo $radio_id; ?>" name="extra[show_mapzoom]" class="gdri-enabled" value="1" |
|
3011 | 3011 | <?php if (isset($address['show_mapzoom']) && $address['show_mapzoom'] == '1') { |
3012 | 3012 | echo 'checked'; |
3013 | 3013 | } ?>/> |
3014 | - <label for="show_mapzoom_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
3014 | + <label for="show_mapzoom_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
3015 | 3015 | |
3016 | - <input type="radio" id="show_mapzoom_no<?php echo $radio_id;?>" name="extra[show_mapzoom]" class="gdri-disabled" value="0" |
|
3016 | + <input type="radio" id="show_mapzoom_no<?php echo $radio_id; ?>" name="extra[show_mapzoom]" class="gdri-disabled" value="0" |
|
3017 | 3017 | <?php if ((isset($address['show_mapzoom']) && !$address['show_mapzoom']) || !isset($address['show_mapzoom'])) { |
3018 | 3018 | echo 'checked'; |
3019 | 3019 | } ?>/> |
3020 | - <label for="show_mapzoom_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
3020 | + <label for="show_mapzoom_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
3021 | 3021 | |
3022 | 3022 | </div> |
3023 | 3023 | </li> |
@@ -3026,22 +3026,22 @@ discard block |
||
3026 | 3026 | <label for="show_mapview" class="gd-cf-tooltip-wrap"> |
3027 | 3027 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Display map view:', 'geodirectory'); ?> |
3028 | 3028 | <div class="gdcf-tooltip"> |
3029 | - <?php _e('Select if you want to `set default map` options in address section. ( Satellite Map, Hybrid Map, Terrain Map)', 'geodirectory');?> |
|
3029 | + <?php _e('Select if you want to `set default map` options in address section. ( Satellite Map, Hybrid Map, Terrain Map)', 'geodirectory'); ?> |
|
3030 | 3030 | </div> |
3031 | 3031 | </label> |
3032 | 3032 | <div class="gd-cf-input-wrap gd-switch"> |
3033 | 3033 | |
3034 | - <input type="radio" id="show_mapview_yes<?php echo $radio_id;?>" name="extra[show_mapview]" class="gdri-enabled" value="1" |
|
3034 | + <input type="radio" id="show_mapview_yes<?php echo $radio_id; ?>" name="extra[show_mapview]" class="gdri-enabled" value="1" |
|
3035 | 3035 | <?php if (isset($address['show_mapview']) && $address['show_mapview'] == '1') { |
3036 | 3036 | echo 'checked'; |
3037 | 3037 | } ?>/> |
3038 | - <label for="show_mapview_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
3038 | + <label for="show_mapview_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
3039 | 3039 | |
3040 | - <input type="radio" id="show_mapview_no<?php echo $radio_id;?>" name="extra[show_mapview]" class="gdri-disabled" value="0" |
|
3040 | + <input type="radio" id="show_mapview_no<?php echo $radio_id; ?>" name="extra[show_mapview]" class="gdri-disabled" value="0" |
|
3041 | 3041 | <?php if ((isset($address['show_mapview']) && !$address['show_mapview']) || !isset($address['show_mapview'])) { |
3042 | 3042 | echo 'checked'; |
3043 | 3043 | } ?>/> |
3044 | - <label for="show_mapview_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
3044 | + <label for="show_mapview_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
3045 | 3045 | |
3046 | 3046 | </div> |
3047 | 3047 | </li> |
@@ -3051,7 +3051,7 @@ discard block |
||
3051 | 3051 | <label for="mapview_lable" class="gd-cf-tooltip-wrap"> |
3052 | 3052 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Map view label:', 'geodirectory'); ?> |
3053 | 3053 | <div class="gdcf-tooltip"> |
3054 | - <?php _e('Enter mapview field label in address section.', 'geodirectory');?> |
|
3054 | + <?php _e('Enter mapview field label in address section.', 'geodirectory'); ?> |
|
3055 | 3055 | </div> |
3056 | 3056 | </label> |
3057 | 3057 | <div class="gd-cf-input-wrap"> |
@@ -3065,22 +3065,22 @@ discard block |
||
3065 | 3065 | <label for="show_latlng" class="gd-cf-tooltip-wrap"> |
3066 | 3066 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Show latitude and longitude', 'geodirectory'); ?> |
3067 | 3067 | <div class="gdcf-tooltip"> |
3068 | - <?php _e('This will show/hide the longitude fields in the address section add listing form.', 'geodirectory');?> |
|
3068 | + <?php _e('This will show/hide the longitude fields in the address section add listing form.', 'geodirectory'); ?> |
|
3069 | 3069 | </div> |
3070 | 3070 | </label> |
3071 | 3071 | <div class="gd-cf-input-wrap gd-switch"> |
3072 | 3072 | |
3073 | - <input type="radio" id="show_latlng_yes<?php echo $radio_id;?>" name="extra[show_latlng]" class="gdri-enabled" value="1" |
|
3073 | + <input type="radio" id="show_latlng_yes<?php echo $radio_id; ?>" name="extra[show_latlng]" class="gdri-enabled" value="1" |
|
3074 | 3074 | <?php if (isset($address['show_latlng']) && $address['show_latlng'] == '1') { |
3075 | 3075 | echo 'checked'; |
3076 | 3076 | } ?>/> |
3077 | - <label for="show_latlng_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
3077 | + <label for="show_latlng_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
3078 | 3078 | |
3079 | - <input type="radio" id="show_latlng_no<?php echo $radio_id;?>" name="extra[show_latlng]" class="gdri-disabled" value="0" |
|
3079 | + <input type="radio" id="show_latlng_no<?php echo $radio_id; ?>" name="extra[show_latlng]" class="gdri-disabled" value="0" |
|
3080 | 3080 | <?php if ((isset($address['show_latlng']) && !$address['show_latlng']) || !isset($address['show_latlng'])) { |
3081 | 3081 | echo 'checked'; |
3082 | 3082 | } ?>/> |
3083 | - <label for="show_latlng_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
3083 | + <label for="show_latlng_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
3084 | 3084 | |
3085 | 3085 | </div> |
3086 | 3086 | </li> |
@@ -3089,17 +3089,17 @@ discard block |
||
3089 | 3089 | $html = ob_get_clean(); |
3090 | 3090 | return $output.$html; |
3091 | 3091 | } |
3092 | -add_filter('geodir_cfa_extra_fields_address','geodir_cfa_extra_fields_address',10,4); |
|
3092 | +add_filter('geodir_cfa_extra_fields_address', 'geodir_cfa_extra_fields_address', 10, 4); |
|
3093 | 3093 | |
3094 | 3094 | |
3095 | -function geodir_cfa_extra_fields_multiselect($output,$result_str,$cf,$field_info){ |
|
3095 | +function geodir_cfa_extra_fields_multiselect($output, $result_str, $cf, $field_info) { |
|
3096 | 3096 | ob_start(); |
3097 | 3097 | ?> |
3098 | 3098 | <li> |
3099 | 3099 | <label for="multi_display_type" class="gd-cf-tooltip-wrap"> |
3100 | 3100 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Multiselect display type :', 'geodirectory'); ?> |
3101 | 3101 | <div class="gdcf-tooltip"> |
3102 | - <?php _e('Show multiselect list as multiselect,checkbox or radio.', 'geodirectory');?> |
|
3102 | + <?php _e('Show multiselect list as multiselect,checkbox or radio.', 'geodirectory'); ?> |
|
3103 | 3103 | </div> |
3104 | 3104 | </label> |
3105 | 3105 | <div class="gd-cf-input-wrap"> |
@@ -3107,13 +3107,13 @@ discard block |
||
3107 | 3107 | <select name="multi_display_type" id="multi_display_type"> |
3108 | 3108 | <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'select') { |
3109 | 3109 | echo 'selected="selected"'; |
3110 | - }?> value="select"><?php _e('Select', 'geodirectory');?></option> |
|
3110 | + }?> value="select"><?php _e('Select', 'geodirectory'); ?></option> |
|
3111 | 3111 | <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'checkbox') { |
3112 | 3112 | echo 'selected="selected"'; |
3113 | - }?> value="checkbox"><?php _e('Checkbox', 'geodirectory');?></option> |
|
3113 | + }?> value="checkbox"><?php _e('Checkbox', 'geodirectory'); ?></option> |
|
3114 | 3114 | <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'radio') { |
3115 | 3115 | echo 'selected="selected"'; |
3116 | - }?> value="radio"><?php _e('Radio', 'geodirectory');?></option> |
|
3116 | + }?> value="radio"><?php _e('Radio', 'geodirectory'); ?></option> |
|
3117 | 3117 | </select> |
3118 | 3118 | |
3119 | 3119 | <br/> |
@@ -3124,17 +3124,17 @@ discard block |
||
3124 | 3124 | $html = ob_get_clean(); |
3125 | 3125 | return $output.$html; |
3126 | 3126 | } |
3127 | -add_filter('geodir_cfa_extra_fields_multiselect','geodir_cfa_extra_fields_multiselect',10,4); |
|
3127 | +add_filter('geodir_cfa_extra_fields_multiselect', 'geodir_cfa_extra_fields_multiselect', 10, 4); |
|
3128 | 3128 | |
3129 | 3129 | |
3130 | -function geodir_cfa_extra_fields_smr($output,$result_str,$cf,$field_info){ |
|
3130 | +function geodir_cfa_extra_fields_smr($output, $result_str, $cf, $field_info) { |
|
3131 | 3131 | |
3132 | 3132 | ob_start(); |
3133 | 3133 | |
3134 | 3134 | $value = ''; |
3135 | 3135 | if (isset($field_info->option_values)) { |
3136 | 3136 | $value = esc_attr($field_info->option_values); |
3137 | - }elseif(isset($cf['defaults']['option_values']) && $cf['defaults']['option_values']){ |
|
3137 | + }elseif (isset($cf['defaults']['option_values']) && $cf['defaults']['option_values']) { |
|
3138 | 3138 | $value = esc_attr($cf['defaults']['option_values']); |
3139 | 3139 | } |
3140 | 3140 | |
@@ -3144,11 +3144,11 @@ discard block |
||
3144 | 3144 | <label for="option_values" class="gd-cf-tooltip-wrap"> |
3145 | 3145 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Option Values :', 'geodirectory'); ?> |
3146 | 3146 | <div class="gdcf-tooltip"> |
3147 | - <span><?php _e('Option Values should be separated by comma.', 'geodirectory');?></span> |
|
3147 | + <span><?php _e('Option Values should be separated by comma.', 'geodirectory'); ?></span> |
|
3148 | 3148 | <br/> |
3149 | - <small><span><?php _e('If using for a "tick filter" place a / and then either a 1 for true or 0 for false', 'geodirectory');?></span> |
|
3149 | + <small><span><?php _e('If using for a "tick filter" place a / and then either a 1 for true or 0 for false', 'geodirectory'); ?></span> |
|
3150 | 3150 | <br/> |
3151 | - <span><?php _e('eg: "No Dogs Allowed/0,Dogs Allowed/1" (Select only, not multiselect)', 'geodirectory');?></span> |
|
3151 | + <span><?php _e('eg: "No Dogs Allowed/0,Dogs Allowed/1" (Select only, not multiselect)', 'geodirectory'); ?></span> |
|
3152 | 3152 | <?php if ($field_type == 'multiselect' || $field_type == 'select') { ?> |
3153 | 3153 | <br/> |
3154 | 3154 | <span><?php _e('- If using OPTGROUP tag to grouping options, use "{optgroup}OPTGROUP-LABEL|OPTION-1,OPTION-2{/optgroup}"', 'geodirectory'); ?></span> |
@@ -3159,7 +3159,7 @@ discard block |
||
3159 | 3159 | </label> |
3160 | 3160 | <div class="gd-cf-input-wrap"> |
3161 | 3161 | <input type="text" name="option_values" id="option_values" |
3162 | - value="<?php echo $value;?>"/> |
|
3162 | + value="<?php echo $value; ?>"/> |
|
3163 | 3163 | <br/> |
3164 | 3164 | |
3165 | 3165 | </div> |
@@ -3169,12 +3169,12 @@ discard block |
||
3169 | 3169 | $html = ob_get_clean(); |
3170 | 3170 | return $output.$html; |
3171 | 3171 | } |
3172 | -add_filter('geodir_cfa_extra_fields_multiselect','geodir_cfa_extra_fields_smr',10,4); |
|
3173 | -add_filter('geodir_cfa_extra_fields_select','geodir_cfa_extra_fields_smr',10,4); |
|
3174 | -add_filter('geodir_cfa_extra_fields_radio','geodir_cfa_extra_fields_smr',10,4); |
|
3172 | +add_filter('geodir_cfa_extra_fields_multiselect', 'geodir_cfa_extra_fields_smr', 10, 4); |
|
3173 | +add_filter('geodir_cfa_extra_fields_select', 'geodir_cfa_extra_fields_smr', 10, 4); |
|
3174 | +add_filter('geodir_cfa_extra_fields_radio', 'geodir_cfa_extra_fields_smr', 10, 4); |
|
3175 | 3175 | |
3176 | 3176 | |
3177 | -function geodir_cfa_extra_fields_datepicker($output,$result_str,$cf,$field_info){ |
|
3177 | +function geodir_cfa_extra_fields_datepicker($output, $result_str, $cf, $field_info) { |
|
3178 | 3178 | ob_start(); |
3179 | 3179 | $extra = array(); |
3180 | 3180 | if (isset($field_info->extra_fields) && $field_info->extra_fields != '') { |
@@ -3185,7 +3185,7 @@ discard block |
||
3185 | 3185 | <label for="date_format" class="gd-cf-tooltip-wrap"> |
3186 | 3186 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Date Format :', 'geodirectory'); ?> |
3187 | 3187 | <div class="gdcf-tooltip"> |
3188 | - <?php _e('Select the date format.', 'geodirectory');?> |
|
3188 | + <?php _e('Select the date format.', 'geodirectory'); ?> |
|
3189 | 3189 | </div> |
3190 | 3190 | </label> |
3191 | 3191 | <div class="gd-cf-input-wrap" style="overflow:inherit;"> |
@@ -3205,16 +3205,16 @@ discard block |
||
3205 | 3205 | * @since 1.6.5 |
3206 | 3206 | * @param array $date_formats The PHP date format array. |
3207 | 3207 | */ |
3208 | - $date_formats = apply_filters('geodir_date_formats',$date_formats); |
|
3208 | + $date_formats = apply_filters('geodir_date_formats', $date_formats); |
|
3209 | 3209 | ?> |
3210 | 3210 | <select name="extra[date_format]" id="date_format"> |
3211 | 3211 | <?php |
3212 | - foreach($date_formats as $format){ |
|
3212 | + foreach ($date_formats as $format) { |
|
3213 | 3213 | $selected = ''; |
3214 | - if(!empty($extra) && esc_attr($extra['date_format'])==$format){ |
|
3214 | + if (!empty($extra) && esc_attr($extra['date_format']) == $format) { |
|
3215 | 3215 | $selected = "selected='selected'"; |
3216 | 3216 | } |
3217 | - echo "<option $selected value='$format'>$format (".date_i18n( $format, time()).")</option>"; |
|
3217 | + echo "<option $selected value='$format'>$format (".date_i18n($format, time()).")</option>"; |
|
3218 | 3218 | } |
3219 | 3219 | ?> |
3220 | 3220 | </select> |
@@ -3226,10 +3226,10 @@ discard block |
||
3226 | 3226 | $html = ob_get_clean(); |
3227 | 3227 | return $output.$html; |
3228 | 3228 | } |
3229 | -add_filter('geodir_cfa_extra_fields_datepicker','geodir_cfa_extra_fields_datepicker',10,4); |
|
3229 | +add_filter('geodir_cfa_extra_fields_datepicker', 'geodir_cfa_extra_fields_datepicker', 10, 4); |
|
3230 | 3230 | |
3231 | 3231 | |
3232 | -function geodir_cfa_extra_fields_file($output,$result_str,$cf,$field_info){ |
|
3232 | +function geodir_cfa_extra_fields_file($output, $result_str, $cf, $field_info) { |
|
3233 | 3233 | ob_start(); |
3234 | 3234 | $allowed_file_types = geodir_allowed_mime_types(); |
3235 | 3235 | |
@@ -3240,16 +3240,16 @@ discard block |
||
3240 | 3240 | <label for="gd_file_types" class="gd-cf-tooltip-wrap"> |
3241 | 3241 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Allowed file types :', 'geodirectory'); ?> |
3242 | 3242 | <div class="gdcf-tooltip"> |
3243 | - <?php _e('Select file types to allowed for file uploading. (Select multiple file types by holding down "Ctrl" key.)', 'geodirectory');?> |
|
3243 | + <?php _e('Select file types to allowed for file uploading. (Select multiple file types by holding down "Ctrl" key.)', 'geodirectory'); ?> |
|
3244 | 3244 | </div> |
3245 | 3245 | </label> |
3246 | 3246 | <div class="gd-cf-input-wrap"> |
3247 | 3247 | <select name="extra[gd_file_types][]" id="gd_file_types" multiple="multiple" style="height:100px;width:90%;"> |
3248 | - <option value="*" <?php selected(true, in_array('*', $gd_file_types));?>><?php _e('All types', 'geodirectory') ;?></option> |
|
3249 | - <?php foreach ( $allowed_file_types as $format => $types ) { ?> |
|
3250 | - <optgroup label="<?php echo esc_attr( wp_sprintf(__('%s formats', 'geodirectory'), __($format, 'geodirectory') ) ) ;?>"> |
|
3251 | - <?php foreach ( $types as $ext => $type ) { ?> |
|
3252 | - <option value="<?php echo esc_attr($ext) ;?>" <?php selected(true, in_array($ext, $gd_file_types));?>><?php echo '.' . $ext ;?></option> |
|
3248 | + <option value="*" <?php selected(true, in_array('*', $gd_file_types)); ?>><?php _e('All types', 'geodirectory'); ?></option> |
|
3249 | + <?php foreach ($allowed_file_types as $format => $types) { ?> |
|
3250 | + <optgroup label="<?php echo esc_attr(wp_sprintf(__('%s formats', 'geodirectory'), __($format, 'geodirectory'))); ?>"> |
|
3251 | + <?php foreach ($types as $ext => $type) { ?> |
|
3252 | + <option value="<?php echo esc_attr($ext); ?>" <?php selected(true, in_array($ext, $gd_file_types)); ?>><?php echo '.'.$ext; ?></option> |
|
3253 | 3253 | <?php } ?> |
3254 | 3254 | </optgroup> |
3255 | 3255 | <?php } ?> |
@@ -3261,9 +3261,9 @@ discard block |
||
3261 | 3261 | $html = ob_get_clean(); |
3262 | 3262 | return $output.$html; |
3263 | 3263 | } |
3264 | -add_filter('geodir_cfa_extra_fields_file','geodir_cfa_extra_fields_file',10,4); |
|
3264 | +add_filter('geodir_cfa_extra_fields_file', 'geodir_cfa_extra_fields_file', 10, 4); |
|
3265 | 3265 | |
3266 | -function geodir_cfa_extra_fields_text($output,$result_str,$cf,$field_info){ |
|
3266 | +function geodir_cfa_extra_fields_text($output, $result_str, $cf, $field_info) { |
|
3267 | 3267 | ob_start(); |
3268 | 3268 | |
3269 | 3269 | $extra_fields = isset($field_info->extra_fields) && $field_info->extra_fields != '' ? maybe_unserialize($field_info->extra_fields) : ''; |
@@ -3277,15 +3277,15 @@ discard block |
||
3277 | 3277 | $value = ''; |
3278 | 3278 | if ($extra_fields && isset($extra_fields['is_price'])) { |
3279 | 3279 | $value = esc_attr($extra_fields['is_price']); |
3280 | - }elseif(isset($cf['defaults']['extra_fields']['is_price']) && $cf['defaults']['extra_fields']['is_price']){ |
|
3280 | + }elseif (isset($cf['defaults']['extra_fields']['is_price']) && $cf['defaults']['extra_fields']['is_price']) { |
|
3281 | 3281 | $value = esc_attr($cf['defaults']['extra_fields']['is_price']); |
3282 | 3282 | } |
3283 | 3283 | |
3284 | - $show_price_extra = ($value==1) ? 1 : 0; |
|
3284 | + $show_price_extra = ($value == 1) ? 1 : 0; |
|
3285 | 3285 | |
3286 | - $show_price = (isset($field_info->data_type) && ($field_info->data_type=='INT' && $field_info->data_type=='FLOAT')) ? 1 : 0; |
|
3286 | + $show_price = (isset($field_info->data_type) && ($field_info->data_type == 'INT' && $field_info->data_type == 'FLOAT')) ? 1 : 0; |
|
3287 | 3287 | ?> |
3288 | - <li class="gdcf-price-extra-set" <?php if(!$show_price){ echo "style='display:none;'";}?>> |
|
3288 | + <li class="gdcf-price-extra-set" <?php if (!$show_price) { echo "style='display:none;'"; }?>> |
|
3289 | 3289 | <label for="is_price" class="gd-cf-tooltip-wrap"> |
3290 | 3290 | <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Display as price? :', 'geodirectory'); ?> |
3291 | 3291 | <div class="gdcf-tooltip"> |
@@ -3294,17 +3294,17 @@ discard block |
||
3294 | 3294 | </label> |
3295 | 3295 | <div class="gd-cf-input-wrap gd-switch"> |
3296 | 3296 | |
3297 | - <input type="radio" id="is_price_yes<?php echo $radio_id;?>" name="extra[is_price]" class="gdri-enabled" value="1" |
|
3297 | + <input type="radio" id="is_price_yes<?php echo $radio_id; ?>" name="extra[is_price]" class="gdri-enabled" value="1" |
|
3298 | 3298 | <?php if ($value == '1') { |
3299 | 3299 | echo 'checked'; |
3300 | 3300 | } ?>/> |
3301 | - <label onclick="show_hide_radio(this,'show','gdcf-price-extra');" for="is_price_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
3301 | + <label onclick="show_hide_radio(this,'show','gdcf-price-extra');" for="is_price_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label> |
|
3302 | 3302 | |
3303 | - <input type="radio" id="is_price_no<?php echo $radio_id;?>" name="extra[is_price]" class="gdri-disabled" value="0" |
|
3303 | + <input type="radio" id="is_price_no<?php echo $radio_id; ?>" name="extra[is_price]" class="gdri-disabled" value="0" |
|
3304 | 3304 | <?php if ($value == '0' || !$value) { |
3305 | 3305 | echo 'checked'; |
3306 | 3306 | } ?>/> |
3307 | - <label onclick="show_hide_radio(this,'hide','gdcf-price-extra');" for="is_price_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
3307 | + <label onclick="show_hide_radio(this,'hide','gdcf-price-extra');" for="is_price_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label> |
|
3308 | 3308 | |
3309 | 3309 | </div> |
3310 | 3310 | </li> |
@@ -3314,24 +3314,24 @@ discard block |
||
3314 | 3314 | $value = ''; |
3315 | 3315 | if ($extra_fields && isset($extra_fields['thousand_separator'])) { |
3316 | 3316 | $value = esc_attr($extra_fields['thousand_separator']); |
3317 | - }elseif(isset($cf['defaults']['extra_fields']['thousand_separator']) && $cf['defaults']['extra_fields']['thousand_separator']){ |
|
3317 | + }elseif (isset($cf['defaults']['extra_fields']['thousand_separator']) && $cf['defaults']['extra_fields']['thousand_separator']) { |
|
3318 | 3318 | $value = esc_attr($cf['defaults']['extra_fields']['thousand_separator']); |
3319 | 3319 | } |
3320 | 3320 | ?> |
3321 | - <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>> |
|
3322 | - <label for="thousand_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Thousand separator :', 'geodirectory');?> |
|
3321 | + <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>> |
|
3322 | + <label for="thousand_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Thousand separator :', 'geodirectory'); ?> |
|
3323 | 3323 | <div class="gdcf-tooltip"> |
3324 | 3324 | <?php _e('Select the thousand separator.', 'geodirectory'); ?> |
3325 | 3325 | </div> |
3326 | 3326 | </label> |
3327 | 3327 | <div class="gd-cf-input-wrap"> |
3328 | 3328 | <select name="extra[thousand_separator]" id="thousand_separator"> |
3329 | - <option value="comma" <?php selected(true, $value == 'comma');?>><?php _e(', (comma)', 'geodirectory'); ?></option> |
|
3330 | - <option value="slash" <?php selected(true, $value == "slash");?>><?php _e('\ (slash)', 'geodirectory'); ?></option> |
|
3331 | - <option value="period" <?php selected(true, $value == 'period');?>><?php _e('. (period)', 'geodirectory'); ?></option> |
|
3332 | - <option value="space" <?php selected(true, $value == 'space');?>><?php _e(' (space)', 'geodirectory'); ?></option> |
|
3333 | - <option value="apostrophe" <?php selected(true, $value == 'apostrophe');?>><?php _e("' (apostrophe)", 'geodirectory'); ?></option> |
|
3334 | - <option value="none" <?php selected(true, $value == 'none');?>><?php _e('(none)', 'geodirectory'); ?></option> |
|
3329 | + <option value="comma" <?php selected(true, $value == 'comma'); ?>><?php _e(', (comma)', 'geodirectory'); ?></option> |
|
3330 | + <option value="slash" <?php selected(true, $value == "slash"); ?>><?php _e('\ (slash)', 'geodirectory'); ?></option> |
|
3331 | + <option value="period" <?php selected(true, $value == 'period'); ?>><?php _e('. (period)', 'geodirectory'); ?></option> |
|
3332 | + <option value="space" <?php selected(true, $value == 'space'); ?>><?php _e(' (space)', 'geodirectory'); ?></option> |
|
3333 | + <option value="apostrophe" <?php selected(true, $value == 'apostrophe'); ?>><?php _e("' (apostrophe)", 'geodirectory'); ?></option> |
|
3334 | + <option value="none" <?php selected(true, $value == 'none'); ?>><?php _e('(none)', 'geodirectory'); ?></option> |
|
3335 | 3335 | </select> |
3336 | 3336 | </div> |
3337 | 3337 | </li> |
@@ -3342,20 +3342,20 @@ discard block |
||
3342 | 3342 | $value = ''; |
3343 | 3343 | if ($extra_fields && isset($extra_fields['decimal_separator'])) { |
3344 | 3344 | $value = esc_attr($extra_fields['decimal_separator']); |
3345 | - }elseif(isset($cf['defaults']['extra_fields']['decimal_separator']) && $cf['defaults']['extra_fields']['decimal_separator']){ |
|
3345 | + }elseif (isset($cf['defaults']['extra_fields']['decimal_separator']) && $cf['defaults']['extra_fields']['decimal_separator']) { |
|
3346 | 3346 | $value = esc_attr($cf['defaults']['extra_fields']['decimal_separator']); |
3347 | 3347 | } |
3348 | 3348 | ?> |
3349 | - <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>> |
|
3350 | - <label for="decimal_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal separator :', 'geodirectory');?> |
|
3349 | + <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>> |
|
3350 | + <label for="decimal_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal separator :', 'geodirectory'); ?> |
|
3351 | 3351 | <div class="gdcf-tooltip"> |
3352 | 3352 | <?php _e('Select the decimal separator.', 'geodirectory'); ?> |
3353 | 3353 | </div> |
3354 | 3354 | </label> |
3355 | 3355 | <div class="gd-cf-input-wrap"> |
3356 | 3356 | <select name="extra[decimal_separator]" id="decimal_separator"> |
3357 | - <option value="period" <?php selected(true, $value == 'period');?>><?php _e('. (period)', 'geodirectory'); ?></option> |
|
3358 | - <option value="comma" <?php selected(true, $value == "comma");?>><?php _e(', (comma)', 'geodirectory'); ?></option> |
|
3357 | + <option value="period" <?php selected(true, $value == 'period'); ?>><?php _e('. (period)', 'geodirectory'); ?></option> |
|
3358 | + <option value="comma" <?php selected(true, $value == "comma"); ?>><?php _e(', (comma)', 'geodirectory'); ?></option> |
|
3359 | 3359 | </select> |
3360 | 3360 | </div> |
3361 | 3361 | </li> |
@@ -3365,20 +3365,20 @@ discard block |
||
3365 | 3365 | $value = ''; |
3366 | 3366 | if ($extra_fields && isset($extra_fields['decimal_display'])) { |
3367 | 3367 | $value = esc_attr($extra_fields['decimal_display']); |
3368 | - }elseif(isset($cf['defaults']['extra_fields']['decimal_display']) && $cf['defaults']['extra_fields']['decimal_display']){ |
|
3368 | + }elseif (isset($cf['defaults']['extra_fields']['decimal_display']) && $cf['defaults']['extra_fields']['decimal_display']) { |
|
3369 | 3369 | $value = esc_attr($cf['defaults']['extra_fields']['decimal_display']); |
3370 | 3370 | } |
3371 | 3371 | ?> |
3372 | - <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>> |
|
3373 | - <label for="decimal_display" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal display :', 'geodirectory');?> |
|
3372 | + <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>> |
|
3373 | + <label for="decimal_display" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal display :', 'geodirectory'); ?> |
|
3374 | 3374 | <div class="gdcf-tooltip"> |
3375 | 3375 | <?php _e('Select how the decimal is displayed', 'geodirectory'); ?> |
3376 | 3376 | </div> |
3377 | 3377 | </label> |
3378 | 3378 | <div class="gd-cf-input-wrap"> |
3379 | 3379 | <select name="extra[decimal_display]" id="decimal_display"> |
3380 | - <option value="if" <?php selected(true, $value == 'if');?>><?php _e('If used (not .00)', 'geodirectory'); ?></option> |
|
3381 | - <option value="allways" <?php selected(true, $value == "allways");?>><?php _e('Always (.00)', 'geodirectory'); ?></option> |
|
3380 | + <option value="if" <?php selected(true, $value == 'if'); ?>><?php _e('If used (not .00)', 'geodirectory'); ?></option> |
|
3381 | + <option value="allways" <?php selected(true, $value == "allways"); ?>><?php _e('Always (.00)', 'geodirectory'); ?></option> |
|
3382 | 3382 | </select> |
3383 | 3383 | </div> |
3384 | 3384 | </li> |
@@ -3388,12 +3388,12 @@ discard block |
||
3388 | 3388 | $value = ''; |
3389 | 3389 | if ($extra_fields && isset($extra_fields['currency_symbol'])) { |
3390 | 3390 | $value = esc_attr($extra_fields['currency_symbol']); |
3391 | - }elseif(isset($cf['defaults']['extra_fields']['currency_symbol']) && $cf['defaults']['extra_fields']['currency_symbol']){ |
|
3391 | + }elseif (isset($cf['defaults']['extra_fields']['currency_symbol']) && $cf['defaults']['extra_fields']['currency_symbol']) { |
|
3392 | 3392 | $value = esc_attr($cf['defaults']['extra_fields']['currency_symbol']); |
3393 | 3393 | } |
3394 | 3394 | ?> |
3395 | - <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>> |
|
3396 | - <label for="currency_symbol" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol :', 'geodirectory');?> |
|
3395 | + <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>> |
|
3396 | + <label for="currency_symbol" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol :', 'geodirectory'); ?> |
|
3397 | 3397 | <div class="gdcf-tooltip"> |
3398 | 3398 | <?php _e('Select the currency symbol.', 'geodirectory'); ?> |
3399 | 3399 | </div> |
@@ -3409,20 +3409,20 @@ discard block |
||
3409 | 3409 | $value = ''; |
3410 | 3410 | if ($extra_fields && isset($extra_fields['currency_symbol_placement'])) { |
3411 | 3411 | $value = esc_attr($extra_fields['currency_symbol_placement']); |
3412 | - }elseif(isset($cf['defaults']['extra_fields']['currency_symbol_placement']) && $cf['defaults']['extra_fields']['currency_symbol_placement']){ |
|
3412 | + }elseif (isset($cf['defaults']['extra_fields']['currency_symbol_placement']) && $cf['defaults']['extra_fields']['currency_symbol_placement']) { |
|
3413 | 3413 | $value = esc_attr($cf['defaults']['extra_fields']['currency_symbol_placement']); |
3414 | 3414 | } |
3415 | 3415 | ?> |
3416 | - <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>> |
|
3417 | - <label for="currency_symbol_placement" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol placement :', 'geodirectory');?> |
|
3416 | + <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>> |
|
3417 | + <label for="currency_symbol_placement" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol placement :', 'geodirectory'); ?> |
|
3418 | 3418 | <div class="gdcf-tooltip"> |
3419 | 3419 | <?php _e('Select the currency symbol placement.', 'geodirectory'); ?> |
3420 | 3420 | </div> |
3421 | 3421 | </label> |
3422 | 3422 | <div class="gd-cf-input-wrap"> |
3423 | 3423 | <select name="extra[currency_symbol_placement]" id="currency_symbol_placement"> |
3424 | - <option value="left" <?php selected(true, $value == 'left');?>><?php _e('Left', 'geodirectory'); ?></option> |
|
3425 | - <option value="right" <?php selected(true, $value == "right");?>><?php _e('Right', 'geodirectory'); ?></option> |
|
3424 | + <option value="left" <?php selected(true, $value == 'left'); ?>><?php _e('Left', 'geodirectory'); ?></option> |
|
3425 | + <option value="right" <?php selected(true, $value == "right"); ?>><?php _e('Right', 'geodirectory'); ?></option> |
|
3426 | 3426 | </select> |
3427 | 3427 | </div> |
3428 | 3428 | </li> |
@@ -3433,11 +3433,11 @@ discard block |
||
3433 | 3433 | $html = ob_get_clean(); |
3434 | 3434 | return $output.$html; |
3435 | 3435 | } |
3436 | -add_filter('geodir_cfa_extra_fields_text','geodir_cfa_extra_fields_text',10,4); |
|
3436 | +add_filter('geodir_cfa_extra_fields_text', 'geodir_cfa_extra_fields_text', 10, 4); |
|
3437 | 3437 | |
3438 | -function geodir_default_custom_fields($post_type='gd_place',$package_id=''){ |
|
3438 | +function geodir_default_custom_fields($post_type = 'gd_place', $package_id = '') { |
|
3439 | 3439 | $fields = array(); |
3440 | - $package = ($package_id=='') ? '' : array($package_id); |
|
3440 | + $package = ($package_id == '') ? '' : array($package_id); |
|
3441 | 3441 | |
3442 | 3442 | $fields[] = array('listing_type' => $post_type, |
3443 | 3443 | 'data_type' => 'VARCHAR', |
@@ -3610,7 +3610,7 @@ discard block |
||
3610 | 3610 | return $fields; |
3611 | 3611 | } |
3612 | 3612 | |
3613 | -function geodir_currency_format_number($number='',$cf=''){ |
|
3613 | +function geodir_currency_format_number($number = '', $cf = '') { |
|
3614 | 3614 | |
3615 | 3615 | $cs = isset($cf['extra_fields']) ? maybe_unserialize($cf['extra_fields']) : ''; |
3616 | 3616 | |
@@ -3619,36 +3619,36 @@ discard block |
||
3619 | 3619 | $decimal_display = !empty($cf['decimal_display']) ? $cf['decimal_display'] : (!empty($cs['decimal_display']) ? $cs['decimal_display'] : 'if'); |
3620 | 3620 | $decimalpoint = '.'; |
3621 | 3621 | |
3622 | - if(isset($cs['decimal_separator']) && $cs['decimal_separator']=='comma'){ |
|
3622 | + if (isset($cs['decimal_separator']) && $cs['decimal_separator'] == 'comma') { |
|
3623 | 3623 | $decimalpoint = ','; |
3624 | 3624 | } |
3625 | 3625 | |
3626 | 3626 | $separator = ','; |
3627 | 3627 | |
3628 | - if(isset($cs['thousand_separator'])){ |
|
3629 | - if($cs['thousand_separator']=='comma'){$separator = ',';} |
|
3630 | - if($cs['thousand_separator']=='slash'){$separator = '\\';} |
|
3631 | - if($cs['thousand_separator']=='period'){$separator = '.';} |
|
3632 | - if($cs['thousand_separator']=='space'){$separator = ' ';} |
|
3633 | - if($cs['thousand_separator']=='apostrophe'){$separator = "'";} |
|
3634 | - if($cs['thousand_separator']=='none'){$separator = '';} |
|
3628 | + if (isset($cs['thousand_separator'])) { |
|
3629 | + if ($cs['thousand_separator'] == 'comma') {$separator = ','; } |
|
3630 | + if ($cs['thousand_separator'] == 'slash') {$separator = '\\'; } |
|
3631 | + if ($cs['thousand_separator'] == 'period') {$separator = '.'; } |
|
3632 | + if ($cs['thousand_separator'] == 'space') {$separator = ' '; } |
|
3633 | + if ($cs['thousand_separator'] == 'apostrophe') {$separator = "'"; } |
|
3634 | + if ($cs['thousand_separator'] == 'none') {$separator = ''; } |
|
3635 | 3635 | } |
3636 | 3636 | |
3637 | 3637 | $currency_symbol_placement = isset($cs['currency_symbol_placement']) ? $cs['currency_symbol_placement'] : 'left'; |
3638 | 3638 | |
3639 | - if($decimals>0 && $decimal_display=='if'){ |
|
3640 | - if(is_int($number) || floor( $number ) == $number) |
|
3639 | + if ($decimals > 0 && $decimal_display == 'if') { |
|
3640 | + if (is_int($number) || floor($number) == $number) |
|
3641 | 3641 | $decimals = 0; |
3642 | 3642 | } |
3643 | 3643 | |
3644 | - $number = number_format($number,$decimals,$decimalpoint,$separator); |
|
3644 | + $number = number_format($number, $decimals, $decimalpoint, $separator); |
|
3645 | 3645 | |
3646 | 3646 | |
3647 | 3647 | |
3648 | - if($currency_symbol_placement=='left'){ |
|
3649 | - $number = $symbol . $number; |
|
3650 | - }else{ |
|
3651 | - $number = $number . $symbol; |
|
3648 | + if ($currency_symbol_placement == 'left') { |
|
3649 | + $number = $symbol.$number; |
|
3650 | + } else { |
|
3651 | + $number = $number.$symbol; |
|
3652 | 3652 | } |
3653 | 3653 | |
3654 | 3654 |