Browse
For agents
About
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript
/
1.9.7
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript
v1.9.7
Switch version
4.1.16
4.1.15
4.1.14
4.1.13
4.1.12
4.1.11
4.1.10
4.0.30
4.0.29
4.0.28
4.0.27
4.0.26
4.0.24
4.0.25
4.0.23
4.0.22
4.0.21
4.0.19
4.0.18
4.0.17
4.0.16
1.9.3
1.9.4
1.9.5
1.9.6
All 170 releases
Overview
Code
searchpro
/
inc
/
photon
/
class-berqImages.php
class-berqImages.php
in BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript 1.9.7, at inc/photon/class-berqImages.php
17 lines
485 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
'
)
)
exit
;
3
4
class
berqImagesOpt
{
5
public
$
time
=
null
;
6
public
$
image_lazy_loading
=
null
;
7
8
function
optimize_images
(
$
buffer
)
{
9
$
this
->
time
=
time
(
)
;
10
11
require_once
optifer_PATH
.
'
/inc/photon/image-optimize/image_tag_opt.php
'
;
12
require_once
optifer_PATH
.
'
/inc/photon/image-optimize/bg_image_opt.php
'
;
13
require_once
optifer_PATH
.
'
/inc/photon/image-optimize/img_in_attr.php
'
;
14
15
return
$
buffer
;
16
}
17
}