拼写数据和位置
typoscript data and where
col2.10.data = DB:pages:{$plugin.mx_esyswebsite.settings.navigation.footerSecondColEntry}:title
从页面 table.
的 uid $plugin.mx_esyswebsite.settings.navigation.footerSecondColEntry
的记录中读取标题
现在我需要 table pages_language_overlay 中的值作为英语。但是这里必须有一个where子句而不是uid:
where pid = $plugin.mx_esyswebsite.settings.navigation.footerSecondColEntry
我该怎么做?
col1.10.data = DB:pages_language_overlay:???{$plugin.tx_esyswebsite.settings.navigation.footerFirstColEntry}:title
当您使用 RECORDS 对象时,TYPO3 会自动处理语言覆盖。文档在这里:https://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Records/Index.html
col2.10.data = DB:pages:{$plugin.mx_esyswebsite.settings.navigation.footerSecondColEntry}:title
从页面 table.
$plugin.mx_esyswebsite.settings.navigation.footerSecondColEntry
的记录中读取标题
现在我需要 table pages_language_overlay 中的值作为英语。但是这里必须有一个where子句而不是uid:
where pid = $plugin.mx_esyswebsite.settings.navigation.footerSecondColEntry
我该怎么做?
col1.10.data = DB:pages_language_overlay:???{$plugin.tx_esyswebsite.settings.navigation.footerFirstColEntry}:title
当您使用 RECORDS 对象时,TYPO3 会自动处理语言覆盖。文档在这里:https://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Records/Index.html