WP_Paused_Extensions_Storage::__construct()publicWP 5.2.0

Constructor.

Method of the class: WP_Paused_Extensions_Storage{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Paused_Extensions_Storage = new WP_Paused_Extensions_Storage();
$WP_Paused_Extensions_Storage->__construct( $extension_type );
$extension_type(string) (required)
Extension type. Either 'plugin' or 'theme'.

Changelog

Since 5.2.0 Introduced.

WP_Paused_Extensions_Storage::__construct() code WP 6.5.2

public function __construct( $extension_type ) {
	$this->type = $extension_type;
}