---
title: "Important: #107328 - $GLOBALS['TCA'] in base TCA files"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:important-107328-1756815543"
source: "Changelog/14.0/Important-107328-GLOBALSTCAInBaseTCAFiles.rst"
typo3-version: "14.0"
typo3-major: 14
type: "important"
issue: 107328
forge: "https://forge.typo3.org/issues/107328"
tags: ["TCA", "ext:core"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Important: #107328 - $GLOBALS\['TCA'\] in base TCA files {#important-107328-1756815543}

See [forge#107328](https://forge.typo3.org/issues/107328)

## Description {#description}

The backward compatibility for using `$GLOBALS['TCA']` in base TCA files
has been removed. Base TCA files are the first TCA files loaded by the Core and
do not have the fully loaded TCA available yet. Until now, this worked because
the Core temporarily populated this global array during the loading process.

Note that the usage of `$GLOBALS['TCA']` in base TCA files was never
explicitly allowed or disallowed, only discouraged. It worked only due to
internal system knowledge by the user, for example, knowing that the loading
order of extensions affects when those files are loaded. The only place this
array should be used is inside TCA/Overrides/\*.php files. For all other cases,
the `TcaSchema` should be preferred.

## Migration {#migration}

In the uncommon case that you find usages of `$GLOBALS['TCA']` in base TCA
files, move that access to TCA/Overrides/\*.php files instead.
