Skip to content
Snippets Groups Projects
Commit 57552216 authored by Chris Müller's avatar Chris Müller Committed by Benni Mack
Browse files

[DOCS] Improve changelog for auto-registration of new ce wizard via TCA

The given migration examples were not really practical, as an integrator
does not return an array, but use either the API for adding a new
content element/plugin, or manipulate the TCA array directly via
`Configuration/TCA/Overrides/tt_content.php` for adding `saveAndClose`
or `defaultValues`. To ease the work for integrators when migrating
to the new options, the examples have been improved.

Additionally, captions for the files have been added to ease grasping
the context of the examples.

Resolves: #104806
Related: #102834
Releases: main
Change-Id: Idc840c611751be79dec475d372c9a2f29d23f32f
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/85860


Tested-by: default avatarGarvin Hicking <gh@faktor-e.de>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarGarvin Hicking <gh@faktor-e.de>
parent dc47fd33
Branches
Tags
No related merge requests found
...@@ -20,45 +20,61 @@ and :php:`icon` are used to define the wizard entry. ...@@ -20,45 +20,61 @@ and :php:`icon` are used to define the wizard entry.
The migration looks as follows: The migration looks as follows:
.. code-block:: typoscript Before:
.. code-block:: typoscript
:caption: EXT:my_extension/Configuration/page.tsconfig
# Add a new element (header) to the "common" group # Add a new element (header) to the "common" group
mod.wizards.newContentElement.wizardItems.common.elements.header { mod.wizards.newContentElement.wizardItems.common.elements.header {
iconIdentifier = content-header iconIdentifier = content-header
title = LLL:EXT:backend/Resources/Private/Language/locallang_db_new_content_el.xlf:common_headerOnly_title title = LLL:EXT:backend/Resources/Private/Language/locallang_db_new_content_el.xlf:common_headerOnly_title
description = LLL:EXT:backend/Resources/Private/Language/locallang_db_new_content_el.xlf:common_headerOnly_description description = LLL:EXT:backend/Resources/Private/Language/locallang_db_new_content_el.xlf:common_headerOnly_description
tt_content_defValues { tt_content_defValues {
CType = header CType = header
} }
} }
mod.wizards.newContentElement.wizardItems.common.show := addToList(header) mod.wizards.newContentElement.wizardItems.common.show := addToList(header)
.. code-block:: php After:
<?php .. code-block:: php
:caption: EXT:my_extension/Configuration/TCA/Overrides/tt_content.php
:emphasize-lines: 7-9
return [ // use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
'columns' => [
'CType' => [ ExtensionManagementUtility::addPlugin(
'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.type', [
'config' => [ 'label' => 'LLL:EXT:backend/Resources/Private/Language/locallang_db_new_content_el.xlf:common_headerOnly_title'
'type' => 'select', 'description' => 'LLL:EXT:backend/Resources/Private/Language/locallang_db_new_content_el.xlf:common_headerOnly_description',
'renderType' => 'selectSingle', 'group' => 'default',
'items' => [ 'value' => 'header',
[ 'icon' => 'content-header',
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:CType.header',
'description' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:CType.header.description',
'value' => 'header',
'icon' => 'content-header',
'group' => 'default',
],
],
],
],
], ],
]; 'CType',
'my_extension',
);
And for an Extbase plugin:
.. code-block:: php
:caption: EXT:my_extension/Configuration/TCA/Overrides/tt_content.php
:emphasize-lines: 7-9
// use TYPO3\CMS\Extbase\Utility\ExtensionUtility;
.. note:: ExtensionUtility::registerPlugin(
'my_extension', // extension name
'my_plugin', // plugin name
'My plugin title', // plugin title
'my-icon', // icon identifier
'default', // group
'My plugin description' // plugin description
);
.. note::
Probably it will only be necessary to migrate the :typoscript:`description`, Probably it will only be necessary to migrate the :typoscript:`description`,
as the other values are already set most of the time. This can be done as the other values are already set most of the time. This can be done
...@@ -70,75 +86,95 @@ The migration looks as follows: ...@@ -70,75 +86,95 @@ The migration looks as follows:
The :typoscript:`saveAndClose` option is now defined through TCA as well: The :typoscript:`saveAndClose` option is now defined through TCA as well:
.. code-block:: typoscript Before:
.. code-block:: typoscript
:caption: EXT:my_extension/Configuration/page.tsconfig
mod.wizards.newContentElement.wizardItems { mod.wizards.newContentElement.wizardItems {
special.elements { special.elements {
div { div {
saveAndClose = 1 saveAndClose = 1
}
} }
}
} }
.. code-block:: php After:
.. code-block:: php
:caption: EXT:my_extension/Configuration/TCA/Overrides/tt_content.php
<?php <?php
return [ $GLOBALS['TCA']['tt_content'] = array_merge_recursive(
'types' => [ $GLOBALS['TCA']['tt_content'],
'div' => [ [
'creationOptions' => [ 'types' => [
'saveAndClose' => true, 'div' => [
'creationOptions' => [
'saveAndClose' => true,
],
], ],
], ],
], ]
]; );
The same goes for the default values. The option has been renamed from The same applies to the default values. The option has been renamed from
`tt_content_defValues` to `defaultValues`: `tt_content_defValues` to `defaultValues`:
.. code-block:: typoscript Before:
.. code-block:: typoscript
:caption: EXT:my_extension/Configuration/page.tsconfig
mod.wizards.newContentElement.wizardItems { mod.wizards.newContentElement.wizardItems {
special.elements { special.elements {
html { html {
tt_content_defValues { tt_content_defValues {
bodytext = some text bodytext = some text
} }
}
} }
}
} }
.. code-block:: php After:
.. code-block:: php
:caption: EXT:my_extension/Configuration/TCA/Overrides/tt_content.php
<?php <?php
return [ $GLOBALS['TCA']['tt_content'] = array_merge_recursive(
'types' => [ $GLOBALS['TCA']['tt_content'],
'html' => [ [
'creationOptions' => [ 'types' => [
'defaultValues' => [ 'html' => [
'bodytext' => 'some text' 'creationOptions' => [
'defaultValues' => [
'bodytext' => 'some text'
],
], ],
], ],
], ],
], ]
]; );
Removing items from the select box still works as before through page Removing items from the select box still works as before through page
TSconfig :typoscript:`TCEFORM`. This will remove both the TCA items entry TSconfig :typoscript:`TCEFORM`. This will remove both the TCA items entry
and the wizard entry. and the wizard entry.
.. code-block:: typoscript .. code-block:: typoscript
:caption: EXT:my_extension/Configuration/page.tsconfig
TCEFORM.tt_content.CType { TCEFORM.tt_content.CType {
removeItems := addToList(header) removeItems := addToList(header)
} }
To hide groups or elements in the wizard a new option :typoscript:`removeItems` To hide groups or elements in the wizard a new option :typoscript:`removeItems`
is available. is available.
.. code-block:: typoscript .. code-block:: typoscript
:caption: EXT:my_extension/Configuration/page.tsconfig
# Before # Before
mod.wizards.newContentElement.wizardItems.special.show := removeFromList(html) mod.wizards.newContentElement.wizardItems.special.show := removeFromList(html)
...@@ -148,7 +184,8 @@ is available. ...@@ -148,7 +184,8 @@ is available.
As mentioned, it's also possible to remove a whole group: As mentioned, it's also possible to remove a whole group:
.. code-block:: typoscript .. code-block:: typoscript
:caption: EXT:my_extension/Configuration/page.tsconfig
# This will remove the "menu" group # This will remove the "menu" group
mod.wizards.newContentElement.wizardItems.removeItems := addToList(menu) mod.wizards.newContentElement.wizardItems.removeItems := addToList(menu)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment