| 1 |
<?php |
| 2 |
/** |
| 3 |
* Fired when the plugin is uninstalled. |
| 4 |
* |
| 5 |
* @package Advanced_Ads_Admin |
| 6 |
* @author Thomas Maier <thomas.maier@webgilde.com> |
| 7 |
* @license GPL-2.0+ |
| 8 |
* @link http://webgilde.com |
| 9 |
* @copyright 2013 Thomas Maier, webgilde GmbH |
| 10 |
*/ |
| 11 |
|
| 12 |
// If uninstall not called from WordPress, then exit |
| 13 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 14 |
exit; |
| 15 |
} |
| 16 |
|
| 17 |
// @TODO: Define uninstall functionality here |