flowFields in Fluid powered TYPO3 Section - >宾语

时间:2013-09-09 10:25:15

标签: typo3 fluid flux fedext

我刚刚开始使用Fluid供电的TYPO3(使用Claus Due的大量扩展[通量,流体页面,流体含量,vhs等])

我想做的是:

  • 在部分内使用Flexform对象添加多个内容
  • 使用类似toenableFields的内容

我在内容模板文件中的Flexform配置(在文件夹EXT:myext / Resources / Private / Templates / Content中)看起来像这样

<f:section name="Configuration">
    <flux:flexform wizardTab="Speciality" id="heroWidget">
        <flux:flexform.section name="elements">
            <flux:flexform.object name="heroteaser">
                <flux:flexform.field.text name="title" />
                <flux:flexform.field.input name="description" />
            </flux:flexform.object>
        </flux:flexform.section>
    </flux:flexform>
</f:section>

我现在的问题:是否可以在配置中添加类似enableField机制的内容?我希望从常规tt_content元素中获取启动,停止,隐藏,组访问等字段[Access]表。

当然可以自己添加字段并在"Main"部分添加一些内容,但这样会很简单,我想它不会达到目的,因为我认为会有缓存问题

1 个答案:

答案 0 :(得分:0)

Ahoi在那里!

当您使用fluidcontent时,您可以使用{record}变量。此变量包含父记录的所有存储信息。

对于可以使用的内容,可以在模板中执行{record -> f:debug()}并查看可用字段。您的期望值也应该存在。

请注意:

  • 您只能使用父记录访问字段
  • OR:自己创建字段
  • OR:使用疯狂的displayCond来实现你想要的东西

干杯, 塞德里克