WP_Ajax_Upgrader_Skin::__construct() WordPress Method
The WP_Ajax_Upgrader_Skin::__construct() method is used to create a new Ajax upgrader skin. This skin is used for Ajax-based WordPress upgrades. It is designed to be used with the WP_Ajax_Upgrader class. The skin includes three primary sections: Header Body Footer The header and footer sections are used to display information about the upgrade process. The body section is used to display the actual upgrade progress.
WP_Ajax_Upgrader_Skin::__construct( array $args = array() ) #
Constructor.
Description
Sets up the WordPress Ajax upgrader skin.
See also
Parameters
- $args
(array)(Optional) The WordPress Ajax upgrader skin arguments to override default options. See WP_Upgrader_Skin::__construct().
Default value: array()
Source
File: wp-admin/includes/class-wp-ajax-upgrader-skin.php
public function __construct( $args = array() ) { parent::__construct( $args ); $this->errors = new WP_Error(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.6.0 | Introduced. |