WC_Legacy_Webhook::__isset()
Magic __isset method for backwards compatibility. Legacy properties which could be accessed directly in the past.
Метод класса: WC_Legacy_Webhook{}
Хуков нет.
Возвращает
true|false
.
Использование
$WC_Legacy_Webhook = new WC_Legacy_Webhook(); $WC_Legacy_Webhook->__isset( $key );
- $key(строка) (обязательный)
- Item to check.
Код WC_Legacy_Webhook::__isset() WC Legacy Webhook:: isset WC 9.2.3
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; }