PluginProbe
WP Coder – Insert & Manage Code Snippets / 2.5.6
WP Coder – Insert & Manage Code Snippets v2.5.6
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 2.5.6, at admin/partials/list.php

25 lines 751 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 /**
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 );
14 $list_table->prepare_items();
15 ?>
16 <div class="wrap">
17 <form method="post">
18 <?php
19 $list_table->search_box( __( 'Search', 'wpcoder' ), $this->plugin_slug );
20 $list_table->display();
21 ?>
22 <input type="hidden" name="page" value="<?php echo esc_attr( $_REQUEST['page'] ); ?>" />
23 </form>
24 </div>
25