Frontend page information
New in version 13.0
This request attribute replaces various page related properties of \TYPO3\CMS\Frontend\Controller\TyposcriptFrontendController.
Attention
The class is currently still marked as experimental. However, extension
authors are encouraged to use information from this request attribute
instead of the Typoscript
(TSFE) properties
already: TYPO3 Core v13 will try to not break especially the getters /
properties not marked as @internal
.
The frontend.
frontend request attribute provides
frequently used page information. The attribute is attached to the PSR-7
frontend request by the middleware
Typo
, middlewares below can rely on existence
of that attribute.
/** @var \TYPO3\CMS\Frontend\Page\PageInformation $pageInformation */
$pageInformation = $request->getAttribute('frontend.page.information');
// Formerly $tsfe->id
$id = $pageInformation->getId();
// Formerly $tsfe->page
$page = $pageInformation->getPageRecord();
// Formerly $tsfe->rootLine
$rootLine = $pageInformation->getRootLine();
// Formerly $tsfe->config['rootLine']
$rootLine = $pageInformation->getLocalRootLine();