# multi-device-switcher/1.1.0/uninstall.php

Multi Device Switcher, version 1.1.0. 12 lines.

- Page: https://pluginprobe.com/plugins/multi-device-switcher/1.1.0/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/multi-device-switcher/1.1.0/raw/uninstall.php
- Modified: 2012-08-01T07:28:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/multi-device-switcher/1.1.0/code/uninstall.php#L10-L20`.

```php
<?php

if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) )
	exit();

function multi_device_switcher_delete_plugin() {
	delete_option( 'multi_device_switcher_options' );
}

multi_device_switcher_delete_plugin();

?>
```
