# elementor/3.7.5/modules/system-info/templates/html.php

Elementor Website Builder – more than just a page builder, version 3.7.5. 28 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.7.5/code/modules/system-info/templates/html.php
- Raw: https://pluginprobe.com/plugins/elementor/3.7.5/raw/modules/system-info/templates/html.php
- Modified: 2021-11-17T08:27:36+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/elementor/3.7.5/code/modules/system-info/templates/html.php#L10-L20`.

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

/**
 * @var array $reports
 */
foreach ( $reports as $report_name => $report ) : ?>
	<div class="elementor-system-info-section elementor-system-info-<?php echo esc_attr( $report_name ); ?>">
		<table class="widefat">
			<thead>
			<tr>
				<th><?php $report['report']->print_html_label( ( $report['label'] ) ); ?></th>
				<th></th>
				<th></th>
			</tr>
			</thead>
			<tbody>
			<?php
				$report['report']->print_html();
			?>
			</tbody>
		</table>
	</div>
	<?php
endforeach;

```
