sabbelasichon / typo3-rector

Rector for TYPO3
MIT License
215 stars 60 forks source link

Feature: #75497 - inline backend layout wizard #4191

Closed simonschaufi closed 3 months ago

simonschaufi commented 3 months ago

Feature: #75497 - inline backend layout wizard

https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/8.1/Feature-75497-InlineBackendLayoutWizard.html

Feature: #75497 - inline backend layout wizard

See 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:

'config' => array(
   'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.config',
   'config' => array(
      'type' => 'text',
      'renderType' => 'belayoutwizard',
   )
)
TCA, Backend