block.json
1 year ago
controller.php
1 year 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
controller.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | global $sc_query_id; |
| 4 | |
| 5 | // Set the intitial state used in SSR. |
| 6 | wp_interactivity_state( |
| 7 | 'surecart/product-list', |
| 8 | [ |
| 9 | 'loading' => false, |
| 10 | 'searching' => false, |
| 11 | ] |
| 12 | ); |
| 13 | |
| 14 | // For Analytics. |
| 15 | $query = sc_product_list_query( $block ); |
| 16 | $products = $query->products; |
| 17 | |
| 18 | // return the view. |
| 19 | return 'file:./view.php'; |
| 20 |