Browse
For agents
About
Multi Device Switcher
/
1.5.3
Multi Device Switcher
v1.5.3
Switch version
trunk
1.0.0
1.0.1
1.0.2
1.0.3
1.0.4
1.1.0
1.1.1
1.1.2
1.2.0
1.2.1
1.2.2
1.2.3
1.3.0
1.4.0
1.4.1
1.4.2
1.5.0
1.5.1
1.5.2
1.5.3
1.5.4
1.6.0
1.6.1
1.6.2
All 34 releases
Overview
Code
multi-device-switcher
/
uninstall.php
uninstall.php
in Multi Device Switcher 1.5.3, at uninstall.php
13 lines
208 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
exit
(
)
;
5
}
6
7
function
multi_device_switcher_delete_plugin
(
)
{
8
delete_option
(
'
multi_device_switcher_options
'
)
;
9
}
10
11
multi_device_switcher_delete_plugin
(
)
;
12
13
?
>