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

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

This argument is not evaluated anymore and will be removed in TYPO3 v12.