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