You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/ExtensionArchitecture/FileStructure/Configuration/TCA/Index.rst
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,17 @@ TCA file during the TCA compilation process.
33
33
:shortDescription: Contains the TCA (Table Configuration Array), which initially defines the table <tablename>. Change TCA of existing tables in directory TCA/Overrides
34
34
35
35
One file per database table, using the name of the table for the file, plus
36
-
".php". Only for new tables, provided by the extension itself. **Must not** be used to change existing tables provided by other extensions.
36
+
".php". Only for new tables, provided by the extension itself.
37
+
38
+
**Must not** be used to change existing tables provided by other extensions.
39
+
40
+
.. versionchanged:: 14.0
41
+
The backwards compatibility for usage of :php:`$GLOBALS['TCA']` in base TCA files
42
+
is removed. See `Important: #107328 - $GLOBALS['TCA'] in base TCA files <https://docs.typo3.org/permalink/changelog:important-107328-1756815543>`_.
43
+
44
+
Using :php:`$GLOBALS['TCA']` was discouraged before this change and is
45
+
impossible as the global is not set starting with 14.0. It **remains** possible to change this global variable in TCA Overrides for now.
0 commit comments