| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/piwik/plugins/CoreVisualizations/Metrics/Formatter/ |
Upload File : |
<?php
/**
* Matomo - 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;
}
}