/var/www/html_it_bk/wp-content/plugins/elementor/modules/system-info/templates/raw.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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'], $templatetrue );
    endif;
endforeach;

$tabs_count--;