Skip to content
Snippets Groups Projects
Commit 32f3cb45 authored by Chris Müller's avatar Chris Müller Committed by Lina Wolf
Browse files

[DOCS] Add section about adding custom tables to create record reaction

Resolves: #102284
Resolves: https://github.com/TYPO3-Documentation/Changelog-To-Doc/issues/297
Related: #99308
Releases: main, 12.4
Change-Id: Ia6035bce975eab7978348f4a027e8e1af21c30b2
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/81608


Tested-by: default avatarLina Wolf <112@linawolf.de>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarLina Wolf <112@linawolf.de>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent 3d167aad
Branches
Tags
No related merge requests found
......@@ -65,7 +65,8 @@ available:
Table
Select one of the tables from the list. The corresponding fields displayed
below change depending on the selected table.
below change depending on the selected table. See also
:ref:`create-database-record-extend-tables-list` on how to extend this list.
Storage PID
Select the page on which a new record should be stored.
......@@ -137,3 +138,32 @@ The content is now available on the configured page:
The created page content record on the configured page
.. _create-database-record-extend-tables-list:
Extend list of tables
=====================
By default, only a few tables can be selected for external creation in the
create record reaction. In case you want to allow your own tables to be
available in the reaction's table selection, add the table in a corresponding
:ref:`TCA override file <t3coreapi:storing-changes-extension-overrides>`:
.. code-block:: php
:caption: EXT:my_extension/Configuration/TCA/Overrides/sys_reaction.php
if (\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::isLoaded('reactions')) {
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTcaSelectItem(
'sys_reaction',
'tx_myextension_domain_model_mytable',
[
'LLL:EXT:myext/Resources/Private/Language/locallang.xlf:tx_myextension_domain_model_mytable',
'tx_myextension_domain_model_mytable',
'myextension-tx_myextension_domain_model_mytable-icon',
]
);
}
In case your extension depends on EXT:reactions the :php:`isLoaded()` check
might be skipped. Please note that tables which configured
:ref:`adminOnly <t3tca:ctrl-reference-adminonly>` to true are not allowed.
......@@ -36,7 +36,7 @@ t3coreapi = https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/
# t3home = https://docs.typo3.org/
# t3sitepackage = https://docs.typo3.org/m/typo3/tutorial-sitepackage/main/en-us/
t3start = https://docs.typo3.org/m/typo3/tutorial-getting-started/main/en-us/
# t3tca = https://docs.typo3.org/m/typo3/reference-tca/main/en-us/
t3tca = https://docs.typo3.org/m/typo3/reference-tca/main/en-us/
# t3translate = https://docs.typo3.org/m/typo3/guide-frontendlocalization/main/en-us/
# t3tsconfig = https://docs.typo3.org/m/typo3/reference-tsconfig/main/en-us/
# t3tsref = https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/
......
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