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.
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/index.php?route=%2module%2web_ts%2&moduleToken=b6e9c9f?id=92">Go to web_ts</a>
Arguments¶
additionalAttributes¶
- DataType
mixed
- Required
false
- Description
Additional tag attributes. They will be added directly to the resulting HTML tag.
data¶
- DataType
mixed
- Required
false
- Description
Additional data-* attributes. They will each be added with a "data-" prefix.
route¶
- DataType
string
- Required
true
- Description
The name of the route
parameters¶
- DataType
mixed
- Default
array ()
- Required
false
- Description
An array of parameters
referenceType¶
- DataType
string
- Default
'absolute'
- Required
false
- Description
The type of reference to be generated (one of the constants)
name¶
- DataType
string
- Required
false
- Description
Specifies the name of an anchor
rel¶
- DataType
string
- Required
false
- Description
Specifies the relationship between the current document and the linked document
rev¶
- DataType
string
- Required
false
- Description
Specifies the relationship between the linked document and the current document
target¶
- DataType
string
- Required
false
- Description
Specifies where to open the linked document
class¶
- DataType
string
- Required
false
- Description
CSS class(es) for this element
dir¶
- DataType
string
- Required
false
- Description
Text direction for this HTML element. Allowed strings: "ltr" (left to right), "rtl" (right to left)
id¶
- DataType
string
- Required
false
- Description
Unique (in this file) identifier for this HTML element.
lang¶
- DataType
string
- Required
false
- Description
Language for this element. Use short names specified in RFC 1766
style¶
- DataType
string
- Required
false
- Description
Individual CSS styles for this element
title¶
- DataType
string
- Required
false
- Description
Tooltip text of element
accesskey¶
- DataType
string
- Required
false
- Description
Keyboard shortcut to access this element
tabindex¶
- DataType
integer
- Required
false
- Description
Specifies the tab order of this element
onclick¶
- DataType
string
- Required
false
- Description
JavaScript evaluated for the onclick event