SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > > wp-content > plugins > mailchimp-for-woocommerce


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com//wp-content/plugins/mailchimp-for-woocommerce

NameTypeSizeLast ModifiedActions
admin Directory - -
blocks Directory - -
includes Directory - -
languages Directory - -
public Directory - -
.gitignore File 34 bytes April 15 2025 19:54:46.
CHANGELOG.txt File 22510 bytes April 15 2025 19:54:46.
LICENSE.txt File 18091 bytes October 06 2016 22:17:10.
README.md File 409 bytes April 15 2025 19:54:46.
README.txt File 6981 bytes April 15 2025 19:54:46.
SECURITY.md File 2290 bytes April 15 2025 19:54:46.
bootstrap.php File 88513 bytes April 15 2025 19:54:46.
composer.json File 290 bytes April 15 2025 19:54:46.
index.php File 26 bytes October 06 2016 22:17:10.
mailchimp-woocommerce.php File 2349 bytes April 15 2025 19:54:46.
phpcs.xml File 341 bytes April 15 2025 19:54:46.
plugin_overview.md File 3614 bytes April 15 2025 19:54:46.
uninstall.php File 2946 bytes April 15 2025 19:54:46.
wpml-config.xml File 227 bytes April 15 2025 19:54:46.

Reading File: /home/codekrsu//ameliagraphics.com//wp-content/plugins/mailchimp-for-woocommerce/uninstall.php

<?php

/**
 * Fired when the plugin is uninstalled.
 *
 * When populating this file, consider the following flow
 * of control:
 *
 * - This method should be static
 * - Check if the $_REQUEST content actually is the plugin name
 * - Run an admin referrer check to make sure it goes through authentication
 * - Verify the output of $_GET makes sense
 * - Repeat with other user roles. Best directly by using the links/query string parameters.
 * - Repeat things for multisite. Once for a single site in the network, once sitewide.
 *
 * This file may be updated more in future version of the Boilerplate; however, this is the
 * general skeleton and outline for how the file should work.
 *
 * For more information, see the following discussion:
 * https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
 *
 * @link       https://mailchimp.com
 * @since      1.0.1
 *
 * @package    MailChimp_WooCommerce
 */

// If uninstall not called from WordPress, then exit.
if (!defined( 'WP_UNINSTALL_PLUGIN')) {
	exit;
}

if (!isset($mailchimp_woocommerce_spl_autoloader) || $mailchimp_woocommerce_spl_autoloader === false) {
    include_once "bootstrap.php";
}

function mailchimp_woocommerce_uninstall() {
    try {
        if (($options = \Mailchimp_Woocommerce_DB_Helpers::get_option('mailchimp-woocommerce', false)) && is_array($options)) {
            if (isset($options['mailchimp_api_key'])) {
                $store_id = \Mailchimp_Woocommerce_DB_Helpers::get_option('mailchimp-woocommerce-store_id', false);
                if (!empty($store_id)) {
                	// disable support if they had it enabled
                	$tower = new MailChimp_WooCommerce_Tower($store_id);
                	$tower->toggle(false);
                	// delete the store if it's in Mailchimp
                    $api = new MailChimp_WooCommerce_MailChimpApi($options['mailchimp_api_key']);
                    $result = $api->deleteStore($store_id) ? 'has been deleted' : 'did not delete';
                    error_log("store id {$store_id} {$result} MailChimp");
                }

				$webhooks = new MailChimp_WooCommerce_WebHooks_Sync;
				$webhooks->cleanHooks(true);
            }
        }
        \Mailchimp_Woocommerce_DB_Helpers::delete_option('mailchimp-woocommerce-waiting-for-login');

    } catch (Exception $e) {
        error_log($e->getMessage().' on '.$e->getLine().' in '.$e->getFile());
    }
    mailchimp_remove_communication_status();
    mailchimp_clean_database();
    mailchimp_remove_activity_panel_inbox_notes();
}

if (!is_multisite()) {
    mailchimp_woocommerce_uninstall();
} else {
    global $wpdb;
    try {
        foreach ($wpdb->get_col("SELECT blog_id FROM $wpdb->blogs") as $mailchimp_current_blog_id) {
            switch_to_blog($mailchimp_current_blog_id);
            mailchimp_woocommerce_uninstall();
        }
        restore_current_blog();
    } catch (Exception $e) {}
}



SILENT KILLER Tool