TYPO3 TypoScript 条件的结束 - V9 及更高版本的变化?
Ending of TYPO3 TypoScript conditions - Changes in V9 and above?
我正在开发一个 TYPO3 网站,我从 V6 开始,现在我正在通过 V9 更新到 V10。
目前我正在将我的 TypoScript 条件更改为新的 Symfony 语法,发现我使用了 4 种不同的条件结尾:
[end]
[END]
[global]
[GLOBAL]
所有这些结局是否仍然适用于 TYPO3 V9 及更高版本?
我已经搜索了参考资料,但没有找到明确的答案。
If [ condition ]
is TRUE, then the TypoScript in the middle would be
parsed until [GLOBAL]
(or [END]
) resets the condition.
我正在开发一个 TYPO3 网站,我从 V6 开始,现在我正在通过 V9 更新到 V10。
目前我正在将我的 TypoScript 条件更改为新的 Symfony 语法,发现我使用了 4 种不同的条件结尾:
[end]
[END]
[global]
[GLOBAL]
所有这些结局是否仍然适用于 TYPO3 V9 及更高版本?
我已经搜索了参考资料,但没有找到明确的答案。
If
[ condition ]
is TRUE, then the TypoScript in the middle would be parsed until[GLOBAL]
(or[END]
) resets the condition.