Fab 4 лет назад
Родитель
Сommit
ed67e817d0
1 измененных файлов: 7 добавлений и 5 удалений
  1. +7
    -5
      ShopBundle/Twig/FrontendTwigExtension.php

+ 7
- 5
ShopBundle/Twig/FrontendTwigExtension.php Просмотреть файл

@@ -70,17 +70,19 @@ class FrontendTwigExtension extends AbstractExtension
if (substr($path, 0, 1) === '/') $path = substr($path, 1);

if ($path) {
$fileManagerFolder = substr($this->getFileManagerFolder(), 1) ;
$fileManagerFolder = substr($this->getFileManagerFolder(), 1);

if (strpos($path, $fileManagerFolder) === false) {
$path = $fileManagerFolder . '/' . $path;
}
if (file_exists($path)) {
return $this->liipCacheHelper->getBrowserPath($path, $thumb);
}

return $this->liipCacheHelper->getBrowserPath($path, $thumb);
} else {

return $this->liipCacheHelper->getBrowserPath($this->getFileManagerFolder() . '/' . $default, $thumb);
}

return $this->liipCacheHelper->getBrowserPath($this->getFileManagerFolder() . '/' . $default, $thumb);

}

/**

Загрузка…
Отмена
Сохранить