Breaking: #98239 - Removed "afterBuildingFinished" hook 

See forge#98239

Description 

The hook $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/form']['afterBuildingFinished'] has been removed in favor of the more powerful PSR-14 \TYPO3\CMS\Form\Event\BeforeRenderableIsAddedToFormEvent and \TYPO3\CMS\Form\Event\AfterFormIsBuiltEvent.

Impact 

Any hook implementation registered is not executed anymore in TYPO3 v14.0+.

Affected installations 

TYPO3 installations with custom extensions using this hook. The extensions scanner reports any usage as weak match.

Migration 

The hook is removed without deprecation in order to allow extensions to work with TYPO3 v13 (using the hook) and v14+ (using the new event) when implementing the event as well without any further deprecations. Use the BeforeRenderableIsAddedToFormEvent or AfterFormIsBuiltEvent to allow greater influence in the functionality.