0 ) { foreach ( $sites as $site ) { // switch to blog switch_to_blog( $site['blog_id'] ); // run installer on blog $installer->install(); // restore current blog restore_current_blog(); } } } else { // no multisite so do normal install $installer->install(); } WP_DLM::handle_plugin_action( 'activate' ); } /** * Run installer for new blogs on multisite when plugin is network activated * * @param $blog_id * @param $user_id * @param $domain * @param $path * @param $site_id * @param $meta */ function _download_monitor_mu_new_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) { // check if plugin is network activated if ( is_plugin_active_for_network( 'download-monitor/download-monitor.php' ) ) { // DLM Installer $installer = new DLM_Installer(); // switch to new blog switch_to_blog( $blog_id ); // run installer on blog $installer->install(); // restore current blog restore_current_blog(); } } /** * Delete DLM log table on multisite when blog is deleted * * @param $tables * * @return array */ function _download_monitor_mu_delete_blog( $tables ) { global $wpdb; $tables[] = $wpdb->prefix . 'download_log'; return $tables; } /** * Delete cached js and css scripts from optimisation plugins on plugin activation. * * @return void * @since 4.8.0 */ function download_monitor_delete_cached_scripts() { // WP Rocket. if ( function_exists( 'rocket_clean_domain' ) ) { rocket_clean_domain(); } if ( function_exists( 'rocket_clean_minify' ) ) { rocket_clean_minify(); } // WP Optimize. if ( class_exists( 'WP_Optimize_Minify_Commands' ) ) { $WP_Optimize_Minify = new WP_Optimize_Minify_Commands(); $WP_Optimize_Minify->purge_minify_cache(); } // WP Fastest Cache. if ( class_exists( 'WpFastestCache' ) ) { $WP_Fastest_Cache = new WpFastestCache(); $WP_Fastest_Cache->deleteCache( true ); } // WP Super Cache. if ( function_exists( 'wp_cache_clear_cache' ) ) { wp_cache_clear_cache(); } }