Brak opisu

uninstall.php 548B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * WC Admin Uninstall
  4. *
  5. * @package WooCommerce\Admin\Uninstaller
  6. */
  7. defined( 'WP_UNINSTALL_PLUGIN' ) || exit;
  8. // Don't delete table data if core WooCommerce contains WooCommerce Admin.
  9. // This could alternatively check for a specific WooCommerce version rather than a file.
  10. if (
  11. defined( 'WC_ABSPATH' ) &&
  12. file_exists( WC_ABSPATH . 'packages/woocommerce-admin/woocommerce-admin.php' )
  13. ) {
  14. return;
  15. }
  16. use \Automattic\WooCommerce\Admin\Install;
  17. require_once dirname( __FILE__ ) . '/woocommerce-admin.php';
  18. Install::drop_tables();