Browse
For agents
About
Social Share for WooCommerce
/
trunk
Social Share for WooCommerce
vtrunk
Switch version
1.2.23
trunk
1.0
1.0.1
1.1.0
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.1.6
1.1.6.1
1.1.6.2
1.1.7
1.2.0
1.2.1
1.2.1.1
1.2.10
1.2.11
1.2.12
1.2.13
1.2.14
1.2.15
1.2.15.1
1.2.16
All 41 releases
Overview
Code
product-share
/
uninstall.php
uninstall.php
in Social Share for WooCommerce trunk, at uninstall.php
15 lines
276 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 uninstall.php is not called by WordPress, die
4
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
5
die
;
6
}
7
8
$
psfw_options_array
=
array
(
9
'
product_share_option
'
,
10
)
;
11
12
foreach
(
$
psfw_options_array
as
$
psfw_key
=>
$
psfw_option
)
{
13
delete_option
(
$
psfw_option
)
;
14
}
15