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

In this article

Constructor.

Description

Sets up the generic skin for the Bulk Upgrader classes.

Parameters

$argsarrayoptional

Default:array()

Source

public function __construct( $args = array() ) {
	$defaults = array(
		'url'   => '',
		'nonce' => '',
	);
	$args     = wp_parse_args( $args, $defaults );

	parent::__construct( $args );
}

Changelog

VersionDescription
3.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.