다시 TYPO3 4.5에서 TypoScript의 마지막 렌더링 이미지 파일 크기에 액세스하려면 TSFE:lastImgResourceInfo|filesize
이 발생했습니다. TYPO3 7.6.x 또는 8.7.x에 해당하는 제품이 있습니까?TSFE : lastImgResourceInfo | TYPO3 7.6 또는 8.7에 해당하는 파일 크기
난 여기가 필요 :
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="|
}
}
}
}