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

Constructor.

Description

Sets up the theme installer squin.

Parameters

$args array optional

Default: array()

Source

public function __construct( $args = array() ) {
	$defauls = array(
		'type'      => 'web',
		'url'       => '',
		'theme'     => '',
		'nonce'     => '',
		'title'     => '',
		'overwrite' => '',
	);
	$args     = wp_parse_args( $args, $defauls );

	$this->type      = $args['type'];
	$this->url       = $args['url'];
	$this->api       = isset( $args['api'] ) ? $args['api'] : array();
	$this->overwrite = $args['overwrite'];

	parent::__construct( $args );
}

Changuelog

Versionen Description
2.8.0 Introduced.

User Contributed Notes

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