Explorar el Código

Merge branch 'develop' of https://forge.laclic.fr/Laclic/SovBundle into develop

develop
Fab hace 3 años
padre
commit
a816e4115f
Se han modificado 1 ficheros con 11 adiciones y 1 borrados
  1. +11
    -1
      Twig/TwigExtension.php

+ 11
- 1
Twig/TwigExtension.php Ver fichero

@@ -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, ',', ' ');

Cargando…
Cancelar
Guardar