Theme_Installer_Skin::__construct( array $args = array() )
Parameters
- $args
-
(Optional)
Default value: array()
Source
File: wp-admin/includes/class-theme-installer-skin.php
public function __construct($args = array()) {
$defaults = array( 'type' => 'web', 'url' => '', 'theme' => '', 'nonce' => '', 'title' => '' );
$args = wp_parse_args($args, $defaults);
$this->type = $args['type'];
$this->api = isset($args['api']) ? $args['api'] : array();
parent::__construct($args);
}