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