Browse
For agents
About
Plugins List
/
2.3.2
Plugins List
v2.3.2
Switch version
trunk
0.2.1
0.2.2
1.0
2.0
2.1
2.2.7
2.3.2
2.4.4
2.5.2
2.6
2.6.1
2.7
Overview
Code
plugins-list
/
uninstall.php
uninstall.php
in Plugins List 2.3.2, at uninstall.php
18 lines
331 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
* Uninstaller
4
*
5
* Uninstall the plugin by removing any options from the database
6
*
7
*
@package
Artiss-Plugins-List
8
*
@since
2.2.1
9
*/
10
11
//
If the uninstall was not called by WordPress, exit
12
13
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
exit
(
)
;
}
14
15
//
Delete cache
16
17
delete_transient
(
'
artiss_plugins_list
'
)
;
18
?
>