Yaml 在键入脚本条件下使用站点配置常量

Yaml 在键入脚本条件下使用站点配置常量,yaml,typo3,config,typoscript,typo3-10.x,Yaml,Typo3,Config,Typoscript,Typo3 10.x,在TYPO3 10 LTS中,可以在站点配置中设置常量,并在typoscript中使用它们(请参见此处:) 我想知道我是否也可以在typoscript和tsconfig条件中使用常量,例如 [page["pid"] == "{$site.settings.uids.privacy}"] here goes the typoscript configuration for the conditon [END] 我在站点配置中按如下方式设置常量:

在TYPO3 10 LTS中,可以在站点配置中设置常量,并在typoscript中使用它们(请参见此处:)

我想知道我是否也可以在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

有什么想法吗?

本杰明,请看一下变更日志D

有可能,有关更多信息,请查看:

上面的示例如下所示:

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