Typo3 如何排序/订购FCE';在后端的;“新内容元素”;男巫

Typo3 如何排序/订购FCE';在后端的;“新内容元素”;男巫,typo3,fluid,flux,Typo3,Fluid,Flux,如何在TYPO3中的“New content element”向导的列表中对FCE进行排序/排序? 我已经找到了TSconfig来自的CacheFramework条目,但我不知道如何更改FCE的排序。我的向导选项卡是“内容元素” cf_fluidcontent实体包含: ... mod.wizards.newContentElement.wizardItems.Content-Elements { header = Content-Elements

如何在TYPO3中的“New content element”向导的列表中对FCE进行排序/排序? 我已经找到了TSconfig来自的CacheFramework条目,但我不知道如何更改FCE的排序。我的向导选项卡是“内容元素”

cf_fluidcontent
实体包含:

...
mod.wizards.newContentElement.wizardItems.Content-Elements {
                header = Content-Elements
                show = buz,foo,bar
                position = 0
                key = test_template
}
问候

答案就在这里

因此,您可以使用通量形式对元素进行排序

<flux:form id="foo"
               options="{
               Fluidcontent: {sorting: 101},
               icon: '{f:uri.resource(path: \'Icons/Content/Foo.png\')}',
               group: 'My FCE'
               }"
        >

顺序取决于项目添加到
mod.wizards.newContentElement.wizardItems.Content Elements.Elements的顺序

mod.wizards.newContentElement.wizardItems.Content Elements.show
未指定顺序

(3.6.2.14)