Automattic\WooCommerce\Internal\Admin
Settings::get_currency_settings()
Return an object defining the currency options for the site's current currency
Метод класса: Settings{}
Хуки из метода
Возвращает
Массив
. 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.
}
Использование
$result = Settings::get_currency_settings();
Код Settings::get_currency_settings() Settings::get currency settings WC 9.7.1
public static function get_currency_settings() { $code = get_woocommerce_currency(); //phpcs:ignore 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() ), ) ); }