| 1 |
<?php |
| 2 |
$id = wp_unique_id( 'bBlocksAlert-' ); |
| 3 |
$planClass = BBlocks\Inc\Utils::isPro() ? 'pro' : 'free'; |
| 4 |
?> |
| 5 |
<div |
| 6 |
<?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- get_block_wrapper_attributes() is properly escaped ?> |
| 7 |
<?php echo get_block_wrapper_attributes( [ 'class' => $planClass ] ); ?> |
| 8 |
id='<?php echo esc_attr( $id ); ?>' |
| 9 |
data-attributes='<?php echo esc_attr( wp_json_encode( $attributes ) ); ?>' |
| 10 |
></div> |