W3cubDocs

/WordPress

WP_Upgrader::__construct( WP_Upgrader_Skin $skin = null )

Construct the upgrader with a skin.

Parameters

$skinWP_Upgrader_Skinoptional
The upgrader skin to use. Default is a WP_Upgrader_Skin instance.

Default:null

Source

public function __construct( $skin = null ) {
	if ( null === $skin ) {
		$this->skin = new WP_Upgrader_Skin();
	} else {
		$this->skin = $skin;
	}
}

Changelog

Version Description
2.8.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_upgrader/__construct