Browse
For agents
About
WebberZone Top 10 — Popular Posts
/
1.1
WebberZone Top 10 — Popular Posts
v1.1
Switch version
4.5.1
4.5.0
4.4.3
4.4.2
4.4.1
4.4.0
4.3.4
4.3.3
4.3.2
4.3.1
4.3.0
trunk
1.0
1.0.1
1.1
1.2
1.3
1.4
1.4.1
1.5
1.5.1
1.5.2
1.5.3
1.6
1.6.1
All 117 releases
Overview
Code
top-10
/
uninstall.php
uninstall.php
in WebberZone Top 10 — Popular Posts 1.1, at uninstall.php
12 lines
285 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
if
(
!
defined
(
'
ABSPATH
'
)
&&
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
3
exit
(
)
;
4
}
5
global
$
wpdb
;
6
$
table_name
=
$
wpdb
->
prefix
.
"
top_ten
"
;
7
8
$
sql
=
"
DROP TABLE
$
table_name
"
;
9
$
wpdb
->
query
(
$
sql
)
;
10
delete_option
(
'
ald_tptn_settings
'
)
;
11
delete_option
(
'
tptn_db_version
'
)
;
12
?
>