WP_Async_Request::__construct()publicWC 1.0

Initiate new async request

Method of the class: WP_Async_Request{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Async_Request = new WP_Async_Request();
$WP_Async_Request->__construct();

WP_Async_Request::__construct() code WC 8.7.0

public function __construct() {
	$this->identifier = $this->prefix . '_' . $this->action;

	add_action( 'wp_ajax_' . $this->identifier, array( $this, 'maybe_handle' ) );
	add_action( 'wp_ajax_nopriv_' . $this->identifier, array( $this, 'maybe_handle' ) );
}