# wp-coder/2.3.2/admin/partials/list.php

WP Coder – Insert &amp; Manage Code Snippets, version 2.3.2. 25 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/2.3.2/code/admin/partials/list.php
- Raw: https://pluginprobe.com/plugins/wp-coder/2.3.2/raw/admin/partials/list.php
- Modified: 2019-12-14T08:47:52+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/wp-coder/2.3.2/code/admin/partials/list.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) exit;
	/**
		* List of Elements
		*
		* @package     Wow_Plugin
		* @copyright   Copyright (c) 2018, Dmytro Lobov
		* @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
		* @since       1.0
	*/
	if ( ! defined( 'ABSPATH' ) ) exit;
	
	require_once 'class-list-table.php';	
	$list_table = new Wow_List_Table( $data, $this->plugin_slug, $this->shortcode );
	$list_table->prepare_items();
?>	 
<div class="wrap">		
	<form method="post">		
		<?php			
			$list_table->search_box( __( 'Search', 'wpcoder' ), $this->plugin_slug );
			$list_table->display();
		?>		
		<input type="hidden" name="page" value="<?php echo sanitize_text_field( $_REQUEST['page'] ); ?>" />			
	</form>
</div>

```
