Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 12.4] sarah-missing-typoscriptmultiple #4453

Merged
merged 1 commit into from
May 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ These general rules apply:
* :typoscript:`[END]` and :typoscript:`[GLOBAL]` stop a given condition scope.
This is similar to a closing curly brace :code:`}` in programming languages like PHP.

* Multiple condition criteria can be combined using :typoscript:`or` or :typoscript:`||`,
as well as :typoscript:`and` or :typoscript:`&&`

* Single criteria can be negated using :typoscript:`!`

.. versionchanged:: 12.0

:typoscript:`[END]` and :typoscript:`[GLOBAL]` behave exactly the same. Both
Expand All @@ -93,11 +98,6 @@ These general rules apply:
page.10.value = Page uid is 42
[end]

* Multiple condition criteria can be combined using :typoscript:`or` or :typoscript:`||`,
as well as :typoscript:`and` or :typoscript:`&&`

* Single criteria can be negated using :typoscript:`!`

* Conditions can *not* be nested within code blocks.

.. versionchanged:: 12.0
Expand Down
Loading