View

templateRootPaths

Property
templateRootPaths
Data type
array of file paths
Description
This defines in which path the templates are stored. This is needed to modify the template without modifing files in the extension.
EXT:my_extension/Configuration/TypoScript/setup.typoscript
plugin.tx_storefinder.view {
    templateRootPaths {
        100 = EXT:my_extension/Resources/Private/Templates/StoreFinder
    }
}
Copied!

partialRootPaths

Property
partialRootPaths
Data type
array of file paths
Description
This defines in which path the partials are stored. This is needed to modify the partials without modifing files in the extension.
EXT:my_extension/Configuration/TypoScript/setup.typoscript
plugin.tx_storefinder.view {
    partialRootPaths {
        100 = EXT:my_extension/Resources/Private/Partials/StoreFinder
    }
}
Copied!