Browse
For agents
About
Elementor Website Builder – more than just a page builder
/
4.2.4
Elementor Website Builder – more than just a page builder
v4.2.4
Switch version
4.3.0-beta2
4.3.0-beta1
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.5
4.2.0-beta2
4.2.0-dev2
4.2.0-beta1
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.1.0-beta3
4.1.0-dev3
4.0.9
4.1.0-beta2
4.1.0-dev2
4.0.8
4.1.0-beta1
4.1.0-dev1
4.0.7
All 451 releases
Overview
Code
elementor
/
modules
/
system-info
/
templates
/
html.php
html.php
in Elementor Website Builder – more than just a page builder 4.2.4, at modules/system-info/templates/html.php
28 lines
559 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
if
(
!
defined
(
'
ABSPATH
'
)
)
{
3
exit
;
//
Exit if accessed directly.
4
}
5
6
/**
7
*
@var
array
$reports
8
*/
9
foreach
(
$
reports
as
$
report_name
=>
$
report
)
:
?
>
10
<
div
class
=
"
elementor-system-info-section elementor-system-info-<?php echo esc_attr(
$
report_name
); ?>
"
>
11
<
table
class
=
"
widefat
"
>
12
<
thead
>
13
<
tr
>
14
<
th
>
<
?
php
$
report
[
'
report
'
]
->
print_html_label
(
(
$
report
[
'
label
'
]
)
)
;
?
>
<
/
th
>
15
<
th
>
<
/
th
>
16
<
th
>
<
/
th
>
17
<
/
tr
>
18
<
/
thead
>
19
<
tbody
>
20
<
?
php
21
$
report
[
'
report
'
]
->
print_html
(
)
;
22
?
>
23
<
/
tbody
>
24
<
/
table
>
25
<
/
div
>
26
<
?
php
27
endforeach
;
28