WC_Webhook::enqueue()publicWC 2.2.0

Enqueue the hooks associated with the webhook.

Method of the class: WC_Webhook{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Webhook = new WC_Webhook();
$WC_Webhook->enqueue();

Changelog

Since 2.2.0 Introduced.

WC_Webhook::enqueue() code WC 8.7.0

public function enqueue() {
	$hooks = $this->get_hooks();
	$url   = $this->get_delivery_url();

	if ( is_array( $hooks ) && ! empty( $url ) ) {
		foreach ( $hooks as $hook ) {
			add_action( $hook, array( $this, 'process' ) );
		}
	}
}