13 lines
330 B
PHP
13 lines
330 B
PHP
<?php
|
|
/**
|
|
* Removes what the plugin saved, when the plugin is deleted.
|
|
*
|
|
* One option, nothing else: the events are not copied into the site, they are
|
|
* fetched live, so there is no leftover content to clean up.
|
|
*
|
|
* @package PiazzaInFesta
|
|
*/
|
|
|
|
defined( 'WP_UNINSTALL_PLUGIN' ) || exit;
|
|
|
|
delete_option( 'pinfesta_options' );
|