TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,47 @@
.. include:: /Includes.rst.txt
.. _feature-90461:
===========================================================================
Feature: #90461 - Quick-Create Content Elements via NewContentElementWizard
===========================================================================
See :issue:`90461`
Description
===========
The new Content Element wizard within the Page Module now contains
an option called "saveAndClose" which directs a user back to the
Page Module directly instead of showing the FormEngine.
This is especially useful for custom content elements or container
content types where pre-defined values can be put in place directly,
saving editors one click on content creation.
The functionality is disabled by default, but explicitly enabled for the Content Type "divider".
Impact
======
This definition can be put into PageTSconfig (e.g. :file:`EXT:my_extension/Configuration/Page/main.tsconfig`) with the new flag "saveAndClose" enabled.
.. code-block:: typoscript
mod.wizards.newContentElement.wizardItems {
common.elements {
my_element {
iconIdentifier = content-my-icon
title = LLL:EXT:my_extension/Resources/Private/Language/ContentTypes.xlf:my_element_title
description = LLL:EXT:my_extension/Resources/Private/Language/ContentTypes.xlf:my_element_description
tt_content_defValues {
CType = my_element
header = Hello my friend
}
saveAndClose = 1
}
}
}
.. index:: Backend, TSConfig, ext:backend