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
← All changes | admin/partials/list.php +6 -15 2.3.21.1 View file →
@@ -1,24 +1,15 @@
1 1 <?php if ( ! defined( 'ABSPATH' ) ) exit;
2 - /**
3 - * List of Elements
4 - *
5 - * @package Wow_Plugin
6 - * @copyright Copyright (c) 2018, Dmytro Lobov
7 - * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8 - * @since 1.0
9 - */
10 - if ( ! defined( 'ABSPATH' ) ) exit;
11 -
12 - require_once 'class-list-table.php';
13 - $list_table = new Wow_List_Table( $data, $this->plugin_slug, $this->shortcode );
2 + include( 'list/class-list-table.php' );
3 + $list_table = new Wow_List_Table($data, $this->pluginname, $this->shortcode);
14 4 $list_table->prepare_items();
15 5 ?>
16 6 <div class="wrap">
17 - <form method="post">
7 + <form method="post" class="wow-login-table">
18 8 <?php
19 - $list_table->search_box( __( 'Search', 'wpcoder' ), $this->plugin_slug );
9 + $list_table->search_box( 'Search', $this->pluginname );
20 10 $list_table->display();
21 11 ?>
22 - <input type="hidden" name="page" value="<?php echo sanitize_text_field( $_REQUEST['page'] ); ?>" />
12 + <input type="hidden" name="page" value="<?php echo $_REQUEST['page']; ?>" />
13 + <?php wp_nonce_field('wow_login_export_action','wow_login_export_field'); ?>
23 14 </form>
24 15 </div>