view.php
8 lines
| 1 | <?php |
| 2 | $style = ! empty( $attributes['width'] ) ? 'min-width: ' . $attributes['width'] . ';' : ''; |
| 3 | ?> |
| 4 | <div <?php echo wp_kses_data( get_block_wrapper_attributes( [ 'style' => $style ] ) ); ?> |
| 5 | data-wp-class--quantity--disabled="state.isQuantityDisabled"> |
| 6 | <?php echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 7 | </div> |
| 8 |