Automattic\WooCommerce\Admin\Features\Fulfillments\Providers
DPDShippingProvider::get_shipping_to_countries
Get the countries this shipping provider can ship to.
DPD typically ships within Europe, so we return the same countries as shipping from.
Метод класса: DPDShippingProvider{}
Хуков нет.
Возвращает
array. List of country codes.
Использование
$DPDShippingProvider = new DPDShippingProvider(); $DPDShippingProvider->get_shipping_to_countries(): array;
Код DPDShippingProvider::get_shipping_to_countries() DPDShippingProvider::get shipping to countries WC 11.1.0
public function get_shipping_to_countries(): array {
return $this->get_shipping_from_countries();
}