Breaking: #102745 - Removed ContentObject stdWrap hook
See forge#102745
Description
The ContentObject stdWrap hook $GLOBALS
has been removed in favor of the more powerful PSR-14 events:
\TYPO3\
CMS\ Frontend\ Content Object\ Event\ Before Std Wrap Functions Initialized Event \TYPO3\
CMS\ Frontend\ Content Object\ Event\ After Std Wrap Functions Initialized Event \TYPO3\
CMS\ Frontend\ Content Object\ Event\ Before Std Wrap Functions Executed Event \TYPO3\
CMS\ Frontend\ Content Object\ Event\ After Std Wrap Functions Executed Event
Impact
Any hook implementation registered is not executed anymore in TYPO3 v13.0+. The extension scanner will report usages.
Affected installations
TYPO3 installations with custom extensions using the hook.
Migration
The hook is removed without deprecation in order to allow extensions to work with TYPO3 v12 (using the hook) and v13+ (using the new events) when implementing the events as well without any further deprecations. Use the PSR-14 events to allow greater influence in the functionality.