2013-03-05 07:24:35 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Fired when the plugin is uninstalled.
|
2013-05-10 05:20:26 +03:00
|
|
|
*
|
2013-07-07 21:03:25 +03:00
|
|
|
* @package Plugin_Name
|
2013-05-16 16:41:58 +03:00
|
|
|
* @author Your Name <email@example.com>
|
|
|
|
* @license GPL-2.0+
|
|
|
|
* @link http://example.com
|
2013-05-16 16:40:25 +03:00
|
|
|
* @copyright 2013 Your Name or Company Name
|
2013-03-05 07:24:35 +02:00
|
|
|
*/
|
|
|
|
|
2013-10-30 22:50:42 +02:00
|
|
|
// If uninstall not called from WordPress, then exit
|
2013-05-10 14:33:53 +03:00
|
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
2013-05-12 17:12:50 +03:00
|
|
|
exit;
|
2013-05-10 14:33:53 +03:00
|
|
|
}
|
2013-03-05 07:24:35 +02:00
|
|
|
|
2013-11-16 19:30:18 +02:00
|
|
|
// @TODO: Define uninstall functionality here
|