如何在TYPO3中的“新内容元素”向导的列表中对FCE进行排序/排序? 我找到了TSconfig来自的CacheFramework条目,但我不知道如何更改FCE的排序。我的wizardTab是“Content-Elements”。
cf_fluidcontent
实体包含:
...
mod.wizards.newContentElement.wizardItems.Content-Elements {
header = Content-Elements
show = buz,foo,bar
position = 0
key = test_template
}
问候
凯
答案 0 :(得分:3)
答案就在这里 https://github.com/FluidTYPO3/fluidcontent/issues/181
因此您可以使用Flux-Form对元素进行排序
<flux:form id="foo"
options="{
Fluidcontent: {sorting: 101},
icon: '{f:uri.resource(path: \'Icons/Content/Foo.png\')}',
group: 'My FCE'
}"
>
答案 1 :(得分:1)
订单取决于项目添加到mod.wizards.newContentElement.wizardItems.Content-Elements.elements
的顺序。
mod.wizards.newContentElement.wizardItems.Content-Elements.show
未指定订单。
(TYPO3 6.2.14)