Fab преди 3 години
родител
ревизия
a816e4115f
променени са 1 файла, в които са добавени 11 реда и са изтрити 1 реда
  1. +11
    -1
      Twig/TwigExtension.php

+ 11
- 1
Twig/TwigExtension.php Целия файл

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

Loading…
Отказ
Запис