advanced-ads
Last commit date
admin
11 years ago
classes
11 years ago
includes
11 years ago
languages
11 years ago
modules
11 years ago
public
11 years ago
vendor
11 years ago
LICENSE.txt
11 years ago
advanced-ads.php
11 years ago
composer.json
11 years ago
composer.lock
11 years ago
index.php
11 years ago
readme.txt
11 years ago
uninstall.php
11 years ago
uninstall.php
17 lines
| 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 |