TYPO3 中的内容模板呈现

发布于 2024-09-28 11:48:40 字数 647 浏览 4 评论 0 原文

我遇到了一个与内容渲染有关的奇怪问题。

我使用以下代码来获取内容:

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 正确显示它?

谢谢, 我。

I've got a strange problem connected with content rendering.

I use following code to grab the content:

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

and everything works fine, except that I'd like to use also predefined column-content templates other than simple text (Text with image, Images only, Bullet list etc.).

The question is: with what I have to replace renderObj = COA and the rest between the brackets to let the TYPO3 display it properly?

Thanks,
I.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

執念 2024-10-05 11:48:40

可用的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文