Attention

TYPO3 v9 has reached its end-of-life September 30th, 2021 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.

You can order Extended Long Term Support (ELTS) 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.

noCacheHash

DataType

mixed

Required

false

Description

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