uri.action

A view helper for creating URIs to extbase actions.

Examples

URI to the show-action of the current controller:

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

Output:

index.php?id=123&tx_myextension_plugin[action]=show&tx_myextension_plugin[controller]=Standard&cHash=xyz

(depending on the current page and your TS configuration)

Arguments

action

DataType
string
Required
true
Description
Target action

arguments

DataType
mixed
Default
array ()
Required
true
Description
Arguments

controller

DataType
string
Required
true
Description
Target controller. If NULL current controllerName is used

extensionName

DataType
string
Required
true
Description
Target Extension Name (without “tx_” prefix and no underscores). If NULL the current extension name is used

pluginName

DataType
string
Required
true
Description
Target plugin. If empty, the current plugin name is used

pageUid

DataType
mixed
Required
true
Description
Target page. See TypoLink destination

pageType

DataType
mixed
Required
true
Description
Type of the target page. See typolink.parameter

noCache

DataType
mixed
Required
true
Description
Set this to disable caching for the target page. You should not need this.

noCacheHash

DataType
mixed
Required
true
Description
Set this to suppress the cHash query parameter created by TypoLink. You should not need this.

section

DataType
string
Required
true
Description
The anchor to be added to the URI

format

DataType
string
Required
true
Description
The requested format, e.g. “.html

linkAccessRestrictedPages

DataType
mixed
Required
true
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
true
Description
Additional query parameters that won’t be prefixed like $arguments (overrule $arguments)

absolute

DataType
mixed
Required
true
Description
If set, an absolute URI is rendered

addQueryString

DataType
mixed
Required
true
Description
If set, the current query parameters will be kept in the URI

argumentsToBeExcludedFromQueryString

DataType
mixed
Default
array ()
Required
true
Description
Arguments to be removed from the URI. Only active if $addQueryString = TRUE

addQueryStringMethod

DataType
string
Required
true
Description
Set which parameters will be kept. Only active if $addQueryString = TRUE