Server IP : 104.21.38.3 / Your IP : 162.158.171.11 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/audiomatrix.in/wp-content/plugins/hummingbird-performance/ |
Upload File : |
<?php /** * Uninstall file. * * @package Hummingbird */ use Hummingbird\Core\Filesystem; use Hummingbird\Core\Logger; use Hummingbird\Core\Settings; // If uninstall not called from WordPress exit. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit(); } if ( ! function_exists( 'is_plugin_active' ) ) { include_once ABSPATH . 'wp-admin/includes/plugin.php'; } if ( class_exists( 'Hummingbird\\WP_Hummingbird' ) ) { return; } if ( ! class_exists( 'Hummingbird\\Core\\Settings' ) ) { /* @noinspection PhpIncludeInspection */ include_once plugin_dir_path( __FILE__ ) . '/core/class-settings.php'; } $settings = Settings::get_settings( 'settings' ); if ( $settings['remove_settings'] ) { $options = array( 'wphb-caching-api-checked', 'wphb-cloudflare-dash-notice', 'wphb-free-install-date', 'wphb-gzip-api-checked', 'wphb-hide-tutorials', 'wphb-minification-files-scanned', 'wphb-minification-show-advanced_modal', 'wphb-minification-show-config_modal', 'wphb-minify-server-errors', 'wphb-notice-cache-cleaned-show', 'wphb-notice-free-deactivated-dismissed', 'wphb-notice-free-deactivated-show', 'wphb-notice-free-rated-show', 'wphb-notice-http2-info-show', 'wphb-notice-minification-optimized-show', 'wphb-notice-uptime-info-show', 'wphb-preset_configs', 'wphb_process_queue', 'wphb-quick-setup', 'wphb_run_onboarding', 'wphb_scripts_collection', 'wphb_settings', 'wphb-stop-report', 'wphb_styles_collection', 'wphb_version', 'wphb_safe_mode', ); // Clear cron at first. wp_clear_scheduled_hook( 'wphb_performance_report' ); wp_clear_scheduled_hook( 'wphb_uptime_report' ); wp_clear_scheduled_hook( 'wphb_database_report' ); if ( wp_next_scheduled( 'wphb_minify_clear_files' ) ) { wp_clear_scheduled_hook( 'wphb_minify_clear_files' ); } // Subsite wp_option. if ( is_multisite() && ! wp_is_large_network() ) { $sites = get_sites(); foreach ( $sites as $site ) { switch_to_blog( $site->blog_id ); foreach ( $options as $option ) { delete_option( $option ); } if ( $settings['remove_data'] ) { delete_option( 'wphb-last-report' ); } restore_current_blog(); } } // Network wp_option, wp_sitemeta. foreach ( $options as $option ) { delete_option( $option ); delete_site_option( $option ); } } if ( $settings['remove_data'] ) { // Reports & data. delete_site_option( 'wphb-caching-data' ); delete_site_option( 'wphb-gzip-data' ); delete_option( 'wphb-last-report' ); delete_site_option( 'wphb-last-report' ); delete_site_transient( 'wphb-fast-cgi-enabled' ); // Remove critical css data. delete_site_option( 'wphb_cs_process_queue' ); delete_site_transient( 'wphb_critical_css_log' ); delete_site_transient( 'wphb-cs-processing' ); if ( ! class_exists( 'Hummingbird\\Core\\Filesystem' ) ) { /* @noinspection PhpIncludeInspection */ include_once plugin_dir_path( __FILE__ ) . '/core/class-filesystem.php'; } $fs = Filesystem::instance(); if ( ! is_wp_error( $fs->status ) ) { $fs->clean_up(); } if ( ! class_exists( 'Hummingbird\\Core\\Logger' ) ) { /* @noinspection PhpIncludeInspection */ include_once plugin_dir_path( __FILE__ ) . '/core/class-logger.php'; } Logger::cleanup(); }