使用打字错误 typo3 包装扩展输出不起作用

wrap extension output with typoscript typo3 is not working

我正在使用 Typo3 7.6.4,我想用 div.

包装扩展输出

分机号是csv-table

如何使用 Typoscript 执行此操作?

大多数插件被定义为 USERUSER_INT 对象。这些有 属性 stdWrap See TypoScript Reference - USER(_INT) 我找不到 TYPO3 7 的扩展名 'csv-table',但我们假设它在 TypoScript 中作为 plugin.tx_csvtable_pi1 可用,那么您可以使用类似的东西:

plugin.tx_csvtable_pi1.stdWrap.wrap = <div class="myCsvTable">|</div>

如果您使用 EXT:fluid_styled_content

,最好的方法是使用流畅的布局

Resources/Private/Templates/CsvTable.html

<f:layout name="Default" />

<f:section name="Main">
  my output
</f:section>

Resources/Private/Layouts/Default.html

<div class="my-element">
  <f:render section="Main" />
</div>

TypoScript reference: FLUIDTEMPLATE

如果你使用旧的 css_styled_content 你可以使用这个

tt_content.my_ext = COA
tt_content.my_ext.stdWrap.wrap = <div>|</div>