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,37 @@
.. include:: /Includes.rst.txt
.. _feature-75497:
==============================================
Feature: #75497 - inline backend layout wizard
==============================================
See :issue:`75497`
Description
===========
A new renderType was added to render the backend layout wizard inline in FormEngine.
Impact
======
The old `BackendLayoutWizardController` which has rendered the backend layout wizard in a popup has been removed.
Use the new renderType `belayoutwizard` to render the backend layout wizard inline in FormEngine.
example TCA configuration:
.. code-block:: php
'config' => array(
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.config',
'config' => array(
'type' => 'text',
'renderType' => 'belayoutwizard',
)
)
.. index:: TCA, Backend