PluginProbe
Floating Button – Easily Create Sticky, Fixed & Floating Buttons / 6.0
Floating Button – Easily Create Sticky, Fixed & Floating Buttons v6.0
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 / includes / pages / 1.list.php

1.list.php in Floating Button – Easily Create Sticky, Fixed & Floating Buttons 6.0, at includes/pages/1.list.php

23 lines 484 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Page Name: List
4 */
5
6 use FloatingButton\Dashboard\ListTable;
7 use FloatingButton\WOW_Plugin;
8
9 defined( 'ABSPATH' ) || exit;
10
11 $list_table = new ListTable();
12 $list_table->prepare_items();
13 ?>
14
15 <form method="post" class="wowp-list">
16 <?php
17 $list_table->search_box( esc_attr__( 'Search', 'floating-button' ), WOW_Plugin::PREFIX );
18 $list_table->display();
19 ?>
20 <input type="hidden" name="page" value="<?php echo sanitize_text_field( $_REQUEST['page'] ); ?>"/>
21 </form>
22 <?php
23