Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 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 v11 here: TYPO3 ELTS.
Uri.action ViewHelper <f: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.
Source code
Go to the source code of this ViewHelper: ActionViewHelper.php (GitHub).
Arguments
The following arguments are available for <f:
:
action
-
- Type
- string
Target action
arguments
-
- Type
- mixed
- Default
array
()
Arguments (do not use reserved keywords "action", "controller" or "format" if not referring to these internal variables specifically)
controller
-
- Type
- string
Target controller. If NULL current controllerName is used
extensionName
-
- Type
- string
Target Extension Name (without
tx_
prefix and no underscores). If NULL the current extension name is used
pluginName
-
- Type
- string
Target plugin. If empty, the current plugin name is used
pageUid
-
- Type
- mixed
Target page. See TypoLink destination
pageType
-
- Type
- mixed
Type of the target page. See typolink.parameter
noCache
-
- Type
- boolean
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
The anchor to be added to the URI
format
-
- Type
- string
The requested format, e.g. ".html
linkAccessRestrictedPages
-
- Type
- boolean
If set, links pointing to access restricted pages will still link to the page even though the page cannot be accessed.
additionalParams
-
- Type
- mixed
- Default
array
()
Additional query parameters that won't be prefixed like $arguments (overrule $arguments)
absolute
-
- Type
- boolean
If set, an absolute URI is rendered
addQueryString
-
- Type
- boolean
If set, the current query parameters will be kept in the URI
argumentsToBeExcludedFromQueryString
-
- Type
- mixed
- Default
array
()
Arguments to be removed from the URI. Only active if $addQueryString = TRUE
addQueryStringMethod
-
- Type
- string
This argument is not evaluated anymore and will be removed in TYPO3 v12.