PluginProbe
WP Coder – Insert & Manage Code Snippets / 1.1
WP Coder – Insert & Manage Code Snippets v1.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 / admin / partials / list.php

list.php in WP Coder – Insert & Manage Code Snippets 1.1, at admin/partials/list.php

16 lines 562 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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