| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; |
| 2 |
include( 'list/class-list-table.php' ); |
| 3 |
$list_table = new Wow_List_Table($data, $this->pluginname, $this->shortcode); |
| 4 |
$list_table->prepare_items(); |
| 5 |
?> |
| 6 |
<div class="wrap"> |
| 7 |
<form method="post" class="wow-login-table"> |
| 8 |
<?php |
| 9 |
$list_table->search_box( 'Search', $this->pluginname ); |
| 10 |
$list_table->display(); |
| 11 |
?> |
| 12 |
<input type="hidden" name="page" value="<?php echo $_REQUEST['page']; ?>" /> |
| 13 |
<?php wp_nonce_field('wow_login_export_action','wow_login_export_field'); ?> |
| 14 |
</form> |
| 15 |
</div> |
| 16 |
|