Attention

TYPO3 v10 has reached end-of-life as of April 30th 2023 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.

Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v10 here: TYPO3 ELTS.

uri.page

A ViewHelper for creating URIs to TYPO3 pages.

Examples

URI to the current page

<f:uri.page>page link</f:uri.page>

/page/path/name.html

Depending on current page, routing and page path configuration.

Query parameters

<f:uri.page pageUid="1" additionalParams="{foo: 'bar'}" />

/page/path/name.html?foo=bar

Depending on current page, routing and page path configuration.

Query parameters for extensions

<f:uri.page pageUid="1" additionalParams="{extension_key: {foo: 'bar'}}" />

/page/path/name.html?extension_key[foo]=bar

Depending on current page, routing and page path configuration.

Arguments

pageUid

DataType

mixed

Required

false

Description

Target PID

additionalParams

DataType

mixed

Default

array ()

Required

false

Description

Query parameters to be attached to the resulting URI

pageType

DataType

mixed

Required

false

Description

Type of the target page. See typolink.parameter

noCache

DataType

mixed

Required

false

Description

Set this to disable caching for the target page. You should not need this.

language

DataType

string

Required

false

Description

Link to a specific language - defaults to the current language, use a language ID or "current" to enforce a specific language

noCacheHash

DataType

mixed

Required

false

Description

Deprecated: Set this to suppress the cHash query parameter created by TypoLink. You should not need this.

section

DataType

string

Required

false

Description

The anchor to be added to the URI

linkAccessRestrictedPages

DataType

mixed

Required

false

Description

If set, links pointing to access restricted pages will still link to the page even though the page cannot be accessed.

absolute

DataType

mixed

Required

false

Description

If set, the URI of the rendered link is absolute

addQueryString

DataType

mixed

Required

false

Description

If set, the current query parameters will be kept in the URI

argumentsToBeExcludedFromQueryString

DataType

mixed

Default

array ()

Required

false

Description

Arguments to be removed from the URI. Only active if $addQueryString = TRUE

addQueryStringMethod

DataType

string

Required

false

Description

Set which parameters will be kept. Only active if $addQueryString = TRUE