salvatoreeckel / t3cms
TYPO3内容管理系统
3.2.1
2018-07-21 00:00 UTC
Requires
- typo3/cms-core: ^9
This package is auto-updated.
Last update: 2024-09-18 09:33:39 UTC
README
重要
请使用此错误修复针对TYPO3 v9.5.x
- https://bitbucket.org/SalvatoreEckel/t3cms/commits/a1cfc431a48ad0eff18e987eea36307a925405cf
- [错误修复] 修复v9.5.x中的滑动主题配置
待办事项
- 为MenuProcessor添加基本常量
- 使用TCA重写t3temes_conf表单
安装
- 安装扩展
`t3cms`。 - 将此README中的TypoScript示例绑定到您的项目中。
- 测试 :) {_ all->f:debug()} {t3themesConf->f:debug()}
为什么 & 怎么做
将主题的中央选项作为Rootline配置。
有一个新的后端模块,您可以通过它获得新的页面设置。使用这些设置,您可以控制内容的显示和前端布局。这些设置在页面树中按层次继承。
将此TypoScript设置示例构建到您的项目中,以便在Fluid模板中使用变量。
...
10 = FLUIDTEMPLATE
10 {
templateName = Default
#variables {}
dataProcessing {
30 = SalvatoreEckel\T3cms\DataProcessing\T3themesConfProcessor
30 {
fieldName = t3themes_conf
as = t3themesConf
rootpageId = TEXT
rootpageId {
insertData = 1
data = leveluid : 0
}
}
}
...