You are here

public function CurrencyImporterInterface::importByCountry in Commerce Core 8.2

Imports currency data for the given country code.

Parameters

string $country_code: The country code.

Return value

\Drupal\commerce_price\Entity\CurrencyInterface|null The saved currency entity or NULL if the given country's currency isn't known.

Throws

\CommerceGuys\Intl\Exception\UnknownCountryException Thrown when the country couldn't be found in the library definitions.

1 method overrides CurrencyImporterInterface::importByCountry()
CurrencyImporter::importByCountry in modules/price/src/CurrencyImporter.php
Imports currency data for the given country code.

File

modules/price/src/CurrencyImporterInterface.php, line 45

Class

CurrencyImporterInterface
Imports the library-provided currency data into config entities.

Namespace

Drupal\commerce_price

Code

public function importByCountry($country_code);