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

Constructor.


Description

Sets up the generic skin for the WordPress Upgrader classes.


Parameters

$args

(Optional) The WordPress upgrader skin arguments to override default options.

Default value: array()


Source

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

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

Changelog

Changelog
Version Description
2.8.0 Introduced.