wordpress / latest / classes / wp_upgrader_skin / __construct.html

WP_Upgrader_Skin::__construct( array $args = array() )

Constructor.

Description

Sets up the generic skin for the WordPress Upgrader classes.

Parameters

$args array Optional
The WordPress upgrader skin arguments to override default options.

Default: array()

Source

File: wp-admin/includes/class-wp-upgrader-skin.php. View all references

public function __construct( $args = array() ) {
	$defaults      = array(
		'url'     => '',
		'nonce'   => '',
		'title'   => '',
		'context' => false,
	);
	$this->options = wp_parse_args( $args, $defaults );
}

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
2.8.0 Introduced.

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