Browse
For agents
About
HTTP Headers
/
trunk
HTTP Headers
vtrunk
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 trunk, at uninstall.php
12 lines
313 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
$
http_headers_options
=
include
dirname
(
__FILE__
)
.
'
/views/includes/options.inc.php
'
;
8
9
foreach
(
$
http_headers_options
as
$
http_headers_option
)
10
{
11
delete_option
(
$
http_headers_option
[
0
]
)
;
12
}