admin-help-docs
Last commit date
inc
3 months ago
admin-help-docs.php
3 months ago
index.php
3 months ago
readme.txt
3 months ago
uninstall.php
3 months ago
uninstall.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Uninstall script |
| 4 | */ |
| 5 | |
| 6 | use PluginRx\AdminHelpDocs\Cleanup; |
| 7 | |
| 8 | if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 9 | exit; |
| 10 | } |
| 11 | |
| 12 | $helpdocs_remove_all = get_option( 'helpdocs_remove_on_uninstall', false ); |
| 13 | if ( ! $helpdocs_remove_all ) { |
| 14 | return; |
| 15 | } |
| 16 | |
| 17 | require_once __DIR__ . '/inc/cleanup.php'; |
| 18 | Cleanup::run(); |