Skip to content

Commit

Permalink
TASK: Update references [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins committed Jul 26, 2024
1 parent 4de44b6 commit 7c08e37
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/CommandReference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ commands that may be available, use::

./flow help

The following reference was automatically generated from code on 2024-07-16
The following reference was automatically generated from code on 2024-07-26


.. _`Neos Command Reference: NEOS.FLOW`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FluidAdaptor ViewHelper Reference
#################################

This reference was automatically generated from code on 2024-07-16
This reference was automatically generated from code on 2024-07-26


.. _`FluidAdaptor ViewHelper Reference: f:debug`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/ViewHelpers/Form.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Form ViewHelper Reference
#########################

This reference was automatically generated from code on 2024-07-16
This reference was automatically generated from code on 2024-07-26


.. _`Form ViewHelper Reference: neos.form:form`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/ViewHelpers/Media.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Media ViewHelper Reference
##########################

This reference was automatically generated from code on 2024-07-16
This reference was automatically generated from code on 2024-07-26


.. _`Media ViewHelper Reference: neos.media:fileTypeIcon`:
Expand Down
2 changes: 1 addition & 1 deletion Neos.Neos/Documentation/References/ViewHelpers/Neos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Neos ViewHelper Reference
#########################

This reference was automatically generated from code on 2024-07-16
This reference was automatically generated from code on 2024-07-26


.. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`:
Expand Down
34 changes: 17 additions & 17 deletions Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
TYPO3 Fluid ViewHelper Reference
################################

This reference was automatically generated from code on 2024-07-16
This reference was automatically generated from code on 2024-07-26


.. _`TYPO3 Fluid ViewHelper Reference: f:alias`:
Expand Down Expand Up @@ -525,11 +525,11 @@ Output::
Arguments
*********

* ``typeOnly`` (boolean, *optional*): If TRUE, debugs only the type of variables
* ``typeOnly`` (boolean, *optional*): If true, debugs only the type of variables

* ``levels`` (integer, *optional*): Levels to render when rendering nested objects/arrays

* ``html`` (boolean, *optional*): Render HTML. If FALSE, output is indented plaintext
* ``html`` (boolean, *optional*): Render HTML. If false, output is indented plaintext



Expand Down Expand Up @@ -571,8 +571,8 @@ Output content if condition is not met

Output::

Everything inside the "else" tag is displayed if the condition evaluates to FALSE.
Otherwise nothing is outputted in this example.
Everything inside the "else" tag is displayed if the condition evaluates to false.
Otherwise, nothing is outputted in this example.

:Implementation: TYPO3Fluid\\Fluid\\ViewHelpers\\ElseViewHelper

Expand Down Expand Up @@ -696,7 +696,7 @@ Arguments

* ``key`` (string, *optional*): Variable to assign array key to

* ``reverse`` (boolean, *optional*): If TRUE, iterates in reverse
* ``reverse`` (boolean, *optional*): If true, iterates in reverse

* ``iteration`` (string, *optional*): The name of the variable to store iteration information (index, cycle, total, isFirst, isLast, isEven, isOdd)

Expand Down Expand Up @@ -876,11 +876,11 @@ Arguments

* ``value`` (string, *optional*): Value to format

* ``keepQuotes`` (boolean, *optional*): If TRUE quotes will not be replaced (ENT_NOQUOTES)
* ``keepQuotes`` (boolean, *optional*): If true quotes will not be replaced (ENT_NOQUOTES)

* ``encoding`` (string, *optional*): Encoding

* ``doubleEncode`` (boolean, *optional*): If FALSE html entities will not be encoded
* ``doubleEncode`` (boolean, *optional*): If false, html entities will not be encoded



Expand Down Expand Up @@ -1528,7 +1528,7 @@ Basic usage

Output::

Everything inside the <f:if> tag is being displayed if the condition evaluates to TRUE.
Everything inside the <f:if> tag is being displayed if the condition evaluates to true.

If / then / else
----------------
Expand All @@ -1540,13 +1540,13 @@ If / then / else
This is being shown in case the condition matches.
</f:then>
<f:else>
This is being displayed in case the condition evaluates to FALSE.
This is being displayed in case the condition evaluates to false.
</f:else>
</f:if>

Output::

Everything inside the "then" tag is displayed if the condition evaluates to TRUE.
Everything inside the "then" tag is displayed if the condition evaluates to true.
Otherwise, everything inside the "else" tag is displayed.

Inline notation
Expand All @@ -1558,7 +1558,7 @@ Inline notation

Output::

The value of the "then" attribute is displayed if the condition evaluates to TRUE.
The value of the "then" attribute is displayed if the condition evaluates to true.
Otherwise, everything the value of the "else" attribute is displayed.

Combining multiple conditions
Expand All @@ -1571,17 +1571,17 @@ Combining multiple conditions
This is being shown in case both conditions match.
</f:then>
<f:else if="{user.rank} > 200 && ({user.type} == 'contributor' || {user.type} == 'developer')">
This is being displayed in case the first block of the condition evaluates to TRUE and any condition in
the second condition block evaluates to TRUE.
This is being displayed in case the first block of the condition evaluates to true and any condition in
the second condition block evaluates to true.
</f:else>
<f:else>
This is being displayed when none of the above conditions evaluated to TRUE.
This is being displayed when none of the above conditions evaluated to true.
</f:else>
</f:if>

Output::

Depending on which expression evaluated to TRUE, that value is displayed.
Depending on which expression evaluated to true, that value is displayed.
If no expression matched, the contents inside the final "else" tag are displayed.

:Implementation: TYPO3Fluid\\Fluid\\ViewHelpers\\IfViewHelper
Expand Down Expand Up @@ -1919,7 +1919,7 @@ Arguments

* ``arguments`` (array, *optional*): Array of variables to be transferred. Use {_all} for all variables

* ``optional`` (boolean, *optional*): If TRUE, considers the *section* optional. Partial never is.
* ``optional`` (boolean, *optional*): If true, considers the *section* optional. Partial never is.

* ``default`` (mixed, *optional*): Value (usually string) to be displayed if the section or partial does not exist

Expand Down

0 comments on commit 7c08e37

Please sign in to comment.