# elasticpress/5.0.2/includes/partials/dashboard-page.php

ElasticPress, version 5.0.2. 23 lines.

- Page: https://pluginprobe.com/plugins/elasticpress/5.0.2/code/includes/partials/dashboard-page.php
- Raw: https://pluginprobe.com/plugins/elasticpress/5.0.2/raw/includes/partials/dashboard-page.php
- Modified: 2023-11-01T18:08:28+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/elasticpress/5.0.2/code/includes/partials/dashboard-page.php#L10-L20`.

```php
<?php
/**
 * Template for ElasticPress dashboard page
 *
 * @since  2.1
 * @package elasticpress
 */

use ElasticPress\Elasticsearch;
use ElasticPress\Features;
use ElasticPress\IndexHelper;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

$index_meta = IndexHelper::factory()->get_index_meta();
?>

<?php require_once __DIR__ . '/header.php'; ?>

<div id="ep-dashboard" class="wrap"></div>

```
