Deprecation: #101807 - ExtensionManagementUtility::addUserTSConfig()
See forge#101807
Description
The method \TYPO3\
has been marked as deprecated in TYPO3 v13 and will be removed with TYPO3 v14.
The global configuration option $GLOBALS
has been marked as deprecated in TYPO3 v13, will be ignored and removed from instance configuration
files as silent upgrade with TYPO3 v14.
Impact
Setting default user TSconfig using Extension
in ext_
files has been superseded by
Automatic inclusion of user TSconfig of extensions. The
old way has been deprecated, extensions should switch to the new functionality by placing
default user TSconfig in Configuration/
files.
Affected installations
Instances with extensions using Extension
or directly extending $GLOBALS
are affected: Using Extension
triggers a
deprecation level log message. The extension scanner will find usages of
Extension
as strong match.
Migration
Add default user TSconfig to a Configuration/
file within an
extension and remove calls to Extension
.
Extensions with compatibility for both TYPO3 v12 and v13 should keep the old way and switch to the new way when v12 support is dropped.