add-new-product-button.php
2 months ago
confirm-bulk-delete.php
2 years ago
edit.php
4 years ago
import-results.php
2 months ago
index.php
5 days ago
spa.php
1 week ago
index.php
21 lines
| 1 | <div class="wrap"> |
| 2 | <?php \SureCart::render( 'layouts/partials/admin-index-styles' ); ?> |
| 3 | <?php \SureCart::render( 'layouts/partials/admin-product-list-styles' ); ?> |
| 4 | <?php |
| 5 | \SureCart::render( |
| 6 | 'layouts/partials/admin-index-header', |
| 7 | [ |
| 8 | 'title' => __( 'Products', 'surecart' ), |
| 9 | 'after_title' => \SureCart::view( 'admin/products/add-new-product-button' )->toString(), |
| 10 | ] |
| 11 | ); |
| 12 | ?> |
| 13 | |
| 14 | <?php $table->search_form( __( 'Search Products', 'surecart' ), 'sc-search-products' ); ?> |
| 15 | |
| 16 | <form id="products-filter" method="get"> |
| 17 | <?php $table->views(); ?> |
| 18 | <?php $table->display(); ?> |
| 19 | </form> |
| 20 | </div> |
| 21 |