Breaking: #66868 - Move usage of BackendUserSettingsDataProvider
See forge#66868
Description
The ExtDirect API Backend
has been removed.
Impact
Third party code using either Backend
or top.
will fatal.
Affected Installations
Any installation using Backend
or top.
is affected.
Migration
In JavaScript, use TYPO3.
API. In PHP, use \TYPO3\
:
/** @var $userSettingsController \TYPO3\CMS\Backend\Controller\UserSettingsController */
$userSettingsController = GeneralUtility::makeInstance(\TYPO3\CMS\Backend\Controller\UserSettingsController::class);
$state = $userSettingsController->process('get', 'BackendComponents.States.' . $stateId);
Copied!