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.
Be.infobox ViewHelper <f:be.infobox>
ViewHelper for rendering a styled content infobox markup.
States
The Infobox provides different context sensitive states that can be used to provide an additional visual feedback to the to the user to underline the meaning of the information.
Possible values are in range from -2
to 2
. Please choose a
meaningful value from the following list.
-2
- Notices (Default)
-1
- Information
0
- Positive feedback
1
- Warnings
2
- Error
Examples
Simple:
<f:be.infobox title="Message title">your box content</f:be.infobox>
All options:
<f:be.infobox title="Message title" message="your box content" state="-2" iconName="check" disableIcon="true" />
Source code
Go to the source code of this ViewHelper: InfoboxViewHelper.php (GitHub).
Arguments
The following arguments are available for <f:
:
message
-
- Type
- string
The message of the info box, if NULL tag content is used
title
-
- Type
- string
The title of the info box
state
-
- Type
- mixed
- Default
-2
The state of the box, InfoboxViewHelper::STATE_*
iconName
-
- Type
- string
The icon name from font awesome, NULL sets default icon
disableIcon
-
- Type
- boolean
If set to TRUE, the icon is not rendered.