Browse Source

Merge branch 'develop'

master
Fab 4 years ago
parent
commit
ed67e817d0
1 changed files with 7 additions and 5 deletions
  1. +7
    -5
      ShopBundle/Twig/FrontendTwigExtension.php

+ 7
- 5
ShopBundle/Twig/FrontendTwigExtension.php View File

if (substr($path, 0, 1) === '/') $path = substr($path, 1); if (substr($path, 0, 1) === '/') $path = substr($path, 1);


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


if (strpos($path, $fileManagerFolder) === false) { if (strpos($path, $fileManagerFolder) === false) {
$path = $fileManagerFolder . '/' . $path; $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);

} }


/** /**

Loading…
Cancel
Save