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.action

A ViewHelper for creating URIs to extbase actions.

Examples

URI to the show-action of the current controller:

<f:uri.action action="show" />

/page/path/name.html?tx_myextension_plugin[action]=show&tx_myextension_plugin[controller]=Standard&cHash=xyz

Depending on current page, routing and page path configuration.

Arguments

action

DataType

string

Required

false

Description

Target action

arguments

DataType

mixed

Default

array ()

Required

false

Description

Arguments

controller

DataType

string

Required

false

Description

Target controller. If NULL current controllerName is used

extensionName

DataType

string

Required

false

Description

Target Extension Name (without "tx_" prefix and no underscores). If NULL the current extension name is used

pluginName

DataType

string

Required

false

Description

Target plugin. If empty, the current plugin name is used

pageUid

DataType

mixed

Required

false

Description

Target page. See TypoLink destination

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

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

format

DataType

string

Required

false

Description

The requested format, e.g. ".html

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.

additionalParams

DataType

mixed

Default

array ()

Required

false

Description

Additional query parameters that won't be prefixed like $arguments (overrule $arguments)

absolute

DataType

mixed

Required

false

Description

If set, an absolute URI is rendered

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