TASK: Use same order within all files for plugins

This commit is contained in:
Daniel Siepmann 2018-10-27 13:15:29 +02:00
parent 140dea3cbb
commit 30746038c3
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -1,16 +1,5 @@
# dummy placeholders for item groups
mod.wizards.newContentElement.wizardItems.plugins { mod.wizards.newContentElement.wizardItems.plugins {
elements { elements {
searchcore_form {
title = LLL:EXT:search_core/Resources/Private/Language/locallang_be.xlf:plugin.form.title
description = LLL:EXT:search_core/Resources/Private/Language/locallang_be.xlf:plugin.form.description
iconIdentifier = plugin-search_core-form
tt_content_defValues {
CType = list
list_type = searchcore_form
}
}
searchcore_results { searchcore_results {
title = LLL:EXT:search_core/Resources/Private/Language/locallang_be.xlf:plugin.results.title title = LLL:EXT:search_core/Resources/Private/Language/locallang_be.xlf:plugin.results.title
description = LLL:EXT:search_core/Resources/Private/Language/locallang_be.xlf:plugin.results.description description = LLL:EXT:search_core/Resources/Private/Language/locallang_be.xlf:plugin.results.description
@ -20,5 +9,15 @@ mod.wizards.newContentElement.wizardItems.plugins {
list_type = searchcore_results list_type = searchcore_results
} }
} }
searchcore_form {
title = LLL:EXT:search_core/Resources/Private/Language/locallang_be.xlf:plugin.form.title
description = LLL:EXT:search_core/Resources/Private/Language/locallang_be.xlf:plugin.form.description
iconIdentifier = plugin-search_core-form
tt_content_defValues {
CType = list
list_type = searchcore_form
}
}
} }
} }