Constructor.
Description
Sets up the generic skin for the Bulk Upgrader classes.
Parameters
$args
arrayoptionalDefault:
array()
Source
public function __construct( $args = array() ) {
$defaults = array(
'url' => '',
'nonce' => '',
);
$args = wp_parse_args( $args, $defaults );
parent::__construct( $args );
}
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.