19 declare(strict_types=1);
40 $this->
lng = $DIC->language();
41 $this->
user = $DIC->user();
49 $result instanceof Result\StringResult => $this->
formatString($result),
50 default => $result->getValue()
56 return $result->getValue();
61 return (
string) $this->
user->getDateFormat();
67 $calculated_timestamp = (
int) $result->getValue();
68 switch ($result->getFromFunction()) {
71 case Functions::AVERAGE:
72 return $this->formatDateFromInt($calculated_timestamp);
78 switch ($result->getFromOperator()) {
79 case Operators::SUBTRACTION:
80 $presentation =
function ($value, $factor, $unit) {
83 ) .
' ' . $this->
lng->txt($unit);
87 $value = (
int) $calculated_timestamp;
95 $value = $presentation($value, 1,
'seconds');
98 $value = $presentation($value, 60,
'minutes');
100 case $value < 24 * 3600:
101 $value = $presentation($value, 3600,
'hours');
104 $value = $presentation($value, 24 * 3600,
'days');
107 return $prefix . $value;
108 case Operators::ADDITION:
109 case Operators::MULTIPLICATION:
110 case Operators::DIVISION:
111 case Operators::POWER:
114 return $calculated_timestamp;
120 $value = (
int) $result->getValue();
121 if (abs($value) >= self::SCIENTIFIC_NOTATION_UPPER) {
122 return sprintf(
"%e", $value);
124 if (abs($value) <= self::SCIENTIFIC_NOTATION_LOWER && $value != 0) {
125 return sprintf(
"%e", $value);
129 if (abs($value) >= 1000) {
130 if (is_float($value)) {
131 $decimals = self::N_DECIMALS;
135 return number_format(
138 $this->
lng->txt(
'lang_sep_decimal'),
139 $this->
lng->txt(
'lang_sep_thousand')
143 return (
string) $value;