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
multi-device-switcher / uninstall.php

uninstall.php in Multi Device Switcher trunk, at uninstall.php

26 lines 346 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Uninstall
4 *
5 * @since 1.0.0
6 *
7 * @package Multi_Device_Switcher
8 */
9
10 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
11 exit();
12 }
13
14 /**
15 * Uninstall.
16 *
17 * @return void
18 *
19 * @since 1.0.0
20 */
21 function multi_device_switcher_delete_plugin() {
22 delete_option( 'multi_device_switcher_options' );
23 }
24
25 multi_device_switcher_delete_plugin();
26