WC_Webhook_Data_Store::get_transient_key()privateWC 3.6.0

Get the transient key used to cache a set of webhook IDs, optionally filtered by status.

Method of the class: WC_Webhook_Data_Store{}

No Hooks.

Return

String.

Usage

// private - for code of main (parent) class only
$result = $this->get_transient_key( $status );
$status(string)
Optional - status of cache key.
Default: ''

Changelog

Since 3.6.0 Introduced.

WC_Webhook_Data_Store::get_transient_key() code WC 8.6.1

private function get_transient_key( $status = '' ) {
	return empty( $status ) ? 'woocommerce_webhook_ids' : sprintf( 'woocommerce_webhook_ids_status_%s', $status );
}