Browse
For agents
About
HTTP Headers
/
1.11.0
HTTP Headers
v1.11.0
Switch version
1.19.5
trunk
1.0.0
1.1.0
1.1.1
1.1.2
1.10.0
1.10.1
1.10.2
1.10.3
1.10.4
1.10.5
1.11.0
1.12.0
1.12.1
1.12.2
1.13.0
1.13.1
1.13.2
1.13.3
1.13.4
1.14.0
1.14.1
1.14.2
1.15.0
All 60 releases
Overview
Code
http-headers
/
uninstall.php
uninstall.php
in HTTP Headers 1.11.0, at uninstall.php
12 lines
246 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 uninstall is not called from WordPress, exit
3
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
4
exit
(
)
;
5
}
6
7
include
dirname
(
__FILE__
)
.
'
/views/includes/config.inc.php
'
;
8
9
foreach
(
$
options
as
$
option
)
10
{
11
delete_option
(
$
option
)
;
12
}