TYPO3 中的内容模板呈现
我遇到了一个与内容渲染有关的奇怪问题。
我使用以下代码来获取内容:
lib.otherContent = CONTENT
lib.otherContent {
table = tt_content
select {
pidInList = this
orderBy = sorting
where = colPos=0
languageField = sys_language_uid
}
renderObj = COA
renderObj {
10 = TEXT
10.field = header
10.wrap = <h2>|</h2>
20 = TEXT
20.field = bodytext
20.wrap = <div class="article">|</div>
}
}
一切正常,除了我想使用预定义的列内容模板而不是简单文本(带图像的文本,仅图像< /em>、项目符号列表等)。
问题是:我必须用什么替换 renderObj = COA 和括号之间的其余部分才能让 TYPO3 正确显示它?
谢谢, 我。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可用的 cObject 或多或少在 TSRef,第 8 章。
用于渲染带有图像的文本的 TypoScript 可以在typo3/sysext/css_styled_content/static/v4.3/setup.txt第724行找到,在附近你会发现例如项目符号(下面)和图像(上面),其中在 textpic 第 731 行中引用。它的变体是您将在 renderObj 中编写的内容。
您可以在文件typo3/sysext/cms/tslib/class.tslib_content.php 中找到更多详细信息,其中例如带有图像的文本位于第897 行或附近,称为IMGTEXT(执行区分大小写的搜索)。另请参见typo3/sysext/css_styled_content/pi1/class.cssstyledcontent_pi1.php 中的第403行左右,其中发生了较新的基于css的渲染。
The available cObjects are more or less listed in TSRef, chapter 8.
TypoScript for rendering Text w/image can be found in typo3/sysext/css_styled_content/static/v4.3/setup.txt at line 724, and in the neighborhood you'll find e.g. bullets (below) and image (above), which is referenced in textpic line 731. Variants of this is what you'll write in your renderObj.
You will find more details in the file typo3/sysext/cms/tslib/class.tslib_content.php, where e.g. text w/image is found at or around line 897 and is called IMGTEXT (do a case-sensitive search). See also around line 403 in typo3/sysext/css_styled_content/pi1/class.cssstyledcontent_pi1.php, where the newer css-based rendering takes place.