# elasticpress/4.4.0/includes/partials/status-report-page.php

ElasticPress, version 4.4.0. 25 lines.

- Page: https://pluginprobe.com/plugins/elasticpress/4.4.0/code/includes/partials/status-report-page.php
- Raw: https://pluginprobe.com/plugins/elasticpress/4.4.0/raw/includes/partials/status-report-page.php
- Modified: 2022-11-29T18:22:08+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/4.4.0/code/includes/partials/status-report-page.php#L10-L20`.

```php
<?php
/**
 * Template for ElasticPress Status Report
 *
 * @since 4.4.0
 * @package elasticpress
 */

use ElasticPress\Screen\StatusReport;

defined( 'ABSPATH' ) || exit;

$status_report = new StatusReport();

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

<div class="wrap">
	<h1><?php esc_html_e( 'Status Report', 'elasticpress' ); ?></h1>
	<div class="ep-status-report">
		<?php $status_report->render_reports(); ?>
		<div id="ep-status-reports"></div>
	</div>
</div>

```
