---
title: "Deprecation: #95083 - Backend toolbar CacheActions hook"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-95083"
source: "Changelog/11.4/Deprecation-95083-BackendToolbarCacheActionsHook.rst"
typo3-version: "11.4"
typo3-major: 11
type: "deprecation"
issue: 95083
forge: "https://forge.typo3.org/issues/95083"
tags: ["PHP-API", "FullyScanned", "ext:backend"]
rendered: "2026-09-18T10:44:28+00:00"
---

# Deprecation: #95083 - Backend toolbar CacheActions hook {#deprecation-95083}

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

## Description {#description}

The TYPO3 hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['additionalBackendItems']['cacheActions']`
which can be used to modify the cache actions, shown in the TYPO3 Backend
top toolbar, has been marked as deprecated.

The accompanied PHP interface for the hook
`\TYPO3\CMS\Backend\Toolbar\ClearCacheActionsHookInterface` has been
marked as deprecated as well.

## Impact {#impact}

If the hook is registered in a TYPO3 installation, a PHP `E_USER_DEPRECATED` error is triggered.
The extension scanner also detects any usage
of the deprecated interface as strong, and the definition of the
hook as weak match.

## Affected Installations {#affected-installations}

TYPO3 installations with custom extensions using this hook.

## Migration {#migration}

Migrate to the newly introduced `\TYPO3\CMS\Backend\Backend\Event\ModifyClearCacheActionsEvent` PSR-14 event.
