blog_id ); $this->run_install(); restore_current_blog(); } } else { $sites = wp_get_sites( array( 'limit' => 0 ) ); foreach ( $sites as $site ) { switch_to_blog( $site['blog_id'] ); $this->run_install(); restore_current_blog(); } } } else { // Normal single site. $this->run_install(); } // Abort so we only set the transient for single site installs. if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { return; } // Add transient to trigger redirect to the Welcome screen. set_transient( 'wpforms_activation_redirect', true, 30 ); } /** * Run the actual installer. * * @since 1.3.0 */ public function run_install() { $wpforms_install = new stdClass(); // Hook for Pro users. do_action( 'wpforms_install' ); // Set current version, to be referenced in future updates. update_option( 'wpforms_version', WPFORMS_VERSION ); // Store the date when the initial activation was performed. $type = class_exists( 'WPForms_Lite', false ) ? 'lite' : 'pro'; $activated = get_option( 'wpforms_activated', array() ); if ( empty( $activated[ $type ] ) ) { $activated[ $type ] = time(); update_option( 'wpforms_activated', $activated ); } } /** * When a new site is created in multisite, see if we are network activated, * and if so run the installer. * * @since 1.3.0 * * @param int $blog_id * @param int $user_id * @param string $domain * @param string $path * @param int $site_id * @param array $meta */ public function new_multisite_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) { if ( is_plugin_active_for_network( plugin_basename( WPFORMS_PLUGIN_FILE ) ) ) { switch_to_blog( $blog_id ); $this->run_install(); restore_current_blog(); } } } new WPForms_Install();