我现在才开始使用 Fluid 驱动的 TYPO3(使用 Claus Due [flux、fluidpages、fluidcontent、vhs 等] 的出色扩展)
我想做的是:
- 在 Section 中使用 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 机制的东西?我想要像您从工作[Access]
表中的常规 tt_content 元素中知道的开始、停止、隐藏、组访问等字段。
当然可以自己添加字段并在该"Main"
部分中添加一些条件,但这会让人泪流满面,我想这不会达到目的,因为我认为会有缓存问题