---
title: "Deprecation: #89866 - Global TYPO3-information related constants"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-89866"
source: "Changelog/10.3/Deprecation-89866-Global-TYPO3-information-related-constants.rst"
typo3-version: "10.3"
typo3-major: 10
type: "deprecation"
issue: 89866
forge: "https://forge.typo3.org/issues/89866"
tags: ["PHP-API", "FullyScanned", "ext:core"]
rendered: "2026-09-25T23:17:45+00:00"
---

# Deprecation: #89866 - Global TYPO3-information related constants {#deprecation-89866}

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

## Description {#description}

The following global constants, which are initialized at the very
beginning of each TYPO3-related PHP process, have been marked as deprecated:

-   `TYPO3_copyright_year`
-   `TYPO3_URL_GENERAL`
-   `TYPO3_URL_LICENSE`
-   `TYPO3_URL_EXCEPTION`
-   `TYPO3_URL_DONATE`
-   `TYPO3_URL_WIKI_OPCODECACHE`

They have been migrated to the PHP class `\TYPO3\CMS\Core\Information\Typo3Information`
in order to benefit from opcaching, and to exactly reference when they are used
and where they are used throughout TYPO3.

This allows for further optimizations during the Bootstrap process and in our
testing suites.

In addition, the new PHP class encapsulates all global TYPO3-information and
community-wide information in one place.

## Impact {#impact}

No `E_USER_DEPRECATED` error is triggered, however the constants will work during
TYPO3 v10, and be removed with TYPO3 v11.

## Affected Installations {#affected-installations}

Any TYPO3 installation with a custom extension that uses these
constants directly, which is highly unlikely.

## Migration {#migration}

Use the public class constants or the public methods of the
new PHP class `\TYPO3\CMS\Core\Information\Typo3Information` directly.
