salvatoreeckel / t3cms
TYPO3 Content Management
3.2.1
2018-07-21 00:00 UTC
Requires
- typo3/cms-core: ^9
This package is auto-updated.
Last update: 2025-03-18 10:42:39 UTC
README
IMPORTANT
Please use this Bugfix for TYPO3 v9.5.x:
- https://bitbucket.org/SalvatoreEckel/t3cms/commits/a1cfc431a48ad0eff18e987eea36307a925405cf
- [BUGFIX] Fix sliding theme configuration in v9.5.x
TODOs
- Add base constants for the MenuProcessor
- Rewrite t3temes_conf forms with TCA
Installation
- die Extension
`
t3cms`
installieren. - TypoScript Beispiel aus dieser README in dein Projekt einbinden.
- Testen :) {_ all->f:debug()} {t3themesConf->f:debug()}
Why & How
Zentrale Optionen für Themes als Rootline Configuration.
Es gibt ein neues Backend Modul, mit dem Sie neue Seiteneinstellungen erhalten. Mit den Einstellungen können Sie Anzeige von Content und das Frontend Layout steuern. Diese Einstellungen vererben sich hierarchisch im Seitenbaum.
Bau dieses TypoScript Setup Beispiel in dein Projekt ein um in Fluidtemplates die Variablen zu benutzen.
...
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
}
}
}
...