| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
|
| 6 |
$id = wp_unique_id( 'bBlocksMediaTextSection-' ); |
| 7 |
use BBlocks\Inc\Utils as Utils; |
| 8 |
$planClass = Utils::isPro() ? 'pro' : 'free'; |
| 9 |
?> |
| 10 |
<div |
| 11 |
<?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- get_block_wrapper_attributes() is properly escaped ?> |
| 12 |
<?php echo get_block_wrapper_attributes( [ 'class' => $planClass ] ); ?> |
| 13 |
id='<?php echo esc_attr( $id ); ?>' |
| 14 |
data-attributes='<?php echo esc_attr( wp_json_encode( $attributes ) ); ?>' |
| 15 |
> |
| 16 |
<div class="bBlocksMediaTextSectionInnerBlockContent"> |
| 17 |
<?php echo $content; ?> |
| 18 |
</div> |
| 19 |
</div> |