---
title: "Breaking: #79227 - Removed ExtDirect State Provider"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-79227"
source: "Changelog/8.6/Breaking-79227-RemovedExtDirectStateProvider.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Breaking: #79227 - Removed ExtDirect State Provider

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

## Description

The ExtDirect based State Provider for ExtJS applications (endpoint `TYPO3.ExtDirectStateProvider.ExtDirect`) has been removed.

The ExtDirect endpoint `TYPO3.ExtDirectStateProvider.ExtDirect` is no longer available.

The following PHP classes have been removed:

-   `\TYPO3\CMS\Backend\InterfaceState\ExtDirect\DataProvider`
-   `\TYPO3\CMS\Backend\Tree\AbstractTreeStateProvider`
-   `\TYPO3\CMS\Backend\Tree\AbstractExtJsTree`

The relevant JavaScript file `ExtDirect.StateProvider.js` has been removed.

The PHP method php:`DocumentTemplate->setExtDirectStateProvider()` to load the JavaScript file has been removed.

Instead the jQuery-based AMD module `TYPO3CMSBackendStorage` is incorporated to load the data the same way via an anonymous
State Provider which is handed to ExtJS as long as ExtJS is still available in the TYPO3 Core.

## Impact

Accessing the ExtDirect endpoint will result in a JavaScript error. Loading the JavaScript file will result in a HTTP 404 error.

Instantiating the PHP class will result in a fatal PHP error.

## Affected Installations

Any installation using custom implementations with ExtDirect and the State Provider shipped with the TYPO3 Core.

## Migration

Include the `TYPO3CMSBackendStorage`, and use the UserSettingsController class directly on the PHP side to
access the user settings.

See the implementation of the JavaScript Storage object for a more detailed usage.
