.. include:: /Includes.rst.txt .. index:: Events; AfterStdWrapFunctionsInitializedEvent .. _AfterStdWrapFunctionsInitializedEvent: ===================================== AfterStdWrapFunctionsInitializedEvent ===================================== .. versionadded:: 13.0 This event is one of the more powerful replacements for the removed hook :php:`$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['stdWrap']`. The PSR-14 event :php:`\TYPO3\CMS\Frontend\ContentObject\Event\AfterStdWrapFunctionsInitializedEvent` is dispatched after any :ref:`stdWrap ` functions have been initialized, but before any content gets modified or replaced. Calling order of similar events: * :ref:`BeforeStdWrapFunctionsInitializedEvent` * AfterStdWrapFunctionsInitializedEvent * :ref:`BeforeStdWrapFunctionsExecutedEvent` * :ref:`AfterStdWrapFunctionsExecutedEvent` .. seealso:: :ref:`EnhanceStdWrapEvent` Example ======= Have a look into the :ref:`example of EnhanceStdWrapEvent `. API === .. include:: /CodeSnippets/Events/Frontend/AfterStdWrapFunctionsInitializedEvent.rst.txt