PluginProbe
SiteGuard WP Plugin / 1.1.0
SiteGuard WP Plugin v1.1.0
1.8.9 1.8.8 1.8.7 1.8.6 1.8.6-beta1 1.8.6-beta2 1.8.4 1.8.5 1.8.3 1.8.2 1.8.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 All 50 releases
siteguard / uninstall.php

uninstall.php in SiteGuard WP Plugin 1.1.0, at uninstall.php

22 lines 405 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
4 exit ();
5 }
6
7 function delete_siteguard_plugin( ) {
8 global $wpdb;
9
10 delete_option( 'siteguard_config' );
11
12 $table_name = $wpdb->prefix . 'siteguard_login';
13 $wpdb->query( "DROP TABLE IF EXISTS $table_name;" );
14
15 $table_name = $wpdb->prefix . 'siteguard_history';
16 $wpdb->query( "DROP TABLE IF EXISTS $table_name;" );
17 }
18
19 delete_siteguard_plugin( );
20
21 ?>
22