浏览代码

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);
}

/**

正在加载...
取消
保存