# elementor/3.27.0-dev2/modules/system-info/templates/raw.php

Elementor Website Builder – more than just a page builder, version 3.27.0-dev2. 21 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.27.0-dev2/code/modules/system-info/templates/raw.php
- Raw: https://pluginprobe.com/plugins/elementor/3.27.0-dev2/raw/modules/system-info/templates/raw.php
- Modified: 2023-04-23T11:22:46+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.27.0-dev2/code/modules/system-info/templates/raw.php#L10-L20`.

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

/**
 * @var array $reports
 * @var int   $tabs_count
 */
$tabs_count++;

foreach ( $reports as $report_name => $report ) :
	$report['report']->print_raw( $tabs_count );

	if ( ! empty( $report['sub'] ) ) :
		$this->print_report( $report['sub'], $template, true );
	endif;
endforeach;

$tabs_count--;

```
