Feature #90213
closedSupport bit and in TypoScript stdWrap_if
100%
Description
TypoScript allows to write conditions using stdWrap option "if".
This is often used to check whether a value stored in db matches an expected value.
In case of checkboxes, TYPO3 stores a single bit value for all selected options.
Right now it is not possible to compare easily against such values. One needs to use something like this:
hideForSmall.value.override.if { isInList.field = tx_e2core_visibility value = 1,3,5,7,9,11,13,15 }
but more complex.
Therefore an new condition should be added which allows to check whether a specific bit is stored:
hideForSmall.value.override.if { bitAnd.field = tx_e2core_visibility value = 1 }
Updated by Gerrit Code Review almost 5 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63046
Updated by Gerrit Code Review almost 5 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63046
Updated by Gerrit Code Review almost 5 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63046
Updated by Gerrit Code Review almost 5 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63046
Updated by Gerrit Code Review almost 5 years ago
Patch set 5 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63046
Updated by Daniel Siepmann almost 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 86c1956772ea7d6811807fcaca6d5bb2da1e5557.
Updated by Sybille Peters over 4 years ago
Added issue for documenting this change: https://github.com/TYPO3-Documentation/TYPO3CMS-Reference-Typoscript/issues/348
See information about contributing to docs: https://docs.typo3.org/m/typo3/docs-how-to-document/master/en-us/WritingDocsOfficial/Index.html