[!!!][FEATURE] Introduce PSR-14 events when storing cached content in frontend
This change adds two new PSR-14 Events * \TYPO3\CMS\Frontend\Event\AfterCacheableContentIsGeneratedEvent * \TYPO3\CMS\Frontend\Event\AfterCachedPageIsPersistedEvent which replace $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['contentPostProc-cached'] $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['contentPostProc-all'] and $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['usePageCache'] $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['insertPageIncache'] hooks. Those hooks were much important and powerful, receiving even more power by the new Events, which allow manipulating content stored in cache, or when a page was cached in the Frontend. Additionally, the TSFE->generatePage_postProcessing() method does now require a ServerRequestInterface as first paramter, to be able to pass the current request to the new events. Resolves: #97862 Releases: main Change-Id: Ibd97d22ec1c4a726a78164b234bf8b4ce41f9dca Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75039 Tested-by:Oliver Bartsch <bo@cedev.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Benni Mack <benni@typo3.org>
Showing
- typo3/sysext/core/Documentation/Changelog/12.0/Breaking-97862-HooksRelatedToGeneratingPageContentRemoved.rst 77 additions, 0 deletions...king-97862-HooksRelatedToGeneratingPageContentRemoved.rst
- typo3/sysext/core/Documentation/Changelog/12.0/Feature-97862-NewPSR-14EventsForManipulatingFrontendPageGenerationAndCacheBehaviour.rst 78 additions, 0 deletions...orManipulatingFrontendPageGenerationAndCacheBehaviour.rst
- typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php 27 additions, 49 deletions...ntend/Classes/Controller/TypoScriptFrontendController.php
- typo3/sysext/frontend/Classes/Event/AfterCacheableContentIsGeneratedEvent.php 67 additions, 0 deletions...d/Classes/Event/AfterCacheableContentIsGeneratedEvent.php
- typo3/sysext/frontend/Classes/Event/AfterCachedPageIsPersistedEvent.php 69 additions, 0 deletions...rontend/Classes/Event/AfterCachedPageIsPersistedEvent.php
- typo3/sysext/frontend/Classes/Http/RequestHandler.php 2 additions, 2 deletionstypo3/sysext/frontend/Classes/Http/RequestHandler.php
- typo3/sysext/indexed_search/Classes/EventListener/FrontendGenerationPageIndexingTrigger.php 37 additions, 31 deletions...s/EventListener/FrontendGenerationPageIndexingTrigger.php
- typo3/sysext/indexed_search/Configuration/Services.yaml 6 additions, 0 deletionstypo3/sysext/indexed_search/Configuration/Services.yaml
- typo3/sysext/indexed_search/ext_localconf.php 0 additions, 2 deletionstypo3/sysext/indexed_search/ext_localconf.php
- typo3/sysext/install/Configuration/ExtensionScanner/Php/ArrayDimensionMatcher.php 24 additions, 0 deletions...figuration/ExtensionScanner/Php/ArrayDimensionMatcher.php
- typo3/sysext/install/Configuration/ExtensionScanner/Php/MethodArgumentRequiredMatcher.php 7 additions, 0 deletions...on/ExtensionScanner/Php/MethodArgumentRequiredMatcher.php
Please register or sign in to comment