| 1 |
<?php |
| 2 |
/** |
| 3 |
* Sureforms Address Markup Class file. |
| 4 |
* |
| 5 |
* @package sureforms. |
| 6 |
* @since 0.0.1 |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace SRFM\Inc\Fields; |
| 10 |
|
| 11 |
if ( ! defined( 'ABSPATH' ) ) { |
| 12 |
exit; // Exit if accessed directly. |
| 13 |
} |
| 14 |
|
| 15 |
/** |
| 16 |
* Sureforms Address Markup Class. |
| 17 |
* |
| 18 |
* @since 0.0.1 |
| 19 |
*/ |
| 20 |
class Address_Markup extends Base { |
| 21 |
/** |
| 22 |
* Initialize the properties based on block attributes. |
| 23 |
* |
| 24 |
* @param array<mixed> $attributes Block attributes. |
| 25 |
* @since 0.0.2 |
| 26 |
*/ |
| 27 |
public function __construct( $attributes ) { |
| 28 |
$this->set_properties( $attributes ); |
| 29 |
$this->set_input_label( __( 'Address', 'sureforms' ) ); |
| 30 |
$this->slug = 'address'; |
| 31 |
$this->set_markup_properties(); |
| 32 |
} |
| 33 |
|
| 34 |
/** |
| 35 |
* Render the sureforms address classic styling |
| 36 |
* |
| 37 |
* @param string $content inner block content. |
| 38 |
* @since 0.0.2 |
| 39 |
* @return string|bool |
| 40 |
*/ |
| 41 |
public function markup( $content = '' ) { |
| 42 |
/** |
| 43 |
* Filter extra CSS classes for the address field wrapper. |
| 44 |
* |
| 45 |
* @param array<string> $extra_classes Extra CSS classes. |
| 46 |
* @param array<mixed> $attributes Block attributes. |
| 47 |
* @since 2.8.0 |
| 48 |
*/ |
| 49 |
$extra_classes = apply_filters( 'srfm_address_field_classes', [], $this->attributes ); |
| 50 |
|
| 51 |
$this->class_name = $this->get_field_classes( $extra_classes ); |
| 52 |
|
| 53 |
/** |
| 54 |
* Filter additional HTML attributes for the address block wrapper div. |
| 55 |
* |
| 56 |
* IMPORTANT: Callbacks MUST escape all values with esc_attr() before |
| 57 |
* returning. The output is echoed directly into a <div> tag. |
| 58 |
* |
| 59 |
* @param string $extra_attrs Additional HTML attributes string (pre-escaped). |
| 60 |
* @param array<mixed> $attributes Block attributes. |
| 61 |
* @since 2.8.0 |
| 62 |
*/ |
| 63 |
$extra_attrs = apply_filters( 'srfm_address_block_attributes', '', $this->attributes ); |
| 64 |
|
| 65 |
ob_start(); ?> |
| 66 |
<div data-block-id="<?php echo esc_attr( $this->block_id ); ?>" class="<?php echo esc_attr( $this->class_name ); ?>" data-slug="<?php echo esc_attr( $this->block_slug ); ?>" |
| 67 |
<?php |
| 68 |
echo $extra_attrs; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaped by the filter callback. |
| 69 |
?> |
| 70 |
> |
| 71 |
<fieldset> |
| 72 |
<legend class="srfm-block-legend"> |
| 73 |
<?php echo wp_kses_post( $this->label_markup ); ?> |
| 74 |
</legend> |
| 75 |
<?php echo wp_kses_post( $this->help_markup ); ?> |
| 76 |
<?php |
| 77 |
/** |
| 78 |
* Fires after the address field legend, before the inner block content. |
| 79 |
* Used by pro to render the autocomplete search input. |
| 80 |
* |
| 81 |
* @param array<mixed> $attributes Block attributes. |
| 82 |
* @param string $block_id Block ID. |
| 83 |
* @since 2.8.0 |
| 84 |
*/ |
| 85 |
do_action( 'srfm_address_before_fields', $this->attributes, $this->block_id ); |
| 86 |
?> |
| 87 |
<div class="srfm-block-wrap"> |
| 88 |
<?php |
| 89 |
// phpcs:ignore |
| 90 |
echo $content; |
| 91 |
// phpcs:ignoreEnd |
| 92 |
?> |
| 93 |
</div> |
| 94 |
<?php |
| 95 |
/** |
| 96 |
* Fires after the inner block content, before the closing fieldset. |
| 97 |
* Used by pro to render hidden fields and map container. |
| 98 |
* |
| 99 |
* @param array<mixed> $attributes Block attributes. |
| 100 |
* @param string $block_id Block ID. |
| 101 |
* @since 2.8.0 |
| 102 |
*/ |
| 103 |
do_action( 'srfm_address_after_fields', $this->attributes, $this->block_id ); |
| 104 |
?> |
| 105 |
</fieldset> |
| 106 |
</div> |
| 107 |
<?php |
| 108 |
return ob_get_clean(); |
| 109 |
} |
| 110 |
} |
| 111 |
|