diff --git a/Configuration/PageTSconfig/Mod/Wizards/0_NewContentElement.tsconfig b/Configuration/PageTSconfig/Mod/Wizards/0_NewContentElement.tsconfig index 0ecc9d9..9d4a1a7 100644 --- a/Configuration/PageTSconfig/Mod/Wizards/0_NewContentElement.tsconfig +++ b/Configuration/PageTSconfig/Mod/Wizards/0_NewContentElement.tsconfig @@ -15,7 +15,7 @@ mod.wizards.newContentElement.wizardItems { show = menu_abstract, menu_pages, menu_subpages } special { - show = + show = shortcut } forms { show = @@ -26,6 +26,6 @@ mod.wizards.newContentElement.wizardItems { } TCEFORM.tt_content { CType { - keepItems := addToList(text, image, video, menu_abstract, menu_pages, menu_subpages) + keepItems := addToList(text, image, video, menu_abstract, menu_pages, menu_subpages, shortcut) } } diff --git a/Configuration/TypoScript/Setup/ContentElements/Shortcut.typoscript b/Configuration/TypoScript/Setup/ContentElements/Shortcut.typoscript new file mode 100644 index 0000000..8002bd1 --- /dev/null +++ b/Configuration/TypoScript/Setup/ContentElements/Shortcut.typoscript @@ -0,0 +1,9 @@ +tt_content.shortcut = RECORDS +tt_content.shortcut { + source.field = records + tables = tt_content + + stdWrap { + editIcons := appendString(records) + } +}