Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Numeric.php « Formatter « Metrics « CoreVisualizations « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17d9c02e56968428e179b063f799d0b15591438f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://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
{
    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)
    {
        list($size, $sizeUnit) = $this->getPrettySizeFromBytesWithUnit($size, $unit, $precision);
        return $size;
    }

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

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