Browse
For agents
About
RabbitLoader
/
4.0.2
RabbitLoader
v4.0.2
Switch version
4.0.2
4.0.1
4.0
3.2.0
3.1.1
3.1.0
3.0.5
3.0.3
3.0.4
2.17.1
2.17.2
2.17.3
2.17.4
2.17.5
2.17.6
2.17.7
2.18.0
2.18.1
2.18.2
2.18.3
2.18.4
2.18.5
2.18.6
2.18.7
2.18.8
All 129 releases
Overview
Code
rabbit-loader
/
uninstall.php
uninstall.php
in RabbitLoader 4.0.2, at uninstall.php
14 lines
379 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
* RabbitLoader v5 intentionally leaves the existing RabbitLoader connection
4
* option in place on uninstall. The option is shared with the existing
5
* RabbitLoader runtime and deleting it here could destroy a valid connection
6
* during a rebuild/migration.
7
*/
8
9
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
10
exit
;
11
}
12
13
delete_transient
(
'
rabbitloader_trans_overview_data
'
)
;
14