瀏覽代碼

Problème lcliip

feature/export_comptable
Guillaume 4 年之前
父節點
當前提交
f3e7fc796b
共有 1 個文件被更改,包括 5 次插入5 次删除
  1. +5
    -5
      ShopBundle/Twig/FrontendTwigExtension.php

+ 5
- 5
ShopBundle/Twig/FrontendTwigExtension.php 查看文件

@@ -67,7 +67,6 @@ class FrontendTwigExtension extends AbstractExtension

public function lcLiip($path, $thumb = 'tile', $default = 'default.jpg')
{
die('a') ;
if (substr($path, 0, 1) === '/') $path = substr($path, 1);

if ($path) {
@@ -77,11 +76,12 @@ class FrontendTwigExtension extends AbstractExtension
$path = $fileManagerFolder . '/' . $path;
}

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

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

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

/**

Loading…
取消
儲存