index.php
17 lines
| 1 | <div class="wrap"> |
| 2 | <?php |
| 3 | \SureCart::render( |
| 4 | 'layouts/partials/admin-index-header', |
| 5 | [ |
| 6 | 'title' => __( 'Reviews', 'surecart' ), |
| 7 | ] |
| 8 | ); |
| 9 | ?> |
| 10 | |
| 11 | <?php $table->search_form( __( 'Search', 'surecart' ), 'sc-search-reviews' ); ?> |
| 12 | |
| 13 | <form id="reviews-filter" method="get"> |
| 14 | <?php $table->views(); ?> |
| 15 | <?php $table->display(); ?> |
| 16 | </form> |
| 17 | </div> |