WC_Webhook::get_hooks()publicWC 2.2.0

Get the hook names for the webhook.

Method of the class: WC_Webhook{}

Hooks from the method

Return

Array.

Usage

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

Changelog

Since 2.2.0 Introduced.

WC_Webhook::get_hooks() code WC 8.7.0

public function get_hooks() {
	if ( 'action' === $this->get_resource() ) {
		$hooks = array( $this->get_event() );
	} else {
		$hooks = $this->get_topic_hooks( $this->get_topic() );
	}

	return apply_filters( 'woocommerce_webhook_hooks', $hooks, $this->get_id() );
}