Browse
For agents
About
WPCasa – Real Estate for WordPress
/
trunk
WPCasa – Real Estate for WordPress
vtrunk
Switch version
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.1.1
trunk
1.2.0
1.2.1
1.2.10
1.2.10.1
1.2.11
1.2.12
1.2.13
1.2.2
1.2.3
1.2.4
1.2.5
1.2.6
1.2.7
1.2.8
1.2.9
1.2.9.1
1.2.9.2
1.3.0
All 31 releases
Overview
Code
wpcasa
/
uninstall.php
uninstall.php
in WPCasa – Real Estate for WordPress trunk, at uninstall.php
15 lines
274 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 WPCasa.
4
*
5
*
@package
WPCasa
6
*/
7
8
//
Exit if accessed directly.
9
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
10
exit
;
11
}
12
13
//
Delete the review notice dismiss state for all users.
14
delete_metadata
(
'
user
'
,
0
,
'
wpsight_review_notice_dismissed
'
,
'
'
,
true
)
;
15