---
title: "Breaking: #102614 - Removed Hook for manipulating GetData result"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-102614-1701869646"
source: "Changelog/13.0/Breaking-102614-RemovedHookForManipulatingGetDataResult.rst"
typo3-version: "13.0"
typo3-major: 13
type: "breaking"
issue: 102614
forge: "https://forge.typo3.org/issues/102614"
tags: ["Frontend", "PHP-API", "FullyScanned", "ext:frontend"]
rendered: "2026-09-23T16:35:56+00:00"
---

# Breaking: #102614 - Removed Hook for manipulating GetData result {#breaking-102614-1701869646}

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

## Description {#description}

The hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['getData']`
has been removed in favor of the new PSR-14 event
`\TYPO3\CMS\Frontend\ContentObject\Event\AfterGetDataResolvedEvent`.

## Impact {#impact}

Any hook implementation registered is not executed anymore
in TYPO3 v13.0+.

## Affected installations {#affected-installations}

TYPO3 installations with custom extensions using this hook.

## Migration {#migration}

The hook is removed without deprecation in order to allow extensions
to work with TYPO3 v12 (using the hook) and v13+ (using the new event)
when implementing the event as well without any further deprecations.
Use the [PSR-14 event](https://docs.typo3.org/permalink/changelog:feature-102614-1701869725)
to allow greater influence in the functionality.

> [!NOTE]
> The new event is no longer executed for every "section" of the provided
> parameter string, but only once, before the final result of `getData()`
> is about to be returned. This therefore means, the former `$secVal`
> is no longer available in the new event. Please adjust your implementation
> accordingly.
