Browse
For agents
About
ezCache
/
1.3
ezCache
v1.3
Switch version
2.6.5
2.6.4
2.6.2
2.6.3
2.6.1
2.6.0
2.5.6
2.5.5
2.5.4
2.5.3
2.5.2
2.5.1
2.5
2.2.1
2.2.2
trunk
1.2
1.2.1
1.2.2
1.2.3
1.2.4
1.3
1.3.1
1.3.10
1.3.11
All 49 releases
Overview
Code
ezcache
/
uninstall.php
uninstall.php
in ezCache 1.3, at uninstall.php
13 lines
293 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
3
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
4
die
(
'
NO direct access!
'
)
;
5
}
6
7
/**
@noinspection PhpIncludeInspection
*/
8
include_once
__DIR__
.
'
/plugins/ezcache/vendor/autoload.php
'
;
9
10
if
(
class_exists
(
'
\Upress\EzCache\Updater
'
)
)
{
11
\
Upress
\
EzCache
\
Updater
::
uninstall
(
)
;
12
}
13