HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/matomo.circ/plugins/CoreVisualizations/Metrics/Formatter/Numeric.php
<?php

/**
 * Matomo - free/libre analytics platform
 *
 * @link    https://matomo.org
 * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Plugins\CoreVisualizations\Metrics\Formatter;

use Piwik\Common;
use Piwik\Metrics\Formatter;

/**
 * A metrics formatter that prettifies metric values without returning string values.
 * Results of this class can be converted to numeric values and processed further in
 * some way.
 */
class Numeric extends Formatter
{
    /**
     * Unit to format byte sizes with
     *
     * @var string
     */
    public static $byteSizeUnit = 'G';

    public function getPrettyNumber($value, $precision = 0)
    {
        return round($value, $precision);
    }

    public function getPrettyTimeFromSeconds($numberOfSeconds, $displayTimeAsSentence = false, $round = false)
    {
        return $round ? (int)$numberOfSeconds : (float) Common::forceDotAsSeparatorForDecimalPoint($numberOfSeconds);
    }

    public function getPrettySizeFromBytes($size, $unit = null, $precision = 1)
    {
        // We use a fixed unit here, so all byte metrics in an evolution chart will use the same unit
        [$size, $sizeUnit] = $this->getPrettySizeFromBytesWithUnit($size, self::$byteSizeUnit, $precision);
        return $size;
    }

    public function getPrettyMoney($value, $idSite)
    {
        return $value;
    }

    public function getPrettyPercentFromQuotient($value)
    {
        return $value * 100;
    }
}