Be.link ViewHelper <f:be.link>
¶
A ViewHelper for creating URIs to modules.
Examples¶
URI to the web_ts module on page 92:
<f:be.link route="web_ts" parameters="{id: 92}">Go to web_ts</f:be.link>
<a href="/typo3/module/web/ts?token=b6e9c9f&id=92">Go to web_ts</a>
Source code¶
Go to the source code of this ViewHelper: LinkViewHelper.php (GitHub).
Arguments¶
The following arguments are available for <f:be.link>
:
-
additionalAttributes
¶ -
- Type
- mixed
Additional tag attributes. They will be added directly to the resulting HTML tag.
-
data
¶ -
- Type
- mixed
Additional data-* attributes. They will each be added with a "data-" prefix.
-
aria
¶ -
- Type
- mixed
Additional aria-* attributes. They will each be added with a "aria-" prefix.
-
route
¶ -
- Type
- string
- Required
true
The name of the route
-
parameters
¶ -
- Type
- mixed
- Default
array ()
An array of parameters
-
referenceType
¶ -
- Type
- string
- Default
'absolute'
The type of reference to be generated (one of the constants)
-
name
¶ -
- Type
- string
Specifies the name of an anchor
-
rel
¶ -
- Type
- string
Specifies the relationship between the current document and the linked document
-
rev
¶ -
- Type
- string
Specifies the relationship between the linked document and the current document
-
target
¶ -
- Type
- string
Specifies where to open the linked document
-
class
¶ -
- Type
- string
CSS class(es) for this element
-
dir
¶ -
- Type
- string
Text direction for this HTML element. Allowed strings: "ltr" (left to right), "rtl" (right to left)
-
id
¶ -
- Type
- string
Unique (in this file) identifier for this HTML element.
-
lang
¶ -
- Type
- string
Language for this element. Use short names specified in RFC 1766
-
style
¶ -
- Type
- string
Individual CSS styles for this element
-
title
¶ -
- Type
- string
Tooltip text of element
-
accesskey
¶ -
- Type
- string
Keyboard shortcut to access this element
-
tabindex
¶ -
- Type
- integer
Specifies the tab order of this element
-
onclick
¶ -
- Type
- string
JavaScript evaluated for the onclick event