# bubble-menu/2.2/admin/partials/list.php

Bubble Menu – Floating Button Menu with Sticky Navigation, version 2.2. 31 lines.

- Page: https://pluginprobe.com/plugins/bubble-menu/2.2/code/admin/partials/list.php
- Raw: https://pluginprobe.com/plugins/bubble-menu/2.2/raw/admin/partials/list.php
- Modified: 2021-06-01T15:08:22+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/bubble-menu/2.2/code/admin/partials/list.php#L10-L20`.

```php
<?php
/**
 * List of Items
 *
 * @package     Wow_Plugin
 * @subpackage  Admin/Items
 * @author      Dmytro Lobov <i@wpbiker.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', $this->plugin['text'] ), $this->plugin['slug'] );
		$list_table->display();
		?>
		<input type="hidden" name="page" value="<?php echo sanitize_text_field( $_REQUEST['page'] ); ?>"/>
	</form>
</div>

```
