block.json
5 months ago
controller.php
5 months ago
index-rtl.css
5 months ago
index.asset.php
5 months ago
index.css
5 months ago
index.js
5 months ago
legacy.php
5 months ago
style-index-rtl.css
5 months ago
style-index.css
5 months ago
upsell-quantity.php
1 year ago
view.php
5 months ago
controller.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | $product = sc_get_product(); |
| 4 | |
| 5 | if ( get_query_var( 'sc_upsell_id' ) ) { |
| 6 | return 'file:./upsell-quantity.php'; |
| 7 | } |
| 8 | |
| 9 | $attributes['label'] = $attributes['label'] ?? __( 'Quantity', 'surecart' ); |
| 10 | |
| 11 | if ( ! empty( $content ) ) { |
| 12 | return 'file:./view.php'; |
| 13 | } |
| 14 | |
| 15 | $styles = sc_get_block_styles( false ); |
| 16 | |
| 17 | // return the view. |
| 18 | return 'file:./legacy.php'; |
| 19 |