Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
716cf56cb2.url-de-test.ws
/
htdocs
/
src
/
Twig
/
/srv/data/web/vhosts/716cf56cb2.url-de-test.ws/htdocs/src/Twig/AmountExtension.php
<?php namespace App\Twig; use Twig\Extension\AbstractExtension; use Twig\TwigFilter; class AmountExtension extends AbstractExtension { public function getFilters() { return [ new TwigFilter('amount', [$this, 'amount']) ]; } public function amount($value, string $symbol = "€", string $decsep = ",", string $thousandsep = " ") { $finalValue = $value / 100; $finalValue = number_format($finalValue, 2, $decsep, $thousandsep); return $finalValue . " " . $symbol; } }