MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/public_html/wp-content/plugins/swift-performance-lite/uninstall.php
<?php

if (!defined('WP_UNINSTALL_PLUGIN')) {
    die;
}

if (!current_user_can('activate_plugins')){
      return;
}

if (!defined('SWIFT_PERFORMANCE_UNINSTALL')){
      define('SWIFT_PERFORMANCE_UNINSTALL', true);
}

include_once __DIR__ . '/performance.php';

if (is_multisite()){
      global $wpdb;
      foreach ($wpdb->get_col("SELECT blog_id FROM $wpdb->blogs") as $blog_id){
            switch_to_blog($blog_id);
            Swift_Performance::uninstall();
            restore_current_blog();
      }
}
else {
      Swift_Performance::uninstall();
}

?>