Automattic\WooCommerce\Blocks\Payments\Integrations

AbstractPaymentMethodType::get_supported_features()publicWC 1.0

Returns an array of supported features.

Метод класса: AbstractPaymentMethodType{}

Хуков нет.

Возвращает

Строку[].

Использование

$AbstractPaymentMethodType = new AbstractPaymentMethodType();
$AbstractPaymentMethodType->get_supported_features();

Код AbstractPaymentMethodType::get_supported_features() WC 8.7.0

public function get_supported_features() {
	return [ 'products' ];
}