PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.0.1
WP Coder – Insert & Manage Code Snippets v3.0.1
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / includes / pages / 1.list.php

1.list.php in WP Coder – Insert & Manage Code Snippets 3.0.1, at includes/pages/1.list.php

23 lines 462 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Page Name: List
4 */
5
6 use WPCoder\Dashboard\ListTable;
7 use WPCoder\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', 'wpcoder' ), 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