WC_Legacy_Webhook::__isset()publicWC 1.0

Magic __isset method for backwards compatibility. Legacy properties which could be accessed directly in the past.

Method of the class: WC_Legacy_Webhook{}

No Hooks.

Return

true|false.

Usage

$WC_Legacy_Webhook = new WC_Legacy_Webhook();
$WC_Legacy_Webhook->__isset( $key );
$key(string) (required)
Item to check.

WC_Legacy_Webhook::__isset() code WC 8.7.0

public function __isset( $key ) {
	$legacy_keys = array(
		'id',
		'status',
		'post_data',
		'delivery_url',
		'secret',
		'topic',
		'hooks',
		'resource',
		'event',
		'failure_count',
		'api_version',
	);

	if ( in_array( $key, $legacy_keys, true ) ) {
		return true;
	}

	return false;
}