在 TypoScript 条件下使用站点配置常量

Using constants of site config in TypoScript conditions

在 TYPO3 10 LTS 中,可以在站点配置中设置常量并在打字稿中使用它们(参见此处:https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/ApiOverview/SiteHandling/UseSiteInTypoScript.html

我想知道我是否也可以在 typoscript 和 tsconfig 条件中使用常量,例如

[page["pid"] == "{$site.settings.uids.privacy}"] 
    here goes the typoscript configuration for the conditon
[END]

我这样设置网站配置中的常量:

rootPageId: 1
(...)
settings:
  uids:
    privacy: 124
    meta: 127

有什么想法吗?

Benjamin,请阅读更新日志。 :D

有可能,更多信息请查看:https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/10.4/Feature-91080-SiteSettingsAsTsConstantsAndInTsConfig.html.

上面的例子看起来像:

[page["pid"] == "{$uids.privacy}"] 
    here goes the typoscript configuration for the conditon
[END]