---
title: "Feature: #102715 - New frontend.page.information request attribute"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-102715-1703261072"
source: "Changelog/13.0/Feature-102715-NewFrontendpageinformationRequestAttribute.rst"
typo3-version: "13.0"
typo3-major: 13
type: "feature"
issue: 102715
forge: "https://forge.typo3.org/issues/102715"
tags: ["Frontend", "PHP-API", "ext:frontend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #102715 - New frontend.page.information request attribute {#feature-102715-1703261072}

See [forge#102715](https://forge.typo3.org/issues/102715)

## Description {#description}

TYPO3 v13 introduces the new frontend-related PSR-7 request attribute `frontend.page.information`
implemented by class `\TYPO3\CMS\Frontend\Page\PageInformation`. The object aims to replace
various page related properties of `\TYPO3\CMS\Frontend\Controller\TyposcriptFrontendController`.

## Impact {#impact}

There are three properties in `TyposcriptFrontendController` frequently used by extensions,
which are now modeled in `\TYPO3\CMS\Frontend\Page\PageInformation`. The attribute is
attached to the PSR-7 frontend request by middleware `TypoScriptFrontendInitialization`,
middlewares below can rely on existence of that attribute. Examples:

```php
$pageInformation = $request->getAttribute('frontend.page.information');
// Formerly $tsfe->id
$id = $pageInformation->getId();
// Formerly $tsfe->page
$page = $pageInformation->getPageRecord();
// Formerly $tsfe->rootLine
$rootLine = $pageInformation->getRootLine();
```
