Uri.page ViewHelper <f:uri.page>

A ViewHelper for creating URIs to TYPO3 pages.

Examples

URI to the current page

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

/page/path/name.html

Depending on current page, routing and page path configuration.

Query parameters

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

/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'}}" />
Copied!

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

Depending on current page, routing and page path configuration.

Source code

Go to the source code of this ViewHelper: Uri\PageViewHelper.php (GitHub).

Arguments

The following arguments are available for the uri.page ViewHelper:

pageUid
Type
int
target PID
additionalParams
Type
array
Default
array ( )
query parameters to be attached to the resulting URI
pageType
Type
int
Default
0
type of the target page. See typolink.parameter
noCache
Type
bool
Default
false
set this to disable caching for the target page. You should not need this.
language
Type
string
link to a specific language - defaults to the current language, use a language ID or "current" to enforce a specific language
section
Type
string
Default
''
the anchor to be added to the URI
linkAccessRestrictedPages
Type
bool
Default
false
If set, links pointing to access restricted pages will still link to the page even though the page cannot be accessed.
absolute
Type
bool
Default
false
If set, the URI of the rendered link is absolute
addQueryString
Type
string
Default
false
If set, the current query parameters will be kept in the URL. If set to "untrusted", then ALL query parameters will be added. Be aware, that this might lead to problems when the generated link is cached.
argumentsToBeExcludedFromQueryString
Type
array
Default
array ( )
arguments to be removed from the URI. Only active if $addQueryString = TRUE