# floating-button/5.0/admin/page-list.php

Floating Button – Easily Create Sticky, Fixed &amp; Floating Buttons, version 5.0. 31 lines.

- Page: https://pluginprobe.com/plugins/floating-button/5.0/code/admin/page-list.php
- Raw: https://pluginprobe.com/plugins/floating-button/5.0/raw/admin/page-list.php
- Modified: 2021-09-20T13:38:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/floating-button/5.0/code/admin/page-list.php#L10-L20`.

```php
<?php
/**
 * List of Items
 *
 * @package     Wow_Plugin
 * @subpackage  Admin/Items
 * @author      Wow-Company <helper@wow-company.com>
 * @copyright   2019 Wow-Company
 * @license     GNU Public License
 * @version     1.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

require_once 'class-list-table.php';

$list_table = new Wow_List_Table( $data, $this->plugin );
$list_table->prepare_items();
?>
<div class="wrap">
    <form method="post">
		<?php
		$list_table->search_box( esc_attr__( 'Search', 'floating-button' ), $this->plugin['slug'] );
		$list_table->display();
		?>
        <input type="hidden" name="page" value="<?php echo sanitize_text_field( $_REQUEST['page'] ); ?>"/>
    </form>
</div>

```
