block.json
1 year ago
controller.php
3 weeks ago
error.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
20 lines
| 1 | <div |
| 2 | <?php echo wp_kses_data( get_block_wrapper_attributes() ); ?> |
| 3 | <?php |
| 4 | echo wp_kses_data( |
| 5 | wp_interactivity_data_wp_context( |
| 6 | array( |
| 7 | 'urlPrefix' => sc_product_list_prefix( $block ), |
| 8 | 'products' => $products, |
| 9 | ) |
| 10 | ) |
| 11 | ); |
| 12 | ?> |
| 13 | data-wp-interactive='{ "namespace": "surecart/product-list" }' |
| 14 | data-wp-router-region="<?php echo esc_attr( 'products-' . $sc_query_id ); ?>" |
| 15 | data-wp-watch="callbacks.onChangeProducts" |
| 16 | > |
| 17 | <?php echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 18 | <div class="sc-block-ui" data-wp-bind--hidden="!state.loading" hidden></div> |
| 19 | </div> |
| 20 |