WP_Async_Request::__construct
Initiate new async request
Method of the class: WP_Async_Request{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Async_Request = new WP_Async_Request(); $WP_Async_Request->__construct();
WP_Async_Request::__construct() WP Async Request:: construct code WC 10.6.2
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' ) );
}