index.php
31 lines
| 1 | <div class="wrap"> |
| 2 | |
| 3 | <?php |
| 4 | echo wp_kses_post( |
| 5 | \SureCart::notices()->render( |
| 6 | [ |
| 7 | 'name' => 'subscription_info', |
| 8 | 'title' => esc_html__( 'What are Subscriptions?', 'surecart' ), |
| 9 | 'text' => esc_html__( 'This is a list for all your subscription plans. Subscriptions represent recurring payment plans for your users.', 'surecart' ), |
| 10 | ] |
| 11 | ) |
| 12 | ); |
| 13 | ?> |
| 14 | |
| 15 | <?php |
| 16 | \SureCart::render( 'layouts/partials/admin-index-styles' ); |
| 17 | ?> |
| 18 | |
| 19 | <?php |
| 20 | \SureCart::render( |
| 21 | 'layouts/partials/admin-index-header', |
| 22 | [ |
| 23 | 'title' => __( 'Subscriptions', 'surecart' ), |
| 24 | ] |
| 25 | ); |
| 26 | ?> |
| 27 | |
| 28 | <?php $table->search_form( __( 'Search Subscriptions', 'surecart' ), 'sc-search-subscriptions' ); ?> |
| 29 | <?php $table->display(); ?> |
| 30 | </div> |
| 31 |