code-snippets
Last commit date
assets
9 months ago
css
6 months ago
dist
6 months ago
js
6 months ago
php
6 months ago
vendor
6 months ago
CHANGELOG.md
6 months ago
code-snippets.php
6 months ago
license.txt
3 years ago
readme.txt
6 months ago
uninstall.php
1 year ago
uninstall.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Cleans up data created by this plugin |
| 4 | * |
| 5 | * @package Code_Snippets |
| 6 | * @since 2.0.0 |
| 7 | */ |
| 8 | |
| 9 | namespace Code_Snippets\Uninstall; |
| 10 | |
| 11 | // Ensure this plugin is actually being uninstalled. |
| 12 | if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) || ( defined( 'CODE_SNIPPETS_PRO' ) && CODE_SNIPPETS_PRO ) ) { |
| 13 | return; |
| 14 | } |
| 15 | |
| 16 | require_once __DIR__ . '/php/uninstall.php'; |
| 17 | |
| 18 | uninstall_plugin(); |
| 19 |