Browse
For agents
About
Pdf Embed
/
trunk
Pdf Embed
vtrunk
Switch version
0.6.2
0.6.1
trunk
0.1.0
0.1.1
0.1.2
0.1.3
0.1.4
0.1.5
0.1.6
0.1.7
0.1.8
0.1.9
0.2.0
0.2.1
0.2.2
0.2.3
0.2.4
0.2.5
0.2.6
0.2.7
0.2.8
0.2.9
0.3.0
0.3.1
All 54 releases
Overview
Code
pdf-embed
/
uninstall.php
uninstall.php
in Pdf Embed trunk, at uninstall.php
17 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
/**
3
* Uninstall hook
4
*
5
*
@package
popper
6
*/
7
8
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
||
exit
;
9
10
$
pdf_embed
=
get_option
(
'
pdf_embed_api_key
'
,
false
)
;
11
12
if
(
$
pdf_embed
)
{
13
delete_option
(
'
pdf_embed_api_key
'
)
;
14
}
15
16
delete_option
(
'
pdf_embed
'
)
;
17