mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 18:56:13 +02:00

[BUGFIX] Use plural in the TypoScript template settings (#685)

This commit is contained in:
Łukasz Uznański 2023-01-04 16:51:11 +01:00 committed by GitHub
parent 0a72e425cf
commit ee44ea35c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 12 deletions

View file

@ -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 =

View file

@ -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 {