mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 06:56:12 +01:00
[BUGFIX] Use plural in the TypoScript template settings (#685)
This commit is contained in:
parent
0a72e425cf
commit
ee44ea35c3
2 changed files with 11 additions and 12 deletions
|
@ -1,13 +1,4 @@
|
|||
plugin.tx_tea {
|
||||
view {
|
||||
# cat=plugin.tx_tea/file; type=string; label=Path to template root (FE)
|
||||
templateRootPath = EXT:tea/Resources/Private/Templates/
|
||||
# cat=plugin.tx_tea/file; type=string; label=Path to template partials (FE)
|
||||
partialRootPath = EXT:tea/Resources/Private/Partials/
|
||||
# cat=plugin.tx_tea/file; type=string; label=Path to template layouts (FE)
|
||||
layoutRootPath = EXT:tea/Resources/Private/Layouts/
|
||||
}
|
||||
|
||||
persistence {
|
||||
# cat=plugin.tx_tea//a; type=string; label=Default storage PID
|
||||
storagePid =
|
||||
|
|
|
@ -1,8 +1,16 @@
|
|||
plugin.tx_tea {
|
||||
view {
|
||||
templateRootPath = {$plugin.tx_tea.view.templateRootPath}
|
||||
partialRootPath = {$plugin.tx_tea.view.partialRootPath}
|
||||
layoutRootPath = {$plugin.tx_tea.view.layoutRootPath}
|
||||
templateRootPaths {
|
||||
0 = EXT:tea/Resources/Private/Templates/
|
||||
}
|
||||
|
||||
partialRootPaths {
|
||||
0 = EXT:tea/Resources/Private/Partials/
|
||||
}
|
||||
|
||||
layoutRootPaths {
|
||||
0 = EXT:tea/Resources/Private/Layouts/
|
||||
}
|
||||
}
|
||||
|
||||
persistence {
|
||||
|
|
Loading…
Reference in a new issue