Automattic\WooCommerce\Internal\Admin

Loader::get_currency_settings()public staticWC 1.0

Return an object defining the currecy options for the site's current currency

Method of the class: Loader{}

Hooks from the method

Return

Array. Settings for the current currency {

Array of settings.
@type string $code       Currency code.
@type string $precision  Number of decimals.
@type string $symbol     Symbol for currency.

}

Usage

$result = Loader::get_currency_settings();

Loader::get_currency_settings() code WC 8.6.1

public static function get_currency_settings() {
	$code = get_woocommerce_currency();

	return apply_filters(
		'wc_currency_settings',
		array(
			'code'              => $code,
			'precision'         => wc_get_price_decimals(),
			'symbol'            => html_entity_decode( get_woocommerce_currency_symbol( $code ) ),
			'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() ),
		)
	);
}