Plugin_Upgrader::active_after()publicWP 5.4.0

Turns off maintenance mode after upgrading an active plugin.

Hooked to the upgrader_post_install filter by Plugin_Upgrader::upgrade().

Method of the class: Plugin_Upgrader{}

No Hooks.

Return

true|false|WP_Error. The original $response parameter or WP_Error.

Usage

$Plugin_Upgrader = new Plugin_Upgrader();
$Plugin_Upgrader->active_after( $response, $plugin );
$response(true|false|WP_Error) (required)
The installation response after the installation has finished.
$plugin(array) (required)
Plugin package arguments.

Changelog

Since 5.4.0 Introduced.

Plugin_Upgrader::active_after() code WP 6.5.2

public function active_after( $response, $plugin ) {
	if ( is_wp_error( $response ) ) {
		return $response;
	}

	// Only disable maintenance mode when in cron (background update).
	if ( ! wp_doing_cron() ) {
		return $response;
	}

	$plugin = isset( $plugin['plugin'] ) ? $plugin['plugin'] : '';

	// Only run if plugin is active.
	if ( ! is_plugin_active( $plugin ) ) {
		return $response;
	}

	// Time to remove maintenance mode. Bulk edit handles this separately.
	if ( ! $this->bulk ) {
		$this->maintenance_mode( false );
	}

	return $response;
}