Skip to content

Instantly share code, notes, and snippets.

@init90
Created August 8, 2017 08:48
Show Gist options
  • Select an option

  • Save init90/3923c16ffb56ac645d4b0b0a198ad2c0 to your computer and use it in GitHub Desktop.

Select an option

Save init90/3923c16ffb56ac645d4b0b0a198ad2c0 to your computer and use it in GitHub Desktop.
drupal 8, commerce, get currency symbol
/**
* Get currency symbol.
*
* @param object $product_variation
* @return string
*/
public function getCurrencySymbol($product_variation) {
$currency_code = $product_variation->get('price')->currency_code;
$currency = Currency::load($currency_code);
return $currency->getSymbol();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment