# getresponse/1.6.3/uninstall.php

GetResponse Forms by Optin Cat, version 1.6.3. 14 lines.

- Page: https://pluginprobe.com/plugins/getresponse/1.6.3/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/getresponse/1.6.3/raw/uninstall.php
- Modified: 2016-07-26T19:45:02+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/getresponse/1.6.3/code/uninstall.php#L10-L20`.

```php
<?php

// If uninstall is not called from WordPress, exit
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
    exit();
}
 
$option_name = 'fca_eoi_allow_customform';
 
delete_option( $option_name );
 
// For site options in Multisite
delete_site_option( $option_name );  

```
