---
title: "Feature: #101612 - UriBuilder->buildUriFromRequest"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-101612-1691425003"
source: "Changelog/13.0/Feature-101612-UriBuilder-buildUriFromRequest.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #101612 - UriBuilder->buildUriFromRequest

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

## Description

A new method within `\TYPO3\CMS\Backend\Routing\UriBuilder` named
`buildUriFromRequest` is added which allows to generate a URL to a backend route
of this request.

## Impact

This is typically useful when linking to the current route or module in the TYPO3
backend for extension authors to avoid internals with any PSR-7 request attribute.

Usage within a PHP module controller in the TYPO3 backend context:

`$this->uriBuilder->buildUriFromRequest($request, ['id' => $id]);`
