。
早在TYPO3 4.5中,TSFE:lastImgResourceInfo|filesize
访问TypoScript中最后一个渲染图像的文件大小。TYPO3 7.6.x 或 8.7.x 中是否有等效项?
我在这里需要它:
70 = CONTENT
70 {
table = tt_content
select {
orderBy = sorting
where = colPos=0
pidInList.data = field : content_from_pid
max = 1
}
wrap = <enclosure type="image/jpeg" url="{$rssFeed.feedBaseUrl}|" />
renderObj = COA
renderObj {
10 = FILES
10 {
references {
table = tt_content
uid.data = uid
fieldName = image
}
renderObj = COA
renderObj {
10 = IMG_RESOURCE
10 {
file {
import.data = file:current:originalUid
width.field = imagewidth
maxW = {$rssFeed.feedImageMaxWidth}
}
}
20 = TEXT
# this used to work in TYPO3 4.5
20.data = TSFE:lastImgResourceInfo|filesize
20.wrap = " length="|
}
}
}
}
应该TSFE:lastImageInfo
,即使在 TYPO3 4.5 中也是如此。似乎也在以后的版本中设置
TSFE:lastImgResourceInfo
在7.x 及更高版本中仍然存在,但字段filesize
消失了。我在它去的代码中找不到任何信息。