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

Constructor.


Description

Sets up the plugin upgrader skin.


Top ↑

Parameters

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

Default: array()


Top ↑

Source

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

public function __construct( $args = array() ) {
	$defaults = array(
		'url'    => '',
		'plugin' => '',
		'nonce'  => '',
		'title'  => __( 'Update Plugin' ),
	);
	$args     = wp_parse_args( $args, $defaults );

	$this->plugin = $args['plugin'];

	$this->plugin_active         = is_plugin_active( $this->plugin );
	$this->plugin_network_active = is_plugin_active_for_network( $this->plugin );

	parent::__construct( $args );
}


Top ↑

Changelog

Changelog
Version Description
2.8.0 Introduced.

Top ↑

User Contributed Notes

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