block.json
1 year ago
controller.php
1 year ago
index.asset.php
1 month ago
index.js
1 month ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.php
1 year ago
view.php
28 lines
| 1 | <div |
| 2 | <?php echo wp_kses_data( |
| 3 | get_block_wrapper_attributes( |
| 4 | array( |
| 5 | 'style' => $style, |
| 6 | ) |
| 7 | ) |
| 8 | ); ?> |
| 9 | > |
| 10 | <div |
| 11 | class="wp-block-surecart-slide-out-cart-header__close" |
| 12 | data-wp-on--click="surecart/cart::actions.toggle" |
| 13 | role="button" |
| 14 | tabindex="0" |
| 15 | aria-label="<?php esc_attr_e( 'Close cart', 'surecart' ); ?>" |
| 16 | > |
| 17 | <?php echo wp_kses( SureCart::svg()->get( 'arrow-right' ), sc_allowed_svg_html() ); ?> |
| 18 | </div> |
| 19 | |
| 20 | <span class="wp-block-surecart-slide-out-cart-header__title" inert> |
| 21 | <?php echo wp_kses_post( $attributes['text'] ); ?> |
| 22 | </span> |
| 23 | |
| 24 | <div class="sc-tag sc-tag--default"> |
| 25 | <span data-wp-text="state.itemsCount"></span> |
| 26 | </div> |
| 27 | </div> |
| 28 |