PluginProbe
Multi Device Switcher / trunk
Multi Device Switcher vtrunk
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 All 34 releases
← All changes | uninstall.php +14 -2 1.4.0trunk View file →
@@ -1,13 +1,25 @@
1 1 <?php
2 +/**
3 + * Uninstall
4 + *
5 + * @since 1.0.0
6 + *
7 + * @package Multi_Device_Switcher
8 + */
2 9
3 10 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
4 11 exit();
5 12 }
6 13
14 +/**
15 + * Uninstall.
16 + *
17 + * @return void
18 + *
19 + * @since 1.0.0
20 + */
7 21 function multi_device_switcher_delete_plugin() {
8 22 delete_option( 'multi_device_switcher_options' );
9 23 }
10 24
11 25 multi_device_switcher_delete_plugin();
12 -
13 -?>