Breaking: #102745 - Removed ContentObject stdWrap hook

See forge#102745

Description

The ContentObject stdWrap hook $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['stdWrap'] has been removed in favor of the more powerful PSR-14 events:

  • \TYPO3\CMS\Frontend\ContentObject\Event\BeforeStdWrapFunctionsInitializedEvent
  • \TYPO3\CMS\Frontend\ContentObject\Event\AfterStdWrapFunctionsInitializedEvent
  • \TYPO3\CMS\Frontend\ContentObject\Event\BeforeStdWrapFunctionsExecutedEvent
  • \TYPO3\CMS\Frontend\ContentObject\Event\AfterStdWrapFunctionsExecutedEvent

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.