---
title: "Breaking: #97231 - Removed hook for manipulating inline element controls"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-97231"
source: "Changelog/12.0/Breaking-97231-RemovedHookForManipulatingInlineElementControls.rst"
typo3-version: "12.0"
typo3-major: 12
type: "breaking"
issue: 97231
forge: "https://forge.typo3.org/issues/97231"
tags: ["Backend", "PHP-API", "FullyScanned", "ext:backend"]
rendered: "2026-09-17T12:41:04+00:00"
---

# Breaking: #97231 - Removed hook for manipulating inline element controls {#breaking-97231-removed-hook-for-manipulating-inline-element-controls}

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

## Description {#description}

The hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tceforms_inline.php']['tceformsInlineHook']`
has been removed in favor of the new PSR-14 events `\TYPO3\CMS\Backend\Form\Event\ModifyInlineElementEnabledControlsEvent`
and `\TYPO3\CMS\Backend\Form\Event\ModifyInlineElementControlsEvent`.

## Impact {#impact}

Any hook implementation registered is not executed anymore
in TYPO3 v12.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 v11 (using the hook) and v12+ (using the new event).

Use the [PSR-14 events](https://docs.typo3.org/permalink/changelog:feature-97231)
to allow greater influence in the functionality.
