Browse
For agents
About
Unagi
/
trunk
Unagi
vtrunk
Switch version
0.3.1
trunk
0.1.0
0.1.1
0.1.2
0.1.3
0.1.4
0.1.5
0.2
0.2.1
0.2.2
0.3
Overview
Code
unagi
/
uninstall.php
uninstall.php
in Unagi trunk, at uninstall.php
17 lines
272 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 Unagi
4
*
5
*
@package
Unagi
6
*/
7
8
//
Exit if accessed directly.
9
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
10
exit
;
11
}
12
13
global
$
wpdb
;
14
15
//
clean-up user meta
16
$
wpdb
->
query
(
"
DELETE
FROM
$
wpdb
->
usermeta
WHERE
meta_key
=
'
unagi_notices
'
;
"
)
;
//
phpcs:ignore
17