0

I've installed a Twitter plugin from the Typo3 repository.

What would be the best way to insert a "variable" into my TemplaVoila template so I can place the twitter feed on my template? (I want it to be visible on every page)

I imagined inserting something like ###TWITTER### into my TemplaVoila template which Typo3 would replace with the twitter feed, instead of adding the plugin to every page.

4

2 回答 2

1

您可以像往常一样使用 templavoila 映射您的电视模板标记。然后在您的打字稿模板中,您可以使用这个 twitter 插件创建一个内容对象并将其添加到您的页面对象中。我不确定 templavoila 如何帮助您?

以下是 TV 中 TS 对象路径的示例:

    <field_toolmenu type="array">
     <tx_templavoila type="array">
    <title>Toolmenu</title>
    <description>mappt Toolmenu</description>
    <sample_data type="array">
         <numIndex index="0"></numIndex>
    </sample_data>
    <eType>TypoScriptObject</eType>
               <TypoScriptObjPath>lib.toolmenu</TypoScriptObjPath>
    </tx_templavoila>
</field_toolmenu>

lib.toolmenu 是您可以在页面模板中添加插件或任何 ts 内容对象 (cObject) 的 obj 路径。

于 2012-03-07T10:09:32.700 回答
1

将 TypoScript 对象路径与 TemplaVoiila 一起使用。

您可以定义一个包含您的插件的 TypoScript 对象 lib.twitter,然后将其映射到带有 BE 模块接口的 TemplaVoila。

于 2012-03-07T10:09:59.347 回答