-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.php
56 lines (56 loc) · 1.88 KB
/
uninstall.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/*die if uninstall not called from Wordpress exit*/
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) )
exit ();
/* Remove settings */
if (is_multisite())
{
global $wpdb;
$blogs = $wpdb->get_results("SELECT blog_id FROM {$wpdb->blogs}", ARRAY_A);
if ($blogs)
{
foreach($blogs as $blog)
{
switch_to_blog($blog['blog_id']);
delete_option('leafletmapsmarker_version');
delete_option('leafletmapsmarker_options');
delete_option('leafletmapsmarker_redirect');
/* Remove and clean tables */
$GLOBALS['wpdb']->query("DROP TABLE `".$GLOBALS['wpdb']->prefix."leafletmapsmarker_layers`");
$GLOBALS['wpdb']->query("DROP TABLE `".$GLOBALS['wpdb']->prefix."leafletmapsmarker_markers`");
$GLOBALS['wpdb']->query("OPTIMIZE TABLE `" .$GLOBALS['wpdb']->prefix."options`");
}
restore_current_blog();
/*remove map icons directory*/
$lmm_upload_dir = wp_upload_dir();
$icons_directory = $lmm_upload_dir['basedir'] . DIRECTORY_SEPARATOR . "leaflet-maps-marker-icons" . DIRECTORY_SEPARATOR;
if (is_dir($icons_directory))
{
foreach(glob($icons_directory.'*.*') as $v){
unlink($v);
}
rmdir($icons_directory);
}
}
}
else
{
delete_option('leafletmapsmarker_version');
delete_option('leafletmapsmarker_options');
delete_option('leafletmapsmarker_redirect');
/* Remove and clean tables */
$GLOBALS['wpdb']->query("DROP TABLE `".$GLOBALS['wpdb']->prefix."leafletmapsmarker_layers`");
$GLOBALS['wpdb']->query("DROP TABLE `".$GLOBALS['wpdb']->prefix."leafletmapsmarker_markers`");
$GLOBALS['wpdb']->query("OPTIMIZE TABLE `" .$GLOBALS['wpdb']->prefix."options`");
/*remove map icons directory*/
$lmm_upload_dir = wp_upload_dir();
$icons_directory = $lmm_upload_dir['basedir'] . DIRECTORY_SEPARATOR . "leaflet-maps-marker-icons" . DIRECTORY_SEPARATOR;
if (is_dir($icons_directory))
{
foreach(glob($icons_directory.'*.*') as $v){
unlink($v);
}
rmdir($icons_directory);
}
}
?>