# fluent-cart/1.6.4/api/CurrencySettings.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 179 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/api/CurrencySettings.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/api/CurrencySettings.php
- Modified: 2026-01-06T14:01:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/api/CurrencySettings.php#L10-L20`.

```php
<?php

namespace FluentCart\Api;

use FluentCart\App\Helpers\CurrenciesHelper;
use FluentCart\App\Helpers\Helper;
use FluentCart\Framework\Support\Arr;

class CurrencySettings
{

    /**
     * @param string $key Store settings option name
     *
     * without param it will return all currency settings | defaults
     *
     *
     * @return array|\ArrayAccess|mixed|null
     */
    public static function get(string $key = '')
    {

        $storeSettings = (new StoreSettings())->get();

        $settings = Arr::only($storeSettings, array(
            'currency',
            'locale',
            'currency_position',
            'currency_separator',
            'decimal_separator',
            'order_mode',
        ));

        $settings = [
            'currency'           => static::getValue($settings, 'currency', 'USD'),
            'locale'             => static::getValue($settings, 'locale', 'auto'),
            'currency_position'  => static::getValue($settings, 'currency_position', 'left'),
            'currency_separator' => static::getValue($settings, 'currency_separator', 'dot'),
            'decimal_separator'  => static::getValue($settings, 'decimal_separator', '.'),
            'decimal_points'     => static::getValue($settings, 'decimal_points', 0),
            'settings_type'      => static::getValue($settings, 'settings_type', 'global'),
            'order_mode'         => static::getValue($settings, 'order_mode', 'test')
        ];

        $settings['is_zero_decimal'] = CurrenciesHelper::isZeroDecimal($settings['currency']);
        $settings['currency_sign'] = html_entity_decode(CurrenciesHelper::getCurrencySign($settings['currency']));

        if ($key) {
            return Arr::get($settings, $key);
        }

        return apply_filters('fluent_cart/global_currency_setting', $settings, []);
    }

    public function getCurrency($settings = [])
    {
        return static::get('currency');
    }

    public static function getValue(array $settings, $key, $default = null)
    {
        $value = Arr::get($settings, $key, $default);
        if (empty($value)) {
            return $default;
        }
        return $value;
    }

    /**
     * @param string $currencyCode like 'USD'
     * @return bool
     *
     * check if currency is zero decimal
     */
    public function isZeroDecimal($currencyCode)
    {
        return CurrenciesHelper::isZeroDecimal($currencyCode);
    }

    public static function convertCentToUnit($amount)
    {
        $unitAmount = 0;
        if (intval($amount)) {
            $unitAmount = intval($amount) / 100;
        }
        return $unitAmount;
    }

    /**
     * @return array
     *
     * Get label value array for all currencies
     */
    public static function getFormattedCurrencies()
    {
        $currencies = CurrenciesHelper::getCurrencies();
        $formatted = array();
        foreach ($currencies as $code => $name) {
            $formatted[] = array(
                "label" => $name,
                "value" => $code,
            );
        }
        return $formatted;
    }

    public static function getPriceHtml($amount, $currencyCode = null, $showDecimal = true, $withTranslatedDigit = false)
    {
        return static::getFormattedPrice($amount, $currencyCode, false, $showDecimal, $withTranslatedDigit);
    }

    public static function getFormattedPrice($amount, $currencyCode = null, $asList = false, $showDecimal = true, $withTranslatedDigit = false)
    {
        $settings = static::get();

        if (!$currencyCode) {
            $currencyCode = Arr::get($settings, 'currency');
        }

        $sign     = CurrenciesHelper::getCurrencySign($currencyCode);
        $position = Arr::get($settings, 'currency_position', 'before');

        // Decimal configuration
        $decimal = $showDecimal ? 2 : 0;

        if (!empty($settings['is_zero_decimal'])) {
            $decimal = 0;
        }

        // Separator configuration
        $decimalSeparatorSetting = Arr::get($settings, 'decimal_separator', 'dot');
        $decimalSeparator = $decimalSeparatorSetting === 'comma' ? ',' : '.';
        $thousandSeparator = $decimalSeparator === ',' ? '.' : ',';

        // Sanitize amount
        $amount = is_numeric($amount) ? $amount : 0;
        $amount = floatval($amount / 100);

        // Format number
        $price = number_format($amount, $decimal, $decimalSeparator, $thousandSeparator);

        if($withTranslatedDigit) {
            $price = Helper::translateNumber($price);
        }

        // If array output is requested
        if ($asList) {
            return [
                'price'          => $price,
                'currency_sign'  => $sign,
                'currency_code'  => $currencyCode,
                'currency_title' => CurrenciesHelper::getCurrencies($currencyCode),
                'position'       => $position
            ];
        }

        // Apply full currency position logic (same as toDecimal)
        switch ($position) {
            case 'before':
                return $sign . $price;
            case 'after':
                return $price . $sign;
            case 'iso_before':
                return $currencyCode . ' ' . $price;
            case 'iso_after':
                return $price . ' ' . $currencyCode;
            case 'symbool_before_iso':
                return $sign . $price . ' ' . $currencyCode;
            case 'symbool_after_iso':
                return $currencyCode . ' ' . $price . $sign;
            case 'symbool_and_iso':
                return $currencyCode . ' ' . $sign . $price;
            default:
                return $sign . $price;
        }
    }

}

```
