PluginProbe
Button Generator – Easily Create Custom Buttons with Icons and Analytics / 2.3.9
Button Generator – Easily Create Custom Buttons with Icons and Analytics v2.3.9
trunk 1.1.1 2.0 2.1 2.2 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.2 3.1.3 3.2 3.2.1 3.2.2 3.2.3 All 28 releases
button-generation / admin / partials / list.php

list.php in Button Generator – Easily Create Custom Buttons with Icons and Analytics 2.3.9, at admin/partials/list.php

31 lines 715 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * List of Items
4 *
5 * @package Wow_Plugin
6 * @subpackage Admin/Items
7 * @author Wow-Company <yoda@wow-company.com>
8 * @copyright 2019 Wow-Company
9 * @license GNU Public License
10 * @version 1.0
11 */
12
13 if ( ! defined( 'ABSPATH' ) ) {
14 exit;
15 }
16
17 require_once 'class-list-table.php';
18
19 $list_table = new Wow_List_Table( $data, $this->plugin );
20 $list_table->prepare_items();
21 ?>
22 <div class="wrap">
23 <form method="post">
24 <?php
25 $list_table->search_box( esc_attr__( 'Search', $this->plugin['text'] ), $this->plugin['slug'] );
26 $list_table->display();
27 ?>
28 <input type="hidden" name="page" value="<?php echo esc_attr( $_REQUEST['page'] ); ?>"/>
29 </form>
30 </div>
31