PluginProbe
Floating Button – Easily Create Sticky, Fixed & Floating Buttons / 5.0.1
Floating Button – Easily Create Sticky, Fixed & Floating Buttons v5.0.1
trunk 2.0.2 3.0 4.0 4.1.2 4.3 5.0 5.0.1 5.1 5.1.1 5.2 5.3 5.3.1 6.0 6.0.1 6.0.10 6.0.11 6.0.12 6.0.13 6.0.2 6.0.3 6.0.4 6.0.5 6.0.6 6.0.7 All 31 releases
floating-button / admin / page-list.php

page-list.php in Floating Button – Easily Create Sticky, Fixed & Floating Buttons 5.0.1, at admin/page-list.php

31 lines 706 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 <helper@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', 'floating-button' ), $this->plugin['slug'] );
26 $list_table->display();
27 ?>
28 <input type="hidden" name="page" value="<?php echo sanitize_text_field( $_REQUEST['page'] ); ?>"/>
29 </form>
30 </div>
31