Skip to content

Commit

Permalink
Merge branch 'main' into feature/fluidcomment
Browse files Browse the repository at this point in the history
  • Loading branch information
linawolf committed Sep 14, 2024
2 parents 8c82483 + 25f511b commit 60f1ac1
Showing 1 changed file with 43 additions and 3 deletions.
46 changes: 43 additions & 3 deletions Documentation/ApiOverview/Fluid/Syntax.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ braces to output it.
Reserved variables in Fluid
---------------------------

.. deprecated:: Fluid 2.15 / TYPO3 v12.4
.. versionchanged:: Fluid 4.0 / TYPO3 v13.3
Assigning variables of names `true`, `false` or `null` will throw
an exception in Fluid v4. In preparation of this change, Fluid v2.15 logs a
deprecation level error message if any of these variable names are used.
an exception in Fluid v4.

See also :ref:`fluid-variables-reserved-migration`.

The following variable names are reserved and may not be used:
Expand All @@ -60,6 +60,46 @@ Migration
.. literalinclude:: _Syntax/_MyTemplate.diff
:caption: EXT:my_extension/Resources/Private/Templates/MyTemplate.html (diff)

.. _fluid-boolean:

Boolean values
--------------

.. versionadded:: Fluid 4.0 / TYPO3 v13.3
The boolean literals `{true}` and `{false}` have been introduced.

You can use the boolean literals `{true}` and `{false}` to enable or disable
properties of tag-based ViewHelpers:

.. code-block:: html

<my:viewhelper async="{true}" />
Result: <tag async="async" />

<my:viewhelper async="{false}" />
Result: <tag />

Of course, any variable containing a boolean can be supplied as well:

.. code-block:: html

<my:viewhelper async="{isAsync}" />

It is also possible to cast a string to a boolean

.. code-block:: html

<my:viewhelper async="{myString as boolean}" />

For compatibility reasons empty strings still lead to the attribute
being omitted from the tag.

.. code-block:: html

<f:variable name="myEmptyString"></f:variable>
<my:viewhelper async="{myEmptyString}" />
Result: <tag />

.. _fluid-arrays:

Arrays and objects
Expand Down

0 comments on commit 60f1ac1

Please sign in to comment.