Constructor.
Description
Sets up the generic skin for the WordPress Upgrader classes.
Parameters
$args
arrayoptional- The WordPress upgrader skin arguments to override default options.
Default:
array()
Source
public function __construct( $args = array() ) {
$defaults = array(
'url' => '',
'nonce' => '',
'title' => '',
'context' => false,
);
$this->options = wp_parse_args( $args, $defaults );
}
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.