是否有最佳做法是在当前网站访问的当前翻译中提取图像的uri?
我们有一个带有可翻译图像区域的对象。使用帮助器渲染图像:ez_render_field
工作正常。
但我现在还需要为当前的siteaccess提取图像的uri但是找不到这样做的方法。
尝试使用ez_field只会导致
{{ ez_field(content, "image_1").uri }}
在渲染模板期间抛出了异常 (“可捕获致命错误:课堂对象 无法转换eZ \ Publish \ API \ Repository \ Values \ Content \ Field 字符串“)。
答案 0 :(得分:1)
这是实现这一目标的标准方法。
其中image
是字段的名称,teaser
是您定义的图像variante。默认情况下,您有original
,small
,large
和....
{% set imgAlias = ez_image_alias( content.getField( "image" ), content.versionInfo, 'teaser' ) %}
{{ dump(imgAlias.url) }}
(imgAlias.url
正是您要找的。)
这是指向文档的链接:https://doc.ez.no/display/DEVELOPER/ez_image_alias
答案 1 :(得分:0)
我不知道这是不是最好的方法,但这就是我提出的方法:
{{ getImageUri( content.fields.image, ezpublish.siteaccess ) }}
自定义树枝功能
use Symfony\Component\Yaml\Yaml;
/**
* Class AppExtension
*
* @package AppBundle\Twig
*/
class AppExtension extends \Twig_Extension
{
public function getFilters()
{
return [
];
}
public function getFunctions()
{
return [
new \Twig_SimpleFunction('getYml', [$this, 'getYml']),
new \Twig_SimpleFunction('getImageUri', [$this, 'getImageUri']),
];
}
/**
* Pass an image object and return the original image uri in the current site access
*
* @param $imageField
* @param $siteAccess
*
* @return mixed
*/
public function getImageUri( $imageField, $siteAccess ){
$languages = $this->getYml('ezplatform', 'ezpublish:system:'.$siteAccess->name.':languages');
if($languages){
foreach($languages as $language){
if( array_key_exists( $language, $imageField ) ){
return $imageField[$language]->uri;
}
}
}
return $imageField[array_keys($imageField)[0]]->uri;
}
/**
* Internal cache of the yml files already fetched
*
* @var array
*/
private $yamlCache = [];
/**
* Return content from a app/config/*.yml file. Pass in a : separated path to fetch what you need. Empty returns the whole yml as an array
*
* @param $fileMinusExt
* @param bool $path
* @param string $delimiter
*
* @return bool|mixed
*/
public function getYml($fileMinusExt, $path = false, $delimiter = ':')
{
if (in_array($fileMinusExt, $this->yamlCache)) {
$value = $this->yamlCache[$fileMinusExt];
} else {
$value = Yaml::parse(file_get_contents('../app/config/' . $fileMinusExt . '.yml'));
}
if ($path === false) {
return $value;
}
return $this->_getYmlPath($value, explode($delimiter, $path));
}
/**
* Extract value from array
*
* @param $values
* @param $parts
*
* @return bool
*/
private function _getYmlPath($values, $parts)
{
try {
$subVal = $values[array_shift($parts)];
if (count($parts) > 0) {
return $this->_getYmlPath($subVal, $parts);
}
return $subVal;
} catch (\Exception $e) {
return false;
}
}
}