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