Procházet zdrojové kódy

Intégration frontend

develop
Guillaume před 3 roky
rodič
revize
b96efe8905
1 změnil soubory, kde provedl 11 přidání a 1 odebrání
  1. +11
    -1
      Twig/TwigExtension.php

+ 11
- 1
Twig/TwigExtension.php Zobrazit soubor

@@ -76,10 +76,20 @@ class TwigExtension extends AbstractExtension
return [
new TwigFilter('uc_first', [$this, 'ucFirst']),
new TwigFilter('format_price', [$this, 'formatPrice']),
new TwigFilter('sov_cache', [$this, 'sovCache']),
];
}

public function sovCache($file)
{
$cacheTime = filemtime($this->kernel->getProjectDir() . '/public' . $file);
if ($cacheTime) {
return $file . '?c=' . $cacheTime;
} else {
return $file . "?c=0";
}
}

public function formatPrice($price, $unbreakableSpace = true)
{
$price = number_format($price, 2, ',', ' ');

Načítá se…
Zrušit
Uložit