mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 12:16:13 +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 {
|
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 {
|
persistence {
|
||||||
# cat=plugin.tx_tea//a; type=string; label=Default storage PID
|
# cat=plugin.tx_tea//a; type=string; label=Default storage PID
|
||||||
storagePid =
|
storagePid =
|
||||||
|
|
|
@ -1,8 +1,16 @@
|
||||||
plugin.tx_tea {
|
plugin.tx_tea {
|
||||||
view {
|
view {
|
||||||
templateRootPath = {$plugin.tx_tea.view.templateRootPath}
|
templateRootPaths {
|
||||||
partialRootPath = {$plugin.tx_tea.view.partialRootPath}
|
0 = EXT:tea/Resources/Private/Templates/
|
||||||
layoutRootPath = {$plugin.tx_tea.view.layoutRootPath}
|
}
|
||||||
|
|
||||||
|
partialRootPaths {
|
||||||
|
0 = EXT:tea/Resources/Private/Partials/
|
||||||
|
}
|
||||||
|
|
||||||
|
layoutRootPaths {
|
||||||
|
0 = EXT:tea/Resources/Private/Layouts/
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
persistence {
|
persistence {
|
||||||
|
|
Loading…
Reference in a new issue