Construct the upgrader with a skin.
Parameters
$skin
WP_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. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.