| 1 |
<?php |
| 2 |
/* |
| 3 |
* Page Name: List |
| 4 |
*/ |
| 5 |
|
| 6 |
use FloatingButton\Dashboard\ListTable; |
| 7 |
use FloatingButton\WOW_Plugin; |
| 8 |
|
| 9 |
defined( 'ABSPATH' ) || exit; |
| 10 |
|
| 11 |
$list_table = new ListTable(); |
| 12 |
$list_table->prepare_items(); |
| 13 |
?> |
| 14 |
|
| 15 |
<form method="post" class="wowp-list"> |
| 16 |
<?php |
| 17 |
$list_table->search_box( esc_attr__( 'Search', 'floating-button' ), WOW_Plugin::PREFIX ); |
| 18 |
$list_table->display(); |
| 19 |
?> |
| 20 |
<input type="hidden" name="page" value="<?php echo sanitize_text_field( $_REQUEST['page'] ); ?>"/> |
| 21 |
</form> |
| 22 |
<?php |
| 23 |
|