Automattic\WooCommerce\Blocks\Assets

AssetDataRegistry::get_currency_data()protectedWC 1.0

Get currency data to include in settings.

Method of the class: AssetDataRegistry{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_currency_data();

AssetDataRegistry::get_currency_data() code WC 8.7.0

protected function get_currency_data() {
	$currency = get_woocommerce_currency();

	return [
		'code'              => $currency,
		'precision'         => wc_get_price_decimals(),
		'symbol'            => html_entity_decode( get_woocommerce_currency_symbol( $currency ) ),
		'symbolPosition'    => get_option( 'woocommerce_currency_pos' ),
		'decimalSeparator'  => wc_get_price_decimal_separator(),
		'thousandSeparator' => wc_get_price_thousand_separator(),
		'priceFormat'       => html_entity_decode( get_woocommerce_price_format() ),
	];
}