![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/amp/ |
<?php /** * Plugin uninstall file. * * @package AMP */ namespace AmpProject\AmpWP; // If uninstall.php is not called by WordPress, then die. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { die; } require_once dirname( __FILE__ ) . '/includes/uninstall-functions.php'; if ( is_multisite() && ! wp_is_large_network() ) { $site_ids = get_sites( [ 'fields' => 'ids', 'number' => '', 'update_site_cache' => false, 'update_site_meta_cache' => false, ] ); $site_ids = ( ! empty( $site_ids ) && is_array( $site_ids ) ) ? $site_ids : []; foreach ( $site_ids as $site_id ) { switch_to_blog( $site_id ); remove_plugin_data(); } restore_current_blog(); } else { remove_plugin_data(); }